commit 19cafad13b92955ad97a325e8471227a0cc56907 Author: hongshaorou Date: Sat Jul 11 18:11:03 2026 +0800 first commit diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5581ab1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,67 @@ +cmake_minimum_required(VERSION 3.10) +project(FaceDetectionApp) + +# 设置 C++ 标准 +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED True) + +# 若未指定构建类型,默认使用 Release +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE) +endif() + +# 默认导出 compile_commands.json(便于 IDE/clangd 索引) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +# ============================================================================ +# 0. SIMD 加速选项(作用于 libfacedetection 动态库) +# X86/X64 CPU: cmake -DENABLE_AVX2=ON 或 -DENABLE_AVX512=ON +# ARM CPU: cmake -DENABLE_NEON=ON +# 开启后会自动定义对应宏并添加编译器指令集标志,无需手动改头文件。 +# AVX512 / AVX2 / NEON 三者互斥(与头文件中的 #error 检查一致)。 +# ============================================================================ +set(ENABLE_AVX2 ON CACHE BOOL "Enable AVX2 acceleration (X64 CPU)") +set(ENABLE_AVX512 OFF CACHE BOOL "Enable AVX512 acceleration (X64 CPU)") +set(ENABLE_NEON OFF CACHE BOOL "Enable NEON acceleration (ARM CPU)") + +# 三者最多只能开启其中一个 +set(_SIMD_ENABLED_COUNT 0) +foreach(_simd_opt ENABLE_AVX512 ENABLE_AVX2 ENABLE_NEON) + if(${_simd_opt}) + math(EXPR _SIMD_ENABLED_COUNT "${_SIMD_ENABLED_COUNT} + 1") + endif() +endforeach() +if(_SIMD_ENABLED_COUNT GREATER 1) + message(FATAL_ERROR "ENABLE_AVX512 / ENABLE_AVX2 / ENABLE_NEON 三者互斥,最多只能开启其中一个。") +endif() + +# 检测编译器是否支持 -mfpu=neon: +# - 32 位 ARM (armhf) 需要该标志才能使用 arm_neon.h 内联函数; +# - AArch64 下 NEON 默认开启,x86 不识别该标志,这两种情况检测结果均为否。 +include(CheckCXXCompilerFlag) +check_cxx_compiler_flag("-mfpu=neon" CXX_HAS_MFPU_NEON) + +# ============================================================================ +# 1. 依赖查找 +# ============================================================================ +find_package(OpenCV REQUIRED) # app / network_camera_receiver 需要 +find_package(OpenMP) # libfacedetection 可选加速 +find_package(Threads REQUIRED) # network_camera_receiver 后台线程 / app + +message(STATUS "Found OpenCV Version: ${OpenCV_VERSION}") +if(OpenMP_FOUND) + message(STATUS "Found OpenMP CXX: ${OpenMP_CXX_VERSION}") +else() + message(STATUS "OpenMP not found, building without OpenMP support.") +endif() +message(STATUS "Threads library enabled.") + +# ============================================================================ +# 2. 子模块 +# libfacedetection -> SHARED 动态库(人脸检测) +# network_camera_receiver-> STATIC 静态库(仅抓帧) +# app -> 可执行程序(编排 收帧->检测->显示) +# ============================================================================ +add_subdirectory(libfacedetection) +add_subdirectory(network_camera_receiver) +add_subdirectory(app) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt new file mode 100644 index 0000000..f190f63 --- /dev/null +++ b/app/CMakeLists.txt @@ -0,0 +1,28 @@ +# ============================================================================ +# app —— 主可执行程序 +# 编排流程:1. 从 network_camera_receiver 取最新帧; +# 2. 调用 libfacedetection 检测; +# 3. 绘制并显示结果。 +# ============================================================================ + +add_executable(face_detection_app + src/main.cpp +) + +# 链接动态库 facedetection(传递其 PUBLIC include 目录)与静态库 receiver +target_link_libraries(face_detection_app PRIVATE + facedetection + network_camera_receiver + ${OpenCV_LIBS} +) + +# 将项目根目录作为宏传给代码,便于用绝对路径访问 resources 等资源文件 +target_compile_definitions(face_detection_app PRIVATE + SOURCE_ROOT="${CMAKE_SOURCE_DIR}" +) + +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") + target_compile_options(face_detection_app PRIVATE -O3) +elseif(MSVC) + target_compile_options(face_detection_app PRIVATE /O2) +endif() diff --git a/app/src/main.cpp b/app/src/main.cpp new file mode 100644 index 0000000..33fc4b8 --- /dev/null +++ b/app/src/main.cpp @@ -0,0 +1,98 @@ +/* + * @Author: Liu zhenyu + * @Description: 主程序(重构版) + * 流程:1. 从 network_camera_receiver 取最新帧; + * 2. 调用 libfacedetection 进行人脸检测; + * 3. 绘制并显示检测结果。 + * libfacedetection 以独立动态库形式链接。 + */ + +#include +#include +#include + +#include "network_camera_receiver.h" +#include "facedetectcnn.h" + +// 将 libfacedetection 的检测结果绘制到帧上 +// pResults[0] = 人脸数量;其后每张脸占 FACEDETECTION_RESULT_STRIDE_SHORTS 个 short +static void drawFaces(cv::Mat& frame, const int* pResults) { + if (!pResults) return; + int faces = pResults[0]; + + for (int i = 0; i < faces; i++) { + // 每个人脸结果占用 FACEDETECTION_RESULT_STRIDE_SHORTS(=16) 个 short: + // p[0]=置信度(score*100), p[1..4]=x/y/w/h, + // p[5..14]=5个关键点(x,y交替), p[15]=对齐填充 + short* p = ((short*)(pResults + 1)) + FACEDETECTION_RESULT_STRIDE_SHORTS * i; + + int confidence = p[0]; + int x = p[1]; + int y = p[2]; + int w = p[3]; + int h = p[4]; + + // 只显示置信度大于 60 的结果以过滤误检 + if (confidence > 60) { + cv::rectangle(frame, cv::Rect(x, y, w, h), cv::Scalar(0, 255, 0), 2); + + // 置信度标注 + cv::putText(frame, std::to_string(confidence), + cv::Point(x, y - 5), cv::FONT_HERSHEY_SIMPLEX, + 0.5, cv::Scalar(0, 255, 0), 1); + + // 五个特征点 + cv::circle(frame, cv::Point(p[5], p[6]), 2, cv::Scalar(255, 0, 0), -1); + cv::circle(frame, cv::Point(p[7], p[8]), 2, cv::Scalar(0, 0, 255), -1); + cv::circle(frame, cv::Point(p[9], p[10]), 2, cv::Scalar(0, 255, 0), -1); + cv::circle(frame, cv::Point(p[11], p[12]), 2, cv::Scalar(255, 0, 255), -1); + cv::circle(frame, cv::Point(p[13], p[14]), 2, cv::Scalar(0, 255, 255), -1); + } + } +} + +int main() { + // 替换为你查到的视频流宿主机 IP + std::string host_ip = "127.0.0.1"; + + // 1) 接收端:仅负责抓帧 + NetworkCameraReceiver receiver(host_ip, 5000); + if (!receiver.connect()) { + std::cerr << "连接视频流失败,退出。" << std::endl; + return -1; + } + receiver.start(); // 启动后台抓帧线程 + + // libfacedetection 结果缓冲区(大小由库定义的宏决定) + unsigned char* pBuffer = new unsigned char[FACEDETECTION_RESULT_BUFFER_SIZE]; + + const std::string window_name = "Face Detection"; + cv::namedWindow(window_name, cv::WINDOW_AUTOSIZE); + + std::cout << "人脸检测已启动,按 ESC 退出..." << std::endl; + + cv::Mat frame; + while (true) { + // ---- 步骤 1:接收最新帧 ---- + if (receiver.getLatestFrame(frame) && !frame.empty()) { + // ---- 步骤 2:调用 libfacedetection 检测 ---- + // 注意:OpenCV 采集到的帧为 BGR,正好符合 facedetect_cnn 的输入要求 + int* pResults = facedetect_cnn(pBuffer, + frame.data, + frame.cols, + frame.rows, + (int)frame.step); + + // ---- 步骤 3:显示检测结果 ---- + drawFaces(frame, pResults); + cv::imshow(window_name, frame); + } + + if (cv::waitKey(30) == 27) break; // ESC 退出 + } + + receiver.stop(); + delete[] pBuffer; + cv::destroyAllWindows(); + return 0; +} diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 0000000..82bb964 --- /dev/null +++ b/build/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-56110cdfa9aef458615e.json b/build/.cmake/api/v1/reply/cache-v2-56110cdfa9aef458615e.json new file mode 100644 index 0000000..a80d37d --- /dev/null +++ b/build/.cmake/api/v1/reply/cache-v2-56110cdfa9aef458615e.json @@ -0,0 +1,1491 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/addr2line" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Release" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/home/hongshaorou/lzy_demo/facedetect/build" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "22" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_COLOR_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable color output during build." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/g++" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "BOOL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Unix Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HAVE_PTHREAD_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include pthread.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/home/hongshaorou/lzy_demo/facedetect" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/usr/local" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gmake" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objcopy" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objdump" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "FaceDetectionApp" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/readelf" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/usr/share/cmake-3.22" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/strip" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CXX_HAS_MFPU_NEON", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CXX_HAS_MFPU_NEON" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "ENABLE_AVX2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable AVX2 acceleration (X64 CPU)" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "ENABLE_AVX512", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable AVX512 acceleration (X64 CPU)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "ENABLE_NEON", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable NEON acceleration (ARM CPU)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenCV", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenCV" + } + ], + "type" : "INTERNAL", + "value" : "[/usr][v4.5.4()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenMP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenMP" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][TRUE][c ][v4.5()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenMP_C" + } + ], + "type" : "INTERNAL", + "value" : "[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_CXX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenMP_CXX" + } + ], + "type" : "INTERNAL", + "value" : "[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FaceDetectionApp_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/hongshaorou/lzy_demo/facedetect/build" + }, + { + "name" : "FaceDetectionApp_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "FaceDetectionApp_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/hongshaorou/lzy_demo/facedetect" + }, + { + "name" : "OpenCV_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for OpenCV." + } + ], + "type" : "PATH", + "value" : "/usr/lib/x86_64-linux-gnu/cmake/opencv4" + }, + { + "name" : "OpenMP_COMPILE_RESULT_CXX_fopenmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "OpenMP_COMPILE_RESULT_C_fopenmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "OpenMP_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler flags for OpenMP parallelization" + } + ], + "type" : "STRING", + "value" : "-fopenmp" + }, + { + "name" : "OpenMP_CXX_LIB_NAMES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler libraries for OpenMP parallelization" + } + ], + "type" : "STRING", + "value" : "gomp;pthread" + }, + { + "name" : "OpenMP_CXX_SPEC_DATE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CXX compiler's OpenMP specification date" + } + ], + "type" : "INTERNAL", + "value" : "201511" + }, + { + "name" : "OpenMP_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C compiler flags for OpenMP parallelization" + } + ], + "type" : "STRING", + "value" : "-fopenmp" + }, + { + "name" : "OpenMP_C_LIB_NAMES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C compiler libraries for OpenMP parallelization" + } + ], + "type" : "STRING", + "value" : "gomp;pthread" + }, + { + "name" : "OpenMP_C_SPEC_DATE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "C compiler's OpenMP specification date" + } + ], + "type" : "INTERNAL", + "value" : "201511" + }, + { + "name" : "OpenMP_SPECTEST_CXX_", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "OpenMP_SPECTEST_C_", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "OpenMP_gomp_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to the gomp library for OpenMP" + } + ], + "type" : "FILEPATH", + "value" : "/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so" + }, + { + "name" : "OpenMP_pthread_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to the pthread library for OpenMP" + } + ], + "type" : "FILEPATH", + "value" : "/usr/lib/x86_64-linux-gnu/libpthread.a" + }, + { + "name" : "network_camera_receiver_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;opencv_calib3d;general;opencv_core;general;opencv_dnn;general;opencv_features2d;general;opencv_flann;general;opencv_highgui;general;opencv_imgcodecs;general;opencv_imgproc;general;opencv_ml;general;opencv_objdetect;general;opencv_photo;general;opencv_stitching;general;opencv_video;general;opencv_videoio;general;opencv_alphamat;general;opencv_aruco;general;opencv_barcode;general;opencv_bgsegm;general;opencv_bioinspired;general;opencv_ccalib;general;opencv_datasets;general;opencv_dnn_objdetect;general;opencv_dnn_superres;general;opencv_dpm;general;opencv_face;general;opencv_freetype;general;opencv_fuzzy;general;opencv_hdf;general;opencv_hfs;general;opencv_img_hash;general;opencv_intensity_transform;general;opencv_line_descriptor;general;opencv_mcc;general;opencv_optflow;general;opencv_phase_unwrapping;general;opencv_plot;general;opencv_quality;general;opencv_rapid;general;opencv_reg;general;opencv_rgbd;general;opencv_saliency;general;opencv_shape;general;opencv_stereo;general;opencv_structured_light;general;opencv_superres;general;opencv_surface_matching;general;opencv_text;general;opencv_tracking;general;opencv_videostab;general;opencv_viz;general;opencv_wechat_qrcode;general;opencv_ximgproc;general;opencv_xobjdetect;general;opencv_xphoto;" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-f0fc4a41de14503e7656.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-f0fc4a41de14503e7656.json new file mode 100644 index 0000000..cd95aa7 --- /dev/null +++ b/build/.cmake/api/v1/reply/cmakeFiles-v1-f0fc4a41de14503e7656.json @@ -0,0 +1,256 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/CMakeFiles/3.22.1/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/CMakeFiles/3.22.1/CMakeCCompiler.cmake" + }, + { + "isGenerated" : true, + "path" : "build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isExternal" : true, + "path" : "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVConfig-version.cmake" + }, + { + "isExternal" : true, + "path" : "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVModules.cmake" + }, + { + "isExternal" : true, + "path" : "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVModules-release.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindOpenMP.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/usr/share/cmake-3.22/Modules/FindPackageMessage.cmake" + }, + { + "path" : "libfacedetection/CMakeLists.txt" + }, + { + "path" : "network_camera_receiver/CMakeLists.txt" + }, + { + "path" : "app/CMakeLists.txt" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/home/hongshaorou/lzy_demo/facedetect/build", + "source" : "/home/hongshaorou/lzy_demo/facedetect" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-e5cec8686dbccb6a6ac8.json b/build/.cmake/api/v1/reply/codemodel-v2-e5cec8686dbccb6a6ac8.json new file mode 100644 index 0000000..18b5572 --- /dev/null +++ b/build/.cmake/api/v1/reply/codemodel-v2-e5cec8686dbccb6a6ac8.json @@ -0,0 +1,126 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 2, + 3 + ], + "jsonFile" : "directory-.-Release-f5ebdc15457944623624.json", + "minimumCMakeVersion" : + { + "string" : "3.10" + }, + "projectIndex" : 0, + "source" : "." + }, + { + "build" : "libfacedetection", + "jsonFile" : "directory-libfacedetection-Release-850d3f1cd704b0988d2c.json", + "minimumCMakeVersion" : + { + "string" : "3.10" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "libfacedetection", + "targetIndexes" : + [ + 1 + ] + }, + { + "build" : "network_camera_receiver", + "jsonFile" : "directory-network_camera_receiver-Release-f139a8ec932a70449176.json", + "minimumCMakeVersion" : + { + "string" : "3.10" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "network_camera_receiver", + "targetIndexes" : + [ + 2 + ] + }, + { + "build" : "app", + "jsonFile" : "directory-app-Release-94c5f210ca04b1028ae5.json", + "minimumCMakeVersion" : + { + "string" : "3.10" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "app", + "targetIndexes" : + [ + 0 + ] + } + ], + "name" : "Release", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3 + ], + "name" : "FaceDetectionApp", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "face_detection_app::@5f5a17c01335469806cb", + "jsonFile" : "target-face_detection_app-Release-c62b37bfebe414dfbd17.json", + "name" : "face_detection_app", + "projectIndex" : 0 + }, + { + "directoryIndex" : 1, + "id" : "facedetection::@0ece3808304c45cd0ca3", + "jsonFile" : "target-facedetection-Release-318f1374fb40d9a50e7b.json", + "name" : "facedetection", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "network_camera_receiver::@9883af0ef0c4a1b6b770", + "jsonFile" : "target-network_camera_receiver-Release-20ca25790d17e3c9c2b5.json", + "name" : "network_camera_receiver", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "/home/hongshaorou/lzy_demo/facedetect/build", + "source" : "/home/hongshaorou/lzy_demo/facedetect" + }, + "version" : + { + "major" : 2, + "minor" : 3 + } +} diff --git a/build/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json b/build/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/.cmake/api/v1/reply/directory-app-Release-94c5f210ca04b1028ae5.json b/build/.cmake/api/v1/reply/directory-app-Release-94c5f210ca04b1028ae5.json new file mode 100644 index 0000000..3796859 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-app-Release-94c5f210ca04b1028ae5.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "app", + "source" : "app" + } +} diff --git a/build/.cmake/api/v1/reply/directory-libfacedetection-Release-850d3f1cd704b0988d2c.json b/build/.cmake/api/v1/reply/directory-libfacedetection-Release-850d3f1cd704b0988d2c.json new file mode 100644 index 0000000..1d70c76 --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-libfacedetection-Release-850d3f1cd704b0988d2c.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "libfacedetection", + "source" : "libfacedetection" + } +} diff --git a/build/.cmake/api/v1/reply/directory-network_camera_receiver-Release-f139a8ec932a70449176.json b/build/.cmake/api/v1/reply/directory-network_camera_receiver-Release-f139a8ec932a70449176.json new file mode 100644 index 0000000..ac73daa --- /dev/null +++ b/build/.cmake/api/v1/reply/directory-network_camera_receiver-Release-f139a8ec932a70449176.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "network_camera_receiver", + "source" : "network_camera_receiver" + } +} diff --git a/build/.cmake/api/v1/reply/index-2026-07-11T10-07-28-0267.json b/build/.cmake/api/v1/reply/index-2026-07-11T10-07-28-0267.json new file mode 100644 index 0000000..3e73efe --- /dev/null +++ b/build/.cmake/api/v1/reply/index-2026-07-11T10-07-28-0267.json @@ -0,0 +1,132 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Unix Makefiles" + }, + "paths" : + { + "cmake" : "/usr/bin/cmake", + "cpack" : "/usr/bin/cpack", + "ctest" : "/usr/bin/ctest", + "root" : "/usr/share/cmake-3.22" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 22, + "patch" : 1, + "string" : "3.22.1", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-e5cec8686dbccb6a6ac8.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "cache-v2-56110cdfa9aef458615e.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-f0fc4a41de14503e7656.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-78e1ec32f5d5e8dda251.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-vscode" : + { + "query.json" : + { + "requests" : + [ + { + "kind" : "cache", + "version" : 2 + }, + { + "kind" : "codemodel", + "version" : 2 + }, + { + "kind" : "toolchains", + "version" : 1 + }, + { + "kind" : "cmakeFiles", + "version" : 1 + } + ], + "responses" : + [ + { + "jsonFile" : "cache-v2-56110cdfa9aef458615e.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "codemodel-v2-e5cec8686dbccb6a6ac8.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "toolchains-v1-78e1ec32f5d5e8dda251.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-f0fc4a41de14503e7656.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ] + } + } + } +} diff --git a/build/.cmake/api/v1/reply/target-face_detection_app-Release-c62b37bfebe414dfbd17.json b/build/.cmake/api/v1/reply/target-face_detection_app-Release-c62b37bfebe414dfbd17.json new file mode 100644 index 0000000..e4fbe70 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-face_detection_app-Release-c62b37bfebe414dfbd17.json @@ -0,0 +1,445 @@ +{ + "artifacts" : + [ + { + "path" : "app/face_detection_app" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "target_link_libraries", + "target_compile_options", + "target_compile_definitions" + ], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 8, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 25, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 20, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + }, + { + "backtrace" : 3, + "fragment" : "-O3" + }, + { + "fragment" : "-std=gnu++11" + } + ], + "defines" : + [ + { + "backtrace" : 4, + "define" : "SOURCE_ROOT=\"/home/hongshaorou/lzy_demo/facedetect\"" + } + ], + "includes" : + [ + { + "backtrace" : 2, + "path" : "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include" + }, + { + "backtrace" : 2, + "path" : "/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "/usr/include/opencv4" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 2 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 2, + "id" : "facedetection::@0ece3808304c45cd0ca3" + }, + { + "backtrace" : 2, + "id" : "network_camera_receiver::@9883af0ef0c4a1b6b770" + } + ], + "id" : "face_detection_app::@5f5a17c01335469806cb", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "fragment" : "-Wl,-rpath,/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "../libfacedetection/libfacedetection.so", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "../network_camera_receiver/libnetwork_camera_receiver.a", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_alphamat.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_barcode.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_face.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_intensity_transform.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_mcc.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_rapid.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_wechat_qrcode.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_text.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_video.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.5.4d", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "/usr/lib/x86_64-linux-gnu/libopencv_core.so.4.5.4d", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "face_detection_app", + "nameOnDisk" : "face_detection_app", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "app/src/main.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/.cmake/api/v1/reply/target-facedetection-Release-318f1374fb40d9a50e7b.json b/build/.cmake/api/v1/reply/target-facedetection-Release-318f1374fb40d9a50e7b.json new file mode 100644 index 0000000..e5bd798 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-facedetection-Release-318f1374fb40d9a50e7b.json @@ -0,0 +1,189 @@ +{ + "artifacts" : + [ + { + "path" : "libfacedetection/libfacedetection.so" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "target_compile_options", + "target_link_libraries", + "target_compile_definitions", + "target_include_directories" + ], + "files" : + [ + "libfacedetection/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 7, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 30, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 38, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 68, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 4, + "file" : 0, + "line" : 14, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fPIC -fvisibility=hidden -fvisibility-inlines-hidden" + }, + { + "backtrace" : 2, + "fragment" : "-O3" + }, + { + "backtrace" : 3, + "fragment" : "-mavx2" + }, + { + "backtrace" : 3, + "fragment" : "-mfma" + }, + { + "backtrace" : 4, + "fragment" : "-fopenmp" + }, + { + "fragment" : "-std=gnu++11" + } + ], + "defines" : + [ + { + "backtrace" : 5, + "define" : "_ENABLE_AVX2" + }, + { + "define" : "facedetection_EXPORTS" + } + ], + "includes" : + [ + { + "backtrace" : 6, + "path" : "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 1 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "id" : "facedetection::@0ece3808304c45cd0ca3", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "fragment" : "/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so", + "role" : "libraries" + }, + { + "fragment" : "/usr/lib/x86_64-linux-gnu/libpthread.a", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "facedetection", + "nameOnDisk" : "libfacedetection.so", + "paths" : + { + "build" : "libfacedetection", + "source" : "libfacedetection" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "libfacedetection/src/facedetectcnn.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "libfacedetection/src/facedetectcnn-model.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "libfacedetection/src/facedetectcnn-data.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/target-network_camera_receiver-Release-20ca25790d17e3c9c2b5.json b/build/.cmake/api/v1/reply/target-network_camera_receiver-Release-20ca25790d17e3c9c2b5.json new file mode 100644 index 0000000..01b7aa4 --- /dev/null +++ b/build/.cmake/api/v1/reply/target-network_camera_receiver-Release-20ca25790d17e3c9c2b5.json @@ -0,0 +1,125 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "network_camera_receiver/libnetwork_camera_receiver.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "target_compile_options", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "network_camera_receiver/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 6, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 10, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 16, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + }, + { + "backtrace" : 2, + "fragment" : "-O3" + }, + { + "fragment" : "-std=gnu++11" + } + ], + "includes" : + [ + { + "backtrace" : 3, + "path" : "/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "/usr/include/opencv4" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "id" : "network_camera_receiver::@9883af0ef0c4a1b6b770", + "name" : "network_camera_receiver", + "nameOnDisk" : "libnetwork_camera_receiver.a", + "paths" : + { + "build" : "network_camera_receiver", + "source" : "network_camera_receiver" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "network_camera_receiver/src/network_camera_receiver.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/build/.cmake/api/v1/reply/toolchains-v1-78e1ec32f5d5e8dda251.json b/build/.cmake/api/v1/reply/toolchains-v1-78e1ec32f5d5e8dda251.json new file mode 100644 index 0000000..a2951e5 --- /dev/null +++ b/build/.cmake/api/v1/reply/toolchains-v1-78e1ec32f5d5e8dda251.json @@ -0,0 +1,107 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "gcc", + "gcc_s", + "c", + "gcc", + "gcc_s" + ] + }, + "path" : "/usr/bin/gcc", + "version" : "11.4.0" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/include/c++/11", + "/usr/include/x86_64-linux-gnu/c++/11", + "/usr/include/c++/11/backward", + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "stdc++", + "m", + "gcc_s", + "gcc", + "c", + "gcc_s", + "gcc" + ] + }, + "path" : "/usr/bin/g++", + "version" : "11.4.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "mm", + "mpp", + "CPP", + "ixx", + "cppm" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..92bef9b --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,441 @@ +# This is the CMakeCache file. +# For build in directory: /home/hongshaorou/lzy_demo/facedetect/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//No help, variable specified on the command line. +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/g++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=FaceDetectionApp + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable AVX2 acceleration (X64 CPU) +ENABLE_AVX2:BOOL=ON + +//Enable AVX512 acceleration (X64 CPU) +ENABLE_AVX512:BOOL=OFF + +//Enable NEON acceleration (ARM CPU) +ENABLE_NEON:BOOL=OFF + +//Value Computed by CMake +FaceDetectionApp_BINARY_DIR:STATIC=/home/hongshaorou/lzy_demo/facedetect/build + +//Value Computed by CMake +FaceDetectionApp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +FaceDetectionApp_SOURCE_DIR:STATIC=/home/hongshaorou/lzy_demo/facedetect + +//The directory containing a CMake configuration file for OpenCV. +OpenCV_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/opencv4 + +//CXX compiler flags for OpenMP parallelization +OpenMP_CXX_FLAGS:STRING=-fopenmp + +//CXX compiler libraries for OpenMP parallelization +OpenMP_CXX_LIB_NAMES:STRING=gomp;pthread + +//C compiler flags for OpenMP parallelization +OpenMP_C_FLAGS:STRING=-fopenmp + +//C compiler libraries for OpenMP parallelization +OpenMP_C_LIB_NAMES:STRING=gomp;pthread + +//Path to the gomp library for OpenMP +OpenMP_gomp_LIBRARY:FILEPATH=/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so + +//Path to the pthread library for OpenMP +OpenMP_pthread_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpthread.a + +//Dependencies for the target +network_camera_receiver_LIB_DEPENDS:STATIC=general;opencv_calib3d;general;opencv_core;general;opencv_dnn;general;opencv_features2d;general;opencv_flann;general;opencv_highgui;general;opencv_imgcodecs;general;opencv_imgproc;general;opencv_ml;general;opencv_objdetect;general;opencv_photo;general;opencv_stitching;general;opencv_video;general;opencv_videoio;general;opencv_alphamat;general;opencv_aruco;general;opencv_barcode;general;opencv_bgsegm;general;opencv_bioinspired;general;opencv_ccalib;general;opencv_datasets;general;opencv_dnn_objdetect;general;opencv_dnn_superres;general;opencv_dpm;general;opencv_face;general;opencv_freetype;general;opencv_fuzzy;general;opencv_hdf;general;opencv_hfs;general;opencv_img_hash;general;opencv_intensity_transform;general;opencv_line_descriptor;general;opencv_mcc;general;opencv_optflow;general;opencv_phase_unwrapping;general;opencv_plot;general;opencv_quality;general;opencv_rapid;general;opencv_reg;general;opencv_rgbd;general;opencv_saliency;general;opencv_shape;general;opencv_stereo;general;opencv_structured_light;general;opencv_superres;general;opencv_surface_matching;general;opencv_text;general;opencv_tracking;general;opencv_videostab;general;opencv_viz;general;opencv_wechat_qrcode;general;opencv_ximgproc;general;opencv_xobjdetect;general;opencv_xphoto; + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/hongshaorou/lzy_demo/facedetect/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Have include pthread.h +CMAKE_HAVE_PTHREAD_H:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/hongshaorou/lzy_demo/facedetect +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Test CXX_HAS_MFPU_NEON +CXX_HAS_MFPU_NEON:INTERNAL= +//Details about finding OpenCV +FIND_PACKAGE_MESSAGE_DETAILS_OpenCV:INTERNAL=[/usr][v4.5.4()] +//Details about finding OpenMP +FIND_PACKAGE_MESSAGE_DETAILS_OpenMP:INTERNAL=[TRUE][TRUE][c ][v4.5()] +//Details about finding OpenMP_C +FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()] +//Details about finding OpenMP_CXX +FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_CXX:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Result of TRY_COMPILE +OpenMP_COMPILE_RESULT_CXX_fopenmp:INTERNAL=TRUE +//Result of TRY_COMPILE +OpenMP_COMPILE_RESULT_C_fopenmp:INTERNAL=TRUE +//ADVANCED property for variable: OpenMP_CXX_FLAGS +OpenMP_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OpenMP_CXX_LIB_NAMES +OpenMP_CXX_LIB_NAMES-ADVANCED:INTERNAL=1 +//CXX compiler's OpenMP specification date +OpenMP_CXX_SPEC_DATE:INTERNAL=201511 +//ADVANCED property for variable: OpenMP_C_FLAGS +OpenMP_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OpenMP_C_LIB_NAMES +OpenMP_C_LIB_NAMES-ADVANCED:INTERNAL=1 +//C compiler's OpenMP specification date +OpenMP_C_SPEC_DATE:INTERNAL=201511 +//Result of TRY_COMPILE +OpenMP_SPECTEST_CXX_:INTERNAL=TRUE +//Result of TRY_COMPILE +OpenMP_SPECTEST_C_:INTERNAL=TRUE +//ADVANCED property for variable: OpenMP_gomp_LIBRARY +OpenMP_gomp_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OpenMP_pthread_LIBRARY +OpenMP_pthread_LIBRARY-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake b/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..2dfd362 --- /dev/null +++ b/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..a220808 --- /dev/null +++ b/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..020be21 Binary files /dev/null and b/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..5f5796d Binary files /dev/null and b/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.22.1/CMakeSystem.cmake b/build/CMakeFiles/3.22.1/CMakeSystem.cmake new file mode 100644 index 0000000..2f7ed46 --- /dev/null +++ b/build/CMakeFiles/3.22.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.6.87.2-microsoft-standard-WSL2") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.6.87.2-microsoft-standard-WSL2") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.6.87.2-microsoft-standard-WSL2") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.6.87.2-microsoft-standard-WSL2") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..41b99d7 --- /dev/null +++ b/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.22.1/CompilerIdC/a.out b/build/CMakeFiles/3.22.1/CompilerIdC/a.out new file mode 100755 index 0000000..7873b2c Binary files /dev/null and b/build/CMakeFiles/3.22.1/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..25c62a8 --- /dev/null +++ b/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,791 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out b/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out new file mode 100755 index 0000000..146208d Binary files /dev/null and b/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..319df89 --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hongshaorou/lzy_demo/facedetect") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hongshaorou/lzy_demo/facedetect/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeError.log b/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..b3294a5 --- /dev/null +++ b/build/CMakeFiles/CMakeError.log @@ -0,0 +1,15 @@ +Performing C++ SOURCE FILE Test CXX_HAS_MFPU_NEON failed with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_a1299/fast && /usr/bin/gmake -f CMakeFiles/cmTC_a1299.dir/build.make CMakeFiles/cmTC_a1299.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a1299.dir/src.cxx.o +/usr/bin/g++ -DCXX_HAS_MFPU_NEON -mfpu=neon -std=gnu++11 -o CMakeFiles/cmTC_a1299.dir/src.cxx.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp/src.cxx +g++: error: unrecognized command-line option '-mfpu=neon' +gmake[1]: *** [CMakeFiles/cmTC_a1299.dir/build.make:78: CMakeFiles/cmTC_a1299.dir/src.cxx.o] Error 1 +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +gmake: *** [Makefile:127: cmTC_a1299/fast] Error 2 + + +Source file was: +int main() { return 0; } diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..044a166 --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,877 @@ +The system is: Linux - 6.6.87.2-microsoft-standard-WSL2 - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/3.22.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/g++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_d6206/fast && /usr/bin/gmake -f CMakeFiles/cmTC_d6206.dir/build.make CMakeFiles/cmTC_d6206.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -v -o CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_d6206.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6obHmJ.s +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 46ebede1f5b795a957a1e85cb61af9d8 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/' + as -v --64 -o CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o /tmp/cc6obHmJ.s +GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_d6206 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6206.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -o cmTC_d6206 +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d6206' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d6206.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccr4bvZA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_d6206 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d6206' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d6206.' +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_d6206/fast && /usr/bin/gmake -f CMakeFiles/cmTC_d6206.dir/build.make CMakeFiles/cmTC_d6206.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -v -o CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_d6206.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6obHmJ.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 46ebede1f5b795a957a1e85cb61af9d8] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o /tmp/cc6obHmJ.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_d6206] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6206.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -o cmTC_d6206 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d6206' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_d6206.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccr4bvZA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_d6206 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccr4bvZA.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_d6206] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_d6206.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_a5af8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_a5af8.dir/build.make CMakeFiles/cmTC_a5af8.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/g++ -v -o CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/g++ +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a5af8.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccrp0kAN.s +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: ac7fa628ee459f217e6fdb88b3db0bde +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/' + as -v --64 -o CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccrp0kAN.s +GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_a5af8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5af8.dir/link.txt --verbose=1 +/usr/bin/g++ -v CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a5af8 +Using built-in specs. +COLLECT_GCC=/usr/bin/g++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a5af8' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a5af8.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEmjEu5.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a5af8 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a5af8' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a5af8.' +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_a5af8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_a5af8.dir/build.make CMakeFiles/cmTC_a5af8.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/g++ -v -o CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/g++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a5af8.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccrp0kAN.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: ac7fa628ee459f217e6fdb88b3db0bde] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccrp0kAN.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_a5af8] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5af8.dir/link.txt --verbose=1] + ignore line: [/usr/bin/g++ -v CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a5af8 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/g++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a5af8' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a5af8.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEmjEu5.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a5af8 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccEmjEu5.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_a5af8] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_a5af8.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting C OpenMP compiler ABI info compiled with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_7ec7e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_7ec7e.dir/build.make CMakeFiles/cmTC_7ec7e.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o +/usr/bin/gcc -fopenmp -v -o CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c -quiet -dumpdir CMakeFiles/cmTC_7ec7e.dir/ -dumpbase OpenMPTryFlag.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fopenmp -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccitCOVL.s +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 46ebede1f5b795a957a1e85cb61af9d8 +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/' + as -v --64 -o CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o /tmp/ccitCOVL.s +GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.' +Linking C executable cmTC_7ec7e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ec7e.dir/link.txt --verbose=1 +/usr/bin/gcc -fopenmp -v CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -o cmTC_7ec7e -v +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +Reading specs from /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.spec +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_7ec7e' '-v' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_7ec7e.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9kFNBA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_7ec7e /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadend.o +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_7ec7e' '-v' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_7ec7e.' +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + + +Parsed C OpenMP implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_7ec7e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_7ec7e.dir/build.make CMakeFiles/cmTC_7ec7e.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o] + ignore line: [/usr/bin/gcc -fopenmp -v -o CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c -quiet -dumpdir CMakeFiles/cmTC_7ec7e.dir/ -dumpbase OpenMPTryFlag.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fopenmp -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccitCOVL.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 46ebede1f5b795a957a1e85cb61af9d8] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o /tmp/ccitCOVL.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.'] + ignore line: [Linking C executable cmTC_7ec7e] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ec7e.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -fopenmp -v CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -o cmTC_7ec7e -v ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.spec] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_7ec7e' '-v' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_7ec7e.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9kFNBA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_7ec7e /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadend.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc9kFNBA.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_7ec7e] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_7ec7e.dir/OpenMPTryFlag.c.o] ==> ignore + arg [-lgomp] ==> lib [gomp] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lpthread] ==> lib [pthread] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gomp;gcc;gcc_s;pthread;c;gcc;gcc_s] + implicit objs: [] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Detecting CXX OpenMP compiler ABI info compiled with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0fbca/fast && /usr/bin/gmake -f CMakeFiles/cmTC_0fbca.dir/build.make CMakeFiles/cmTC_0fbca.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o +/usr/bin/g++ -fopenmp -v -std=gnu++11 -o CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/g++ +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp -quiet -dumpdir CMakeFiles/cmTC_0fbca.dir/ -dumpbase OpenMPTryFlag.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -std=gnu++11 -version -fopenmp -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccOhPVtr.s +GNU C++11 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C++11 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: ac7fa628ee459f217e6fdb88b3db0bde +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/' + as -v --64 -o CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o /tmp/ccOhPVtr.s +GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.' +Linking CXX executable cmTC_0fbca +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0fbca.dir/link.txt --verbose=1 +/usr/bin/g++ -fopenmp -v CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -o cmTC_0fbca -v +Using built-in specs. +COLLECT_GCC=/usr/bin/g++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ +Reading specs from /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.spec +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_0fbca' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_0fbca.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cceZQIcK.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0fbca /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadend.o +COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_0fbca' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_0fbca.' +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX OpenMP implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0fbca/fast && /usr/bin/gmake -f CMakeFiles/cmTC_0fbca.dir/build.make CMakeFiles/cmTC_0fbca.dir/build] + ignore line: [gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o] + ignore line: [/usr/bin/g++ -fopenmp -v -std=gnu++11 -o CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/g++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp -quiet -dumpdir CMakeFiles/cmTC_0fbca.dir/ -dumpbase OpenMPTryFlag.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -std=gnu++11 -version -fopenmp -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccOhPVtr.s] + ignore line: [GNU C++11 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++11 (Ubuntu 11.4.0-1ubuntu1~22.04.3) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: ac7fa628ee459f217e6fdb88b3db0bde] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o /tmp/ccOhPVtr.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.'] + ignore line: [Linking CXX executable cmTC_0fbca] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0fbca.dir/link.txt --verbose=1] + ignore line: [/usr/bin/g++ -fopenmp -v CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -o cmTC_0fbca -v ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/g++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04.3' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-0odw26/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04.3) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.spec] + ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_0fbca' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' '-dumpdir' 'cmTC_0fbca.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cceZQIcK.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0fbca /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/11/crtoffloadend.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cceZQIcK.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_0fbca] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_0fbca.dir/OpenMPTryFlag.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgomp] ==> lib [gomp] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lpthread] ==> lib [pthread] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gomp;gcc_s;gcc;pthread;c;gcc_s;gcc] + implicit objs: [] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_c995e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_c995e.dir/build.make CMakeFiles/cmTC_c995e.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_c995e.dir/CheckIncludeFile.c.o +/usr/bin/gcc -o CMakeFiles/cmTC_c995e.dir/CheckIncludeFile.c.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_c995e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c995e.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTC_c995e.dir/CheckIncludeFile.c.o -o cmTC_c995e +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + + +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output: +Change Dir: /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_bbe8b/fast && /usr/bin/gmake -f CMakeFiles/cmTC_bbe8b.dir/build.make CMakeFiles/cmTC_bbe8b.dir/build +gmake[1]: Entering directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_bbe8b.dir/src.c.o +/usr/bin/gcc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_bbe8b.dir/src.c.o -c /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_bbe8b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bbe8b.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTC_bbe8b.dir/src.c.o -o cmTC_bbe8b +gmake[1]: Leaving directory '/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/CMakeTmp' + + +Source file was: +#include + +static void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_cancel(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + diff --git a/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c b/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c new file mode 100644 index 0000000..3321e6b --- /dev/null +++ b/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c @@ -0,0 +1,17 @@ + +#include +#include +const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M', + 'P', '-', 'd', 'a', 't', 'e', '[', + ('0' + ((_OPENMP/100000)%10)), + ('0' + ((_OPENMP/10000)%10)), + ('0' + ((_OPENMP/1000)%10)), + ('0' + ((_OPENMP/100)%10)), + ('0' + ((_OPENMP/10)%10)), + ('0' + ((_OPENMP/1)%10)), + ']', '\0' }; +int main(void) +{ + puts(ompver_str); + return 0; +} diff --git a/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp b/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp new file mode 100644 index 0000000..3321e6b --- /dev/null +++ b/build/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp @@ -0,0 +1,17 @@ + +#include +#include +const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M', + 'P', '-', 'd', 'a', 't', 'e', '[', + ('0' + ((_OPENMP/100000)%10)), + ('0' + ((_OPENMP/10000)%10)), + ('0' + ((_OPENMP/1000)%10)), + ('0' + ((_OPENMP/100)%10)), + ('0' + ((_OPENMP/10)%10)), + ('0' + ((_OPENMP/1)%10)), + ']', '\0' }; +int main(void) +{ + puts(ompver_str); + return 0; +} diff --git a/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c b/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c new file mode 100644 index 0000000..4aea0b0 --- /dev/null +++ b/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c @@ -0,0 +1,12 @@ + +#include +int main(void) { +#ifdef _OPENMP + omp_get_max_threads(); + return 0; +#elif defined(__HIP_DEVICE_COMPILE__) + return 0; +#else + breaks_on_purpose +#endif +} diff --git a/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp b/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp new file mode 100644 index 0000000..4aea0b0 --- /dev/null +++ b/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp @@ -0,0 +1,12 @@ + +#include +int main(void) { +#ifdef _OPENMP + omp_get_max_threads(); + return 0; +#elif defined(__HIP_DEVICE_COMPILE__) + return 0; +#else + breaks_on_purpose +#endif +} diff --git a/build/CMakeFiles/FindOpenMP/ompver_C.bin b/build/CMakeFiles/FindOpenMP/ompver_C.bin new file mode 100755 index 0000000..f4d4cd4 Binary files /dev/null and b/build/CMakeFiles/FindOpenMP/ompver_C.bin differ diff --git a/build/CMakeFiles/FindOpenMP/ompver_CXX.bin b/build/CMakeFiles/FindOpenMP/ompver_CXX.bin new file mode 100755 index 0000000..ddfd4cc Binary files /dev/null and b/build/CMakeFiles/FindOpenMP/ompver_CXX.bin differ diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..2d1861f --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "../app/CMakeLists.txt" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeSystem.cmake" + "../libfacedetection/CMakeLists.txt" + "../network_camera_receiver/CMakeLists.txt" + "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVConfig-version.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVConfig.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVModules-release.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/opencv4/OpenCVModules.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.22/Modules/CheckCSourceCompiles.cmake" + "/usr/share/cmake-3.22/Modules/CheckCXXCompilerFlag.cmake" + "/usr/share/cmake-3.22/Modules/CheckCXXSourceCompiles.cmake" + "/usr/share/cmake-3.22/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.22/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.22/Modules/FindOpenMP.cmake" + "/usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.22/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.22/Modules/FindThreads.cmake" + "/usr/share/cmake-3.22/Modules/Internal/CheckCompilerFlag.cmake" + "/usr/share/cmake-3.22/Modules/Internal/CheckSourceCompiles.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.22/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + "libfacedetection/CMakeFiles/CMakeDirectoryInformation.cmake" + "network_camera_receiver/CMakeFiles/CMakeDirectoryInformation.cmake" + "app/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake" + "network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake" + "app/CMakeFiles/face_detection_app.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..cbfdb68 --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,216 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: libfacedetection/all +all: network_camera_receiver/all +all: app/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: libfacedetection/preinstall +preinstall: network_camera_receiver/preinstall +preinstall: app/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: libfacedetection/clean +clean: network_camera_receiver/clean +clean: app/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory app + +# Recursive "all" directory target. +app/all: app/CMakeFiles/face_detection_app.dir/all +.PHONY : app/all + +# Recursive "preinstall" directory target. +app/preinstall: +.PHONY : app/preinstall + +# Recursive "clean" directory target. +app/clean: app/CMakeFiles/face_detection_app.dir/clean +.PHONY : app/clean + +#============================================================================= +# Directory level rules for directory libfacedetection + +# Recursive "all" directory target. +libfacedetection/all: libfacedetection/CMakeFiles/facedetection.dir/all +.PHONY : libfacedetection/all + +# Recursive "preinstall" directory target. +libfacedetection/preinstall: +.PHONY : libfacedetection/preinstall + +# Recursive "clean" directory target. +libfacedetection/clean: libfacedetection/CMakeFiles/facedetection.dir/clean +.PHONY : libfacedetection/clean + +#============================================================================= +# Directory level rules for directory network_camera_receiver + +# Recursive "all" directory target. +network_camera_receiver/all: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/all +.PHONY : network_camera_receiver/all + +# Recursive "preinstall" directory target. +network_camera_receiver/preinstall: +.PHONY : network_camera_receiver/preinstall + +# Recursive "clean" directory target. +network_camera_receiver/clean: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean +.PHONY : network_camera_receiver/clean + +#============================================================================= +# Target rules for target libfacedetection/CMakeFiles/facedetection.dir + +# All Build rule for target. +libfacedetection/CMakeFiles/facedetection.dir/all: + $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/depend + $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=3,4,5,6 "Built target facedetection" +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/all + +# Build rule for subdir invocation for target. +libfacedetection/CMakeFiles/facedetection.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/CMakeFiles/facedetection.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/rule + +# Convenience name for target. +facedetection: libfacedetection/CMakeFiles/facedetection.dir/rule +.PHONY : facedetection + +# clean rule for target. +libfacedetection/CMakeFiles/facedetection.dir/clean: + $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/clean +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/clean + +#============================================================================= +# Target rules for target network_camera_receiver/CMakeFiles/network_camera_receiver.dir + +# All Build rule for target. +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/all: + $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend + $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=7,8 "Built target network_camera_receiver" +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/all + +# Build rule for subdir invocation for target. +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/CMakeFiles/network_camera_receiver.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule + +# Convenience name for target. +network_camera_receiver: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule +.PHONY : network_camera_receiver + +# clean rule for target. +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean: + $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean + +#============================================================================= +# Target rules for target app/CMakeFiles/face_detection_app.dir + +# All Build rule for target. +app/CMakeFiles/face_detection_app.dir/all: libfacedetection/CMakeFiles/facedetection.dir/all +app/CMakeFiles/face_detection_app.dir/all: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/all + $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/depend + $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=1,2 "Built target face_detection_app" +.PHONY : app/CMakeFiles/face_detection_app.dir/all + +# Build rule for subdir invocation for target. +app/CMakeFiles/face_detection_app.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 8 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/CMakeFiles/face_detection_app.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : app/CMakeFiles/face_detection_app.dir/rule + +# Convenience name for target. +face_detection_app: app/CMakeFiles/face_detection_app.dir/rule +.PHONY : face_detection_app + +# clean rule for target. +app/CMakeFiles/face_detection_app.dir/clean: + $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/clean +.PHONY : app/CMakeFiles/face_detection_app.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..4e22182 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,11 @@ +/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/edit_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles/rebuild_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/CMakeFiles/facedetection.dir +/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/CMakeFiles/edit_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/CMakeFiles/rebuild_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir +/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/CMakeFiles/edit_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/CMakeFiles/rebuild_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/app/CMakeFiles/face_detection_app.dir +/home/hongshaorou/lzy_demo/facedetect/build/app/CMakeFiles/edit_cache.dir +/home/hongshaorou/lzy_demo/facedetect/build/app/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..bfe7c8d --- /dev/null +++ b/build/Makefile @@ -0,0 +1,182 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles /home/hongshaorou/lzy_demo/facedetect/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named facedetection + +# Build rule for target. +facedetection: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 facedetection +.PHONY : facedetection + +# fast build rule for target. +facedetection/fast: + $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/build +.PHONY : facedetection/fast + +#============================================================================= +# Target rules for targets named network_camera_receiver + +# Build rule for target. +network_camera_receiver: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver +.PHONY : network_camera_receiver + +# fast build rule for target. +network_camera_receiver/fast: + $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build +.PHONY : network_camera_receiver/fast + +#============================================================================= +# Target rules for targets named face_detection_app + +# Build rule for target. +face_detection_app: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 face_detection_app +.PHONY : face_detection_app + +# fast build rule for target. +face_detection_app/fast: + $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/build +.PHONY : face_detection_app/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... face_detection_app" + @echo "... facedetection" + @echo "... network_camera_receiver" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/app/CMakeFiles/CMakeDirectoryInformation.cmake b/build/app/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..319df89 --- /dev/null +++ b/build/app/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hongshaorou/lzy_demo/facedetect") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hongshaorou/lzy_demo/facedetect/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/app/CMakeFiles/face_detection_app.dir/DependInfo.cmake b/build/app/CMakeFiles/face_detection_app.dir/DependInfo.cmake new file mode 100644 index 0000000..acdb1e2 --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/DependInfo.cmake @@ -0,0 +1,21 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp" "app/CMakeFiles/face_detection_app.dir/src/main.cpp.o" "gcc" "app/CMakeFiles/face_detection_app.dir/src/main.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake" + "/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/app/CMakeFiles/face_detection_app.dir/build.make b/build/app/CMakeFiles/face_detection_app.dir/build.make new file mode 100644 index 0000000..db6266c --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/build.make @@ -0,0 +1,166 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +# Include any dependencies generated for this target. +include app/CMakeFiles/face_detection_app.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include app/CMakeFiles/face_detection_app.dir/compiler_depend.make + +# Include the progress variables for this target. +include app/CMakeFiles/face_detection_app.dir/progress.make + +# Include the compile flags for this target's objects. +include app/CMakeFiles/face_detection_app.dir/flags.make + +app/CMakeFiles/face_detection_app.dir/src/main.cpp.o: app/CMakeFiles/face_detection_app.dir/flags.make +app/CMakeFiles/face_detection_app.dir/src/main.cpp.o: ../app/src/main.cpp +app/CMakeFiles/face_detection_app.dir/src/main.cpp.o: app/CMakeFiles/face_detection_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object app/CMakeFiles/face_detection_app.dir/src/main.cpp.o" + cd /home/hongshaorou/lzy_demo/facedetect/build/app && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT app/CMakeFiles/face_detection_app.dir/src/main.cpp.o -MF CMakeFiles/face_detection_app.dir/src/main.cpp.o.d -o CMakeFiles/face_detection_app.dir/src/main.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp + +app/CMakeFiles/face_detection_app.dir/src/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/face_detection_app.dir/src/main.cpp.i" + cd /home/hongshaorou/lzy_demo/facedetect/build/app && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp > CMakeFiles/face_detection_app.dir/src/main.cpp.i + +app/CMakeFiles/face_detection_app.dir/src/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/face_detection_app.dir/src/main.cpp.s" + cd /home/hongshaorou/lzy_demo/facedetect/build/app && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp -o CMakeFiles/face_detection_app.dir/src/main.cpp.s + +# Object files for target face_detection_app +face_detection_app_OBJECTS = \ +"CMakeFiles/face_detection_app.dir/src/main.cpp.o" + +# External object files for target face_detection_app +face_detection_app_EXTERNAL_OBJECTS = + +app/face_detection_app: app/CMakeFiles/face_detection_app.dir/src/main.cpp.o +app/face_detection_app: app/CMakeFiles/face_detection_app.dir/build.make +app/face_detection_app: libfacedetection/libfacedetection.so +app/face_detection_app: network_camera_receiver/libnetwork_camera_receiver.a +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_alphamat.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_barcode.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_intensity_transform.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_mcc.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_rapid.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_wechat_qrcode.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.5.4d +app/face_detection_app: /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.5.4d +app/face_detection_app: app/CMakeFiles/face_detection_app.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable face_detection_app" + cd /home/hongshaorou/lzy_demo/facedetect/build/app && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/face_detection_app.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +app/CMakeFiles/face_detection_app.dir/build: app/face_detection_app +.PHONY : app/CMakeFiles/face_detection_app.dir/build + +app/CMakeFiles/face_detection_app.dir/clean: + cd /home/hongshaorou/lzy_demo/facedetect/build/app && $(CMAKE_COMMAND) -P CMakeFiles/face_detection_app.dir/cmake_clean.cmake +.PHONY : app/CMakeFiles/face_detection_app.dir/clean + +app/CMakeFiles/face_detection_app.dir/depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hongshaorou/lzy_demo/facedetect /home/hongshaorou/lzy_demo/facedetect/app /home/hongshaorou/lzy_demo/facedetect/build /home/hongshaorou/lzy_demo/facedetect/build/app /home/hongshaorou/lzy_demo/facedetect/build/app/CMakeFiles/face_detection_app.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : app/CMakeFiles/face_detection_app.dir/depend + diff --git a/build/app/CMakeFiles/face_detection_app.dir/cmake_clean.cmake b/build/app/CMakeFiles/face_detection_app.dir/cmake_clean.cmake new file mode 100644 index 0000000..19654fb --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/face_detection_app.dir/src/main.cpp.o" + "CMakeFiles/face_detection_app.dir/src/main.cpp.o.d" + "face_detection_app" + "face_detection_app.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/face_detection_app.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.make b/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.make new file mode 100644 index 0000000..ef48e0c --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for face_detection_app. +# This may be replaced when dependencies are built. diff --git a/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.ts b/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.ts new file mode 100644 index 0000000..d52cc5d --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for face_detection_app. diff --git a/build/app/CMakeFiles/face_detection_app.dir/depend.make b/build/app/CMakeFiles/face_detection_app.dir/depend.make new file mode 100644 index 0000000..8d680ad --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for face_detection_app. +# This may be replaced when dependencies are built. diff --git a/build/app/CMakeFiles/face_detection_app.dir/flags.make b/build/app/CMakeFiles/face_detection_app.dir/flags.make new file mode 100644 index 0000000..d989d2c --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/g++ +CXX_DEFINES = -DSOURCE_ROOT=\"/home/hongshaorou/lzy_demo/facedetect\" + +CXX_INCLUDES = -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include -I/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include -isystem /usr/include/opencv4 + +CXX_FLAGS = -O3 -DNDEBUG -O3 -std=gnu++11 + diff --git a/build/app/CMakeFiles/face_detection_app.dir/link.txt b/build/app/CMakeFiles/face_detection_app.dir/link.txt new file mode 100644 index 0000000..1a00934 --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/g++ -O3 -DNDEBUG CMakeFiles/face_detection_app.dir/src/main.cpp.o -o face_detection_app -Wl,-rpath,/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection ../libfacedetection/libfacedetection.so ../network_camera_receiver/libnetwork_camera_receiver.a /usr/lib/x86_64-linux-gnu/libopencv_stitching.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_alphamat.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_aruco.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_barcode.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_bgsegm.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_bioinspired.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_ccalib.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_dnn_objdetect.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_dnn_superres.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_dpm.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_face.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_freetype.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_fuzzy.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_hdf.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_hfs.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_img_hash.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_intensity_transform.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_line_descriptor.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_mcc.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_quality.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_rapid.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_reg.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_rgbd.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_saliency.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_shape.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_stereo.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_structured_light.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_superres.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_surface_matching.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_tracking.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_videostab.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_viz.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_wechat_qrcode.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_xobjdetect.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_xphoto.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_highgui.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_datasets.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_plot.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_text.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_ml.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.5.4d diff --git a/build/app/CMakeFiles/face_detection_app.dir/progress.make b/build/app/CMakeFiles/face_detection_app.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o b/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o new file mode 100644 index 0000000..078e1c0 Binary files /dev/null and b/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o differ diff --git a/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o.d b/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o.d new file mode 100644 index 0000000..6b5be1f --- /dev/null +++ b/build/app/CMakeFiles/face_detection_app.dir/src/main.cpp.o.d @@ -0,0 +1,341 @@ +app/CMakeFiles/face_detection_app.dir/src/main.cpp.o: \ + /home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp \ + /usr/include/stdc-predef.h /usr/include/opencv4/opencv2/opencv.hpp \ + /usr/include/opencv4/opencv2/opencv_modules.hpp \ + /usr/include/opencv4/opencv2/core.hpp \ + /usr/include/opencv4/opencv2/core/cvdef.h \ + /usr/include/opencv4/opencv2/core/version.hpp /usr/include/c++/11/limits \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/opencv4/opencv2/core/hal/interface.h \ + /usr/include/c++/11/cstddef \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/array \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/opencv4/opencv2/core/base.hpp /usr/include/c++/11/climits \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/opencv4/opencv2/core/cvstd.hpp /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/cctype /usr/include/ctype.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/bits/invoke.h /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/opencv4/opencv2/core/neon_utils.hpp \ + /usr/include/opencv4/opencv2/core/vsx_utils.hpp /usr/include/assert.h \ + /usr/include/opencv4/opencv2/core/check.hpp \ + /usr/include/opencv4/opencv2/core/traits.hpp \ + /usr/include/opencv4/opencv2/core/matx.hpp \ + /usr/include/opencv4/opencv2/core/saturate.hpp \ + /usr/include/opencv4/opencv2/core/fast_math.hpp \ + /usr/include/opencv4/opencv2/core/types.hpp /usr/include/c++/11/cfloat \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/opencv4/opencv2/core/mat.hpp \ + /usr/include/opencv4/opencv2/core/bufferpool.hpp \ + /usr/include/opencv4/opencv2/core/mat.inl.hpp \ + /usr/include/opencv4/opencv2/core/persistence.hpp \ + /usr/include/opencv4/opencv2/core/operations.hpp \ + /usr/include/opencv4/opencv2/core/cvstd.inl.hpp \ + /usr/include/c++/11/complex /usr/include/c++/11/sstream \ + /usr/include/c++/11/istream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc /usr/include/c++/11/ostream \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/bits/sstream.tcc \ + /usr/include/opencv4/opencv2/core/utility.hpp \ + /usr/include/c++/11/functional /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/include/opencv4/opencv2/core/optim.hpp \ + /usr/include/opencv4/opencv2/core/ovx.hpp \ + /usr/include/opencv4/opencv2/core/cvdef.h \ + /usr/include/opencv4/opencv2/calib3d.hpp \ + /usr/include/opencv4/opencv2/features2d.hpp \ + /usr/include/opencv4/opencv2/flann/miniflann.hpp \ + /usr/include/opencv4/opencv2/flann/defines.h \ + /usr/include/opencv4/opencv2/flann/config.h \ + /usr/include/opencv4/opencv2/core/affine.hpp \ + /usr/include/opencv4/opencv2/dnn.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.hpp \ + /usr/include/opencv4/opencv2/core/async.hpp \ + /usr/include/opencv4/opencv2/dnn/version.hpp \ + /usr/include/opencv4/opencv2/dnn/dict.hpp /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/opencv4/opencv2/dnn/layer.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.inl.hpp \ + /usr/include/opencv4/opencv2/dnn/utils/inference_engine.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.hpp \ + /usr/include/opencv4/opencv2/flann.hpp \ + /usr/include/opencv4/opencv2/flann/flann_base.hpp \ + /usr/include/opencv4/opencv2/flann/general.h \ + /usr/include/opencv4/opencv2/flann/matrix.h \ + /usr/include/opencv4/opencv2/flann/params.h \ + /usr/include/opencv4/opencv2/flann/any.h \ + /usr/include/opencv4/opencv2/flann/defines.h \ + /usr/include/c++/11/iostream /usr/include/opencv4/opencv2/flann/saving.h \ + /usr/include/opencv4/opencv2/flann/nn_index.h \ + /usr/include/opencv4/opencv2/flann/result_set.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/include/opencv4/opencv2/flann/all_indices.h \ + /usr/include/opencv4/opencv2/flann/kdtree_index.h \ + /usr/include/opencv4/opencv2/flann/dynamic_bitset.h \ + /usr/include/opencv4/opencv2/flann/dist.h \ + /usr/include/opencv4/opencv2/flann/heap.h \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/opencv4/opencv2/flann/allocator.h \ + /usr/include/opencv4/opencv2/flann/random.h \ + /usr/include/opencv4/opencv2/flann/kdtree_single_index.h \ + /usr/include/opencv4/opencv2/flann/kmeans_index.h \ + /usr/include/opencv4/opencv2/flann/logger.h \ + /usr/include/opencv4/opencv2/flann/composite_index.h \ + /usr/include/opencv4/opencv2/flann/linear_index.h \ + /usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h \ + /usr/include/opencv4/opencv2/flann/lsh_index.h \ + /usr/include/opencv4/opencv2/flann/lsh_table.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h /usr/include/c++/11/math.h \ + /usr/include/opencv4/opencv2/flann/autotuned_index.h \ + /usr/include/opencv4/opencv2/flann/ground_truth.h \ + /usr/include/opencv4/opencv2/flann/index_testing.h \ + /usr/include/opencv4/opencv2/flann/timer.h \ + /usr/include/opencv4/opencv2/flann/sampling.h \ + /usr/include/opencv4/opencv2/highgui.hpp \ + /usr/include/opencv4/opencv2/imgcodecs.hpp \ + /usr/include/opencv4/opencv2/videoio.hpp \ + /usr/include/opencv4/opencv2/imgproc.hpp \ + /usr/include/opencv4/opencv2/imgproc/segmentation.hpp \ + /usr/include/opencv4/opencv2/ml.hpp \ + /usr/include/opencv4/opencv2/ml/ml.inl.hpp \ + /usr/include/opencv4/opencv2/objdetect.hpp \ + /usr/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp \ + /usr/include/opencv4/opencv2/objdetect/face.hpp \ + /usr/include/opencv4/opencv2/photo.hpp \ + /usr/include/opencv4/opencv2/stitching.hpp \ + /usr/include/opencv4/opencv2/stitching/warpers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp \ + /usr/include/opencv4/opencv2/core/cuda.hpp \ + /usr/include/opencv4/opencv2/core/cuda_types.hpp \ + /usr/include/opencv4/opencv2/core/cuda.inl.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/util.hpp \ + /usr/include/c++/11/list /usr/include/c++/11/bits/stl_list.h \ + /usr/include/c++/11/bits/list.tcc \ + /usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp \ + /usr/include/c++/11/queue /usr/include/c++/11/deque \ + /usr/include/c++/11/bits/stl_deque.h /usr/include/c++/11/bits/deque.tcc \ + /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/opencv4/opencv2/stitching/detail/camera.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/seam_finders.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/blenders.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/camera.hpp \ + /usr/include/opencv4/opencv2/video.hpp \ + /usr/include/opencv4/opencv2/video/tracking.hpp \ + /usr/include/opencv4/opencv2/video/background_segm.hpp \ + /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include/network_camera_receiver.h \ + /usr/include/c++/11/thread /usr/include/c++/11/bits/std_thread.h \ + /usr/include/c++/11/bits/this_thread_sleep.h /usr/include/c++/11/atomic \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetectcnn.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetection_export.h diff --git a/build/app/CMakeFiles/progress.marks b/build/app/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/app/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/app/Makefile b/build/app/Makefile new file mode 100644 index 0000000..3472bec --- /dev/null +++ b/build/app/Makefile @@ -0,0 +1,182 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles /home/hongshaorou/lzy_demo/facedetect/build/app//CMakeFiles/progress.marks + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +app/CMakeFiles/face_detection_app.dir/rule: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 app/CMakeFiles/face_detection_app.dir/rule +.PHONY : app/CMakeFiles/face_detection_app.dir/rule + +# Convenience name for target. +face_detection_app: app/CMakeFiles/face_detection_app.dir/rule +.PHONY : face_detection_app + +# fast build rule for target. +face_detection_app/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/build +.PHONY : face_detection_app/fast + +src/main.o: src/main.cpp.o +.PHONY : src/main.o + +# target to build an object file +src/main.cpp.o: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/src/main.cpp.o +.PHONY : src/main.cpp.o + +src/main.i: src/main.cpp.i +.PHONY : src/main.i + +# target to preprocess a source file +src/main.cpp.i: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/src/main.cpp.i +.PHONY : src/main.cpp.i + +src/main.s: src/main.cpp.s +.PHONY : src/main.s + +# target to generate assembly for a file +src/main.cpp.s: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f app/CMakeFiles/face_detection_app.dir/build.make app/CMakeFiles/face_detection_app.dir/src/main.cpp.s +.PHONY : src/main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... face_detection_app" + @echo "... src/main.o" + @echo "... src/main.i" + @echo "... src/main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/app/cmake_install.cmake b/build/app/cmake_install.cmake new file mode 100644 index 0000000..d0dd4bc --- /dev/null +++ b/build/app/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/hongshaorou/lzy_demo/facedetect/app + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + diff --git a/build/app/face_detection_app b/build/app/face_detection_app new file mode 100755 index 0000000..bbd9e2f Binary files /dev/null and b/build/app/face_detection_app differ diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..184e494 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: /home/hongshaorou/lzy_demo/facedetect + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/cmake_install.cmake") + include("/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/cmake_install.cmake") + include("/home/hongshaorou/lzy_demo/facedetect/build/app/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/hongshaorou/lzy_demo/facedetect/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..8eebfb6 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,27 @@ +[ +{ + "directory": "/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection", + "command": "/usr/bin/g++ -D_ENABLE_AVX2 -Dfacedetection_EXPORTS -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include -O3 -DNDEBUG -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O3 -mavx2 -mfma -fopenmp -std=gnu++11 -o CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp", + "file": "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp" +}, +{ + "directory": "/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection", + "command": "/usr/bin/g++ -D_ENABLE_AVX2 -Dfacedetection_EXPORTS -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include -O3 -DNDEBUG -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O3 -mavx2 -mfma -fopenmp -std=gnu++11 -o CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp", + "file": "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp" +}, +{ + "directory": "/home/hongshaorou/lzy_demo/facedetect/build/libfacedetection", + "command": "/usr/bin/g++ -D_ENABLE_AVX2 -Dfacedetection_EXPORTS -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include -O3 -DNDEBUG -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O3 -mavx2 -mfma -fopenmp -std=gnu++11 -o CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp", + "file": "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp" +}, +{ + "directory": "/home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver", + "command": "/usr/bin/g++ -I/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include -isystem /usr/include/opencv4 -O3 -DNDEBUG -O3 -std=gnu++11 -o CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp", + "file": "/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp" +}, +{ + "directory": "/home/hongshaorou/lzy_demo/facedetect/build/app", + "command": "/usr/bin/g++ -DSOURCE_ROOT=\\\"/home/hongshaorou/lzy_demo/facedetect\\\" -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include -I/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include -isystem /usr/include/opencv4 -O3 -DNDEBUG -O3 -std=gnu++11 -o CMakeFiles/face_detection_app.dir/src/main.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp", + "file": "/home/hongshaorou/lzy_demo/facedetect/app/src/main.cpp" +} +] \ No newline at end of file diff --git a/build/libfacedetection/CMakeFiles/CMakeDirectoryInformation.cmake b/build/libfacedetection/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..319df89 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hongshaorou/lzy_demo/facedetect") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hongshaorou/lzy_demo/facedetect/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake b/build/libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake new file mode 100644 index 0000000..1350293 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake @@ -0,0 +1,21 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o" "gcc" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d" + "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o" "gcc" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d" + "/home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o" "gcc" "libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/build.make b/build/libfacedetection/CMakeFiles/facedetection.dir/build.make new file mode 100644 index 0000000..41a0455 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/build.make @@ -0,0 +1,144 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +# Include any dependencies generated for this target. +include libfacedetection/CMakeFiles/facedetection.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.make + +# Include the progress variables for this target. +include libfacedetection/CMakeFiles/facedetection.dir/progress.make + +# Include the compile flags for this target's objects. +include libfacedetection/CMakeFiles/facedetection.dir/flags.make + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/flags.make +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o: ../libfacedetection/src/facedetectcnn.cpp +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o -MF CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d -o CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.i" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp > CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.i + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.s" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp -o CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.s + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/flags.make +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o: ../libfacedetection/src/facedetectcnn-model.cpp +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o -MF CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d -o CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.i" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp > CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.i + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.s" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp -o CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.s + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/flags.make +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o: ../libfacedetection/src/facedetectcnn-data.cpp +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o: libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o -MF CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d -o CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.i" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp > CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.i + +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.s" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp -o CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.s + +# Object files for target facedetection +facedetection_OBJECTS = \ +"CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o" \ +"CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o" \ +"CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o" + +# External object files for target facedetection +facedetection_EXTERNAL_OBJECTS = + +libfacedetection/libfacedetection.so: libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o +libfacedetection/libfacedetection.so: libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o +libfacedetection/libfacedetection.so: libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o +libfacedetection/libfacedetection.so: libfacedetection/CMakeFiles/facedetection.dir/build.make +libfacedetection/libfacedetection.so: /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so +libfacedetection/libfacedetection.so: /usr/lib/x86_64-linux-gnu/libpthread.a +libfacedetection/libfacedetection.so: libfacedetection/CMakeFiles/facedetection.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX shared library libfacedetection.so" + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/facedetection.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +libfacedetection/CMakeFiles/facedetection.dir/build: libfacedetection/libfacedetection.so +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/build + +libfacedetection/CMakeFiles/facedetection.dir/clean: + cd /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection && $(CMAKE_COMMAND) -P CMakeFiles/facedetection.dir/cmake_clean.cmake +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/clean + +libfacedetection/CMakeFiles/facedetection.dir/depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hongshaorou/lzy_demo/facedetect /home/hongshaorou/lzy_demo/facedetect/libfacedetection /home/hongshaorou/lzy_demo/facedetect/build /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection/CMakeFiles/facedetection.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/depend + diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/cmake_clean.cmake b/build/libfacedetection/CMakeFiles/facedetection.dir/cmake_clean.cmake new file mode 100644 index 0000000..8f7fbde --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + "CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o" + "CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d" + "CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o" + "CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d" + "CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o" + "CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d" + "libfacedetection.pdb" + "libfacedetection.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/facedetection.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.make b/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.make new file mode 100644 index 0000000..2159efb --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for facedetection. +# This may be replaced when dependencies are built. diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts b/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts new file mode 100644 index 0000000..d88f864 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for facedetection. diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/depend.make b/build/libfacedetection/CMakeFiles/facedetection.dir/depend.make new file mode 100644 index 0000000..90266d7 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for facedetection. +# This may be replaced when dependencies are built. diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/flags.make b/build/libfacedetection/CMakeFiles/facedetection.dir/flags.make new file mode 100644 index 0000000..d3c0c2c --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/g++ +CXX_DEFINES = -D_ENABLE_AVX2 -Dfacedetection_EXPORTS + +CXX_INCLUDES = -I/home/hongshaorou/lzy_demo/facedetect/libfacedetection/include + +CXX_FLAGS = -O3 -DNDEBUG -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -O3 -mavx2 -mfma -fopenmp -std=gnu++11 + diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/link.txt b/build/libfacedetection/CMakeFiles/facedetection.dir/link.txt new file mode 100644 index 0000000..95f8c71 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/g++ -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libfacedetection.so -o libfacedetection.so CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/progress.make b/build/libfacedetection/CMakeFiles/facedetection.dir/progress.make new file mode 100644 index 0000000..d038a63 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 +CMAKE_PROGRESS_3 = 5 +CMAKE_PROGRESS_4 = 6 + diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o new file mode 100644 index 0000000..d59fd00 Binary files /dev/null and b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o differ diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d new file mode 100644 index 0000000..fd335ed --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o.d @@ -0,0 +1,247 @@ +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o: \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-data.cpp \ + /usr/include/stdc-predef.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetectcnn.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetection_export.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/omp.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/iosfwd /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/bits/locale_classes.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o new file mode 100644 index 0000000..e67f6ec Binary files /dev/null and b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o differ diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d new file mode 100644 index 0000000..37756d0 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o.d @@ -0,0 +1,247 @@ +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o: \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn-model.cpp \ + /usr/include/stdc-predef.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetectcnn.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetection_export.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/omp.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/iosfwd /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/bits/locale_classes.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o new file mode 100644 index 0000000..6377b3c Binary files /dev/null and b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o differ diff --git a/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d new file mode 100644 index 0000000..8095207 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o.d @@ -0,0 +1,264 @@ +libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o: \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/src/facedetectcnn.cpp \ + /usr/include/stdc-predef.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetectcnn.h \ + /home/hongshaorou/lzy_demo/facedetect/libfacedetection/include/facedetection_export.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/omp.h /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/iostream \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/iosfwd /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/char_traits.h /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/bits/locale_classes.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/uniform_int_dist.h diff --git a/build/libfacedetection/CMakeFiles/progress.marks b/build/libfacedetection/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/libfacedetection/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/libfacedetection/Makefile b/build/libfacedetection/Makefile new file mode 100644 index 0000000..aaaec04 --- /dev/null +++ b/build/libfacedetection/Makefile @@ -0,0 +1,236 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles /home/hongshaorou/lzy_demo/facedetect/build/libfacedetection//CMakeFiles/progress.marks + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +libfacedetection/CMakeFiles/facedetection.dir/rule: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 libfacedetection/CMakeFiles/facedetection.dir/rule +.PHONY : libfacedetection/CMakeFiles/facedetection.dir/rule + +# Convenience name for target. +facedetection: libfacedetection/CMakeFiles/facedetection.dir/rule +.PHONY : facedetection + +# fast build rule for target. +facedetection/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/build +.PHONY : facedetection/fast + +src/facedetectcnn-data.o: src/facedetectcnn-data.cpp.o +.PHONY : src/facedetectcnn-data.o + +# target to build an object file +src/facedetectcnn-data.cpp.o: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.o +.PHONY : src/facedetectcnn-data.cpp.o + +src/facedetectcnn-data.i: src/facedetectcnn-data.cpp.i +.PHONY : src/facedetectcnn-data.i + +# target to preprocess a source file +src/facedetectcnn-data.cpp.i: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.i +.PHONY : src/facedetectcnn-data.cpp.i + +src/facedetectcnn-data.s: src/facedetectcnn-data.cpp.s +.PHONY : src/facedetectcnn-data.s + +# target to generate assembly for a file +src/facedetectcnn-data.cpp.s: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-data.cpp.s +.PHONY : src/facedetectcnn-data.cpp.s + +src/facedetectcnn-model.o: src/facedetectcnn-model.cpp.o +.PHONY : src/facedetectcnn-model.o + +# target to build an object file +src/facedetectcnn-model.cpp.o: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.o +.PHONY : src/facedetectcnn-model.cpp.o + +src/facedetectcnn-model.i: src/facedetectcnn-model.cpp.i +.PHONY : src/facedetectcnn-model.i + +# target to preprocess a source file +src/facedetectcnn-model.cpp.i: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.i +.PHONY : src/facedetectcnn-model.cpp.i + +src/facedetectcnn-model.s: src/facedetectcnn-model.cpp.s +.PHONY : src/facedetectcnn-model.s + +# target to generate assembly for a file +src/facedetectcnn-model.cpp.s: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn-model.cpp.s +.PHONY : src/facedetectcnn-model.cpp.s + +src/facedetectcnn.o: src/facedetectcnn.cpp.o +.PHONY : src/facedetectcnn.o + +# target to build an object file +src/facedetectcnn.cpp.o: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.o +.PHONY : src/facedetectcnn.cpp.o + +src/facedetectcnn.i: src/facedetectcnn.cpp.i +.PHONY : src/facedetectcnn.i + +# target to preprocess a source file +src/facedetectcnn.cpp.i: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.i +.PHONY : src/facedetectcnn.cpp.i + +src/facedetectcnn.s: src/facedetectcnn.cpp.s +.PHONY : src/facedetectcnn.s + +# target to generate assembly for a file +src/facedetectcnn.cpp.s: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f libfacedetection/CMakeFiles/facedetection.dir/build.make libfacedetection/CMakeFiles/facedetection.dir/src/facedetectcnn.cpp.s +.PHONY : src/facedetectcnn.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... facedetection" + @echo "... src/facedetectcnn-data.o" + @echo "... src/facedetectcnn-data.i" + @echo "... src/facedetectcnn-data.s" + @echo "... src/facedetectcnn-model.o" + @echo "... src/facedetectcnn-model.i" + @echo "... src/facedetectcnn-model.s" + @echo "... src/facedetectcnn.o" + @echo "... src/facedetectcnn.i" + @echo "... src/facedetectcnn.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/libfacedetection/cmake_install.cmake b/build/libfacedetection/cmake_install.cmake new file mode 100644 index 0000000..8c7f63d --- /dev/null +++ b/build/libfacedetection/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/hongshaorou/lzy_demo/facedetect/libfacedetection + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + diff --git a/build/libfacedetection/libfacedetection.so b/build/libfacedetection/libfacedetection.so new file mode 100755 index 0000000..a63059b Binary files /dev/null and b/build/libfacedetection/libfacedetection.so differ diff --git a/build/network_camera_receiver/CMakeFiles/CMakeDirectoryInformation.cmake b/build/network_camera_receiver/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..319df89 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/hongshaorou/lzy_demo/facedetect") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/hongshaorou/lzy_demo/facedetect/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake new file mode 100644 index 0000000..5db0509 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp" "network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o" "gcc" "network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make new file mode 100644 index 0000000..7264a8f --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +# Include any dependencies generated for this target. +include network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.make + +# Include the progress variables for this target. +include network_camera_receiver/CMakeFiles/network_camera_receiver.dir/progress.make + +# Include the compile flags for this target's objects. +include network_camera_receiver/CMakeFiles/network_camera_receiver.dir/flags.make + +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/flags.make +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o: ../network_camera_receiver/src/network_camera_receiver.cpp +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o" + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o -MF CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d -o CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o -c /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp + +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.i" + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp > CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.i + +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.s" + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && /usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp -o CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.s + +# Object files for target network_camera_receiver +network_camera_receiver_OBJECTS = \ +"CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o" + +# External object files for target network_camera_receiver +network_camera_receiver_EXTERNAL_OBJECTS = + +network_camera_receiver/libnetwork_camera_receiver.a: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o +network_camera_receiver/libnetwork_camera_receiver.a: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make +network_camera_receiver/libnetwork_camera_receiver.a: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libnetwork_camera_receiver.a" + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && $(CMAKE_COMMAND) -P CMakeFiles/network_camera_receiver.dir/cmake_clean_target.cmake + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/network_camera_receiver.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build: network_camera_receiver/libnetwork_camera_receiver.a +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build + +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean: + cd /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver && $(CMAKE_COMMAND) -P CMakeFiles/network_camera_receiver.dir/cmake_clean.cmake +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/clean + +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/hongshaorou/lzy_demo/facedetect /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver /home/hongshaorou/lzy_demo/facedetect/build /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend + diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean.cmake b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean.cmake new file mode 100644 index 0000000..e320fa7 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o" + "CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d" + "libnetwork_camera_receiver.a" + "libnetwork_camera_receiver.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/network_camera_receiver.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean_target.cmake b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..437de40 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libnetwork_camera_receiver.a" +) diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.make b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.make new file mode 100644 index 0000000..d9e00ca --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for network_camera_receiver. +# This may be replaced when dependencies are built. diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.ts b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.ts new file mode 100644 index 0000000..ca54034 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for network_camera_receiver. diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend.make b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend.make new file mode 100644 index 0000000..e07fe40 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for network_camera_receiver. +# This may be replaced when dependencies are built. diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/flags.make b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/flags.make new file mode 100644 index 0000000..612b3df --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /usr/bin/g++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include -isystem /usr/include/opencv4 + +CXX_FLAGS = -O3 -DNDEBUG -O3 -std=gnu++11 + diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/link.txt b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/link.txt new file mode 100644 index 0000000..0e7c4b1 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libnetwork_camera_receiver.a CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o +/usr/bin/ranlib libnetwork_camera_receiver.a diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/progress.make b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/progress.make new file mode 100644 index 0000000..72bb7dd --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o new file mode 100644 index 0000000..e48a749 Binary files /dev/null and b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o differ diff --git a/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d new file mode 100644 index 0000000..ac87ce5 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o.d @@ -0,0 +1,340 @@ +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o: \ + /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/src/network_camera_receiver.cpp \ + /usr/include/stdc-predef.h \ + /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver/include/network_camera_receiver.h \ + /usr/include/opencv4/opencv2/opencv.hpp \ + /usr/include/opencv4/opencv2/opencv_modules.hpp \ + /usr/include/opencv4/opencv2/core.hpp \ + /usr/include/opencv4/opencv2/core/cvdef.h \ + /usr/include/opencv4/opencv2/core/version.hpp /usr/include/c++/11/limits \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/opencv4/opencv2/core/hal/interface.h \ + /usr/include/c++/11/cstddef \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/opencv4/opencv2/core/cv_cpu_dispatch.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/array \ + /usr/include/c++/11/utility /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/opencv4/opencv2/core/base.hpp /usr/include/c++/11/climits \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ + /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/opencv4/opencv2/core/cvstd.hpp /usr/include/c++/11/cstring \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/c++/11/cctype /usr/include/ctype.h \ + /usr/include/c++/11/string /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/postypes.h /usr/include/c++/11/cwchar \ + /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/wchar2.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/11/cerrno \ + /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/basic_string.tcc /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/opencv4/opencv2/core/cvstd_wrapper.hpp \ + /usr/include/c++/11/memory /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/bits/invoke.h /usr/include/c++/11/bits/shared_ptr.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/opencv4/opencv2/core/neon_utils.hpp \ + /usr/include/opencv4/opencv2/core/vsx_utils.hpp /usr/include/assert.h \ + /usr/include/opencv4/opencv2/core/check.hpp \ + /usr/include/opencv4/opencv2/core/traits.hpp \ + /usr/include/opencv4/opencv2/core/matx.hpp \ + /usr/include/opencv4/opencv2/core/saturate.hpp \ + /usr/include/opencv4/opencv2/core/fast_math.hpp \ + /usr/include/opencv4/opencv2/core/types.hpp /usr/include/c++/11/cfloat \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/vector /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /usr/include/opencv4/opencv2/core/mat.hpp \ + /usr/include/opencv4/opencv2/core/bufferpool.hpp \ + /usr/include/opencv4/opencv2/core/mat.inl.hpp \ + /usr/include/opencv4/opencv2/core/persistence.hpp \ + /usr/include/opencv4/opencv2/core/operations.hpp \ + /usr/include/opencv4/opencv2/core/cvstd.inl.hpp \ + /usr/include/c++/11/complex /usr/include/c++/11/sstream \ + /usr/include/c++/11/istream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc /usr/include/c++/11/ostream \ + /usr/include/c++/11/bits/ostream.tcc \ + /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/bits/sstream.tcc \ + /usr/include/opencv4/opencv2/core/utility.hpp \ + /usr/include/c++/11/functional /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/mutex /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h \ + /usr/include/c++/11/bits/std_mutex.h \ + /usr/include/c++/11/bits/unique_lock.h \ + /usr/include/opencv4/opencv2/core/optim.hpp \ + /usr/include/opencv4/opencv2/core/ovx.hpp \ + /usr/include/opencv4/opencv2/core/cvdef.h \ + /usr/include/opencv4/opencv2/calib3d.hpp \ + /usr/include/opencv4/opencv2/features2d.hpp \ + /usr/include/opencv4/opencv2/flann/miniflann.hpp \ + /usr/include/opencv4/opencv2/flann/defines.h \ + /usr/include/opencv4/opencv2/flann/config.h \ + /usr/include/opencv4/opencv2/core/affine.hpp \ + /usr/include/opencv4/opencv2/dnn.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.hpp \ + /usr/include/opencv4/opencv2/core/async.hpp \ + /usr/include/opencv4/opencv2/dnn/version.hpp \ + /usr/include/opencv4/opencv2/dnn/dict.hpp /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/opencv4/opencv2/dnn/layer.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.inl.hpp \ + /usr/include/opencv4/opencv2/dnn/utils/inference_engine.hpp \ + /usr/include/opencv4/opencv2/dnn/dnn.hpp \ + /usr/include/opencv4/opencv2/flann.hpp \ + /usr/include/opencv4/opencv2/flann/flann_base.hpp \ + /usr/include/opencv4/opencv2/flann/general.h \ + /usr/include/opencv4/opencv2/flann/matrix.h \ + /usr/include/opencv4/opencv2/flann/params.h \ + /usr/include/opencv4/opencv2/flann/any.h \ + /usr/include/opencv4/opencv2/flann/defines.h \ + /usr/include/c++/11/iostream /usr/include/opencv4/opencv2/flann/saving.h \ + /usr/include/opencv4/opencv2/flann/nn_index.h \ + /usr/include/opencv4/opencv2/flann/result_set.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /usr/include/opencv4/opencv2/flann/all_indices.h \ + /usr/include/opencv4/opencv2/flann/kdtree_index.h \ + /usr/include/opencv4/opencv2/flann/dynamic_bitset.h \ + /usr/include/opencv4/opencv2/flann/dist.h \ + /usr/include/opencv4/opencv2/flann/heap.h \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/opencv4/opencv2/flann/allocator.h \ + /usr/include/opencv4/opencv2/flann/random.h \ + /usr/include/opencv4/opencv2/flann/kdtree_single_index.h \ + /usr/include/opencv4/opencv2/flann/kmeans_index.h \ + /usr/include/opencv4/opencv2/flann/logger.h \ + /usr/include/opencv4/opencv2/flann/composite_index.h \ + /usr/include/opencv4/opencv2/flann/linear_index.h \ + /usr/include/opencv4/opencv2/flann/hierarchical_clustering_index.h \ + /usr/include/opencv4/opencv2/flann/lsh_index.h \ + /usr/include/opencv4/opencv2/flann/lsh_table.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h /usr/include/c++/11/math.h \ + /usr/include/opencv4/opencv2/flann/autotuned_index.h \ + /usr/include/opencv4/opencv2/flann/ground_truth.h \ + /usr/include/opencv4/opencv2/flann/index_testing.h \ + /usr/include/opencv4/opencv2/flann/timer.h \ + /usr/include/opencv4/opencv2/flann/sampling.h \ + /usr/include/opencv4/opencv2/highgui.hpp \ + /usr/include/opencv4/opencv2/imgcodecs.hpp \ + /usr/include/opencv4/opencv2/videoio.hpp \ + /usr/include/opencv4/opencv2/imgproc.hpp \ + /usr/include/opencv4/opencv2/imgproc/segmentation.hpp \ + /usr/include/opencv4/opencv2/ml.hpp \ + /usr/include/opencv4/opencv2/ml/ml.inl.hpp \ + /usr/include/opencv4/opencv2/objdetect.hpp \ + /usr/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp \ + /usr/include/opencv4/opencv2/objdetect/face.hpp \ + /usr/include/opencv4/opencv2/photo.hpp \ + /usr/include/opencv4/opencv2/stitching.hpp \ + /usr/include/opencv4/opencv2/stitching/warpers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp \ + /usr/include/opencv4/opencv2/core/cuda.hpp \ + /usr/include/opencv4/opencv2/core/cuda_types.hpp \ + /usr/include/opencv4/opencv2/core/cuda.inl.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/warpers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/matchers.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/util.hpp \ + /usr/include/c++/11/list /usr/include/c++/11/bits/stl_list.h \ + /usr/include/c++/11/bits/list.tcc \ + /usr/include/opencv4/opencv2/stitching/detail/util_inl.hpp \ + /usr/include/c++/11/queue /usr/include/c++/11/deque \ + /usr/include/c++/11/bits/stl_deque.h /usr/include/c++/11/bits/deque.tcc \ + /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/opencv4/opencv2/stitching/detail/camera.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/seam_finders.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/blenders.hpp \ + /usr/include/opencv4/opencv2/stitching/detail/camera.hpp \ + /usr/include/opencv4/opencv2/video.hpp \ + /usr/include/opencv4/opencv2/video/tracking.hpp \ + /usr/include/opencv4/opencv2/video/background_segm.hpp \ + /usr/include/c++/11/thread /usr/include/c++/11/bits/std_thread.h \ + /usr/include/c++/11/bits/this_thread_sleep.h /usr/include/c++/11/atomic diff --git a/build/network_camera_receiver/CMakeFiles/progress.marks b/build/network_camera_receiver/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/build/network_camera_receiver/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/build/network_camera_receiver/Makefile b/build/network_camera_receiver/Makefile new file mode 100644 index 0000000..d77bb9a --- /dev/null +++ b/build/network_camera_receiver/Makefile @@ -0,0 +1,182 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/hongshaorou/lzy_demo/facedetect + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/hongshaorou/lzy_demo/facedetect/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles /home/hongshaorou/lzy_demo/facedetect/build/network_camera_receiver//CMakeFiles/progress.marks + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/hongshaorou/lzy_demo/facedetect/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule +.PHONY : network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule + +# Convenience name for target. +network_camera_receiver: network_camera_receiver/CMakeFiles/network_camera_receiver.dir/rule +.PHONY : network_camera_receiver + +# fast build rule for target. +network_camera_receiver/fast: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build +.PHONY : network_camera_receiver/fast + +src/network_camera_receiver.o: src/network_camera_receiver.cpp.o +.PHONY : src/network_camera_receiver.o + +# target to build an object file +src/network_camera_receiver.cpp.o: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.o +.PHONY : src/network_camera_receiver.cpp.o + +src/network_camera_receiver.i: src/network_camera_receiver.cpp.i +.PHONY : src/network_camera_receiver.i + +# target to preprocess a source file +src/network_camera_receiver.cpp.i: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.i +.PHONY : src/network_camera_receiver.cpp.i + +src/network_camera_receiver.s: src/network_camera_receiver.cpp.s +.PHONY : src/network_camera_receiver.s + +# target to generate assembly for a file +src/network_camera_receiver.cpp.s: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(MAKE) $(MAKESILENT) -f network_camera_receiver/CMakeFiles/network_camera_receiver.dir/build.make network_camera_receiver/CMakeFiles/network_camera_receiver.dir/src/network_camera_receiver.cpp.s +.PHONY : src/network_camera_receiver.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... network_camera_receiver" + @echo "... src/network_camera_receiver.o" + @echo "... src/network_camera_receiver.i" + @echo "... src/network_camera_receiver.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/hongshaorou/lzy_demo/facedetect/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/network_camera_receiver/cmake_install.cmake b/build/network_camera_receiver/cmake_install.cmake new file mode 100644 index 0000000..b839777 --- /dev/null +++ b/build/network_camera_receiver/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/hongshaorou/lzy_demo/facedetect/network_camera_receiver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + diff --git a/build/network_camera_receiver/libnetwork_camera_receiver.a b/build/network_camera_receiver/libnetwork_camera_receiver.a new file mode 100644 index 0000000..2875a60 Binary files /dev/null and b/build/network_camera_receiver/libnetwork_camera_receiver.a differ diff --git a/libfacedetection/CMakeLists.txt b/libfacedetection/CMakeLists.txt new file mode 100644 index 0000000..b27a435 --- /dev/null +++ b/libfacedetection/CMakeLists.txt @@ -0,0 +1,69 @@ +# ============================================================================ +# libfacedetection —— 独立动态库 (SHARED) +# 对外仅导出 facedetect_cnn (由 FACEDETECTION_EXPORT 标记)。 +# AVX/NEON 内联函数代码在此目标内编译,对应编译标志也只加到这里。 +# ============================================================================ + +add_library(facedetection SHARED + src/facedetectcnn.cpp + src/facedetectcnn-model.cpp + src/facedetectcnn-data.cpp +) + +# 对外头文件目录(PUBLIC:使用本库的目标会自动获得该 include 路径) +target_include_directories(facedetection PUBLIC + ${CMAKE_CURRENT_SOURCE_DIR}/include +) + +# 动态库符号可见性:默认隐藏,仅 FACEDETECTION_EXPORT 标记的符号导出。 +# CMake 会为 SHARED 目标自动定义 facedetection_EXPORTS,配合 facedetection_export.h 使用。 +set_target_properties(facedetection PROPERTIES + POSITION_INDEPENDENT_CODE ON + CXX_VISIBILITY_PRESET hidden + VISIBILITY_INLINES_HIDDEN ON +) + +# ---------------------------------------------------------------------------- +# SIMD 加速:AVX/NEON 内联函数需要对应编译标志 + 宏定义 +# ---------------------------------------------------------------------------- +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") + target_compile_options(facedetection PRIVATE -O3) + + if(ENABLE_AVX512) + target_compile_options(facedetection PRIVATE + -mavx512f -mavx512cd -mavx512dq -mavx512bw -mavx512vl -mfma) + target_compile_definitions(facedetection PRIVATE _ENABLE_AVX512) + message(STATUS "libfacedetection: SIMD = AVX512") + elseif(ENABLE_AVX2) + target_compile_options(facedetection PRIVATE -mavx2 -mfma) + target_compile_definitions(facedetection PRIVATE _ENABLE_AVX2) + message(STATUS "libfacedetection: SIMD = AVX2") + elseif(ENABLE_NEON) + target_compile_definitions(facedetection PRIVATE _ENABLE_NEON) + # AArch64 下 NEON 默认开启无需标志;32 位 ARM 需要 -mfpu=neon。 + if(CXX_HAS_MFPU_NEON) + target_compile_options(facedetection PRIVATE -mfpu=neon) + endif() + message(STATUS "libfacedetection: SIMD = NEON") + else() + message(STATUS "libfacedetection: SIMD disabled") + endif() +elseif(MSVC) + target_compile_options(facedetection PRIVATE /O2) + + if(ENABLE_AVX512) + target_compile_options(facedetection PRIVATE /arch:AVX512) + target_compile_definitions(facedetection PRIVATE _ENABLE_AVX512) + elseif(ENABLE_AVX2) + target_compile_options(facedetection PRIVATE /arch:AVX2) + target_compile_definitions(facedetection PRIVATE _ENABLE_AVX2) + elseif(ENABLE_NEON) + # MSVC for ARM: NEON 默认开启,无需额外标志。 + target_compile_definitions(facedetection PRIVATE _ENABLE_NEON) + endif() +endif() + +# OpenMP:加速卷积运算(可选) +if(OpenMP_FOUND) + target_link_libraries(facedetection PRIVATE OpenMP::OpenMP_CXX) +endif() diff --git a/libfacedetection/include/facedetectcnn.h b/libfacedetection/include/facedetectcnn.h new file mode 100644 index 0000000..33cab95 --- /dev/null +++ b/libfacedetection/include/facedetectcnn.h @@ -0,0 +1,450 @@ +/* +By downloading, copying, installing or using the software you agree to this license. +If you do not agree to this license, do not download, install, +copy or use the software. + + + License Agreement For libfacedetection + (3-clause BSD License) + +Copyright (c) 2018-2021, Shiqi Yu, all rights reserved. +shiqi.yu@gmail.com + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +This software is provided by the copyright holders and contributors "as is" and +any express or implied warranties, including, but not limited to, the implied +warranties of merchantability and fitness for a particular purpose are disclaimed. +In no event shall copyright holders or contributors be liable for any direct, +indirect, incidental, special, exemplary, or consequential damages +(including, but not limited to, procurement of substitute goods or services; +loss of use, data, or profits; or business interruption) however caused +and on any theory of liability, whether in contract, strict liability, +or tort (including negligence or otherwise) arising in any way out of +the use of this software, even if advised of the possibility of such damage. +*/ + +#pragma once + +#include "facedetection_export.h" + +// AVX/NEON 加速现由 CMake 选项控制,无需在此手动取消注释: +// cmake -DENABLE_AVX2=ON .. (X64 CPU,推荐) +// cmake -DENABLE_AVX512=ON .. (X64 CPU,支持较新) +// cmake -DENABLE_NEON=ON .. (ARM CPU) +// CMake 会通过 -D 自动定义对应的 _ENABLE_AVX* / _ENABLE_NEON 宏并添加编译器指令集标志。 +// 下面三行保留仅供参考,手动取消注释时必须自行确保编译标志已添加,否则会报 +// "target specific option mismatch" 错误。 +// #define _ENABLE_AVX512 //Please enable it if X64 CPU +// #define _ENABLE_AVX2 //Please enable it if X64 CPU +//#define _ENABLE_NEON //Please enable it if ARM CPU + +#define FACEDETECTION_RESULT_BUFFER_SIZE 0x9000 +#define FACEDETECTION_RESULT_MAX_FACES 1024 +#define FACEDETECTION_RESULT_STRIDE_SHORTS 16 + +FACEDETECTION_EXPORT int * facedetect_cnn(unsigned char * result_buffer, //buffer memory for storing face detection results, !!its size must be FACEDETECTION_RESULT_BUFFER_SIZE Bytes!! + unsigned char * rgb_image_data, int width, int height, int step); //input image, it must be BGR (three channels) insteed of RGB image! + +/* +DO NOT EDIT the following code if you don't really understand it. +*/ +#if defined(_ENABLE_AVX512) || defined(_ENABLE_AVX2) +#include +#endif + + +#if defined(_ENABLE_NEON) +#include "arm_neon.h" +//NEON does not support UINT8*INT8 dot product +//to conver the input data to range [0, 127], +//and then use INT8*INT8 dot product +#define _MAX_UINT8_VALUE 127 +#else +#define _MAX_UINT8_VALUE 255 +#endif + +#if defined(_ENABLE_AVX512) +#define _MALLOC_ALIGN 512 +#elif defined(_ENABLE_AVX2) +#define _MALLOC_ALIGN 256 +#else +#define _MALLOC_ALIGN 128 +#endif + +#if defined(_ENABLE_AVX512)&& defined(_ENABLE_NEON) +#error Cannot enable the two of AVX512 and NEON at the same time. +#endif +#if defined(_ENABLE_AVX2)&& defined(_ENABLE_NEON) +#error Cannot enable the two of AVX and NEON at the same time. +#endif +#if defined(_ENABLE_AVX512)&& defined(_ENABLE_AVX2) +#error Cannot enable the two of AVX512 and AVX2 at the same time. +#endif + + +#if defined(_OPENMP) +#include +#endif + +#include +#include +#include +#include + +void* myAlloc(size_t size); +void myFree_(void* ptr); +#define myFree(ptr) (myFree_(*(ptr)), *(ptr)=0); + +#ifndef MIN +# define MIN(a,b) ((a) > (b) ? (b) : (a)) +#endif + +#ifndef MAX +# define MAX(a,b) ((a) < (b) ? (b) : (a)) +#endif + +typedef struct FaceRect_ +{ + float score; + int x; + int y; + int w; + int h; + int lm[10]; +}FaceRect; + +typedef struct ConvInfoStruct_ { + int channels; + int num_filters; + bool is_depthwise; + bool is_pointwise; + bool with_relu; + float* pWeights; + float* pBiases; +}ConvInfoStruct; + + + +template +class CDataBlob +{ +public: + int rows; + int cols; + int channels; //in element + int channelStep; //in byte + T * data; + +public: + CDataBlob() { + rows = 0; + cols = 0; + channels = 0; + channelStep = 0; + data = nullptr; + } + CDataBlob(int r, int c, int ch) + { + data = nullptr; + create(r, c, ch); + //#warning "confirm later" + setZero(); + } + ~CDataBlob() + { + setNULL(); + } + + CDataBlob(CDataBlob &&other) { + data = other.data; + other.data = nullptr; + rows = other.rows; + cols = other.cols; + channels = other.channels; + channelStep = other.channelStep; + } + + CDataBlob &operator=(CDataBlob &&other) { + this->~CDataBlob(); + new (this) CDataBlob(std::move(other)); + return *this; + } + + void setNULL() + { + if (data) + myFree(&data); + rows = cols = channels = channelStep = 0; + data = nullptr; + } + + void setZero() + { + if(data) + memset(data, 0, channelStep * rows * cols); + } + + inline bool isEmpty() const + { + return (rows <= 0 || cols <= 0 || channels == 0 || data == nullptr); + } + + bool create(int r, int c, int ch) + { + setNULL(); + + rows = r; + cols = c; + channels = ch; + + //alloc space for int8 array + int remBytes = (sizeof(T)* channels) % (_MALLOC_ALIGN / 8); + if (remBytes == 0) + this->channelStep = channels * sizeof(T); + else + this->channelStep = (channels * sizeof(T)) + (_MALLOC_ALIGN / 8) - remBytes; + data = (T*)myAlloc(size_t(rows) * cols * this->channelStep); + + if (data == nullptr) + { + std::cerr << "Failed to alloc memeory for uint8 data blob: " + << rows << "*" + << cols << "*" + << channels << std::endl; + return false; + } + + //memset(data, 0, width * height * channelStep); + + //the following code is faster than memset + //but not only the padding bytes are set to zero. + //BE CAREFUL!!! +//#if defined(_OPENMP) +//#pragma omp parallel for +//#endif + // for (int r = 0; r < this->rows; r++) + // { + // for (int c = 0; c < this->cols; c++) + // { + // int pixel_end = this->channelStep / sizeof(T); + // T * pI = this->ptr(r, c); + // for (int ch = this->channels; ch < pixel_end; ch++) + // pI[ch] = 0; + // } + // } + + return true; + } + + inline T * ptr(int r, int c) + { + if( r < 0 || r >= this->rows || c < 0 || c >= this->cols ) + return nullptr; + + return (this->data + (size_t(r) * this->cols + c) * this->channelStep /sizeof(T)); + } + inline const T * ptr(int r, int c) const + { + if( r < 0 || r >= this->rows || c < 0 || c >= this->cols ) + return nullptr; + + return (this->data + (size_t(r) * this->cols + c) * this->channelStep /sizeof(T)); + } + + inline const T getElement(int r, int c, int ch) const + { + if (this->data) + { + if (r >= 0 && r < this->rows && + c >= 0 && c < this->cols && + ch >= 0 && ch < this->channels) + { + const T * p = this->ptr(r, c); + return (p[ch]); + } + } + + return (T)(0); + } + + friend std::ostream &operator<<(std::ostream &output, CDataBlob &dataBlob) + { + output << "DataBlob Size (channels, rows, cols) = (" + << dataBlob.channels + << ", " << dataBlob.rows + << ", " << dataBlob.cols + << ")" << std::endl; + if( dataBlob.rows * dataBlob.cols * dataBlob.channels <= 16) + { //print the elements only when the total number is less than 64 + for (int ch = 0; ch < dataBlob.channels; ch++) + { + output << "Channel " << ch << ": " << std::endl; + + for (int r = 0; r < dataBlob.rows; r++) + { + output << "("; + for (int c = 0; c < dataBlob.cols; c++) + { + T * p = dataBlob.ptr(r, c); + + if(sizeof(T)<4) + output << (int)(p[ch]); + else + output << p[ch]; + + if (c != dataBlob.cols - 1) + output << ", "; + } + output << ")" << std::endl; + } + } + } + else{ + output << "(" ; + int idx = 0; + bool outloop = false; + for(int r = 0; r < dataBlob.rows && !outloop; ++r) { + for(int c = 0; c < dataBlob.cols && !outloop; ++c) { + for(int ch = 0; ch < dataBlob.channels && !outloop; ++ch) { + output << dataBlob.getElement(r, c, ch) << ", "; + ++idx; + if(idx >= 16) { + outloop = true; + } + } + } + } + output << "..., " + << dataBlob.getElement(dataBlob.rows-1, dataBlob.cols-1, dataBlob.channels-1) << ")" + << std::endl; + float max_it = -500.f; + float min_it = 500.f; + for(int r = 0; r < dataBlob.rows; ++r) { + for(int c = 0; c < dataBlob.cols; ++c) { + for(int ch = 0; ch < dataBlob.channels; ++ch) { + max_it = std::max(max_it, dataBlob.getElement(r, c, ch)); + min_it = std::min(min_it, dataBlob.getElement(r, c, ch)); + } + } + } + output << "max_it: " << max_it << " min_it: " << min_it << std::endl; + } + return output; + } +}; + +template +class Filters{ + public: + int channels; + int num_filters; + bool is_depthwise; + bool is_pointwise; + bool with_relu; + CDataBlob weights; + CDataBlob biases; + + Filters() + { + channels = 0; + num_filters = 0; + is_depthwise = false; + is_pointwise = false; + with_relu = true; + } + + Filters & operator=(ConvInfoStruct & convinfo) + { + if (typeid(float) != typeid(T)) + { + std::cerr << "The data type must be float in this version." << std::endl; + return *this; + } + if (typeid(float*) != typeid(convinfo.pWeights) || + typeid(float*) != typeid(convinfo.pBiases)) + { + std::cerr << "The data type of the filter parameters must be float in this version." << std::endl; + return *this; + } + + this->channels = convinfo.channels; + this->num_filters = convinfo.num_filters; + this->is_depthwise = convinfo.is_depthwise; + this->is_pointwise = convinfo.is_pointwise; + this->with_relu = convinfo.with_relu; + + if(!this->is_depthwise && this->is_pointwise) //1x1 point wise + { + this->weights.create(1, num_filters, channels); + } + else if(this->is_depthwise && !this->is_pointwise) //3x3 depth wise + { + this->weights.create(1, 9, channels); + } + else + { + std::cerr << "Unsupported filter type. Only 1x1 point-wise and 3x3 depth-wise are supported." << std::endl; + return *this; + } + + this->biases.create(1, 1, num_filters); + + //the format of convinfo.pWeights/biases must meet the format in this->weigths/biases + for(int fidx = 0; fidx < this->weights.cols; fidx++) + memcpy(this->weights.ptr(0,fidx), + convinfo.pWeights + channels * fidx , + channels * sizeof(T)); + memcpy(this->biases.ptr(0,0), convinfo.pBiases, sizeof(T) * this->num_filters); + + return *this; + } + +}; + +std::vector objectdetect_cnn(const unsigned char* rgbImageData, int with, int height, int step); + +CDataBlob setDataFrom3x3S2P1to1x1S1P0FromImage(const unsigned char* inputData, int imgWidth, int imgHeight, int imgChannels, int imgWidthStep, int padDivisor=32); +CDataBlob convolution(const CDataBlob& inputData, const Filters& filters, bool do_relu = true); +CDataBlob convolutionDP(const CDataBlob& inputData, + const Filters& filtersP, const Filters& filtersD, bool do_relu = true); +CDataBlob convolution4layerUnit(const CDataBlob& inputData, + const Filters& filtersP1, const Filters& filtersD1, + const Filters& filtersP2, const Filters& filtersD2, bool do_relu = true); +CDataBlob maxpooling2x2S2(const CDataBlob& inputData); + +CDataBlob elementAdd(const CDataBlob& inputData1, const CDataBlob& inputData2); +CDataBlob upsampleX2(const CDataBlob& inputData); + +CDataBlob meshgrid(int feature_width, int feature_height, int stride, float offset=0.0f); + +// TODO implement in SIMD +void bbox_decode(CDataBlob& bbox_pred, const CDataBlob& priors, int stride); +void kps_decode(CDataBlob& bbox_pred, const CDataBlob& priors, int stride); + +template +CDataBlob blob2vector(const CDataBlob &inputData); + +template +CDataBlob concat3(const CDataBlob& inputData1, const CDataBlob& inputData2, const CDataBlob& inputData3); + +// TODO implement in SIMD +void sigmoid(CDataBlob& inputData); + +std::vector detection_output(const CDataBlob& cls, + const CDataBlob& reg, + const CDataBlob& kps, + const CDataBlob& obj, + float overlap_threshold, float confidence_threshold, int top_k, int keep_top_k); diff --git a/libfacedetection/include/facedetection_export.h b/libfacedetection/include/facedetection_export.h new file mode 100644 index 0000000..a1e5002 --- /dev/null +++ b/libfacedetection/include/facedetection_export.h @@ -0,0 +1,42 @@ + +#ifndef FACEDETECTION_EXPORT_H +#define FACEDETECTION_EXPORT_H + +#ifdef FACEDETECTION_STATIC_DEFINE +# define FACEDETECTION_EXPORT +# define FACEDETECTION_NO_EXPORT +#else +# ifndef FACEDETECTION_EXPORT +# ifdef facedetection_EXPORTS + /* We are building this library */ +# define FACEDETECTION_EXPORT __attribute__((visibility("default"))) +# else + /* We are using this library */ +# define FACEDETECTION_EXPORT __attribute__((visibility("default"))) +# endif +# endif + +# ifndef FACEDETECTION_NO_EXPORT +# define FACEDETECTION_NO_EXPORT __attribute__((visibility("hidden"))) +# endif +#endif + +#ifndef FACEDETECTION_DEPRECATED +# define FACEDETECTION_DEPRECATED __attribute__ ((__deprecated__)) +#endif + +#ifndef FACEDETECTION_DEPRECATED_EXPORT +# define FACEDETECTION_DEPRECATED_EXPORT FACEDETECTION_EXPORT FACEDETECTION_DEPRECATED +#endif + +#ifndef FACEDETECTION_DEPRECATED_NO_EXPORT +# define FACEDETECTION_DEPRECATED_NO_EXPORT FACEDETECTION_NO_EXPORT FACEDETECTION_DEPRECATED +#endif + +#if 0 /* DEFINE_NO_DEPRECATED */ +# ifndef FACEDETECTION_NO_DEPRECATED +# define FACEDETECTION_NO_DEPRECATED +# endif +#endif + +#endif /* FACEDETECTION_EXPORT_H */ diff --git a/libfacedetection/src/facedetectcnn-data.cpp b/libfacedetection/src/facedetectcnn-data.cpp new file mode 100644 index 0000000..7be51a1 --- /dev/null +++ b/libfacedetection/src/facedetectcnn-data.cpp @@ -0,0 +1,167 @@ +// Auto generated data file +// Copyright (c) 2018-2023, Shiqi Yu, all rights reserved. +#include "facedetectcnn.h" + +float backbone__model0_pw_weight[16*32*1*1] = {0.00122f,0.00239f,0.00216f,-0.000522f,-0.000684f,-0.000736f,-0.000954f,-0.00216f,-0.002f,0.00161f,0.0028f,0.00249f,-0.00101f,-0.00134f,-0.00135f,-0.00173f,-0.00327f,-0.00285f,0.000681f,0.00167f,0.00173f,-0.000645f,-0.000979f,-0.00069f,0.00197f,0.00065f,0.00131f,0.f,0.f,0.f,0.f,0.f,-0.000824f,-0.000333f,0.000789f,-0.000837f,-0.000305f,0.000751f,-0.000499f,-0.000182f,0.000651f,-0.000318f,0.000213f,0.00169f,-0.000913f,-0.000345f,0.00107f,-0.00021f,0.000193f,0.00138f,-0.000765f,-0.000598f,0.000856f,-0.00168f,-0.00147f,-0.00012f,-0.000548f,-0.000455f,0.000664f,0.f,0.f,0.f,0.f,0.f,0.000267f,0.000202f,-0.00129f,0.000959f,0.00074f,-0.000962f,0.000595f,0.000413f,-0.00122f,0.000586f,0.000369f,-0.00127f,0.00123f,0.000849f,-0.00101f,0.000819f,0.000482f,-0.00131f,0.000605f,0.000515f,-0.00114f,0.000838f,0.00059f,-0.00127f,0.000568f,0.000361f,-0.00144f,0.f,0.f,0.f,0.f,0.f,8.6e-06f,-0.000646f,-0.000371f,0.000425f,-0.000181f,0.00088f,0.000776f,9.39e-06f,0.00128f,0.00059f,-4.05e-06f,-4.02e-05f,-0.000884f,-0.00152f,-0.000677f,-0.00183f,-0.00271f,-0.00148f,0.00126f,0.000459f,0.000762f,0.000513f,-0.000232f,0.000953f,-0.000887f,-0.00186f,-0.0002f,0.f,0.f,0.f,0.f,0.f,-0.00151f,0.00131f,-0.0002f,-0.00127f,0.00132f,7.72e-05f,-0.000569f,0.00177f,0.000582f,-0.00202f,0.000843f,-0.000669f,-0.00229f,0.000385f,-0.000894f,-0.00255f,-0.000113f,-0.00141f,-0.000926f,0.00233f,0.000315f,-0.000176f,0.00303f,0.0012f,-0.00099f,0.00205f,0.000166f,0.f,0.f,0.f,0.f,0.f,0.00141f,0.00304f,0.00173f,0.00349f,0.0049f,0.00241f,0.00303f,0.00445f,0.00229f,-0.00143f,-0.00115f,-0.000904f,-0.0015f,-0.00152f,-0.00236f,-0.000391f,-0.000231f,-0.000779f,-0.00148f,-0.00193f,9.87e-05f,-0.00282f,-0.00362f,-0.00268f,-0.00153f,-0.0022f,-0.00108f,0.f,0.f,0.f,0.f,0.f,-0.00081f,0.00102f,-0.00146f,-0.00033f,0.00134f,-0.00134f,-0.000464f,0.00119f,-0.0011f,0.000263f,0.00181f,-0.00111f,0.000472f,0.0019f,-0.00125f,-0.000123f,0.00134f,-0.00142f,0.000428f,0.00189f,-0.00112f,0.000642f,0.00204f,-0.00122f,-4.28e-05f,0.00144f,-0.00145f,0.f,0.f,0.f,0.f,0.f,0.00112f,-0.00111f,0.00124f,0.000165f,-0.00198f,0.000625f,0.000405f,-0.0018f,0.000435f,0.000595f,-0.00141f,0.000509f,-0.000725f,-0.00268f,-0.000502f,0.000188f,-0.0019f,1.33e-05f,0.0013f,-0.000741f,0.000617f,0.000943f,-0.00107f,0.000532f,0.00149f,-0.000687f,0.000744f,0.f,0.f,0.f,0.f,0.f,0.000174f,-0.00194f,0.000721f,0.000694f,-0.00127f,0.00207f,0.000667f,-0.0019f,0.00139f,-0.000267f,-0.00228f,0.000145f,0.00118f,-0.00072f,0.0025f,0.000492f,-0.00212f,0.00121f,0.000531f,-0.00194f,-0.000488f,0.00235f,-4.66e-05f,0.00227f,0.000804f,-0.00234f,0.000199f,0.f,0.f,0.f,0.f,0.f,0.00212f,0.00056f,0.00146f,0.000984f,0.000783f,0.000573f,8.54e-05f,0.00171f,0.00101f,-0.00292f,-0.00494f,-0.00354f,-0.00226f,-0.00278f,-0.00269f,0.00104f,0.00263f,0.00205f,0.000944f,-0.000911f,0.000855f,-0.000849f,-0.00139f,-0.000898f,0.00111f,0.00249f,0.00251f,0.f,0.f,0.f,0.f,0.f,3.91e-05f,0.00114f,0.00118f,-0.000464f,0.000576f,0.00048f,-0.000301f,0.000772f,0.000801f,-0.000459f,0.000515f,0.000659f,-0.00108f,-0.000132f,-0.000147f,-0.000775f,0.000225f,0.000304f,-7.52e-05f,0.000696f,0.00117f,-0.000429f,0.000336f,0.000621f,-0.000162f,0.000675f,0.00102f,0.f,0.f,0.f,0.f,0.f,-0.000205f,-0.0017f,-0.000313f,-0.00314f,-0.00441f,-0.00293f,0.000865f,6.66e-05f,0.000775f,0.00142f,0.000645f,0.00165f,-0.000631f,-0.00108f,-6.76e-06f,0.00218f,0.00228f,0.00267f,0.000907f,0.000391f,0.00105f,-0.000888f,-0.00101f,-0.000385f,0.000438f,0.000818f,0.000845f,0.f,0.f,0.f,0.f,0.f,0.000383f,0.00171f,0.0014f,0.00206f,0.00365f,0.00388f,0.000981f,0.0024f,0.00225f,2.34e-05f,0.000112f,0.000178f,-0.000917f,-0.000846f,-0.000328f,-0.000119f,-0.000137f,-0.000195f,0.000305f,-0.001f,-0.00103f,-0.00266f,-0.00437f,-0.00381f,-0.00015f,-0.00178f,-0.00182f,0.f,0.f,0.f,0.f,0.f,1.41e-05f,-0.00121f,-0.000165f,-0.000174f,-0.00103f,-0.000719f,0.000261f,-6.83e-05f,-1.55e-06f,-0.000357f,-0.00167f,-0.000651f,-0.000568f,-0.00153f,-0.00109f,0.000146f,-0.000218f,0.000139f,0.00069f,-0.000961f,0.000727f,9.9e-05f,-0.00121f,8.09e-06f,0.000364f,-0.000414f,0.000911f,0.f,0.f,0.f,0.f,0.f,0.000526f,0.000758f,3.26e-05f,7.85e-05f,0.000488f,0.00033f,0.000207f,0.000276f,0.000458f,-8.38e-05f,0.00018f,0.000215f,-0.000188f,0.00037f,0.000939f,0.000118f,0.000407f,0.00123f,0.000217f,-0.000292f,-0.000752f,-7.5e-05f,-0.00031f,-0.000252f,0.000548f,0.000113f,0.00036f,0.f,0.f,0.f,0.f,0.f,-7.91e-05f,-0.000881f,-0.000466f,0.00014f,-0.000772f,-0.000223f,-0.000355f,-0.00111f,-0.000468f,-3.67e-05f,-0.000494f,-0.000328f,-0.000187f,-0.000788f,-0.000391f,-0.000816f,-0.00127f,-0.000725f,0.000428f,9.96e-05f,0.000111f,4.36e-05f,-0.000408f,-8.04e-05f,-0.000694f,-0.00105f,-0.000514f,0.f,0.f,0.f,0.f,0.f}; +float backbone__model0_pw_bias[16] = {0.323f,0.213f,0.388f,0.507f,0.203f,-0.415f,0.128f,0.723f,0.072f,0.252f,-1.44f,0.107f,0.318f,0.561f,0.101f,0.368f}; +float backbone__model0_dp_pw_weight[16*16*1*1] = {-0.00499f,-0.0456f,-0.0892f,-0.18f,0.0462f,-0.0811f,-0.00909f,0.00591f,0.0865f,-0.071f,-0.0135f,-0.0402f,0.0855f,-0.247f,0.719f,-0.426f,-0.183f,0.0144f,0.0105f,-0.0969f,-0.0133f,-0.215f,0.0843f,0.058f,-0.00789f,0.252f,0.308f,0.236f,0.232f,0.0842f,0.573f,-0.128f,0.0363f,0.069f,0.425f,0.213f,-0.499f,-0.0665f,0.459f,0.595f,0.428f,0.0303f,0.0453f,0.0938f,0.0576f,0.0941f,0.0175f,0.00336f,0.0563f,-0.402f,-0.286f,-0.0531f,-0.421f,0.0366f,-0.522f,0.348f,0.497f,0.0924f,0.205f,-0.0867f,-0.0959f,0.0709f,-0.0629f,-0.00406f,-0.0793f,0.128f,-0.0541f,-0.242f,-0.295f,-0.0372f,0.0981f,-0.173f,0.000686f,-0.116f,0.122f,0.00786f,0.0491f,-0.32f,0.0987f,-0.359f,0.181f,-0.0175f,0.0816f,0.0631f,0.0855f,0.383f,-0.0797f,0.0579f,-0.012f,-0.234f,0.0727f,0.101f,-0.424f,0.00754f,0.0848f,0.0885f,0.186f,-0.0298f,0.0952f,0.0176f,-0.0509f,-0.331f,-0.0831f,-0.0276f,-0.101f,-0.0775f,-0.128f,-0.0774f,0.356f,-0.0316f,-0.655f,0.209f,0.331f,0.0939f,0.0617f,0.155f,-0.0547f,-0.0155f,0.025f,0.155f,-0.214f,-0.0262f,0.131f,0.152f,0.16f,0.0163f,-0.058f,0.241f,0.113f,0.13f,0.15f,-0.132f,-0.0976f,0.196f,-0.0896f,-0.192f,-0.0985f,-0.075f,0.111f,0.323f,-0.32f,0.143f,0.0367f,-0.0448f,0.104f,0.0507f,-0.106f,0.105f,-0.0913f,-0.364f,0.107f,-0.0408f,-0.0527f,-0.0748f,-0.0705f,-0.117f,0.527f,-0.134f,-0.00942f,-0.0233f,0.0254f,0.187f,-0.0818f,0.0852f,-0.0957f,0.0582f,0.073f,0.138f,-0.156f,0.245f,0.411f,0.0683f,-0.0689f,0.525f,-0.173f,0.532f,0.000937f,-0.00496f,-0.045f,-0.22f,-0.0401f,0.00207f,-0.035f,-0.000227f,-0.0184f,-0.0612f,0.0545f,-0.057f,-0.0137f,-0.22f,0.655f,-0.331f,-0.0707f,-0.764f,0.433f,-0.254f,-0.147f,0.0434f,-0.129f,-0.261f,-0.426f,0.0156f,-0.399f,-0.14f,-0.0562f,-0.0896f,-0.0804f,-0.0462f,0.265f,-0.0596f,-0.0216f,0.175f,0.0696f,0.1f,-0.0099f,-0.0218f,0.0516f,-0.266f,0.0283f,-0.0205f,-0.312f,-0.0773f,-0.0374f,0.192f,-0.256f,-0.00165f,-0.062f,-0.114f,-0.0706f,-0.147f,0.0674f,0.124f,-0.215f,0.272f,0.0458f,0.173f,0.129f,0.199f,0.0539f,-0.127f,0.254f,0.0761f,0.0475f,0.245f,-0.0642f,-0.138f,0.0294f,0.0377f,0.0428f,-0.159f,0.103f,-0.281f,0.34f,-0.0506f,-0.0829f,0.115f}; +float backbone__model0_dp_pw_bias[16] = {-0.434f,-0.21f,-0.0273f,-0.164f,-0.11f,-0.126f,0.0578f,-0.439f,0.179f,0.0698f,0.0218f,0.147f,-0.00541f,0.133f,-0.119f,-0.15f}; +float backbone__model0_dp_dw_weight[16*1*3*3] = {-0.875f,-0.0483f,-0.138f,0.0147f,-0.957f,0.157f,0.154f,0.617f,0.23f,1.3f,-0.345f,0.52f,-0.147f,0.086f,0.345f,-0.306f,-1.46f,-0.39f,0.62f,-0.44f,-1.13f,-1.76f,-0.394f,0.557f,0.411f,1.57f,-0.0385f,1.3f,0.217f,0.21f,0.381f,-0.699f,-0.799f,0.0224f,0.0741f,-0.665f,-0.88f,-0.89f,0.097f,-0.374f,0.255f,0.106f,0.557f,0.8f,-0.114f,0.162f,-0.221f,0.224f,-0.32f,-0.0732f,-0.162f,-0.263f,1.68f,1.3f,-0.324f,0.311f,-1.26f,0.534f,-0.406f,-0.735f,0.0868f,-1.56f,0.224f,-2.06f,0.426f,-0.545f,0.654f,-0.29f,2.7f,1.96f,-0.453f,1.84f,-1.83f,-1.79f,1.35f,0.255f,0.671f,2.32f,1.97f,0.816f,-0.243f,-0.092f,0.665f,0.123f,2.22f,-1.32f,-0.28f,-2.78f,-1.66f,-0.888f,0.111f,0.359f,0.352f,0.0539f,-1.03f,1.28f,0.773f,-0.184f,0.363f,0.128f,-0.75f,0.276f,-0.0827f,0.43f,0.959f,-0.605f,0.0564f,-0.724f,-0.152f,-1.32f,-0.551f,-0.63f,1.12f,-0.154f,-0.411f,0.124f,-1.49f,1.13f,-0.13f,0.949f,1.3f,-0.514f,0.143f,-1.23f,0.23f,-0.296f,1.62f,1.87f,0.959f,0.0101f,-0.00507f,-0.0286f,-1.35f,-0.0225f,-0.0739f,-1.55f,0.968f,-0.276f,0.22f,-0.725f,-0.0691f,0.9f,-1.95f,-0.243f}; +float backbone__model0_dp_dw_bias[16] = {0.347f,1.57f,-0.714f,-0.0687f,-0.0442f,0.052f,0.348f,-0.0556f,0.0415f,0.097f,0.331f,0.366f,1.61f,-0.0599f,0.0049f,-0.0429f}; +float backbone__model1_dp1_pw_weight[16*16*1*1] = {0.187f,0.693f,-0.0894f,0.0417f,-0.018f,-0.0313f,-0.442f,0.117f,0.0207f,0.00872f,0.371f,-0.0354f,0.0174f,-0.0921f,0.0463f,-0.0266f,0.338f,-0.17f,0.0522f,0.00663f,0.047f,-0.197f,-0.0636f,-0.595f,0.116f,0.36f,0.0251f,0.11f,0.0255f,-0.514f,-0.709f,-0.0834f,0.166f,0.178f,-0.095f,-0.0519f,-0.158f,0.00233f,0.295f,-0.0936f,-0.275f,0.0458f,0.00784f,-0.337f,0.0999f,-0.017f,-0.21f,-0.103f,-0.256f,0.441f,-0.17f,-0.0484f,-0.124f,-0.121f,-0.448f,-0.0835f,-0.0806f,-0.0534f,-0.107f,-0.391f,-0.272f,-0.102f,-0.00661f,-0.0541f,0.0391f,0.172f,0.233f,0.402f,0.0181f,0.0157f,-0.0026f,-0.00366f,0.0177f,0.0432f,-0.0415f,-0.0102f,1.37f,0.014f,-0.0102f,0.0311f,-0.229f,0.174f,0.0231f,0.054f,-0.677f,-0.03f,0.209f,0.21f,-0.731f,-0.477f,0.263f,0.0131f,0.0847f,0.189f,0.189f,-0.0824f,0.0666f,0.401f,0.0637f,0.026f,0.0537f,-0.023f,-0.539f,0.0178f,0.0438f,0.0442f,0.443f,0.102f,-0.00493f,0.0221f,0.0155f,0.0414f,-0.14f,0.192f,0.0141f,0.0406f,-0.255f,-0.619f,0.269f,0.207f,-0.237f,0.307f,0.283f,-0.189f,0.0332f,-0.45f,0.0352f,0.533f,0.121f,0.165f,-0.582f,0.821f,-0.00434f,-0.0564f,0.107f,-0.00408f,-0.0252f,0.00463f,0.0549f,-0.0601f,-0.0209f,-0.0249f,0.0223f,-0.0755f,-0.658f,-0.333f,-0.0513f,-0.0438f,-0.213f,0.0854f,-0.592f,-0.0427f,-0.144f,-0.0954f,-0.0832f,0.345f,-0.146f,-0.0319f,-0.0371f,-0.0319f,0.032f,0.494f,0.000255f,-0.0212f,-0.00864f,-0.0134f,-0.598f,-0.0271f,0.00153f,-0.00362f,0.208f,-0.167f,-0.133f,0.0171f,-0.0309f,-0.0884f,0.104f,-0.139f,0.0154f,0.0304f,0.0978f,0.57f,-0.0697f,-0.415f,0.099f,-0.429f,-0.0307f,0.0933f,-0.0248f,0.386f,-0.131f,-0.723f,-0.0688f,-0.124f,0.16f,0.0695f,0.133f,0.0151f,-0.0424f,-0.0336f,-0.0869f,-0.366f,-0.245f,-0.0205f,0.128f,0.00677f,-0.00342f,0.151f,-0.0557f,0.33f,0.132f,0.112f,0.00838f,0.206f,0.227f,0.0833f,0.112f,0.072f,0.617f,-0.0323f,0.122f,0.138f,0.0789f,0.0412f,0.712f,0.189f,0.0103f,-0.0187f,0.0497f,-0.021f,0.324f,-0.12f,-0.0503f,0.0306f,0.0368f,-0.591f,0.00653f,0.00243f,-0.0259f,0.0867f,0.0165f,-0.426f,0.956f,0.423f,0.081f,0.0199f,0.105f,-0.0398f,0.0381f,-0.0324f,0.299f,0.0265f,0.186f,-0.0185f,-0.0663f,0.0523f}; +float backbone__model1_dp1_pw_bias[16] = {-0.143f,-0.094f,-0.1f,0.31f,-0.133f,-0.0161f,-0.252f,-0.0366f,-0.0368f,0.165f,0.199f,-0.0272f,0.146f,-0.167f,0.00272f,-0.124f}; +float backbone__model1_dp1_dw_weight[16*1*3*3] = {-0.499f,0.0958f,0.231f,-0.187f,-0.0622f,0.0493f,0.606f,-0.014f,0.0859f,-0.0927f,0.0966f,0.0235f,0.133f,0.0164f,-0.0466f,0.0889f,-0.631f,0.701f,1.26f,0.542f,0.123f,-0.585f,0.0964f,0.364f,-0.182f,-0.00624f,0.243f,0.574f,1.34f,0.023f,0.141f,-0.0172f,-0.459f,0.0669f,0.214f,-0.00365f,-0.0872f,0.0243f,-0.658f,0.0297f,0.128f,-0.039f,-0.219f,0.246f,-0.0659f,-0.00783f,-0.0594f,0.0788f,-0.0799f,-0.0271f,0.00154f,-0.392f,0.205f,0.0143f,0.842f,0.0596f,-0.0705f,-0.242f,0.364f,-0.037f,0.214f,0.101f,-0.0653f,-0.093f,0.494f,0.21f,-1.45f,1.f,-1.03f,-0.414f,-0.159f,0.915f,0.787f,1.88f,1.34f,0.559f,-1.57f,-1.2f,1.06f,0.965f,-0.16f,-0.0693f,0.0765f,0.176f,0.127f,0.0348f,-0.799f,0.0852f,0.0273f,-0.159f,-1.05f,0.149f,-0.405f,0.0475f,0.0168f,-0.0453f,0.223f,-0.0126f,-0.0993f,-0.0781f,-0.0532f,-0.0395f,0.294f,-0.0239f,-0.0657f,0.0807f,-0.118f,0.0439f,0.0884f,-0.06f,0.0633f,-0.138f,0.972f,-0.024f,-0.0524f,-0.54f,0.182f,-0.0231f,-0.00895f,0.00242f,0.33f,-0.209f,-0.228f,-0.0273f,0.23f,0.25f,-0.177f,0.112f,0.172f,0.00596f,0.0294f,-0.148f,-0.093f,0.0351f,-0.184f,0.0364f,-0.116f,0.0115f,-0.316f,-0.0168f,-0.0749f,-0.0359f,0.0416f,-0.103f}; +float backbone__model1_dp1_dw_bias[16] = {0.107f,1.04f,-0.0479f,0.932f,1.68f,0.747f,0.139f,-0.335f,0.0955f,1.55f,0.317f,0.744f,0.0206f,1.56f,-0.478f,-0.134f}; +float backbone__model1_dp2_pw_weight[32*16*1*1] = {-0.139f,-0.349f,-0.102f,-0.0583f,0.325f,-0.148f,-0.0863f,0.00421f,0.0135f,-0.0235f,0.184f,-0.124f,-0.0451f,0.0355f,-0.0648f,-0.22f,-0.0726f,0.445f,0.0925f,0.00799f,-0.0513f,0.35f,0.143f,0.267f,0.0753f,0.0527f,-0.117f,0.147f,-0.0525f,0.0999f,0.0312f,0.0442f,0.137f,0.322f,0.217f,0.159f,-0.0739f,-0.106f,-0.135f,-0.0942f,0.0238f,0.305f,0.0144f,0.158f,0.245f,-0.136f,-0.0481f,0.0668f,0.0667f,0.0367f,0.0761f,-0.042f,-0.649f,0.0386f,-0.0727f,0.01f,-0.0347f,-0.0167f,0.0607f,0.0294f,-0.00755f,0.411f,0.0884f,-0.0105f,0.0543f,0.43f,-0.0313f,0.202f,0.0445f,-0.0403f,0.0523f,-0.08f,0.00348f,-0.31f,0.0394f,0.127f,-0.0327f,0.0076f,0.0189f,-0.206f,-0.116f,-0.398f,-0.0927f,-0.192f,0.0544f,0.0596f,0.24f,-0.512f,-0.0271f,0.00116f,-0.134f,0.302f,-0.297f,-0.305f,-0.194f,-0.00758f,0.192f,0.233f,0.469f,-0.219f,-0.126f,0.132f,0.0315f,0.0527f,-0.00153f,0.328f,-0.0711f,0.134f,0.323f,-0.172f,0.214f,0.00837f,-0.0992f,0.434f,-0.102f,0.0159f,0.0071f,0.0145f,-0.0192f,0.198f,0.234f,0.171f,0.0275f,0.0774f,0.00551f,0.42f,-0.101f,0.198f,0.452f,-0.0985f,0.0541f,0.0417f,-0.0361f,-0.195f,0.485f,-0.0177f,-0.00496f,0.0488f,0.288f,0.126f,-0.0522f,-0.0894f,-0.375f,0.024f,0.0546f,-0.14f,0.0165f,-0.188f,-0.0473f,-0.336f,0.0104f,-0.405f,0.0106f,0.23f,-0.0412f,0.583f,-0.231f,-0.09f,-0.0173f,-0.0522f,0.316f,-0.0485f,0.0641f,-0.00148f,-0.00514f,-0.0114f,-0.407f,0.0295f,0.00095f,0.22f,-0.0261f,0.107f,0.298f,-0.17f,-0.179f,0.0529f,0.124f,-0.105f,-0.0138f,-0.378f,-0.142f,-0.184f,-0.0591f,0.283f,0.0349f,-0.0813f,0.0216f,-0.142f,0.0627f,-0.345f,0.0129f,0.746f,-0.122f,0.0439f,-0.094f,0.356f,-0.124f,0.0527f,0.283f,0.231f,0.0258f,-0.275f,0.396f,0.00541f,0.194f,-0.0181f,0.222f,0.0693f,-0.679f,0.0387f,0.222f,0.162f,0.162f,-0.254f,-0.0972f,-0.0486f,-0.0921f,-0.228f,0.151f,-0.00261f,-0.218f,0.222f,0.0128f,0.044f,-0.124f,-0.541f,-0.366f,0.159f,-0.169f,-0.323f,0.15f,0.332f,0.058f,-0.193f,-0.111f,-0.317f,-0.0767f,-0.173f,-0.0229f,-0.0137f,0.064f,0.214f,-0.00891f,0.509f,0.00278f,-0.0297f,-0.821f,-0.08f,-0.0393f,-0.0716f,-0.439f,0.19f,0.0805f,-0.0561f,-0.0617f,0.0247f,0.022f,0.191f,-0.0416f,-0.162f,-0.0407f,0.78f,0.0126f,-0.15f,0.0669f,0.0597f,-0.0507f,-0.142f,0.181f,-0.0806f,0.0194f,0.0394f,0.108f,-0.0145f,0.179f,-0.385f,-0.296f,0.287f,-0.042f,-0.177f,0.0033f,0.14f,-0.135f,-0.0017f,0.109f,0.209f,0.178f,-0.249f,0.0192f,0.107f,0.017f,-0.0535f,0.087f,-0.0893f,-0.00903f,0.012f,-0.653f,-0.0228f,-0.00362f,0.0334f,0.0628f,-0.103f,0.0925f,0.416f,0.148f,0.247f,0.225f,-0.102f,0.07f,-0.287f,-0.0162f,-0.00629f,0.051f,0.303f,-0.0831f,0.105f,-0.0468f,0.424f,0.0928f,0.217f,-0.0694f,-0.0533f,0.039f,-0.073f,0.396f,0.154f,0.0522f,-0.0202f,-0.687f,-0.0856f,-0.0576f,-0.0206f,-0.00377f,0.143f,0.019f,-0.457f,-0.117f,0.057f,-0.0503f,-0.023f,0.365f,0.00774f,-0.0836f,-0.00886f,0.29f,0.0339f,0.000872f,0.135f,-0.0863f,0.351f,-0.204f,0.168f,0.0343f,-0.26f,-0.0307f,0.164f,-0.0687f,0.199f,-0.032f,-0.00858f,-0.00995f,-0.135f,-0.402f,-0.081f,-0.00646f,-0.267f,0.422f,0.0306f,-0.0307f,-0.0271f,-0.0374f,-0.0161f,-0.9f,-0.11f,-0.0458f,-0.00272f,0.178f,-0.0702f,0.0131f,0.0243f,-0.0808f,-0.0332f,0.00482f,0.129f,0.084f,0.212f,0.328f,-0.395f,-0.104f,-0.0599f,-0.0482f,-0.104f,0.136f,-0.216f,-0.128f,0.217f,0.137f,0.00201f,0.634f,-0.0521f,-0.0831f,-0.028f,-0.0469f,0.0245f,0.218f,-0.0559f,0.0524f,-0.0363f,-0.192f,-0.0379f,0.0331f,0.302f,-0.214f,0.13f,0.074f,-0.162f,0.518f,-0.1f,0.00618f,0.115f,-0.013f,0.187f,0.118f,0.0878f,-0.0627f,-0.23f,0.0293f,0.0857f,0.128f,0.061f,0.272f,-0.144f,-0.186f,-0.0821f,-0.0308f,0.391f,-0.0295f,-0.184f,-0.139f,0.0445f,-0.0557f,-0.272f,0.156f,0.136f,-0.104f,-0.0332f,0.434f,-0.012f,0.0594f,0.102f,-0.184f,-0.00309f,-0.0349f,-0.00747f,-0.219f,-0.0635f,0.0226f,0.0233f,0.534f,0.12f,0.0569f,-0.256f,-0.0734f,-0.0255f,0.0881f,0.0459f,0.0465f,-0.0627f,0.722f,-0.0225f,0.0268f,0.0882f,0.383f,-0.0256f,-0.159f,0.0714f,-0.0375f,-0.184f,0.0514f,0.0637f,0.0821f,-0.0192f,0.0581f,-0.048f,0.6f,0.0339f,-0.012f,0.0177f,-0.373f,-0.0355f,-0.0197f,-0.0302f,0.0409f,0.00637f,0.12f,-0.355f,-0.132f,-0.178f,-0.174f,0.0948f,-0.126f,-0.169f,0.0182f,0.109f,0.108f,-0.134f,0.141f,-0.165f,-0.0408f,-0.202f,-0.0963f,0.246f}; +float backbone__model1_dp2_pw_bias[32] = {0.349f,-0.0689f,0.015f,0.185f,-0.0971f,0.0646f,-0.0267f,-0.31f,-0.096f,-0.0015f,0.0176f,-0.0715f,-0.0261f,0.0034f,0.0254f,-0.0605f,-0.00821f,-0.147f,-0.0732f,-0.00382f,0.089f,-0.201f,-0.0468f,-0.0104f,-0.0238f,0.12f,0.293f,-0.141f,-0.038f,-0.551f,-0.149f,0.0599f}; +float backbone__model1_dp2_dw_weight[32*1*3*3] = {-0.36f,-0.242f,0.134f,1.09f,-0.302f,0.0239f,-0.311f,0.438f,-0.648f,-0.221f,-0.0755f,0.0411f,0.151f,-0.196f,-0.0689f,0.114f,0.242f,-0.77f,-1.03f,-0.142f,-0.164f,0.773f,-0.292f,-0.66f,0.0237f,0.403f,-0.723f,0.452f,0.109f,-0.557f,0.719f,1.19f,-0.809f,0.00508f,0.0717f,-0.308f,-0.517f,0.258f,0.437f,0.186f,0.164f,-0.159f,0.357f,-0.101f,-0.593f,0.166f,-0.373f,-0.0387f,-0.126f,-1.66f,-0.922f,0.268f,0.29f,-0.986f,0.382f,-0.587f,0.724f,-0.111f,-0.238f,-0.742f,-0.226f,-1.38f,-0.238f,-0.348f,-0.51f,0.273f,0.281f,-0.807f,-0.0576f,0.167f,-0.0478f,-0.129f,-0.232f,0.259f,-0.481f,0.12f,-0.449f,-0.0818f,-0.226f,0.0954f,-0.205f,-0.148f,-0.663f,-0.288f,-0.196f,-0.33f,-0.0602f,-0.479f,-0.12f,-1.41f,-0.309f,0.284f,0.306f,-0.164f,-0.856f,-0.901f,-0.158f,-0.164f,0.0166f,0.997f,-0.146f,0.105f,-0.425f,0.374f,-0.722f,-0.0508f,-0.257f,-0.11f,-0.709f,-0.193f,0.224f,0.568f,0.051f,0.497f,0.0646f,-0.00668f,0.271f,2.07f,-0.604f,-0.35f,-0.149f,0.159f,0.0941f,0.149f,-1.75f,-0.432f,1.48f,1.17f,0.0696f,-0.339f,1.25f,0.318f,-1.23f,0.631f,-1.29f,-0.658f,-0.0855f,-0.629f,-1.34f,-1.07f,-0.00288f,-0.0647f,-0.591f,1.27f,-0.685f,1.62f,0.636f,-1.35f,1.44f,-0.404f,-0.256f,0.0999f,-1.74f,-1.18f,-0.53f,1.25f,1.72f,-0.633f,0.194f,-0.801f,-0.37f,0.201f,0.886f,-1.33f,-0.514f,-0.00563f,-0.168f,-0.51f,0.132f,0.0348f,0.177f,0.167f,0.15f,-0.159f,0.367f,-0.211f,-0.698f,-0.0413f,-0.302f,0.0399f,-0.171f,-1.f,0.471f,-0.084f,0.027f,0.0862f,0.0463f,-0.203f,0.0544f,-0.695f,-0.919f,-0.237f,0.627f,0.929f,-0.604f,0.612f,0.435f,0.188f,-0.0954f,0.0276f,0.113f,0.368f,-0.0733f,0.042f,-0.507f,0.23f,-0.00378f,0.184f,0.126f,0.104f,0.557f,0.156f,-0.226f,0.577f,-0.316f,0.512f,0.0437f,-0.389f,-0.406f,0.0361f,-0.234f,1.19f,0.346f,0.217f,1.1f,2.08f,-1.04f,0.366f,2.11f,0.282f,0.0706f,-0.211f,-0.0919f,-0.283f,-0.147f,-0.122f,0.345f,1.76f,-0.543f,0.098f,0.149f,0.475f,1.21f,0.233f,-0.385f,-0.556f,-1.1f,1.07f,-0.314f,-0.164f,-0.0248f,0.305f,-0.447f,2.02f,-0.102f,0.00533f,0.606f,-0.739f,-0.528f,-0.794f,0.467f,-0.0941f,0.0335f,-0.389f,-0.0942f,-0.557f,0.409f,0.0826f,0.0736f,-0.0116f,-0.0281f,0.0649f,0.111f,0.11f,0.388f,0.0498f,0.081f,0.0409f,-0.129f,0.441f,0.0467f,0.948f,-0.519f,0.229f,-0.113f,0.522f,-0.628f,-0.207f}; +float backbone__model1_dp2_dw_bias[32] = {0.223f,-1.4f,-0.152f,-0.0601f,-0.104f,1.5f,0.568f,0.907f,0.2f,0.0467f,-0.00768f,0.0175f,1.f,-0.0166f,-0.482f,-0.295f,0.822f,0.0923f,-0.0446f,0.839f,0.298f,0.00922f,-0.569f,0.286f,0.18f,0.292f,1.65f,0.214f,0.377f,-0.0535f,-0.009f,0.0448f}; +float backbone__model2_dp1_pw_weight[32*32*1*1] = {0.0504f,-0.103f,0.16f,0.0124f,-0.112f,0.051f,0.261f,0.254f,-0.062f,0.118f,-0.0599f,0.0232f,-0.235f,0.392f,0.1f,0.0204f,0.000275f,0.00203f,-0.0387f,0.405f,-0.0934f,-0.087f,-0.248f,0.0499f,-0.183f,-0.0574f,-0.0218f,-0.0926f,0.11f,-0.017f,0.0217f,0.0826f,-0.223f,0.101f,-0.344f,0.112f,-0.194f,0.161f,0.00954f,0.174f,0.0128f,0.122f,0.149f,0.0659f,0.0378f,-0.0427f,-0.171f,-0.0189f,0.191f,-0.634f,-0.343f,-0.0599f,0.073f,0.0747f,0.0404f,-0.185f,0.11f,0.122f,-0.0067f,-0.181f,0.058f,-0.36f,0.209f,0.145f,0.0783f,0.0476f,0.00177f,-0.136f,0.094f,-0.603f,-0.33f,0.1f,-0.106f,-0.0299f,0.142f,0.174f,0.157f,0.142f,-0.142f,0.0766f,-0.0741f,-0.0354f,0.119f,-0.0255f,0.104f,0.0095f,-0.13f,0.0272f,0.14f,0.0647f,0.000237f,-0.109f,0.101f,-0.0596f,-0.0839f,0.075f,0.0429f,-0.0616f,0.0813f,0.0253f,-0.098f,-0.185f,-0.0941f,-0.0107f,0.0284f,-0.206f,-0.0455f,-0.181f,-0.0572f,-0.0579f,-0.11f,0.0375f,0.0514f,-0.0579f,-0.0874f,-0.0605f,0.719f,0.0656f,0.0525f,0.0378f,-0.0529f,-0.21f,0.181f,0.122f,-0.0489f,-0.0259f,0.523f,0.12f,0.156f,-0.0689f,0.143f,-0.0925f,-0.242f,-0.223f,-0.0534f,0.267f,-0.199f,-0.102f,-0.0571f,0.142f,-0.0684f,0.116f,-0.0931f,-0.287f,-0.188f,-0.167f,-0.0294f,-0.176f,0.086f,-0.303f,0.134f,0.122f,0.0361f,-0.0775f,0.154f,0.0082f,-0.395f,-0.0865f,-0.195f,-0.00358f,0.0682f,0.117f,-0.000717f,0.0209f,-0.0153f,-0.0411f,-0.246f,-0.000439f,-0.357f,-0.139f,-0.0601f,0.299f,-0.174f,-0.0427f,-0.0144f,-0.437f,0.0308f,-0.0493f,-0.0465f,-0.248f,0.0965f,-0.27f,-0.0827f,-0.0268f,0.19f,0.0351f,0.0977f,-0.171f,-0.105f,-0.0942f,-0.0637f,-0.0623f,0.0843f,0.238f,0.202f,0.144f,0.205f,-0.258f,-0.284f,0.196f,0.0248f,-0.256f,0.0859f,-0.523f,0.161f,0.359f,-0.17f,0.0383f,-0.0353f,0.222f,0.102f,-0.0559f,-0.0531f,-0.0344f,0.0113f,0.0629f,-0.193f,-0.135f,0.00348f,0.000692f,0.0138f,0.12f,-0.0282f,0.149f,0.0414f,-0.045f,-0.11f,0.00952f,0.0034f,0.05f,0.223f,-0.0995f,0.128f,0.331f,0.128f,0.141f,-0.344f,0.0234f,-0.0274f,-0.344f,0.155f,0.0555f,-0.032f,0.0153f,0.0396f,0.0751f,-0.113f,0.0287f,-0.18f,0.147f,0.136f,0.0784f,-0.25f,-0.0652f,0.0268f,-0.0475f,0.163f,0.142f,-0.0317f,0.0501f,-0.0689f,0.275f,-0.0858f,0.196f,0.0294f,0.0481f,-0.0564f,-0.127f,-0.0339f,-0.0212f,-0.152f,-0.181f,0.0563f,0.000283f,0.0102f,0.0868f,0.205f,-0.0716f,-0.25f,0.0581f,0.419f,-0.0899f,0.136f,0.0867f,0.0391f,-0.0203f,0.0829f,-0.061f,-0.232f,0.223f,-0.0636f,0.00944f,0.209f,-0.0508f,-0.0912f,-0.0423f,0.143f,-0.0985f,0.0588f,0.259f,-0.285f,0.165f,0.269f,0.101f,-0.101f,-0.0703f,-0.0231f,0.0377f,0.127f,0.00502f,-0.0864f,0.047f,-0.231f,-0.00613f,0.0739f,0.152f,-0.158f,0.0575f,0.0237f,-0.0288f,0.0517f,0.00872f,0.0305f,0.24f,-0.0488f,0.115f,-0.107f,0.0403f,-0.0378f,-0.231f,-0.11f,-0.00189f,-0.129f,-0.0446f,-0.407f,0.1f,0.0232f,0.0876f,0.0738f,0.0827f,-0.00773f,0.172f,0.185f,-0.0325f,0.139f,0.016f,-0.142f,0.0979f,0.0771f,-0.0554f,0.15f,0.355f,0.0192f,-0.237f,0.156f,-0.21f,0.0256f,0.0123f,-0.134f,0.457f,-0.205f,0.218f,-0.0714f,0.327f,0.034f,0.107f,0.0966f,-0.00357f,-0.205f,-0.154f,-0.197f,0.288f,-0.0795f,-0.326f,0.0265f,-0.651f,-0.133f,-0.285f,0.129f,0.11f,0.000774f,-0.0422f,-0.0628f,-0.242f,-0.054f,-0.212f,0.217f,-0.102f,0.161f,-0.0321f,-0.0481f,0.0792f,-0.445f,0.269f,0.209f,0.142f,0.00272f,0.00541f,0.331f,0.0204f,0.264f,0.151f,0.00843f,0.11f,0.106f,-0.159f,0.0305f,-0.116f,-0.345f,0.0701f,0.055f,-0.161f,-0.138f,-0.0163f,0.0466f,-0.0476f,-0.0387f,0.00386f,0.159f,0.173f,0.0592f,0.181f,-0.324f,-0.1f,-0.0153f,0.0655f,0.129f,0.0446f,-0.0643f,-0.113f,0.155f,-0.289f,0.0273f,-0.00943f,0.0697f,0.234f,-0.0421f,0.00367f,-0.308f,-0.0311f,-0.0961f,-0.0212f,-0.368f,0.0173f,0.00295f,0.0666f,0.031f,0.0611f,-0.437f,0.0511f,-0.031f,-0.00982f,0.107f,0.164f,-0.132f,0.0306f,0.0819f,-0.0101f,-0.0953f,0.161f,0.0123f,0.189f,-0.376f,-0.0299f,-0.275f,-0.0714f,0.197f,0.108f,0.0856f,-0.0259f,0.0309f,0.422f,-0.0376f,-0.0146f,0.122f,0.295f,-0.000417f,0.0782f,-0.139f,-0.0824f,0.11f,-0.0272f,-0.128f,0.0299f,-0.188f,-0.0941f,-0.00456f,0.0623f,-0.0612f,-0.02f,0.0406f,0.263f,0.0546f,-0.123f,-0.242f,0.103f,0.0555f,-0.319f,-0.143f,0.044f,0.108f,-0.00935f,-0.104f,-0.0337f,0.328f,0.0354f,0.0992f,-0.255f,0.0676f,-0.155f,0.0589f,0.0591f,0.0102f,0.0316f,-0.0216f,0.0743f,0.0524f,0.164f,0.0424f,-0.144f,0.193f,-0.266f,-0.144f,-0.515f,0.00695f,0.095f,-0.207f,0.0538f,-0.0625f,0.0542f,-0.00813f,0.0255f,-0.167f,0.101f,-0.119f,0.0112f,0.0325f,0.024f,-0.042f,-0.0132f,0.0793f,0.0212f,0.00106f,-0.146f,0.0296f,0.0604f,0.0184f,-0.0878f,0.0483f,-0.168f,-0.238f,-0.215f,-0.0544f,-0.192f,0.141f,0.0556f,-0.0343f,-0.0697f,-0.171f,0.0428f,0.456f,0.0603f,0.0189f,-0.183f,-0.0281f,-0.0568f,-0.139f,-0.00352f,0.142f,0.187f,-0.109f,0.135f,-0.0299f,0.0936f,-0.0423f,-0.198f,0.118f,0.0399f,0.12f,-0.0505f,0.065f,0.0836f,-0.0941f,-0.244f,-0.236f,0.0902f,-0.053f,-0.0359f,-0.258f,-0.0803f,0.136f,-0.292f,0.00953f,0.0455f,0.0355f,0.0189f,-0.0424f,-0.0701f,0.167f,0.0317f,0.193f,-0.0528f,0.0271f,-0.142f,-0.371f,0.0465f,-0.0154f,-0.0084f,-0.0428f,-0.029f,-0.0947f,0.00872f,0.0539f,0.339f,0.11f,0.0399f,0.277f,0.172f,0.0663f,-0.0485f,-0.219f,0.0823f,0.174f,-0.236f,-0.146f,-0.0576f,-0.0616f,-0.095f,0.0909f,0.0484f,0.0921f,-0.063f,-0.204f,0.02f,0.00907f,0.138f,-0.149f,-0.0242f,-0.0233f,-0.0763f,0.35f,0.185f,-0.166f,0.0266f,0.23f,-0.0291f,0.0794f,-0.339f,0.238f,-0.164f,0.162f,-0.254f,-0.00295f,0.291f,-0.139f,-0.233f,0.0843f,0.205f,0.0859f,-0.0556f,-0.0111f,0.0165f,0.225f,0.108f,0.033f,0.108f,-0.253f,0.297f,-0.0572f,0.333f,-0.174f,-0.0713f,-0.117f,-0.138f,0.203f,-0.0344f,0.155f,0.117f,-0.0583f,0.228f,-0.0683f,0.253f,-0.0713f,0.137f,0.132f,-0.0204f,0.229f,0.162f,-0.167f,0.0161f,0.0413f,0.256f,0.239f,-0.0721f,-0.000336f,0.0605f,0.107f,-0.187f,-0.118f,-0.249f,-0.0141f,-0.0462f,0.133f,0.0726f,-0.0131f,0.0879f,0.0256f,0.0327f,-0.156f,0.0586f,0.0644f,-0.27f,-0.228f,-0.199f,-0.154f,0.295f,-0.0924f,-0.108f,-0.0985f,0.0976f,0.313f,0.00913f,0.0491f,-0.275f,-0.116f,-0.0129f,0.265f,0.08f,0.157f,-0.035f,0.114f,0.189f,-0.0245f,0.0762f,0.0123f,0.113f,0.0414f,-0.0177f,-0.0498f,0.0868f,0.166f,0.0692f,-0.0909f,-0.0357f,-0.315f,-0.0823f,0.153f,-0.199f,-0.109f,-0.176f,0.0758f,-0.377f,0.00523f,0.25f,0.0728f,-0.219f,0.0128f,0.0153f,0.208f,0.117f,0.0733f,0.105f,-0.271f,-0.0755f,-0.42f,0.0412f,0.0449f,-0.196f,-0.221f,0.082f,0.188f,-0.0584f,-0.0172f,-0.0582f,-0.184f,-0.124f,0.0441f,-0.135f,0.0165f,0.0619f,-0.0688f,0.106f,-0.101f,-0.0354f,-0.573f,-0.183f,0.00428f,0.251f,0.14f,0.0488f,0.153f,-0.0837f,-0.029f,-0.0254f,0.0208f,-0.189f,-0.239f,-0.0992f,-0.0796f,-0.289f,-0.159f,0.0927f,0.0859f,-0.113f,-0.00179f,0.338f,0.112f,-0.0682f,-0.00744f,-0.0524f,-0.377f,-0.00506f,-0.165f,0.194f,0.355f,-0.112f,0.158f,-0.0897f,-0.0762f,-0.0932f,0.0948f,0.0366f,0.0704f,-0.0598f,-0.0647f,-0.0649f,0.0751f,0.172f,-0.0444f,-0.0704f,-0.0982f,-0.306f,0.115f,-0.0453f,0.0048f,0.263f,-0.0437f,0.0854f,-0.0116f,0.157f,0.112f,-0.148f,0.126f,-0.0932f,-0.0419f,0.0186f,-0.0935f,0.302f,0.202f,0.165f,0.0397f,-0.0868f,-0.232f,0.409f,0.287f,0.0602f,-0.0686f,0.1f,-0.0245f,-0.0102f,-0.12f,-0.062f,0.368f,0.0801f,-0.0317f,0.0059f,0.134f,-0.00462f,-0.155f,-0.115f,0.148f,0.127f,0.00446f,0.0759f,-0.0267f,0.323f,0.114f,0.0805f,0.00494f,0.111f,-0.106f,0.12f,0.0771f,-0.0342f,0.424f,-0.0657f,-0.0228f,0.1f,0.14f,-0.28f,0.249f,-0.146f,-0.0315f,0.0137f,0.04f,0.0772f,0.076f,0.309f,0.0543f,0.0938f,0.0406f,-0.253f,-0.11f,0.1f,0.0368f,-0.0472f,-0.105f,-0.2f,0.475f,-0.353f,-0.156f,0.418f,0.0377f,0.222f,0.0623f,-0.162f,-0.0666f,0.106f,0.0806f,0.154f,0.282f,0.102f,-0.252f,-0.15f,0.0503f,0.136f,-0.0914f,0.00437f,0.0114f,-0.0215f,0.285f,-0.36f,0.121f,0.0527f,-0.192f,-0.0843f,0.0594f,0.0314f,-0.315f,0.0965f,-0.0932f,0.0952f,0.308f,0.0842f,0.178f,-0.0902f,-0.175f,0.0276f,0.0469f,-0.289f,-0.133f,0.177f,-0.249f,0.0161f,0.137f,-0.0535f,0.11f,-0.246f,-0.335f,0.0518f,-0.253f,-0.0434f,0.0576f,0.0572f,-0.205f,-0.239f,0.199f,-0.0319f,0.13f,0.362f,0.194f,0.029f,-0.229f,0.00392f,-0.0412f,0.0385f,-0.172f,0.0313f,-0.246f,0.0638f,0.0969f,0.0989f,0.0959f,0.0159f,-0.0906f,0.161f,0.189f,0.125f,0.134f,-0.205f,-0.0509f,0.028f,0.0372f,0.00017f,-0.0458f,-0.109f,-0.0446f,0.0114f,0.215f,-0.248f,0.0787f,0.145f,-0.064f,0.154f,0.0526f,0.0977f,0.0767f,0.143f,-0.0287f,-0.1f,-0.104f,-0.0603f,0.089f,-0.00704f,-0.318f,-0.0665f,-0.0448f,0.0167f,0.217f,0.173f,0.228f,-0.0437f,-0.086f,-0.109f}; +float backbone__model2_dp1_pw_bias[32] = {0.0103f,-0.146f,0.0708f,-0.0476f,0.0129f,0.0824f,-0.0213f,-0.00832f,0.143f,0.0058f,-0.00942f,-0.114f,-0.00738f,0.0648f,-0.0913f,-0.145f,-0.0481f,0.121f,0.177f,-0.026f,-0.0722f,0.0136f,0.132f,0.043f,-0.0366f,-0.188f,-0.15f,-0.0546f,0.0135f,0.00173f,-0.00419f,0.0361f}; +float backbone__model2_dp1_dw_weight[32*1*3*3] = {0.573f,0.0742f,-0.378f,-0.0295f,-0.0786f,0.295f,-0.0683f,-0.125f,0.0616f,0.251f,-0.186f,0.0534f,0.199f,1.53f,0.053f,0.374f,-1.38f,0.182f,-0.303f,0.21f,0.216f,-0.378f,0.401f,-0.109f,-0.0395f,1.11f,0.102f,-0.695f,-0.345f,-0.0317f,-0.455f,-0.724f,0.74f,0.466f,0.183f,-0.0598f,2.07f,0.875f,0.45f,-0.429f,0.453f,0.652f,0.665f,0.821f,-0.19f,-0.041f,0.381f,0.405f,-1.18f,0.126f,-0.0838f,0.0929f,-1.04f,-0.372f,-0.608f,-0.235f,0.183f,0.761f,-0.158f,-0.832f,-0.241f,-0.478f,-0.0542f,0.193f,0.587f,0.419f,-0.153f,-0.0909f,-0.489f,0.568f,-0.0621f,-0.14f,0.287f,0.602f,-0.0398f,0.598f,0.0484f,-0.462f,-0.0526f,-0.457f,0.0802f,0.443f,0.143f,-0.111f,-0.375f,0.0103f,-0.802f,-0.741f,0.173f,-0.381f,-1.18f,-0.544f,0.00395f,-0.223f,0.181f,0.984f,-0.212f,-0.103f,-0.0868f,0.249f,-0.0067f,-0.157f,-0.175f,-0.61f,0.281f,-0.749f,-0.382f,-0.138f,-0.323f,0.475f,0.194f,0.975f,-0.0656f,-1.23f,0.00971f,0.291f,-0.267f,-0.778f,0.709f,-0.215f,-0.34f,0.395f,0.101f,-0.31f,-0.0904f,-0.294f,-0.188f,-0.487f,-1.08f,0.145f,1.3f,-0.633f,0.41f,0.194f,-1.f,-0.161f,0.36f,0.735f,0.675f,0.162f,0.541f,-0.214f,0.72f,0.635f,0.781f,-1.28f,-1.72f,1.51f,0.0554f,0.271f,0.572f,0.00929f,-0.601f,-0.176f,-0.0903f,1.24f,-0.768f,-0.0795f,-0.538f,-1.1f,-0.262f,0.482f,0.528f,-0.68f,-0.275f,0.881f,-0.22f,1.55f,0.477f,0.211f,0.585f,-0.00558f,-0.282f,-0.277f,0.0793f,-1.22f,0.173f,0.636f,1.06f,-2.f,-0.279f,0.849f,-0.882f,-0.648f,-0.317f,-0.342f,-0.515f,-0.432f,-0.279f,-0.0231f,-0.164f,0.635f,-0.299f,0.0623f,-0.31f,-0.0982f,0.207f,-0.245f,0.236f,0.0136f,-0.474f,0.00975f,-0.949f,0.0432f,0.298f,-0.254f,0.00221f,0.126f,-0.136f,0.21f,0.0378f,0.79f,-0.0466f,-0.665f,0.847f,-0.0333f,-0.319f,-0.518f,-0.258f,0.157f,0.0951f,-0.116f,-0.0527f,-0.0528f,-0.269f,-0.193f,0.156f,-0.0568f,-0.209f,-0.283f,-0.674f,1.13f,-0.892f,-0.491f,-0.227f,0.16f,1.15f,-0.201f,0.305f,-0.241f,0.948f,-0.153f,-0.362f,-0.503f,0.101f,0.21f,0.371f,0.0355f,-0.914f,-0.48f,0.035f,1.04f,-0.19f,-0.261f,-0.108f,-0.24f,-0.501f,0.224f,0.119f,-0.302f,0.101f,-0.485f,0.251f,0.0476f,-0.635f,-0.166f,0.499f,-0.0129f,0.575f,-0.353f,0.0538f,-0.363f,0.306f,0.929f,0.262f,-0.658f,-0.391f,0.745f,-0.372f,0.0376f,-0.18f,-0.109f,-0.0821f,-0.0188f,0.151f,0.0393f,-0.102f,0.735f}; +float backbone__model2_dp1_dw_bias[32] = {0.489f,0.568f,0.474f,-0.0598f,0.736f,0.585f,-0.342f,-0.152f,0.539f,-0.0808f,0.302f,0.144f,-0.434f,0.208f,0.274f,0.125f,-0.176f,-0.0018f,-0.0441f,0.118f,-0.0118f,0.256f,-0.038f,-0.737f,-1.54f,0.537f,0.471f,0.23f,0.365f,0.6f,0.369f,0.0246f}; +float backbone__model2_dp2_pw_weight[64*32*1*1] = {0.132f,-0.127f,0.104f,0.0428f,-0.0552f,-0.126f,0.0982f,-0.113f,0.0625f,0.000905f,-0.156f,0.133f,-0.0837f,0.0843f,-0.0932f,-0.0514f,-0.0832f,-0.0184f,0.0247f,-0.19f,-0.0681f,-0.0664f,-0.154f,0.0899f,0.0543f,-0.115f,0.0349f,0.0299f,-0.0871f,-0.246f,-0.041f,-0.109f,-0.194f,-0.138f,-0.0848f,0.0316f,0.107f,0.18f,0.058f,-0.0482f,0.0557f,-0.183f,0.118f,-0.225f,0.318f,0.189f,0.0267f,-0.0167f,-0.0255f,0.0869f,-0.0541f,-0.0653f,0.187f,0.102f,-0.0559f,-0.169f,0.00363f,0.128f,0.0939f,-0.174f,-0.365f,0.0208f,0.109f,-0.00131f,0.0716f,0.0691f,0.0254f,0.0155f,0.0475f,-0.0168f,-0.0609f,0.0611f,-0.0311f,-0.00307f,0.0904f,0.138f,-0.00817f,0.103f,-0.0932f,-0.0796f,0.0895f,-0.141f,0.0529f,-0.0146f,-0.326f,-0.071f,-0.0898f,0.0753f,0.0639f,0.0683f,-0.0682f,0.0846f,0.245f,0.0997f,-0.0868f,0.127f,0.101f,-0.125f,-0.0156f,-0.17f,0.346f,0.0266f,-0.06f,-0.0749f,-0.122f,-0.133f,0.0243f,0.0194f,0.0341f,0.0541f,-0.0283f,-0.246f,-0.05f,-0.00309f,-0.0569f,-0.0541f,-0.0156f,-0.353f,-0.101f,0.0642f,0.0164f,-0.00629f,0.0707f,0.0359f,0.082f,-0.331f,-0.126f,-0.0294f,-0.184f,0.132f,-0.282f,-0.111f,-0.0981f,0.236f,-0.000866f,-0.402f,-0.0344f,0.167f,0.125f,0.0991f,0.0675f,-0.0194f,0.0815f,-0.168f,-0.196f,-0.0558f,-0.0726f,-0.298f,-0.00967f,-0.199f,0.0462f,0.255f,0.0151f,0.0419f,-0.161f,0.0662f,0.0692f,-0.139f,0.213f,-0.0362f,-0.048f,-0.0391f,-0.108f,-0.0106f,0.0189f,0.0348f,0.158f,-0.103f,0.0313f,0.0303f,0.0975f,0.00661f,0.0388f,0.268f,-0.109f,-0.141f,-0.134f,0.0272f,0.0656f,-0.209f,-0.207f,-0.0328f,0.0941f,0.136f,0.114f,-0.354f,0.307f,0.0664f,-0.0248f,0.106f,0.138f,0.0483f,0.136f,-0.0207f,-0.0545f,-0.0308f,-0.148f,-0.0173f,0.121f,-0.208f,0.161f,-0.0284f,-0.0175f,-0.142f,-0.00287f,-0.205f,-0.0966f,0.0378f,-0.0446f,0.0404f,0.203f,0.113f,0.218f,-0.175f,0.0699f,-0.204f,-0.0542f,0.0357f,-0.0565f,0.03f,-0.355f,-0.0734f,0.0302f,0.0361f,-0.0851f,-0.117f,0.12f,-0.205f,-0.0563f,-0.204f,0.0813f,0.0229f,-0.0596f,-0.0265f,-0.00117f,0.353f,0.0827f,-0.16f,0.0611f,-0.075f,0.151f,0.0486f,-0.0273f,0.000686f,-0.175f,0.0977f,-0.118f,0.187f,-0.0686f,-0.125f,-0.184f,0.175f,0.0198f,-0.0705f,-0.151f,-0.0141f,-0.0368f,0.169f,-0.0299f,0.111f,-0.0428f,-0.109f,-0.357f,0.194f,0.000892f,-0.086f,0.119f,-0.0687f,0.0382f,-0.0772f,0.127f,0.131f,-0.106f,-0.0564f,0.079f,0.0583f,-0.144f,-0.0898f,-0.164f,-0.0657f,0.0577f,0.278f,0.0441f,-0.0576f,0.0525f,0.136f,-0.0486f,0.0409f,-0.127f,0.0541f,0.28f,0.167f,-0.0103f,-0.242f,-0.156f,0.231f,-0.0811f,-0.0231f,0.106f,0.0157f,0.0579f,-0.0404f,-0.0226f,0.159f,-0.0227f,0.0171f,-0.0679f,0.0397f,0.0281f,-0.0856f,0.209f,-0.0816f,0.00664f,0.0555f,0.158f,-0.182f,-0.146f,0.148f,-0.0971f,-0.052f,0.141f,-0.195f,-0.186f,0.00461f,0.095f,0.343f,-0.0199f,-0.332f,0.049f,0.0338f,0.138f,0.0627f,0.0491f,-0.0272f,0.0283f,0.0648f,-0.176f,0.207f,0.403f,-0.104f,-0.0123f,-0.000616f,0.211f,0.0301f,0.109f,0.137f,-0.163f,-0.145f,0.0872f,-0.0385f,0.127f,0.359f,-0.0146f,-0.164f,0.0641f,0.108f,0.0444f,-0.0394f,-0.219f,0.13f,0.169f,0.241f,0.143f,-0.0167f,-0.0225f,0.0656f,0.235f,-0.104f,0.227f,-0.206f,-0.181f,-0.08f,-0.0212f,0.229f,0.118f,-0.0715f,0.124f,0.0259f,0.0428f,-0.0201f,-0.137f,-0.0787f,0.15f,-0.153f,0.252f,0.0587f,0.0897f,-0.0257f,-0.127f,-0.083f,0.186f,-0.199f,0.279f,0.0442f,-0.0908f,-0.0723f,0.0189f,0.018f,-0.0159f,-0.131f,-0.142f,-0.00648f,-0.178f,0.0393f,-0.00687f,0.0567f,-0.0194f,0.0481f,-0.00402f,0.0191f,0.0736f,0.191f,0.144f,-0.0876f,0.0946f,-0.293f,0.0629f,0.0364f,0.139f,-0.0343f,-0.238f,-0.0266f,-0.0255f,0.129f,0.162f,-0.0446f,-0.158f,0.0116f,0.01f,-0.0855f,-0.0137f,-0.162f,-0.0636f,-0.00163f,0.145f,0.195f,-0.00499f,-0.0478f,-0.0374f,-0.103f,0.0215f,-0.0632f,0.0384f,-0.0289f,0.176f,-0.165f,0.0722f,-0.0515f,-0.154f,0.215f,-0.181f,-0.0551f,-0.101f,0.00134f,0.289f,-0.0506f,0.191f,0.0248f,0.0207f,-0.0857f,0.0871f,-0.0363f,-0.111f,-0.0273f,-0.206f,0.247f,0.0013f,0.216f,0.0793f,0.0915f,0.0834f,-0.0928f,-0.0929f,0.0232f,0.0694f,-0.159f,-0.029f,-0.19f,-0.193f,0.0355f,0.13f,0.122f,-0.0724f,0.131f,0.0954f,-0.0327f,0.0227f,0.0475f,-0.0709f,0.0555f,-0.104f,-0.0109f,0.213f,-0.0158f,-0.0612f,-0.145f,-0.00122f,0.101f,-0.117f,-0.0444f,0.0648f,0.0855f,-4.11e-05f,-0.225f,-0.0828f,-0.0137f,0.122f,-0.0617f,-0.23f,0.133f,0.0607f,-0.117f,-0.224f,0.0454f,0.0184f,-0.0655f,-0.136f,0.19f,0.0223f,0.0325f,0.0606f,0.198f,0.0932f,-0.148f,0.0799f,-0.115f,-0.106f,0.00584f,-0.025f,0.134f,-0.0108f,0.204f,-0.0378f,-0.1f,-0.0768f,-0.0798f,-0.0228f,0.0247f,-0.0736f,-0.0497f,0.106f,0.0208f,-0.0352f,-0.00485f,0.0891f,0.0943f,0.218f,-0.141f,-0.00114f,-0.172f,0.218f,-0.132f,0.143f,-0.104f,0.0235f,0.0962f,-0.22f,0.0137f,-0.0314f,0.261f,0.144f,-0.0363f,-0.158f,0.0885f,0.0439f,-0.201f,-0.0133f,-0.0304f,0.0684f,-0.000579f,-0.322f,0.0144f,-0.0868f,-0.0704f,-0.148f,-0.0859f,-0.0534f,0.277f,0.00445f,-0.0683f,-0.00709f,0.0104f,-0.0736f,-0.151f,0.0441f,-0.137f,-0.0129f,-0.137f,-0.113f,0.138f,-9.8e-05f,0.148f,-0.113f,-0.303f,0.128f,-0.115f,0.0877f,0.107f,-0.0827f,0.0897f,-0.065f,-0.324f,0.0183f,0.134f,0.254f,-0.139f,0.0854f,0.117f,-0.016f,-0.201f,0.0405f,0.176f,-0.112f,0.214f,0.000246f,-0.0594f,-0.315f,-0.0331f,0.102f,-0.114f,0.0185f,0.159f,0.0609f,-0.0713f,0.00277f,-0.303f,0.0335f,-0.127f,0.116f,-0.198f,-0.303f,0.0117f,0.0533f,0.201f,0.0185f,0.0911f,0.00372f,0.191f,0.0733f,0.0201f,0.157f,0.0596f,0.0588f,-0.107f,-0.202f,0.0203f,0.0727f,-0.0197f,0.127f,0.0424f,-0.0817f,0.0417f,-0.162f,-0.0345f,-0.0343f,0.0255f,0.0601f,0.0133f,0.0501f,-0.153f,-0.0926f,0.00477f,-0.0651f,-0.213f,-0.0829f,-0.0309f,0.0129f,-0.0421f,-0.148f,-0.191f,-0.0244f,-0.0637f,0.0109f,-0.0742f,0.0381f,0.0677f,-0.118f,-0.0855f,-0.0107f,-0.00351f,0.0677f,-0.00731f,-0.017f,-0.155f,-0.174f,-0.0183f,-0.0679f,-0.0226f,-0.0844f,0.0393f,0.0725f,0.0435f,0.188f,-0.00783f,0.0616f,0.254f,0.127f,0.0713f,-0.0681f,0.0354f,-0.317f,-0.0139f,0.000487f,0.0706f,0.179f,0.0278f,-0.0957f,-0.0443f,-0.0537f,-0.143f,0.00931f,-0.104f,-0.109f,-0.033f,0.000835f,0.0661f,0.0812f,-0.0726f,0.0888f,-0.000246f,0.0129f,-0.0228f,-0.186f,0.122f,-0.0285f,0.00776f,0.0502f,0.0463f,0.108f,-0.0447f,0.0399f,-0.0362f,-0.0779f,-0.0887f,0.0443f,0.0851f,0.11f,0.0578f,-0.148f,0.0838f,-0.136f,-0.0433f,0.0167f,-0.186f,-0.00579f,0.102f,0.0907f,0.0742f,0.205f,0.204f,-0.156f,-0.0503f,-0.06f,0.0303f,-0.161f,-0.234f,-0.0404f,0.0566f,-0.00166f,-0.15f,0.124f,0.224f,0.224f,0.125f,-0.179f,-0.179f,-0.0728f,0.0782f,0.151f,-0.139f,0.232f,0.141f,-0.0106f,-0.119f,-0.0966f,-0.138f,0.00336f,0.258f,-0.0883f,-0.0582f,0.126f,-0.0231f,0.214f,0.0904f,0.0447f,0.0519f,-0.188f,-0.0306f,-0.117f,0.0523f,-0.0238f,-0.18f,0.0664f,-0.161f,0.0247f,-0.0137f,0.0923f,0.136f,-0.107f,-0.139f,0.11f,0.00142f,-0.113f,-0.0616f,0.216f,0.00891f,0.257f,-0.244f,-0.091f,-0.314f,-0.177f,-0.12f,-0.105f,-0.0821f,-0.262f,-0.0755f,-0.186f,0.0358f,-0.0542f,0.00464f,0.134f,0.0301f,0.116f,-0.086f,-0.159f,-0.193f,0.026f,-0.0295f,0.208f,-0.0678f,-0.177f,-0.123f,0.353f,-0.224f,-0.107f,0.167f,-0.0402f,-0.0808f,0.0602f,0.07f,-0.0332f,0.0174f,0.0235f,0.0744f,-0.0528f,0.11f,0.307f,0.0959f,-0.183f,-0.0619f,0.187f,0.134f,-0.0892f,-0.025f,0.191f,-0.153f,0.177f,0.117f,0.31f,-0.114f,-0.0389f,-0.0517f,0.124f,-0.0784f,0.0376f,0.153f,-0.131f,-0.05f,-0.00914f,0.0932f,-0.22f,0.03f,-0.0918f,-0.115f,0.0797f,-0.137f,-0.0499f,0.0648f,0.00701f,0.0828f,0.00521f,-0.0446f,0.0513f,0.0498f,0.039f,-0.0613f,-0.00105f,-0.0418f,-0.113f,0.151f,-0.00476f,-0.228f,-0.125f,0.167f,0.0729f,0.0082f,0.0153f,-0.197f,-0.0533f,0.0474f,-0.0869f,0.0768f,-0.0915f,-0.0711f,0.0333f,0.0113f,0.145f,0.373f,-0.0413f,0.0259f,-0.138f,-0.161f,-0.21f,0.0769f,-0.0922f,-0.0416f,-0.048f,-0.157f,-0.122f,0.037f,-0.0173f,-0.117f,-0.084f,0.293f,0.0163f,0.331f,-0.028f,-0.0439f,0.00331f,-0.0266f,-0.0248f,0.00581f,-0.0448f,0.235f,-0.079f,0.0152f,-0.18f,-0.117f,-0.0141f,-0.192f,-0.0151f,0.0907f,0.09f,0.217f,-0.0867f,0.086f,0.163f,0.106f,0.0624f,0.0377f,0.0604f,0.0848f,0.0133f,0.0297f,0.187f,-0.093f,-0.0496f,0.129f,-0.0097f,0.0638f,-0.0813f,0.205f,-0.0841f,0.124f,0.00571f,-0.0275f,0.00184f,-0.0991f,-0.00932f,0.0148f,0.0886f,-0.023f,0.00641f,-0.0672f,-0.13f,-0.0319f,-0.0704f,-0.0791f,-0.0616f,-0.146f,-0.3f,-0.0967f,-0.195f,0.151f,0.166f,-0.0279f,0.0783f,0.0116f,0.129f,0.133f,-0.0793f,-0.068f,-0.06f,0.0789f,0.0228f,-0.067f,0.00852f,-0.0448f,-0.0719f,-0.186f,0.0621f,-0.0238f,0.0814f,0.152f,0.0221f,-0.00287f,-0.213f,0.0472f,0.0371f,-0.0399f,0.126f,-0.0269f,0.0452f,0.172f,-0.139f,-0.0867f,-0.0281f,0.0726f,-0.0658f,0.072f,-0.26f,0.062f,-0.00948f,0.0537f,0.159f,-0.0379f,0.195f,0.105f,-0.124f,0.158f,-0.128f,0.0717f,0.112f,0.192f,0.0939f,0.00876f,0.239f,-0.0398f,0.217f,0.153f,-0.0365f,-0.202f,0.154f,0.164f,-0.245f,-0.0526f,0.0159f,-0.1f,0.196f,0.146f,0.0581f,-0.0798f,-0.142f,-0.11f,0.133f,0.0243f,0.195f,0.0148f,-0.0358f,0.145f,0.23f,-0.0415f,-0.11f,0.258f,0.137f,0.12f,0.0154f,-0.0912f,0.00137f,-0.001f,0.0612f,-0.0109f,0.0968f,0.154f,0.0597f,0.136f,-0.2f,0.145f,0.115f,-0.0231f,0.131f,-0.166f,-0.0933f,0.0843f,-0.0174f,-0.141f,0.0218f,0.222f,-0.172f,-0.0938f,0.075f,0.0678f,0.25f,0.134f,0.0101f,-0.0518f,0.0342f,-0.17f,0.0126f,-0.0987f,0.261f,0.301f,0.0575f,-0.0657f,0.0901f,0.026f,-0.0384f,-0.126f,-0.0223f,0.142f,-0.109f,-0.00987f,0.0689f,0.0763f,0.0135f,0.104f,-0.155f,0.0728f,-0.102f,0.0566f,-0.0687f,0.396f,-0.0768f,0.0504f,0.14f,-0.0478f,-0.0475f,0.173f,0.0533f,-0.055f,-0.0176f,0.0301f,0.0981f,-0.135f,-0.0517f,0.049f,0.0786f,0.0615f,0.489f,0.266f,0.0113f,0.0374f,0.116f,-0.0183f,0.0928f,0.237f,-0.0105f,-0.0721f,-0.00517f,-0.0512f,0.0138f,0.259f,-0.21f,-0.0224f,-0.05f,0.0114f,-0.19f,-0.0359f,-0.094f,-0.065f,-0.146f,0.155f,-0.0428f,0.00968f,0.139f,-0.222f,0.105f,-0.0559f,-0.0656f,-0.0999f,0.0471f,-0.0756f,-0.181f,0.167f,0.0885f,-0.105f,0.0334f,0.0785f,0.0482f,0.102f,-0.16f,0.135f,0.17f,0.116f,-0.233f,0.0884f,0.00745f,0.233f,0.0947f,-0.157f,0.065f,-0.0399f,0.215f,0.0488f,-0.0308f,0.154f,-0.223f,0.208f,-0.0609f,0.051f,-0.216f,-0.264f,-0.0785f,0.035f,-0.202f,0.0417f,0.257f,-0.00629f,0.109f,0.121f,-0.0476f,-0.109f,0.0545f,-0.0328f,0.118f,-0.0993f,-0.0776f,-0.359f,0.166f,-0.106f,-0.174f,-0.13f,0.0446f,-0.102f,0.0165f,0.0834f,-0.166f,0.138f,0.0986f,-0.104f,0.202f,-0.288f,-0.0538f,-0.0548f,-0.172f,-0.144f,-0.0774f,-0.0539f,-0.0105f,-0.208f,0.0729f,0.279f,-0.00609f,0.0827f,-0.0317f,-0.0621f,0.14f,-0.293f,-0.00616f,0.1f,0.277f,-0.428f,-0.0711f,0.0903f,0.348f,0.0322f,0.0747f,-0.119f,0.0362f,0.295f,0.17f,0.0528f,-0.0129f,-0.0204f,0.0149f,-0.133f,0.0388f,-0.00999f,-0.174f,0.0874f,0.0894f,0.0326f,-0.0877f,-0.0704f,-0.138f,0.306f,-0.00147f,-0.196f,0.0637f,-0.0746f,-0.155f,-0.00126f,-0.155f,-0.144f,0.0618f,0.041f,0.248f,-0.13f,-0.232f,-0.0599f,-0.134f,0.118f,0.00792f,-0.106f,-0.172f,0.00104f,-0.0143f,0.102f,-0.0275f,-0.0533f,-0.0449f,0.0745f,-0.123f,0.105f,-0.0315f,-0.0286f,-0.0932f,0.184f,0.0192f,-0.316f,-0.204f,-0.0488f,-0.0679f,-0.0494f,0.0444f,-0.131f,0.219f,0.00234f,0.0244f,-0.0436f,-0.101f,-0.278f,0.178f,0.0326f,0.116f,0.0375f,0.0259f,0.0416f,-0.00384f,-0.0411f,-0.0964f,-0.00765f,0.0727f,-0.0608f,0.174f,0.132f,-0.0211f,0.066f,-0.331f,0.0391f,0.0533f,-0.0878f,-0.251f,0.0543f,0.0935f,0.00601f,0.000456f,0.0692f,-0.0757f,0.0489f,0.374f,-0.0477f,0.123f,-0.0254f,-0.0264f,0.282f,-0.0344f,-0.0457f,-0.223f,-0.0923f,-0.157f,0.1f,0.0338f,0.0435f,0.11f,0.236f,0.228f,0.0295f,0.0567f,0.0623f,-0.0329f,0.0636f,-0.227f,-0.0292f,-0.00147f,-0.0138f,0.125f,-0.0356f,0.0545f,0.0224f,-0.137f,0.0267f,0.0214f,-0.0113f,0.0587f,0.194f,0.0562f,0.109f,0.205f,-0.0119f,0.238f,0.164f,-0.0778f,-0.234f,0.124f,0.172f,-0.176f,0.0203f,-0.0431f,-0.197f,0.0834f,0.149f,0.115f,-0.0439f,-0.212f,-0.074f,0.163f,-0.0341f,0.0886f,-0.158f,0.188f,0.0113f,0.0686f,-0.0221f,0.0455f,-0.0162f,0.00745f,-0.0396f,-0.189f,-0.105f,-0.114f,-0.0449f,-0.0254f,-0.0807f,0.0819f,-0.0415f,-0.0544f,0.104f,-0.0548f,0.186f,-0.154f,-0.167f,0.0107f,0.19f,0.0475f,-0.0191f,0.0397f,0.313f,-0.186f,-0.0866f,0.1f,-0.123f,-0.153f,0.0582f,-0.108f,0.162f,0.0521f,-0.0651f,-0.044f,0.173f,0.313f,0.00689f,0.143f,0.105f,0.134f,-0.168f,-0.126f,0.247f,-0.000658f,0.00577f,-0.0764f,-0.216f,-0.18f,0.146f,0.0526f,0.0248f,0.129f,-0.154f,0.00592f,-0.0124f,0.0812f,0.0201f,0.0392f,-0.0685f,0.0938f,-0.0154f,-0.158f,0.223f,-0.0835f,0.0975f,0.0922f,-0.0123f,0.00731f,-0.0535f,-0.157f,-0.136f,-0.206f,-0.174f,0.0726f,0.128f,-0.0145f,0.0245f,0.202f,-0.073f,0.237f,0.0936f,-0.123f,-0.232f,-0.0314f,-0.0389f,0.228f,-0.165f,-0.0342f,-0.0904f,0.0456f,-0.115f,-0.122f,0.371f,-0.0565f,0.0639f,-0.181f,-0.0123f,-0.145f,-0.0229f,0.0301f,-0.264f,0.19f,0.0255f,-0.104f,-0.0707f,-0.0289f,0.0152f,-0.027f,-0.0892f,0.0705f,0.000934f,0.0513f,-0.0982f,0.0986f,0.00541f,0.128f,-0.103f,-0.162f,0.0805f,-0.018f,-0.0654f,-0.0947f,-0.0835f,-0.0974f,0.0228f,0.0473f,0.314f,-0.0989f,-0.0453f,0.0765f,0.0626f,0.152f,0.0305f,-0.0253f,0.133f,-0.0206f,-0.00702f,-0.0165f,0.0788f,0.00986f,0.0695f,0.0775f,0.0447f,-0.0266f,-0.103f,0.0485f,0.00481f,0.0524f,-0.0123f,0.0694f,-0.0301f,0.16f,-0.151f,0.0525f,0.0968f,-0.0629f,0.199f,-0.169f,0.00295f,-0.0463f,0.166f,0.0202f,0.0952f,0.0207f,0.169f,-0.122f,-0.033f,0.0582f,-0.0339f,0.0111f,0.0535f,0.0114f,-0.0437f,0.0361f,-0.0986f,0.0633f,-0.0377f,0.155f,0.0821f,-0.0788f,-0.187f,-0.134f,-0.106f,0.108f,0.0459f,-0.00187f,0.0471f,0.0438f,0.00518f,-0.097f,-0.199f,0.317f,-0.0433f,0.081f,-0.115f,-0.0508f,0.252f,0.167f,-0.00615f,-0.132f,0.174f,0.206f,0.0454f,-0.094f,0.122f,-0.17f,-0.0762f,0.0265f,-0.0315f,0.0538f,-0.0319f,-0.209f,0.191f,0.0149f,-0.0251f,0.0618f,-0.162f,-0.0858f,0.354f,-0.191f,-0.0537f,0.0486f,-0.12f,0.123f,-0.0398f,0.144f,-0.0276f,0.101f,-0.0634f,-0.179f,0.00674f,-0.102f,-0.0172f,-0.0319f,-0.0495f,0.0217f,0.00361f,-0.0194f,-0.0574f,0.0358f,0.0998f,0.0445f,-0.031f,0.0792f,-0.017f,-0.0391f,0.173f,-0.173f,-0.0878f,0.0138f,-0.12f,-0.214f,-0.0697f,-0.168f,0.0478f,0.0693f,-0.0428f,-0.0111f,0.107f,0.178f,-0.0692f,-0.00733f,0.0472f,0.159f,-0.0508f,-0.097f,0.0836f,0.0812f,0.0102f,-0.0913f,-0.0762f,0.101f,0.176f,-0.0158f,0.0235f,-0.088f,0.00973f,-0.0213f,-0.0584f,0.275f,0.162f,-0.0683f,0.17f,-0.0246f,0.0983f,0.135f,0.0607f,-0.0674f,-0.0235f,-0.0478f,-0.0273f,-0.116f,0.114f,0.164f,-0.0671f,0.0154f,-0.013f,0.246f,-0.131f,-0.253f,-0.0682f,-0.18f,0.0743f,0.0661f,-0.502f,0.00675f,-0.0203f,0.0688f,-0.00215f,0.168f,0.0846f,-0.0227f,-0.291f,-0.158f,0.0672f,-0.0276f,0.034f,-0.129f,0.213f,-0.111f,-0.156f,0.0574f,0.0837f,-0.0226f,-0.108f,0.233f,0.031f,0.0365f,0.132f,-0.0352f,-0.0205f,0.197f,-0.0164f,-0.11f,0.156f,0.0858f,-0.119f,0.0378f,-0.0122f,0.222f,-0.00153f,-0.126f,0.168f,0.115f,0.164f,-0.0958f,0.395f,0.0982f,-0.0923f,0.0395f,0.0169f,-0.0224f,-0.0601f,-0.0849f,-0.00582f,-0.0483f,-0.00429f,-0.0217f,0.0999f,-0.11f,0.241f,-0.0467f,-0.153f,0.165f,0.0604f,-0.097f,0.0148f,0.0377f,0.0453f,0.369f,0.138f,0.169f,-0.0457f,-0.0341f,0.221f,0.0469f,0.0597f,-0.0199f,0.247f,0.105f,0.299f,-0.0607f,-0.182f,-0.074f,0.0244f,0.0431f,-0.0547f,-0.258f,0.0182f,0.118f,0.0731f,0.0907f,-0.064f,0.133f,-0.0853f,0.107f,0.0785f,0.101f,0.147f,-0.0857f,-0.0924f,0.195f,-0.00128f,0.214f,-0.0227f,-0.015f,-0.094f,-0.18f,0.163f,-0.0355f,-0.127f,-0.0256f,0.0542f,-0.0379f,-0.192f,0.00124f,-0.142f,-0.197f,0.0757f,-0.0727f,0.0302f,0.000545f,-0.38f,0.0101f,0.00785f,0.0796f,-0.0709f,-0.0167f,-0.0639f,-0.0789f,0.215f,0.221f,0.0136f,0.0446f,-0.159f,-0.00298f,-0.182f,-0.171f,0.285f,0.187f,-0.139f,-0.0322f,0.149f,-0.0233f,0.0854f,-0.0186f,-0.073f,0.0575f,-0.108f,0.0274f,0.00488f,0.375f,-0.174f,-0.159f,0.19f,0.0451f,-0.0449f,-0.103f,-0.0332f,0.162f,-0.0491f,-0.00222f,-0.0794f,0.222f,-0.241f,-0.0271f,0.367f,-0.0251f,0.0553f,0.0919f,0.0829f,0.181f,0.202f,-0.296f,0.0872f,0.0113f,0.249f,-0.0187f,0.0781f,0.381f,-0.139f,-0.0725f,0.0971f,-0.093f,0.0168f,-0.122f,-0.0409f,0.0426f,-0.105f,-0.0216f,-0.00581f,-0.257f,-0.257f,0.187f,-0.138f,0.0424f,0.00589f,0.177f,0.0145f,0.0128f,0.0947f,0.0958f,0.00427f,-0.0544f,-0.0588f,-0.154f,-0.19f,-0.0413f,-0.0547f,-0.0629f,-0.0768f,-0.0494f,0.12f,0.0207f,0.261f,0.048f,-0.0241f,0.0589f,0.00395f,0.0581f,-0.102f,0.142f,0.0816f,0.201f,-0.0018f,-0.275f,0.069f,-0.0554f,0.131f,-0.0991f,0.16f,-0.144f,-0.0177f,0.343f,0.000882f,-0.188f,0.21f,-0.137f,-0.0566f,0.0559f,-0.0107f,-0.156f,-0.197f,0.0685f,0.143f,-0.0388f,-0.107f,-0.0172f,0.0475f,0.0786f,0.162f,0.0902f,0.0332f,-0.113f,-0.0914f,-0.04f,-0.103f,0.0418f,-0.0791f,-0.0332f,0.362f,-0.119f,0.0325f,-0.213f,0.0347f,-0.349f,-0.0987f,0.0267f,-0.00203f,-2.08e-05f,-0.11f,0.189f,0.215f,-0.0173f,0.111f,-0.111f,0.0296f,-0.103f,0.0661f,-0.0761f,-0.246f,-0.0448f,0.073f,-0.165f,0.0405f,0.0994f,-0.0729f,-0.0231f,-0.0288f,-0.236f,-0.306f,-0.102f,0.164f,0.177f,0.0506f,0.0384f,-0.049f,0.187f,-0.0454f,0.0162f,-0.0751f,-0.227f,0.109f,-0.0264f,-0.0792f,-0.029f,0.0268f,-0.0873f,0.0272f,-0.0127f,-0.0994f,0.103f,-0.0603f,0.104f,0.123f,-0.0258f,0.0551f,-0.158f,0.0384f,0.303f,0.069f,-0.123f,-0.0634f,0.2f,0.0657f,0.171f,0.0634f,-0.00468f,0.0627f,-0.0859f,0.241f,0.084f,0.233f}; +float backbone__model2_dp2_pw_bias[64] = {0.217f,0.0817f,-0.0332f,0.028f,0.0791f,-0.0234f,-0.0149f,-0.0791f,-0.115f,0.0661f,-0.0112f,0.0528f,-0.0149f,-0.0034f,0.0364f,-0.0214f,-0.0176f,-0.0806f,0.0942f,0.00853f,0.00797f,-0.101f,0.00112f,0.0201f,0.0547f,0.14f,-0.139f,-0.0232f,0.0161f,-0.214f,0.051f,-0.14f,0.034f,0.0134f,0.0319f,-0.158f,0.0264f,-0.104f,0.000625f,-0.0661f,0.0559f,-0.126f,0.0499f,0.0407f,-0.0374f,-0.014f,-0.0836f,-0.213f,0.0469f,0.0439f,0.139f,0.0202f,-0.0157f,0.0017f,-0.0381f,0.028f,-0.0644f,0.0324f,-0.131f,-0.0474f,0.102f,-0.0658f,-0.0249f,-0.146f}; +float backbone__model2_dp2_dw_weight[64*1*3*3] = {-0.549f,-0.343f,0.601f,0.679f,0.305f,-0.0271f,0.106f,0.329f,-0.0826f,0.649f,-0.182f,-0.195f,0.0922f,-0.0489f,0.113f,-0.413f,0.449f,-0.0254f,0.302f,-0.333f,-0.268f,0.612f,-0.0924f,-0.245f,0.519f,0.358f,-0.773f,0.0282f,-0.385f,-0.871f,-0.496f,0.00401f,-1.02f,0.259f,0.692f,-0.321f,-1.82f,-0.301f,-0.0552f,0.0417f,-0.00546f,0.0613f,0.148f,0.103f,0.722f,-0.263f,0.911f,0.468f,-0.0821f,0.442f,-0.461f,0.574f,-0.257f,0.569f,0.479f,0.182f,-0.308f,-0.318f,-0.523f,0.326f,-0.425f,0.403f,-0.0869f,-0.394f,0.102f,-0.12f,0.586f,0.497f,0.407f,-0.578f,-0.197f,-0.398f,-0.269f,0.184f,-0.279f,-0.117f,-0.111f,0.72f,-0.301f,0.318f,-0.632f,0.101f,0.384f,-0.422f,0.663f,0.181f,0.643f,-0.199f,-0.0334f,-0.113f,-0.914f,0.843f,-0.411f,-0.226f,-0.644f,0.16f,-1.18f,0.372f,0.21f,-0.583f,-0.341f,-0.328f,-0.0125f,0.19f,0.621f,0.381f,0.385f,0.425f,0.521f,-0.0212f,0.608f,0.604f,-0.569f,-0.379f,0.143f,0.274f,0.797f,0.524f,0.0485f,0.172f,0.156f,-0.317f,-0.393f,0.337f,-0.419f,0.593f,0.114f,-0.371f,0.581f,-0.0871f,0.49f,-0.321f,0.302f,-0.189f,-0.274f,-0.194f,-0.225f,-0.719f,-0.224f,-0.193f,0.194f,-0.781f,0.167f,0.67f,0.177f,0.0868f,0.0968f,-0.395f,-0.508f,-0.587f,-0.495f,-0.161f,-0.661f,-0.125f,-1.03f,-0.619f,-0.335f,0.475f,-0.738f,0.642f,0.196f,0.0969f,-0.721f,-0.415f,-0.0751f,-0.182f,0.116f,0.214f,0.136f,0.637f,-0.163f,0.481f,0.496f,-0.69f,-0.121f,0.0948f,-0.402f,-0.423f,0.296f,0.488f,0.939f,0.214f,-0.228f,0.101f,0.611f,-0.203f,-0.316f,0.0153f,-0.367f,0.314f,0.0388f,0.64f,-0.454f,-0.199f,0.123f,0.125f,0.112f,-0.464f,-0.168f,1.24f,0.129f,0.33f,-0.191f,-0.0629f,0.127f,-0.062f,0.328f,-0.828f,-0.603f,0.108f,0.366f,-0.425f,-0.545f,0.379f,-0.573f,-0.046f,0.0581f,1.17f,0.0205f,-0.399f,-0.213f,-0.709f,0.0966f,0.656f,-0.0774f,0.375f,0.509f,-0.356f,0.195f,-0.269f,0.266f,0.148f,-0.119f,-0.101f,0.555f,-0.436f,0.951f,-0.323f,1.38f,0.356f,0.392f,0.756f,-0.566f,0.0873f,-0.696f,0.241f,-0.449f,0.179f,-0.445f,-0.0891f,-0.526f,0.286f,-0.176f,0.316f,-0.204f,-0.0515f,0.274f,-0.603f,-0.296f,0.956f,0.342f,-0.33f,-0.358f,0.0763f,-0.258f,-0.554f,-0.413f,-0.111f,0.393f,-0.234f,0.504f,-0.141f,-0.868f,0.846f,0.466f,-0.637f,1.05f,0.0734f,-1.37f,-0.377f,-0.148f,0.215f,0.0941f,0.686f,-0.22f,-0.0539f,0.195f,0.509f,0.188f,0.366f,-0.185f,-0.416f,-0.144f,-0.407f,0.32f,0.299f,1.31f,0.218f,0.31f,-1.5f,0.015f,-0.633f,-0.142f,-0.168f,-0.338f,-0.674f,-0.333f,-0.0785f,-0.651f,0.345f,-0.782f,0.225f,-0.765f,-0.584f,-0.0562f,0.394f,-0.266f,0.177f,-0.22f,-0.24f,0.612f,0.0403f,0.00233f,0.266f,0.361f,0.174f,-0.115f,-0.697f,-0.373f,-0.484f,-0.234f,-0.0277f,0.452f,0.964f,0.643f,0.333f,0.276f,0.471f,-0.157f,-0.692f,-0.385f,-0.656f,1.7f,-0.302f,-0.913f,0.0413f,0.0253f,-0.839f,-0.134f,0.501f,-0.0949f,0.2f,0.0712f,0.221f,-1.53f,-0.254f,-0.118f,-0.178f,0.39f,0.375f,0.161f,0.199f,-0.476f,-1.3f,-0.424f,-0.336f,-0.381f,0.241f,-0.558f,-0.53f,0.375f,0.474f,0.269f,0.287f,-1.26f,0.175f,-0.194f,-0.402f,0.00807f,0.282f,-0.201f,0.102f,0.204f,0.242f,-0.495f,-0.16f,-0.727f,-0.761f,0.0272f,-0.54f,-0.356f,0.162f,0.236f,-0.24f,-0.311f,-0.45f,0.216f,-0.0409f,0.462f,-0.559f,-0.665f,-0.308f,0.694f,-0.0695f,0.147f,0.514f,0.653f,-0.276f,-0.134f,0.304f,0.0429f,0.239f,-0.144f,-0.678f,0.372f,-0.737f,-0.1f,0.201f,0.174f,-0.103f,0.024f,-0.18f,0.259f,0.0687f,-0.334f,0.0031f,-0.281f,0.0471f,-0.188f,-0.284f,0.489f,-0.753f,0.838f,0.467f,-0.0839f,-0.571f,-0.322f,0.182f,0.247f,0.00245f,-0.0213f,-0.539f,-0.384f,0.251f,-0.147f,-0.0344f,-0.352f,-0.845f,0.236f,-0.279f,-0.431f,0.00194f,0.0552f,0.138f,-0.429f,0.247f,-0.508f,-0.309f,-0.346f,-0.631f,0.747f,0.0543f,0.717f,-0.714f,0.657f,0.177f,0.0892f,-0.272f,1.32f,-0.0267f,0.668f,-0.442f,-0.295f,0.0632f,0.209f,0.609f,-0.172f,0.256f,0.496f,-0.855f,-0.17f,0.138f,0.104f,-0.0575f,-0.302f,-0.183f,0.268f,0.35f,-0.283f,0.412f,-0.917f,0.0116f,-0.518f,-0.436f,-0.303f,-1.27f,0.478f,-0.791f,-0.752f,-0.867f,-0.75f,0.0747f,0.452f,0.281f,0.0767f,-0.159f,-0.0449f,0.321f,-0.221f,0.248f,-1.06f,-0.738f,0.538f,-0.133f,-0.288f,0.441f,0.362f,0.141f,-0.27f,-0.373f,-0.82f,-0.024f,-0.106f,-0.359f,0.483f,1.45f,0.312f,0.347f,0.555f,0.255f,-0.141f,-0.483f,-0.254f,-0.646f,-1.05f,-0.303f,-0.3f,0.0485f,-0.0188f,-0.141f,-0.149f,0.664f,0.531f,-0.3f,0.0154f,0.139f,-0.512f,0.137f,-0.0779f,-0.135f,0.338f,0.281f,-0.2f,0.48f,-0.354f,0.299f,-0.0919f,-0.182f,-0.454f,0.129f,-0.415f,-0.204f,-0.482f,-0.264f,-0.192f,0.214f,-0.155f,0.2f,-0.966f,-0.323f,-0.0215f,0.423f,-0.143f,0.178f,-0.294f,-0.0441f}; +float backbone__model2_dp2_dw_bias[64] = {-0.0572f,0.124f,-0.0891f,0.472f,0.295f,-0.0776f,-0.442f,-0.0607f,-0.0929f,0.12f,0.497f,0.321f,-0.707f,-0.186f,-0.593f,-0.141f,-0.147f,0.136f,-0.131f,-0.611f,0.11f,-0.156f,-0.0645f,0.105f,-0.0498f,0.147f,-0.15f,-0.0343f,-0.149f,-0.141f,0.0605f,0.00992f,0.41f,-0.534f,-0.277f,0.829f,-0.711f,0.118f,0.579f,-0.228f,0.366f,0.4f,0.00502f,0.0483f,-0.347f,0.0212f,0.00614f,-0.358f,-0.0604f,-0.0324f,0.19f,-0.0743f,-0.33f,-0.118f,-0.0351f,-0.523f,0.187f,-1.12f,0.624f,-0.0207f,0.302f,0.532f,-0.396f,0.0455f}; +float backbone__model3_dp1_pw_weight[64*64*1*1] = {0.0836f,0.0325f,0.0804f,0.071f,0.0368f,-0.07f,-0.137f,-0.118f,-0.114f,0.037f,0.0359f,-0.0489f,-0.00652f,0.00635f,0.0172f,-0.101f,-0.0014f,0.0409f,0.119f,0.0777f,-0.0879f,0.0116f,0.00303f,-0.101f,-0.0231f,-0.0301f,0.189f,-0.00755f,0.336f,0.0604f,0.0999f,0.0947f,0.121f,0.172f,-0.0226f,0.0446f,0.0883f,0.0332f,-0.0398f,0.103f,-0.045f,0.00988f,0.101f,0.0325f,-0.0819f,-0.00411f,0.00965f,-0.311f,0.083f,0.00534f,0.173f,-0.0566f,0.0059f,-0.0909f,0.0141f,-0.0367f,0.00214f,0.0868f,-0.0663f,-0.0148f,-0.193f,-0.235f,-0.138f,0.0662f,-0.0894f,-0.00932f,0.0481f,0.0833f,0.236f,-0.235f,-0.192f,0.0367f,-0.0733f,-0.0955f,-0.04f,0.0973f,-0.0524f,0.003f,0.0654f,0.183f,0.0399f,0.0118f,0.131f,-0.0197f,-0.0315f,0.0222f,0.0261f,-0.0391f,0.127f,-0.0956f,0.1f,-0.159f,0.00838f,0.0189f,0.0557f,0.037f,-0.0431f,-0.011f,0.138f,-0.0646f,-0.0814f,0.0908f,-0.00707f,0.0443f,0.0179f,0.105f,-0.154f,0.0657f,-0.0282f,-0.127f,-0.1f,-0.0418f,-0.0417f,-0.204f,0.153f,0.0243f,-0.00259f,-0.129f,0.0441f,0.0469f,-0.104f,0.0215f,-0.0249f,-0.098f,-0.0541f,0.203f,0.0517f,0.22f,-0.0422f,0.0309f,-0.00882f,-0.0291f,-0.0925f,-0.0123f,0.134f,-0.0292f,-0.128f,-0.0423f,-0.0656f,-0.283f,-0.0983f,0.0317f,-0.356f,-0.0252f,-0.0058f,-0.121f,0.182f,-0.158f,0.0205f,0.0373f,0.0459f,0.208f,-0.0868f,-0.179f,0.0414f,0.0558f,-0.0344f,-0.0555f,-0.0666f,0.135f,-0.13f,0.117f,0.0853f,0.0167f,-0.106f,0.0967f,-0.128f,-0.137f,-0.0283f,0.00711f,-0.021f,0.0431f,0.0683f,-0.234f,0.0045f,-0.0752f,-0.12f,0.0706f,-0.0453f,-0.0782f,0.0648f,-0.0502f,-0.0273f,-0.144f,0.108f,-0.123f,-0.156f,0.188f,-0.0545f,-0.0279f,-0.151f,-0.225f,-0.00159f,0.0601f,0.0191f,0.103f,0.0644f,-0.109f,-0.141f,-0.022f,-0.0078f,-0.199f,0.156f,-0.0793f,0.0332f,-0.0705f,0.14f,0.072f,0.0855f,0.278f,0.0911f,0.00939f,0.022f,-0.104f,-0.0566f,0.016f,-0.158f,0.154f,0.105f,-0.00663f,0.12f,-0.0588f,0.0633f,-0.0259f,0.373f,-0.0765f,0.0728f,-0.0597f,0.204f,0.0234f,0.0553f,0.0349f,0.0327f,0.0284f,0.107f,0.0833f,-0.125f,-0.0546f,0.0114f,0.14f,0.0146f,-0.021f,-0.0545f,-0.0955f,-0.118f,0.0572f,0.168f,0.132f,0.115f,-0.0879f,-0.0941f,0.0444f,-0.0565f,0.0488f,0.108f,-0.036f,-0.0427f,0.118f,-0.013f,-0.00939f,0.0405f,0.000532f,0.0571f,0.0632f,0.0596f,0.0456f,-0.0257f,0.0542f,-0.0724f,0.0108f,-0.212f,-0.0463f,-0.0228f,-0.0334f,-0.086f,-0.123f,0.0448f,-0.0805f,0.0255f,-0.0862f,0.0296f,0.115f,0.138f,-0.00456f,-0.101f,-0.0586f,0.083f,0.0998f,-0.0901f,0.0745f,0.087f,-0.151f,-0.0274f,0.187f,0.134f,-0.0965f,-0.00252f,-0.0622f,-0.101f,0.288f,0.0305f,-0.178f,0.169f,0.042f,-0.0306f,0.153f,-0.141f,-0.0932f,0.0965f,0.124f,0.142f,0.000841f,0.0116f,-0.0833f,0.116f,-0.0408f,0.163f,0.051f,0.0462f,0.118f,0.101f,-0.0406f,-0.134f,-0.0207f,0.102f,0.0559f,-0.0248f,0.0366f,0.0151f,-0.0884f,-0.14f,0.0845f,-0.00322f,-0.0257f,-0.127f,0.0996f,-0.00351f,0.00906f,-0.0173f,0.0781f,0.143f,0.0476f,-0.0388f,0.108f,0.0638f,0.0377f,-0.0315f,0.0995f,0.0175f,0.0108f,-0.114f,-0.0828f,-0.0611f,0.167f,-0.0016f,-0.0364f,0.0283f,0.0149f,0.00713f,-0.0873f,0.0303f,0.126f,0.0119f,-0.0546f,-0.0141f,0.0817f,0.0076f,0.0396f,0.0413f,-0.0608f,0.11f,-0.0301f,0.00716f,0.00397f,-0.058f,0.398f,-0.0271f,-0.113f,-0.0695f,-0.0371f,0.0126f,-0.0973f,0.0536f,-0.0543f,0.0461f,-0.0573f,0.0653f,0.041f,-0.1f,-0.00909f,-0.105f,-0.024f,-0.00255f,-0.201f,-0.134f,0.162f,0.116f,-0.169f,0.0909f,0.0454f,-0.0703f,-0.0406f,-0.0633f,0.00924f,-0.0929f,-0.0841f,-0.0572f,-0.224f,-0.159f,-0.0508f,0.233f,0.0812f,-0.0672f,0.0733f,-0.0204f,0.167f,-0.0547f,-0.0225f,-0.0245f,0.0805f,-0.109f,0.203f,0.0673f,0.0124f,0.0469f,0.0608f,-0.066f,0.214f,-0.297f,-0.0505f,0.104f,0.202f,-0.137f,-0.0143f,0.012f,0.177f,-0.0584f,0.103f,0.175f,-0.0405f,0.0579f,-0.0245f,0.0972f,-0.00286f,-0.175f,-0.00573f,0.0258f,0.135f,0.00766f,-0.123f,-0.077f,-0.0371f,0.00696f,0.0504f,0.178f,-0.155f,-0.122f,-0.0424f,-0.107f,-0.0266f,0.0668f,-0.00845f,0.0881f,-0.319f,0.0465f,0.0962f,0.0871f,0.0556f,-0.0813f,0.0538f,0.156f,0.0521f,0.0661f,-0.0973f,-0.0987f,-0.0521f,0.0544f,0.0429f,-0.0679f,-0.25f,0.165f,-0.0155f,0.0226f,-0.0151f,0.0523f,0.0434f,0.0504f,0.0147f,0.113f,-0.107f,0.0162f,-0.0204f,0.0234f,0.0566f,0.0361f,-0.138f,-0.45f,0.00335f,-0.178f,-0.124f,-0.243f,0.0176f,-0.109f,-0.0106f,-0.169f,0.0413f,-0.0194f,-0.11f,-0.0203f,0.136f,0.125f,-0.00228f,-0.0392f,-0.0603f,-0.0897f,0.107f,-0.0871f,0.0185f,0.0472f,0.0241f,-0.0457f,-0.0688f,-0.015f,0.00411f,0.019f,-0.00918f,-0.185f,-0.0659f,-0.0194f,-0.0779f,0.00495f,-0.00984f,0.172f,0.0492f,-0.0274f,0.0474f,0.0186f,0.0256f,0.129f,0.0433f,-0.127f,-0.106f,0.0502f,0.0172f,0.033f,0.0019f,0.112f,-0.13f,0.0836f,0.00344f,-0.176f,-0.0778f,0.0332f,0.152f,0.0867f,0.0161f,-0.00772f,-0.233f,0.266f,0.0842f,-0.00112f,0.0689f,-0.015f,-0.0414f,-0.00995f,-0.0153f,0.0415f,0.0217f,0.0266f,0.124f,0.02f,-0.048f,-0.134f,-0.0114f,-0.00633f,0.0901f,-0.0495f,4.12e-05f,-0.0584f,0.00893f,0.0995f,0.191f,-0.0316f,-0.0447f,0.154f,-0.0351f,0.201f,-0.169f,0.193f,-0.135f,0.025f,0.0805f,-0.123f,0.191f,0.124f,0.0233f,-0.195f,-0.0828f,-0.189f,-0.171f,0.125f,-0.00374f,-0.0684f,0.0861f,-0.0161f,0.119f,0.0916f,-0.159f,-0.00587f,0.121f,-0.0317f,0.201f,-0.079f,-0.111f,0.147f,0.0799f,0.0466f,0.0227f,0.0875f,-0.027f,-0.0132f,0.0837f,0.15f,-0.0595f,-0.0408f,0.0196f,0.0814f,0.157f,0.122f,-0.0893f,-0.0844f,0.228f,0.123f,0.0303f,-0.00545f,0.289f,-0.0839f,-0.0427f,-0.177f,0.0955f,0.0722f,0.131f,-0.0171f,0.0467f,-0.0213f,0.118f,0.0893f,0.0127f,0.0159f,-0.0623f,-0.0687f,0.0976f,-0.209f,-0.132f,0.00439f,-0.0215f,-0.0558f,0.0357f,0.0463f,-0.221f,0.014f,0.0802f,-0.0273f,0.135f,0.131f,-0.05f,0.0338f,0.0752f,-0.1f,0.0722f,0.039f,-0.0548f,-0.0496f,0.221f,-0.0522f,0.0262f,-0.0555f,0.0657f,-0.00658f,-0.0674f,0.038f,0.0681f,-0.00159f,0.00235f,-0.0227f,0.0866f,0.0265f,-0.00855f,-0.102f,0.0397f,-0.0855f,-0.0576f,0.0278f,-0.0494f,-0.0273f,0.0511f,-0.0232f,0.0518f,-0.0216f,0.124f,-0.327f,0.0734f,-0.0834f,-0.0603f,-0.0178f,0.0547f,0.139f,0.102f,-0.0701f,-0.106f,-0.148f,0.0684f,-0.00772f,0.0695f,-0.0192f,-0.0272f,0.293f,0.165f,0.0702f,0.0521f,0.0178f,0.172f,-0.0884f,0.0333f,0.0648f,-0.0164f,-0.0805f,-0.0686f,-0.00536f,-0.00488f,0.101f,-0.103f,-0.0479f,-0.0878f,0.0324f,0.0848f,-0.107f,0.0328f,0.14f,-0.081f,0.165f,0.0513f,0.0935f,0.0604f,-0.178f,-0.121f,0.0783f,0.000652f,-0.0255f,-0.106f,-0.0327f,-0.0733f,0.157f,0.0732f,-0.064f,0.0166f,0.0208f,-0.00921f,0.101f,-0.0861f,0.0882f,0.224f,-0.116f,-0.00596f,0.0358f,-0.0266f,-0.089f,-0.141f,-0.0897f,0.134f,-0.0312f,0.0148f,0.201f,-0.127f,0.0334f,-0.0393f,-0.0286f,0.0207f,-0.0447f,-0.0677f,0.142f,0.0808f,0.0064f,-0.0666f,-0.0604f,0.0809f,0.0173f,-0.112f,-0.162f,0.000982f,0.067f,-0.0709f,0.0494f,-0.0408f,-0.0134f,-0.097f,0.0234f,-0.126f,0.0816f,-0.0962f,0.0411f,-0.0286f,-0.047f,0.159f,0.0449f,-0.0202f,-0.0843f,-0.104f,0.102f,-0.0928f,0.0238f,-0.0471f,-0.0326f,-0.0601f,0.0974f,0.043f,0.15f,-0.128f,0.0666f,-0.0709f,0.145f,0.054f,-0.0327f,-0.0837f,0.198f,0.188f,0.0626f,-0.04f,0.249f,-0.0841f,-0.0436f,-0.0922f,-0.0554f,0.269f,0.371f,-0.059f,-0.119f,0.101f,0.046f,-0.114f,-0.156f,0.0153f,-0.0144f,-0.0359f,0.227f,-0.164f,-0.0854f,-0.0849f,-0.043f,0.0368f,0.135f,0.0498f,-0.146f,-0.0833f,0.0164f,0.0346f,-0.0021f,-0.0824f,0.0338f,-0.148f,-0.000424f,-0.0714f,0.273f,0.114f,-0.0361f,0.152f,0.0452f,0.169f,-0.171f,0.142f,0.112f,0.286f,-0.0564f,-0.0474f,-0.0251f,-0.067f,0.0607f,-0.0352f,-0.0238f,0.0396f,0.0455f,-0.145f,-0.0406f,0.091f,-0.129f,-0.0917f,-0.0764f,-0.115f,0.0706f,0.0786f,-0.00753f,0.103f,-0.0145f,0.0088f,-0.0684f,-0.0962f,0.0312f,0.303f,0.108f,-0.0414f,-0.169f,-0.00899f,-0.0285f,-0.0582f,0.0446f,-0.0596f,-0.101f,0.109f,0.00302f,-0.103f,-0.129f,-0.0204f,-0.137f,-0.061f,0.0169f,-0.124f,0.0598f,0.0333f,-0.0606f,-0.125f,-0.0175f,0.107f,-0.0189f,0.0216f,-0.226f,-0.0445f,-0.0907f,-0.0859f,0.0798f,-0.00925f,0.0365f,-0.234f,0.00216f,0.0418f,0.055f,0.0931f,-0.0183f,-0.0391f,0.0243f,-0.136f,0.00701f,0.0383f,0.134f,0.0369f,-0.0652f,0.0719f,0.0454f,-0.0791f,-0.0665f,-0.157f,0.0782f,0.0273f,-0.212f,-0.044f,0.00124f,-0.125f,-0.137f,-0.0632f,0.0471f,0.13f,0.105f,-0.0543f,-0.0746f,-0.129f,-0.171f,0.0582f,0.0118f,0.179f,-0.217f,0.123f,-0.093f,-0.186f,-0.167f,-0.00333f,-0.112f,-0.113f,-0.0615f,0.257f,0.0596f,0.00145f,-0.0166f,0.0682f,-0.0716f,0.107f,0.0137f,0.336f,-0.116f,0.146f,-0.0144f,-0.0144f,-0.0915f,-0.0156f,0.201f,-0.224f,-0.0376f,-0.138f,-0.0319f,-0.125f,-0.156f,-0.108f,0.296f,0.0379f,0.336f,-0.0471f,-0.00776f,-0.183f,-0.054f,0.00686f,-0.049f,-0.0635f,0.191f,0.016f,0.0264f,0.0824f,-0.0437f,-0.282f,-0.00116f,-0.0308f,-0.143f,-0.0922f,0.0876f,-0.00603f,-0.151f,-0.0701f,-0.0491f,-0.234f,-0.0655f,0.00123f,-0.0264f,0.00357f,-0.145f,0.0556f,0.0546f,0.168f,0.0455f,-0.0987f,0.00691f,0.0615f,0.0497f,-0.106f,-0.0626f,0.0707f,-0.127f,0.0158f,-0.0863f,-0.00813f,0.00745f,0.0441f,0.195f,0.0372f,-0.11f,-0.0555f,-0.0296f,0.0219f,-0.119f,0.0653f,-0.075f,-0.0354f,-0.3f,-0.0686f,-0.0823f,0.0856f,-0.109f,-0.0826f,0.0171f,0.0314f,0.0672f,0.00979f,-0.0951f,-0.00726f,0.0788f,-0.0718f,0.00691f,0.024f,-0.0452f,-0.0887f,-0.0102f,0.0125f,-0.0137f,-0.079f,-0.0239f,0.164f,-0.0255f,0.0155f,-0.0298f,-0.138f,-0.0539f,-0.0311f,0.0371f,0.113f,0.0766f,-0.0117f,0.0201f,0.0637f,0.0996f,0.00461f,-0.042f,0.0216f,-0.138f,0.0344f,-0.0361f,0.113f,0.00101f,0.00729f,0.0477f,0.0271f,-0.0191f,0.0938f,0.0351f,-0.0789f,0.105f,0.018f,0.0367f,-0.027f,0.0872f,0.0507f,0.0352f,0.0739f,0.191f,0.0862f,-0.082f,-0.0329f,0.0274f,-0.0703f,-0.00917f,0.168f,-0.0103f,0.211f,-0.0123f,0.0685f,0.162f,0.0127f,0.0671f,0.0394f,0.138f,0.0499f,0.0785f,0.0639f,-0.0269f,0.0537f,0.0345f,0.069f,-0.00049f,0.105f,0.122f,0.0248f,0.169f,-0.25f,0.129f,0.0278f,0.137f,-0.0667f,-0.027f,-0.139f,-0.0317f,-0.00964f,-0.049f,0.0354f,-0.13f,0.00172f,-0.292f,-0.162f,0.059f,-0.353f,0.096f,-0.0442f,0.0328f,-0.0478f,0.0282f,0.0192f,0.00104f,-0.0787f,0.0193f,0.0532f,0.0113f,0.0298f,-0.0394f,-0.0414f,-0.0675f,-0.146f,-0.151f,-0.0495f,-0.056f,-0.0718f,0.202f,0.0666f,-0.0132f,0.0773f,-0.103f,-0.161f,0.0385f,-0.217f,-0.133f,0.134f,0.0135f,-0.117f,0.033f,0.0695f,0.0201f,-0.107f,-0.0908f,-0.0995f,-0.0127f,0.0805f,0.0149f,-0.12f,-0.102f,-0.0285f,-0.0383f,-0.0468f,-0.0868f,0.168f,-0.129f,-0.066f,-0.182f,0.0893f,0.0582f,-0.0633f,-0.0329f,0.102f,0.0595f,0.0152f,-0.00524f,0.0563f,-0.154f,0.0226f,-0.0109f,0.0768f,-0.0679f,0.187f,0.165f,-0.0339f,0.0534f,-0.1f,-0.13f,-0.0445f,0.0565f,-0.112f,-0.0253f,-0.0145f,-0.114f,-0.127f,0.0232f,-0.0115f,0.00404f,-0.0741f,0.0796f,0.0783f,0.0215f,0.00523f,0.0573f,-0.015f,-0.0945f,0.178f,-0.0244f,-0.153f,0.134f,-0.0247f,-0.0733f,0.0323f,-0.0563f,-0.0147f,-0.0247f,-0.0557f,-0.0525f,-0.0222f,0.0231f,0.000758f,-0.0519f,-0.205f,0.0287f,-0.0437f,-0.000409f,0.00955f,0.113f,-0.0788f,-0.117f,-0.246f,0.188f,-0.0521f,-0.00254f,-0.0842f,0.0134f,-0.0207f,0.0843f,-0.0767f,-0.127f,-0.144f,-0.273f,-0.0721f,0.0991f,-0.00831f,-0.0241f,-0.0169f,0.0817f,0.103f,-0.0068f,-0.0316f,-0.0559f,-0.0613f,0.0356f,0.113f,-0.00513f,-0.0314f,0.116f,-0.0912f,-0.106f,-0.0346f,0.0651f,-0.0517f,0.00742f,-0.045f,0.0639f,-0.0286f,0.0361f,0.0483f,0.0492f,-0.0765f,-0.0279f,-0.105f,0.0455f,0.0492f,-0.00943f,-0.118f,0.0969f,0.00272f,-0.0209f,-0.0986f,-0.0272f,-0.0831f,-0.129f,-0.0128f,0.273f,-0.185f,-0.00394f,0.013f,0.0666f,-0.0476f,0.137f,0.186f,0.215f,-0.0323f,-0.0568f,0.0155f,-0.0314f,0.148f,-0.148f,-0.2f,0.0436f,-0.00688f,-0.168f,-0.0026f,0.168f,-0.0952f,0.0761f,-0.111f,0.237f,0.00773f,-0.0716f,0.00547f,-0.136f,-0.0169f,0.0295f,0.0246f,-0.0419f,0.00219f,-0.0299f,0.0152f,0.105f,0.24f,0.063f,-0.00387f,-0.0221f,-0.087f,-0.175f,-0.0339f,0.0135f,0.0631f,-0.00942f,0.114f,-0.0741f,-0.0971f,-0.0719f,0.0849f,-0.0602f,-0.0888f,-0.0025f,-0.0442f,0.0286f,0.179f,0.0435f,-0.0153f,0.0604f,-0.0398f,-0.0216f,-0.0692f,0.106f,0.0651f,-0.144f,0.0527f,0.14f,0.00516f,-0.111f,0.127f,-0.0123f,0.139f,-0.184f,-0.0389f,0.00547f,0.24f,-0.0283f,-0.1f,-0.0673f,0.00259f,-0.0929f,-0.00134f,0.0544f,-0.0225f,0.117f,0.0194f,0.0162f,0.0493f,0.0315f,-0.00424f,0.051f,0.141f,0.00344f,0.0242f,-0.0268f,-0.0627f,0.0713f,-0.0491f,-0.0998f,-0.16f,0.0572f,-0.0433f,-0.169f,0.0225f,0.0105f,0.107f,0.0296f,0.105f,-0.0409f,-0.0244f,-0.0251f,0.133f,0.192f,-0.0284f,0.00721f,-0.0607f,-0.0122f,0.0191f,-0.0489f,-0.00568f,-0.0355f,0.0246f,-0.0657f,-0.0233f,-0.0467f,-0.0243f,-0.133f,-0.175f,0.0902f,-0.0731f,-0.101f,-0.0771f,0.0498f,-0.0287f,-0.149f,0.136f,-0.0322f,0.0334f,0.0246f,-0.0226f,-0.155f,-0.105f,-0.135f,0.231f,0.0988f,0.112f,0.0606f,0.0337f,0.0832f,-0.0329f,0.0741f,-0.0579f,0.101f,-0.123f,0.00654f,0.229f,0.0453f,-0.101f,0.0632f,-0.0142f,0.111f,0.127f,-0.0245f,-0.00418f,-0.166f,0.0525f,-0.00218f,0.0274f,-0.0935f,-0.137f,0.15f,-0.0889f,-0.151f,-0.0397f,0.12f,0.0784f,0.0683f,-0.11f,-0.0374f,-0.0843f,0.278f,-0.0073f,0.178f,0.0942f,0.0291f,-0.00101f,0.0151f,0.0617f,-0.0504f,0.0537f,-0.113f,0.057f,0.013f,-0.00751f,-0.102f,0.262f,0.0355f,-0.0309f,0.0446f,-0.0309f,-0.151f,-0.255f,0.238f,-0.22f,0.078f,-0.0528f,-0.0919f,0.188f,0.173f,-0.122f,0.0798f,0.211f,0.0103f,-0.0716f,0.204f,0.00164f,0.0456f,-0.109f,0.0979f,0.0203f,0.0473f,-0.142f,0.137f,0.302f,-0.146f,-0.00801f,0.289f,0.013f,0.0422f,0.0807f,-0.0714f,0.185f,-0.0398f,0.202f,-0.0975f,0.0834f,0.0733f,-0.0114f,0.0785f,-0.00506f,-0.0551f,-0.0806f,-0.0111f,0.0261f,0.132f,-0.0106f,0.318f,-0.0254f,-0.00792f,-0.00508f,-0.313f,0.123f,-0.163f,-0.0891f,-0.0845f,-0.0121f,0.00594f,0.061f,-0.178f,0.00525f,0.057f,-0.0555f,-0.0787f,-0.0176f,-0.0611f,-0.0662f,0.135f,-0.0971f,-0.0222f,-0.0867f,-0.0759f,0.0215f,-0.0342f,0.051f,0.0325f,0.0426f,-0.0286f,-0.0346f,-0.102f,0.000227f,0.0454f,-0.00537f,-0.0187f,0.0481f,0.204f,0.0896f,0.0251f,0.0872f,0.0193f,0.0444f,0.00327f,0.0707f,-0.0967f,0.0593f,-0.102f,0.0466f,0.0101f,-0.0611f,0.0428f,-0.0978f,-0.0325f,-0.165f,0.0312f,-0.0654f,-0.322f,-0.112f,0.0365f,0.0719f,-0.00411f,-0.0286f,0.129f,0.108f,0.147f,0.0213f,0.0408f,0.0818f,0.0587f,-0.127f,-0.0574f,0.15f,-0.0466f,0.139f,0.0639f,0.0696f,0.0914f,0.112f,-0.0666f,0.0191f,-0.0475f,-0.1f,-0.0784f,0.00887f,-0.0763f,-0.0996f,0.0233f,-0.133f,0.0347f,-0.0211f,-0.0528f,0.0273f,0.0365f,0.116f,0.0495f,0.105f,0.0149f,-0.148f,0.151f,-0.0502f,-0.0269f,0.0208f,-0.0215f,-0.282f,0.353f,0.255f,0.0517f,-0.201f,0.188f,-0.137f,0.109f,-0.0133f,-0.085f,0.203f,0.0552f,-0.128f,-0.0792f,-0.0254f,0.0163f,-0.0963f,0.061f,-0.0654f,0.168f,-0.145f,-0.0207f,0.192f,0.0257f,-0.0881f,0.0601f,-0.0107f,-0.0113f,-0.19f,-0.109f,-0.0458f,-0.00604f,-0.128f,0.105f,-0.216f,-0.128f,-0.0409f,0.121f,0.106f,-0.168f,-0.0276f,0.082f,0.074f,-0.0413f,-0.256f,-0.134f,0.0424f,-0.0411f,-0.0516f,-0.234f,-0.0672f,-0.18f,-0.0751f,0.0524f,-0.0295f,0.0748f,0.0859f,0.0174f,0.0716f,-0.00753f,0.0148f,0.0216f,0.151f,0.00305f,-0.0817f,0.0204f,-0.0857f,-0.00811f,0.0494f,-0.0019f,0.0576f,-0.0539f,0.0472f,-0.0384f,0.125f,0.0303f,0.153f,-0.0588f,0.0138f,-0.00382f,0.0152f,0.203f,-0.0288f,0.101f,-0.0199f,0.00308f,-0.0734f,-0.0787f,0.05f,-0.109f,0.00312f,-0.00012f,0.0585f,0.083f,0.118f,-0.128f,-0.198f,0.0209f,0.0487f,-0.0958f,-0.0408f,-0.00399f,0.14f,-0.284f,-0.278f,0.103f,-0.129f,-0.0857f,-0.198f,0.168f,-0.103f,-0.114f,0.118f,0.18f,0.0389f,-0.0671f,0.112f,0.202f,-0.164f,0.0852f,0.0971f,0.0306f,-0.139f,0.0818f,0.0616f,0.0759f,0.187f,0.00567f,0.0799f,0.0555f,-0.0274f,-0.0365f,-0.0246f,0.0411f,0.0493f,0.00831f,0.0872f,0.071f,0.195f,0.0561f,-0.00264f,0.0154f,-0.032f,-0.026f,-0.00385f,0.105f,-0.0584f,0.016f,0.0977f,0.0451f,-0.0244f,0.104f,-0.0549f,0.0732f,-0.0129f,0.124f,-0.0135f,0.0831f,0.0672f,-0.112f,0.0172f,0.0594f,0.0588f,-0.153f,0.143f,-0.187f,-0.0791f,0.0293f,0.11f,0.0644f,0.0945f,0.107f,-0.0638f,-0.0731f,0.118f,-0.0853f,-0.0389f,-0.0999f,-0.104f,-0.105f,-0.0574f,-0.0774f,0.0122f,-0.0698f,0.0975f,-0.0205f,0.0155f,0.188f,0.106f,0.051f,-0.124f,0.013f,0.0947f,-0.0263f,-0.1f,-0.0493f,0.267f,0.338f,-0.17f,-0.0785f,0.00452f,-0.114f,-0.089f,0.0437f,-0.0196f,-0.108f,-0.0143f,-0.0568f,0.0181f,0.00291f,0.0845f,0.00435f,0.00933f,-0.0268f,0.238f,-0.072f,-0.0307f,0.0221f,0.00461f,-0.0379f,-0.0849f,0.0613f,-0.213f,-0.0915f,0.172f,0.359f,0.0926f,-0.0509f,-0.0597f,-0.102f,-0.0279f,-0.0669f,0.0936f,0.114f,0.0585f,0.0385f,-0.106f,0.0303f,-0.0831f,-0.16f,0.232f,0.107f,-0.0101f,-0.0167f,0.019f,0.314f,-0.0168f,0.0401f,-0.0288f,0.0987f,-0.112f,0.0385f,0.085f,-0.0448f,-0.147f,0.00782f,0.0998f,-0.0722f,-0.0386f,0.0777f,-0.127f,0.0297f,-0.00245f,-0.171f,0.112f,-0.0471f,-0.0261f,0.0208f,0.022f,0.0939f,0.0189f,0.0174f,0.0206f,0.00837f,-0.00847f,-0.0529f,0.175f,0.033f,-0.00504f,0.0175f,0.0341f,0.000117f,-0.0166f,-0.121f,-0.0899f,-0.158f,-0.0509f,-0.0495f,0.0576f,-0.0111f,-0.00413f,-0.125f,0.0206f,-0.0244f,-0.0699f,-0.0505f,-0.0217f,-0.0401f,0.0662f,-0.00883f,0.144f,0.00387f,-0.0411f,0.0286f,0.00863f,0.0734f,0.0663f,0.0594f,0.036f,-0.146f,-0.0554f,-0.106f,0.0514f,0.0487f,0.141f,-0.0078f,-0.0668f,0.0372f,0.0278f,-0.0616f,-0.0368f,0.0136f,0.155f,0.0196f,0.0419f,-0.133f,0.0647f,-0.0568f,0.216f,0.0202f,-0.0439f,0.0215f,0.0143f,-0.145f,-0.0291f,-0.0934f,-0.151f,-0.00878f,-0.0769f,-0.0866f,0.0122f,0.0104f,-0.0425f,-0.0334f,-0.108f,-0.0958f,0.0178f,0.0101f,-0.0896f,0.135f,-0.0604f,0.102f,-0.132f,0.0795f,-0.0785f,-0.054f,-0.129f,-0.113f,0.0205f,0.204f,0.0675f,0.127f,0.0524f,-0.109f,-0.0399f,0.0127f,-0.044f,0.126f,-0.318f,-0.0978f,0.0534f,-0.176f,-0.101f,-0.0669f,0.0503f,-0.0176f,0.00414f,-0.0211f,-0.00576f,0.00693f,0.0278f,0.0157f,-0.0175f,0.0525f,-0.113f,0.0299f,0.0776f,0.0754f,-0.069f,0.0281f,-0.0684f,0.0447f,-0.0421f,-0.0667f,0.00591f,-0.0792f,0.0206f,0.098f,-0.0864f,-0.0729f,0.064f,0.00276f,0.0268f,0.0979f,-0.0445f,-0.0397f,-0.0716f,-0.188f,-0.0474f,-0.0732f,-0.0231f,-0.0138f,-0.0339f,0.0138f,0.0914f,-0.0769f,0.026f,0.00174f,-0.0158f,0.0385f,-0.0392f,0.134f,0.0327f,0.123f,0.172f,0.0208f,0.107f,-0.37f,0.0152f,0.053f,-0.0171f,0.112f,0.201f,0.0679f,0.0262f,-0.0206f,0.179f,0.199f,-0.172f,0.18f,-0.0496f,-0.0207f,-0.115f,-0.0173f,-0.0309f,-0.042f,-0.0344f,-0.251f,-0.0649f,0.188f,-0.155f,-0.0861f,-0.015f,0.0322f,-0.168f,-0.0491f,-0.21f,0.123f,0.21f,-0.0431f,0.0335f,-0.207f,0.022f,0.168f,0.0299f,-0.0141f,-0.0129f,0.0477f,-0.0449f,0.0713f,0.0899f,0.133f,0.118f,0.0794f,0.0513f,-0.0811f,-0.251f,0.101f,-0.137f,0.0164f,0.103f,0.0201f,-0.121f,0.0134f,0.13f,0.13f,-0.0167f,0.075f,0.0523f,-0.0162f,-0.0134f,-0.0801f,0.059f,0.0582f,-0.0956f,-0.0897f,-0.00879f,0.0909f,-0.11f,0.151f,0.0476f,-0.0244f,-0.0902f,-0.0551f,0.0839f,-0.000239f,-0.0459f,-0.00869f,-0.0869f,-0.047f,0.283f,0.0867f,0.0142f,-0.0296f,0.072f,-0.0538f,0.186f,-0.0197f,-0.0347f,0.164f,-0.0709f,0.133f,0.157f,0.0152f,0.0172f,0.00251f,0.0679f,-0.00118f,-0.162f,0.164f,0.0599f,0.0194f,-0.0764f,-0.0328f,0.0603f,-0.0436f,0.0789f,-0.0454f,0.0297f,-0.151f,0.0747f,-0.122f,0.0884f,0.136f,-0.0875f,0.105f,0.00275f,-0.1f,-0.309f,0.151f,-0.0424f,0.138f,-0.0491f,-0.0061f,-0.0444f,0.0707f,-0.0432f,-0.105f,-0.0885f,0.193f,0.216f,0.14f,-0.134f,0.061f,0.0234f,0.0731f,0.0473f,-0.111f,-0.0729f,-0.0641f,-0.111f,-0.054f,-0.0416f,-0.193f,-0.0428f,0.0447f,0.0443f,-0.063f,0.166f,0.0716f,-0.0167f,0.0099f,0.0772f,-0.12f,0.228f,0.153f,-0.143f,0.0755f,0.122f,-0.0501f,0.297f,-0.0271f,0.132f,0.0168f,-0.207f,-0.153f,0.123f,0.00176f,-0.0191f,0.00786f,0.00857f,-0.0119f,-0.0251f,-0.0314f,0.116f,-0.0668f,-0.176f,0.11f,0.0157f,-0.0344f,0.244f,0.162f,-0.0317f,0.0545f,-0.00111f,-0.0841f,-0.171f,0.0732f,-0.0062f,0.221f,-0.0272f,-0.0302f,0.0848f,0.174f,0.0217f,0.00997f,0.0371f,0.163f,-0.0813f,-0.152f,0.0213f,0.0755f,0.116f,0.111f,-0.0478f,-0.108f,-0.185f,0.238f,-0.231f,0.0274f,0.013f,-0.00743f,-0.0596f,-0.0459f,-0.0851f,0.0924f,0.141f,0.116f,-0.0573f,0.0595f,-0.174f,-0.02f,-0.175f,0.00427f,0.0086f,-0.126f,0.16f,0.0372f,-0.0732f,0.0346f,-0.181f,-0.105f,0.141f,0.0966f,0.0709f,-0.0335f,-0.0848f,-0.0393f,0.0484f,0.164f,0.0253f,0.0781f,0.0683f,0.032f,0.155f,0.000145f,0.0322f,-0.0393f,-0.00769f,-0.0435f,-0.101f,0.199f,-0.0624f,0.108f,-0.0556f,-0.279f,-0.292f,0.16f,-0.0272f,0.0373f,0.0563f,0.095f,-0.0835f,0.108f,-0.072f,0.104f,-0.0495f,-0.0081f,0.268f,-0.262f,0.0745f,0.00525f,0.138f,-0.0508f,0.0155f,-0.0307f,0.0752f,0.0135f,-0.0497f,-0.129f,0.0946f,-0.0478f,-0.0322f,-0.0159f,-0.0227f,0.0498f,-0.0283f,-0.123f,0.0551f,-0.0884f,-0.0151f,0.1f,-0.0575f,0.162f,-0.02f,-0.0724f,-0.00242f,0.0722f,-0.0822f,-0.199f,0.0992f,0.0409f,-0.0478f,0.165f,0.2f,0.019f,0.0928f,-0.0468f,0.264f,0.0868f,0.232f,0.0728f,-0.0805f,0.000182f,0.0309f,-0.142f,-0.00794f,0.0422f,-0.038f,-0.152f,-0.0583f,0.0167f,0.226f,0.204f,0.0437f,0.0176f,-0.116f,0.0776f,-0.09f,-0.0602f,-0.0217f,-0.0652f,-0.0642f,-0.0966f,-0.124f,-0.0555f,-0.016f,0.0217f,0.12f,-0.0431f,-0.0201f,0.00335f,-0.0318f,0.0363f,-0.0242f,0.168f,0.0221f,0.216f,0.0622f,-0.0623f,-0.0124f,0.0373f,0.0957f,-0.00494f,0.166f,0.183f,-0.0743f,0.00601f,-0.102f,0.119f,0.116f,-0.0203f,-0.169f,0.00378f,0.0481f,-0.0895f,0.0261f,-0.108f,0.22f,0.074f,0.0508f,-0.0513f,-0.0886f,0.0441f,-0.0994f,0.134f,-0.0463f,-0.0214f,-0.0159f,-0.0442f,0.073f,-0.143f,0.015f,-0.059f,0.159f,0.18f,-0.108f,-0.05f,0.0388f,-0.106f,-0.0194f,0.038f,0.0368f,0.00475f,-0.0231f,0.0297f,-0.139f,-0.12f,0.023f,-0.0265f,-0.0395f,-0.00933f,-0.106f,-0.0951f,-0.0213f,0.104f,0.034f,-0.0469f,-0.0399f,0.0306f,-0.0299f,-0.147f,-0.0919f,0.0113f,-0.156f,-0.0839f,-0.118f,-0.104f,-0.239f,0.0666f,-0.109f,0.0041f,0.00575f,-0.0625f,-0.0163f,-0.00982f,0.0649f,0.0094f,-0.0463f,-0.0326f,-0.000304f,-0.139f,-0.0444f,-0.04f,-0.0359f,-0.0405f,0.129f,-0.238f,-0.105f,0.122f,-0.0662f,-0.00669f,-0.0748f,0.0189f,0.0415f,0.0894f,-0.118f,-0.0156f,0.0161f,0.0355f,-0.0421f,-0.261f,-0.0808f,0.0282f,-0.0273f,-0.009f,-0.0464f,-0.018f,-0.0431f,0.00912f,0.0363f,-0.01f,0.0507f,0.0617f,-0.0826f,0.0128f,-0.138f,0.00632f,-0.119f,-0.0218f,0.0311f,0.0478f,-0.0336f,0.186f,0.00425f,0.0559f,-0.0291f,-0.0563f,0.0551f,-0.0202f,0.212f,-0.118f,0.0592f,0.0157f,-0.0595f,0.0177f,-0.0922f,-0.102f,0.0621f,0.022f,0.251f,-0.0667f,-0.104f,9.43e-05f,-0.0743f,0.0453f,-0.0377f,0.0236f,0.0629f,-0.0209f,0.14f,0.0836f,-0.0505f,-0.0426f,0.0635f,0.0846f,0.00747f,-0.0971f,0.0577f,0.0111f,-0.0222f,-0.0486f,-0.0689f,0.0766f,0.0238f,-0.0223f,0.168f,-0.00613f,0.013f,0.118f,0.197f,-0.162f,-0.0126f,0.0993f,-0.019f,0.0206f,0.104f,0.044f,0.0267f,0.0614f,0.0143f,-0.0147f,-0.0222f,0.0578f,0.0503f,-0.0794f,0.0199f,0.12f,0.0305f,0.0209f,-0.109f,0.0473f,-0.0494f,0.097f,-0.15f,0.0261f,-0.191f,-0.358f,-0.0385f,0.114f,0.0785f,0.0267f,-0.0199f,-0.0987f,0.0341f,-0.00899f,0.00753f,-0.0647f,0.166f,-0.0557f,-0.199f,0.0255f,0.0127f,-0.0435f,-0.0082f,0.0396f,-0.0877f,-0.126f,0.0936f,-0.0441f,0.0649f,-0.0681f,-0.0598f,-0.144f,0.122f,-0.0528f,0.0477f,-0.0423f,-0.0498f,-0.0474f,-0.0566f,-0.0102f,-0.154f,0.139f,-0.0394f,-0.0451f,-0.000107f,0.145f,0.102f,0.073f,0.0383f,0.0291f,-0.0108f,0.0719f,0.0569f,0.0682f,-0.188f,-0.113f,0.0635f,-0.253f,-0.145f,-0.142f,-0.0885f,0.00184f,0.0234f,0.0124f,0.135f,-0.0409f,0.0308f,-0.0967f,-0.0834f,0.336f,0.162f,0.153f,0.0951f,0.0849f,-0.00615f,-0.00535f,-0.12f,0.0228f,0.235f,-0.021f,0.0238f,0.00949f,0.0418f,-0.144f,-0.0298f,0.0819f,-0.187f,0.0198f,-0.0197f,-0.0773f,-0.0377f,-0.0146f,0.0053f,-0.138f,-0.15f,0.144f,-0.152f,0.047f,-0.103f,-0.0374f,0.0417f,0.105f,0.0531f,-0.0661f,0.045f,-0.201f,-0.0278f,-0.119f,0.0205f,-0.137f,0.0472f,0.0409f,0.0593f,0.0363f,0.0952f,0.0622f,0.0987f,0.0794f,0.00715f,0.185f,-0.0284f,-0.0127f,0.113f,-0.263f,0.129f,0.0514f,0.0825f,-0.065f,-0.0195f,-0.0777f,-0.0679f,0.0354f,0.052f,-0.0929f,-0.152f,-0.043f,-0.0541f,0.0849f,0.0156f,-0.0167f,0.0591f,0.0473f,0.0354f,0.053f,0.104f,-0.0316f,0.0193f,0.083f,0.0607f,-0.0203f,0.0468f,0.189f,0.185f,-0.0605f,0.00181f,-0.0397f,0.0969f,0.0692f,-0.107f,0.102f,0.0493f,0.101f,-0.01f,-0.147f,0.104f,0.0263f,0.0123f,0.0482f,0.0321f,0.113f,-0.0109f,-0.0319f,0.0256f,0.0565f,-0.295f,0.019f,0.0883f,0.0455f,-0.0639f,0.0603f,0.094f,-0.00109f,-0.0193f,0.0261f,0.132f,0.11f,-0.0516f,-0.136f,-0.142f,0.0647f,0.0143f,0.0579f,-0.0818f,0.0814f,0.0486f,0.0147f,-0.108f,-0.0302f,-0.073f,-0.0872f,0.0266f,0.147f,-0.01f,0.13f,0.0928f,0.0982f,-0.00288f,-0.0203f,0.0981f,-0.364f,-0.0388f,-0.0778f,0.209f,-0.0131f,0.0242f,-0.214f,-0.0475f,0.346f,-0.0516f,0.0496f,-0.149f,-0.0419f,-0.0632f,-0.00828f,0.0157f,-0.179f,-0.243f,0.0426f,-0.0654f,0.000203f,-0.00697f,0.0621f,0.00491f,-0.0192f,0.0561f,0.192f,-0.059f,-0.187f,0.0674f,-0.113f,0.0353f,-0.0319f,0.135f,-0.0764f,0.113f,0.0678f,-0.0136f,0.0788f,0.061f,-0.0236f,-0.0146f,0.0526f,0.131f,-0.182f,-0.000586f,0.0108f,0.0208f,-0.22f,0.0347f,-0.15f,0.0327f,0.0247f,0.0329f,-0.0351f,0.0325f,-0.0103f,0.0538f,0.0738f,0.0321f,-0.0247f,-0.016f,0.0068f,-0.0542f,0.0581f,0.0196f,0.157f,0.134f,0.0139f,0.104f,0.038f,0.144f,-0.0809f,-0.0426f,0.0762f,0.209f,-0.089f,0.106f,-0.00298f,0.0567f,0.084f,0.117f,-0.152f,0.0134f,0.0724f,-0.0171f,0.0329f,-0.122f,-0.115f,-0.0476f,-0.0252f,-0.0351f,-0.117f,0.00631f,0.0388f,-0.103f,-0.264f,-0.213f,0.0336f,-0.104f,-0.0999f,-0.154f,0.166f,-0.0707f,-0.0717f,-0.0643f,0.132f,0.0456f,-0.0167f,-0.0641f,-0.0903f,0.0481f,-0.0128f,0.28f,-0.18f,0.0562f,0.148f,0.12f,0.0272f,-0.205f,0.00145f,-8.73e-05f,-0.0133f,-0.0626f,-0.0682f,0.000225f,-0.0169f,-0.195f,-0.000732f,0.131f,-0.129f,-0.249f,-0.0187f,-0.147f,-0.156f,-0.0657f,0.132f,0.0396f,0.105f,-0.0684f,-0.00144f,0.0991f,0.142f,-0.0612f,0.122f,-0.0414f,-0.23f,-0.252f,0.0804f,-0.0444f,-0.00922f,-0.373f,-0.305f,0.0438f,0.0129f,-0.315f,-0.00961f,-0.0353f,-0.0951f,-0.0617f,-0.0456f,-0.0798f,0.263f,0.0752f,-0.32f,0.0642f,-0.034f,-0.049f,0.114f,0.165f,0.0548f,0.211f,0.27f,0.128f,0.0324f,-0.00689f,-0.0117f,0.116f,-0.000918f,0.0467f,0.103f,-0.06f,0.0242f,0.157f,-0.0937f,0.0974f,-0.362f,-0.0346f,0.00878f,0.00732f,-0.313f,0.157f,-0.121f,0.129f,-0.284f,-0.163f,0.069f,-0.00949f,-0.235f,0.0631f,-0.0749f,0.0927f,-0.13f,-0.102f,-0.0781f,0.00168f,-0.0204f,0.0118f,0.0239f,-0.071f,0.0224f,-0.0451f,-0.00383f,-0.00234f,0.174f,0.09f,-0.214f,-0.0662f,0.07f,-0.029f,-0.0772f,0.0589f,-0.0316f,0.00324f,0.279f,0.0722f,-0.0284f,-0.0193f,0.0479f,0.0784f,-0.0867f,0.0571f,-0.0163f,0.00734f,0.0103f,-0.224f,-0.045f,-0.0277f,-0.0763f,0.0318f,0.0602f,0.0139f,0.0409f,-0.0448f,0.0851f,0.0336f,0.00616f,-0.0222f,-0.0903f,-0.122f,0.0348f,-0.146f,-0.0453f,-0.0574f,0.136f,-0.0518f,0.0533f,0.198f,-0.141f,0.023f,-0.0379f,-0.00442f,-0.136f,0.0256f,-0.101f,0.0232f,0.0749f,-0.0666f,-0.0908f,-0.0623f,0.0731f,-0.0526f,-0.105f,-0.0891f,0.0586f,-0.0443f,-0.0266f,-0.216f,0.183f,0.031f,0.0214f,-0.0113f,0.183f,0.0395f,0.0565f,0.0884f,-0.0627f,0.0721f,0.148f,0.0167f,-0.0401f,0.0738f,-0.119f,0.108f,-0.114f,0.0381f,0.0594f,0.231f,-0.0286f,0.0862f,0.0306f,-0.0316f,-0.00935f,-0.00935f,-0.11f,-0.0675f,-0.0529f,-0.124f,-0.0966f,0.0726f,-0.253f,0.00108f,-0.132f,0.0123f,-0.185f,0.0658f,-0.144f,-0.176f,-0.0645f,0.0925f,0.0842f,-0.0144f,-0.0248f,0.183f,0.14f,0.198f,0.0112f,-0.0366f,-0.138f,-0.074f,-0.0818f,0.0489f,-0.0945f,0.0236f,-0.0648f,0.0362f,0.105f,-0.0933f,-0.0929f,-0.0198f,0.0955f,0.0389f,-0.0265f,0.108f,-0.0551f,0.0448f,-0.0257f,0.131f,0.014f,0.0357f,0.16f,0.0861f,-0.00214f,0.0897f,0.128f,0.133f,0.179f,0.104f,-0.0357f,-0.101f,-0.0118f,-0.0157f,0.0558f,-0.0735f,0.0293f,0.208f,-0.0835f,-0.0759f,0.0638f,-0.0952f,-0.0102f,0.179f,-0.0275f,0.274f,0.145f,0.174f,0.096f,0.0189f,-0.0251f,-0.02f,-0.0668f,0.239f,-0.0239f,0.0977f,0.117f,0.0237f,0.00488f,0.039f,0.0911f,-0.0248f,-0.00822f,0.0468f,0.0379f,-0.182f,-0.0242f,0.0806f,0.19f,-0.147f,0.08f,-0.159f,0.0524f,0.0247f,0.187f,0.065f,0.0171f,-0.0975f,0.033f,-0.1f,0.0555f,0.0773f,0.0673f,-0.0562f,0.0999f,-0.0411f,0.00964f,0.0874f,-0.00825f,-0.0659f,-0.174f,-0.121f,-0.122f,0.091f,0.0795f,0.002f,0.0279f,-0.00244f,0.108f,0.041f,-0.00733f,-0.0423f,-0.109f,-0.0986f,-0.201f,0.0756f,-0.315f,0.13f,-0.112f,0.0686f,0.0682f,-0.032f,-0.0865f,0.0122f,-0.0953f,0.125f,-0.112f,-0.107f,0.00077f,-0.0652f,-0.0188f,0.162f,-0.0605f,0.225f,-0.0466f,0.0954f,-0.0411f,-0.157f,0.103f,-0.0673f,0.0123f,0.0878f,-0.0917f,-0.0305f,-0.133f,-0.106f,0.0734f,-0.0313f,0.0183f,-0.000961f,-0.00964f,-0.31f,-0.0304f,-0.203f,0.0338f,-0.113f,0.102f,-0.0235f,0.212f,-0.042f,0.072f,0.0856f,0.11f,0.00155f,-0.0923f,0.0731f,0.0213f,-0.00681f,-0.137f,-0.00207f,0.153f,-0.2f,0.157f,-0.00427f,0.00907f,0.0726f,0.187f,0.111f,0.123f,0.00524f,0.14f,0.099f,0.0712f,0.179f,-0.109f,0.107f,-0.0705f,0.0949f,-0.055f,0.13f,0.0512f,-0.243f,0.0238f,0.0111f,0.026f,0.0223f,0.0118f,0.114f,0.0606f,0.12f,0.0997f,-0.0261f,-0.0807f,-0.0165f,0.115f,0.141f,-0.058f,-0.0144f,0.0635f,-0.216f,0.0363f,0.0573f,0.0678f,-0.0855f,0.0398f,0.207f,-0.179f,-0.155f,-0.0161f,0.16f,-0.0937f,0.0673f,0.135f,0.0336f,-0.0551f,-0.0563f,0.0457f,0.0296f,0.0389f,-0.0665f,-0.0642f,-0.0418f,0.0244f,0.0512f,0.0121f,0.0826f,-0.171f,0.0756f,0.00722f,-0.0265f,0.0368f,0.0573f,0.12f,-0.0564f,0.00842f,0.0163f,0.0563f,-0.0972f,-0.149f,0.101f,-0.0344f,-0.0308f,-0.0444f,-0.122f,0.0166f,-0.0664f,-0.096f,-0.026f,-0.0489f,-0.00997f,-0.217f,0.0425f,-0.125f,0.24f,-0.105f,0.236f,-0.182f,0.18f,-0.0212f,0.0631f,-0.144f,0.00369f,-0.193f,0.05f,-0.0813f,0.0127f,0.0959f,0.0411f,-0.137f,0.166f,-0.103f,-0.00648f,-0.221f,0.0991f,-0.0915f,0.0908f,-0.0386f,-0.0122f,-0.00308f,0.0251f,-0.0664f,0.0695f,0.114f,0.0702f,0.00852f,0.0534f,0.0416f,0.0136f,0.0142f,-0.0029f,0.175f,0.103f,-0.00637f,0.0151f,-0.0173f,0.178f,-0.00864f,-0.143f,-0.0526f,0.0276f,-0.0766f,0.0631f,0.0546f,0.12f,-0.017f,-0.134f,-0.0244f,-0.113f,0.0434f,0.0425f,0.0702f,-0.0479f,0.14f,-0.05f,0.0968f,-0.022f,-0.19f,-0.085f,-0.135f,0.0726f,-0.215f,0.0424f,-0.0126f,0.0975f,-0.113f,-0.115f,0.0213f,0.0753f,0.127f,0.0283f,0.0399f,0.0182f,-0.054f,-0.148f,-0.138f,-0.0793f,-0.0239f,0.0685f,0.0789f,0.115f,0.182f,-0.102f,0.13f,-0.0784f,-0.0495f,-0.167f,0.208f,-0.398f,0.114f,0.0217f,-0.0726f,-0.0207f,0.0644f,0.0843f,-0.0032f,0.012f,-0.0788f,-0.0318f,0.0282f,-0.0118f,-0.195f,0.00909f,-0.0703f,0.0783f,0.0974f,0.0432f,0.0873f,-0.139f,0.0105f,-0.041f,-0.0578f,-0.0838f,-0.0918f,-0.0305f,-0.14f,-0.0487f,0.018f,0.14f,-0.0329f,0.12f,0.123f,0.0438f,-0.109f,-0.146f,0.0531f,-0.00171f,0.236f,0.0396f,0.00767f,-0.0179f,-0.0228f,-0.00146f,-0.123f,0.154f,0.0436f,0.0575f,0.071f,0.0045f,-0.126f,-0.019f,-0.0748f,-0.0561f,-0.0169f,0.0674f,0.0255f,-0.0256f,0.0643f,0.00848f,-0.0309f,0.118f,0.103f,-0.07f,0.0608f,0.084f,-0.0403f,-0.224f,-0.0502f,0.000214f,0.0222f,-0.157f,-0.0457f,0.011f,0.127f,-0.0255f,0.0339f,0.103f,0.154f,0.0228f,-0.146f,-0.179f,-0.0588f,-0.0428f,0.0309f,-0.316f,0.136f,0.0486f,0.0462f,0.0162f,0.00525f,0.103f,0.0267f,0.109f,-0.0887f,-0.257f,-0.0458f,-0.0211f,0.0882f,0.0503f,-0.17f,0.0954f,-0.0104f,-0.0217f,-0.102f,-0.247f,0.0373f,0.0404f,-0.021f,0.0716f,0.237f,-0.14f,-0.0684f,-0.0155f,-0.0422f,0.0518f,-0.171f,0.102f,-0.174f,0.0343f,-0.0277f,0.0505f,-0.0967f,-0.142f,0.0932f,0.044f,-0.0415f,0.107f,-0.0192f,-0.0427f,-0.178f,0.11f,0.0302f,-0.0124f,0.0403f,-0.0156f,-0.0901f,-0.0317f,-0.00187f,-0.00234f,0.0912f,0.00442f,-0.065f,-0.0653f,0.11f,-0.0599f,0.136f,0.0871f,-0.204f,0.0424f,-0.0377f,-0.0397f,-0.00472f,-0.0408f,0.0666f,-0.0303f,0.0579f,0.0424f,0.0969f,0.0166f,0.0212f,0.019f,0.0411f,-0.0858f,0.00459f,0.0653f,-0.199f,-0.117f,0.0926f,0.0213f,-0.0298f,-0.0738f,-0.0348f,0.00709f,0.0538f,-0.11f,-0.034f,-0.0911f,-0.0545f,-0.101f,0.2f,0.0353f,-0.0467f,-0.00521f,0.00796f,-0.0573f,-0.0465f,0.0501f,0.262f,-0.0335f,0.00877f,-0.00677f,-0.0863f,-0.0705f,-0.0757f,0.000396f,-0.0334f,-0.101f,0.114f,-0.0896f,-0.0557f,-0.0151f,0.016f,-0.0321f,-0.0169f,-0.0769f,0.0438f,-0.243f,-0.0387f,-0.0457f,-0.0276f,0.0405f,0.0375f,0.0412f,-0.2f,-0.104f,0.0216f,-0.114f,-0.0647f,0.0239f,0.0625f,-0.0864f,-0.199f,0.00647f,0.0269f,0.0907f,-0.183f,-0.0154f,-0.0354f,0.162f,-0.101f,-0.0833f,-0.0975f,0.104f,-0.118f,0.165f,0.0736f,-0.00571f,-0.127f,-0.0801f,0.0693f,-0.0223f,-0.0296f,-0.0984f,0.172f,-0.0754f,-0.00821f,-0.0651f,-0.127f,0.0739f,-0.127f,0.0193f,0.058f,-0.298f,-0.0989f,-0.0117f,-0.0491f,-0.0948f,-0.0931f,0.00305f,-0.0434f,-0.124f,0.0695f,-0.0907f,-0.0502f,0.0384f,0.0421f,-0.0232f,-0.0394f,-0.183f,0.0622f,0.0494f,0.128f,0.294f,-0.0379f,0.0542f,0.00646f,-0.106f,-0.13f,-0.152f,-0.0546f,0.0239f,0.00327f,-0.0096f,0.0908f,0.029f,-0.0778f,-0.0307f,-0.0596f,-0.0426f,-0.000722f,-0.213f,-0.00723f,0.0581f,0.0662f,-0.0241f,-0.152f,-0.157f,0.103f,-0.0974f,-0.00563f,0.0222f,-0.0299f,-0.24f,-0.136f,-0.0676f,-0.0589f,-0.0181f,0.0555f,0.0439f,0.0228f,0.0497f,-0.0693f,0.0421f,0.0186f,0.0446f,0.137f,0.0159f,0.0224f,0.115f,-0.0263f,-0.0704f,0.154f,0.0137f,0.0146f,0.0185f,-0.105f,0.109f,0.125f,0.0655f,0.0302f,0.0818f,0.0558f,-0.233f,0.0969f,-0.0625f,-0.141f,0.024f,-0.035f,0.00811f,-0.115f,-0.0101f,-0.0294f,-0.0372f,0.0782f,0.0336f,-0.00165f,0.0698f,-0.0111f,-0.0684f,0.00419f,-0.00043f,-0.024f,0.215f,-0.0817f,-0.0464f,0.0836f,0.0251f,0.105f,-0.0192f,0.104f,-0.00399f,0.0443f,-0.123f,0.116f,-0.00465f,-0.176f,0.146f,-0.321f,0.0324f,-0.0914f,0.0168f,0.0468f,-0.193f,-0.0933f,-0.149f,-0.0514f,0.0283f,-0.0746f,0.00232f,-0.0769f,-0.256f,-0.00722f,0.0596f,-0.091f,-0.0249f,0.055f,0.0154f,-0.129f,0.0546f,0.227f,0.105f,0.136f,-0.00409f,-0.0659f,-0.205f,-0.0695f,-0.0212f,-0.129f,0.0769f,-0.103f,-0.0255f,-0.0291f,0.00696f,0.0732f,-0.0175f,-0.0428f,0.138f,0.0115f,-0.0285f,0.0646f,0.087f,-0.0244f,-0.00439f,-0.0709f,-0.174f,-0.032f,0.0375f,-0.0539f,-0.0368f,-0.0126f,0.0806f,0.0224f,-0.101f,-0.0157f,-0.0619f,-0.0675f,-0.0866f,-0.0949f,0.114f,-0.0584f,0.0858f,-0.0756f,-0.035f,-0.0417f,-0.103f,-0.0872f,-0.0646f,0.028f,0.106f,-0.0717f,-0.0183f,0.0547f,-0.0577f,-0.0871f,0.162f,0.0828f,-0.0408f,0.0556f,0.0261f,-0.0853f,-0.0563f,0.117f,-0.0933f,0.068f,-0.0626f,-0.00375f,0.145f,0.0452f,-0.152f,0.0324f,0.0814f,-0.0367f,0.27f,0.00227f,-0.051f,0.0634f,-0.0218f,0.0135f,0.0741f,0.0981f,-0.0186f,0.313f,0.012f,0.0619f,-0.0932f,-0.0576f,0.0988f,-0.0301f,-0.0856f,0.00694f,-0.0293f,0.0145f,0.0506f,-0.0995f,-0.0384f,-0.0442f,0.0963f,0.0871f,-0.00788f,0.0292f,-0.268f,-0.018f,0.0726f,0.0382f,-0.00431f,0.109f,-0.0945f,0.0118f,0.0405f,0.0534f,-0.038f,-0.0481f,-0.00693f,0.0278f,-0.0671f,-0.0197f,-0.166f,0.028f,-0.0144f,-0.0323f,-0.0299f,-0.0886f,-0.138f,0.00462f,-0.0275f,-0.0665f,0.0276f,-0.0318f,0.0452f,-0.057f,-0.0517f,-0.0588f,-0.0195f,-0.0512f,-0.0302f,-0.00198f,-0.0387f,-0.0411f,0.0597f,-0.00432f,0.064f,-0.105f,0.0321f,-0.0168f,-0.118f,0.00863f,-0.0241f,-0.00588f,0.0251f,0.0858f,0.0877f,-0.0656f,0.198f,-0.0349f,0.0806f,0.0476f,0.11f,-0.0548f,0.0767f,0.0531f,-0.158f,0.00105f,0.0384f}; +float backbone__model3_dp1_pw_bias[64] = {0.0539f,-0.0192f,-0.217f,0.298f,-0.105f,0.0201f,0.14f,0.0285f,0.0546f,0.00356f,0.02f,0.0401f,-0.0146f,-0.0131f,0.141f,0.206f,0.102f,-0.0759f,0.0982f,0.0877f,-0.0524f,0.0432f,0.00549f,0.0884f,0.0991f,-0.133f,0.0376f,0.288f,-0.0912f,0.034f,0.0632f,-0.00751f,0.024f,-0.143f,0.14f,0.0607f,0.11f,-0.0787f,0.0862f,0.12f,-0.0728f,-0.0174f,-0.0874f,-0.0353f,-0.127f,-0.0615f,-0.12f,0.0799f,-0.0658f,-0.0625f,0.0143f,0.0428f,0.0223f,0.143f,-0.015f,0.0365f,-0.282f,0.0376f,-0.00817f,0.128f,-0.00684f,0.0424f,0.152f,0.0364f}; +float backbone__model3_dp1_dw_weight[64*1*3*3] = {-0.196f,-0.0813f,0.0936f,-0.437f,0.467f,0.708f,-0.0124f,-0.192f,0.119f,0.383f,-0.677f,0.307f,-0.157f,0.186f,-0.168f,0.0329f,-0.345f,0.45f,0.5f,0.395f,0.155f,0.638f,0.499f,-0.111f,-0.337f,-0.948f,0.137f,0.255f,-0.359f,0.0809f,-0.574f,-0.0557f,-1.35f,0.418f,-0.219f,-0.119f,-0.206f,0.011f,-0.099f,-0.608f,-0.213f,0.639f,0.396f,0.624f,0.732f,-0.269f,-0.41f,0.35f,-0.027f,-0.277f,-0.159f,0.734f,0.13f,-0.255f,0.201f,0.0738f,0.186f,-0.0846f,0.35f,-0.413f,-0.658f,0.0557f,-1.48f,0.909f,-0.254f,0.931f,-0.147f,-1.04f,0.955f,0.973f,-0.413f,0.636f,0.116f,0.174f,-0.735f,-0.22f,1.1f,-0.399f,0.237f,0.117f,-1.74f,0.354f,0.121f,0.0503f,1.29f,0.118f,-0.391f,-0.0735f,-0.393f,0.528f,0.198f,0.0453f,-0.586f,-0.185f,0.0737f,0.49f,-0.754f,0.276f,-0.221f,0.148f,-0.197f,-1.05f,-0.126f,-0.828f,-1.24f,0.16f,1.17f,-0.583f,0.0649f,0.0331f,-1.04f,0.453f,-0.0119f,-0.0763f,-0.276f,0.473f,0.219f,-0.646f,-0.329f,0.527f,0.292f,-0.703f,0.918f,-0.812f,-0.577f,-0.312f,-1.06f,0.222f,-0.184f,0.44f,-0.0154f,-0.424f,-0.0414f,0.379f,0.0439f,0.695f,-0.307f,0.24f,-0.129f,0.0354f,0.635f,0.188f,0.0209f,0.0611f,-0.0698f,-0.559f,-0.347f,-0.936f,0.331f,-0.241f,-0.72f,-0.484f,0.0177f,0.429f,0.0309f,0.284f,-0.418f,-0.0317f,0.841f,0.551f,0.209f,0.246f,0.722f,-0.195f,-0.292f,-0.219f,-0.00187f,-1.07f,-0.193f,-0.761f,0.524f,-0.232f,-0.315f,0.0627f,-0.0975f,0.365f,-0.424f,-0.0919f,-0.182f,0.617f,0.084f,-0.0665f,-0.209f,-0.0152f,0.492f,-0.58f,0.462f,-0.269f,-0.827f,-0.451f,-0.409f,-0.486f,-0.198f,0.298f,-0.543f,-0.384f,-0.219f,-0.0582f,-0.367f,0.393f,0.358f,0.189f,0.213f,0.168f,0.564f,-0.228f,-0.0618f,0.419f,-0.106f,0.696f,1.05f,0.837f,0.815f,0.673f,0.855f,0.172f,-0.292f,-1.09f,0.331f,0.165f,0.296f,-0.142f,-0.906f,-0.455f,-0.118f,-0.199f,-0.159f,-0.0603f,0.558f,-0.0427f,-0.343f,0.257f,0.204f,0.449f,0.0472f,0.72f,-0.0668f,-0.126f,0.138f,0.289f,0.405f,-0.948f,-0.167f,0.302f,-0.116f,0.179f,-0.908f,0.308f,-0.429f,-0.422f,-0.138f,-0.336f,-0.093f,0.0384f,-0.45f,0.14f,-0.187f,0.0897f,-1.28f,1.53f,-1.37f,0.0117f,-0.262f,0.395f,1.86f,0.873f,-0.877f,0.188f,0.0255f,-0.423f,-0.492f,2.13f,1.29f,0.253f,-1.53f,0.812f,0.178f,-0.421f,0.315f,-0.134f,-0.745f,-0.11f,0.246f,0.475f,-0.0793f,-0.611f,0.321f,0.142f,1.49f,0.212f,0.0284f,-0.359f,-0.597f,-1.71f,-0.2f,0.669f,-0.095f,-0.253f,0.577f,-0.437f,0.571f,-0.822f,0.174f,0.528f,0.191f,0.0599f,0.489f,0.584f,-1.88f,-0.865f,-0.286f,0.286f,-2.41f,-0.284f,0.949f,0.529f,-0.0921f,-0.52f,1.66f,0.658f,-0.0472f,-0.362f,0.515f,0.0361f,-0.0804f,-0.387f,-0.298f,0.261f,0.395f,0.329f,0.000651f,0.169f,-0.855f,-0.322f,-0.251f,-0.322f,0.758f,-0.652f,-0.27f,-1.73f,-0.478f,-0.475f,-0.751f,-0.451f,-0.466f,0.159f,0.142f,0.0752f,-0.594f,-0.0218f,0.581f,0.293f,0.426f,0.543f,0.513f,-0.25f,-0.303f,0.195f,-0.101f,-0.0385f,-0.176f,-0.882f,0.0117f,-0.393f,0.178f,1.73f,-0.0577f,0.399f,-0.953f,-0.0446f,-0.132f,0.274f,-0.254f,0.805f,-0.0976f,0.347f,0.264f,0.817f,-0.152f,-0.175f,0.292f,0.202f,0.0891f,-1.03f,0.125f,0.48f,0.994f,-0.675f,-0.498f,-0.572f,-0.168f,0.564f,-0.879f,0.118f,0.865f,0.925f,0.375f,-0.0686f,1.51f,-0.11f,-0.368f,0.454f,0.689f,-0.273f,0.216f,0.747f,0.665f,-0.294f,-0.115f,-0.149f,0.426f,0.821f,0.365f,0.283f,0.145f,-0.397f,0.422f,0.103f,-0.0312f,-0.164f,0.228f,0.14f,0.396f,0.588f,0.775f,0.597f,0.0456f,0.482f,-0.104f,-0.0119f,0.115f,0.39f,0.532f,0.0656f,0.27f,-0.468f,-0.356f,-0.021f,-0.86f,0.67f,0.324f,-0.212f,-0.707f,0.465f,0.555f,-0.436f,0.327f,0.379f,-1.12f,-0.172f,1.04f,-0.227f,-0.133f,-0.885f,-0.439f,0.201f,-1.02f,0.491f,1.07f,0.386f,-0.0108f,-0.646f,0.0689f,-0.516f,0.886f,-0.000224f,0.649f,0.91f,-0.835f,-0.104f,0.3f,-0.714f,-0.232f,0.424f,0.474f,0.672f,0.652f,2.44f,-0.178f,-1.2f,0.262f,0.132f,0.194f,-1.14f,-0.853f,0.339f,-1.32f,0.9f,0.752f,0.361f,0.35f,0.267f,0.239f,-2.94f,-0.00262f,0.489f,1.11f,-0.418f,0.819f,-1.16f,0.43f,-0.139f,0.407f,0.573f,0.694f,1.02f,-0.698f,0.861f,0.309f,-0.368f,0.0384f,0.461f,-0.318f,0.0163f,0.261f,0.0437f,-0.172f,-0.615f,-0.237f,0.0644f,-0.203f,0.0183f,0.586f,0.0745f,-0.0928f,-0.176f,1.02f,-0.0819f,1.23f,-1.05f,-0.00376f,-0.269f,-0.579f,-0.266f,-0.451f,0.176f,-0.251f,0.017f,0.29f,0.608f,-0.534f,-0.334f,0.228f,0.0855f,0.382f,0.257f,0.534f,0.283f,-0.363f,0.279f,-0.498f,0.719f,0.623f,-0.492f,-0.0799f,-0.354f,0.341f,0.273f,0.0369f,0.248f,0.222f,-0.00527f,0.0718f,-0.286f,-0.529f,-0.281f,0.464f,0.64f,0.371f,0.987f,-0.387f,0.547f,0.778f,-0.109f,0.0725f,-0.836f}; +float backbone__model3_dp1_dw_bias[64] = {0.434f,0.132f,0.473f,0.715f,0.234f,0.0308f,0.22f,0.444f,-0.0272f,-0.924f,0.0161f,-0.0277f,0.0863f,0.41f,0.202f,-0.141f,-0.112f,-0.00868f,0.248f,-0.184f,0.107f,0.246f,0.0176f,0.571f,0.591f,0.103f,0.0908f,-0.579f,0.357f,-0.205f,0.184f,0.114f,-0.161f,0.248f,0.0293f,0.514f,0.529f,-0.0154f,0.471f,0.0694f,-0.0697f,0.0865f,0.206f,0.281f,0.326f,-0.166f,-0.0933f,0.424f,0.117f,0.134f,-0.171f,-0.0725f,0.256f,0.273f,-0.053f,-0.338f,-0.348f,0.0602f,0.203f,0.237f,0.0886f,-0.147f,-0.00406f,-0.0371f}; +float backbone__model3_dp2_pw_weight[64*64*1*1] = {-0.0102f,0.0463f,-0.0569f,-0.125f,-0.16f,0.096f,0.135f,0.0454f,0.0655f,0.266f,0.0106f,-0.0856f,0.108f,0.117f,0.0724f,-0.201f,-0.00418f,-0.146f,-0.129f,-0.2f,0.0114f,-0.021f,-0.00767f,0.0872f,0.16f,0.0823f,0.0138f,0.133f,-0.145f,0.0761f,0.0954f,0.109f,0.131f,0.218f,-0.046f,-0.0791f,0.107f,-0.0798f,-0.11f,0.00749f,-0.103f,0.0815f,-0.04f,-0.0329f,0.015f,0.0583f,-0.0988f,0.19f,-0.0152f,0.145f,0.0168f,-0.0382f,-0.131f,0.00883f,0.173f,0.135f,-0.0168f,0.167f,0.138f,-0.0571f,0.00733f,-0.12f,0.104f,-0.0202f,0.111f,0.0336f,-0.0109f,0.0166f,-0.103f,-0.113f,0.0637f,0.19f,-0.0438f,-0.00396f,0.0216f,-0.0579f,0.0135f,0.0593f,-0.0174f,0.00774f,-0.00115f,0.0473f,-0.0928f,0.0125f,0.0304f,-0.0141f,-0.121f,-0.0457f,-0.0747f,-0.3f,-0.0317f,0.0351f,-0.178f,-0.0467f,-0.112f,0.0648f,0.225f,0.146f,0.0383f,0.00443f,0.0224f,-0.0232f,0.0475f,0.0735f,0.0525f,-0.0368f,-0.114f,0.149f,0.137f,-0.0325f,-0.29f,-0.272f,-0.0177f,-0.00206f,-0.00437f,-0.125f,-0.0961f,-0.000875f,0.0952f,-0.0278f,-0.0253f,0.114f,-0.162f,-0.00908f,0.123f,-0.0909f,0.0518f,0.0322f,0.0291f,0.0816f,0.0504f,0.0281f,-0.0339f,0.0263f,-0.142f,-0.0178f,-0.0215f,-0.0682f,0.0331f,0.0486f,-0.0583f,-0.173f,0.0204f,0.0836f,-0.0502f,0.167f,0.0607f,-0.000423f,0.0221f,-0.0333f,-0.0574f,-0.109f,-0.106f,0.125f,-0.114f,0.022f,0.0301f,-0.0332f,0.0838f,0.00154f,-0.147f,-0.102f,-0.0417f,-0.178f,-0.0871f,0.0449f,-0.0209f,-0.074f,-0.0964f,0.0423f,-0.0367f,-0.171f,-0.0355f,0.0214f,0.0512f,-0.122f,-0.0815f,-0.0179f,-0.101f,-0.0827f,-0.0561f,-0.103f,0.0118f,-0.166f,-0.0401f,-0.0289f,0.0516f,-0.127f,0.0675f,-0.121f,-0.034f,-0.0481f,0.0293f,-0.139f,0.0721f,0.0201f,-0.186f,0.0153f,-0.0181f,-0.2f,-0.0522f,-0.0971f,-0.000705f,-0.0639f,0.0743f,-0.0675f,0.023f,0.0145f,-0.00161f,-0.147f,-0.0412f,-0.0056f,-0.0152f,-0.0285f,-0.102f,0.0322f,-0.17f,-0.169f,0.0442f,-0.0799f,0.0154f,0.144f,-0.145f,-0.0842f,-0.0407f,-0.0567f,0.0373f,0.0955f,0.155f,-0.0613f,0.071f,-0.256f,0.0105f,-0.157f,-0.0773f,-0.00799f,0.091f,0.014f,-0.235f,-0.129f,-0.0338f,-0.00288f,0.186f,-0.0791f,0.116f,0.112f,-0.105f,-0.043f,0.0742f,-0.129f,-0.243f,0.0738f,0.0717f,0.169f,-0.0152f,-0.105f,0.00514f,-0.141f,-0.226f,-0.133f,-0.136f,0.00248f,0.0363f,-0.221f,0.00351f,-0.0677f,-0.154f,0.0539f,0.0497f,0.0685f,-0.0437f,0.00674f,0.0034f,-0.0702f,-0.162f,0.0431f,0.0256f,-0.0645f,0.102f,-0.00544f,-0.0982f,-0.233f,-0.188f,0.0693f,0.0796f,-0.0706f,0.0224f,0.0634f,0.019f,0.0178f,-0.0471f,-0.17f,-0.229f,-0.0266f,-0.0972f,0.00518f,0.0345f,-0.113f,-0.167f,-0.0776f,-0.166f,0.0444f,0.0473f,-0.241f,0.029f,-0.00445f,-0.2f,-0.0676f,-0.121f,0.0603f,0.108f,-0.0986f,-0.0996f,-0.187f,-0.165f,-0.126f,0.0445f,-0.136f,-0.124f,-0.0294f,-0.104f,-0.103f,0.0511f,-0.127f,0.0186f,0.0228f,-0.0412f,-0.0386f,-0.0318f,-0.0717f,0.209f,-0.0212f,0.0779f,0.0522f,-0.12f,0.00147f,0.0191f,0.0224f,0.0806f,0.0977f,-0.0251f,-0.0699f,0.155f,-0.246f,0.0777f,0.00873f,-0.165f,-0.201f,0.154f,-0.0398f,0.128f,-0.0977f,0.0204f,0.0924f,0.142f,0.301f,0.0523f,0.0643f,-0.0179f,-0.128f,0.111f,0.0704f,-0.00551f,0.0521f,-0.134f,-0.0111f,-0.0329f,-0.238f,0.0869f,-0.0858f,-0.0679f,0.0591f,0.00787f,-0.00576f,-0.115f,0.0589f,-0.0801f,0.0136f,-0.0341f,0.0414f,-0.0982f,-0.0557f,-0.0631f,-0.0426f,-0.0262f,0.0898f,-0.0326f,0.0198f,0.0283f,0.0221f,0.0514f,0.153f,-0.0242f,0.0882f,-0.168f,0.0409f,-0.116f,-0.0502f,0.00621f,0.0516f,0.0338f,0.0675f,0.0538f,-0.0366f,-0.000229f,0.0966f,-0.125f,-0.0993f,-0.0665f,0.0443f,0.0204f,0.00421f,-0.056f,0.0583f,0.33f,-0.0778f,0.0694f,-0.0435f,0.279f,-0.0609f,0.0477f,-0.00185f,-0.0373f,-0.0938f,-0.142f,0.243f,0.0952f,0.0711f,0.0711f,0.0437f,0.342f,0.184f,-0.143f,-0.0789f,0.0242f,-0.0312f,0.093f,0.0772f,-0.0205f,-0.0848f,0.00329f,0.107f,0.0566f,-0.0287f,-0.0522f,-0.0565f,0.0939f,0.0948f,-0.0893f,-0.18f,-0.016f,-0.0434f,-0.14f,-0.109f,-0.114f,0.00637f,0.0542f,-0.00396f,-0.0998f,-0.143f,0.193f,-0.0829f,0.163f,0.057f,-0.124f,-0.0517f,0.0436f,-0.0705f,-0.164f,-0.0617f,-0.00602f,0.132f,0.00631f,-0.124f,-0.0475f,-0.102f,-0.103f,0.0286f,0.00482f,0.189f,0.103f,-0.00372f,-0.197f,0.0204f,0.0545f,-0.0469f,0.0621f,-0.16f,-0.0302f,-0.124f,-0.00266f,0.2f,0.0965f,0.27f,-0.21f,-0.101f,-0.0948f,-0.16f,-0.071f,0.0866f,0.0127f,0.131f,-0.0841f,0.0349f,-0.0215f,-0.0765f,-0.133f,-0.199f,-0.0431f,-0.0744f,0.185f,-0.125f,0.00871f,-0.00775f,0.0259f,-0.11f,-0.132f,0.154f,0.127f,0.0222f,0.0577f,0.0786f,0.165f,0.0419f,-0.0802f,0.057f,0.072f,0.0251f,-0.109f,0.0935f,0.0789f,-0.0211f,-0.034f,-0.258f,0.0162f,-0.0103f,0.077f,0.0599f,0.0712f,0.0513f,0.0271f,0.0354f,0.151f,0.0197f,0.0155f,0.0827f,-0.276f,-0.0757f,-0.128f,-0.118f,0.0129f,0.0815f,-0.128f,0.151f,-0.0407f,0.279f,0.00336f,0.0956f,-0.157f,0.113f,1.41e-05f,-0.0795f,0.00413f,0.142f,0.075f,-0.0305f,0.0478f,0.22f,0.0102f,0.163f,0.115f,0.0647f,0.0573f,-0.000214f,0.136f,0.0585f,-0.0709f,-0.0541f,-0.0915f,0.192f,0.00164f,-0.0115f,-0.0819f,-0.135f,0.0079f,-0.0525f,-0.0887f,-0.128f,-0.0588f,0.0242f,0.0156f,-0.0739f,0.0939f,0.0571f,0.0945f,0.0502f,0.0716f,0.22f,-0.0417f,0.143f,-0.088f,-0.134f,-0.0847f,-0.042f,-0.0182f,0.0257f,0.074f,-0.000319f,-0.062f,-0.0252f,-0.119f,0.0808f,-0.185f,0.256f,0.0447f,-0.0301f,-0.0606f,-0.012f,0.146f,-0.0286f,0.105f,0.0933f,0.101f,0.00604f,0.0642f,0.0264f,0.0328f,-0.143f,0.019f,0.0602f,-0.0935f,-0.0959f,0.157f,-0.132f,-0.0928f,-0.165f,-0.111f,-0.0275f,0.0125f,0.0311f,0.0419f,0.0196f,0.0476f,0.0493f,-0.0698f,0.132f,0.183f,-0.0134f,-0.00399f,0.00136f,0.121f,0.192f,-0.0796f,0.0606f,0.0812f,0.0568f,-0.0722f,0.0882f,0.0336f,0.0253f,0.0501f,-0.0379f,0.0102f,-0.00853f,0.0883f,0.0491f,0.0551f,0.199f,-0.0291f,0.0331f,0.115f,-0.175f,-0.077f,0.0564f,0.014f,-0.119f,-0.0806f,-0.0628f,-0.081f,0.0895f,-0.0819f,0.104f,-0.0837f,0.213f,-0.159f,0.138f,0.177f,0.224f,0.00825f,0.132f,-0.0558f,-0.145f,-0.0185f,-0.0278f,0.116f,-0.133f,-0.0657f,-0.0381f,0.0232f,0.0927f,-0.0563f,-0.0943f,-0.159f,-0.0649f,0.142f,-0.103f,-0.28f,-0.198f,-0.135f,0.0786f,0.268f,0.0275f,0.132f,0.222f,0.0154f,0.107f,0.0269f,-0.07f,0.0865f,0.0138f,-0.12f,0.158f,0.0739f,-0.116f,0.177f,-0.0448f,-0.0626f,0.109f,0.055f,0.102f,0.0705f,0.161f,-0.15f,0.0254f,-0.00481f,0.0264f,0.0537f,0.0769f,0.168f,-0.197f,-0.123f,-0.195f,0.149f,0.135f,0.157f,0.128f,-0.235f,-0.00858f,-0.121f,0.117f,0.057f,0.0567f,-0.00394f,0.188f,0.000578f,0.133f,0.124f,0.00966f,0.117f,0.0897f,0.0393f,0.011f,-0.0223f,0.00582f,0.131f,-0.0528f,0.0494f,-0.0636f,-0.119f,0.142f,0.0675f,0.118f,0.151f,0.0211f,0.0266f,-0.171f,-0.0118f,-0.0178f,0.0209f,0.0331f,-0.0526f,-0.0418f,-0.154f,-0.0654f,0.135f,0.0458f,-0.0391f,0.121f,-0.0371f,0.0805f,-0.0612f,0.0296f,-0.0708f,-0.0938f,-0.00594f,-0.0544f,-0.0713f,-0.157f,-0.000554f,-0.144f,-0.022f,-0.0605f,-0.064f,0.0227f,0.0572f,0.156f,0.0186f,0.0397f,0.0711f,-0.0357f,0.0903f,-0.117f,0.145f,-0.151f,0.152f,0.0231f,-0.00682f,0.0318f,0.0329f,-0.244f,-0.103f,-0.0172f,-0.0227f,-0.0412f,-0.128f,-0.0556f,-0.214f,0.0416f,-0.0636f,-0.0183f,-0.139f,0.028f,0.162f,-0.122f,-0.142f,-0.159f,-0.0197f,-0.0172f,0.0245f,0.126f,-0.0313f,0.121f,0.0899f,-0.0739f,-0.149f,0.0425f,0.0296f,-0.171f,-0.0033f,0.0838f,-0.0156f,-0.0384f,0.0806f,0.144f,-0.0386f,0.0836f,0.142f,0.134f,0.142f,0.0438f,-0.116f,0.000433f,-0.0319f,0.0146f,-0.125f,-0.0213f,0.0478f,-0.049f,-0.157f,0.054f,0.107f,0.0989f,-0.0954f,0.103f,-0.0332f,0.0943f,0.0198f,0.0381f,0.272f,0.15f,0.188f,0.173f,-0.000316f,-0.0126f,-0.17f,0.0186f,0.0874f,0.00838f,-0.137f,0.081f,0.111f,-0.143f,0.0536f,0.00798f,0.0334f,-0.0557f,0.126f,0.0806f,0.0878f,0.13f,0.0285f,-0.0444f,-0.0305f,-0.115f,0.00982f,-0.149f,0.07f,0.0845f,0.149f,0.0867f,-0.0142f,0.0926f,0.0223f,-0.0389f,0.0305f,-0.0185f,0.0463f,-0.0533f,0.0475f,0.0606f,0.0165f,-0.0892f,-0.0867f,-0.166f,-0.033f,0.0858f,-0.167f,0.0678f,-0.0532f,0.0144f,-0.0526f,-0.0358f,-0.00433f,0.129f,-0.0285f,0.15f,0.0512f,-0.0835f,0.059f,-0.194f,0.0726f,0.067f,-0.129f,-0.191f,0.04f,0.0116f,0.0817f,0.119f,-0.0679f,0.0924f,-0.122f,0.0404f,0.101f,0.051f,-0.107f,0.0537f,0.0708f,0.0968f,0.0472f,0.0411f,-0.0599f,0.121f,-0.0115f,0.0529f,-0.06f,-0.119f,0.0432f,0.0382f,-0.0156f,-0.164f,-0.00132f,-0.209f,-0.155f,-0.145f,-0.0103f,-0.0707f,-0.0681f,-0.0972f,0.134f,0.0145f,0.0764f,-0.00866f,-0.0211f,0.0663f,0.0322f,-0.0837f,-2.49e-05f,-0.161f,0.00554f,-0.0716f,-0.0454f,0.0614f,0.212f,-0.017f,-0.0099f,0.0862f,0.0117f,-0.124f,-0.0712f,-0.103f,0.109f,0.121f,-0.0303f,0.035f,0.113f,-0.0557f,-0.0235f,-0.213f,0.046f,-0.0483f,0.0365f,0.0484f,-0.223f,-0.0183f,-0.0279f,-0.138f,0.0606f,0.1f,0.0657f,0.127f,-0.304f,0.0249f,-0.0914f,0.0704f,0.125f,0.037f,-0.0184f,-0.0564f,-0.0634f,0.126f,0.0699f,0.163f,-0.0116f,0.0205f,0.0935f,0.144f,0.137f,0.138f,-0.0243f,-0.00551f,0.0384f,-0.0146f,0.0232f,0.309f,-0.107f,-0.162f,-0.0457f,-0.187f,0.0631f,0.104f,-0.032f,0.00704f,0.11f,-0.0361f,-0.0632f,0.142f,0.0637f,-0.00302f,0.0969f,-0.13f,0.0461f,-0.098f,0.14f,-0.0469f,0.123f,-0.0486f,-0.0696f,0.137f,-0.115f,0.0899f,-0.0146f,0.000337f,-0.273f,0.0256f,0.0589f,0.01f,-0.0635f,-0.364f,0.0987f,0.0797f,-0.0353f,0.066f,0.158f,0.0954f,0.126f,-0.0289f,-0.0721f,0.00785f,-0.0778f,0.112f,-0.0684f,0.0185f,-0.0311f,-0.0598f,-0.14f,-0.0892f,0.266f,-0.0364f,-0.0316f,-0.166f,0.00136f,-0.0233f,0.274f,-0.0343f,-0.0401f,-0.0835f,0.0379f,0.0354f,-0.148f,0.198f,-0.112f,0.131f,-0.0524f,-0.0862f,-0.108f,-0.0147f,-0.0709f,-0.0651f,0.0609f,-0.0342f,-0.0275f,-0.0881f,-0.183f,0.074f,0.0182f,0.116f,0.139f,-0.0541f,-0.0253f,-0.0859f,0.235f,0.0897f,0.122f,0.232f,-0.0559f,-0.0509f,-0.0542f,0.0536f,0.0544f,0.138f,-0.135f,-0.0183f,-0.041f,-0.00522f,-0.0506f,-0.0607f,-0.0328f,-0.0781f,-0.0287f,-0.0847f,0.144f,0.0174f,0.169f,-0.0612f,-0.184f,-0.152f,-0.0679f,0.0311f,0.0792f,0.0448f,0.0234f,0.269f,0.0828f,0.00473f,-0.0116f,-0.0348f,0.055f,-0.206f,0.0419f,-0.0125f,0.0346f,0.0251f,0.0838f,0.0608f,0.0497f,0.208f,-0.00469f,0.0679f,0.0391f,0.0906f,-0.0622f,0.0337f,0.0457f,0.034f,-0.0657f,0.117f,-0.0221f,0.0248f,-0.105f,-0.0796f,0.152f,0.0893f,-0.0464f,0.0686f,-0.0549f,0.144f,-0.0295f,-0.00754f,0.175f,0.132f,0.136f,0.174f,0.0127f,0.00228f,-0.223f,0.0735f,0.0267f,0.00901f,-0.12f,0.0231f,0.13f,-0.108f,-0.017f,0.0356f,-0.0228f,0.0278f,-0.00217f,-0.11f,0.0694f,-0.0942f,0.0218f,-0.0501f,0.084f,-0.124f,0.0998f,0.139f,-0.0365f,0.0981f,0.226f,-0.185f,0.0278f,0.00881f,0.059f,-0.055f,-0.218f,-0.0208f,0.205f,0.000659f,-0.245f,-0.0973f,-0.00783f,-0.139f,0.00512f,0.111f,0.0888f,0.00596f,0.0182f,-0.0902f,0.098f,0.102f,0.000745f,0.116f,-0.0766f,-0.00236f,-0.0844f,-0.125f,0.177f,-0.195f,-0.0367f,-0.162f,-0.0443f,0.015f,-0.103f,-0.0914f,-0.0223f,0.208f,-0.00699f,0.0695f,0.0196f,0.0559f,0.00671f,0.0242f,0.0264f,-0.0635f,-0.0353f,0.0394f,0.0905f,-0.045f,0.103f,-0.0635f,0.0502f,0.0636f,-0.0687f,-0.158f,0.0109f,0.0762f,0.00332f,-0.00271f,0.0205f,0.307f,0.109f,0.0253f,-0.0294f,-0.0538f,-0.00334f,-0.315f,0.0882f,0.00399f,-0.177f,-0.0496f,0.0428f,0.0428f,0.0628f,0.104f,0.0311f,0.0291f,0.127f,0.151f,-0.0863f,0.0428f,0.0408f,0.105f,0.00417f,0.121f,0.13f,-0.141f,0.0128f,0.057f,0.0538f,0.119f,-0.0564f,0.0796f,-0.0399f,0.0228f,-0.0782f,0.000121f,0.154f,0.151f,0.00774f,0.0447f,-0.0437f,-0.00677f,-0.0945f,-0.138f,0.113f,0.056f,-0.208f,0.0915f,0.134f,0.017f,0.0858f,0.0442f,0.0033f,-0.0465f,0.0141f,-0.0374f,-0.0178f,0.0489f,0.0426f,0.0835f,-0.0659f,-0.168f,0.00513f,-0.074f,0.186f,0.0876f,0.0754f,-0.165f,-0.0915f,0.0123f,0.0803f,0.0336f,0.0185f,-0.0348f,0.0937f,0.0124f,0.0401f,-0.0785f,-0.101f,0.085f,-0.181f,-0.0245f,0.0638f,-0.0182f,0.0714f,-0.104f,0.0463f,-0.0694f,0.0888f,-0.00729f,-0.052f,-0.0112f,-0.0948f,-0.0217f,0.0856f,0.0815f,-0.0588f,-0.02f,-0.00644f,0.028f,-0.131f,-0.192f,-0.0245f,0.0581f,-0.00103f,0.062f,0.0437f,-0.0497f,-0.0445f,0.191f,0.0098f,0.0437f,-0.0476f,-0.0141f,0.0439f,-0.00661f,0.0315f,-0.0497f,0.101f,-0.16f,-0.0202f,0.013f,-0.00607f,-0.102f,0.00418f,-0.0803f,-0.156f,-0.0627f,0.00438f,-0.0738f,0.032f,-0.0795f,-0.086f,-0.00923f,-0.205f,-0.0902f,0.0928f,-0.0203f,0.247f,-0.17f,-0.103f,0.0142f,-0.00621f,-0.0412f,-0.0992f,0.0325f,-0.0261f,-0.106f,0.0155f,0.00219f,-0.0567f,0.076f,-0.0619f,-0.125f,-0.0742f,-0.0454f,-0.0621f,-0.0225f,-0.0127f,-0.0877f,0.0977f,0.0108f,0.127f,-0.00693f,-0.161f,-0.0116f,0.045f,-0.0792f,0.239f,0.0229f,0.00101f,-0.16f,-0.0224f,0.0381f,-0.0413f,0.051f,0.0373f,0.0612f,-0.123f,0.273f,-0.0614f,0.00638f,-0.223f,0.0166f,0.0868f,0.151f,-0.128f,-0.114f,-0.0479f,-0.335f,-0.000303f,-0.0897f,0.0273f,-0.0677f,-0.0359f,-0.214f,-0.00967f,-0.0598f,0.0687f,0.0255f,0.0731f,0.0469f,-0.0161f,0.0113f,-0.0162f,0.0769f,-0.147f,-0.113f,-0.08f,-0.0603f,-0.11f,0.000648f,0.0107f,0.000226f,0.0548f,-0.00827f,-0.267f,0.00829f,-0.0555f,-0.00254f,-0.105f,-0.158f,-0.0567f,0.0101f,0.278f,0.06f,0.0396f,0.0281f,0.0259f,0.0187f,-0.139f,-0.0849f,0.196f,-0.0105f,0.0175f,0.061f,-0.0322f,0.0661f,0.0612f,-0.0798f,-0.106f,-0.268f,-0.0969f,-0.246f,0.0938f,-0.017f,0.00129f,-0.053f,-0.0361f,-0.0168f,0.0743f,-0.0367f,-0.06f,-0.164f,-0.059f,-0.0651f,0.026f,-0.087f,-0.00785f,0.0225f,-0.0425f,0.00141f,-0.0711f,0.121f,0.106f,-0.0223f,-0.0467f,-0.0536f,0.00189f,-0.161f,-0.0726f,-0.0743f,0.0321f,-0.0198f,-0.0454f,0.0722f,-0.0659f,-0.0437f,0.0257f,-0.225f,-0.163f,-0.275f,-0.0744f,0.0574f,-0.19f,0.00856f,0.014f,0.0948f,-0.101f,-0.00541f,-0.119f,0.0195f,0.0616f,-0.175f,-0.04f,-0.0437f,0.0533f,-0.0976f,-0.00913f,-0.0814f,0.0195f,-0.0569f,0.0263f,0.0169f,-0.0528f,0.00855f,-0.0662f,-0.139f,0.00903f,0.0316f,-0.0636f,0.0469f,-0.126f,-0.00264f,0.0986f,0.0719f,-0.0564f,0.014f,0.0839f,0.0553f,-0.019f,-0.0223f,0.052f,0.061f,0.234f,0.00414f,0.0196f,-0.131f,0.0867f,0.0873f,0.0639f,0.156f,-0.0434f,0.149f,-0.0869f,0.0566f,-0.082f,-0.053f,-0.371f,0.0654f,-0.0663f,-0.0838f,0.122f,-0.0474f,0.16f,0.206f,-0.152f,0.00222f,0.089f,0.0929f,0.0866f,-0.0159f,-0.0151f,0.00484f,0.0103f,-0.0234f,-0.0665f,0.0712f,0.0521f,0.0304f,0.0397f,0.13f,0.106f,0.0841f,0.0492f,-0.0048f,0.0393f,-0.211f,-0.0344f,-0.119f,0.139f,0.0738f,-0.0056f,-0.0136f,-0.0126f,-0.104f,-0.0362f,-0.0141f,0.0215f,0.0215f,-0.147f,-0.0464f,-0.112f,0.0431f,-0.0801f,-0.135f,-0.029f,-0.0372f,0.0703f,0.0874f,-0.0476f,0.00526f,0.125f,0.0449f,0.0165f,0.0685f,-0.0289f,0.0406f,-0.104f,0.185f,0.0999f,0.00565f,0.0189f,0.0164f,0.0169f,-0.0315f,-0.15f,-0.203f,-0.0973f,-0.314f,0.0107f,0.0285f,0.149f,-0.0826f,-0.103f,0.0309f,-0.0341f,0.0128f,-0.19f,-0.0166f,0.0803f,0.017f,0.107f,0.0371f,-0.0389f,-0.0816f,-0.0654f,-0.0839f,0.0871f,0.0499f,0.0545f,-0.0976f,-0.0289f,-0.0121f,-0.0464f,-0.156f,-0.0285f,0.0125f,-0.033f,0.0507f,-0.0517f,0.0296f,-0.0664f,0.0827f,0.0664f,-0.00337f,-0.0526f,-0.0714f,0.00451f,0.121f,0.00416f,0.16f,-0.0155f,-0.0183f,-0.0456f,-0.0502f,-0.0363f,-0.0483f,-0.138f,-0.17f,0.125f,-0.151f,0.12f,0.118f,-0.0209f,0.12f,0.0875f,-0.0408f,0.177f,0.0209f,0.0852f,-0.0639f,-0.06f,0.019f,-0.0368f,-0.0122f,0.113f,-0.063f,-0.0956f,-0.112f,0.0123f,0.211f,-0.0893f,-0.0347f,-0.0418f,-0.0201f,0.162f,0.0107f,-0.0779f,0.0509f,-0.0828f,-0.0404f,-0.0747f,-0.114f,-0.0695f,-0.0288f,0.0216f,-0.0377f,-0.135f,-0.129f,-0.0104f,0.041f,-0.0413f,0.0211f,-0.159f,0.125f,0.179f,0.0404f,0.319f,0.0912f,0.0499f,0.0187f,-0.171f,0.0138f,-0.0694f,0.129f,0.0726f,-0.0742f,0.0157f,0.0661f,-0.0624f,-0.0389f,0.111f,0.0559f,0.0314f,0.0766f,-0.123f,0.0968f,0.0952f,0.0775f,-0.0304f,-0.123f,-0.0916f,0.176f,0.0354f,-0.0222f,0.00159f,-0.151f,-0.159f,0.0428f,0.173f,0.122f,0.0543f,-0.0117f,-0.0685f,-0.124f,0.0637f,-0.0124f,-0.067f,0.00103f,-0.0789f,0.213f,0.162f,0.0667f,0.0456f,0.103f,0.0921f,0.02f,0.0653f,0.0773f,0.000221f,-0.196f,0.0259f,0.0597f,0.0205f,0.0383f,-0.104f,0.0434f,0.164f,0.129f,0.127f,-0.0316f,-0.0889f,-0.0387f,0.0349f,-0.0505f,-0.0454f,-0.136f,-0.0418f,-0.0416f,0.0437f,0.108f,0.0259f,0.0718f,-0.0988f,0.0187f,-0.0568f,0.147f,-0.0736f,0.0811f,0.0957f,0.0717f,0.00786f,0.0391f,-0.0154f,0.0457f,-0.028f,-0.0521f,-0.0874f,-0.0981f,-0.0697f,0.00813f,0.0155f,0.226f,0.0164f,-0.0343f,-0.197f,0.0153f,0.168f,-0.01f,0.121f,0.00139f,-0.00232f,-0.00482f,0.114f,-0.0879f,-0.0253f,-0.0689f,0.0271f,0.0454f,0.0102f,-0.0395f,0.0824f,0.0214f,-0.0842f,-0.0768f,0.0436f,-0.026f,0.132f,0.00676f,0.14f,0.0671f,0.0341f,-0.233f,0.0112f,-0.0846f,-0.0658f,-0.147f,0.0785f,0.125f,0.119f,0.0836f,-0.0368f,0.193f,-0.0711f,0.00641f,-0.0937f,-0.0172f,0.15f,-0.0351f,0.0157f,-0.109f,-0.14f,0.119f,0.112f,-0.0057f,0.0458f,0.0858f,-0.0691f,0.104f,-0.0359f,0.0325f,-0.145f,0.0913f,0.0975f,-0.0239f,0.0463f,0.0615f,0.00959f,-0.0623f,-0.199f,0.0893f,-0.128f,-0.00285f,0.0255f,0.00238f,0.0639f,0.181f,0.0498f,-0.0322f,-0.115f,0.142f,0.126f,0.00208f,-0.0869f,0.205f,-0.104f,-0.0421f,0.0223f,-0.115f,-0.0194f,-0.16f,0.00558f,0.000243f,0.0508f,0.0156f,0.101f,-0.00747f,-0.0203f,0.153f,0.0994f,0.258f,-0.08f,-0.0634f,-0.121f,-0.0305f,-0.0421f,-0.107f,0.0559f,0.0759f,-0.0205f,0.0234f,-0.0304f,-0.0639f,0.0606f,-0.123f,-0.0224f,0.153f,0.13f,0.039f,0.00991f,0.018f,-0.0787f,-0.0807f,0.201f,0.0447f,-0.0961f,0.213f,-0.0183f,0.112f,0.0669f,-0.0215f,0.0254f,0.0659f,0.0265f,-0.232f,0.0571f,-0.181f,0.25f,-0.0399f,0.168f,-0.00232f,-0.138f,0.0472f,0.0922f,-0.0498f,0.054f,-0.0221f,0.031f,0.064f,-0.0236f,0.0955f,0.0296f,-0.0082f,0.00601f,-0.092f,0.103f,-0.0671f,-0.0151f,0.0452f,-0.104f,0.0485f,0.0198f,0.00249f,0.0651f,0.126f,0.0566f,0.0023f,0.0294f,0.111f,-0.0277f,0.0258f,0.146f,0.0491f,-0.125f,-0.0189f,-0.234f,-0.0612f,-0.000643f,0.0439f,-0.0201f,-0.0251f,-0.0215f,-0.0101f,0.0692f,0.126f,0.0827f,0.0819f,0.0531f,-0.0289f,-0.0175f,-0.0615f,0.0939f,0.0706f,0.0685f,0.118f,-0.0557f,-0.0744f,-0.182f,-0.0592f,-0.00545f,-0.11f,-0.00613f,-0.0236f,-0.0895f,0.000872f,0.0109f,-0.348f,-0.566f,-0.0103f,-0.142f,-0.137f,0.147f,-0.0156f,0.0439f,0.00568f,0.0483f,0.104f,0.0636f,-0.0164f,-0.131f,-0.0764f,-0.0267f,0.0548f,0.0965f,0.0199f,0.00577f,-0.0823f,0.177f,-0.0636f,0.0304f,0.0433f,0.023f,0.106f,-0.0486f,0.171f,-0.156f,0.0713f,-0.046f,-0.0134f,-0.0411f,0.0166f,0.0366f,0.0214f,-0.118f,0.0235f,-0.0129f,-0.0108f,-0.0983f,0.113f,0.0805f,-0.0433f,-0.374f,0.0135f,0.0359f,0.00188f,0.0829f,-0.0861f,-0.119f,0.0274f,-0.0497f,-0.0743f,-0.138f,-0.123f,-0.12f,0.0114f,0.0489f,-0.00971f,0.00804f,-0.156f,-0.0449f,0.181f,0.00497f,0.018f,0.00328f,0.0173f,0.153f,0.106f,0.0404f,-0.0484f,-0.0858f,-0.099f,0.0822f,-0.117f,0.0162f,0.00797f,-0.115f,0.127f,-0.00147f,0.0288f,0.0665f,0.00964f,0.0577f,0.0384f,0.0239f,0.0561f,0.0185f,-0.0351f,-0.234f,-0.084f,-0.0152f,-0.0294f,0.0358f,0.0506f,-0.0257f,0.0984f,-0.0413f,0.113f,-0.125f,-0.224f,-0.177f,0.118f,-0.0237f,0.0359f,0.0373f,0.00872f,0.147f,-0.0293f,0.0255f,-0.059f,0.109f,-0.00121f,-0.0199f,0.0144f,0.0709f,-0.0849f,-0.00359f,0.176f,-0.00303f,-0.0178f,0.0102f,-0.00592f,0.0859f,-0.00566f,0.0227f,-0.0358f,0.0294f,0.0105f,-0.0375f,-0.0152f,-0.0844f,-0.0975f,-0.000419f,0.0868f,0.0843f,-0.0509f,0.0196f,-0.0229f,0.066f,0.065f,0.0812f,0.186f,-0.105f,0.0125f,0.0964f,-0.00649f,0.0341f,-0.0197f,0.0458f,-0.107f,-0.0174f,-0.0903f,0.00245f,-0.182f,0.0899f,-0.0454f,-0.107f,0.0444f,-0.00153f,-0.0693f,-0.0561f,-0.0128f,0.108f,-0.0682f,0.0649f,-0.0207f,-0.0597f,-0.137f,0.0752f,0.0497f,-0.0191f,0.19f,0.14f,0.00296f,0.154f,0.00147f,0.227f,-0.0858f,0.0711f,-0.0874f,0.106f,0.000669f,0.0853f,-0.0676f,-0.157f,-0.12f,-0.03f,-0.0129f,-0.102f,-0.0819f,0.175f,0.0615f,0.0819f,0.00484f,-0.0127f,-0.0679f,0.033f,0.0883f,0.0416f,0.0467f,-0.0319f,0.2f,-0.00556f,0.113f,0.164f,0.106f,0.0727f,0.0282f,-0.0807f,0.136f,0.0549f,0.00832f,-0.103f,0.115f,0.00319f,0.138f,-0.172f,0.0259f,-0.0804f,0.0389f,0.0579f,0.0674f,0.0877f,0.0108f,0.0573f,-0.188f,-0.283f,0.109f,-0.0762f,0.0676f,0.00148f,0.0286f,0.0289f,0.0219f,-0.00438f,0.137f,0.134f,-0.00295f,0.00365f,0.0847f,-0.0313f,0.0637f,-0.115f,0.013f,-0.19f,0.0653f,-0.067f,0.0189f,-0.0506f,0.0818f,0.138f,0.00344f,0.0946f,-0.12f,0.00786f,-0.184f,0.0729f,-0.00922f,0.0721f,0.0798f,0.0485f,-0.0299f,0.0568f,-0.145f,0.0323f,0.0219f,0.15f,-0.0701f,-0.0318f,-0.124f,-0.145f,0.0241f,0.00337f,0.116f,0.0435f,0.0999f,-0.0477f,0.104f,-0.00255f,-0.0957f,0.0539f,0.152f,-0.0525f,-0.0956f,0.0863f,-0.0137f,0.145f,0.0975f,0.0453f,-0.0488f,0.0826f,0.0271f,-0.0723f,0.0669f,-0.101f,0.115f,0.0122f,0.0669f,0.225f,0.0756f,0.135f,0.258f,-0.0162f,0.0685f,-0.00566f,-0.181f,0.182f,0.107f,-0.07f,0.225f,-0.0897f,0.0915f,0.143f,0.0251f,0.0236f,0.0107f,-0.117f,-0.0311f,-0.164f,-0.0232f,0.0649f,-0.281f,0.245f,-0.0213f,0.103f,0.116f,-0.0163f,0.0924f,0.0715f,0.235f,-0.0996f,-0.0603f,0.294f,0.0384f,-0.0304f,-0.0503f,0.0232f,0.039f,-0.0246f,0.039f,-0.000547f,0.0419f,0.0401f,-0.0545f,0.027f,0.0208f,0.00514f,0.022f,-0.0149f,-0.045f,-0.284f,-0.0153f,-0.0473f,-0.0647f,-0.0176f,-0.015f,-0.00181f,-0.0315f,0.0644f,0.0789f,-0.0258f,-0.11f,-0.0529f,0.0219f,0.0177f,-0.022f,0.0401f,-0.0818f,-0.0256f,0.00367f,-0.00696f,0.0457f,-0.0407f,-0.0035f,0.00711f,0.00894f,-0.0857f,-0.00971f,0.0564f,0.00266f,-0.111f,0.156f,-0.112f,0.0094f,-0.0672f,-0.24f,0.0215f,-0.0162f,-0.196f,0.0364f,0.0751f,0.00279f,0.00978f,-0.185f,-0.0308f,-0.186f,-0.0206f,0.00166f,0.0727f,-0.0487f,0.107f,0.127f,-0.0423f,0.0385f,0.0269f,-0.105f,0.19f,-0.029f,-0.0205f,-0.178f,0.125f,0.125f,0.0441f,0.183f,0.135f,0.0956f,0.165f,0.0184f,0.0662f,-0.0606f,-0.0642f,0.198f,-0.133f,-0.0264f,0.178f,0.0349f,0.0711f,0.0862f,0.0909f,-0.0309f,0.0854f,-0.152f,-0.00595f,-0.0493f,0.0634f,0.247f,0.314f,0.133f,0.124f,-0.0035f,-0.0719f,-0.0222f,-0.102f,0.0338f,-0.0193f,-0.133f,-0.0469f,0.225f,0.00667f,-0.0752f,0.00139f,0.0233f,0.0262f,0.0705f,0.242f,0.118f,0.321f,0.0411f,0.157f,0.13f,0.0245f,0.205f,-0.0546f,0.0225f,0.00616f,-0.132f,-0.0496f,-0.038f,-7.52e-05f,0.0609f,-0.0512f,-0.0647f,-0.0399f,0.158f,-0.0402f,-0.0145f,0.0594f,0.19f,0.0684f,0.118f,-0.00426f,0.105f,0.295f,0.0499f,-0.0301f,0.0918f,-0.106f,0.0525f,0.144f,0.035f,0.227f,-0.071f,0.196f,-0.0348f,-0.181f,-0.0501f,-0.0524f,0.00869f,-0.0491f,-0.13f,-0.117f,0.0796f,0.0448f,0.0978f,0.123f,0.0578f,0.193f,0.0561f,0.0239f,0.0313f,0.0664f,0.0432f,0.027f,0.145f,0.0993f,-0.00856f,0.00915f,0.00848f,-0.0465f,0.0266f,0.0743f,-0.136f,0.0055f,0.42f,0.048f,-0.166f,0.0204f,0.0478f,0.142f,0.0697f,0.00486f,0.123f,-0.221f,0.0369f,0.0129f,0.0966f,0.0788f,0.162f,-0.168f,0.017f,0.0744f,-0.085f,-0.0704f,-0.0332f,-0.0442f,-0.00577f,0.0312f,-0.0575f,-0.0339f,0.175f,0.128f,0.14f,0.189f,0.132f,0.0323f,0.0431f,0.12f,-0.124f,0.142f,0.131f,-0.0376f,0.185f,-0.121f,-0.0394f,0.0563f,0.0561f,-0.132f,0.0622f,-0.0883f,0.0271f,0.0365f,0.0275f,-0.0644f,-0.0332f,-0.0498f,-0.273f,0.174f,-0.0362f,0.117f,0.103f,0.0782f,0.0132f,0.278f,-0.0142f,-0.0719f,0.0165f,-0.209f,-0.107f,-0.00659f,-0.094f,-0.182f,-0.217f,-0.203f,-0.0204f,0.179f,-0.0273f,0.0792f,0.113f,-0.00576f,0.000222f,-0.0375f,-0.107f,0.0237f,-0.21f,0.00438f,0.000289f,-0.109f,-0.063f,0.0189f,0.0487f,-0.0417f,0.0123f,-0.0387f,0.00483f,0.0558f,0.113f,-0.0644f,0.03f,-0.0583f,0.12f,0.00733f,0.0847f,0.144f,-0.133f,0.00505f,-0.0624f,0.0737f,0.0613f,0.0337f,-0.0041f,-0.0348f,-0.0208f,-0.176f,0.0298f,0.121f,-0.0492f,-0.00495f,0.0751f,-0.062f,0.0093f,-0.081f,-0.187f,0.063f,0.0413f,-0.14f,-0.0421f,-0.0169f,-0.0812f,0.0664f,-0.0199f,-0.04f,-0.0443f,-0.0361f,-0.06f,0.156f,-0.0911f,-0.0408f,0.205f,-0.057f,-0.0944f,-0.0252f,-0.0646f,0.0954f,-0.0597f,0.0561f,-0.165f,-0.0348f,0.0159f,0.0233f,0.0778f,-0.141f,-0.11f,0.0817f,-0.0508f,-0.0464f,-0.124f,-0.221f,0.222f,0.0116f,-0.0649f,0.122f,-0.0106f,0.159f,-0.0384f,0.0341f,0.0591f,0.0337f,0.0216f,0.115f,0.04f,-0.195f,0.0724f,0.0885f,-0.225f,-0.0419f,0.00615f,-0.028f,-0.00292f,-0.0408f,-0.0177f,-0.0139f,-0.0445f,0.0292f,0.0172f,0.0305f,0.0107f,-0.034f,0.0283f,0.114f,0.162f,0.0752f,-0.0231f,0.0307f,-0.111f,0.0682f,0.00371f,0.0208f,0.0575f,0.0872f,0.0775f,0.0915f,0.118f,-0.0967f,0.061f,-0.152f,0.0384f,0.0173f,-0.324f,0.13f,-0.0828f,-0.041f,0.1f,0.0865f,-0.106f,0.0142f,0.0428f,-0.158f,0.00396f,0.0392f,-0.0839f,0.17f,0.061f,0.0767f,-0.211f,-0.0665f,-0.0288f,0.0496f,0.125f,0.176f,0.0688f,-0.164f,-0.0512f,0.102f,-0.0448f,-0.0439f,-0.0628f,0.0601f,0.0229f,0.0703f,0.225f,-0.0171f,-0.0746f,0.0153f,0.176f,0.137f,-0.123f,-0.146f,0.0955f,-0.0437f,-0.0615f,0.0231f,0.116f,-0.0125f,0.0768f,0.118f,-0.202f,0.0266f,0.033f,0.183f,-0.0175f,0.00352f,-0.033f,-0.0158f,-0.0166f,0.0564f,0.0451f,0.0251f,0.109f,-0.0084f,-0.128f,-0.0264f,-0.00805f,-0.139f,0.0369f,0.0217f,0.0683f,-0.117f,-0.00276f,-0.159f,-0.0597f,-0.133f,-0.0052f,-0.116f,-0.26f,-0.373f,-0.0732f,-0.0385f,-0.00314f,-0.172f,-0.0279f,-0.0568f,-0.0623f,-0.0502f,0.0531f,0.143f,-0.106f,0.0576f,0.00753f,0.0448f,-0.161f,-0.0134f,0.0303f,-0.0703f,-0.143f,-0.0303f,-0.0694f,-0.0311f,-0.0955f,-0.173f,-0.0629f,0.15f,-0.051f,0.0738f,0.0825f,-0.0899f,0.0789f,0.0446f,-0.00997f,-0.0219f,0.0669f,0.0267f,0.00763f,0.0716f,-0.037f,0.0883f,-0.139f,-0.0355f,-0.132f,-0.102f,-0.11f,-0.132f,0.00689f,-0.207f,-0.0474f,-0.0743f,-0.0213f,0.159f,-0.126f,0.00912f,-0.0581f,-0.0496f,-7.03e-05f,-0.0423f,-0.077f,0.0975f,-0.074f,0.0807f,0.132f,-0.135f,-0.116f,-0.00361f,-0.0136f,-0.103f,0.164f,-0.135f,-0.0435f,0.168f,-0.115f,-0.119f,-0.0689f,0.0789f,-0.166f,-0.0393f,0.0519f,-0.0751f,-0.0419f,-0.271f,-0.012f,0.144f,-0.0715f,-0.234f,-0.148f,0.0425f,-0.0248f,0.0257f,-0.106f,0.016f,0.129f,-0.0381f,0.0123f,0.0666f,-0.195f,-0.059f,0.117f,-0.0201f,0.0156f,-0.198f,-0.00899f,0.0368f,-0.0407f,-0.121f,0.0303f,-0.124f,-0.188f,-0.0803f,0.0108f,0.177f,-0.0892f,-0.121f,0.0563f,0.0392f,-0.111f,0.15f,-0.0788f,-0.0259f,0.185f,-0.0487f,0.117f,0.0238f,-0.0144f,-0.0394f,0.00254f,-0.236f,-0.0498f,-0.0737f,-0.0584f,0.0766f,0.032f,-0.0153f,0.0344f,0.133f,-0.0985f,0.00346f,0.0343f,-0.0649f,-0.135f,0.097f,-0.214f,0.122f,0.0222f,-0.152f,0.212f,0.0915f,0.0274f,0.0192f,-0.0227f,-0.0787f,-0.055f,0.184f,0.0533f,-0.0348f,-0.0368f,-0.11f,-0.0596f,0.0668f,-0.152f,0.0352f,-0.127f,-0.171f,-0.0804f,0.0919f,-0.0409f,-0.114f,-0.119f,0.0409f,-0.0355f,0.0859f,0.0919f,-0.161f,-0.0741f,0.0476f,-0.0664f,0.0124f,-0.0789f,-0.196f,-0.0355f,0.0478f,0.0312f,-0.051f,-0.0794f,-0.092f,-0.0329f,-0.0423f,-0.00726f,-0.0865f,-0.0274f,-0.0109f,0.143f,-0.00254f,-0.0847f,0.124f,-0.0257f,0.0178f,-0.148f,-0.129f,-0.18f,-0.0161f,-0.098f,-0.0713f,-0.0334f,0.0128f,-0.0577f,-0.0359f,-0.0197f,0.0774f,-0.0797f,-0.296f,-0.0651f,0.0912f,-0.105f,0.00027f,0.113f,-0.112f,-0.0121f,-0.0606f,-0.136f,0.203f,-0.15f,-0.134f,-0.00449f,0.159f,-0.034f,0.0298f,-0.196f,0.0212f,-0.0385f,0.195f,0.00204f,0.0492f,-0.0766f,-0.0245f,-0.0105f,0.069f,0.211f,0.0186f,0.00943f,0.0133f,-0.105f,-0.146f,0.0291f,0.153f,0.118f,0.111f,0.209f,-0.0117f,-0.14f,0.151f,0.13f,0.0313f,-0.0609f,-0.0183f,0.0511f,0.0994f,0.0219f,0.147f,-0.0371f,0.0474f,-0.154f,-0.0679f,-0.106f,-0.0266f,-0.0731f,0.0323f,0.0902f,-0.0474f,-0.00464f,0.144f,0.00811f,-0.121f,-0.123f,-0.117f,0.128f,0.0911f,0.0315f,-0.148f,0.157f,-0.00277f,-0.00206f,-0.127f,-0.179f,0.0126f,0.0641f,-0.0529f,0.138f,0.169f,-0.0304f,0.0326f,-0.122f,0.0491f,0.143f,-0.0065f,0.0858f,-0.0294f,-0.0427f,0.00843f,-0.00477f,0.0555f,0.167f,0.0249f,0.0388f,0.00297f,0.134f,-0.00364f,0.0578f,-0.0251f,0.0518f,-0.0806f,0.107f,0.0121f,0.0158f,0.0558f,0.0317f,-0.00203f,-0.0882f,-0.133f,0.0186f,-0.13f,0.134f,-0.153f,0.0448f,-0.0778f,-0.178f,0.133f,-0.0197f,0.131f,-0.0214f,-0.0622f,0.041f,0.0406f,-0.202f,-0.00917f,-0.147f,0.0208f,0.156f,0.0144f,-0.0574f,-0.121f,0.17f,-0.0152f,0.0898f,0.0442f,0.0206f,-0.0135f,-0.0595f,0.0343f,-0.00417f,-0.065f,-0.028f,0.22f,0.0662f,-0.0876f,0.0314f,0.111f,-0.019f,0.0819f,0.164f,-0.047f,-0.102f,0.108f,0.128f,0.0993f,0.122f,-0.00486f,0.182f,0.118f,0.0313f,0.0361f,-0.0713f,0.0254f,-0.0676f,0.105f,0.137f,-0.207f,-0.0647f,-0.0278f,0.0589f,0.0742f,0.0105f,0.0292f,-0.0292f,0.0892f,0.0266f,0.0534f,-0.0124f,0.056f,0.0767f,0.0809f,0.0876f,0.0592f,-0.0714f,0.128f,0.00811f,-0.163f,0.0875f,0.00728f,-0.0236f,-0.0678f,-0.116f,-0.0238f,0.0425f,0.0238f,0.115f,-0.0935f,0.108f,-0.09f,0.0467f,-0.113f,-0.0985f,0.1f,-0.0708f,-0.0625f,0.0936f,0.113f,-0.0164f,0.0898f,0.0101f,0.00743f,-0.0608f,-0.125f,-0.0706f,-0.0543f,0.0839f,0.108f,0.123f,0.165f,0.0638f,0.0361f,-0.0134f,0.102f,0.0867f,0.0877f,0.123f,0.103f,-0.0551f,0.0254f,-0.105f,0.00963f,-0.0949f,-0.122f,-0.0335f,-0.105f,-0.0152f,0.0844f,0.0641f,0.0149f,0.158f,0.204f,0.0951f,-0.171f,0.0621f,0.0717f,0.0701f,0.0899f,-0.119f,-0.00342f,0.0488f,0.107f,0.114f,-0.0684f,-0.0465f,0.0587f,0.00291f,0.0801f,0.203f,-0.164f,0.0962f,-0.0425f,0.092f,0.0282f,0.151f,0.078f,0.0914f,0.146f,0.186f,0.0297f,-0.0287f,0.145f,-0.0323f,0.147f,0.11f,0.0995f,-0.233f,-0.0895f,-0.189f,-0.044f,-0.0362f,-0.0564f,0.116f,-0.045f,0.0547f,0.00621f,0.013f,0.0146f,0.0983f,-0.0954f,-0.0922f,0.0164f,0.0675f,0.118f,-0.126f,0.122f,0.0684f,-0.00248f,-0.0346f,0.026f,0.0872f,0.0716f,-0.134f,0.0349f,0.166f,-0.051f,-0.0906f,0.0692f,-0.183f,-0.0772f,0.211f,-0.0534f,0.109f,-0.201f,-0.00152f,-0.123f,0.0285f,-0.00487f,-0.012f,-0.0119f,0.133f,0.0993f,0.00395f,0.00746f,0.139f,0.0921f,0.113f,0.0126f,-0.0265f,-0.133f,0.0726f,0.0139f,0.0993f,-0.14f,0.139f,0.14f,-0.00481f,0.0509f,0.0176f,-0.0456f,0.0797f,-0.0615f,-0.0574f,0.0824f,0.091f,0.044f,-0.0646f,-0.194f,0.0521f,-0.0115f,0.0207f,-0.0432f,0.0843f,0.157f,0.119f,-0.0576f,-0.107f,0.127f,0.178f,-0.197f,0.108f,0.0102f,-0.115f,-0.0885f,0.0799f,0.0309f,0.00488f,-0.0116f,0.00136f,-0.0794f,0.0691f,0.026f,0.0237f,-0.0589f,0.0724f,-0.0218f,0.0577f,0.14f,0.135f,0.153f,0.00868f,0.0427f,0.0645f,0.0335f,-0.0792f,0.303f,-0.0551f,0.0221f,0.108f,-0.0338f,0.0902f,0.174f,0.0325f,0.0838f,0.12f,-0.12f,0.115f,-0.0317f,0.101f,-0.00627f,0.0221f,0.00148f,-0.00087f,-0.0121f,0.0478f,0.0869f,0.185f,-0.0518f,0.0285f,-0.0539f,0.0954f,0.0373f,0.0241f,-0.237f,0.0276f,-0.0275f,0.146f,-0.0691f,0.0617f,-0.284f,0.0139f,0.187f,0.0675f,-0.00853f,0.198f,0.0857f,-0.139f,-0.0317f,-0.177f,0.0407f,0.0736f,-0.0248f,0.0207f,-0.0651f,0.0208f,-0.0504f,0.00329f,0.0243f,0.175f,-0.0554f,-0.0937f,0.11f,-0.0132f,0.117f,0.00915f,-0.103f,0.16f,-0.0999f,-0.094f,-0.128f,-0.118f,0.0653f,0.0217f,0.0557f,-0.0955f,-0.0648f,-0.116f,0.0432f,0.0639f,0.0609f,0.0903f,0.0273f,-0.0421f,0.0454f,0.0161f,0.0147f,0.136f,0.0102f,-0.0633f,-0.0923f,-0.167f,-0.196f,-0.0526f,-0.112f,0.0758f,0.0874f,-0.0325f,-0.0905f,0.0819f,0.217f,-0.131f,-0.149f,0.00323f,-0.0469f,-0.115f,0.122f,0.0386f,-0.00367f,0.0216f,0.0514f,0.094f,-0.0558f,0.165f,0.0928f,-0.101f,0.0134f,0.0718f,-0.0709f,0.0638f,-0.00519f,-0.0699f,0.03f,0.101f,-0.0277f,0.00486f,-0.16f,0.00893f,-0.0182f,0.0556f,0.0233f,0.035f,-0.0371f,0.0747f,0.0154f,0.137f,0.189f,0.064f,0.231f,0.118f,0.037f,-0.0153f,-0.041f,0.162f,0.0515f,0.00958f,-0.0307f,0.142f,0.0332f,-0.044f,0.165f,0.0356f,0.051f,-0.0354f,-0.0615f,0.00606f,-0.0387f,-0.000539f,-0.0996f,-0.00509f,0.0163f,0.0634f,-0.0702f,-0.0107f,0.0362f,0.0723f,-0.0638f,-0.0477f,0.047f,-0.0381f,0.298f,-0.0235f,-0.0451f,-0.0329f,-0.0819f,-7.57e-05f,-0.0424f,0.0734f,-0.0634f,-0.0545f,0.0505f,0.122f,0.121f,-0.0254f,0.0577f,0.0897f,0.105f,-0.224f,0.0629f,0.117f,-0.123f,0.0306f,-0.141f,-0.0427f,-0.0123f,-0.0926f,0.0146f,-0.012f,0.0222f,0.0158f,0.0269f,0.0924f,-0.105f,0.0767f,0.107f,-0.211f,0.0163f,-0.129f,0.0393f,-0.0896f,-0.101f,0.127f,-0.0327f,-0.161f,-0.0526f,-0.183f,0.11f,0.158f,-0.061f,-0.00968f,-0.193f,-0.0109f,-0.0611f,-0.042f,-0.0865f,0.0246f,-0.00276f,0.0263f,0.278f,-0.0865f,0.0576f,-0.0469f,-0.034f,-0.0703f,0.00265f,-0.17f,-0.121f,0.0135f,-0.121f,-0.0376f,-0.158f,-0.0957f,0.0348f,-0.0404f,0.235f,-0.0839f,0.0399f,0.112f,0.0633f,0.0166f,0.0472f,-0.108f,0.052f,-0.00262f,-0.0362f,-0.0789f,-0.0438f,-0.0402f,-0.111f,-0.0366f,0.106f,-0.0604f,-0.13f,-0.0903f,-0.00391f,0.117f,-0.0985f,-0.132f,0.0588f,0.0198f,-0.0512f,-0.0347f,0.0357f,0.0725f,-0.0734f,0.0876f,-0.106f,0.0805f,0.0969f,-0.0662f,-0.167f,0.231f,-0.139f,-0.0143f,0.0486f,-0.0597f,0.0369f,-0.176f,-0.138f,-0.0292f,-0.19f,-0.00303f,-0.139f,-0.0625f,-0.0145f,-0.159f,-0.17f,0.047f,0.177f,-0.0261f,0.022f,0.271f,-0.116f,0.0733f,-0.0413f,-0.00867f,-0.154f,-0.164f,0.0421f,-0.0575f,-0.00135f,-0.00693f,0.00785f,-0.0476f,-0.000865f,-0.0862f,-0.13f,0.17f,-0.00416f,0.0993f,-0.0846f,-0.0867f,-0.0487f,-0.126f,0.0842f,0.0953f,0.0744f,-0.0928f,0.0192f,-0.0838f,-0.164f,0.0538f,-0.0441f,-0.197f,-0.00873f,-0.147f,-0.0989f,-0.15f,-0.0181f,-0.124f,-0.0474f,-0.105f,-0.108f,-0.00426f,-0.0958f,-0.0245f,-0.067f,-0.164f,-0.126f,-0.0786f,-0.231f,0.0142f,-0.061f,0.012f,0.0118f,-0.0929f,-0.0288f,-0.117f,0.12f,-0.0624f,0.0314f,-0.173f,-0.0235f,-0.00449f,0.0198f,0.012f,-0.0181f,0.0121f,0.0279f,0.121f,-0.116f,-0.0892f,-0.0233f,-0.0542f,-0.0801f,0.315f,-0.0302f,0.0401f,0.112f,-0.0474f,-0.115f,0.0484f,0.0455f,-0.058f,0.209f,-0.0742f,-0.0355f,-0.0325f,-0.089f,0.0794f,-0.0185f,0.0848f,-0.158f,-0.0795f,-0.0913f,-0.0283f,-0.113f,0.000521f,0.129f,0.157f,-0.143f,-0.0451f,0.201f,-0.0956f,-0.0664f,-0.00705f,-0.0132f,-0.096f,0.087f,0.0116f,-0.0207f,-0.00732f,-0.0238f,-0.166f,-0.0875f,-0.0743f,0.0345f,-0.161f,0.018f,0.0781f,0.0994f,-0.0153f,-0.0531f,0.0199f,0.0351f,-0.00425f,-0.0561f,-0.255f,0.0234f,-0.0196f,-0.233f,-0.0482f,-0.127f,0.0968f,0.107f,-0.0993f,0.129f,0.203f,-0.0116f,0.0422f,-0.101f,0.0208f,0.0663f,0.155f,-0.0958f,-0.00865f,-0.0518f,0.00489f,0.0519f,0.0102f,-0.0515f,-0.248f,-0.0265f,0.182f,0.03f,0.181f,-0.00264f,0.0405f,-0.00535f,0.264f,-0.0639f,-0.173f,-0.0154f,-0.131f,0.00492f,0.166f,-0.0352f,-0.104f,-0.0335f,0.0801f,0.152f,0.14f,-0.0408f,-0.215f,0.122f,0.251f,0.0574f,-0.00785f,0.0594f,0.116f,0.00353f,-0.0632f,0.08f,0.0416f,0.000365f,0.061f,0.00985f,-0.119f,0.00934f,0.113f,0.0231f,0.129f,-0.174f,-0.0778f,-0.111f,0.0756f,-0.0146f,0.0266f,0.221f,0.0114f,0.12f,0.057f,-0.00225f,-0.0615f,-0.0215f,0.0408f,0.0185f,-0.0698f,-0.0318f,-0.0568f,0.0171f,0.073f,-0.0883f,0.0575f,-0.0113f,-0.0415f,0.0424f,-0.129f,-0.279f,-0.0141f,-0.0575f,0.181f,-0.103f,0.0415f,-0.0617f,0.0523f,-0.028f,-0.0507f,0.064f,0.0617f,-0.0271f,-0.049f,0.0928f,-0.0312f,0.0346f,-0.166f,0.0152f,0.0274f,-0.0607f,0.141f,0.126f,0.161f,0.158f,-0.0281f,-0.0232f,0.0617f,0.0453f,-0.0171f,-0.00402f,0.0078f,-0.0416f,0.0412f,-0.0324f,0.0444f,0.0021f,0.0441f,0.0427f,0.0758f,-0.089f,-0.0416f,-0.0929f,-0.0337f,0.133f,-0.0617f,-0.0629f,0.0123f,0.0137f,-0.305f,0.0357f,-0.0974f,-0.137f,-0.0166f,-0.0184f,0.0879f,-0.0178f,0.172f,-0.0518f,0.0188f,0.0234f,-0.0231f,0.156f,0.00936f,0.1f,-0.0404f,0.114f,0.0277f,0.00126f,-0.111f,0.0484f,-0.0372f,-0.0971f,-0.0486f,-0.0626f,0.0637f,-0.0128f,-0.00693f,-0.0705f,-0.0117f,-0.105f,-0.138f,0.0308f,0.044f}; +float backbone__model3_dp2_pw_bias[64] = {-0.105f,0.0228f,0.0604f,0.113f,-0.0579f,-0.061f,-0.221f,0.102f,0.0707f,0.0814f,-0.0742f,-0.107f,0.0415f,0.098f,-0.149f,0.0154f,0.0372f,0.00758f,-0.175f,0.0673f,0.0473f,0.103f,0.0739f,-0.204f,0.194f,-0.0824f,0.19f,-0.038f,0.00914f,0.0974f,0.228f,-0.00788f,0.154f,-0.0817f,-0.0912f,0.0215f,0.0947f,-0.0326f,0.00593f,-0.0905f,-0.00938f,0.0492f,-0.0877f,-0.0776f,-0.117f,-0.0434f,-0.00614f,0.0441f,0.0556f,-0.0603f,0.0512f,0.0642f,0.0262f,-0.035f,-0.0386f,-0.0997f,0.0457f,0.0732f,-0.00681f,0.222f,0.0151f,0.07f,-0.11f,-0.0855f}; +float backbone__model3_dp2_dw_weight[64*1*3*3] = {-0.264f,0.456f,-0.00534f,-0.00792f,-0.213f,0.4f,-0.476f,0.735f,0.191f,0.564f,-0.287f,0.053f,0.278f,-0.089f,0.532f,0.0308f,-0.243f,-0.423f,0.0858f,-0.284f,0.0426f,-0.472f,0.00201f,0.202f,-0.374f,0.00531f,0.726f,0.266f,-0.17f,0.118f,-0.149f,0.177f,-0.0863f,0.287f,0.754f,0.265f,-0.318f,0.0208f,0.356f,-0.219f,-0.29f,-0.188f,-0.00358f,0.0823f,0.159f,0.134f,0.534f,0.0344f,0.641f,-0.0734f,-0.385f,-0.257f,0.0822f,0.00785f,-0.552f,-0.92f,-0.00471f,0.847f,0.328f,0.863f,-0.304f,-0.22f,-0.548f,-0.0284f,-0.232f,0.479f,0.734f,0.729f,-0.0513f,0.169f,-0.509f,1.06f,0.0613f,0.681f,-0.338f,0.172f,0.687f,0.17f,-0.286f,0.151f,-0.181f,-0.384f,0.33f,-0.394f,0.147f,-0.364f,0.259f,0.316f,-0.193f,-0.299f,0.0227f,-0.218f,0.387f,-0.104f,-0.255f,0.0862f,-0.263f,0.458f,0.59f,-0.123f,-0.813f,-0.0869f,1.04f,-0.407f,-0.169f,-0.446f,-0.642f,0.0688f,0.275f,0.158f,0.704f,0.0799f,0.804f,-0.177f,-0.42f,0.0778f,0.112f,-0.303f,0.149f,-1.66f,-0.334f,-0.393f,0.0746f,0.406f,0.96f,-0.126f,-0.307f,-1.14f,0.0559f,0.256f,0.195f,0.102f,0.0107f,0.25f,-0.376f,-0.0902f,-0.113f,-0.382f,-0.253f,0.121f,0.551f,0.0439f,-0.448f,0.0944f,-0.15f,-0.504f,0.0899f,-0.168f,0.00482f,-0.453f,0.255f,0.122f,0.519f,-0.249f,-0.667f,0.0784f,0.002f,0.218f,-0.224f,0.452f,-0.254f,0.284f,-0.0604f,-0.286f,-0.182f,-0.193f,0.467f,-0.292f,-0.568f,-0.426f,-0.0177f,0.091f,0.256f,0.247f,-0.136f,0.0662f,0.375f,-0.256f,-0.0745f,0.0392f,0.234f,-0.759f,0.282f,0.221f,-0.201f,-0.885f,0.131f,0.101f,0.266f,-0.194f,0.0565f,-0.544f,-0.137f,0.306f,0.567f,-0.0576f,0.261f,0.264f,-0.0282f,1.01f,-0.131f,0.943f,-0.19f,0.077f,0.137f,0.266f,0.515f,0.109f,-0.466f,0.0918f,-0.0404f,-0.0514f,0.291f,0.0565f,0.304f,0.142f,-0.265f,-0.389f,0.305f,0.269f,-0.355f,-0.242f,-0.213f,0.366f,-0.063f,-0.199f,0.254f,0.507f,-0.543f,0.0472f,-0.15f,-0.07f,-0.355f,-0.108f,0.65f,0.171f,0.129f,0.293f,0.334f,0.25f,-0.105f,-0.0566f,0.069f,-0.893f,0.195f,0.149f,-0.334f,-1.7f,0.234f,0.781f,0.173f,0.252f,-0.561f,-0.172f,-0.56f,0.0662f,-0.453f,0.172f,0.188f,0.427f,0.472f,0.358f,-0.0213f,0.504f,-0.451f,0.772f,-0.303f,-0.42f,0.121f,0.0869f,0.241f,0.267f,-0.36f,0.864f,-1.93f,-0.225f,0.12f,-0.127f,0.361f,0.362f,-0.154f,-0.237f,0.2f,0.166f,-0.383f,-0.115f,-0.208f,0.302f,-0.278f,-0.149f,-0.412f,0.203f,-0.408f,-0.272f,-1.59f,-0.274f,-0.0462f,-0.647f,-1.81f,0.129f,0.325f,0.334f,1.36f,0.0782f,-0.0771f,-0.521f,-0.184f,0.0248f,0.242f,0.0843f,-0.284f,0.00164f,-0.757f,0.405f,0.423f,0.308f,1.87f,-0.258f,0.333f,1.11f,-0.349f,0.0323f,-0.166f,-0.0295f,0.311f,0.0664f,-0.42f,-0.000466f,-0.907f,-0.581f,-0.0989f,-0.0968f,0.233f,-1.55f,-0.381f,0.164f,-0.193f,0.373f,0.629f,-0.0395f,0.477f,0.0399f,0.123f,0.111f,0.329f,0.0172f,-0.285f,0.224f,-0.0716f,0.988f,-0.0572f,0.143f,-0.238f,-0.0524f,-1.01f,-0.0714f,0.38f,-0.382f,0.364f,-0.19f,-0.16f,-0.445f,-0.351f,0.176f,0.164f,-0.00779f,0.243f,0.13f,0.555f,-0.0741f,-0.484f,-0.04f,0.347f,-0.377f,0.101f,0.629f,-0.252f,-0.741f,0.181f,0.0499f,0.547f,-0.152f,0.204f,0.399f,-0.103f,0.0607f,0.746f,0.0476f,0.296f,0.0779f,-0.0203f,-0.184f,-0.0889f,-0.263f,-0.148f,0.213f,-0.0385f,0.00561f,0.251f,0.305f,-0.671f,0.194f,-0.0939f,-0.22f,0.209f,0.483f,0.381f,0.116f,-0.247f,-0.504f,0.364f,0.569f,-0.573f,-0.258f,-0.229f,0.651f,-0.0706f,-0.652f,0.102f,0.271f,-0.518f,-0.19f,0.0535f,-0.287f,-0.18f,-0.00883f,0.247f,0.254f,0.365f,0.451f,-0.275f,0.392f,-0.2f,-0.0229f,-0.181f,-0.202f,0.197f,0.118f,-0.204f,-0.388f,-0.309f,0.299f,0.178f,-0.0184f,-0.0839f,-0.0523f,-0.115f,-0.18f,-0.14f,0.0371f,-0.233f,0.205f,0.547f,0.0322f,0.131f,-0.454f,-0.579f,-0.608f,0.0114f,-1.8f,0.0579f,0.288f,0.383f,0.183f,-0.52f,1.32f,-0.781f,-0.271f,-2.23f,0.464f,0.229f,0.141f,0.495f,-0.117f,0.501f,0.392f,-1.02f,0.0762f,-0.13f,0.246f,-0.016f,-0.446f,-0.113f,0.484f,-0.111f,-0.533f,0.0228f,0.00104f,-0.323f,-0.12f,0.773f,0.169f,0.582f,0.0431f,-0.425f,0.343f,-0.454f,-0.242f,0.0858f,0.0121f,0.241f,0.217f,-0.57f,0.669f,-0.938f,0.829f,0.201f,0.0346f,-0.619f,-0.209f,0.306f,0.807f,-0.231f,0.0697f,-0.33f,0.134f,0.595f,0.3f,-0.233f,0.0241f,-0.473f,-0.34f,-0.0756f,-0.531f,0.0287f,-0.843f,-0.373f,0.0599f,-0.164f,0.497f,0.344f,-0.306f,-0.365f,0.778f,0.0875f,0.133f,0.596f,-0.255f,-0.427f,0.295f,-0.636f,0.773f,-0.0825f,0.0491f,-0.0863f,-0.68f,-0.401f,0.328f,0.436f,-0.265f,0.392f,-0.338f,-0.382f,0.0749f,0.782f,0.268f,0.187f,-0.00563f,-0.0641f,0.158f,0.0696f,0.205f,-0.358f,-0.0151f,0.296f,-0.444f,-0.426f,0.52f,0.117f,0.251f,0.324f,0.0887f,-0.567f,-0.29f,0.00459f,0.0552f}; +float backbone__model3_dp2_dw_bias[64] = {0.148f,0.11f,0.315f,0.371f,1.3f,0.122f,0.0501f,0.0148f,0.207f,-0.341f,0.232f,-0.223f,0.146f,0.317f,-0.139f,0.21f,0.184f,-0.419f,-0.0272f,-0.228f,0.0428f,-0.108f,0.235f,1.25f,0.0226f,0.155f,-0.108f,0.0387f,0.371f,-0.3f,0.568f,-0.741f,0.0989f,-0.354f,-0.181f,-0.276f,-0.029f,0.619f,0.263f,0.715f,0.808f,0.441f,-0.427f,0.386f,0.059f,0.624f,0.438f,0.244f,0.209f,0.183f,0.157f,0.256f,-0.792f,0.122f,0.338f,-1.13f,0.417f,-0.421f,0.395f,0.36f,-0.15f,0.0394f,-0.105f,-0.0212f}; +float backbone__model4_dp1_pw_weight[64*64*1*1] = {0.0479f,0.0479f,-0.0614f,0.175f,0.0107f,-0.298f,0.0884f,-0.021f,0.00302f,-0.0542f,-0.0722f,0.0192f,0.0312f,-0.022f,0.0115f,0.0829f,-0.0759f,0.000736f,0.0213f,-0.0991f,0.0172f,0.0189f,-0.0526f,0.00704f,-0.0381f,-0.0776f,0.0177f,-0.0357f,-0.054f,-0.0485f,-0.232f,-0.0845f,-0.0344f,0.0448f,-0.0762f,-0.0111f,-0.058f,0.0968f,0.0404f,0.0775f,0.0135f,-0.123f,-0.00678f,-0.109f,0.047f,0.178f,-0.02f,0.147f,-0.0384f,-0.111f,-0.103f,0.0782f,0.0108f,0.0452f,-0.0426f,0.0169f,-0.0726f,-0.0177f,-0.0608f,-0.0122f,-0.00971f,-0.276f,0.0987f,-0.034f,0.0835f,0.0176f,0.0176f,-0.191f,-0.111f,0.139f,-0.0748f,0.0211f,0.044f,-0.16f,-0.0126f,-0.0679f,0.0111f,-0.0442f,-0.00309f,-0.0222f,-0.155f,0.00046f,-0.0169f,0.104f,-0.00237f,-0.0665f,0.00764f,-0.0451f,0.023f,-0.0131f,0.219f,-0.0456f,-0.0152f,0.0748f,-0.12f,0.0948f,0.0282f,-0.16f,-0.0364f,0.0469f,-0.14f,0.022f,-0.0147f,0.098f,-0.0612f,0.0154f,-0.0234f,0.13f,-0.0362f,-0.0733f,0.0584f,0.173f,-0.0324f,0.257f,0.0769f,0.00702f,0.0453f,-0.0448f,-0.0555f,-0.134f,-0.0306f,0.00135f,0.0658f,0.121f,-0.0472f,0.011f,-0.055f,0.0058f,-0.0943f,-0.01f,0.00842f,-0.156f,-0.0807f,-0.0326f,0.0436f,0.111f,0.0204f,-0.0397f,0.0948f,0.0295f,-0.146f,-0.0094f,0.0286f,-0.0276f,0.057f,0.165f,-0.0566f,0.0145f,0.16f,0.0207f,-0.00666f,-0.0129f,-0.00377f,-0.0543f,0.0949f,-0.115f,-0.0636f,0.00755f,-0.0684f,0.0952f,0.0244f,0.00133f,0.0295f,0.0159f,0.0563f,-0.144f,-0.064f,-0.0388f,0.0236f,0.0949f,-0.123f,-0.0434f,-0.0712f,-0.0277f,0.0974f,0.137f,0.0547f,-0.00822f,-0.217f,0.093f,0.0234f,-0.065f,-0.014f,0.0403f,0.145f,-0.0108f,-0.00451f,-0.0659f,0.046f,-0.0278f,-0.0673f,-0.1f,-0.251f,0.0748f,-0.0839f,0.0442f,0.016f,-0.0134f,-0.0112f,-0.0875f,-0.0311f,-0.069f,0.132f,-0.0394f,-0.0526f,0.0397f,-0.0487f,0.0187f,0.0831f,0.00885f,-0.0306f,-0.0564f,0.0017f,0.14f,-0.122f,0.084f,-0.0856f,-0.197f,-0.0582f,-0.162f,0.0413f,-0.0978f,0.0298f,-0.0597f,-0.122f,0.0575f,-0.0437f,0.0345f,0.253f,0.0766f,0.0149f,-0.0574f,0.125f,-0.0342f,0.0187f,-0.000106f,0.0494f,0.112f,-0.0365f,-0.184f,-0.0378f,-0.0375f,0.0124f,-0.000765f,0.038f,-0.112f,-0.154f,0.0759f,-0.0212f,-0.0217f,0.00218f,-0.0672f,-0.0213f,-0.0146f,-0.0124f,0.0152f,0.0449f,-0.0817f,-0.0692f,0.142f,0.0743f,-0.129f,-0.0184f,0.0761f,0.0444f,0.0813f,0.28f,-0.0323f,-0.00198f,-0.0236f,-0.0212f,0.136f,-0.0298f,0.068f,0.022f,-0.175f,-0.0966f,0.0449f,0.0067f,0.0634f,-0.0204f,-0.0847f,0.0642f,-0.206f,-0.0748f,0.0201f,0.0623f,-0.166f,-0.0804f,-0.0629f,-0.0286f,-0.0237f,0.0496f,-0.053f,-0.131f,-0.128f,0.0584f,0.0788f,0.117f,0.0286f,-0.124f,0.102f,-0.0404f,0.0172f,-0.0345f,-0.0646f,-0.171f,0.00373f,0.0475f,0.0806f,0.0143f,0.0542f,0.112f,0.031f,0.0669f,-0.0602f,-0.105f,-0.0606f,0.0574f,0.0493f,0.2f,-0.00849f,-0.062f,0.00975f,-0.0149f,0.118f,0.086f,-0.0938f,-0.197f,0.00324f,0.0782f,0.0443f,0.0696f,0.119f,0.00156f,-0.0148f,-0.191f,-0.0215f,-0.0976f,-0.206f,-0.0102f,0.0729f,0.139f,0.1f,-0.0196f,-0.0433f,0.0478f,-0.0136f,-0.0424f,0.0935f,0.129f,0.141f,0.224f,-0.0151f,-0.0105f,0.0234f,-0.0623f,-0.0875f,0.0487f,-0.0951f,0.00397f,-0.0877f,-0.0675f,0.143f,-0.137f,-0.0623f,0.0733f,0.112f,0.0312f,0.102f,-0.0481f,-0.124f,0.0466f,0.0691f,0.149f,-0.0165f,-0.0349f,0.0843f,0.0702f,0.0692f,0.0144f,-0.057f,-0.0361f,0.0564f,0.0635f,0.0311f,0.127f,0.147f,-0.0517f,-0.126f,-0.0328f,0.025f,-0.0265f,-0.0822f,-0.0822f,0.0485f,0.00845f,-0.0147f,-0.0575f,-0.247f,-0.104f,0.00223f,0.0643f,0.124f,-0.0284f,-0.0149f,-0.0731f,-0.0404f,0.0284f,-0.0625f,0.0523f,-0.123f,-0.00743f,0.0513f,0.0776f,0.0326f,-0.11f,0.186f,0.12f,-0.0573f,-0.109f,0.0922f,-0.00294f,-0.115f,0.214f,0.0318f,-0.00317f,0.115f,0.0308f,-0.133f,0.138f,-0.000382f,0.173f,0.0873f,-0.121f,0.0396f,0.169f,0.0608f,0.00604f,-0.0491f,0.0493f,-0.0952f,0.149f,-0.0629f,-0.0419f,0.22f,-0.156f,-0.0551f,0.23f,-0.167f,-0.0469f,0.0451f,0.0261f,-0.104f,-0.0738f,0.0796f,0.0533f,0.186f,-0.0114f,0.0694f,-0.0157f,-0.0344f,-0.0643f,-0.0202f,-0.0701f,0.0929f,0.0137f,-0.202f,0.0582f,-0.151f,0.102f,0.0673f,-0.0428f,-0.0401f,-0.038f,-0.0995f,-0.0124f,0.0156f,0.00654f,-0.0139f,0.0722f,-0.0623f,0.0258f,0.151f,0.114f,0.228f,-0.0111f,-0.14f,0.114f,0.0776f,-0.132f,-0.0387f,0.0982f,0.0325f,-0.0994f,0.225f,-0.176f,-0.19f,-0.111f,-0.11f,0.0231f,-0.139f,-0.0259f,0.022f,0.0173f,-0.0631f,-0.149f,0.287f,0.0878f,-0.126f,-0.195f,-0.0152f,0.221f,0.0046f,-0.0554f,0.019f,0.00506f,0.22f,-0.0322f,0.0399f,-0.00475f,-0.042f,-0.0225f,-0.0551f,0.0659f,0.0125f,-0.0428f,0.0686f,-0.0306f,0.0127f,-0.00447f,-0.0946f,0.041f,-0.0635f,-0.0425f,0.0584f,-0.0111f,-0.173f,0.0546f,-0.0729f,-0.015f,-0.00876f,-0.201f,-0.0605f,-0.144f,-0.0771f,0.00282f,-0.0159f,-0.0984f,-0.106f,-0.0043f,0.0672f,-0.0772f,0.0117f,0.00421f,-0.198f,0.0156f,-0.255f,0.0152f,-0.132f,0.0662f,-0.0686f,0.157f,0.099f,-0.135f,0.0346f,0.159f,-0.0997f,-0.0375f,0.00521f,-0.0084f,0.031f,-0.0149f,-0.133f,-0.0567f,0.0058f,-0.0891f,0.0839f,-0.0107f,-0.0949f,0.0234f,-0.0323f,-0.0776f,0.0504f,-0.0522f,-0.0324f,-0.193f,0.00494f,-0.0195f,0.08f,0.0143f,-0.163f,-0.046f,0.0603f,-0.0242f,0.0288f,0.0117f,0.0844f,0.11f,0.0521f,-0.0203f,-0.125f,-0.0838f,0.0886f,-0.0338f,0.0754f,0.16f,-0.0722f,0.0761f,-0.0273f,-0.0792f,-0.243f,0.0957f,-0.105f,0.01f,0.0493f,-0.0195f,0.194f,0.0145f,0.0211f,0.0228f,0.139f,-0.047f,0.0594f,0.0395f,-0.017f,-0.0511f,-0.0441f,-0.052f,-0.107f,-0.0919f,0.104f,-0.0844f,0.16f,-0.101f,-0.0935f,0.00114f,-0.00357f,-0.0347f,0.0152f,-0.0544f,0.107f,0.0571f,0.115f,-0.0158f,-0.0516f,-0.0156f,0.273f,0.285f,0.0619f,-0.0271f,0.0321f,0.124f,-0.00781f,-0.193f,0.0124f,-0.0302f,0.155f,-0.0516f,-0.113f,-0.0775f,-0.0999f,0.0439f,-0.0266f,0.00735f,0.0646f,-0.0117f,-0.0452f,0.0686f,-0.0855f,-0.151f,0.0662f,0.0695f,-0.0722f,0.0485f,0.278f,0.00292f,0.0605f,0.0116f,0.101f,0.0803f,0.0245f,-0.0985f,-0.0701f,-0.206f,0.169f,0.092f,-0.0804f,-0.0183f,0.0575f,-0.155f,-0.0151f,-0.0266f,0.0259f,0.0239f,0.0453f,-0.0392f,0.00314f,-0.0367f,-0.0886f,0.0402f,-0.0441f,0.0611f,0.0302f,-0.00445f,-0.0779f,-0.266f,0.0511f,0.052f,0.172f,0.196f,-0.0162f,-0.0609f,-0.0764f,-0.142f,-0.0372f,-0.0667f,0.0581f,-0.0464f,-0.000986f,0.0394f,0.071f,0.0232f,0.302f,-0.0168f,0.0671f,-0.0797f,0.0478f,-0.188f,0.0305f,0.0627f,0.0376f,0.0751f,0.00518f,-0.148f,0.171f,0.142f,-0.0186f,0.00291f,0.0425f,-0.102f,0.0246f,-0.0996f,0.109f,0.195f,0.0162f,0.0614f,-0.192f,0.053f,-0.148f,0.0895f,0.124f,0.0622f,0.00785f,0.156f,0.113f,0.143f,-0.0914f,0.118f,-0.0655f,-0.164f,-0.0127f,-0.0457f,0.0322f,0.0618f,-0.229f,-0.0374f,0.0705f,-0.0777f,-0.0952f,-0.0263f,0.0864f,-0.13f,-0.222f,-0.116f,0.114f,0.0689f,0.0768f,0.0147f,0.0458f,0.0109f,-0.0463f,0.0391f,-0.15f,0.0563f,0.0813f,-0.0134f,0.237f,-0.0359f,0.114f,0.009f,0.171f,-0.0571f,0.0656f,0.0429f,-0.0155f,0.0379f,0.0185f,-0.00167f,0.0422f,-0.205f,0.0358f,-0.0503f,-0.041f,-0.0595f,0.0436f,0.0713f,0.0894f,0.0696f,-0.0679f,0.0122f,-0.0342f,-0.0202f,-0.0294f,-0.0721f,-0.0653f,0.145f,0.0206f,-0.0439f,0.0122f,0.125f,-0.0262f,-0.0234f,0.0885f,-0.00784f,-0.0776f,-0.00586f,0.0774f,-0.0193f,-0.0279f,-0.0975f,-0.0206f,0.0146f,-0.0822f,0.000911f,0.0344f,-0.313f,-0.0367f,-0.118f,0.114f,0.0169f,0.109f,-0.00935f,-0.0196f,-0.0257f,-0.00219f,-0.11f,0.2f,0.0434f,0.0767f,-0.0648f,0.137f,-0.0376f,0.0145f,0.112f,-0.07f,0.0588f,0.0794f,-0.000687f,0.00673f,0.133f,0.0162f,-0.122f,-0.0565f,0.0306f,0.0809f,-0.0969f,-0.0133f,-0.0187f,0.0695f,0.0275f,0.0954f,0.0973f,-0.0355f,-0.0606f,-0.0705f,0.0556f,-0.0569f,-0.18f,0.11f,-0.164f,-0.00198f,-0.103f,-0.0692f,-0.113f,-0.118f,-0.00184f,0.129f,-0.0183f,0.139f,0.105f,0.0704f,-0.0192f,-0.149f,0.00259f,-0.00389f,0.0913f,-0.249f,-0.186f,-0.0523f,-0.00356f,0.0206f,0.3f,-0.0415f,0.0674f,-0.0545f,-0.0343f,-0.0444f,0.00398f,0.0313f,0.0301f,-0.187f,0.0397f,-0.0036f,0.00469f,0.0528f,-0.0152f,0.0105f,-0.0487f,0.0274f,-0.0628f,0.0572f,-0.0531f,0.027f,0.00785f,-0.0302f,-0.0621f,0.237f,0.0278f,0.0291f,-0.0628f,-0.0524f,0.0884f,0.0635f,-0.024f,0.0458f,0.0331f,0.0786f,0.00946f,-0.0559f,0.0137f,-0.227f,0.032f,-0.0498f,0.136f,0.0838f,0.137f,0.0764f,-0.0201f,0.155f,0.0912f,0.0514f,0.0352f,0.0374f,0.0369f,-0.0145f,0.023f,0.0704f,-0.194f,-0.0138f,0.0611f,-0.0892f,-0.0688f,0.224f,0.0103f,-0.0105f,-0.0872f,-0.0386f,0.0923f,0.0448f,-0.0251f,-0.0192f,-0.145f,0.17f,-0.0376f,0.118f,-0.0251f,-0.0324f,0.0298f,0.0359f,0.0969f,-0.0491f,0.00652f,0.257f,0.0964f,-0.0877f,0.0527f,-0.0775f,-0.0697f,0.0468f,-0.0599f,-0.0837f,0.0688f,0.0364f,-0.0433f,-0.107f,0.0307f,0.0928f,0.142f,-0.132f,-0.0786f,0.198f,0.0596f,-0.0407f,-0.00256f,-0.00544f,-0.0299f,-0.0093f,0.00795f,0.011f,-0.0272f,-0.12f,-0.222f,0.058f,0.095f,0.0612f,-0.0749f,0.0254f,-0.0573f,-0.0641f,-0.0381f,0.0384f,-0.0927f,0.0175f,-0.0465f,0.0511f,-0.0663f,0.102f,-0.0162f,0.0967f,0.173f,-0.0878f,-0.00156f,-0.0149f,0.114f,-0.0206f,-0.0986f,0.0274f,-0.0972f,-0.177f,-0.168f,-0.0896f,-0.00259f,-0.291f,0.0492f,0.0492f,0.0909f,-0.00762f,0.0285f,-0.156f,-0.0193f,0.0193f,-0.0639f,0.0491f,-0.106f,-0.119f,-0.0733f,-0.0046f,-0.0276f,-0.0219f,0.0496f,-0.0326f,0.0121f,-0.202f,0.037f,-0.131f,-0.00783f,0.0548f,0.148f,0.0757f,0.00321f,-0.0166f,0.164f,-0.0757f,-0.131f,-0.0393f,0.0132f,-0.0888f,-0.0803f,-0.0354f,-0.0328f,0.0901f,0.0277f,-0.0355f,0.0297f,-0.122f,-0.0596f,0.0186f,0.0636f,-0.165f,-0.0582f,-0.056f,-0.0484f,-0.215f,-0.303f,0.044f,-0.0878f,-0.0232f,0.0662f,0.0763f,-0.0036f,0.00162f,0.0375f,-0.03f,-0.0203f,0.0118f,-0.0045f,0.287f,-0.0176f,0.0232f,0.165f,-0.0549f,0.0174f,0.0578f,0.0812f,-0.0264f,-0.0113f,0.0128f,0.0587f,0.0779f,0.00658f,0.014f,0.0285f,0.0634f,0.0698f,-0.0888f,-0.0055f,0.0299f,-0.0901f,0.0176f,-0.00916f,-0.0818f,0.0814f,0.0848f,-0.00208f,0.123f,0.00152f,0.0109f,-0.0383f,-0.0155f,-0.0495f,0.0869f,0.0663f,0.042f,-0.0217f,0.026f,0.108f,-0.000137f,0.0154f,0.0245f,0.106f,-0.0201f,0.0494f,0.0627f,-0.135f,-0.0642f,-0.00049f,-0.019f,-0.0743f,0.0612f,0.129f,-0.133f,-0.136f,0.0017f,0.0571f,-0.113f,0.0253f,-0.17f,-0.292f,0.0281f,0.0696f,-0.0445f,0.0114f,0.0188f,0.0679f,-0.0576f,-0.0341f,-0.114f,-0.00745f,-0.154f,-0.184f,-0.0433f,0.0959f,-0.00303f,0.107f,0.0432f,0.00587f,0.0639f,0.194f,0.0994f,0.0249f,-0.0652f,0.116f,0.0286f,-0.0132f,0.196f,0.0939f,-0.0016f,0.00231f,-0.0817f,-0.0674f,-0.0662f,0.117f,-0.0523f,0.0251f,0.0654f,-0.0279f,0.132f,-0.0718f,0.0902f,-0.0957f,-0.0425f,-0.0259f,-0.231f,0.0679f,0.0346f,-0.00086f,0.426f,0.111f,0.0269f,0.0324f,-0.0771f,-0.0263f,-0.00751f,-0.0486f,0.0607f,0.0623f,0.0887f,0.0668f,-0.0635f,0.0118f,0.0235f,-0.0852f,-0.0525f,0.000132f,-0.0504f,-0.014f,-0.108f,0.0741f,-0.0356f,0.0136f,-0.027f,0.144f,0.0166f,-0.00516f,0.178f,0.126f,-0.21f,0.0108f,-0.125f,-0.0449f,-0.0834f,-0.139f,-0.0259f,-0.0258f,0.000673f,0.0343f,0.00416f,-0.0435f,-0.0766f,-0.016f,0.00245f,0.0488f,0.135f,0.0588f,0.0626f,0.017f,-0.0127f,-0.104f,0.0422f,0.0416f,-0.00766f,-0.032f,-0.0476f,-0.0748f,-0.112f,0.0213f,-0.0262f,0.0288f,0.0191f,-0.227f,0.0304f,-0.168f,-0.136f,0.0504f,0.00191f,-0.146f,-0.119f,0.0707f,-0.013f,0.0369f,-0.0356f,-0.103f,0.1f,-0.0225f,0.016f,0.122f,-0.00154f,-0.0028f,-0.138f,-0.00443f,0.16f,-0.0434f,-0.0496f,-0.238f,-0.0985f,-0.24f,0.121f,0.125f,-0.0679f,-0.0272f,0.0311f,0.135f,0.174f,0.0214f,0.0525f,0.114f,0.0738f,0.0594f,-0.147f,0.103f,0.041f,-0.00168f,-0.0255f,-0.16f,-0.105f,-0.0412f,-0.111f,0.00137f,0.141f,0.0145f,-0.0755f,-0.0883f,-0.03f,-0.125f,0.0284f,-0.0581f,0.16f,0.0663f,0.0343f,-0.0216f,-0.187f,0.0614f,0.0318f,-0.0439f,0.0264f,0.0542f,0.0149f,-0.0394f,0.124f,0.0177f,-0.0783f,0.0895f,0.0316f,-0.0798f,-0.0282f,-0.0802f,0.0202f,0.00671f,-0.0159f,0.144f,0.0378f,-0.0271f,-0.0262f,-0.0561f,0.0484f,0.0562f,0.116f,0.00118f,0.0427f,0.0484f,0.0769f,0.0203f,-0.0341f,-0.108f,-0.0427f,0.171f,0.0318f,0.0376f,0.094f,0.169f,-0.0389f,-0.0269f,-0.055f,-0.0803f,0.141f,0.039f,0.12f,-0.197f,-0.0453f,-0.0042f,-0.0524f,0.0643f,-0.049f,-0.0897f,0.0208f,0.077f,-0.0308f,0.104f,-0.0357f,0.0381f,0.00734f,0.0923f,-0.047f,0.0567f,0.192f,-0.0397f,0.0129f,0.0309f,0.149f,-0.054f,-0.0916f,0.0787f,-0.132f,0.11f,-0.016f,0.031f,-0.0615f,-0.00672f,-0.0512f,0.00681f,-0.0462f,0.0293f,-0.118f,0.0445f,-0.0608f,0.0639f,-0.0441f,0.0313f,-0.216f,-0.139f,0.0305f,0.0784f,-0.0364f,-0.0132f,0.214f,-0.253f,-0.0534f,-0.0711f,-0.0647f,0.0338f,0.0268f,0.11f,-0.105f,0.164f,-0.127f,0.014f,0.0226f,-0.0826f,0.0503f,-0.028f,-0.0285f,-0.0264f,0.208f,0.0438f,0.08f,0.0892f,-0.0845f,0.0279f,-0.059f,0.141f,0.107f,-0.149f,0.0655f,0.0453f,0.0795f,-0.0425f,0.0824f,0.0523f,0.262f,-0.0129f,0.0298f,0.0984f,0.0924f,0.135f,-0.0119f,0.103f,0.113f,-0.0456f,0.0233f,-0.128f,0.0713f,0.0443f,0.0307f,0.0271f,-0.0536f,0.135f,-0.109f,-0.0991f,0.0107f,0.0285f,-0.0501f,-0.0492f,0.023f,0.184f,-0.126f,0.0737f,0.185f,-0.0937f,-0.0123f,-0.134f,0.0703f,-0.0686f,-0.152f,-0.0789f,-0.115f,-0.0399f,0.107f,0.0345f,0.00234f,0.0209f,0.0414f,-0.0886f,-0.0703f,-0.0506f,-0.103f,-0.0808f,-0.06f,-0.0387f,0.0268f,0.0811f,0.091f,0.0249f,-0.0219f,0.0245f,0.112f,-0.137f,0.0227f,-0.0738f,0.248f,0.289f,0.0417f,0.0348f,0.0719f,0.0245f,-0.00512f,0.118f,-0.128f,-0.00439f,0.0334f,0.0491f,-0.1f,-0.0337f,-0.0609f,-0.0195f,0.028f,-0.229f,0.0549f,0.0598f,-0.0218f,0.00827f,-0.118f,0.101f,-0.0585f,-0.00115f,-0.00515f,0.0065f,-0.0128f,0.197f,-0.278f,0.0741f,0.124f,0.0154f,-0.0391f,0.176f,0.0579f,-0.145f,0.0578f,-0.0618f,-0.0504f,-0.0279f,0.101f,-0.182f,0.029f,-0.0245f,0.203f,0.0305f,-0.0317f,-0.0677f,-0.081f,-0.0671f,0.18f,0.0653f,-0.242f,0.0586f,-0.0771f,-0.0455f,-0.0483f,0.184f,-0.149f,0.104f,-0.0271f,0.0369f,-0.109f,-0.0305f,0.0339f,0.0245f,-0.088f,-0.214f,0.0759f,0.0956f,0.228f,0.0466f,-0.0715f,-0.0582f,-0.0986f,0.234f,0.0223f,0.0258f,0.0685f,-0.156f,-0.0153f,-0.0204f,0.00296f,0.025f,-0.138f,0.0383f,-0.0236f,-0.0288f,0.062f,0.0142f,0.00905f,-0.062f,0.033f,-0.118f,-0.226f,-0.0133f,0.154f,0.0412f,0.0464f,0.034f,-0.0233f,-0.0578f,-0.00618f,0.127f,0.0207f,-0.0739f,0.136f,-0.00255f,-0.0153f,0.0482f,0.0229f,-0.0364f,-0.14f,-0.0194f,-0.129f,-0.0168f,0.00211f,0.00293f,0.0641f,-0.271f,0.0982f,0.133f,0.0978f,0.00143f,0.0272f,-0.0302f,0.0195f,-0.0463f,-0.0138f,0.0139f,-0.125f,-0.0354f,0.000665f,-0.0931f,0.0495f,-0.115f,-0.158f,-0.111f,0.103f,0.16f,0.0905f,-0.186f,-0.0246f,0.0496f,-0.0137f,-0.0131f,-0.0866f,0.0466f,-0.212f,-0.0658f,0.0993f,-0.0136f,0.0134f,0.0279f,0.0255f,0.0505f,0.0949f,0.000538f,-0.0451f,0.0426f,0.0917f,0.023f,-0.0571f,-0.194f,0.0519f,0.0021f,-0.149f,0.0655f,-0.172f,-0.129f,0.0358f,-0.00928f,0.0732f,0.188f,-0.0626f,-0.0508f,0.168f,0.116f,0.045f,0.00148f,0.0138f,-0.00324f,0.0484f,-0.0497f,-0.0384f,0.0812f,0.0324f,0.0813f,-0.116f,-0.0111f,-0.201f,-0.154f,-0.107f,-0.00207f,0.147f,-0.00601f,0.065f,0.0527f,-0.0732f,0.0346f,-0.172f,-0.054f,-0.0645f,-0.231f,0.133f,0.0533f,0.0476f,0.124f,-0.00613f,-0.119f,0.0227f,-0.0651f,-0.044f,0.0148f,0.13f,-0.0511f,0.126f,-0.0418f,-0.0227f,0.00369f,0.113f,0.151f,0.107f,-0.141f,0.0149f,0.0335f,0.0161f,-0.0481f,0.175f,-0.00694f,-0.0547f,-0.259f,0.107f,-0.0292f,0.151f,0.0487f,-0.0486f,-0.00864f,0.00605f,-0.0226f,0.064f,0.101f,-0.0227f,-0.093f,-0.0984f,-0.321f,-0.0387f,-0.112f,-0.0668f,0.285f,0.0786f,-0.0155f,0.0328f,-0.033f,-0.0813f,0.183f,-0.0843f,0.0236f,0.00229f,0.064f,0.00717f,0.0993f,-0.0366f,-0.105f,0.0768f,0.0325f,0.0213f,0.11f,-0.0693f,-0.185f,0.00554f,-0.177f,-0.105f,0.0536f,0.0789f,0.0316f,0.0622f,0.149f,-0.129f,-0.0278f,0.00702f,0.0246f,0.0044f,-0.157f,0.0207f,-0.0943f,-0.0976f,-0.0488f,0.0375f,0.134f,-0.0384f,0.232f,0.0218f,-0.102f,0.136f,-0.08f,-0.0741f,-0.035f,-0.183f,0.00348f,-0.16f,-0.0711f,0.035f,-0.039f,0.0454f,0.0145f,0.00314f,0.062f,-0.0526f,0.0414f,0.162f,-0.0647f,0.0818f,-0.0755f,0.0763f,-0.124f,-0.157f,0.0822f,0.0296f,-0.0347f,0.0274f,0.0164f,-0.0861f,0.036f,0.0148f,-0.0143f,-0.0149f,-0.198f,0.133f,0.00418f,-0.0658f,0.134f,0.0661f,0.0992f,-0.00918f,0.0183f,-0.0466f,-0.016f,-0.0448f,0.0206f,-0.0703f,-0.0906f,-0.0147f,-0.0353f,-0.077f,-0.027f,-0.0702f,0.0618f,0.0337f,0.0256f,-0.0832f,-0.0768f,-0.00482f,-0.0199f,-0.103f,-0.0806f,-0.00137f,-0.0156f,0.113f,-0.063f,-0.0733f,-0.124f,-0.0488f,0.0349f,-0.00438f,-0.0509f,0.171f,0.00664f,-0.101f,-0.0396f,-0.114f,-0.0226f,-0.0303f,0.108f,0.0388f,0.0964f,-0.0224f,-0.0833f,0.282f,0.0753f,0.0307f,0.173f,0.16f,0.0992f,0.0764f,-0.028f,-0.0438f,-0.157f,0.0199f,0.166f,0.109f,-0.00548f,0.0502f,-0.00258f,-0.152f,0.13f,0.08f,-0.0403f,0.102f,-0.00823f,-0.000773f,-0.0402f,0.0239f,-0.0683f,-0.107f,0.168f,-0.0372f,-0.0102f,0.064f,-0.0228f,-0.0232f,0.055f,0.0358f,0.0831f,0.0885f,0.0121f,-0.218f,-0.000573f,-0.0569f,0.0147f,0.0661f,0.00219f,0.198f,-0.00763f,0.0767f,0.0235f,-0.231f,0.0237f,-0.0249f,-0.0538f,0.163f,-0.0495f,-0.00531f,-0.0743f,0.0262f,-0.0148f,-0.0745f,0.0463f,-0.077f,0.0302f,0.0318f,-0.0497f,-0.0175f,-0.0676f,0.058f,0.0225f,-0.0217f,0.0285f,-0.264f,0.00532f,-0.172f,-0.107f,-0.0199f,-0.113f,0.0264f,-0.0236f,0.147f,-0.011f,0.0549f,0.0898f,-0.0304f,-0.113f,0.0269f,0.179f,0.0914f,-0.0591f,-0.108f,0.0682f,-0.109f,-0.0782f,-0.0194f,0.177f,0.00434f,0.0128f,-0.0592f,-0.0879f,-0.00669f,-0.0367f,-0.0305f,0.0375f,-0.00835f,-0.0389f,-0.241f,0.0317f,0.112f,0.0571f,-0.0302f,0.0166f,0.0515f,0.0368f,0.118f,0.112f,0.0283f,0.00697f,-0.16f,0.0865f,0.0222f,0.032f,-0.0107f,0.0911f,-2.23e-05f,0.0294f,0.034f,-0.0808f,0.311f,-0.112f,-0.0248f,-0.00807f,-0.105f,0.0808f,-0.013f,0.018f,-0.0476f,0.00764f,-0.0442f,0.129f,0.11f,0.0267f,0.00915f,0.154f,0.0469f,-0.037f,-0.0781f,-0.29f,0.075f,0.0168f,0.108f,-0.109f,0.0574f,0.0274f,-0.118f,0.0119f,0.0571f,-0.063f,-0.0774f,0.0121f,-0.101f,-0.0169f,-0.00771f,-0.00639f,0.0977f,0.264f,0.0461f,-0.0359f,-0.0991f,-0.0514f,-0.000667f,-0.0759f,0.00254f,-0.0467f,-0.0551f,0.104f,-0.0807f,-0.139f,-0.0225f,-0.0197f,0.0425f,-0.0687f,0.00136f,0.0122f,-0.0146f,0.049f,0.0953f,-0.00671f,0.0605f,-0.0194f,-0.0839f,-0.177f,0.00168f,-0.0384f,-0.155f,-0.00214f,-0.0355f,0.101f,-0.0221f,0.0647f,0.181f,0.0856f,0.14f,0.0651f,0.0276f,0.167f,-0.254f,-0.00836f,-0.125f,-0.0267f,0.118f,-0.174f,-0.0755f,0.0269f,-0.0669f,-0.134f,0.131f,-0.0483f,-0.0661f,0.232f,0.0735f,-0.0788f,0.113f,0.0335f,0.0932f,-0.0156f,0.163f,0.143f,0.0754f,0.124f,-0.0605f,0.163f,-0.0367f,-0.0398f,0.0504f,-0.0675f,0.0873f,-0.148f,-0.111f,-0.0635f,0.0721f,-0.118f,0.0745f,-0.0146f,0.0541f,-0.183f,-0.0875f,-0.0165f,-0.0152f,-0.0741f,-0.096f,0.0652f,0.123f,-0.074f,-0.067f,-0.177f,0.0783f,-0.0641f,0.105f,0.0126f,-0.0907f,0.0412f,-0.112f,0.0914f,-0.0155f,0.0221f,0.117f,0.0243f,0.00653f,-0.0508f,-0.127f,0.0786f,0.0333f,-0.0781f,-0.267f,-0.122f,-0.236f,0.000223f,0.08f,-0.00174f,0.0956f,-0.00116f,0.0341f,-0.112f,-0.029f,0.189f,-0.198f,0.0232f,-0.00778f,0.141f,-0.04f,-0.0948f,0.12f,-0.0976f,0.0386f,-0.0392f,0.0781f,-0.12f,-0.0275f,0.104f,0.107f,0.0376f,0.0129f,-0.0355f,-0.156f,0.234f,-0.0116f,0.0519f,0.173f,-0.0718f,0.0181f,-0.0816f,0.0342f,-0.00634f,-0.0547f,-0.0202f,0.115f,0.00302f,0.0869f,-0.0443f,0.0381f,-0.0946f,-0.0972f,-0.166f,0.121f,0.0957f,0.188f,0.0554f,0.215f,0.0516f,0.2f,-0.0662f,-0.052f,0.184f,0.0863f,-0.0383f,0.0422f,-0.0426f,-0.176f,0.101f,-0.0609f,-0.0471f,-0.00685f,-0.0169f,-0.098f,0.096f,0.00688f,-0.00902f,-0.238f,-0.0123f,0.0918f,-0.0613f,0.0453f,-0.0308f,-0.0151f,-0.0472f,0.116f,0.0141f,0.0499f,0.042f,-0.000441f,-0.0314f,0.0212f,-0.401f,0.0992f,0.00497f,0.0733f,0.037f,0.0158f,-0.216f,-0.0987f,0.00479f,-0.00158f,0.151f,0.0377f,0.00592f,-0.0604f,0.0843f,0.0446f,-0.0776f,0.131f,0.0186f,-0.116f,0.0881f,0.0824f,0.0686f,0.0428f,-0.1f,-0.0496f,0.00999f,-0.0354f,-0.204f,0.0367f,-0.0876f,-0.0526f,0.0181f,-0.0304f,-0.0297f,0.0781f,0.117f,0.125f,-0.172f,0.157f,0.238f,0.135f,0.127f,0.126f,-0.0514f,0.112f,0.116f,-0.000618f,0.106f,-0.0917f,0.0876f,0.0688f,-0.0158f,-0.0538f,-0.00313f,0.0137f,0.0345f,0.0159f,0.0907f,-0.0242f,0.014f,0.115f,0.0881f,0.00464f,-0.0225f,0.0927f,0.0845f,0.0941f,0.0329f,0.113f,-0.12f,0.0406f,-0.0164f,-0.00133f,-0.0592f,0.0422f,-0.0214f,0.029f,0.0105f,0.0222f,0.156f,0.0204f,-0.0402f,0.0277f,-0.201f,0.0213f,-0.0306f,0.0596f,0.0708f,0.0699f,0.158f,0.0356f,-0.148f,-0.0782f,0.0229f,-0.0802f,-0.0699f,-0.0262f,-0.0489f,0.122f,-0.0594f,0.0958f,-0.0919f,-0.0011f,0.0895f,0.0559f,-0.077f,-0.0305f,0.116f,0.0718f,-0.147f,-0.0882f,0.0975f,0.101f,0.223f,0.115f,-0.0313f,0.0707f,-0.092f,-0.0346f,0.0631f,0.166f,-0.0256f,-0.031f,0.0519f,0.0518f,-0.0477f,0.206f,-0.236f,-0.0204f,-0.0147f,0.0687f,0.122f,-0.145f,-0.12f,0.0781f,-0.0378f,-0.236f,0.0487f,0.109f,-0.0363f,-0.0052f,0.00783f,0.0529f,0.0792f,-0.0408f,0.15f,0.125f,0.0292f,-0.0822f,-0.163f,0.101f,-0.021f,-0.173f,-0.0913f,-0.0197f,-0.0209f,0.0248f,0.0577f,-0.0781f,0.207f,0.0444f,-0.1f,-0.044f,-0.244f,0.0172f,0.128f,0.0915f,-0.0486f,0.0167f,0.0779f,-0.0257f,0.0128f,0.00225f,-0.00361f,-0.0239f,0.0536f,0.189f,-0.0102f,-0.0139f,-0.00215f,0.00431f,-0.00753f,-0.112f,0.0144f,-0.0447f,-0.0758f,-0.0757f,0.102f,-0.0415f,0.0838f,-0.0876f,-0.16f,0.0517f,0.0128f,-0.0266f,0.00461f,0.0768f,0.0406f,0.158f,0.00799f,0.00417f,0.0518f,0.0128f,0.00237f,-0.266f,0.0442f,-0.0606f,0.0197f,0.11f,0.0454f,-0.0269f,0.174f,0.145f,0.0203f,-0.0633f,0.217f,0.00127f,-0.117f,0.0119f,0.00674f,-0.0119f,-0.0081f,-0.0175f,0.00879f,0.0107f,-0.0217f,0.0762f,0.112f,-0.0317f,-0.0328f,0.0882f,0.105f,-0.0326f,-0.131f,-0.0555f,0.0464f,-0.00385f,-0.129f,-0.0385f,-0.0439f,-0.107f,-0.128f,0.0355f,-0.00447f,0.0581f,0.0301f,0.0452f,0.00472f,0.0361f,-0.0671f,0.00802f,-0.0759f,-0.0166f,-0.031f,-0.0366f,-0.0712f,0.0588f,-0.0714f,-0.0132f,0.0288f,-0.0787f,-0.0531f,-0.0269f,0.0118f,0.193f,-0.0249f,-0.0395f,-0.0368f,-0.148f,0.0465f,-0.153f,0.0334f,0.0917f,0.0267f,-0.186f,-0.0682f,0.0229f,0.00473f,-0.00301f,0.00334f,0.0047f,0.0746f,0.04f,-0.102f,0.0623f,-0.0352f,-0.234f,-0.0824f,-0.0169f,0.0208f,-0.0652f,0.036f,0.0113f,0.0494f,-0.112f,-0.0844f,-0.0785f,-0.0938f,0.00619f,0.0878f,0.149f,-0.142f,0.237f,-0.0013f,0.0925f,-0.121f,-0.1f,-0.000288f,0.0886f,0.00635f,-0.0136f,-0.0904f,0.00919f,-0.0206f,-0.0768f,0.121f,-0.0258f,-0.134f,0.145f,0.021f,-0.0326f,-0.404f,-0.19f,0.112f,-0.149f,-0.0953f,-0.0496f,0.00411f,0.0109f,-0.00751f,-0.211f,0.182f,-0.0406f,-0.174f,0.174f,0.0617f,-0.126f,0.205f,0.186f,-0.00779f,-0.0532f,-0.1f,0.102f,0.00931f,-0.142f,0.0516f,-0.00819f,0.0589f,-0.0244f,0.25f,-0.165f,0.0471f,0.216f,0.0244f,0.0052f,-0.0411f,0.06f,0.0421f,0.0488f,-0.199f,0.066f,-0.132f,0.173f,-0.05f,0.0636f,-0.0475f,0.00883f,-0.137f,0.0376f,0.105f,0.053f,0.0766f,0.0131f,0.024f,0.0251f,0.117f,-0.16f,-0.016f,-0.0858f,0.07f,-0.16f,-0.00498f,0.0583f,-0.0723f,-0.0186f,0.00747f,0.0385f,-0.000991f,-0.189f,0.0199f,0.0738f,-0.0368f,-0.0828f,0.199f,0.0884f,0.00405f,0.135f,-0.0518f,0.184f,0.0489f,0.0384f,-0.0744f,0.0517f,-0.0898f,0.188f,0.0016f,-0.203f,0.0936f,0.211f,-0.0268f,-0.0359f,-0.0226f,0.134f,-0.0285f,0.094f,0.068f,-0.0314f,-0.00337f,-0.048f,0.00179f,0.132f,0.0551f,-0.0268f,-0.0436f,-0.0177f,-0.0248f,0.0194f,-0.0195f,-0.0916f,0.0248f,-0.106f,-0.103f,-0.235f,-0.133f,-0.0444f,-0.0105f,0.0838f,-0.0571f,0.12f,0.0761f,0.0517f,-0.0735f,-0.0931f,-0.11f,-0.103f,-0.0953f,-0.00853f,-0.00944f,0.0956f,0.0256f,-0.0894f,-0.113f,-0.143f,-0.153f,0.35f,0.0016f,0.193f,0.182f,0.0077f,-0.2f,0.0178f,0.159f,0.281f,-0.0756f,0.161f,0.0318f,-0.0485f,-0.128f,0.0182f,0.0643f,-0.00838f,-0.0532f,-0.0867f,-0.0349f,-0.178f,-0.176f,0.0288f,-0.026f,-0.0979f,-0.267f,0.0429f,-0.053f,-0.0211f,-0.0474f,0.0517f,0.126f,0.103f,0.0405f,0.0893f,-0.247f,0.0389f,-0.133f,0.0574f,-0.128f,-0.118f,0.0844f,0.0222f,0.0905f,-0.0182f,0.0257f,0.0802f,-0.00948f,0.0221f,-0.0842f,0.177f,-0.177f,-0.0247f,0.013f,-0.0927f,-0.00702f,-0.0572f,0.0374f,0.0312f,-0.0208f,0.00249f,-0.0341f,0.0102f,-0.0759f,0.0218f,-0.0431f,-0.138f,0.113f,0.0984f,0.0179f,0.176f,-0.0731f,-0.17f,-0.0225f,0.0711f,-0.0897f,0.0819f,0.124f,-0.0298f,-0.0017f,-0.0205f,-0.0371f,0.118f,-0.0299f,0.258f,-0.00281f,0.0749f,0.0352f,-0.116f,-0.0305f,0.0346f,-0.0179f,0.0961f,-0.104f,0.0161f,0.0809f,0.0801f,-0.0287f,0.0379f,-0.0601f,0.0209f,0.0904f,0.0505f,-0.0338f,-0.0147f,0.00241f,-0.0625f,0.0319f,0.102f,0.0081f,-0.074f,0.00451f,0.136f,0.00267f,0.0704f,-0.225f,-0.0471f,0.026f,-0.179f,0.0758f,-0.109f,-0.0233f,-0.228f,0.0415f,0.113f,-0.0707f,-0.0858f,-0.0128f,0.101f,0.0247f,-0.0992f,0.0918f,-0.0178f,-0.00766f,0.231f,-0.00724f,-0.0807f,0.202f,-0.147f,0.232f,-0.00345f,-0.0297f,-0.0989f,0.0657f,-0.0506f,0.104f,0.0828f,0.0675f,0.12f,0.0554f,0.103f,0.0203f,-0.112f,-0.0316f,0.087f,0.076f,-0.141f,0.081f,0.0418f,0.0938f,-0.125f,0.0546f,0.101f,0.053f,0.0643f,0.0983f,0.0127f,0.035f,-0.134f,0.191f,-0.156f,0.00274f,0.0395f,0.0398f,0.0615f,-0.00977f,-0.0383f,0.168f,0.0174f,0.305f,0.099f,-0.0382f,-0.0883f,0.0163f,0.0461f,-0.0468f,-0.116f,0.00458f,-0.0985f,0.0266f,-0.0854f,-0.119f,0.147f,-0.0105f,-0.119f,-0.151f,-0.00863f,-0.0545f,-0.0608f,-0.0637f,-0.0378f,0.0557f,-0.0269f,0.0348f,-0.0402f,0.0305f,-0.00885f,-0.152f,-0.0317f,-0.0659f,0.0347f,0.115f,-0.0143f,-0.0998f,0.0372f,-0.0183f,0.0791f,-0.0775f,-0.00286f,-0.00834f,-0.0268f,0.107f,-0.0712f,-0.0866f,0.0208f,0.127f,0.0583f,0.0569f,-0.00482f,-0.0106f,0.097f,-0.0611f,0.103f,0.0461f,-0.042f,0.12f,-0.0373f,0.127f,-0.00868f,-0.0441f,0.223f,-0.0265f,0.0379f,0.0542f,0.0286f,-0.0516f,0.121f,0.048f,0.019f,-0.016f,-0.104f,0.163f,0.225f,0.0426f,0.0918f,0.133f,-0.0449f,0.0502f,-0.057f,-0.0479f,0.0486f,0.0782f,0.103f,-0.201f,0.0175f,-0.0421f,-0.0432f,0.174f,-0.212f,0.0625f,-0.0165f,0.00808f,0.0228f,0.0929f,0.0826f,-0.0193f,0.0428f,-0.101f,-0.0179f,-0.00495f,0.135f,-0.0859f,-0.0757f,0.0979f,0.000672f,-0.0362f,-0.0547f,0.0443f,0.116f,0.139f,0.155f,0.0766f,0.0494f,0.147f,-0.0207f,-0.121f,0.0854f,0.0122f,0.0335f,0.16f,0.0489f,-0.0271f,-0.0055f,0.0766f,-0.000109f,0.164f,-0.206f,0.0501f,0.239f,0.0361f,0.117f,0.0695f,0.0861f,-0.0786f,-0.0547f,-0.0259f,0.138f,-0.000916f,-0.0357f,0.237f,-0.0113f,0.00959f,0.0311f,0.00077f,0.0913f,0.0212f,0.0247f,0.0727f,0.0793f,0.13f,-0.024f,-0.00243f,-0.156f,-0.0936f,0.0255f,0.158f,0.074f,0.169f,0.111f,0.165f,0.153f,0.108f,0.191f,0.00871f,0.0686f,0.125f,-0.0419f,0.0316f,0.0709f,-0.0543f,-0.0424f,0.00831f,0.136f,-0.00432f,0.00398f,-0.0379f,-0.014f,0.0171f,0.0495f,-0.0571f,0.0302f,0.0472f,0.0907f,0.00246f,-0.0688f,-0.0276f,0.00473f,-0.0784f,0.215f,0.134f,0.0256f,-0.00616f,-0.0846f,0.0409f,-0.00346f,0.0444f,-0.0554f,0.0159f,-0.0555f,0.341f,0.0701f,0.00213f,0.215f,-0.0525f,0.209f,-0.0505f,-0.158f,0.0763f,0.0329f,-0.0327f,-0.0864f,-0.0782f,-0.0317f,0.099f,0.114f,0.0139f,0.00123f,-0.0134f,0.107f,0.0132f,0.0201f,0.123f,-0.0118f,-0.0573f,0.125f,0.0158f,-0.0162f,-0.00918f,0.105f,-0.0643f,-0.00289f,0.211f,-0.0146f,-0.0672f,0.0163f,-0.00284f,0.0487f,0.0142f,-0.0468f,-0.173f,-0.0628f,-0.0207f,-0.0839f,0.165f,-1.08e-05f,-0.0257f,0.00469f,-0.0752f,-0.0417f,-0.0582f,-0.0787f,-0.0406f,-0.141f,0.214f,-0.16f,-0.236f,0.0387f,-0.0981f,-0.083f,-0.0632f,-0.0123f,0.0207f,-0.0296f,-0.0313f,0.0165f,-0.0805f,0.0371f,-0.231f,-0.243f,0.0457f,0.0597f,0.00246f,-0.109f,0.0658f,-0.0462f,-0.0247f,0.0155f,-0.0326f,0.0453f,-0.0315f,0.0172f,-0.152f,-0.0317f,-0.0182f,-0.0165f,0.0247f,0.0165f,0.0839f,0.0326f,-0.0589f,0.049f,0.00578f,0.00776f,0.0661f,0.028f,0.0242f,0.0578f,0.0769f,-0.0401f,0.0406f,-0.0102f,0.0483f,-0.0666f,-0.135f,-0.0373f,-0.023f,-0.024f,-0.0772f,0.0573f,0.0175f,0.0566f,-0.0351f,0.00964f,0.00209f,0.0812f,-0.00853f,0.0892f,0.00653f,0.0316f,-0.0956f,0.0619f,0.0689f,0.0601f,0.0155f,-0.0534f,0.015f,-0.0972f,0.125f,0.0469f,0.127f,-0.00148f,-0.0353f,-0.116f,-0.00908f,-0.109f,-0.255f,-0.0457f,-0.0103f,-0.0426f,0.017f,0.136f,0.0436f,0.115f,0.0995f,-0.0628f,-0.158f,0.105f,0.0575f,0.0328f,0.117f,-0.0841f,0.012f,-0.122f,-0.0609f,-0.0961f,0.00351f,0.112f,0.0581f,-0.0295f,0.0119f,-0.0363f,0.0709f,0.14f,0.0165f,0.0974f,-0.0111f,0.12f,-0.0136f,0.0356f,-0.00677f,0.0565f,0.0527f,-0.0616f,-0.0437f,-0.101f,-0.00715f,0.136f,-0.00986f,-0.158f,0.0254f,-0.28f,0.0102f,-0.0137f,-0.0585f,0.0767f,-0.115f,0.134f,-0.167f,0.0167f,0.247f,0.174f,0.0873f,-0.0405f,-0.0591f,0.0272f,-0.00127f,-0.00564f,0.0764f,0.0807f,-0.0805f,0.0449f,-0.0995f,-0.15f,0.0861f,-0.0441f,-0.0881f,-0.211f,-0.00312f,0.0495f,-0.0327f,-0.0276f,0.149f,-0.0719f,0.0575f,0.12f,0.0148f,0.0533f,-0.115f,-0.0239f,-0.0739f,-0.0704f,-0.153f,-0.00496f,0.112f,-0.136f,-0.128f,0.0464f,0.12f,0.0177f,-0.0445f,-0.00208f,0.0196f,-0.103f,0.0248f,-0.2f,-0.172f,0.0923f,0.0168f,-0.202f,-0.0194f,0.0725f,0.184f,0.066f,0.356f,0.0868f,-0.09f,0.00132f,0.0351f,-0.261f,-0.147f,-0.0185f,-0.0218f,-0.103f,-0.218f,0.0694f,0.04f,-0.104f,-0.0894f,-0.179f,-0.0375f,0.141f,0.036f,0.148f,0.0307f,0.0426f,-0.00512f,-0.0165f,0.181f,0.117f,-0.27f,0.0572f,-0.0266f,-0.204f,-0.0961f,0.0772f,0.105f,-0.0987f,-0.0501f,0.0403f,-0.019f,-0.175f,-0.142f,0.0249f,-0.0743f,0.0167f,-0.172f,-0.251f,-0.137f,0.136f,-0.0205f,-0.0375f,-0.0715f,-0.0469f,0.0798f,-0.154f,-0.0361f,-0.0861f,-0.0913f,-0.0836f,0.000868f,-0.0517f,-0.0382f,-0.00635f,0.114f,-0.0375f,-0.0815f,0.0872f,0.00919f,-0.0452f,-0.143f,0.163f,-0.037f,-0.0201f,-0.0226f,0.0475f,0.0415f,-0.00786f,-0.0545f,-0.00368f,-0.0912f,0.151f,0.0413f,-0.153f,-0.0209f,-0.15f,0.0239f,0.0563f,0.108f,-0.0866f,-0.0368f,-0.066f,0.0593f,-0.141f,-0.0571f,-0.0578f,-0.0917f,0.00963f,0.141f,-0.131f,0.15f,-0.0516f,-0.13f,-0.0892f,-0.00278f,-0.0597f,-0.012f,-0.034f,-0.107f,0.0431f,-0.0189f,0.0287f,-0.0639f,0.0517f,-0.0269f,0.117f,-0.0709f,0.0937f,0.0706f,0.0194f,-0.0166f,0.0716f,0.169f,0.0923f,0.0678f,0.0262f,-0.238f,0.0301f,-0.0648f,0.0112f,-0.034f,0.0144f,0.0311f,-0.0325f,0.0416f,-0.138f,-0.139f,-0.0577f,-0.107f,-0.00736f,0.0128f,-0.116f,0.0139f,0.128f,-0.0677f,0.0653f,-0.000299f,0.0733f,-0.111f,-0.0662f,-0.00564f,0.146f,0.273f,-0.093f,-0.0255f,0.0436f,-0.0149f,0.0928f,0.127f,-0.105f,-0.0223f,0.0948f,-0.149f,-0.0112f,0.0825f,-0.0827f,-0.0786f,-0.055f,0.0447f,-0.0127f,0.0514f,-0.0531f,-0.0087f,-0.0809f,-0.083f,0.042f,-0.0823f,0.0261f,-0.11f,0.0217f,0.017f,0.109f,-0.0696f,-0.0081f,-0.0242f,0.0861f,-0.0771f,0.0673f,-0.0418f,0.0116f,0.00599f,-0.0772f,0.109f,-0.0216f,-0.0196f,0.0601f,0.00716f,-0.0224f,0.0292f,0.134f,0.0727f,-0.00938f,0.0996f,-0.11f,0.167f,-0.092f,-0.109f,0.00983f,0.00381f,0.000363f,-0.0641f,-0.00666f,0.044f,-0.111f,-0.0191f,-0.0702f,-0.144f,0.0209f,-0.0015f,0.133f,-0.0828f,0.088f,-0.0777f,0.0193f,-0.00184f,0.0138f,0.073f,0.054f,-0.0891f,0.072f,0.178f,0.0521f,0.127f,-0.000256f,-0.129f,0.36f,-0.0734f,-0.185f,-0.0735f,-0.0235f,-0.00446f,-0.0408f,-0.0982f,-0.0168f,-0.307f,0.0732f,-0.0251f,0.0795f,-0.00534f,0.0034f,-0.0283f,-0.024f,0.0298f,-0.0499f,-0.269f,0.0439f,0.0576f,0.116f,-0.12f,0.0552f,0.014f,-0.0173f,-0.1f,0.0096f,-0.0372f,-0.0915f,-0.0225f,-0.122f,-0.00315f,-0.0102f,-0.15f,0.165f,-0.000942f,0.0651f,-0.153f,0.00307f,0.0498f,-0.0985f,0.00272f,0.13f,0.134f,-0.0752f,-0.0569f,0.125f,0.0366f,0.038f,-0.251f,-0.00175f,-0.15f,-0.0104f,-0.0865f,-0.137f,0.0435f,0.0866f,-0.0695f,0.088f,0.0266f,0.041f,0.107f,0.0761f,-0.0361f,-0.00961f,-0.101f,0.00231f,0.0435f,-0.011f,0.0452f,0.103f,-0.0633f,-0.0592f,-0.178f,-0.186f,0.0661f,0.109f,0.000117f,0.0352f,0.0846f,-0.0022f,-0.0491f,0.0608f,0.0785f,0.144f,-0.0431f,0.0525f,0.0399f,-0.00419f,0.0361f,0.136f,0.104f,-0.039f,0.195f,0.00882f,0.0132f,0.129f,-0.0995f,0.0585f,0.0419f,0.0469f,-0.105f,-0.137f,-0.0257f,0.0202f,-0.000518f,0.0301f,0.105f,-0.0656f,0.0275f,-0.132f,0.0211f,0.0379f,-0.116f,0.0323f,-0.0712f,0.0293f,0.0569f,-0.136f,-0.0371f,0.0413f,-0.00787f,-0.152f,-0.217f,-0.164f,0.162f,-0.0703f,0.0983f,-0.0452f,0.114f,0.0127f,0.0206f,-0.155f,0.223f,0.0215f,-0.0197f,-0.000328f,-0.127f,-0.0422f,0.016f,-0.0292f,-0.148f,0.00759f,-0.0625f,-0.0593f,0.0549f,0.0946f,0.0102f,0.0657f,0.0091f,-0.108f,-0.00605f,0.0512f,-0.0221f,0.218f,0.0954f,-0.0229f,0.212f,-0.108f,-0.00334f,-0.0445f,0.0739f,-0.0198f,0.0688f,-0.0623f,0.00178f,-0.0493f,0.14f,-0.0629f,-0.0044f,-0.165f,-0.156f,0.0844f,-0.0369f,-0.126f,0.0507f,0.0456f,-0.0462f,0.0131f,-0.0452f,0.0682f,-0.00281f,0.0628f,-0.0146f,0.0656f,0.0788f,0.137f,0.0654f,0.0205f,0.0408f,-0.0747f,0.00966f,0.0164f,-0.0331f,-0.00963f,0.118f,0.206f,-0.0226f,-0.0837f,0.078f,-0.0343f,-0.0134f,0.121f,0.0199f,0.071f,-0.192f,0.00612f,0.0563f,0.0984f,0.143f,0.0322f,-0.0617f,0.0298f,-0.0248f,-0.0152f,0.0123f,-0.0639f,-0.0713f,-0.239f,-0.198f,0.00464f,0.0858f,0.0443f,0.0314f,0.0591f,-0.0575f,-0.0534f,-0.0105f,-0.128f,0.11f,0.114f,-0.0642f,0.0922f,-0.0393f,0.149f,-0.0449f,-0.144f,0.0666f,-0.102f,-0.0062f,-0.196f,0.0776f,0.281f,0.0733f,0.00328f,0.00474f,0.0967f,0.16f,-0.202f,0.0639f,-0.0381f,-0.0531f,-0.0585f,0.0153f,-0.114f,0.0523f,-0.0223f,-0.00863f,-0.0425f,0.0343f,0.0244f,-0.0299f,-0.0579f,0.00662f,0.0685f,-0.192f,-0.0171f,0.0462f,-0.0289f,0.242f,-0.0161f,-0.109f,-0.0648f,0.125f,-0.0737f,-0.045f,-0.0107f,0.0213f,-0.00468f,0.0523f,0.0165f,-0.0614f,-0.256f,0.0489f,-0.091f,0.0257f,-0.216f,-0.00932f,0.0971f,0.0102f,0.0527f,-0.0774f,-0.0164f,-0.0456f,-0.0613f,0.0975f,0.0691f,-0.0241f,0.096f,-0.00842f,0.0213f,0.00418f,0.176f,-0.0265f,0.063f,0.0892f,0.0776f,0.0453f,-0.177f,-0.0366f,0.0483f,-0.0222f,0.0571f,-0.068f,-0.0389f,0.109f,0.00669f,0.17f,0.0776f,0.0228f,-0.0441f,-0.062f,-0.0138f,0.061f,-0.131f,0.0787f,0.109f,-0.0518f,-0.0991f,0.182f,0.0295f,0.13f,0.0794f,-0.0633f,0.0821f,0.0132f,0.00601f,0.0488f,-0.232f,0.0175f,0.0917f,0.0321f,0.0449f,-0.0133f,0.0135f,0.121f,-0.0589f,0.025f,0.0223f,-0.0198f,-0.0432f,0.116f,-0.0194f,0.111f,0.0873f,0.0023f,0.102f,-0.0244f,-0.0199f,0.0374f,-0.0873f,-0.0139f,-0.0432f,0.0114f,0.0357f,-0.0273f,-0.0783f,-0.0705f,-0.173f,0.0461f,0.0247f,-0.00916f,0.126f,0.0357f,0.135f,0.00463f,-0.0799f,0.0758f,-0.00907f,0.00346f,-0.125f,-0.218f,-0.109f,-0.00979f,-0.0478f,0.184f,-0.0334f,-0.144f,0.193f,0.167f,-0.0514f,0.0679f,-0.0176f,0.0409f,-0.0636f,-0.13f,-0.0256f,-0.0243f,-0.124f,-0.134f,-0.00253f,0.0828f,0.0233f,-0.0217f,0.0596f,0.0609f,-0.133f,-0.0012f,-0.0847f,-0.0853f,-0.0793f,-0.129f,0.139f,-0.0307f,0.018f,-0.158f,-0.0468f,0.0641f,-0.257f,-0.0114f,0.0424f,-0.0181f,-0.081f,-0.00724f,-0.119f,0.0817f,0.0183f,0.0246f,-0.0279f,0.025f,0.0589f,0.0586f,-0.0257f,0.0453f,0.000611f,0.101f,-0.142f,0.0174f,-0.164f,0.0806f,-0.0314f,-0.00922f,0.0195f,-0.129f,0.0195f,0.079f,0.00111f,-0.0367f,-0.0962f,0.0697f,-0.096f,0.14f,0.199f,0.145f,-0.0408f,-0.0307f,-0.0644f,0.0241f,0.00495f,0.177f,0.0304f,0.149f,-0.0583f,0.128f,-0.0912f,-0.0768f,-0.0432f,-0.0221f,-0.135f,0.00905f,-0.155f,0.0889f,-0.000855f,0.192f,-0.157f,-0.0378f,-0.132f,-0.133f,-0.118f,0.13f,-0.0125f,0.0069f,-0.136f,-0.0363f,-0.0621f,0.138f,-0.204f,0.0234f,0.00229f,0.0366f,0.047f,-0.0401f,0.0823f,-0.0103f,0.159f,-0.118f,0.0522f,0.105f,-0.0238f,0.0389f,-0.0175f,-0.0721f,0.0505f,0.0917f,-0.024f,-0.208f,0.0124f,-0.00937f,-0.15f,-0.0587f,0.00912f,-0.0791f,0.173f,0.157f,-0.0106f}; +float backbone__model4_dp1_pw_bias[64] = {0.126f,0.0023f,0.0241f,0.0299f,0.0625f,-0.189f,0.0187f,0.0953f,0.111f,0.0481f,-0.0857f,-0.048f,-0.00122f,-0.0104f,0.157f,-0.0931f,-0.0766f,-0.0137f,-0.0292f,-0.144f,-0.0588f,-0.143f,-0.0438f,0.0123f,-0.00217f,0.0947f,-0.00546f,0.148f,0.0353f,-0.000282f,-0.163f,0.0375f,-0.0663f,0.0342f,0.0605f,0.0148f,-0.243f,0.0256f,0.124f,0.193f,-0.00628f,0.014f,-0.0235f,-0.0334f,0.0944f,-0.15f,0.0536f,0.0733f,-0.0618f,0.0362f,-0.0689f,0.142f,-0.109f,0.0127f,-0.0857f,0.139f,0.0533f,-0.0399f,-0.084f,-0.106f,0.0969f,0.154f,-0.0893f,-0.139f}; +float backbone__model4_dp1_dw_weight[64*1*3*3] = {-1.35f,-0.563f,0.0243f,-0.833f,-0.0266f,0.166f,-0.309f,-0.478f,-0.516f,0.0985f,0.207f,-0.0663f,1.37f,0.482f,-1.97f,-0.0891f,-0.393f,-1.26f,-0.22f,0.134f,0.668f,-0.7f,0.578f,-1.04f,0.0161f,-0.445f,0.403f,-0.503f,-0.268f,0.0565f,0.433f,-0.0431f,-0.466f,-0.26f,0.0684f,-0.00301f,1.31f,0.175f,-0.178f,0.768f,-0.0889f,0.406f,0.228f,0.818f,0.29f,0.719f,-0.514f,0.297f,-0.299f,1.05f,0.387f,-0.108f,0.112f,0.198f,0.64f,0.32f,-0.0688f,-0.0862f,1.45f,0.11f,-0.978f,-0.29f,-0.269f,0.634f,-0.791f,-0.783f,0.219f,0.811f,0.126f,0.0333f,0.125f,-0.576f,0.557f,-0.969f,0.773f,0.576f,0.112f,0.321f,0.0612f,-0.059f,-1.3f,-0.745f,0.198f,1.75f,0.502f,-1.07f,0.308f,0.904f,-2.17f,0.603f,0.508f,-1.78f,-0.0962f,0.0927f,1.01f,-0.142f,-1.3f,-0.679f,-0.187f,-0.595f,1.21f,0.66f,0.148f,-0.271f,0.192f,1.1f,0.129f,0.145f,-0.459f,0.833f,-0.22f,1.02f,-0.181f,1.13f,1.53f,0.326f,-0.0589f,0.935f,-0.442f,-0.463f,1.23f,-0.46f,-0.0989f,-0.719f,-1.19f,-1.13f,0.391f,-0.144f,-1.43f,-0.701f,-0.104f,0.737f,0.0933f,-0.0916f,0.185f,-0.466f,0.371f,-0.757f,-0.206f,0.109f,1.25f,-0.139f,0.537f,-0.14f,-0.623f,-0.479f,0.296f,-0.143f,0.554f,-1.24f,0.175f,0.535f,-0.143f,0.719f,0.673f,-0.0214f,-0.305f,1.49f,0.206f,-0.0166f,0.507f,-1.01f,0.149f,0.513f,-0.717f,0.0438f,0.542f,-1.7f,0.102f,0.417f,0.313f,-1.08f,-0.676f,-0.429f,-0.218f,0.146f,0.419f,-0.0637f,0.873f,-0.237f,0.405f,0.487f,-1.07f,-0.147f,0.624f,-0.301f,-0.9f,-1.43f,-0.54f,-0.607f,-0.0399f,0.13f,-0.00918f,0.868f,-0.0203f,-0.553f,0.451f,1.39f,0.265f,-0.0103f,-0.651f,0.626f,-0.203f,0.324f,0.0726f,0.338f,-0.696f,-0.163f,-0.161f,-0.336f,0.038f,0.244f,-0.111f,-0.361f,-0.161f,-0.193f,0.166f,-0.0986f,-0.389f,-0.407f,0.567f,0.207f,1.04f,-0.138f,-0.156f,-0.227f,-0.176f,-1.27f,0.73f,-0.352f,-0.358f,0.568f,-0.191f,-0.148f,0.0625f,1.22f,-0.0546f,-0.054f,-0.337f,0.429f,-0.466f,0.794f,-0.528f,0.22f,0.697f,0.475f,0.638f,0.362f,-0.896f,1.45f,0.944f,0.0411f,-0.606f,-0.759f,-0.205f,0.421f,0.675f,-1.2f,-1.5f,1.06f,-0.781f,-0.996f,0.414f,-1.19f,0.234f,-0.985f,1.14f,0.283f,-1.09f,-0.441f,0.68f,1.97f,0.603f,-0.396f,0.707f,-0.0117f,0.378f,-0.122f,0.382f,-0.289f,-0.644f,0.791f,0.0954f,1.22f,2.07f,-0.306f,-0.284f,1.67f,-0.957f,-0.114f,1.34f,-0.931f,-1.14f,1.98f,0.774f,0.508f,1.73f,0.115f,0.367f,-0.673f,-0.994f,1.46f,-0.415f,1.16f,0.0472f,0.427f,0.201f,0.305f,1.22f,1.21f,0.635f,0.729f,-1.58f,-1.67f,-1.88f,-0.347f,-0.921f,-0.995f,-2.34f,0.406f,-0.121f,0.111f,-0.0626f,0.0681f,0.217f,-0.192f,0.842f,-0.00319f,0.566f,-0.417f,0.0702f,0.25f,0.142f,-0.963f,-0.137f,-0.121f,0.295f,0.427f,0.127f,-0.123f,0.341f,-0.267f,0.422f,1.53f,-0.173f,-0.404f,0.0621f,-0.196f,-0.395f,1.36f,0.476f,0.143f,0.918f,-0.554f,0.735f,0.249f,-1.01f,-0.104f,-0.134f,-1.32f,0.269f,0.63f,0.191f,-0.795f,-0.436f,-0.462f,-0.387f,0.435f,0.438f,-1.18f,0.148f,-0.0766f,0.346f,0.383f,-0.607f,-0.817f,1.16f,-0.204f,-0.537f,-0.636f,1.3f,1.81f,0.679f,0.114f,1.12f,0.468f,-0.118f,-1.53f,0.449f,0.509f,0.248f,-0.367f,-0.695f,0.0162f,0.461f,0.0535f,-0.23f,0.268f,0.333f,-0.15f,0.0372f,0.877f,-0.0291f,1.83f,0.119f,0.558f,-1.26f,-0.788f,0.153f,0.0216f,-0.666f,-0.102f,0.676f,-0.151f,-0.305f,-0.0827f,-0.392f,-0.168f,0.239f,-0.476f,-0.266f,-0.0293f,1.3f,0.761f,0.193f,-0.046f,0.745f,0.616f,-0.231f,0.114f,-0.811f,0.173f,0.181f,0.401f,-2.1f,-1.24f,-0.0846f,-0.0774f,0.399f,0.368f,-0.685f,-0.149f,0.964f,-0.129f,0.407f,-0.48f,0.948f,-0.0958f,1.05f,-0.426f,0.29f,0.734f,1.75f,0.479f,0.474f,-0.536f,-0.837f,1.63f,-0.177f,0.777f,-0.661f,-0.512f,0.413f,-0.196f,0.534f,0.849f,-2.f,-0.24f,1.12f,1.13f,-0.835f,-1.23f,0.267f,-0.321f,-1.06f,0.159f,1.3f,0.0377f,-2.03f,-0.245f,0.697f,0.149f,-0.439f,0.345f,-1.05f,-0.333f,-0.862f,1.32f,0.23f,-0.486f,0.372f,-0.0676f,-0.198f,0.939f,-0.394f,0.775f,0.302f,-0.2f,-0.421f,-1.f,0.536f,-1.02f,-0.336f,3.03f,-0.44f,-0.979f,0.445f,-0.163f,0.881f,-0.00656f,0.958f,0.985f,0.561f,0.171f,0.0286f,0.647f,0.163f,0.0228f,0.577f,-0.279f,-0.178f,0.077f,0.247f,0.859f,-0.286f,-1.f,0.0132f,-0.0422f,-0.0862f,0.843f,-0.994f,-0.198f,-0.0937f,0.972f,-0.62f,-0.998f,0.0914f,-2.26f,-0.674f,0.162f,-0.2f,0.426f,0.227f,-0.0786f,0.875f,-0.304f,0.581f,-0.0867f,-0.228f,-0.0419f,-2.21f,0.0229f,0.124f,0.17f,0.513f,-0.624f,-0.608f,-0.498f,-0.195f,0.156f,0.834f,-1.14f,-0.926f,-0.226f,0.0584f,-0.523f,-0.446f,0.00721f,0.165f,-0.635f,-0.27f,-0.313f,1.45f,0.29f,0.9f,0.316f}; +float backbone__model4_dp1_dw_bias[64] = {0.00121f,0.343f,0.394f,0.0692f,-0.0526f,0.149f,-0.16f,0.144f,0.237f,0.149f,0.248f,0.164f,0.213f,-0.0622f,0.29f,0.0667f,0.101f,0.104f,-0.0186f,0.201f,0.601f,-0.0966f,0.144f,0.0506f,-0.589f,0.147f,0.2f,0.443f,-0.24f,-0.0532f,0.212f,0.0959f,0.0991f,0.166f,-0.209f,0.0222f,-0.15f,-0.209f,0.278f,-0.0565f,-0.198f,0.0416f,0.125f,0.16f,0.576f,0.407f,0.485f,-1.97f,0.0729f,-0.0708f,-0.188f,0.481f,0.47f,0.26f,0.164f,-0.943f,-0.255f,-0.00109f,-0.101f,-0.577f,0.0038f,0.362f,0.114f,0.332f}; +float backbone__model4_dp2_pw_weight[64*64*1*1] = {0.0167f,-0.0221f,0.184f,-0.00999f,0.0511f,0.0794f,0.0156f,0.187f,0.137f,0.0984f,-0.122f,-0.052f,-0.0545f,-0.00972f,-0.179f,0.0122f,0.147f,0.0568f,0.0283f,0.00302f,-0.109f,-0.0362f,0.00845f,0.105f,0.0109f,-0.0169f,-0.156f,-0.0965f,0.17f,-0.0175f,0.00123f,0.00882f,-0.163f,0.125f,0.17f,0.0335f,-0.157f,-0.194f,0.0284f,0.151f,-0.0398f,0.0437f,0.104f,0.0969f,-0.00334f,-0.00345f,0.14f,0.102f,-0.0354f,-0.0433f,-0.0243f,-0.0469f,0.108f,-0.109f,0.0234f,-0.122f,0.0913f,-0.0926f,-0.0428f,0.172f,-0.0913f,-0.126f,-0.14f,-0.0787f,0.0124f,0.0494f,-0.0217f,0.00283f,0.0441f,-0.114f,-0.0295f,-0.0394f,0.072f,0.0182f,0.0375f,-0.0534f,0.000873f,-0.115f,0.121f,-0.414f,0.112f,0.119f,0.0898f,-0.111f,0.0871f,-0.0145f,0.161f,-0.0632f,-0.252f,0.00807f,0.0641f,-0.116f,-0.0233f,-0.0375f,-0.0276f,-0.12f,-0.0694f,-0.0902f,0.0414f,0.0239f,-0.0109f,-0.111f,0.0934f,-0.0493f,0.158f,0.0483f,-0.0398f,-0.0109f,-0.236f,-0.00754f,0.0867f,0.0232f,-0.236f,0.0182f,-0.0606f,0.0371f,-0.0799f,-0.0203f,-0.00597f,0.0611f,-0.126f,0.0924f,-0.132f,0.0755f,-0.02f,0.0529f,-0.011f,-0.191f,-0.0719f,0.0948f,-0.0716f,-0.0184f,-0.0311f,0.0401f,0.2f,-0.0458f,0.0911f,-0.172f,0.12f,0.109f,-0.196f,-0.11f,-0.19f,0.0851f,-0.0129f,-0.0453f,0.0466f,0.0187f,0.108f,-0.184f,-0.0195f,-0.0995f,-0.0147f,-0.0776f,0.14f,0.0266f,-0.0211f,0.0922f,-0.131f,0.00556f,0.0243f,0.103f,0.14f,-0.0445f,-0.0188f,-0.00897f,-0.273f,-0.0313f,0.0504f,0.0357f,0.033f,0.0941f,0.0184f,0.161f,0.0682f,0.138f,-0.106f,-0.0618f,-0.112f,-0.016f,0.0882f,0.0891f,0.0901f,0.0958f,0.0243f,0.0325f,0.023f,0.0651f,0.0951f,0.019f,-0.0109f,-0.0266f,-0.000113f,0.0255f,0.044f,-0.00796f,0.00241f,-0.0996f,-0.218f,-0.136f,-0.0218f,0.0211f,0.0159f,0.0471f,-0.1f,-0.0534f,0.0348f,-0.0345f,0.0749f,-0.0806f,-0.0463f,0.0425f,0.0193f,-0.0188f,0.0136f,0.013f,-0.124f,-0.0216f,-0.127f,0.0483f,0.0236f,0.0395f,-0.0436f,-0.0163f,0.00128f,-0.056f,-0.00632f,-0.177f,-0.126f,-0.0804f,0.0602f,0.0227f,-0.037f,-0.116f,0.0507f,0.0294f,0.0916f,-0.0421f,-0.0207f,0.0187f,-0.0801f,0.0677f,-0.0876f,-0.0802f,-0.0459f,-0.177f,-0.0211f,0.014f,-0.0792f,-0.0388f,-0.0185f,0.0657f,0.0367f,0.107f,-0.107f,0.0814f,0.0431f,-0.0165f,0.0984f,0.0875f,-0.175f,0.08f,0.105f,0.23f,0.00867f,-0.00499f,-0.00765f,0.222f,-0.163f,-0.197f,0.0396f,-0.0601f,0.0631f,0.0674f,-0.0811f,0.0442f,0.177f,-0.0575f,-0.0163f,0.0539f,0.0713f,0.0542f,-0.0313f,0.0593f,0.0113f,-0.0205f,0.0324f,-0.0673f,0.103f,0.126f,-0.0624f,0.00277f,0.016f,0.0205f,0.125f,-0.0235f,-0.178f,-0.0406f,0.138f,-0.0257f,0.192f,0.0891f,-0.212f,0.0946f,-0.139f,0.000137f,-0.0746f,-0.184f,-0.0528f,-0.101f,0.0221f,-0.0655f,-0.0279f,-0.0192f,0.0371f,0.269f,-0.059f,-0.119f,-0.07f,0.0593f,-0.0202f,-0.0244f,-0.045f,0.0191f,-0.00406f,-0.126f,-0.0222f,0.0614f,-0.107f,-0.0212f,0.0818f,0.0024f,0.0299f,0.0265f,0.0702f,0.118f,0.0395f,-0.0529f,-0.00413f,-0.0157f,-0.00385f,0.119f,0.0778f,-0.0712f,0.0421f,0.0453f,0.0235f,-0.0528f,-0.072f,0.106f,-0.0747f,-0.0892f,-0.0102f,0.129f,-0.0397f,-0.072f,-0.154f,0.052f,-0.00897f,0.0993f,0.114f,0.0605f,-0.0483f,0.0227f,-0.0562f,-0.0945f,0.0856f,-0.00171f,0.0349f,0.0471f,0.0756f,0.0509f,0.0286f,0.0824f,-0.044f,0.0484f,-0.0322f,-0.1f,0.0205f,-0.0336f,-0.00753f,0.151f,0.0231f,-0.0127f,0.0302f,-0.0533f,-0.0337f,-0.00181f,0.114f,0.0456f,0.0133f,0.00515f,-0.0758f,0.285f,-0.0285f,-0.00754f,-0.00461f,0.0223f,-0.0248f,-0.105f,-0.0172f,0.0165f,-0.217f,0.0818f,-0.0386f,0.203f,0.0663f,-0.0338f,-0.0552f,0.0297f,0.0659f,0.119f,0.0432f,-0.243f,0.0374f,-0.00736f,-0.0496f,-0.00647f,-0.16f,-0.105f,0.0495f,0.0444f,-0.0983f,0.134f,0.0651f,-0.0546f,0.0344f,0.134f,-0.000265f,0.179f,-0.0225f,0.122f,0.102f,0.0755f,0.0482f,0.00551f,-0.126f,0.199f,0.0424f,-0.0443f,-0.00543f,-0.0457f,0.0122f,-0.0191f,0.0361f,0.109f,0.0274f,-0.0212f,-0.00515f,0.0213f,0.0361f,0.00965f,0.0113f,0.0717f,-0.0305f,0.0433f,-0.0182f,-0.05f,0.0812f,-0.0449f,-0.00793f,-0.0341f,-0.0596f,-0.128f,0.156f,0.0699f,-0.249f,-0.0177f,-0.0236f,-0.0147f,0.151f,0.04f,0.0296f,0.161f,-0.0805f,-0.0856f,0.0811f,-0.00457f,-0.0706f,-0.0466f,0.0894f,-0.0944f,0.0625f,0.0383f,0.0429f,-0.0846f,0.066f,0.0114f,-0.188f,-0.0973f,0.0924f,0.116f,0.0083f,0.0428f,-0.00734f,-0.106f,-0.239f,-0.172f,-0.011f,0.198f,-0.0863f,-0.0187f,0.00991f,0.0192f,-0.0588f,-0.054f,0.0547f,0.0876f,-0.0177f,-0.0335f,0.0379f,0.00923f,-0.04f,0.0696f,-0.0532f,0.0183f,0.112f,0.213f,0.0211f,-0.013f,-0.0301f,-0.06f,0.154f,0.0888f,-0.12f,-0.0597f,0.091f,0.07f,-0.104f,-0.0428f,0.135f,-0.0705f,0.0159f,0.128f,0.164f,-0.109f,0.243f,0.134f,0.15f,-0.00808f,-0.00096f,0.133f,0.0679f,0.0531f,0.152f,-0.0246f,0.0278f,-0.0606f,0.132f,0.175f,-0.0867f,0.0508f,0.0792f,-0.0205f,-0.00138f,-0.0982f,0.0174f,0.147f,-0.0157f,0.145f,0.147f,-0.0419f,-0.0208f,-0.0122f,0.00677f,-0.102f,-0.0786f,0.176f,-0.103f,0.157f,-0.0128f,-0.0214f,0.0411f,0.0102f,0.095f,0.168f,0.109f,0.121f,0.0912f,0.0344f,0.111f,0.00364f,-0.0694f,-0.034f,-0.051f,-0.0669f,0.0543f,-0.024f,-0.0166f,-0.0328f,0.361f,-0.089f,0.0347f,0.129f,-0.0366f,0.105f,-0.0786f,0.0105f,0.0811f,-0.0258f,-0.0436f,-0.0215f,-0.0671f,0.0818f,-0.0519f,0.00812f,-0.0311f,0.0657f,-0.078f,0.00681f,-0.0252f,-0.0177f,-0.00415f,-0.153f,0.0426f,-0.114f,-0.0538f,-0.0494f,-0.00619f,-0.00117f,-0.0524f,-0.168f,-0.00927f,-0.0832f,-0.0633f,-0.0895f,-0.123f,0.0271f,-0.0139f,-0.0521f,-0.174f,0.0279f,-0.0189f,-0.0599f,0.159f,-0.114f,-0.0138f,-0.00998f,-0.0936f,-0.0233f,0.105f,-0.0107f,0.062f,-0.0783f,0.0189f,-0.0474f,-0.076f,-0.0534f,-0.0321f,-0.103f,-0.0163f,-0.0698f,-0.0363f,0.0436f,0.0502f,0.117f,-0.00933f,-0.0583f,0.00588f,-0.0802f,0.0924f,0.0307f,-0.121f,0.158f,0.188f,-0.0772f,-0.325f,0.0462f,-0.0494f,-0.134f,-0.00825f,0.00402f,-0.0726f,-0.0449f,-0.0167f,0.0483f,-0.112f,0.00486f,0.242f,-0.0669f,-0.159f,-0.103f,-0.137f,-0.0319f,-0.146f,-0.0467f,-0.124f,-0.0958f,-0.0289f,-0.0687f,0.00872f,0.132f,-0.109f,-0.0538f,0.0328f,0.096f,-0.0548f,-0.00346f,0.0295f,0.0243f,-0.143f,-0.0864f,0.0122f,-0.00629f,0.097f,-0.00261f,-0.0319f,0.0249f,0.00698f,0.0608f,0.000287f,0.00387f,0.0736f,0.132f,0.106f,0.131f,0.139f,0.147f,0.0242f,0.146f,-0.034f,-0.0429f,-0.143f,0.00985f,0.19f,0.0423f,0.132f,-0.032f,-0.0519f,0.0592f,0.18f,-0.109f,0.0349f,-0.00326f,0.0396f,0.000989f,0.00913f,0.0405f,0.15f,0.137f,0.0139f,0.0594f,-0.0756f,-0.0424f,0.00347f,0.0178f,0.0788f,-0.113f,0.106f,-0.0141f,-0.134f,-0.0372f,0.0553f,0.0259f,-0.0222f,-0.0582f,0.256f,-0.00867f,-0.0663f,0.00544f,-0.0301f,0.0242f,-0.0441f,0.0808f,0.0771f,0.133f,0.0638f,-0.0503f,-0.031f,-0.00535f,-0.0607f,0.00455f,0.00301f,-0.126f,-0.0419f,-0.0203f,-0.151f,-0.0661f,-0.0112f,-0.116f,-0.00926f,-0.00703f,-0.0138f,-0.0957f,0.146f,0.119f,-0.0114f,-0.0171f,0.00759f,0.00801f,-0.0532f,0.0932f,-0.0441f,-0.0251f,-0.0332f,-0.0437f,-0.0519f,0.117f,0.00746f,-0.00789f,0.0283f,-0.0709f,-0.0361f,0.107f,-0.0433f,0.00576f,0.194f,0.114f,-0.00569f,0.0116f,-0.0821f,0.0709f,0.0081f,-0.0818f,-0.0973f,-0.0482f,0.0496f,0.242f,-0.0748f,0.0391f,0.0423f,-0.031f,0.248f,0.0285f,-0.0543f,-0.0901f,0.082f,0.082f,-0.0341f,-0.0704f,0.0349f,-0.000809f,-0.0392f,0.0233f,0.0492f,-0.152f,0.087f,0.171f,0.00945f,-0.0805f,-0.087f,0.0288f,0.078f,-0.0957f,-0.1f,-0.099f,0.0667f,0.0867f,-0.0666f,-0.0396f,-0.0515f,0.0543f,0.102f,0.0617f,-0.0676f,0.00507f,0.0643f,-0.0226f,-0.00146f,-0.12f,0.103f,-0.046f,0.0833f,-0.0571f,-0.229f,0.0501f,-0.182f,0.0715f,-0.103f,-0.127f,0.0455f,0.108f,-0.0426f,-0.218f,-0.0205f,0.0913f,0.0665f,-0.125f,-0.146f,-0.131f,-0.162f,-0.081f,0.00938f,0.213f,-0.0344f,-0.0206f,-0.272f,0.0603f,-0.0952f,0.0289f,0.222f,-0.0824f,0.078f,0.064f,0.0226f,-0.0389f,0.0102f,-0.0597f,0.128f,0.13f,0.103f,-0.0895f,0.0382f,0.00438f,0.0239f,-0.187f,0.0849f,-0.00882f,-0.099f,0.0419f,-0.00731f,-0.0527f,0.0147f,0.0702f,0.0726f,0.0361f,-0.0876f,-0.157f,0.111f,0.00253f,-0.0443f,0.0606f,-0.0313f,0.1f,-0.114f,-0.229f,-0.135f,0.0218f,-0.00799f,-0.0363f,-0.00993f,-0.096f,0.0228f,-0.126f,-0.00185f,-0.0311f,0.0517f,0.118f,-0.0456f,-0.245f,0.163f,0.0697f,-0.103f,0.181f,0.081f,0.176f,0.156f,0.00237f,0.111f,0.0881f,0.00224f,0.0129f,0.141f,0.102f,0.18f,-0.0413f,-0.0696f,-0.162f,-0.0677f,0.0631f,-0.0681f,-0.0734f,-0.0198f,0.0214f,0.0875f,0.0116f,-0.0868f,-0.147f,0.181f,-0.0848f,-0.0332f,-0.0535f,0.0154f,-0.00942f,0.0459f,-0.0629f,-0.18f,0.144f,0.0136f,-0.0491f,-0.0702f,-0.0464f,-0.000769f,0.207f,0.0969f,-0.0876f,-0.0498f,-0.0587f,0.0907f,-0.0555f,0.0668f,0.0403f,0.106f,-0.134f,-0.0121f,-0.00182f,0.298f,-0.00871f,0.0365f,-0.00549f,-0.0596f,-0.082f,0.0237f,0.0494f,-0.0514f,0.112f,-0.129f,-0.105f,-0.0448f,-0.0299f,-0.0286f,-0.121f,-0.0678f,0.00438f,-0.0189f,-0.14f,0.0523f,0.0246f,0.0047f,-0.109f,0.159f,-0.0845f,0.00693f,0.0196f,0.0209f,-0.0124f,-0.443f,0.0475f,0.0888f,0.0504f,0.0471f,0.0275f,-0.00117f,-0.0278f,-0.0693f,-0.0778f,0.00357f,0.00678f,-0.0218f,-0.122f,0.0397f,0.0134f,0.0422f,-0.0146f,-0.0289f,0.0287f,0.028f,-0.000887f,-0.0292f,0.0242f,0.00609f,-0.101f,0.0106f,0.103f,0.0382f,-0.215f,0.0624f,0.0585f,0.00979f,-0.0526f,0.0357f,-0.0623f,0.0254f,0.0306f,-0.0904f,0.107f,0.000733f,0.0475f,0.00241f,0.00989f,-0.0398f,0.149f,0.0842f,0.0779f,0.0265f,0.00431f,0.00436f,0.0938f,-0.049f,0.0291f,-0.00129f,0.0752f,-0.0261f,-0.000933f,-0.0286f,0.0404f,-0.057f,0.0029f,-0.0915f,-0.205f,0.041f,0.000627f,-0.0828f,0.088f,0.00623f,0.163f,0.00395f,-0.0773f,-0.0281f,0.181f,0.0401f,0.0908f,-0.286f,0.112f,0.116f,0.0261f,0.00501f,-0.0258f,-0.152f,0.00575f,-0.101f,0.0194f,0.106f,-0.0888f,-0.0587f,-0.142f,0.188f,0.0122f,0.0404f,-0.115f,-0.00807f,-0.0376f,0.056f,0.0939f,0.00757f,0.00727f,-0.0316f,0.00718f,-0.000233f,0.0414f,0.141f,-0.0175f,0.147f,0.12f,-0.0216f,0.161f,0.0526f,-0.034f,0.0548f,0.093f,0.0519f,0.0796f,-0.0496f,-0.0317f,0.107f,-0.0718f,-0.138f,-0.0192f,-0.0259f,0.075f,0.11f,-0.0665f,-0.0553f,-0.0211f,-0.00873f,0.112f,0.0933f,-0.0774f,0.00405f,-0.0317f,-0.0398f,-0.0241f,-0.0209f,0.00539f,-0.0466f,0.0884f,-0.114f,-0.0362f,-0.00463f,-0.157f,-0.0442f,-0.0242f,0.0501f,-0.00293f,0.127f,-0.181f,-0.0923f,-0.00252f,0.0389f,0.0369f,-0.0245f,-0.0163f,-0.0219f,-0.0104f,-0.0501f,-0.0341f,-0.0364f,-0.0231f,-0.0988f,0.143f,0.0661f,0.359f,0.245f,0.138f,-0.152f,-0.0752f,0.0589f,-0.0473f,0.0333f,-0.0393f,0.0915f,0.04f,0.0712f,-0.0352f,0.135f,0.0972f,0.0345f,-0.0823f,0.147f,-0.252f,-0.114f,-0.00304f,0.0208f,0.111f,0.0478f,0.0717f,-0.00396f,0.00261f,0.0653f,-0.132f,-0.113f,-0.113f,-0.373f,-0.139f,-0.112f,0.0831f,-0.105f,-0.212f,0.047f,0.109f,0.0168f,0.0758f,-0.0697f,-0.0276f,-0.109f,0.38f,-0.0373f,-0.0382f,-0.0808f,0.0715f,-0.113f,-0.105f,0.00523f,0.0881f,0.0263f,-0.166f,-0.0189f,-0.0802f,-0.0959f,-0.212f,-0.126f,0.121f,0.0135f,-0.0311f,0.0432f,-0.0843f,-0.0748f,-0.00279f,-0.195f,0.0066f,-0.137f,0.122f,-0.0929f,0.0449f,-0.194f,-0.0197f,-0.103f,0.05f,-0.0918f,0.117f,0.00955f,-0.0303f,0.0171f,-0.0417f,-0.0265f,0.101f,-0.0373f,-0.0346f,-0.0423f,-0.167f,0.0341f,-0.00164f,-0.0199f,0.00533f,0.0765f,0.213f,-0.064f,-0.094f,0.0218f,0.153f,0.00494f,-0.0439f,-0.0376f,-0.0101f,-0.136f,0.0185f,0.0221f,-0.0872f,0.0883f,-0.00443f,-0.0382f,0.104f,-0.0367f,-0.162f,0.0027f,-0.134f,-0.111f,0.166f,-0.0372f,0.0159f,-0.0343f,-0.0556f,0.0265f,-0.0601f,-0.0235f,-0.00857f,0.0759f,-0.167f,-0.311f,0.142f,0.0148f,0.231f,0.127f,0.154f,-0.112f,0.172f,-0.0368f,0.259f,0.152f,0.099f,-0.0592f,-0.00585f,-0.075f,0.293f,0.0354f,0.158f,0.0818f,0.0142f,-0.0465f,-0.0131f,-0.208f,0.0369f,-0.0393f,0.17f,0.0839f,-0.0494f,-0.0749f,0.156f,-0.106f,0.0428f,-0.0433f,0.0179f,0.0929f,0.0545f,-0.228f,0.00872f,0.0124f,0.121f,0.0247f,0.0697f,-0.0978f,0.00507f,0.0622f,0.0478f,0.0904f,0.13f,-0.00849f,-0.0388f,0.0645f,-0.00835f,0.111f,-0.101f,-0.127f,0.00459f,0.07f,-0.0127f,0.0881f,0.0289f,0.0627f,-0.0649f,-0.0645f,-0.134f,-0.0756f,-0.00805f,0.0222f,0.0346f,0.299f,0.0717f,-0.019f,0.0126f,0.0256f,0.0471f,-0.0297f,0.0657f,-0.138f,0.114f,0.126f,0.119f,0.131f,0.0317f,0.0583f,0.0154f,0.0516f,-0.0475f,-0.0877f,0.067f,-0.114f,-0.0508f,-0.107f,0.0428f,-0.00193f,-0.0274f,0.0762f,0.0507f,0.101f,0.151f,0.121f,-0.0491f,-0.138f,-0.0125f,0.115f,-0.168f,-0.00973f,-0.00811f,0.00411f,0.0139f,0.0758f,1.51e-05f,-0.0844f,-0.0453f,0.0179f,-0.153f,-0.0596f,-0.0547f,0.017f,0.00457f,-0.0403f,0.0354f,0.0109f,-0.0294f,-0.0451f,-0.0745f,0.0991f,-0.118f,-0.143f,0.00144f,-0.0532f,-0.153f,-0.0109f,-0.148f,0.093f,0.0637f,-0.0574f,-0.00801f,0.0236f,0.0186f,-0.214f,-0.0751f,-0.0568f,0.0214f,0.127f,-0.00603f,0.0961f,-0.0943f,0.00793f,-0.0602f,0.0221f,-0.195f,-0.121f,-0.288f,-0.161f,0.103f,-0.0519f,-0.126f,0.00731f,-0.0271f,0.017f,0.103f,-0.116f,-0.0457f,-0.0242f,0.116f,-0.0427f,0.0992f,-0.0438f,0.108f,-0.112f,-0.0407f,-0.04f,-0.0563f,-0.0886f,-0.00674f,0.053f,0.0283f,0.0139f,0.303f,0.05f,0.0888f,-0.0485f,0.025f,-0.13f,-0.122f,0.0844f,-0.0268f,-0.0362f,0.0207f,0.00703f,-0.0401f,-0.114f,0.0255f,0.0758f,-0.0338f,-0.033f,0.0342f,0.00649f,0.0453f,-0.0179f,-0.206f,-0.0304f,-0.0941f,-0.242f,-0.0436f,0.0813f,0.00304f,0.00253f,-0.0177f,-0.181f,0.209f,0.0101f,-0.0844f,0.0534f,0.0735f,-0.0821f,-0.000958f,0.0283f,0.0489f,0.00481f,-0.0646f,-0.0082f,0.171f,-0.125f,-0.0464f,0.119f,-0.108f,0.00678f,-0.0631f,-0.0287f,-0.055f,-0.00714f,-0.223f,-0.0341f,-0.0992f,-0.00911f,0.0633f,-0.0989f,-0.0284f,-0.168f,0.0589f,-0.104f,0.0634f,-0.0589f,-0.0627f,-0.0971f,0.0144f,-0.0124f,-0.0175f,0.127f,0.00383f,-0.0244f,0.00488f,0.104f,-0.226f,-0.0904f,-0.0151f,-0.113f,-0.0582f,-0.0229f,-0.0285f,-0.0641f,0.00378f,-0.152f,0.102f,-0.0165f,-0.14f,-0.0782f,-0.0117f,0.108f,0.116f,-0.0739f,-0.0647f,0.0909f,-0.0581f,-0.0107f,-0.116f,0.174f,0.006f,0.0406f,-0.0509f,0.00486f,-0.0716f,-0.0903f,0.116f,-0.0982f,-0.22f,0.0655f,0.055f,-0.053f,-0.0859f,-0.0803f,0.00251f,0.00498f,-0.158f,0.0271f,0.0356f,-0.0816f,0.0351f,-0.0809f,-0.154f,-0.0227f,-0.121f,-0.0471f,-0.0665f,0.0124f,-0.0443f,0.0887f,0.306f,-0.0758f,0.0698f,0.0303f,-0.0791f,0.00671f,0.0546f,0.17f,-0.215f,0.053f,0.00608f,0.00284f,-0.0255f,0.042f,0.143f,0.0835f,-0.167f,-0.0106f,0.123f,-0.0787f,0.0701f,0.051f,-0.093f,-0.0768f,0.0484f,-0.0371f,-0.00224f,0.176f,0.0517f,0.109f,0.153f,-0.0669f,0.118f,-0.0785f,0.154f,-0.0117f,0.0253f,0.0854f,0.0661f,-0.0211f,-0.0284f,-0.0947f,0.155f,-0.038f,0.0779f,-0.0754f,0.044f,-0.151f,-0.0612f,0.0889f,0.0101f,0.0782f,-0.177f,0.0661f,0.0981f,-0.0941f,-0.0252f,0.214f,-0.0424f,0.0969f,-0.014f,0.0666f,0.00785f,0.131f,-0.0353f,0.0561f,0.0497f,-0.0742f,0.124f,0.0722f,-0.134f,-0.112f,0.0328f,0.11f,-0.102f,-0.0409f,0.0591f,-0.042f,-0.00996f,-0.028f,0.0682f,0.0985f,-0.0119f,0.0234f,-0.0557f,0.0433f,-0.0736f,-0.0463f,0.0791f,-0.00475f,-0.0736f,-0.0654f,-0.00206f,-0.0441f,0.147f,-0.104f,0.122f,0.0321f,-0.0303f,0.0433f,-0.113f,0.0224f,0.0661f,-0.0047f,0.0888f,-0.069f,-0.171f,0.12f,-0.161f,0.0491f,-0.0551f,0.0834f,0.0321f,0.068f,0.0695f,0.0261f,-0.0669f,-0.0653f,0.0242f,-0.145f,0.0651f,-0.029f,-0.0107f,0.00385f,0.176f,0.0276f,0.0614f,-0.0428f,-0.0713f,0.0925f,0.0422f,-0.0921f,-0.0284f,-0.251f,-0.121f,0.0148f,-0.0196f,0.121f,0.00945f,-0.0462f,-0.0164f,0.0755f,-0.0871f,0.0813f,0.0525f,0.0493f,-0.146f,0.0124f,0.0374f,0.0369f,0.0855f,0.15f,0.0751f,0.134f,0.0372f,0.0679f,0.144f,-0.0386f,0.00195f,0.0357f,0.0947f,-0.0153f,-0.0233f,-0.246f,-0.0438f,-0.0565f,-0.0497f,0.0271f,0.0446f,-0.0234f,-0.104f,0.0208f,-0.18f,0.03f,0.0195f,0.0435f,0.106f,-0.189f,-0.2f,0.0734f,0.0187f,-0.0177f,-0.0036f,0.0831f,0.063f,-0.0894f,0.0831f,-0.212f,0.0416f,-0.0942f,0.0392f,-0.187f,-0.0705f,0.0383f,-0.0978f,-0.063f,-0.0445f,-0.013f,0.0419f,-0.0494f,0.16f,-0.273f,0.18f,0.111f,-0.0997f,-0.0687f,-0.0399f,-0.043f,0.0377f,-0.0258f,-0.037f,-0.173f,-0.0174f,-0.116f,0.142f,-0.0557f,-0.0299f,-0.0476f,-0.137f,-0.016f,0.0769f,0.0235f,-0.136f,-0.0129f,-0.00656f,-0.0458f,-0.0499f,-0.0442f,0.0604f,-0.174f,-0.189f,-0.0298f,-0.164f,0.0172f,0.0444f,0.00863f,0.105f,-0.0512f,-0.0346f,-0.0358f,0.052f,0.15f,0.0439f,-0.288f,0.0481f,0.0416f,0.0213f,0.0222f,0.0179f,0.0144f,0.0796f,0.189f,0.00856f,0.0276f,-0.0103f,-0.103f,0.0593f,0.0465f,0.0258f,0.0499f,0.0367f,0.042f,0.0357f,0.126f,-0.0652f,0.0306f,-0.0501f,-0.038f,0.0374f,-0.00117f,-0.0019f,0.0126f,0.135f,-0.0251f,0.0176f,0.0358f,0.104f,0.0819f,-0.0191f,0.0433f,-0.00145f,-0.0561f,-0.0069f,0.0616f,0.00622f,0.0571f,0.104f,-0.0629f,0.0797f,0.018f,-0.0265f,-0.038f,-0.0219f,0.0836f,0.12f,0.0992f,0.0983f,0.000837f,-0.011f,0.0635f,-0.079f,-0.0887f,-0.0325f,-0.0322f,0.0655f,-0.101f,-0.000669f,0.00289f,0.0112f,-0.121f,-0.0417f,0.00686f,0.04f,0.0671f,-0.0954f,-0.0569f,0.00486f,0.0271f,-0.00528f,-0.0533f,-0.123f,0.000435f,0.158f,-0.152f,0.00781f,-0.0387f,0.0232f,0.212f,-0.177f,-0.0848f,-0.0829f,-0.0468f,0.0716f,-0.00357f,0.00602f,0.0116f,-0.12f,-0.151f,-0.0771f,-0.0532f,0.209f,0.0139f,0.0535f,0.045f,-0.159f,-0.00297f,-0.00538f,-0.04f,-0.0325f,0.168f,0.0388f,0.056f,0.054f,-0.012f,-0.132f,0.14f,0.0905f,-0.0193f,0.0522f,0.00355f,0.114f,-0.0208f,0.132f,0.0187f,0.0861f,0.0135f,0.133f,-0.00133f,-0.0774f,0.0843f,0.206f,-0.0639f,-0.122f,0.0128f,-0.0693f,-0.0398f,0.0386f,0.00916f,-0.201f,0.0923f,0.0192f,0.0652f,-0.0592f,0.0905f,0.0896f,0.0566f,0.0622f,-0.027f,-0.0323f,-0.0397f,0.055f,0.0941f,0.0948f,0.149f,-0.153f,0.0516f,0.00991f,-0.0832f,0.0282f,0.0614f,-0.119f,0.093f,0.0142f,0.0578f,0.144f,-0.0649f,0.111f,-0.0175f,-0.00909f,0.0516f,-0.152f,0.14f,-0.123f,0.139f,0.119f,0.169f,0.105f,0.141f,-0.081f,-0.0433f,-0.0797f,0.0715f,0.0708f,0.0498f,-0.0603f,-0.0396f,0.0421f,-0.139f,-0.0209f,0.122f,0.131f,-0.0669f,-0.0243f,-0.0347f,0.0286f,-0.195f,-0.121f,-0.114f,0.0983f,0.19f,-0.0312f,-0.0116f,0.169f,0.14f,0.0535f,-0.00659f,0.0493f,0.201f,-0.0125f,-0.0334f,-0.173f,0.107f,-0.173f,-0.0406f,-0.14f,-0.085f,-0.0386f,0.132f,0.0514f,-0.0528f,0.0126f,-0.0047f,-0.00608f,0.101f,0.0792f,-0.0129f,0.142f,-0.0656f,0.0181f,0.0375f,0.108f,0.135f,-0.0936f,0.02f,0.0501f,0.0826f,0.0556f,-0.231f,-0.0376f,-0.0529f,-0.0552f,-0.0874f,0.275f,0.00703f,-0.00428f,-0.0207f,0.165f,-0.037f,-0.0195f,0.0618f,0.0184f,0.0314f,-0.0206f,0.0724f,-0.104f,-0.0255f,-0.0231f,-0.0998f,-0.0855f,0.0284f,0.0242f,-0.166f,-0.00609f,0.0954f,-0.0394f,-0.00843f,-0.172f,-0.0286f,-0.0322f,0.038f,0.0166f,-0.067f,-0.00473f,-0.0837f,-0.0671f,0.0425f,-0.171f,-0.0262f,-0.0506f,0.0255f,-0.23f,-0.0394f,0.0395f,0.0647f,-0.0251f,-0.0216f,-0.0177f,0.00553f,0.0409f,0.0677f,0.0518f,-0.101f,0.00588f,-0.0631f,0.000917f,0.0307f,0.0301f,0.0624f,-0.0381f,0.0647f,0.0774f,-0.119f,0.0184f,0.0711f,-0.0546f,-0.0787f,-0.0208f,0.00638f,0.00438f,-0.0643f,-0.11f,-0.0198f,-0.00999f,0.102f,0.079f,-0.174f,0.171f,0.106f,0.0451f,0.0399f,-0.0251f,0.0238f,0.19f,-0.0912f,-0.0483f,-0.0392f,0.0512f,0.0994f,-0.0581f,0.0695f,-0.0418f,0.266f,0.198f,-0.0601f,0.00714f,0.168f,0.0771f,0.0554f,-0.0396f,0.0422f,0.0739f,0.116f,-0.101f,0.0182f,0.021f,0.0756f,-0.0231f,-0.0018f,0.0526f,0.0321f,-0.013f,0.0611f,-0.0896f,0.054f,-0.0511f,0.246f,-0.029f,0.0894f,0.108f,-0.0768f,0.0748f,0.0156f,0.0219f,-0.0578f,-0.146f,-0.0121f,0.0378f,0.00475f,0.103f,-0.117f,0.0741f,0.0152f,-0.183f,0.0625f,0.0125f,0.0252f,-0.0235f,0.0467f,-0.0957f,0.0686f,0.156f,0.00536f,-0.011f,0.0539f,0.0923f,0.0565f,0.135f,0.0724f,0.00369f,-0.0949f,0.0245f,-0.0424f,-0.00425f,0.0272f,-0.0222f,0.201f,0.0748f,-0.0117f,-0.141f,0.0269f,0.0456f,0.125f,-0.0237f,-0.0278f,0.117f,0.0744f,0.0651f,0.108f,0.116f,0.0283f,0.0695f,-0.0595f,0.0039f,-0.0308f,0.0485f,-0.0796f,0.0226f,0.191f,-0.0401f,0.0152f,-0.0961f,0.186f,-0.0661f,-0.0374f,0.0489f,0.00388f,-0.032f,0.00762f,-0.0457f,-0.106f,0.0322f,-0.00444f,-0.0382f,-0.122f,0.122f,0.0143f,0.174f,0.0649f,0.0521f,0.132f,-0.0314f,0.0888f,-0.00166f,0.0154f,-0.0516f,0.0323f,0.142f,-0.0576f,0.0382f,-0.0299f,0.0291f,-0.0212f,-0.124f,-0.124f,-0.1f,0.213f,-0.15f,0.0103f,-0.0354f,0.00495f,-0.101f,-0.154f,-0.0482f,0.158f,-0.0933f,-0.277f,-0.0313f,-0.166f,0.0549f,-0.0925f,0.0468f,0.104f,0.0669f,0.151f,0.08f,0.0896f,-0.0302f,-0.0876f,-0.0739f,0.106f,0.105f,0.044f,0.0541f,-0.0665f,-0.0354f,0.0539f,0.0898f,-0.0862f,0.0968f,0.118f,0.106f,-0.0165f,0.0118f,-0.0499f,-0.0197f,0.00825f,0.133f,-0.0914f,-0.0873f,0.0495f,-0.0247f,-0.00535f,-0.0241f,0.105f,0.231f,-0.18f,0.0154f,0.0993f,-0.0974f,0.0669f,0.0759f,0.0922f,0.0355f,0.115f,0.0166f,-0.0327f,0.0813f,-0.0343f,-0.0353f,0.0561f,-0.0382f,0.0673f,0.0409f,-0.145f,0.0548f,-0.124f,0.0184f,0.0621f,0.148f,0.023f,-0.074f,0.0128f,0.158f,-0.208f,0.0559f,-0.0793f,0.1f,0.0533f,-0.0106f,0.109f,-0.167f,-0.085f,0.00283f,0.0846f,0.0994f,0.00518f,0.0893f,-0.0809f,-0.0803f,0.0943f,0.156f,0.0198f,-0.128f,0.0882f,0.0588f,0.137f,0.033f,-0.173f,0.182f,-0.0718f,0.258f,-0.0569f,-0.0657f,0.078f,-0.0197f,-0.193f,-0.356f,0.0642f,-0.00931f,-0.0749f,-0.107f,-0.0247f,0.0801f,-0.012f,0.0885f,-0.0293f,-0.205f,0.0331f,-0.165f,-0.0947f,-0.0975f,-0.0407f,0.156f,-0.0101f,-0.0692f,-0.174f,-0.314f,-0.0231f,0.0259f,0.0434f,-0.179f,-0.0116f,-0.0369f,-0.0305f,-0.0108f,0.067f,-0.0354f,-0.036f,-0.0375f,-0.137f,-0.00188f,0.0221f,-0.103f,-0.127f,0.0227f,-0.000464f,-0.137f,-0.0891f,-0.112f,-0.0384f,-0.00524f,-0.117f,-0.0494f,-0.361f,-0.0766f,0.0659f,-0.101f,-0.0386f,-0.0108f,-0.0745f,-0.118f,-0.0389f,-0.0855f,-0.077f,-0.0821f,-0.122f,-0.103f,-0.0391f,0.00847f,-0.00249f,0.118f,-0.118f,-0.0796f,-0.0819f,-0.128f,0.106f,0.162f,-0.0978f,-0.0877f,0.104f,0.0842f,-0.0838f,0.0889f,0.049f,0.00325f,-0.148f,0.067f,-0.111f,0.0613f,-0.0829f,-0.0177f,-0.0224f,-0.036f,0.00312f,0.0424f,0.117f,-0.036f,-0.0546f,-0.0299f,0.148f,-0.0248f,0.0864f,0.0471f,0.0218f,-0.0241f,-0.0572f,-0.0315f,0.0369f,-0.078f,-0.0779f,-0.184f,0.165f,0.0774f,-0.0667f,0.223f,-0.0117f,-0.165f,0.0614f,-0.113f,-0.0466f,-0.03f,0.00885f,-0.0952f,0.15f,-0.00123f,-0.0629f,0.186f,-0.104f,0.1f,0.0847f,0.021f,0.181f,-0.0789f,-0.0317f,-0.0845f,0.143f,-0.139f,-0.0245f,-0.0018f,0.0371f,0.0769f,-0.096f,0.0425f,0.0184f,0.0093f,-0.112f,-0.0489f,0.0447f,-0.117f,-0.046f,-0.0726f,0.0915f,-0.151f,0.0207f,-0.0186f,-0.0948f,-0.125f,-0.0519f,0.108f,0.0746f,-0.0334f,0.0777f,0.0025f,0.116f,0.0108f,0.023f,-0.096f,-0.153f,-0.0927f,0.0332f,0.0742f,0.00287f,0.00766f,-0.23f,0.0721f,0.0461f,-0.0836f,0.00264f,-0.024f,-0.0671f,0.00142f,0.259f,-0.0405f,-0.0479f,0.00799f,0.0732f,0.004f,0.0215f,-0.0366f,0.0822f,-0.0522f,-0.0584f,-0.0638f,-0.00865f,-0.0474f,-0.0138f,-0.00749f,-0.0772f,-0.0525f,0.104f,0.042f,0.124f,-0.0819f,0.0525f,0.0628f,0.133f,-0.0132f,0.182f,0.0411f,-0.00981f,0.118f,0.0331f,0.0855f,-0.00429f,0.00189f,-0.00754f,0.0808f,0.135f,0.0183f,-0.108f,0.0854f,-0.317f,0.0706f,0.00144f,-0.121f,0.203f,-0.0405f,-0.189f,-0.00635f,0.212f,0.042f,0.00772f,0.0715f,-0.107f,0.0144f,0.0989f,-0.07f,-0.114f,-0.076f,0.0513f,0.094f,-0.134f,-0.0333f,0.0245f,0.0479f,0.0684f,0.0941f,0.0734f,-0.0555f,0.181f,-0.146f,0.00805f,-0.0259f,-0.0547f,0.0301f,0.0391f,-0.0972f,-0.0507f,-0.0741f,-0.191f,-0.0282f,-0.159f,-0.0603f,0.0466f,-0.037f,0.0114f,-0.0527f,-0.0394f,0.136f,-0.0656f,0.0125f,0.0907f,0.108f,-0.0754f,-0.0508f,-0.0377f,0.242f,-0.0957f,-0.0112f,-0.00119f,0.0376f,0.0282f,-0.0907f,-0.262f,0.0102f,-0.157f,-0.0531f,-0.153f,-0.106f,-0.0326f,0.0257f,-0.0961f,-0.124f,-0.0707f,0.137f,-0.159f,-0.0688f,-0.00896f,-0.0539f,-0.0274f,-0.073f,0.027f,-0.121f,-0.0708f,-0.0477f,-0.0245f,-0.0558f,-0.0686f,0.0541f,-0.139f,-0.158f,-0.0189f,-0.0351f,0.0729f,-0.0529f,0.17f,0.0831f,0.0301f,-0.0103f,0.423f,0.0927f,-0.0608f,-0.109f,-0.0488f,0.0102f,-0.133f,-0.0245f,-0.0851f,-0.0168f,-0.0355f,-0.0164f,-0.0393f,-0.116f,-0.0301f,-0.0967f,-0.0747f,0.107f,-0.186f,0.0028f,-0.0845f,-0.0732f,0.0873f,0.069f,-0.135f,-0.0428f,-0.212f,0.0364f,-0.0292f,0.14f,-0.134f,-0.011f,0.132f,0.00155f,0.175f,-0.0417f,-0.0053f,0.0289f,-0.116f,0.04f,-0.0319f,0.0269f,-0.112f,0.00127f,-0.00073f,0.202f,-0.0652f,0.0266f,-0.0695f,-0.0388f,-0.106f,-0.108f,0.246f,0.0241f,-0.133f,-0.102f,0.0304f,0.124f,-0.1f,0.0267f,-0.165f,-0.0865f,0.0405f,-0.0281f,-0.0485f,0.0592f,0.079f,0.132f,0.12f,-0.127f,-0.076f,0.00427f,0.0275f,0.0441f,0.248f,0.128f,-0.00838f,-0.0139f,-0.109f,0.0752f,0.133f,0.0834f,-0.201f,0.081f,-0.113f,-0.00107f,0.029f,0.1f,0.133f,0.0861f,-0.0177f,0.0819f,0.0593f,0.0141f,0.0856f,0.0166f,-0.00502f,-0.0806f,0.0907f,-0.134f,0.00606f,-0.0688f,-0.0487f,-0.107f,0.157f,0.0569f,0.0497f,0.07f,-0.0882f,-0.297f,0.0857f,0.0516f,-0.116f,0.102f,0.0884f,0.0623f,0.000888f,0.0352f,0.0944f,0.314f,0.103f,0.0513f,-0.041f,0.107f,0.221f,0.0425f,-0.114f,-0.0727f,-0.00114f,-0.0497f,-0.0469f,-0.0265f,-0.0141f,-0.112f,-0.163f,0.0867f,0.011f,0.0728f,-0.104f,-0.0374f,-0.0575f,0.188f,0.051f,-0.0357f,0.0174f,0.0525f,0.00216f,0.0416f,-0.0275f,0.0616f,0.0251f,-0.295f,-0.0303f,0.0207f,0.000598f,0.00801f,0.182f,-0.0333f,0.0297f,0.0472f,0.0621f,-0.00678f,0.0332f,-0.0167f,0.0756f,0.0256f,-0.0179f,0.363f,0.056f,0.0811f,-0.00177f,0.00944f,-0.017f,-0.0867f,0.00855f,0.00244f,-0.107f,0.0613f,0.0674f,-0.119f,0.0346f,-0.0147f,-0.01f,0.0819f,0.00964f,-0.0383f,0.0019f,-0.0394f,-0.0241f,0.0106f,-0.0774f,0.00266f,-0.00658f,0.0197f,-0.0525f,-0.0157f,-0.000764f,0.0616f,0.00611f,0.0113f,0.0334f,-0.116f,0.301f,0.0297f,0.0768f,0.0863f,-0.0321f,0.129f,0.0408f,-0.073f,0.0748f,0.0871f,0.0277f,0.0235f,-0.207f,-0.0837f,0.123f,0.0281f,-0.0316f,0.0808f,0.00291f,0.0488f,-0.0448f,0.00658f,0.0901f,0.0029f,0.0356f,-0.226f,0.169f,0.0878f,-0.044f,-0.0579f,-0.105f,0.224f,0.182f,0.0361f,0.0247f,-0.103f,-0.025f,0.0352f,0.0556f,0.06f,0.0313f,0.0304f,0.0489f,-0.114f,-0.182f,0.207f,0.08f,0.0553f,0.161f,0.144f,0.139f,0.127f,-0.0623f,-0.0632f,-0.0244f,-0.0769f,0.0306f,-0.0288f,-0.0407f,0.0587f,0.0785f,-0.138f,-0.0165f,-0.0729f,0.0415f,0.0165f,0.011f,-0.0446f,0.0777f,0.134f,-0.00316f,-0.0179f,-0.217f,0.102f,-0.0382f,-0.0556f,-0.0874f,-0.0873f,0.125f,0.0316f,-0.0114f,-0.0579f,0.0241f,-0.0375f,-0.0652f,0.0353f,-0.146f,-0.0116f,0.0412f,-0.0883f,0.0168f,0.0111f,-0.0684f,0.105f,-0.0977f,0.16f,0.0607f,-0.0474f,-0.211f,-0.218f,-0.0806f,-0.025f,-0.112f,-0.0949f,0.17f,0.00603f,0.0681f,-0.179f,0.0734f,-0.241f,-0.1f,0.00554f,-0.037f,0.0604f,-0.0735f,-0.125f,0.0288f,-0.347f,0.00883f,-0.12f,-0.0846f,0.0344f,-0.0471f,-0.0224f,-0.219f,0.00825f,0.0393f,-0.0126f,0.0492f,0.053f,-0.0516f,-0.0575f,0.135f,-0.013f,-0.0207f,0.0697f,-0.00717f,-0.0283f,-0.0985f,0.0991f,0.122f,0.0521f,0.0891f,0.00215f,-0.071f,0.108f,-0.0103f,-0.11f,0.082f,-0.158f,0.033f,-0.00106f,0.0168f,0.0482f,0.0306f,-0.023f,-0.222f,0.037f,0.0226f,0.0799f,-0.044f,-0.192f,-0.0454f,0.0582f,-0.121f,0.0694f,-0.00127f,-0.0273f,0.139f,0.179f,0.107f,0.134f,-0.0564f,0.0581f,-0.166f,0.0289f,0.114f,-0.0725f,0.133f,-0.0146f,-0.00776f,0.0267f,0.0333f,0.103f,-0.016f,-0.136f,0.173f,-0.021f,-0.0661f,0.105f,0.116f,-0.096f,-0.0176f,-0.0473f,-0.0367f,-0.133f,0.0609f,0.196f,0.078f,0.0153f,-0.0563f,-0.0226f,0.055f,-0.0186f,-0.0263f,-0.00396f,0.0891f,0.128f,-0.0284f,0.117f,0.119f,0.0864f,-0.00658f,0.153f,0.0343f,0.0605f,-0.0329f,-0.132f,0.0018f,0.0119f,-0.0324f,-0.102f,0.124f,0.152f,-0.0497f,-0.0991f,-0.21f,-0.0144f,-0.0397f,0.152f,-0.201f,0.0905f,0.14f,0.0907f,-0.115f,-0.0393f,0.145f,0.246f,0.112f,0.0015f,0.0163f,-0.0293f,-0.216f,-0.16f,-0.0234f,-0.0386f,-0.272f,-0.124f,0.0322f,0.0908f,0.159f,0.125f,-0.0922f,-0.0492f,0.00498f,0.0682f,0.0383f,0.172f,-0.0432f,-0.01f,-0.0735f,0.014f,-0.345f,-0.0577f,0.0868f,-0.0998f,-0.0683f,0.0116f,0.0622f,0.00105f,-0.13f,-0.186f,0.189f,-0.111f,-0.013f,0.0453f,-0.0628f,0.13f,0.109f,0.0373f,-0.039f,-0.0107f,-0.046f,-0.0062f,0.000296f,0.0371f,-0.134f,-0.0377f,0.12f,-0.121f,0.00226f,0.0152f,0.0063f,-0.0449f,-0.0581f,0.0628f,-0.00285f,-0.0166f,0.12f,-0.102f,0.113f,-0.0493f,0.00346f,-0.0988f,-0.00848f,-0.0221f,-0.0563f,-0.0806f,-0.141f,-0.0441f,-0.0183f,0.0127f,-0.149f,0.00642f,-0.0161f,-0.0417f,-0.0152f,0.0188f,-0.115f,-0.302f,0.0484f,-0.0291f,-0.0947f,0.0525f,0.0858f,-0.0887f,-0.137f,0.145f,0.171f,-0.0203f,-0.0554f,0.0781f,-0.0165f,0.148f,-0.118f,-0.028f,-0.141f,-0.0328f,0.0221f,-0.0771f,-0.0439f,-0.095f,0.163f,0.254f,-0.0533f,0.0515f,0.00901f,-0.07f,0.126f,0.0725f,-0.143f,-0.0121f,-0.0973f,-0.176f,-0.0465f,-0.282f,-0.034f,0.0419f,-0.00892f,-0.238f,-0.122f,0.0521f,-0.02f,-0.064f,-0.0333f,-0.142f,0.0843f,-0.121f,0.0119f,0.162f,-0.13f,-0.0793f,-0.0118f,0.203f,-0.0965f,-0.00882f,0.134f,0.038f,0.0205f,-0.159f,0.169f,-0.0315f,-0.0988f,-0.0448f,0.105f,0.0759f,-0.0493f,-0.203f,-0.0473f,-0.0686f,-0.121f,0.0648f,0.0697f,0.0698f,-0.0795f,-0.0601f,-0.0427f,0.074f,-0.0573f,-0.146f,0.0366f,0.0416f,-0.11f,-0.128f,-0.0866f,-0.0178f,-0.00535f,0.0614f,0.185f,-0.0123f,0.0413f,0.0539f,0.0899f,-0.0632f,0.15f,0.125f,0.00107f,0.0435f,0.176f,-0.0154f,-0.242f,0.163f,-0.0138f,0.0356f,-0.109f,-0.0625f,-0.0403f,-0.0308f,0.115f,0.0613f,-0.15f,0.103f,0.108f,-0.179f,0.121f,-0.0349f,0.0335f,-0.0275f,-0.134f,-0.0146f,0.00607f,0.0404f,0.0434f,0.0574f,0.0616f,0.0279f,0.11f,-0.00783f,0.0295f,-0.242f,0.0325f,-0.0961f,0.129f,0.101f,0.19f,-0.0215f,0.0852f,0.0993f,-0.0736f,0.0183f,-0.122f,-0.0343f,0.117f,0.135f,0.0155f,-0.00977f,-0.0607f,-0.0491f,-0.0239f,-0.0505f,-0.064f,-0.0397f,-0.0738f,-0.00347f,0.00585f,0.0939f,-0.229f,0.0244f,0.0587f,0.0226f,-0.0398f,0.0994f,-0.0699f,-0.171f,-0.056f,-0.0253f,0.0298f,0.128f,0.0658f,0.0883f,0.049f,0.132f,-0.0366f,0.118f,0.152f,-0.27f,0.136f,-0.0106f,0.0684f,0.0879f,0.109f,0.101f,0.0206f,0.0453f,0.144f,0.113f,0.00484f,0.0864f,-0.137f,-0.0679f,0.00298f,0.0213f,0.0204f,-0.0744f,-0.0356f,-0.0448f,-0.0786f,-0.0236f,0.0795f,0.0796f,0.0992f,0.00468f,-0.091f,-0.0189f,-0.0704f,0.0343f,0.0765f,-0.0864f,0.0957f,-0.0832f,0.157f,0.0208f,0.134f,0.00714f,0.163f,0.0927f,0.105f,0.0594f,0.0719f,0.0821f,0.045f,0.00296f,0.146f,-0.0804f,0.024f,0.0822f,-0.0872f,0.0262f,0.0598f,0.0298f,-0.0638f,0.00679f,0.0234f,0.0851f,0.0758f,0.197f,-0.0354f,-0.0976f,-0.0295f,0.144f,-0.00654f,0.0205f,-0.028f,-0.0585f,0.126f,0.118f,-0.116f,0.0577f,-0.0734f,0.17f,-0.058f,0.0398f,-0.00477f,0.1f,0.0147f,-0.139f,0.0428f,0.088f,-0.125f,0.203f,0.117f,0.0233f,0.0625f,0.17f,-0.0612f,0.0747f,0.0263f,0.0582f,0.00814f,-0.0309f,0.0184f,0.106f,-0.174f,0.0683f,-0.0663f,0.113f,0.125f,-0.129f,-0.062f,0.0227f,0.146f,0.0187f,0.0867f,0.0522f,-0.00848f,0.0319f,0.00177f,0.0129f,-0.0129f,-0.0857f,0.0723f,0.126f,-0.096f,-0.1f,0.0985f,0.223f,0.0597f,0.157f,0.145f,-0.0178f,0.0623f,0.102f,-0.0406f,0.0536f,-0.000848f,-0.112f,0.077f,0.0283f,-0.0829f,0.0579f,0.0106f,0.069f,-0.0719f,-0.0699f,0.139f,0.0842f,-0.0306f,-0.0514f,-0.0273f,-0.0992f,0.183f,0.0636f,-0.317f,0.162f,0.0505f,0.0145f,0.0588f,0.0373f,-0.0399f,-0.0352f,-0.0386f,-0.0353f,0.0287f,-0.196f,0.0311f,-0.0136f,0.0335f,0.0256f,0.00265f,0.00668f,-0.0306f,-0.00304f,0.0661f,0.0102f,0.0158f,0.0176f,0.0216f,0.0468f,-0.0448f,-0.331f,0.0813f,0.0287f,-0.137f,-0.119f,0.0799f,-0.0477f,0.0223f,0.0444f,-0.0255f,0.0312f,0.0836f,-0.0203f,0.0219f,-0.000387f,0.0332f,0.122f,0.0782f,0.0434f,-0.0196f,-0.0055f,-0.0943f,0.0483f,-0.0105f,-0.00548f,-0.0346f,0.132f,0.00881f,0.0151f,-0.00136f,0.0578f,-0.00907f,0.0282f,-0.0618f,0.0337f,-0.0876f,-0.109f,-0.0548f,-0.0532f,-0.0885f,-0.0057f,-0.0254f,0.0531f,0.00797f,0.0037f,0.011f,0.0275f,0.131f,0.133f,-0.185f,0.0662f,0.0474f,0.0182f,0.0987f,-0.0173f,-0.113f,0.0288f,-0.0832f,0.0235f,0.0213f,0.0411f,0.00814f,0.00336f,0.0393f,0.0335f,-0.123f,0.229f,0.0188f,-0.0282f,0.00721f,0.0677f,-0.0451f,0.0817f,-0.0146f,-0.0515f,0.0251f,-0.133f,0.07f,-0.0135f,0.0402f,-0.0974f,-0.0178f,0.0872f,-0.115f,0.0346f,-0.152f,-0.106f,0.0288f,0.153f,-0.0179f,-0.0536f,-0.193f,0.0533f,0.0718f,-0.0689f,-0.0741f,0.125f,0.00532f,0.0504f,0.0642f,-0.00338f,-0.07f,0.0464f,0.105f,-0.0279f,-0.0895f,0.00571f,0.00873f,-0.00655f,-0.0155f,0.125f,0.0325f,-0.115f,-0.16f,0.00978f,-0.0251f,-0.128f,0.166f,0.114f,0.0588f,0.0295f,0.117f,-0.0263f,0.0794f,0.0487f,0.108f,-0.149f,0.0716f,-0.142f,-0.105f,-0.0213f,0.00999f,0.0271f,-0.046f,-0.0159f,0.0637f,-0.0111f,0.0702f,-0.0721f,0.192f,-0.0971f,-0.102f,-0.113f,0.0591f,0.0524f,0.0193f,0.081f,-0.119f,-0.0253f,0.00671f,0.0485f,-0.117f,-0.0625f,0.0683f,-0.0365f,-0.0612f,0.00168f,0.0275f,-0.073f,0.108f,0.155f,0.0886f,-0.128f,0.0323f,-0.0176f,0.145f,0.0885f,-0.056f,0.088f,0.0944f,0.0576f,0.128f,-0.143f,0.029f,0.0196f,-0.078f,-0.0838f,-0.181f,-0.00332f,0.00943f,0.0569f,0.0393f,-0.0132f,-0.0293f,-0.00131f,0.119f,0.0886f,0.0845f,-0.0523f,-0.0708f,0.0196f,-0.11f,0.0625f,0.00259f,-0.168f,0.0964f,0.151f,0.0443f,-0.104f,-0.0221f,0.0692f,0.014f,0.0321f,-0.0705f,-0.0904f,-0.0349f,0.0654f,0.055f,0.0165f,0.105f,0.0674f,-0.0772f,0.184f,0.00224f,-0.00106f,0.0112f,0.0608f,0.0298f,0.013f,0.0803f,-0.0565f,-0.0817f,0.0754f,-0.00573f,0.0129f,-0.0223f,-0.109f,0.000998f,0.082f,-0.0932f,-0.0299f,-0.0106f,0.00175f,-0.185f,-0.00162f,0.0201f,0.0145f,0.0319f,-0.0488f,-0.105f,0.0781f,0.0583f,-0.125f,0.0365f,0.085f,-0.0165f,0.0748f,0.223f,0.0707f,-0.0659f,-0.0711f,-0.00497f,0.0285f,-0.0717f,-0.0717f,0.156f,0.0643f,-0.12f,-0.136f,-0.0408f,0.0618f,-0.098f,-0.0505f,0.0409f,0.104f,-0.0799f,-0.0433f,-0.0386f,-0.0348f,-0.12f,-0.0257f,0.0287f,0.0144f,0.0945f,-0.0217f,-0.0379f,-0.214f,-0.0333f,-0.0627f,-0.258f,0.0158f,0.00547f,-0.0593f,0.0231f,0.106f,0.0265f,0.00731f,-0.0335f,-0.159f,0.134f,-0.112f,0.0278f,-0.0246f,0.00368f,-0.115f,0.00404f,0.0921f,-0.133f,0.00639f,0.0326f,0.0741f,0.0523f,-0.0185f,0.105f,-0.0499f,-0.132f,0.0618f,-0.083f,-0.15f,0.0413f,0.106f,0.0208f,0.0352f,-0.0351f,-0.028f,0.0212f,-0.127f,-0.101f,0.0276f,0.0543f,0.196f,-0.0309f,-0.00252f,-0.137f,-0.0858f,-0.105f,0.0924f,0.131f,-0.123f,-0.0819f,0.0561f,0.276f,-0.00857f,0.0745f,0.0683f,-0.307f,-0.24f,-0.0112f,-0.0326f,-0.0371f,0.103f,0.215f,-0.17f,0.168f,0.0604f,-0.118f,-0.223f,-0.0557f,0.0993f,-0.00152f,0.0173f,-0.0208f,0.00656f,-0.0669f,-0.0369f,-0.0281f,-0.085f,0.138f,-0.0114f,0.119f,-0.0644f,-0.219f,-0.0632f,-0.0457f,-0.0287f,0.0665f,-0.0237f,-0.018f,-0.144f,-0.0487f,-0.114f,0.0635f,0.00523f,0.0112f,0.0113f,-0.055f,-0.169f,-0.00506f,-0.0905f,-0.108f,0.0649f,-0.0498f,0.0403f,0.00971f,0.00835f,0.055f,0.0336f,-0.0313f,-0.0495f,0.0446f,0.0656f,0.019f,-0.0505f,0.164f,0.0598f,0.0613f,-0.0102f,-0.207f,-0.0529f,0.0765f,-0.117f,-0.262f,-0.115f,0.0164f,-0.051f,0.0381f,0.00823f,-0.0614f,-0.00631f,0.00457f,-0.089f,0.0102f,-0.0141f,0.092f,0.00969f,-0.0321f,-0.027f,-0.346f,0.0327f,0.0491f,-0.0471f,0.00939f,0.0188f,0.0144f,0.036f,-0.0194f,-0.0621f,0.115f,-0.0114f,0.221f,-0.158f,0.0967f,0.0893f,0.0378f,-0.144f,0.0254f,0.0646f,-0.0435f,0.0068f,-0.091f,-0.0434f,0.0974f,0.0233f,0.0132f,0.103f,-0.00543f,0.157f,-0.0283f,-0.0752f,-0.137f,0.0816f,0.0634f,-0.127f,-0.0435f,0.00576f,0.0276f,0.119f,-0.0152f,0.0684f,-0.0131f,0.0442f,-0.0199f,0.088f,0.0136f,0.00783f,0.132f,0.0817f,-0.169f,0.0828f,0.0474f,0.0919f,0.0735f,0.0505f,-0.11f,0.0327f,-0.0479f,-0.121f,0.0084f,0.0712f,0.0296f,-0.0332f}; +float backbone__model4_dp2_pw_bias[64] = {-0.00942f,0.14f,0.0615f,-0.182f,0.0251f,-0.0792f,-0.14f,-0.0991f,-0.00925f,-0.0176f,0.0439f,0.0124f,-0.149f,0.0733f,-0.0971f,-0.0102f,-0.0346f,0.0683f,-0.0527f,0.187f,-0.0429f,-0.0764f,0.0797f,-0.0605f,0.0364f,0.00402f,0.128f,0.0794f,-0.0589f,0.145f,0.0684f,-0.0786f,0.0438f,0.127f,-0.0374f,0.0557f,0.0899f,-0.0291f,0.0904f,0.0188f,-0.135f,-0.0624f,0.038f,0.204f,-0.0261f,0.0526f,-0.166f,0.0324f,0.0241f,0.0235f,0.219f,0.0708f,0.0965f,-0.167f,-0.0213f,-0.164f,0.00851f,0.101f,0.0377f,0.0307f,0.149f,-0.00551f,0.195f,0.0523f}; +float backbone__model4_dp2_dw_weight[64*1*3*3] = {-0.058f,-0.175f,-0.529f,0.771f,0.118f,0.913f,0.218f,-0.16f,-0.4f,1.43f,0.613f,0.588f,0.314f,0.798f,-0.205f,1.75f,-0.00987f,0.432f,0.325f,-0.407f,-0.57f,-0.305f,-0.466f,0.457f,0.478f,0.088f,-0.148f,-0.672f,0.238f,-1.02f,-0.167f,-0.436f,-0.444f,1.2f,-0.693f,-0.952f,-0.293f,0.00465f,-0.438f,0.617f,0.561f,-0.235f,0.345f,0.822f,-0.125f,-0.03f,-0.0523f,-0.239f,0.11f,-0.498f,0.144f,0.168f,-0.273f,-1.28f,0.798f,-0.0386f,-0.0401f,0.952f,-0.944f,0.7f,1.1f,0.182f,0.108f,-1.23f,-0.0954f,-0.344f,-0.645f,0.154f,-0.261f,-0.173f,0.336f,0.28f,-0.331f,0.93f,0.455f,1.96f,0.303f,0.495f,-0.747f,-0.121f,0.0233f,-2.42f,0.197f,-0.181f,-0.144f,-0.63f,-0.561f,0.21f,0.337f,0.0695f,0.219f,-1.06f,0.122f,-0.893f,1.47f,-0.0857f,-1.07f,0.952f,-0.821f,0.671f,-0.68f,-0.886f,-0.188f,0.405f,0.261f,0.132f,0.0283f,1.87f,0.102f,0.0346f,-0.857f,1.7f,-0.364f,-0.427f,0.305f,0.283f,-0.176f,-0.628f,1.47f,0.237f,0.0701f,1.02f,-0.534f,0.0152f,-0.0652f,0.0107f,0.155f,-0.43f,-0.0298f,-0.0905f,-0.553f,1.12f,-1.09f,0.00258f,0.157f,0.698f,0.0392f,0.635f,0.565f,-0.364f,1.01f,0.936f,-1.53f,-0.315f,-0.00751f,-1.49f,0.199f,-0.285f,-0.517f,-0.452f,-0.79f,0.0303f,0.426f,0.435f,0.418f,-0.364f,-0.126f,-1.01f,1.84f,-0.156f,-0.601f,0.625f,-0.441f,0.094f,-0.491f,-0.102f,-0.251f,0.645f,0.656f,-0.0572f,0.234f,0.416f,-0.123f,-0.0562f,0.506f,0.282f,-0.773f,-0.137f,-0.114f,-0.155f,-0.0272f,-0.34f,-0.498f,-0.368f,0.164f,0.606f,-0.309f,-0.519f,0.022f,0.391f,0.295f,-0.492f,-1.09f,-0.414f,-0.555f,0.435f,0.56f,0.662f,-0.715f,0.45f,-0.312f,0.975f,0.347f,-0.671f,0.0089f,0.52f,-0.0208f,0.668f,-0.0625f,0.642f,0.357f,0.0334f,-0.0677f,-0.32f,-0.0418f,-0.375f,0.55f,-0.121f,-0.997f,-0.646f,0.388f,0.054f,-0.349f,-0.901f,-0.0196f,0.0869f,-1.57f,-0.493f,-0.141f,-0.15f,-0.259f,0.218f,0.286f,-0.228f,0.00883f,0.128f,0.259f,-0.624f,-0.612f,0.0992f,0.23f,-1.54f,1.04f,-0.0583f,-0.368f,-1.14f,0.351f,0.466f,0.00878f,0.235f,-0.621f,1.2f,0.716f,0.343f,0.546f,-0.351f,0.0375f,-1.28f,-0.491f,-0.116f,-0.894f,-2.11f,-2.8f,0.432f,-0.422f,0.15f,0.943f,-0.2f,-0.699f,0.146f,-0.79f,0.627f,0.691f,0.198f,0.293f,0.374f,-0.421f,-0.889f,-0.119f,0.514f,0.454f,-0.187f,0.687f,-0.445f,-2.35f,1.17f,-1.27f,0.238f,-0.183f,-0.646f,1.27f,0.622f,-0.545f,-2.14f,-0.527f,0.526f,0.227f,-0.359f,1.06f,0.224f,-2.92f,-1.51f,-3.32f,1.14f,-1.38f,0.273f,-0.669f,2.f,-0.2f,-0.336f,0.788f,-0.445f,-2.36f,-0.235f,-0.0943f,-0.345f,0.201f,0.191f,-0.112f,0.0624f,0.113f,-0.473f,-0.376f,0.178f,-0.765f,-0.278f,0.271f,0.519f,-0.356f,-0.0189f,0.822f,-1.25f,0.538f,-0.0773f,-1.11f,-0.0857f,0.0157f,0.367f,0.662f,0.045f,-0.507f,-0.499f,-0.879f,-0.0767f,0.542f,0.785f,1.71f,-0.0977f,0.12f,0.0797f,0.705f,1.32f,-1.24f,0.393f,-0.0179f,0.776f,-0.58f,-0.327f,-0.27f,0.728f,0.331f,-0.452f,0.111f,-0.108f,-0.311f,1.17f,0.829f,1.62f,-0.419f,-0.221f,0.0921f,0.37f,-0.225f,0.457f,-0.969f,-2.27f,0.303f,0.101f,0.282f,-1.16f,0.235f,0.639f,0.0559f,-0.242f,-0.779f,-0.296f,-0.656f,0.592f,0.108f,0.0133f,0.183f,0.879f,-0.187f,0.129f,0.294f,-0.588f,0.711f,1.2f,0.132f,0.251f,-0.0844f,0.123f,0.569f,1.36f,-0.412f,-0.394f,0.135f,0.962f,0.823f,0.352f,-0.764f,-0.446f,1.07f,0.0698f,-0.37f,-0.114f,-0.0614f,-1.01f,-0.717f,-1.33f,-0.671f,-0.257f,-0.569f,0.339f,0.456f,-0.28f,0.389f,0.0277f,0.0229f,-0.225f,0.607f,0.629f,-0.896f,-0.59f,2.52f,0.441f,-0.777f,-0.527f,0.403f,0.235f,-0.0754f,-0.23f,-0.6f,0.658f,0.488f,0.149f,1.02f,-0.553f,-1.41f,-0.315f,-0.392f,-0.273f,-0.365f,-0.421f,-0.325f,-0.0427f,-0.464f,-0.0116f,0.219f,-0.894f,-0.069f,1.12f,0.186f,0.621f,-2.05f,-0.0599f,0.676f,1.37f,-0.685f,0.248f,0.213f,0.655f,0.635f,0.942f,1.3f,-0.585f,1.24f,0.116f,-0.425f,-1.73f,0.382f,-0.903f,0.312f,-0.766f,-0.449f,-0.32f,-1.03f,0.414f,0.525f,-1.37f,0.618f,-0.426f,-0.0881f,-0.157f,0.738f,0.0825f,-1.09f,-0.648f,-0.0684f,0.561f,-0.76f,-0.00167f,0.206f,-1.21f,0.325f,-0.231f,-0.758f,-0.59f,0.817f,0.434f,0.241f,-0.389f,-0.551f,-0.0566f,-0.68f,0.709f,-0.209f,0.32f,0.687f,0.305f,-0.337f,0.00328f,0.661f,-0.697f,1.38f,0.315f,-0.265f,0.258f,0.112f,-0.309f,0.71f,-0.144f,-0.28f,-0.544f,-0.332f,1.08f,0.341f,0.576f,0.555f,-0.346f,0.937f,-0.386f,-0.213f,-0.882f,-0.587f,-0.566f,0.0289f,-0.278f,-0.641f,-0.341f,-0.0738f,0.7f,0.755f,-1.68f,0.294f,0.318f,-0.72f,-0.0418f,-0.193f,0.0582f,-0.0513f,-0.106f,0.293f,0.113f,-1.03f,-0.0869f,-0.99f,-1.12f,0.224f,0.158f,0.225f,-1.31f,0.686f,0.459f,0.854f,-0.538f}; +float backbone__model4_dp2_dw_bias[64] = {0.157f,-0.0228f,0.0751f,1.31f,0.0273f,0.00231f,-0.127f,0.193f,0.821f,-0.254f,0.378f,0.336f,0.445f,-0.0459f,-0.506f,0.215f,0.00394f,-0.105f,0.131f,0.107f,0.0778f,0.0699f,-0.224f,0.633f,0.777f,0.0511f,-0.554f,0.0701f,0.786f,0.548f,-0.147f,0.0515f,-0.0099f,-0.137f,0.404f,0.674f,0.301f,-0.739f,-1.55f,0.241f,1.08f,-0.338f,0.533f,-0.227f,0.734f,0.601f,-0.0789f,0.31f,0.199f,0.0315f,-0.268f,0.0817f,0.086f,-0.229f,-0.675f,-0.116f,0.515f,-0.0733f,0.0979f,0.0249f,0.103f,0.0523f,0.17f,0.807f}; +float backbone__model5_dp1_pw_weight[64*64*1*1] = {-0.0281f,-0.0917f,0.000499f,-0.0566f,-0.0215f,-0.0679f,0.0148f,-0.0796f,-0.0249f,-0.166f,-0.0704f,0.0188f,-0.0191f,-0.0763f,0.0255f,0.0729f,0.00847f,0.00291f,-0.0217f,-0.0071f,-0.048f,0.0386f,0.0718f,0.101f,-0.103f,-0.0528f,0.0364f,-0.00729f,0.00933f,0.0176f,0.0109f,0.000918f,0.0482f,0.0416f,0.002f,-0.363f,-0.0372f,0.052f,-0.0517f,-0.0717f,-0.0163f,0.0215f,0.045f,-0.069f,-0.018f,-0.062f,0.0329f,0.000454f,-0.027f,-0.0606f,-0.123f,0.045f,0.0192f,-0.101f,0.00927f,-0.0731f,-0.000344f,0.0938f,-0.0527f,0.017f,-0.089f,-0.0234f,0.0917f,0.0225f,0.0584f,0.0999f,0.0382f,-0.0104f,-0.0118f,0.0338f,-0.00856f,0.0416f,0.0104f,0.0734f,0.000344f,0.0197f,-0.0739f,-0.0184f,-0.0368f,0.00286f,0.0198f,0.0568f,0.0848f,0.0968f,0.0785f,-0.00398f,0.145f,-0.0889f,-0.143f,-0.027f,0.059f,0.0602f,-0.0429f,-0.00357f,0.023f,0.0513f,0.0361f,0.0933f,0.0209f,-0.0293f,0.0879f,0.0167f,0.0366f,0.0956f,0.14f,0.0249f,0.0571f,-0.0246f,0.0114f,-0.00417f,-0.000671f,0.0141f,0.03f,-0.00101f,-0.0238f,-0.00421f,0.0786f,-0.0191f,-0.00701f,-0.00084f,-0.0238f,0.012f,0.125f,-0.00652f,0.0928f,-0.0408f,-0.146f,0.126f,0.0298f,-0.0225f,-0.0129f,0.142f,-0.0472f,0.0274f,-0.038f,0.0899f,0.0614f,-0.0356f,-0.0218f,-0.0366f,-0.000575f,0.0682f,0.251f,-0.0145f,-0.0105f,0.00303f,-0.0471f,-0.00162f,-0.0936f,0.0781f,-0.26f,0.0481f,0.0526f,-0.0508f,-0.0233f,0.0541f,0.00566f,-0.0403f,0.0238f,0.0421f,0.126f,0.0403f,-0.0662f,-0.0959f,-0.0773f,0.0199f,0.0934f,0.00908f,-0.0553f,0.0232f,-0.0901f,-0.084f,0.0185f,-0.0552f,0.000731f,0.0308f,-0.115f,-0.0531f,-0.0404f,0.0378f,-0.0519f,-0.0638f,0.0745f,0.0383f,-0.00211f,0.0316f,0.123f,-0.0619f,0.0174f,-0.0161f,-0.0373f,0.00283f,0.163f,-0.0363f,-0.121f,0.15f,0.135f,0.0949f,-0.0386f,0.0264f,0.174f,0.0232f,-0.0191f,0.237f,0.0671f,-0.0278f,-0.0503f,-0.0247f,0.0104f,-0.041f,0.00292f,0.0887f,-0.132f,0.0938f,-0.0253f,0.0254f,0.0917f,-0.0253f,0.0296f,-0.15f,0.0221f,0.0278f,0.0177f,0.184f,-0.0117f,-0.0836f,0.0109f,0.0974f,0.0067f,0.139f,-0.0238f,0.0557f,-0.0924f,-0.0234f,-0.0263f,-0.0711f,0.115f,0.00646f,0.0266f,0.0266f,-0.0448f,0.0753f,-0.0717f,0.0879f,0.0912f,0.055f,-0.0504f,-0.017f,0.0476f,0.0593f,0.0135f,-0.00164f,-0.128f,-0.204f,0.00711f,-0.0688f,-0.0181f,-0.00198f,-0.0109f,0.0668f,-0.0326f,-0.0171f,0.0388f,-0.0474f,0.0684f,0.0674f,-0.118f,0.0336f,-0.0272f,-0.0553f,0.0404f,-0.0223f,0.0265f,-0.0028f,-0.203f,-0.0258f,-0.0819f,0.011f,0.0116f,0.00632f,-0.0134f,-0.044f,-0.00555f,-0.0833f,-0.00207f,-0.0148f,0.0028f,-0.0538f,-0.0409f,-0.0135f,-0.0222f,-0.0151f,-0.0299f,0.06f,0.0805f,-0.163f,-0.0467f,0.0347f,-0.00252f,-0.00904f,0.0486f,0.0217f,-0.0244f,0.0305f,-0.00258f,-0.115f,-0.0187f,0.03f,-0.239f,0.0478f,0.0169f,0.0729f,0.0127f,0.0298f,0.0236f,-0.0484f,0.000504f,-0.0352f,-0.0271f,0.0304f,-0.119f,-0.0181f,-0.0959f,-0.138f,-0.0631f,-0.0652f,0.158f,0.0647f,0.17f,0.199f,-0.0699f,0.039f,0.0795f,0.199f,0.102f,-0.219f,0.00046f,0.164f,-0.0588f,0.0325f,-0.0747f,-0.0512f,-0.11f,0.114f,-0.139f,0.15f,0.0305f,-0.129f,0.0197f,0.0677f,0.133f,-0.0116f,0.0522f,-0.00757f,0.0891f,-0.108f,0.112f,0.173f,-0.221f,0.0145f,0.0207f,0.0652f,0.0369f,0.179f,-0.0874f,-0.0102f,-0.0462f,0.333f,-0.0628f,-0.0743f,0.0765f,0.111f,-0.123f,0.142f,0.0774f,0.0584f,0.0584f,0.0669f,0.0369f,-0.178f,0.107f,-0.055f,0.00603f,-0.0251f,-0.0925f,0.0285f,0.0154f,0.316f,-0.109f,0.0395f,-0.0544f,-0.0707f,-0.127f,-0.027f,0.00976f,0.111f,0.032f,0.0758f,0.0897f,0.0575f,-0.036f,-0.0214f,0.0967f,-0.106f,0.0494f,-0.0289f,-0.0808f,0.0643f,-0.0555f,0.038f,-0.0613f,0.139f,-0.0287f,0.152f,0.00188f,-0.0308f,-0.0902f,-0.0572f,0.0153f,0.0354f,0.0902f,0.0232f,0.0026f,0.0181f,0.0708f,0.0266f,-0.0822f,0.0742f,0.0578f,-0.101f,0.0256f,-0.0336f,0.0329f,-0.0874f,0.0964f,0.0403f,-0.0307f,-0.0108f,0.0619f,0.162f,-0.0367f,0.00185f,-0.0131f,0.0422f,-0.0433f,-0.061f,0.125f,-0.035f,-0.0734f,-0.123f,-0.0844f,0.0111f,-0.175f,-0.0167f,-0.0362f,0.0476f,0.0118f,0.0104f,-0.061f,0.0105f,-0.0339f,-0.0204f,0.008f,-0.241f,-1.71e-05f,-0.0247f,0.0993f,0.0375f,0.00484f,0.0677f,0.114f,0.057f,-0.00596f,-0.0242f,-0.00588f,0.0271f,-0.00522f,0.0243f,-0.0652f,-0.0387f,-0.0736f,0.0216f,0.0752f,0.00294f,0.107f,0.01f,-0.103f,-0.058f,-0.137f,-0.0304f,0.0268f,-0.0137f,0.0209f,0.00464f,-0.0297f,-0.0727f,0.00957f,-0.0694f,0.0229f,0.0282f,-0.0266f,-0.0328f,-0.00625f,-0.0273f,0.0186f,0.0853f,-0.014f,0.0758f,0.0345f,0.0861f,0.0698f,-0.0512f,6.04e-05f,0.000121f,-0.000304f,-3.62e-05f,-0.000254f,4.32e-05f,0.000107f,-0.000121f,-0.000158f,-1.87e-05f,-1.91e-05f,0.000117f,-0.000133f,-3.29e-05f,-0.000122f,6.25e-05f,0.00032f,6.61e-05f,-8.96e-06f,-2.69e-05f,-0.000132f,0.000364f,0.00012f,-7.97e-05f,0.000398f,0.0004f,-2.71e-05f,6.29e-05f,5.77e-05f,-3.68e-06f,6.95e-05f,6.43e-05f,1.42e-05f,3.2e-05f,-7.42e-05f,-2.37e-05f,0.000192f,9.74e-06f,-9.21e-05f,0.000358f,-0.000367f,9.57e-05f,0.000553f,6.87e-05f,-6.58e-06f,0.000173f,2.5e-05f,-0.000303f,9.41e-05f,0.000116f,-9.82e-05f,-3.93e-05f,7.68e-05f,3.3e-05f,9.41e-05f,-1.32e-05f,0.000158f,0.000113f,-0.000137f,1.12e-05f,-0.000163f,0.000623f,-0.000166f,-0.000108f,0.131f,0.131f,0.0297f,-0.0456f,0.114f,-0.0148f,0.0659f,-0.031f,-0.00139f,0.0463f,0.368f,-0.0836f,0.106f,0.0899f,-0.00781f,0.116f,0.024f,-0.0526f,-0.0513f,-0.00367f,-0.0467f,0.0496f,-0.0994f,-0.15f,-0.0449f,-0.0433f,0.0336f,-0.0271f,-0.01f,0.0293f,0.0706f,-0.00284f,-0.00353f,0.0435f,0.102f,-0.0429f,-0.15f,-0.00845f,-0.00339f,0.121f,-0.0152f,0.0606f,-0.075f,-0.0278f,-0.0209f,0.0134f,-0.00589f,0.0204f,0.227f,0.0107f,-0.0297f,-0.0478f,0.152f,-0.0777f,-0.0217f,0.0269f,-0.0162f,-0.0956f,-0.00994f,0.0398f,0.0334f,-0.00949f,-0.196f,0.0508f,-0.0334f,0.0671f,-0.0635f,0.0651f,0.0522f,0.0471f,-0.0817f,0.143f,0.111f,0.123f,0.0891f,0.107f,-0.111f,0.0338f,-0.0203f,0.268f,-0.103f,0.0227f,0.0632f,0.047f,0.0781f,0.00436f,0.224f,-0.048f,0.122f,-0.0607f,-0.0494f,-0.0825f,0.0982f,-0.016f,0.0761f,-0.0488f,0.108f,0.116f,0.0688f,-0.0904f,0.156f,-0.0748f,-0.0105f,-0.0653f,0.0166f,0.186f,-0.0598f,0.0701f,-0.0493f,-0.0625f,-0.00923f,-0.00128f,-0.0418f,-0.019f,-0.028f,0.0263f,0.223f,0.0358f,0.00712f,-0.00428f,-0.119f,0.0575f,-0.0423f,0.151f,0.00759f,0.0534f,-0.168f,6.63e-05f,-0.0614f,0.0477f,0.0143f,-0.0375f,-0.12f,0.0481f,-0.0526f,-0.106f,-0.0289f,-0.0479f,0.0942f,0.0685f,-0.00147f,-0.195f,-0.0762f,-0.044f,-0.0011f,0.00444f,0.125f,-0.0109f,0.0191f,-0.0959f,-0.00794f,-0.0742f,0.0296f,0.0289f,-0.0372f,0.0316f,0.00973f,0.00285f,0.0553f,-0.0361f,-0.0547f,-0.0714f,-0.0936f,0.083f,0.0163f,0.135f,-0.0324f,-0.0894f,-0.0318f,0.0698f,0.0097f,0.0879f,0.0595f,-0.023f,-0.0305f,-0.00169f,0.0846f,-0.0209f,-0.0206f,-0.0441f,-0.145f,0.202f,-0.0375f,0.182f,-0.0419f,0.0831f,-0.0302f,-0.0922f,0.0387f,0.0555f,-0.0815f,-0.118f,-0.00404f,0.0864f,-0.0751f,-0.106f,0.0362f,-0.0154f,-0.0135f,0.00547f,0.0569f,-0.222f,0.0415f,-0.0207f,0.00941f,0.0387f,0.00698f,0.0126f,0.00406f,-0.053f,0.0263f,0.0484f,0.0672f,-0.124f,0.07f,-0.158f,0.0504f,0.00709f,0.117f,0.0146f,0.0201f,0.012f,0.146f,0.0315f,0.106f,0.0959f,-0.112f,0.0637f,-0.131f,-0.00221f,0.0629f,-0.0915f,-0.0189f,-0.00331f,0.101f,0.0991f,-0.0309f,-0.023f,-0.0125f,0.000819f,0.0274f,-0.0122f,-0.0381f,0.0998f,0.0131f,-0.0765f,0.0542f,0.102f,0.00612f,-0.3f,0.0751f,-0.0384f,-0.149f,0.00564f,0.019f,0.0418f,0.00896f,0.0471f,0.0301f,0.11f,-0.0248f,0.0826f,-0.0181f,-0.0502f,-0.282f,0.186f,0.0271f,0.104f,-0.0989f,0.218f,0.0335f,0.0394f,0.000578f,0.0417f,0.0348f,-0.0182f,0.0472f,0.0505f,-0.0185f,0.053f,-0.0556f,-0.0386f,-0.015f,0.0949f,-0.00538f,0.0291f,-0.126f,-0.0148f,-0.0612f,-0.0741f,0.0499f,0.156f,0.0591f,-0.0384f,-0.058f,0.0351f,-0.0381f,0.0828f,-0.0638f,0.0294f,0.0296f,0.00806f,-0.0336f,-0.0375f,0.00355f,-0.00259f,0.137f,-0.0629f,0.0113f,0.102f,-0.0404f,0.0187f,-0.0177f,0.0389f,0.0986f,0.0358f,0.199f,-0.0501f,-0.132f,-0.0475f,0.105f,-0.0329f,-0.106f,0.0253f,-0.0676f,-0.0646f,-0.0266f,-0.00377f,-0.00623f,-0.043f,-0.163f,-0.0234f,-0.0391f,-0.0716f,-0.0284f,-0.167f,-0.0303f,0.0463f,0.14f,-0.0368f,0.107f,-0.0763f,0.0115f,0.0289f,-0.0289f,-0.0112f,0.0388f,0.0543f,-0.0262f,-0.0252f,0.00919f,-0.0212f,0.0828f,-0.0103f,0.0126f,0.00842f,-0.00712f,-0.000654f,-0.0492f,0.0252f,0.0829f,-0.0136f,0.122f,0.0912f,-0.0292f,-0.0145f,-0.0372f,-0.0532f,-0.132f,0.0303f,0.182f,0.0156f,-0.0938f,0.0511f,-0.0197f,0.0313f,-0.017f,0.0387f,-0.0211f,-0.0779f,0.302f,0.0354f,0.135f,-0.0462f,-0.00904f,-0.114f,0.0255f,0.0647f,-0.0873f,-0.0249f,-0.0929f,-0.00222f,-0.295f,0.036f,-0.0673f,-0.0773f,-0.0217f,-0.0103f,0.0277f,0.0539f,-0.0112f,-0.0946f,-0.0457f,-0.0228f,0.108f,0.105f,-0.00694f,0.0379f,0.0856f,0.0779f,-0.221f,0.00697f,-0.0872f,-0.0404f,0.0493f,0.0262f,0.0304f,0.00378f,-0.098f,-0.159f,0.0101f,0.0501f,0.0521f,-0.0986f,-0.00908f,-0.0927f,0.0701f,-0.11f,0.0514f,-0.0837f,-0.0248f,-0.0629f,0.00176f,-0.0804f,-0.00875f,-0.0161f,0.0831f,0.00123f,0.0398f,-0.145f,-0.0224f,0.0715f,-0.132f,0.105f,0.0433f,0.0511f,-0.00681f,0.0179f,-0.173f,-0.0814f,-0.173f,-0.0297f,-0.045f,-0.0327f,0.0396f,-0.116f,0.0136f,0.0429f,0.12f,-0.112f,0.193f,-0.012f,-0.00163f,0.00992f,0.000242f,0.0589f,-0.0144f,-0.165f,0.153f,0.0705f,-0.133f,0.157f,0.18f,-0.0967f,0.00681f,-0.0213f,0.0165f,-0.0137f,-0.0451f,-0.145f,-0.121f,-0.0461f,-0.0646f,0.106f,-0.174f,-0.0558f,-0.0489f,-0.0122f,-0.0104f,-0.000947f,-0.129f,-0.138f,0.0471f,-0.011f,0.0107f,-0.137f,-0.0332f,-0.0479f,-0.0547f,0.0232f,0.0375f,-0.0303f,0.0284f,-0.00458f,-0.0377f,0.146f,0.169f,0.165f,-0.142f,0.063f,-0.0791f,-0.116f,0.00364f,0.118f,0.0308f,-0.25f,0.0144f,0.00209f,-0.0444f,-0.109f,-0.0959f,0.0762f,0.218f,0.0836f,0.0953f,0.181f,0.0436f,0.0281f,0.00573f,0.0149f,-0.033f,0.0248f,-0.0632f,-0.122f,-0.000638f,0.0307f,0.0492f,-0.105f,0.0126f,0.0514f,-0.0141f,0.00703f,0.0805f,0.0255f,-0.0438f,-0.0581f,-0.0763f,0.0778f,-0.0491f,-0.00332f,-0.0183f,0.097f,-0.04f,-0.00279f,-0.0179f,0.0568f,0.0501f,-0.085f,0.0435f,-0.00529f,0.0378f,-0.00398f,0.00862f,0.0135f,0.196f,-0.00129f,0.0764f,-0.159f,-0.00142f,-0.0165f,0.0788f,-0.038f,-0.00506f,0.109f,0.0271f,0.141f,-0.0603f,-0.0378f,-0.058f,-0.114f,0.145f,0.00244f,0.061f,0.078f,0.0613f,0.00848f,-0.00872f,-0.00447f,0.0814f,-0.0442f,-0.0871f,0.0285f,-0.00972f,-0.0146f,-0.0435f,-0.0378f,-0.182f,0.0242f,-0.0363f,-0.0832f,-0.0619f,0.013f,0.118f,0.0303f,0.0467f,0.00385f,0.112f,-0.00145f,-0.0764f,0.0168f,0.122f,0.0715f,0.0222f,-0.00573f,-0.114f,-0.00234f,-0.00495f,-0.0111f,0.114f,-0.00113f,-0.0233f,0.0474f,0.0138f,0.00873f,-0.084f,-0.0196f,0.00271f,-0.0383f,-0.0227f,-0.177f,0.0234f,-0.0403f,0.0144f,-0.0864f,0.144f,0.0127f,-0.0639f,-0.114f,-0.0171f,0.169f,0.0582f,-0.247f,0.125f,0.224f,-0.0884f,0.0221f,-0.00442f,0.202f,0.0296f,-0.0166f,-0.00358f,-0.102f,-0.105f,0.0472f,0.0185f,0.228f,0.064f,0.0596f,0.136f,-0.00859f,0.108f,-0.0544f,0.101f,-0.0224f,-0.0285f,-0.0626f,0.0404f,0.177f,-0.0186f,-0.0669f,0.0958f,-0.0915f,0.0299f,-0.127f,-0.162f,-0.0497f,-0.0623f,0.0249f,-0.0423f,0.152f,-0.00447f,0.0184f,-0.163f,0.0266f,0.168f,-0.0135f,-0.0343f,0.0696f,-0.00938f,0.187f,0.079f,-0.0846f,0.049f,0.0881f,0.0908f,-0.00274f,-0.00606f,0.00308f,0.177f,0.0581f,0.0685f,-0.107f,0.138f,0.0811f,0.00429f,0.0943f,0.0787f,-0.046f,0.106f,-0.00225f,-0.0516f,0.0512f,-0.0415f,0.0573f,-0.0558f,-0.00262f,0.00172f,-0.0734f,0.0443f,-0.0164f,-0.0801f,0.0712f,-0.0335f,0.0406f,0.067f,-0.126f,-0.0483f,0.0624f,0.0399f,0.133f,-0.0147f,-0.0727f,0.0169f,0.00426f,0.0327f,0.0908f,0.0765f,0.165f,-0.0507f,0.00754f,-0.139f,0.0496f,0.244f,-0.107f,-0.0121f,0.0843f,0.169f,-0.175f,0.0312f,-0.122f,0.0166f,0.116f,-0.174f,0.142f,-0.0184f,0.0124f,0.139f,0.011f,0.0294f,-0.123f,-0.154f,-0.0288f,0.098f,0.0326f,0.168f,-0.00442f,-0.00716f,0.0453f,0.0863f,-0.0159f,0.139f,0.0433f,0.00888f,0.00414f,-0.0135f,-0.0164f,0.0742f,-0.0964f,0.0669f,-0.0321f,-0.0335f,0.0154f,0.0325f,-0.0934f,0.038f,0.0283f,-0.0319f,0.039f,-0.143f,-0.0453f,0.0364f,-0.0733f,0.0153f,-0.0982f,0.00113f,-0.00341f,-0.0288f,0.0515f,-0.0329f,0.0116f,-0.00711f,-0.0306f,0.13f,0.0151f,-0.0995f,-0.013f,-0.0146f,-0.147f,0.181f,-0.0346f,-0.0573f,-0.0567f,-0.0258f,0.0272f,0.0247f,-0.0781f,0.0235f,-0.00579f,-0.0039f,-0.00925f,0.0152f,-0.0458f,-0.0125f,-0.036f,0.00328f,0.0349f,0.0505f,0.131f,-0.0598f,-0.0358f,-0.151f,-0.168f,0.00517f,-0.115f,0.0109f,0.0742f,0.0427f,0.0654f,0.0384f,0.00895f,-0.0786f,-0.0276f,0.028f,0.0253f,-0.039f,-0.101f,0.0562f,-0.082f,-0.00624f,-0.0849f,-0.111f,-0.0291f,-0.0302f,-0.0418f,-0.137f,0.0844f,0.073f,-0.0648f,-0.0294f,-0.0882f,-0.00571f,-0.067f,-0.107f,0.0278f,0.0126f,-0.0034f,-0.024f,0.0378f,-0.109f,-0.012f,0.0764f,-0.106f,0.126f,0.0157f,-0.002f,-0.0696f,-0.0228f,0.0485f,-0.0379f,-0.0288f,0.0288f,-0.225f,-0.00169f,-0.0193f,-0.0649f,-0.0336f,-0.0719f,0.0229f,0.0275f,-0.0232f,-0.134f,-0.0359f,-0.0149f,0.0883f,0.0265f,-0.2f,-0.0666f,-0.0859f,-0.127f,-0.0834f,-0.0842f,-0.0246f,-0.0529f,-0.11f,-0.0382f,-0.0122f,-0.189f,-0.0368f,-0.0356f,0.058f,-0.0409f,-0.33f,-0.0062f,0.0211f,0.0027f,0.0553f,0.0923f,0.093f,0.13f,0.139f,-0.0154f,-0.111f,0.0366f,-0.0842f,0.0191f,-0.0517f,-0.162f,0.0488f,0.0144f,0.061f,0.0684f,0.0336f,0.151f,-0.011f,-0.121f,-0.163f,0.103f,-0.0247f,-0.0147f,-0.0585f,0.037f,0.0465f,-0.0611f,-0.0261f,0.0277f,0.011f,0.0199f,-0.0591f,-0.111f,0.00614f,0.0385f,-0.0687f,-0.0184f,0.123f,0.16f,0.134f,-0.00818f,0.0839f,0.00409f,-0.0637f,-0.135f,-0.0627f,0.00333f,-0.0217f,-0.0511f,-0.0172f,0.0312f,0.026f,-0.293f,0.0662f,0.0731f,0.0434f,-0.114f,-0.0569f,0.0379f,0.0122f,0.0412f,-0.177f,-0.031f,-0.0434f,0.18f,-0.157f,-0.0274f,-0.143f,0.123f,-0.0954f,-0.097f,0.015f,-0.0934f,-0.127f,-0.0946f,-0.127f,-0.0176f,-0.074f,-0.0611f,-0.076f,-0.0331f,-0.0675f,0.303f,0.0503f,0.0485f,0.0917f,0.0502f,0.0663f,-0.157f,0.00718f,-0.136f,-0.201f,0.034f,0.0264f,-0.00962f,-0.0327f,0.112f,0.0289f,0.00966f,0.0722f,0.0341f,-0.00573f,-0.0146f,0.075f,0.0051f,0.123f,-0.0666f,0.148f,-0.0503f,-0.0419f,0.139f,0.109f,-0.129f,0.0479f,0.000849f,0.104f,-0.00449f,-0.168f,0.011f,0.0221f,0.105f,-0.161f,0.072f,-0.0596f,-0.0356f,-0.0806f,0.0542f,-0.0811f,0.078f,0.0278f,-0.0253f,0.0695f,-0.0377f,0.125f,-0.00726f,0.0645f,-0.00312f,-0.0454f,0.125f,4.74e-05f,0.191f,-0.122f,-0.0494f,-0.142f,0.149f,0.00476f,-0.0767f,-0.0859f,0.164f,-0.0135f,-0.0834f,-0.0322f,0.00499f,0.0107f,0.00262f,-0.0174f,-0.0112f,-0.0897f,-0.0365f,0.0262f,0.0491f,-0.118f,-0.073f,0.0452f,0.0512f,0.0355f,-0.0871f,-0.00145f,-0.0379f,0.00945f,0.0437f,0.0052f,0.0436f,0.0555f,0.0237f,-0.0269f,-0.0226f,-0.081f,0.0206f,0.132f,0.177f,0.101f,-0.0441f,0.0196f,0.0272f,0.12f,0.055f,0.154f,-0.0514f,0.0493f,0.173f,0.0707f,0.114f,-0.118f,0.107f,-0.0543f,0.221f,0.0618f,0.135f,0.101f,-0.103f,-0.0253f,0.0305f,-0.117f,0.0425f,0.0532f,0.111f,-0.0303f,0.163f,-0.0146f,0.182f,0.122f,-0.00133f,-0.123f,0.0395f,0.00464f,-0.179f,-0.104f,-0.101f,-0.152f,-0.039f,-0.0526f,0.0439f,-0.0522f,-0.0996f,0.00814f,0.173f,0.0238f,-0.0464f,0.0192f,0.0739f,0.101f,0.126f,0.168f,0.0379f,-0.0113f,0.021f,0.00283f,-0.0893f,0.117f,-0.0797f,-0.00599f,-0.0241f,0.134f,-0.0305f,0.0704f,-0.207f,0.067f,-0.106f,0.00408f,0.109f,0.0122f,-0.0327f,0.0412f,-0.0721f,-0.043f,0.0522f,-0.103f,-0.0615f,-0.0291f,0.0012f,0.234f,0.0274f,0.118f,-0.00637f,0.0329f,0.0376f,0.0391f,-0.034f,-0.00375f,-0.0111f,0.0853f,-0.0475f,0.00889f,-0.0476f,0.0636f,-0.0407f,-0.0247f,-0.0191f,0.035f,0.0124f,-0.074f,-0.0181f,0.0184f,-0.176f,-0.099f,-0.119f,-0.045f,-0.0859f,-0.00267f,-0.0615f,-0.123f,-0.00765f,-0.1f,-0.0347f,0.0538f,-0.0477f,-0.0564f,0.0792f,0.103f,-0.062f,-0.104f,-0.0201f,0.134f,-0.205f,-0.026f,-0.0107f,-0.0995f,-0.094f,0.0278f,0.0858f,-0.0393f,0.0349f,-0.0844f,-0.0434f,-0.175f,0.0424f,-0.039f,-0.0269f,0.0122f,-0.00394f,-0.15f,0.104f,0.0994f,-0.227f,-0.022f,-0.0206f,0.101f,-0.00918f,-0.0512f,-0.0552f,-0.0118f,-0.0816f,-0.0267f,-0.0958f,-0.0289f,-0.115f,-0.0214f,-0.0349f,-0.0475f,0.0244f,0.0563f,0.0281f,-0.0758f,-0.00453f,0.0197f,0.0133f,-0.0666f,-0.0435f,-0.119f,0.0131f,0.0067f,-0.00309f,-0.0818f,-0.0651f,-0.0124f,0.0221f,-0.113f,0.155f,-0.0524f,0.119f,0.0433f,-0.0482f,0.334f,-0.038f,0.0164f,-0.0446f,-0.00893f,-0.0286f,0.0261f,-0.0132f,0.0238f,0.0393f,-0.0407f,-0.00984f,0.0698f,-0.0675f,-0.0546f,0.00702f,-0.0961f,0.0499f,0.0407f,0.0414f,0.000135f,0.11f,-0.0501f,0.0401f,0.106f,0.0756f,0.0673f,-0.0231f,0.0208f,-0.0989f,-0.048f,-0.0769f,0.0144f,-0.0521f,-0.00237f,0.0338f,-0.059f,0.0557f,-0.0332f,0.0444f,-0.0897f,-0.00534f,-0.0578f,0.111f,-0.0177f,0.0261f,0.0552f,0.0385f,0.0149f,-0.0133f,0.0364f,0.0192f,-0.0489f,0.0513f,-0.0473f,0.0615f,0.0154f,0.0189f,0.0817f,0.0629f,0.0865f,-0.0632f,0.217f,-0.0298f,-0.248f,0.126f,0.0438f,0.0874f,-0.0793f,0.0654f,0.0246f,0.00253f,-0.0807f,-0.0887f,-0.0324f,0.0687f,-0.0124f,0.0994f,0.0221f,0.0199f,0.0618f,-0.0359f,0.00771f,0.135f,-0.0313f,-0.105f,-0.133f,0.234f,-0.0376f,-0.055f,-0.0268f,0.0301f,0.0358f,0.0356f,0.0966f,0.0227f,0.0656f,0.0438f,0.0231f,0.000636f,0.045f,-0.0191f,0.0559f,0.0271f,-0.0703f,0.128f,0.0501f,-0.0774f,0.017f,0.0139f,-0.0567f,0.0221f,0.0238f,0.0229f,-0.035f,0.0579f,0.0311f,0.128f,0.0166f,0.034f,-0.125f,-0.0124f,-0.109f,0.0717f,0.0207f,0.0363f,0.0789f,0.00476f,-0.0339f,-0.0833f,-0.0555f,0.0706f,-0.00914f,-0.112f,-0.0143f,-0.0178f,-0.0843f,-0.0751f,0.0849f,0.0106f,0.0671f,0.0899f,-0.112f,0.0274f,-0.0693f,0.000985f,-0.102f,-0.00548f,-0.00685f,-0.0736f,-0.0913f,-0.123f,-0.0258f,-0.0537f,0.056f,-0.0111f,-0.0502f,-0.00999f,0.123f,0.195f,-0.126f,0.231f,0.164f,-0.0078f,0.0893f,0.0498f,-0.00682f,-0.0691f,-0.0374f,-0.0855f,0.0137f,-0.124f,0.0547f,-0.0115f,-0.0343f,-0.0399f,-0.127f,0.0389f,-0.0179f,-0.0124f,0.00829f,-0.0815f,0.0109f,0.101f,-0.0276f,0.031f,0.156f,-0.123f,0.0147f,-0.144f,-0.0354f,-0.0787f,-0.0443f,-0.0318f,-0.147f,0.162f,0.0926f,-0.0232f,-0.0172f,0.038f,-0.0786f,-0.0729f,-0.0545f,0.0464f,-0.0995f,-0.409f,-0.043f,-0.0107f,-0.00478f,0.0187f,-0.035f,0.00707f,-0.0942f,0.0605f,0.0507f,0.0497f,-0.0713f,-0.0709f,-0.224f,0.00796f,-0.0211f,-0.0126f,-0.136f,0.0121f,0.0432f,0.000505f,-0.0183f,-0.0329f,-0.00655f,0.0537f,0.00952f,-0.0246f,0.0279f,0.184f,-0.0403f,-0.0673f,-0.0289f,-0.0197f,0.00593f,0.0414f,-0.0256f,-0.0397f,-0.208f,0.0151f,0.0466f,0.106f,-0.063f,-0.117f,-0.0906f,0.0229f,0.0916f,-0.0169f,-0.0218f,0.0172f,0.0158f,0.166f,0.0199f,-0.0451f,0.0221f,-0.119f,-0.106f,0.0201f,-0.0264f,0.0356f,0.118f,-0.0432f,-0.0395f,-0.0891f,0.0257f,-0.132f,0.024f,-0.0285f,-0.095f,-0.0638f,-0.0395f,0.0107f,0.00795f,-0.14f,0.0178f,-0.0312f,0.16f,-0.0689f,0.0725f,0.0101f,0.0725f,0.0202f,-0.0155f,0.088f,0.0389f,0.0336f,-0.00252f,-0.00258f,-0.0933f,-0.064f,0.0794f,0.053f,-0.0137f,-0.0679f,0.0138f,0.0972f,0.0211f,-0.0373f,-0.0557f,0.00741f,0.0705f,-0.068f,0.184f,-0.102f,0.112f,-0.0929f,0.0314f,0.117f,0.0948f,-0.0349f,-0.0408f,0.0772f,-0.178f,-0.118f,-0.137f,-0.0142f,0.0223f,0.07f,-0.0409f,0.163f,0.0708f,0.0177f,-0.0559f,-0.0478f,0.122f,0.0275f,0.0468f,-0.189f,-0.152f,0.0746f,-0.0628f,-0.138f,0.096f,-0.0387f,0.00315f,0.047f,-0.0212f,0.0242f,0.072f,0.126f,-0.0821f,-0.042f,-0.0153f,0.0745f,0.0941f,0.0415f,-0.0354f,0.0636f,-0.0358f,-0.0205f,0.147f,-0.0817f,-0.082f,0.0232f,0.0336f,0.164f,0.00495f,0.076f,-0.0738f,-0.0967f,-0.0868f,-0.00722f,-0.0976f,0.0367f,0.124f,-0.09f,-0.0594f,-0.0521f,0.0562f,0.111f,-0.117f,0.0648f,-0.126f,-0.0906f,-0.00651f,0.0506f,0.0246f,-0.0703f,-0.00429f,-0.0357f,-0.0507f,0.228f,0.0372f,-0.129f,0.0854f,0.0754f,-0.0399f,0.0447f,-0.0453f,0.0694f,0.0525f,-0.0411f,0.0161f,0.0489f,0.0733f,-0.0556f,-0.179f,-0.0244f,0.00919f,0.188f,-0.00656f,-0.0396f,0.135f,0.0827f,-0.159f,-0.0232f,-0.0124f,0.0441f,0.0244f,0.017f,-0.0583f,-0.0173f,-0.0428f,-0.0148f,-0.0134f,0.0326f,0.0747f,-0.121f,0.0161f,0.0832f,-0.119f,0.0133f,0.0351f,-0.071f,0.0105f,-0.0384f,-0.0335f,-0.0341f,0.0706f,0.0224f,0.177f,0.0147f,0.0496f,-0.0913f,-0.043f,0.0839f,0.124f,-0.0142f,-0.0882f,-0.011f,0.0231f,0.00932f,-0.018f,-0.0104f,-0.0195f,0.174f,-0.00991f,-0.00537f,-0.0915f,-0.0178f,-0.0222f,-0.00686f,0.0664f,0.0965f,0.0202f,-0.0809f,-0.00286f,0.0149f,-0.0463f,-0.104f,0.15f,-0.0245f,0.024f,-0.0215f,0.0943f,-0.198f,0.0985f,-0.0299f,0.101f,-0.109f,0.0386f,0.0293f,0.0513f,0.0688f,0.122f,0.105f,0.00508f,0.0609f,0.113f,0.0744f,0.0773f,-0.0663f,0.0634f,-0.193f,0.0321f,-0.0333f,-0.0465f,0.0171f,-0.0479f,0.0768f,0.0442f,0.0701f,0.0522f,-0.00617f,0.208f,0.0329f,0.0348f,-0.0296f,0.112f,0.0564f,-0.046f,-0.0324f,-0.0186f,0.0751f,0.0312f,-0.0123f,-0.133f,0.101f,0.000353f,-0.0714f,-0.064f,-0.101f,-0.0832f,-0.0475f,-0.0437f,0.032f,0.0251f,-0.0584f,-0.0905f,-0.166f,0.114f,-0.069f,0.00206f,-0.0518f,0.0304f,0.141f,-0.0114f,-0.105f,0.034f,0.154f,0.142f,-0.122f,-0.00234f,0.0931f,-0.0269f,0.0184f,-0.128f,0.033f,-0.0924f,0.00636f,-0.0285f,-0.0223f,-0.0133f,-0.181f,-0.0178f,0.135f,0.0702f,-0.0293f,0.145f,0.00555f,-0.0507f,-0.0639f,0.108f,-0.0403f,0.0367f,-0.0419f,-0.0584f,-0.102f,-0.0927f,-0.119f,-0.019f,-0.146f,-0.0615f,-0.0113f,-0.00714f,0.0204f,0.0786f,-0.0579f,-0.238f,-0.0672f,-0.073f,0.0525f,0.0941f,-0.0386f,-0.0316f,0.0921f,-0.0323f,0.0277f,0.0705f,-0.0295f,-0.0634f,0.00256f,0.00268f,0.0803f,-0.0166f,0.00905f,-0.0697f,-0.0452f,-0.148f,0.0235f,-0.0434f,-0.0861f,-0.0193f,-0.103f,0.0147f,-0.31f,-0.0254f,0.0289f,0.0972f,-0.0443f,0.111f,-0.0118f,0.0464f,-0.0115f,0.0151f,0.00632f,-0.0792f,0.000887f,0.0389f,-0.134f,-0.0216f,0.026f,-0.135f,-0.179f,-0.0162f,-0.0626f,-0.0599f,-0.00431f,0.0253f,-0.0189f,0.0413f,0.109f,0.0463f,0.0491f,0.0357f,0.0185f,-0.0763f,-0.11f,0.0877f,0.0171f,-0.0531f,-0.0981f,-0.0361f,-0.0745f,0.00427f,0.0897f,-0.121f,0.013f,-0.044f,0.0237f,-0.0524f,-0.0302f,-0.038f,-0.0151f,0.06f,0.128f,0.102f,0.0363f,-0.11f,0.00762f,-0.0112f,-0.0998f,-0.061f,-0.00163f,-0.00403f,-0.0487f,-0.0581f,-0.107f,-0.000988f,-0.0619f,0.0727f,0.068f,-0.0963f,-0.0503f,-0.106f,-0.0164f,0.0363f,0.0119f,-0.0277f,0.132f,-0.0377f,0.0749f,-0.0197f,-0.205f,-3.87e-05f,0.0725f,-0.1f,-0.101f,0.00859f,-0.0872f,-0.0866f,0.0129f,0.062f,-0.0126f,0.00185f,-0.178f,-0.0645f,-0.0582f,0.000499f,0.00164f,-0.0266f,-0.0101f,-0.186f,0.0125f,0.0542f,-0.0376f,-0.111f,-0.0559f,-0.0311f,0.122f,-0.0151f,0.0501f,0.0953f,0.0669f,-0.0896f,0.348f,0.175f,-0.178f,-0.0492f,-0.0474f,-0.0356f,-0.0521f,0.136f,-0.0428f,0.0279f,-0.00492f,0.0191f,0.168f,0.0111f,0.242f,0.0235f,-0.0833f,0.0645f,-0.0525f,-0.0941f,-0.14f,0.207f,0.00449f,0.00986f,-0.106f,-0.0547f,-0.00325f,0.118f,0.00929f,0.0512f,0.00175f,-0.0792f,0.027f,0.0656f,-0.0714f,0.235f,-0.0639f,0.047f,0.116f,0.0508f,0.38f,0.123f,0.0466f,0.11f,0.0287f,0.564f,-0.0346f,0.0613f,0.0571f,0.122f,-0.0499f,-0.0715f,0.302f,-0.0297f,-0.0926f,0.017f,0.00962f,-0.0336f,0.0529f,0.00613f,-0.0625f,-0.00163f,0.0389f,-0.0243f,0.092f,0.0105f,0.00411f,-0.00162f,-0.0552f,0.00895f,0.0352f,-0.0375f,0.0528f,-0.0932f,-0.0777f,-0.0226f,0.00561f,-0.0024f,0.0212f,-0.0227f,-0.0947f,0.00305f,-0.0413f,-0.0833f,0.133f,-0.131f,0.00335f,-0.0256f,-0.0168f,-0.0666f,-0.00857f,0.0894f,-0.16f,-0.244f,0.0275f,-0.0229f,-0.0969f,0.0887f,0.148f,0.0799f,0.0467f,0.0608f,0.0101f,-0.0245f,-0.0235f,0.0209f,0.00409f,0.0531f,-0.119f,0.0542f,0.00737f,-0.108f,0.11f,-0.0339f,0.0521f,0.0191f,-0.00504f,-0.0391f,0.115f,-0.182f,0.133f,0.0706f,0.00092f,0.0347f,0.00935f,0.000673f,0.0505f,-0.0121f,-0.0232f,0.153f,-0.0185f,-0.00813f,-0.0973f,-0.0354f,-0.0405f,0.0883f,0.0141f,0.026f,0.148f,-0.0391f,0.0873f,-0.0227f,-0.0334f,0.0389f,0.041f,-0.157f,-0.0438f,-0.022f,-0.122f,-0.0452f,-0.0546f,-0.148f,0.0318f,0.0277f,0.00237f,0.0396f,-0.102f,-0.0854f,-0.0402f,0.156f,0.0338f,-0.0251f,-0.13f,0.00104f,-0.041f,-0.0375f,0.128f,0.122f,0.0639f,0.0999f,-0.0219f,0.0106f,0.125f,-0.121f,-0.0309f,0.0303f,-0.0801f,0.0798f,-0.0895f,-0.0398f,0.0388f,0.0608f,0.0136f,0.0349f,0.0156f,0.132f,0.00921f,-0.048f,-0.00728f,-0.0638f,0.1f,-0.0499f,0.0136f,-0.0292f,-0.0215f,-0.0346f,0.0259f,0.0319f,0.0354f,-0.0688f,-0.0127f,-0.0222f,-0.017f,0.0743f,-0.0441f,0.0157f,-0.035f,-0.129f,0.0767f,0.07f,0.0437f,0.00219f,0.165f,-0.0225f,0.0236f,-0.00914f,0.0208f,-0.0148f,-0.0386f,0.057f,-0.0704f,0.0559f,-0.0589f,-0.0363f,0.0521f,0.000959f,-0.00892f,0.00362f,0.217f,-0.149f,-0.154f,0.0511f,0.0312f,-0.00872f,-0.00215f,0.00629f,0.148f,-0.133f,-0.0302f,-0.00521f,0.0342f,0.023f,0.0121f,0.0386f,-0.0479f,0.000848f,-0.0379f,0.156f,-0.015f,-0.245f,0.113f,0.0543f,0.0482f,0.0316f,0.0448f,-0.0636f,0.0618f,-0.00623f,0.0682f,-0.282f,0.0249f,0.031f,0.0163f,0.0424f,0.0365f,-0.0506f,0.075f,-0.00319f,0.00451f,-0.00379f,-0.196f,-9.62e-06f,-0.0567f,0.0284f,0.0328f,0.0339f,0.0353f,-0.0512f,-0.0468f,0.0498f,-0.0206f,0.00394f,0.0695f,0.000266f,0.0539f,0.00677f,-0.0176f,-0.0711f,0.0946f,-0.0734f,0.117f,-0.157f,-0.00959f,-0.248f,-0.057f,0.0545f,-0.0252f,-0.0214f,-0.008f,0.0154f,0.0727f,0.0206f,0.0946f,-0.00874f,0.0899f,0.0136f,0.00361f,0.0811f,-0.0687f,0.00398f,0.0353f,0.00465f,-0.158f,4.66e-05f,-0.105f,-0.00802f,0.145f,0.0863f,0.135f,-0.125f,-0.012f,0.0169f,0.0319f,-0.0468f,0.256f,0.0445f,0.121f,0.164f,0.0643f,0.0696f,0.0744f,-0.00337f,0.0197f,0.0469f,0.0634f,0.141f,-0.233f,-0.186f,0.122f,-0.0264f,-0.0105f,0.0411f,0.0397f,0.121f,0.0304f,-0.0145f,-0.0091f,0.0155f,-0.0104f,0.119f,-0.0122f,0.0889f,-0.143f,0.0628f,-0.0252f,-0.0984f,-0.256f,0.0493f,0.0584f,-0.0144f,0.0247f,-0.0217f,0.0382f,0.162f,0.125f,0.073f,0.00809f,0.0838f,-0.0518f,0.0194f,-0.0121f,0.0696f,-0.075f,0.037f,0.0129f,0.0753f,-0.0836f,-0.115f,0.241f,0.0127f,0.126f,0.0208f,-0.156f,-0.0208f,0.03f,0.0388f,0.016f,0.0651f,-0.291f,0.0477f,0.0138f,0.0803f,-0.000195f,0.0508f,0.06f,0.115f,-0.0217f,0.0668f,0.105f,-0.102f,-0.0884f,-0.0359f,-0.049f,-0.0909f,0.166f,0.124f,0.00225f,0.0106f,-0.0282f,-0.00217f,0.101f,0.0095f,-0.0583f,-0.132f,0.0336f,-0.0218f,0.114f,-0.0166f,-0.0428f,-0.0302f,0.0697f,0.0435f,-0.0887f,0.0283f,-0.0489f,-0.00933f,0.0228f,0.187f,-0.024f,0.054f,0.0943f,0.0794f,0.139f,0.0352f,-0.00564f,0.15f,-0.0123f,0.00525f,0.0491f,-0.122f,0.0314f,-0.0191f,0.0487f,-0.0606f,-0.00603f,-0.0467f,-0.02f,0.0305f,-0.0184f,0.00844f,0.00514f,0.0213f,-0.12f,0.0237f,-0.0358f,-0.0991f,-0.0251f,0.00173f,-0.0408f,0.00762f,0.000305f,-0.0763f,0.0402f,-0.0226f,0.0547f,0.031f,-0.0452f,0.0722f,0.0041f,0.0167f,-0.0377f,-0.0257f,-0.00785f,-0.0546f,-0.012f,-0.014f,0.0229f,-0.221f,-0.046f,-0.0257f,-0.0173f,0.0116f,-0.0431f,0.0164f,-0.0976f,0.0734f,-0.0682f,-0.0663f,-0.0244f,-0.0622f,-0.00979f,0.0171f,-0.0562f,0.031f,0.0527f,0.0505f,0.0361f,0.0663f,-0.0156f,-0.0835f,0.0295f,0.138f,-0.188f,-0.0113f,-0.0937f,0.0316f,0.166f,0.0297f,0.00469f,0.0708f,0.165f,-0.0212f,0.144f,0.0404f,-0.00681f,0.0502f,-0.0405f,-0.194f,0.0253f,-0.00752f,0.0229f,-0.106f,0.005f,0.0499f,-0.0431f,0.00578f,0.159f,-0.025f,-0.0618f,-0.0467f,0.12f,0.0318f,0.0265f,0.165f,-0.0586f,0.142f,-0.00376f,-0.0834f,-0.0705f,0.0393f,-0.222f,0.00498f,0.0226f,-0.0162f,0.0245f,0.0276f,-0.0394f,0.0426f,0.17f,-0.0316f,-0.0279f,0.0949f,-0.0113f,0.0102f,0.0403f,0.0409f,-0.0172f,0.06f,0.0252f,0.0824f,0.0286f,0.0265f,0.0645f,-0.00691f,-0.0466f,-0.138f,0.153f,-0.00407f,-0.087f,0.089f,0.0654f,-0.0591f,0.00239f,-0.0664f,0.00792f,-0.0991f,-0.0242f,-0.00721f,0.00699f,0.00591f,0.0766f,0.0102f,0.00181f,-6.33e-05f,0.0301f,0.0522f,-0.00732f,4.61e-07f,-0.00252f,-0.0161f,-0.0363f,0.0118f,-0.0354f,0.0559f,-0.0104f,-0.33f,0.0478f,-0.0178f,0.0632f,-0.0147f,-0.0346f,-0.0669f,-0.0143f,0.0111f,0.0111f,0.0811f,0.0281f,-0.172f,0.0147f,0.00968f,0.0197f,-0.024f,-0.0367f,-0.0748f,0.0517f,0.011f,0.0269f,0.0874f,-0.00284f,-0.00743f,-0.0328f,0.083f,0.0823f,0.0593f,0.0464f,0.0254f,0.0321f,0.00207f,0.00476f,0.0182f,0.148f,-0.0152f,-0.0528f,-0.00748f,-0.0672f,0.0127f,0.0642f,0.0494f,-0.0963f,-0.00281f,0.0838f,-0.0749f,-0.00796f,0.154f,-0.0299f,0.00304f,-0.00285f,0.0235f,-0.0403f,0.0258f,0.107f,0.064f,-0.0236f,0.0816f,0.0619f,0.0661f,-0.0751f,-0.0234f,0.0315f,0.0411f,-0.0249f,0.227f,0.0771f,-0.0545f,0.000762f,0.0167f,0.00562f,0.0634f,-0.0796f,-0.096f,-0.00669f,-0.0885f,-0.0143f,-0.0357f,0.062f,0.0219f,-0.0933f,-0.0097f,-0.0184f,0.0797f,-0.0127f,-0.0107f,-0.000742f,0.00926f,0.141f,0.0205f,-0.137f,0.0713f,0.0253f,-0.0368f,-0.0464f,0.0741f,0.00839f,-0.0344f,0.0454f,-0.0219f,-0.221f,-0.0874f,0.0559f,0.122f,0.128f,-0.0519f,0.126f,0.104f,-0.0852f,0.0667f,-0.0192f,-0.0452f,-0.00352f,0.124f,0.000384f,0.0102f,-0.0746f,-0.0495f,0.00887f,-0.0674f,0.0288f,0.0933f,0.00705f,-0.222f,-0.125f,-0.0466f,-0.00792f,0.00858f,-0.0608f,-0.146f,-0.0224f,-0.186f,-0.0169f,0.0529f,0.0755f,0.0323f,0.0683f,-0.0779f,0.0575f,-0.0817f,-0.00421f,-0.0317f,-0.162f,-0.159f,0.163f,0.0564f,-0.00908f,-0.0357f,0.0252f,0.0145f,0.002f,-0.0553f,-0.112f,-0.117f,-0.015f,-0.0379f,0.188f,-0.0469f,0.00992f,-0.057f,0.0504f,-0.138f,-0.0723f,0.057f,-0.0734f,-0.033f,-0.0607f,0.249f,-0.0481f,0.0252f,0.0478f,0.0189f,0.00868f,-0.0652f,-0.000408f,-0.0089f,-0.0476f,-0.0535f,0.0236f,-0.0581f,-0.0315f,-0.0494f,0.0109f,0.0381f,0.0369f,-0.0041f,0.00456f,0.0235f,0.000234f,0.0904f,-0.00172f,-0.00578f,-0.152f,-0.055f,0.0349f,0.0394f,-0.04f,0.478f,-0.0331f,-0.0148f,-0.0338f,-0.0603f,-0.0835f,-0.00856f,0.00509f,-0.00598f,0.0289f,0.0296f,0.0446f,-0.0124f,-0.0412f,-0.00852f,-0.025f,-0.0183f,-0.0234f,-0.0296f,-0.0067f,-0.059f,-0.0137f,0.00202f,-0.0145f,-0.0079f,-0.0445f,-0.0096f,-0.0302f,0.0322f,-0.0679f,0.0247f,-0.0163f,0.0139f,0.041f,-0.0768f,-0.0369f,-0.0568f,0.0895f,-0.0385f,0.127f,0.0123f,-0.0552f,-0.0683f,0.0485f,0.0333f,-0.217f,0.0808f,0.0375f,-0.0887f,-0.0524f,0.0194f,0.0198f,0.0189f,-0.19f,0.0297f,-0.0275f,0.0428f,-0.0285f,-0.00623f,0.0528f,-0.0694f,-0.00453f,-0.0373f,-0.045f,0.0272f,0.0116f,-0.00191f,0.0585f,-0.0466f,-0.0144f,-0.161f,0.0364f,-0.0682f,0.0668f,-0.193f,0.00486f,-0.245f,0.0198f,-0.0078f,-0.0504f,0.0511f,-0.0232f,0.0157f,0.014f,0.0749f,-0.053f,-0.0732f,0.00736f,-0.0372f,0.00638f,-0.0931f,0.0212f,-0.043f,0.0513f,0.0746f,-0.086f,0.0609f,0.0762f,-0.048f,-0.201f,0.0219f,-0.0209f,-0.0781f,0.107f,0.00707f,0.0109f,0.0293f,0.0933f,-0.0336f,-0.0961f,0.036f,0.0393f,0.167f,-0.0142f,0.319f,-0.0475f,-0.0183f,-0.0328f,-0.0145f,-0.154f,0.0945f,-0.0228f,0.0183f,-0.00809f,-0.133f,0.0628f,0.058f,0.066f,-0.0666f,-0.0282f,-0.00341f,0.0887f,0.0842f,-0.0701f,0.0239f,0.126f,-0.0685f,-0.0177f,0.115f,0.0107f,-0.0104f,0.0984f,-0.0448f,0.056f,-0.0547f,-0.0153f,-0.025f,-0.0542f,0.0418f,-0.0384f,-0.00873f,0.0184f,0.0295f,-0.0117f,-0.00211f,0.0292f,0.00281f,0.166f,-0.0594f,0.143f,-0.0887f,0.0736f,0.0939f,-0.061f,-0.038f,-0.00861f,0.0263f,-0.0644f,-0.00612f,0.0814f,0.134f,-0.0247f,-0.0587f,-0.0399f,0.0431f,-0.0899f,0.0152f,-0.0322f,0.106f,-0.00342f,-0.0407f,-0.172f,-0.0608f,-0.048f,0.0108f,-0.222f,0.00964f,0.0509f,-0.00993f,-0.0555f,0.0479f,0.0311f,0.0496f,0.00863f,-0.13f,0.0956f,-0.106f,-0.0589f,-0.0308f,-0.0157f,0.0333f,-0.0585f,0.102f,0.00489f,0.0162f,0.0684f,-0.0285f,0.0256f,-0.0247f,-0.0487f,-0.078f,0.082f,-0.0294f,-0.0028f,-0.0249f,-0.0583f,0.0416f,0.346f,0.0592f,-0.00032f,-0.098f,0.0328f,-0.00814f,-0.0808f,-0.078f,-0.0483f,0.0473f,0.056f,-0.115f,-0.00701f,0.0493f,-0.0722f,-0.0345f,0.0659f,-0.0318f,-0.046f,0.0752f,0.0637f,-0.00322f,0.114f,0.00394f,-0.00226f,-0.0952f,-0.0149f,-0.0637f,-0.0443f,-0.215f,0.146f,-0.0493f,-0.121f,0.0344f,0.0634f,-0.0356f,-0.0196f,0.0167f,0.00873f,0.0192f,0.0334f,-0.0614f,-0.0551f,-0.0382f,-0.00503f,0.0455f,-0.00437f,-0.0387f,-0.0394f,-0.0154f,-0.092f,-0.0587f,-0.0843f,0.00541f,-0.0296f,0.0615f,-0.0256f,-0.264f,-0.084f,-0.107f,6.91e-05f,-0.0237f,0.0362f,-0.057f,-0.0885f,-0.0415f,0.0469f,0.07f,0.0999f,0.00182f,-0.0294f,0.0452f,-0.00969f,0.0981f,0.0334f,0.003f,0.00113f,0.0457f,0.0161f,-0.128f,0.0543f,0.144f,0.123f,0.0564f,-0.138f,-0.127f,0.00349f,0.0102f,-0.0834f,-0.168f,0.00721f,-0.0233f,-0.00882f,-0.0675f,0.0863f,-0.0222f,-0.0536f,-0.0953f,0.0365f,0.0241f,0.0814f,-0.109f,0.0271f,-0.0891f,0.014f,-0.0192f,0.0587f,0.0479f,0.0436f,-0.0837f,0.033f,0.00967f,0.0655f,0.0904f,0.0896f,0.0521f,-0.00532f,-0.0508f,-0.0622f,0.0718f,-0.0274f,0.00241f,-0.188f,-0.0778f,-0.0357f,0.0289f,-0.089f,-0.00379f,0.139f,-0.105f,0.0176f,0.0212f,0.108f,-0.219f,-0.0307f,-0.00145f,-0.112f,-0.0511f,-0.0261f,0.0329f,0.0615f,0.0799f,0.0457f,0.0347f,-0.0162f,-0.0238f,-0.154f,-0.179f,0.101f,0.08f,0.0374f,-0.0351f,0.0838f,0.0581f,-0.00762f,0.0416f,0.112f,-0.0429f,0.1f,0.103f,0.0881f,-0.00781f,-0.116f,0.167f,-0.0198f,0.0246f,-0.0313f,-0.056f,-0.0349f,0.0508f,-0.0171f,-0.036f,-0.00664f,-0.0456f,0.0559f,0.0329f,0.0087f,0.0766f,-0.0166f,0.0311f,0.0553f,-0.0169f,-0.0255f,-0.0272f,-0.0157f,0.0818f,0.0969f,-0.0086f,-0.0192f,0.00698f,0.0356f,0.0586f,0.000934f,0.114f,0.0221f,0.152f,0.00982f,0.0141f,-0.000195f,0.0797f,-0.0831f,0.0437f,-0.0407f,-0.0246f,-0.103f,-0.0254f,-0.00375f,0.0217f,0.0354f,0.183f,0.106f,-0.133f,0.0665f,-0.0362f,-0.00757f,0.0478f,-0.0471f,0.0194f,-0.00618f,0.011f,0.0213f,0.07f,0.0903f,0.169f,0.0137f,0.207f,-0.0424f,0.0685f,-0.0488f,-0.0257f,0.00604f,0.0277f,0.0331f,-0.00461f,-0.0818f,-0.124f,-0.035f,0.0127f,-0.0653f,0.0282f,-0.109f,-0.00716f,0.0251f,-0.0163f,-0.00605f,0.0144f,0.0348f,0.0258f,0.0188f,-0.0272f,-0.0136f,0.0719f,-0.0402f,0.0537f,-0.099f,-0.00981f,0.101f,-0.0431f,-0.00321f,-0.0826f,-0.0699f,0.0366f,0.154f,-0.0583f,0.117f,0.11f,-0.0152f,0.144f,-0.0466f,0.00914f,0.106f,-0.0309f,0.0298f,-0.112f,-0.0297f,-0.0228f,-0.106f,0.107f,0.0118f,-0.066f,0.0125f,-0.0428f,0.0341f,-0.0496f,-0.0241f,0.0418f,-0.0532f,0.112f,-0.0676f,0.0382f,0.115f,-0.0152f,-0.0366f,-0.0136f,-0.0255f,-0.0406f,-0.0353f,0.0811f,-0.0166f,-0.0524f,-0.0366f,0.0503f,0.0157f,-0.078f,0.0898f,0.0446f,-0.0963f,-0.139f,0.178f,-0.015f,-0.0414f,-0.0298f,-0.0242f,0.0918f,-0.0429f,0.248f,-0.0633f,-0.0134f,0.0463f,0.0224f,-0.0372f,-0.0296f,-0.00307f,-0.0217f,-0.0161f,0.0192f,-0.0412f,0.0521f,-0.0979f,-0.00631f,-0.0303f,0.0104f,0.0399f,-0.023f,0.0239f,-0.0189f,-0.0382f,0.0503f,0.127f,0.0945f,-0.148f,-0.0783f,0.0471f,-0.0722f,-0.108f,-0.0548f,0.0095f,-0.00881f,-0.0822f,0.076f,-0.0148f,0.051f,-0.0646f,-0.0585f,-0.042f,-0.0706f,-0.0189f,-0.0927f,-0.0185f,0.00201f,0.0163f,0.000211f,0.0196f,0.0474f,0.047f,-0.0106f,0.0322f,5.05e-06f,-0.0377f,-0.0597f,-0.0603f,-0.0282f,-0.0479f,-0.0877f,0.00318f,0.0168f,0.00118f,-0.0508f,-0.138f,-0.07f,-0.122f,-0.0592f,-0.00751f,-0.108f,-0.116f,-0.109f,0.0157f,-0.0203f,-0.0186f,-0.0337f,0.0287f,0.0407f,-0.0862f,-0.0746f,0.0134f,-0.0609f,0.00399f,0.0424f,-0.309f,-0.0783f,0.00504f,0.035f,-0.128f,0.00564f,-0.00117f,-0.119f,0.00146f,0.0386f,0.0505f,0.00811f,-0.047f,0.0455f,-0.13f,-0.0827f,0.0728f,-0.0445f,-0.0283f,-0.0332f,0.0651f,-0.122f,0.112f,0.0557f,-0.000274f,-0.0268f,0.0163f,-0.159f,-0.0527f,-0.00447f,-0.006f,-0.0391f,-0.0718f,-0.00288f,0.0649f,-0.0105f,0.0345f,-0.00314f,-0.049f,0.0918f,-0.0716f,0.0218f,-0.0161f,0.0709f,0.0647f,-0.0527f,0.0348f,-0.00257f,0.0015f,-0.0129f,0.065f,-0.0512f,-0.0276f,0.00623f,-0.0234f,0.0229f,0.055f,-0.00385f,0.0615f,0.0586f,-0.00249f,0.0663f,0.202f,-0.0027f,0.0356f,0.0372f,0.049f,0.0848f,-0.111f,0.0326f,0.315f,-0.0483f,-0.0326f,0.0354f,-0.0458f,0.0908f,-0.0384f,-0.00221f,0.122f,-0.044f,-0.0957f,-0.0608f,0.0553f,0.0474f,-0.0245f,0.0203f,-0.048f,-0.104f,0.0193f,0.0285f,-0.0471f,0.00966f,0.103f,0.031f,0.032f,0.0124f,-0.0718f,-0.0822f,0.0123f,-0.111f,0.0925f,0.0554f,-0.0205f,-0.0778f,-0.00499f,0.0212f,-0.0169f,0.0246f,0.000923f,0.0649f,-0.0389f,0.042f,0.139f,0.0276f,5.7e-05f,0.0374f,0.00406f,-0.13f,0.00525f,-0.00146f,-0.115f,-0.0205f,-0.329f,0.0345f}; +float backbone__model5_dp1_pw_bias[64] = {-0.103f,-0.126f,0.158f,-0.0608f,-0.00635f,-0.0114f,0.107f,0.111f,4.98e-05f,-0.0683f,-0.1f,0.0229f,0.0395f,-0.212f,0.0273f,-0.0661f,0.0189f,0.0344f,-0.16f,-0.0665f,0.03f,0.00232f,-0.0358f,-0.0522f,-0.0908f,0.103f,-0.0565f,-0.0481f,-0.0166f,0.0127f,-0.0786f,-0.04f,0.161f,-0.189f,0.032f,0.0228f,0.0755f,0.0345f,-0.0185f,0.0157f,-0.245f,-0.000503f,-0.0223f,-0.00749f,-0.0436f,-0.149f,-0.171f,-0.00812f,0.0864f,0.0841f,0.115f,-0.157f,-0.0865f,0.0444f,-0.0491f,0.0624f,-0.092f,-0.00481f,0.0868f,-0.0544f,0.05f,-0.273f,-0.0655f,-0.134f}; +float backbone__model5_dp1_dw_weight[64*1*3*3] = {-0.921f,-1.03f,0.00232f,-0.469f,-0.407f,0.0553f,-0.0635f,-0.131f,-5.38e-07f,-0.355f,-0.0394f,-0.0853f,-0.996f,-0.574f,0.726f,0.301f,0.101f,0.588f,-0.935f,-0.0117f,0.118f,-1.79f,0.636f,0.41f,-0.00942f,-0.316f,-0.244f,-0.102f,0.487f,-0.486f,-0.376f,0.792f,0.257f,-0.168f,-0.179f,-0.385f,0.776f,0.757f,-0.688f,0.437f,-0.337f,-0.0598f,-0.101f,-0.53f,0.0385f,0.0969f,0.0859f,-0.783f,-0.0331f,-0.0583f,0.519f,0.525f,0.783f,-0.183f,-0.577f,0.819f,-0.873f,-1.03f,0.167f,0.245f,0.0992f,0.426f,0.336f,0.439f,0.121f,-0.592f,0.228f,0.125f,-0.0999f,0.197f,0.03f,0.582f,-7.08e-07f,-0.47f,0.0364f,0.252f,-0.328f,0.864f,-0.409f,-0.244f,-0.147f,-0.254f,-0.325f,-0.00983f,0.101f,0.191f,0.221f,0.139f,0.112f,0.224f,-0.146f,-0.133f,0.0252f,-0.347f,-0.447f,1.05f,0.0235f,-0.262f,-0.131f,0.158f,-0.274f,0.156f,-0.458f,0.154f,-0.508f,-0.0488f,-0.57f,-0.353f,0.242f,0.235f,0.472f,0.28f,-0.64f,-0.0744f,-0.144f,0.458f,0.203f,-0.442f,0.0755f,0.383f,-0.462f,-0.84f,0.219f,-0.137f,-0.31f,0.498f,0.22f,-1.08f,0.309f,1.15f,0.966f,-0.386f,0.12f,0.0261f,-0.165f,1.23f,5.57e-07f,-0.171f,-0.119f,0.646f,0.457f,0.617f,-0.501f,-0.889f,0.251f,-0.388f,-0.198f,-0.507f,0.0984f,0.772f,0.599f,0.897f,-0.896f,0.871f,-0.284f,0.736f,0.454f,0.0685f,0.275f,-0.667f,0.591f,-0.779f,0.111f,-0.179f,-0.206f,0.588f,-0.613f,0.415f,-0.197f,-0.877f,-0.313f,-0.28f,0.00707f,0.00684f,0.116f,0.125f,-0.454f,0.0151f,-0.159f,0.323f,0.973f,0.185f,-0.013f,0.0315f,-0.677f,0.267f,-0.592f,0.365f,-0.531f,0.209f,-0.352f,-0.428f,0.138f,-0.664f,-0.399f,0.123f,-0.196f,0.00854f,0.269f,-0.441f,-5.54e-07f,-0.536f,-0.156f,-0.062f,-0.0801f,-0.203f,0.0304f,-0.612f,0.0493f,0.405f,-0.449f,0.0507f,0.177f,0.552f,0.0807f,0.127f,0.243f,0.122f,-0.113f,-0.217f,0.175f,-0.556f,-0.306f,-0.287f,-0.0416f,0.0761f,-1.07f,-0.325f,0.642f,0.457f,0.235f,0.18f,-0.426f,0.263f,-0.195f,0.0299f,0.0144f,-0.129f,-0.223f,-0.552f,0.0718f,0.236f,-0.0104f,0.152f,-0.0511f,-0.798f,0.056f,0.201f,0.442f,-0.142f,0.582f,2.16e-05f,0.354f,0.599f,0.209f,1.18f,0.206f,0.0861f,-0.0588f,0.34f,-0.392f,1.53f,0.689f,-0.242f,-8.43e-07f,-0.944f,-0.0878f,0.524f,-0.0999f,0.204f,-0.456f,0.305f,0.0273f,-0.215f,0.012f,-0.26f,0.306f,0.557f,0.0142f,0.323f,-0.116f,0.0301f,-0.0197f,-0.439f,-0.22f,-0.083f,-0.453f,0.406f,-0.0614f,-0.0839f,-0.424f,-0.276f,0.0205f,-0.0286f,0.388f,0.325f,-0.53f,0.133f,2.13f,0.149f,0.346f,0.0197f,0.157f,0.56f,0.287f,0.434f,-0.132f,-0.071f,0.0316f,-0.874f,-0.262f,-0.0228f,0.522f,0.269f,0.239f,0.219f,0.0235f,-1.1f,-0.109f,-0.696f,0.0389f,0.499f,0.359f,-0.028f,0.0212f,0.327f,-0.14f,0.893f,1.22e-07f,0.774f,-0.318f,0.46f,0.0172f,0.0581f,0.0644f,-0.483f,0.0282f,-0.302f,0.0455f,-0.223f,0.205f,0.237f,0.101f,0.196f,-0.863f,-0.0262f,-0.205f,0.462f,-0.0645f,0.576f,0.339f,0.154f,-0.26f,-0.233f,0.271f,0.0646f,-0.17f,0.18f,0.505f,-0.0725f,-0.226f,-0.641f,-0.305f,0.219f,0.0876f,-0.127f,-0.112f,0.174f,0.0852f,-0.0943f,-0.227f,0.127f,0.00658f,0.444f,-0.199f,0.14f,0.464f,0.0936f,-0.452f,0.179f,-0.203f,-0.193f,-1.39f,-0.712f,-0.843f,-0.486f,-0.0464f,0.328f,0.997f,-0.0261f,0.253f,-0.461f,-3.29e-07f,-1.05f,-0.245f,-0.252f,-0.106f,-0.581f,0.887f,0.327f,0.351f,0.634f,-0.182f,-0.36f,0.334f,1.04f,-0.3f,0.668f,-0.0954f,-0.0197f,-0.184f,0.583f,0.111f,-0.267f,-0.35f,0.0726f,0.276f,-0.109f,0.137f,0.492f,0.0458f,0.475f,0.358f,-0.466f,-0.43f,0.0126f,-0.0475f,0.364f,-0.36f,-0.387f,-0.332f,-0.176f,-0.0646f,-1.19f,0.735f,1.05f,-0.00704f,0.572f,-0.811f,0.715f,0.697f,0.198f,0.473f,-0.867f,0.691f,0.773f,0.0373f,0.54f,0.112f,0.121f,-0.165f,0.928f,0.227f,-0.116f,0.673f,-0.334f,-1.14e-06f,0.0329f,-0.284f,0.0167f,-0.106f,0.0184f,0.326f,-0.251f,0.2f,-0.158f,0.116f,0.0213f,0.308f,-0.144f,-0.00541f,0.352f,0.0986f,0.273f,-0.339f,0.368f,-0.176f,0.577f,-0.113f,0.0884f,0.0239f,-0.358f,0.129f,-0.416f,-0.298f,0.365f,0.0337f,-0.388f,-0.557f,0.0164f,0.063f,0.468f,-0.889f,-0.223f,-0.299f,-0.197f,0.268f,-0.182f,0.203f,0.165f,0.0399f,0.425f,-0.961f,0.13f,0.25f,0.0848f,-0.394f,-0.0587f,0.15f,-0.213f,0.255f,0.58f,0.307f,0.344f,0.462f,0.226f,0.427f,-0.0304f,0.0619f,-0.181f,-3.58e-07f,0.782f,-0.655f,0.494f,-0.22f,0.387f,0.422f,-0.675f,0.199f,-0.811f,0.0538f,-0.261f,0.12f,0.168f,-0.221f,0.546f,0.0348f,0.147f,0.0736f,0.639f,0.0395f,0.818f,1.1f,0.208f,0.651f,-0.0141f,0.0769f,-0.663f,-0.0267f,0.481f,0.236f,-0.576f,-0.191f,-0.438f,0.0599f,0.349f,-0.34f,-0.417f,-0.599f,0.484f,-0.182f,-1.23f,-0.301f,0.778f,0.182f,0.246f,-0.093f,0.149f,0.33f,0.122f,-0.67f,-0.634f,0.263f,-0.0921f,0.187f,-0.811f}; +float backbone__model5_dp1_dw_bias[64] = {-0.145f,-0.0845f,-0.231f,-0.463f,0.238f,-0.994f,-0.37f,-0.256f,-0.000289f,-0.3f,0.133f,0.0933f,0.0708f,-0.0955f,-0.0888f,-1.06f,0.301f,0.031f,-0.23f,0.243f,-0.225f,-0.094f,0.312f,0.349f,-0.79f,-0.143f,0.263f,0.105f,0.401f,-0.0565f,0.029f,0.135f,0.0728f,-0.628f,-0.145f,0.0656f,-0.152f,0.313f,0.00731f,0.0481f,0.226f,-0.16f,-0.306f,0.0933f,-0.155f,0.284f,-0.0228f,0.105f,0.345f,-0.192f,0.161f,0.285f,0.174f,-0.274f,0.145f,-0.0374f,-0.0249f,-0.2f,-0.0655f,0.189f,-0.0511f,0.323f,-0.302f,-0.471f}; +float backbone__model5_dp2_pw_weight[64*64*1*1] = {0.0519f,-0.0242f,0.0989f,0.0359f,0.017f,-0.153f,0.0457f,-0.116f,-1.27e-05f,0.0357f,-0.0105f,0.00102f,0.0596f,0.0861f,0.162f,0.037f,-0.0362f,0.0561f,0.0414f,0.0668f,0.0353f,-0.0458f,-0.113f,0.0214f,0.0399f,0.204f,0.0188f,0.023f,0.000605f,0.0943f,-0.029f,0.024f,-0.212f,0.13f,0.0365f,0.0236f,0.0113f,-0.0779f,-0.0834f,0.107f,0.0477f,0.105f,0.0305f,0.0176f,0.0314f,-0.0199f,-0.0326f,-0.0172f,0.0539f,0.0185f,-0.112f,0.00508f,0.12f,0.0407f,0.076f,-0.0749f,-0.0532f,0.119f,0.0791f,-0.0641f,0.0342f,0.019f,0.0638f,0.0766f,-0.0215f,-0.058f,0.0421f,0.0256f,-0.0235f,0.0344f,-0.0457f,-0.0707f,-4.97e-05f,-0.0101f,-0.0062f,-0.0371f,0.0371f,0.0315f,0.0105f,0.0349f,0.0416f,0.0129f,-0.0367f,0.0298f,-0.0127f,-0.147f,0.0364f,-0.114f,0.0383f,0.000221f,0.124f,-0.0713f,-0.042f,-0.0555f,-0.0907f,0.06f,0.072f,-0.00772f,-0.00598f,0.0418f,-0.0384f,-0.161f,-0.111f,0.139f,0.111f,-0.0326f,-0.00726f,0.00366f,-0.0404f,-0.0296f,0.0175f,-0.0254f,-0.117f,0.0119f,0.0211f,0.223f,0.00152f,0.0964f,0.0109f,-0.029f,-0.138f,-0.068f,0.0219f,-0.0116f,0.0445f,-0.0477f,-0.039f,-0.0171f,-0.0804f,-0.0365f,0.0449f,0.0364f,-0.081f,-0.00897f,-0.0136f,-0.0457f,-1.32e-05f,-0.0277f,-0.0259f,-0.0368f,0.00242f,-0.0646f,0.16f,-0.142f,0.0945f,0.129f,0.000355f,-0.0377f,-0.0162f,0.121f,-0.103f,-0.0141f,0.0159f,0.0401f,-0.065f,-0.0501f,0.0126f,-0.0276f,-0.0447f,-0.021f,-0.0245f,0.0218f,0.0889f,0.0889f,-0.0127f,-0.0748f,0.0812f,-0.207f,-0.0156f,-0.0212f,-0.032f,-0.155f,0.0585f,-0.0592f,-0.0334f,0.0944f,-0.0338f,0.00901f,-0.0516f,0.0271f,-0.158f,-0.135f,0.0725f,-0.0602f,0.065f,0.0111f,-0.00261f,-0.0798f,-0.0294f,-0.122f,0.00409f,0.111f,0.0244f,0.0759f,-0.0881f,0.0399f,0.0251f,0.036f,-0.129f,-0.059f,4.07e-05f,-0.031f,0.00687f,-0.0169f,0.0574f,-0.0132f,0.0017f,0.034f,-0.0735f,-0.0739f,-0.269f,0.0822f,0.0601f,-0.0171f,-0.0491f,0.0266f,0.0227f,0.0417f,-0.0154f,-0.0408f,0.0701f,-0.0923f,-0.0464f,0.0765f,-0.0679f,-0.0161f,-0.154f,0.0168f,0.0283f,-0.025f,-0.0496f,0.018f,0.0258f,0.0493f,-0.143f,-0.053f,-0.0363f,-0.0189f,-0.0251f,0.0567f,0.0533f,0.0521f,0.0363f,0.0296f,-0.0517f,-0.147f,-0.00831f,0.0362f,0.0152f,0.0164f,-0.0319f,0.0309f,0.111f,-0.0936f,0.0132f,-0.0564f,0.0014f,-0.0342f,0.0491f,0.0265f,0.0731f,-0.00397f,0.152f,0.157f,-3.76e-06f,0.0589f,0.0368f,0.0128f,0.0282f,0.0191f,0.0816f,-0.000389f,-0.0219f,0.0171f,0.00971f,0.0811f,0.0269f,0.0106f,-0.149f,0.0321f,0.029f,-0.0222f,0.00145f,-0.0834f,-0.00929f,0.00802f,0.0231f,-0.00535f,-0.0106f,0.00301f,-0.0144f,0.107f,-0.000117f,0.0167f,0.133f,-0.165f,-0.032f,-0.0398f,0.0218f,0.0296f,-0.0372f,-0.0531f,-0.027f,-0.0957f,-0.00626f,-0.0586f,0.0313f,-0.248f,0.026f,-0.147f,-0.178f,-0.00922f,0.0347f,-0.0367f,-0.0275f,-0.0423f,0.00291f,-0.0142f,0.0337f,0.0316f,0.0752f,0.0297f,0.106f,0.0238f,-0.0686f,-0.0541f,-0.0907f,0.00393f,2.49e-05f,0.0603f,-0.0918f,-0.103f,-0.108f,0.175f,0.149f,0.094f,0.098f,0.176f,-0.0277f,0.0161f,0.0456f,0.149f,0.0568f,-0.0208f,0.0374f,-0.103f,0.0906f,0.0318f,0.0319f,-0.0755f,-0.0888f,-0.0528f,-0.0379f,0.0407f,0.166f,0.183f,-0.111f,0.174f,-0.00184f,0.0476f,-1.22e-05f,0.0399f,0.0823f,0.0384f,-0.0581f,0.0564f,-0.0216f,0.028f,0.0196f,0.00312f,0.28f,0.0906f,-0.0371f,-0.0398f,0.0266f,-0.00718f,-0.0621f,0.0969f,-0.0894f,0.0593f,0.0272f,0.0205f,0.0663f,0.0739f,0.0276f,-0.0333f,-0.0583f,0.022f,-0.0539f,-0.121f,-0.162f,-0.0634f,2.59e-05f,0.0311f,0.106f,-0.0501f,-0.104f,0.106f,-0.0229f,0.0366f,0.228f,-0.0109f,-0.103f,0.0427f,-0.0766f,-0.0741f,-0.0837f,-0.063f,-0.255f,0.0487f,-0.0861f,-0.0234f,-0.033f,0.139f,-0.0645f,-0.1f,-0.119f,-0.0709f,0.224f,-0.0978f,-0.165f,-0.0236f,-0.065f,-0.0668f,0.188f,-0.206f,0.0421f,0.182f,-0.0945f,0.107f,-0.154f,0.0181f,0.00678f,0.077f,0.0288f,0.0349f,0.0175f,-0.0662f,-0.026f,-0.0258f,-0.163f,-0.0976f,0.0678f,-0.0633f,0.12f,-0.0263f,0.0347f,-0.0203f,-0.052f,-0.114f,0.0562f,0.0561f,0.0438f,0.101f,0.0757f,-0.0545f,-2.51e-05f,-0.0387f,0.0554f,-0.00353f,-0.0604f,-0.11f,-0.0108f,-0.0673f,-0.0316f,-0.0041f,-0.026f,0.0358f,0.0758f,-0.0697f,0.0748f,0.0744f,-0.0496f,0.0597f,0.0769f,0.0243f,-0.0543f,-0.00354f,-0.0096f,0.104f,-0.0743f,-0.0701f,-0.014f,0.038f,-0.000741f,-0.0953f,0.000718f,0.0434f,-0.0906f,0.0476f,-0.00362f,0.168f,0.0294f,-0.0175f,-0.0359f,-0.0916f,0.0376f,-0.0612f,0.0627f,-0.012f,0.0174f,0.0222f,-0.00123f,-0.0886f,0.0979f,0.122f,0.0424f,-0.0857f,0.22f,-0.0904f,-0.0934f,0.0306f,-0.232f,0.103f,-0.043f,-0.0623f,0.0251f,-0.0141f,-0.016f,-0.133f,-5.86e-06f,-0.105f,0.0667f,-0.13f,0.00575f,-0.064f,-0.0448f,-0.0628f,0.00695f,-0.0575f,-0.0229f,-0.0651f,0.0334f,-0.035f,0.161f,0.14f,-0.0249f,-0.0586f,-0.0425f,-0.000773f,0.119f,-0.087f,-0.0975f,-0.0313f,0.066f,-0.0273f,-0.099f,-0.0411f,-0.0343f,0.0754f,-0.0304f,-0.0662f,-0.036f,-0.0903f,-0.0447f,0.00131f,-0.0282f,0.087f,-0.088f,0.0345f,0.0274f,-0.195f,0.00687f,0.0548f,-0.173f,-0.0783f,-0.0276f,0.00274f,-0.0189f,-0.0305f,-0.0699f,0.0568f,-0.126f,-0.121f,-0.0545f,-0.134f,-0.0825f,-0.00671f,-0.0714f,0.00135f,0.00228f,0.035f,-0.103f,0.118f,-2.02e-05f,0.0942f,-0.0666f,0.0946f,0.0592f,-0.051f,0.0134f,-0.0198f,0.00177f,-0.22f,0.0648f,-0.0373f,0.0477f,-0.0222f,0.122f,0.0597f,-0.0199f,0.127f,-0.000385f,-0.0943f,-0.0356f,-0.0091f,0.0367f,0.0617f,-0.0358f,-0.102f,-0.0443f,0.00665f,0.066f,0.0017f,0.0545f,0.172f,0.0226f,0.0206f,0.0758f,0.0193f,-0.0628f,0.0128f,0.0778f,-0.0633f,-0.0496f,-0.0649f,-0.00632f,-0.031f,-6.77e-06f,0.13f,0.0524f,0.12f,-0.018f,0.0231f,0.068f,-0.0607f,0.0065f,0.0825f,-0.0857f,-0.115f,-0.0326f,0.172f,-0.00921f,0.0364f,-0.057f,0.0285f,0.0828f,0.0446f,9.2e-06f,0.0858f,0.116f,0.0647f,-0.155f,0.112f,0.138f,0.0341f,-0.0999f,0.126f,0.0449f,-0.0475f,-0.0634f,0.101f,0.0613f,-0.0499f,0.108f,-0.134f,-0.0839f,0.0519f,-0.177f,-0.0415f,0.0826f,-0.0772f,0.0489f,0.0936f,-0.16f,0.0778f,0.0916f,0.0103f,-0.0734f,0.218f,0.208f,-0.0252f,0.0466f,0.164f,-0.054f,-0.0754f,-0.0104f,0.11f,-0.141f,-0.0293f,-0.0017f,-0.0353f,0.00942f,0.0499f,0.0224f,0.17f,0.0531f,0.0667f,0.104f,0.0233f,0.00102f,0.117f,0.108f,0.157f,-0.0254f,-0.0158f,0.0158f,0.0403f,-0.133f,0.0534f,0.0177f,0.139f,-3.18e-05f,0.135f,-0.0355f,0.119f,0.0255f,0.0152f,-0.025f,0.0776f,-0.0411f,-0.146f,0.0154f,0.0571f,0.0101f,0.172f,0.0651f,0.0374f,0.062f,-0.0224f,-0.0338f,-0.136f,-0.124f,-0.131f,0.274f,0.00966f,-0.0234f,0.081f,-0.0291f,-0.122f,0.0112f,0.126f,-0.0601f,0.125f,0.0101f,0.0758f,0.0823f,0.104f,-0.0183f,-0.0427f,0.00347f,-0.0101f,-0.045f,0.233f,-0.0159f,-0.087f,-0.0864f,0.0209f,0.0878f,0.0548f,0.0155f,-0.0275f,0.096f,0.0897f,0.0873f,0.0106f,0.0422f,-0.0828f,0.0747f,-0.0202f,0.0247f,0.155f,-0.0473f,-0.0176f,-0.112f,-0.0317f,1.14e-05f,-0.0395f,0.0711f,-0.0217f,-0.0555f,-0.00094f,-0.0208f,0.0526f,-0.107f,-0.0518f,-0.0146f,-0.00047f,-0.0462f,0.00159f,0.103f,-0.0397f,0.0334f,0.00355f,0.0466f,0.0196f,0.0868f,0.0233f,-0.0238f,-0.0212f,-0.0243f,-0.0255f,0.0571f,-0.0279f,-0.0421f,-0.0285f,0.0037f,0.00486f,0.745f,0.00287f,-0.0401f,-0.00835f,0.0717f,0.0722f,-0.00294f,0.0335f,0.0206f,-0.031f,0.0562f,-0.0955f,0.0156f,-0.00286f,0.117f,-0.00162f,-0.0411f,-0.0452f,0.0292f,-0.0817f,0.149f,-0.000491f,0.0847f,-0.0317f,0.0195f,0.121f,-0.0668f,-0.0457f,0.0571f,0.0219f,-0.005f,-0.0839f,-5.88e-05f,-0.062f,-0.156f,-0.071f,0.0408f,-0.0928f,0.141f,-0.0602f,0.0327f,-0.0931f,-0.0695f,-0.0458f,-0.0372f,0.0263f,-0.176f,-0.0895f,0.122f,0.00171f,-0.0671f,0.0632f,0.106f,-0.0516f,0.0661f,0.0296f,0.0513f,-0.0321f,-0.0671f,-0.0954f,-0.00155f,-0.124f,0.0309f,-0.0823f,-0.0568f,-0.026f,-0.0209f,-0.0328f,0.0249f,0.041f,-0.0457f,0.0229f,-0.086f,-0.0596f,-0.0417f,0.0791f,0.069f,-0.00266f,0.0494f,-0.143f,0.131f,0.0553f,-0.0416f,-0.0733f,0.0583f,-0.0831f,-0.104f,-0.339f,-0.184f,0.00981f,0.0258f,0.119f,-0.0561f,0.0612f,0.0273f,0.0671f,5.09e-05f,-0.027f,-0.0442f,-0.00785f,0.0626f,-0.146f,0.0293f,0.192f,-0.0676f,-0.042f,0.0903f,0.0939f,-0.0219f,0.0889f,0.0235f,0.0572f,0.0944f,0.0876f,0.0849f,-0.0363f,-0.00498f,0.0408f,0.0364f,0.0793f,-0.0786f,-0.105f,0.0326f,0.0297f,-0.0381f,0.0604f,0.0297f,0.0581f,0.0314f,-0.0162f,-0.02f,0.0458f,0.00196f,-0.0256f,0.0168f,-0.0171f,0.0689f,0.0129f,0.0783f,0.00749f,0.0281f,0.0366f,-0.0612f,-0.0997f,0.00356f,0.124f,-0.0208f,0.0604f,0.0022f,-0.194f,0.0857f,0.0259f,0.55f,0.0489f,-0.0334f,0.0455f,0.0218f,0.05f,-0.00848f,-0.0486f,-5.82e-05f,-0.0375f,-0.168f,0.0323f,0.111f,0.133f,0.0502f,0.154f,-0.0176f,-0.000571f,0.0412f,0.152f,-0.0172f,-0.0446f,-0.0106f,-0.154f,0.0631f,-0.0938f,-0.0874f,-0.0756f,-0.0296f,-0.0687f,-0.0618f,0.0299f,-0.00254f,-0.0518f,0.00115f,-0.123f,0.0445f,-0.0404f,-0.042f,0.0951f,0.072f,0.0403f,0.00621f,-0.0445f,0.0365f,-0.0129f,0.0737f,0.058f,-0.0119f,-0.0599f,-0.115f,-0.0546f,0.00154f,0.0326f,-0.07f,0.036f,-0.026f,0.0136f,-0.0271f,0.0137f,0.0723f,0.193f,0.0341f,-0.0752f,-0.0534f,-0.019f,0.0445f,-0.0684f,-0.158f,0.0338f,-0.0321f,0.128f,-2.39e-05f,-0.24f,-0.0118f,-0.108f,-0.0614f,-0.125f,-0.198f,0.00513f,-0.0528f,0.0372f,-0.0216f,-0.00633f,0.0408f,0.0789f,0.16f,0.0669f,-0.0102f,-0.0497f,-0.0278f,-0.00592f,0.0174f,0.0604f,-0.0294f,-0.0696f,0.0207f,-0.0198f,-0.0664f,-0.121f,0.101f,0.0487f,0.00224f,-0.0504f,-0.0378f,-0.00869f,-0.0721f,0.0576f,-0.0254f,0.035f,-0.0744f,-0.0104f,0.012f,0.0453f,0.126f,0.0583f,-0.0561f,-0.0584f,-0.129f,-0.00163f,0.103f,-0.0462f,-0.102f,0.0293f,-0.0226f,-0.142f,-0.0208f,0.174f,-0.0479f,0.0377f,-0.0198f,0.111f,-0.00973f,-0.0758f,0.0351f,-0.0807f,-0.000106f,0.0125f,-0.0168f,-0.0834f,0.00153f,-0.0771f,0.108f,-0.0956f,0.018f,-0.204f,-0.049f,-0.0312f,0.0523f,0.159f,0.0251f,-0.0587f,-0.119f,-0.0213f,-0.0354f,-0.112f,-0.0299f,-0.046f,0.0105f,-0.053f,0.038f,0.0324f,0.0126f,-0.0319f,-0.0437f,-0.0524f,-0.0555f,-0.0619f,0.00954f,-0.121f,0.0449f,-0.0385f,-0.047f,-0.146f,-0.0893f,0.0704f,0.0575f,-0.211f,-0.151f,0.131f,-0.0524f,-0.105f,0.137f,-0.0886f,0.073f,-0.0305f,0.0548f,-0.217f,0.0744f,-0.0627f,0.0923f,-0.121f,-0.0316f,0.027f,-0.0425f,0.105f,0.0461f,0.0484f,0.0172f,0.0396f,3.5e-06f,-0.0767f,0.0229f,0.0331f,-0.00461f,0.0481f,0.058f,-0.00997f,-0.0848f,0.000985f,-0.00528f,0.0976f,0.0283f,-0.0669f,0.000754f,0.119f,0.103f,0.00675f,-0.0703f,0.134f,0.0573f,0.0421f,0.0299f,-0.0114f,-0.00377f,-0.0583f,0.0525f,-0.0354f,0.0697f,0.145f,-0.0156f,0.0418f,0.00699f,-0.0107f,-0.0461f,0.0417f,0.257f,0.0122f,0.0147f,0.0607f,0.00735f,-0.0316f,-0.0382f,-0.262f,-0.0132f,0.0619f,-0.071f,-0.000763f,0.0168f,-0.00483f,0.0732f,-0.00192f,-0.0077f,-0.0283f,0.0176f,-0.138f,0.167f,-0.0129f,-0.0468f,0.0257f,0.0209f,0.0597f,0.118f,-0.0338f,-9.03e-07f,0.00862f,-0.0077f,0.00667f,0.00833f,0.099f,-0.00821f,0.106f,-0.0026f,-0.0334f,0.0153f,0.0643f,0.0239f,-0.0725f,0.0782f,0.016f,0.0485f,-0.119f,-0.039f,-0.12f,-0.00681f,-0.0315f,-0.00272f,0.161f,0.0437f,-0.11f,0.0792f,-0.122f,0.0406f,0.0863f,-0.0519f,0.106f,0.0377f,-0.0596f,0.0924f,0.0919f,-0.00568f,-0.0497f,0.033f,0.0224f,-0.0545f,-0.0747f,0.087f,0.0381f,-0.0716f,0.0907f,0.00998f,0.129f,-0.0266f,0.034f,0.216f,0.17f,0.0759f,0.0135f,0.0204f,-0.107f,0.0361f,-0.0407f,-0.00173f,0.061f,0.000576f,-0.0389f,0.0103f,0.0333f,1.7e-05f,0.0354f,0.0232f,0.0366f,-0.0182f,0.0285f,0.0283f,-0.0588f,-0.0608f,0.0189f,-0.0516f,0.0286f,-0.00289f,-0.0181f,0.0973f,-0.000212f,0.0121f,0.0195f,0.00418f,0.033f,0.0477f,0.0556f,0.0304f,-0.0462f,-0.00471f,0.0554f,-0.00349f,0.021f,0.03f,0.0201f,0.0291f,-0.0264f,0.0401f,-0.0215f,-0.0526f,0.0167f,-0.00409f,-0.0196f,-0.0143f,0.0227f,-0.124f,0.082f,0.00875f,-0.0238f,-0.419f,-0.0274f,-0.0108f,0.00134f,0.00845f,-0.0123f,0.0349f,0.0231f,0.116f,-0.0341f,0.0376f,0.00488f,0.103f,-0.0305f,-0.0966f,-0.0964f,-0.0259f,-0.022f,0.027f,0.146f,2.55e-05f,0.0876f,0.0308f,-0.162f,-0.0799f,-0.164f,0.0661f,-0.107f,0.00547f,0.026f,-0.0312f,-0.15f,0.0706f,0.0741f,0.0789f,0.107f,-0.0469f,-0.0446f,0.103f,0.00945f,0.123f,0.00761f,0.0865f,-0.0518f,0.00107f,0.0237f,-0.0349f,0.0383f,-0.0121f,0.128f,0.0946f,-0.0334f,-0.041f,-0.0757f,0.0856f,0.0255f,-0.11f,0.0324f,-0.116f,-0.143f,-0.029f,0.217f,-0.0671f,0.0804f,-0.402f,-0.135f,0.111f,-0.00062f,-0.00378f,-0.142f,-0.115f,-0.0265f,-0.12f,-0.000208f,-0.0798f,0.154f,-0.0244f,-0.0588f,0.135f,0.0377f,0.0645f,0.00303f,-0.116f,0.00967f,2.4e-06f,0.0826f,0.0448f,0.176f,0.0168f,-0.0663f,0.0486f,0.0713f,0.0402f,-0.171f,0.0353f,0.0337f,0.0363f,0.0392f,0.0281f,0.0312f,0.0213f,-0.159f,0.118f,0.105f,0.0115f,0.0431f,0.0539f,0.217f,-0.0257f,0.119f,-0.00719f,-0.0511f,0.0432f,0.0472f,0.03f,0.0803f,0.0234f,-0.0735f,0.0657f,0.0949f,-0.0242f,-0.00828f,-0.0801f,0.0218f,-0.247f,-0.00284f,-0.0513f,0.125f,-0.00889f,-0.0704f,0.146f,0.102f,0.00767f,0.0814f,0.101f,0.0807f,-0.00308f,0.0994f,-0.0863f,0.123f,-0.0312f,0.0305f,-0.126f,-0.0468f,0.0545f,-0.102f,-0.037f,-0.0575f,2.84e-05f,-0.136f,0.138f,-0.0571f,-0.057f,0.0427f,0.0122f,0.166f,0.0265f,-0.00718f,-0.0157f,-0.0934f,0.074f,0.0286f,-0.00729f,0.187f,-0.021f,0.0522f,0.183f,0.0463f,0.167f,-0.0392f,0.00165f,-0.00781f,-0.0356f,-0.137f,-0.0336f,-0.0565f,-0.0112f,0.0729f,-0.0246f,-0.0191f,0.0137f,-0.105f,-0.0733f,-0.0869f,0.0109f,0.172f,0.111f,-0.0873f,-0.0238f,0.0588f,0.0994f,0.102f,-0.0511f,0.0505f,0.0542f,0.0193f,-0.00991f,0.046f,0.0648f,-0.000841f,0.0258f,-0.0366f,-0.0956f,-0.0469f,0.00521f,-0.046f,0.0569f,0.0791f,-0.0983f,0.126f,0.0393f,0.0169f,-6.31e-05f,-0.0791f,0.0404f,-0.128f,-0.0262f,-0.122f,-0.0632f,0.0802f,-0.0954f,0.0896f,0.0572f,-0.0114f,0.00681f,0.0812f,-0.0658f,0.0285f,0.0902f,0.0938f,-0.0824f,-0.0363f,-0.0225f,0.0769f,-0.0787f,0.0864f,-0.0388f,-0.0918f,-0.00577f,0.14f,0.00884f,0.0262f,0.0485f,0.0172f,0.0961f,0.000295f,0.108f,0.0333f,-0.0381f,-0.0394f,0.0149f,-0.16f,0.0539f,-0.0327f,0.0641f,0.00973f,-0.0524f,0.0272f,0.0788f,0.0819f,0.0342f,0.0856f,0.121f,-0.0817f,0.011f,-0.0223f,0.122f,0.0949f,0.0666f,-0.00604f,0.31f,0.0493f,0.00951f,0.0552f,0.00173f,-0.0778f,2.87e-06f,-0.228f,0.00577f,0.153f,0.0224f,0.0752f,0.0813f,0.036f,0.0253f,0.0594f,-0.131f,0.0967f,-0.0313f,-0.0356f,-0.0344f,0.0268f,-0.0184f,0.00329f,-0.0166f,0.0235f,0.00483f,0.208f,-0.221f,0.0458f,0.0301f,0.159f,0.0455f,-0.0426f,0.0201f,-0.0705f,-0.0118f,0.00753f,0.00671f,-0.0244f,0.0411f,-0.00572f,0.0456f,-0.142f,0.0387f,0.157f,0.041f,-0.0199f,0.0595f,0.114f,0.0248f,0.0517f,0.0238f,-0.0893f,0.00575f,0.0702f,0.103f,-0.0815f,-0.0177f,0.0307f,0.0502f,0.182f,0.0526f,0.157f,-0.0742f,-0.13f,-0.0396f,-0.0735f,0.0376f,0.0672f,6.27e-06f,0.0698f,-0.101f,0.0738f,0.038f,0.00671f,0.0841f,0.00709f,0.0824f,-0.00955f,0.0863f,0.139f,0.155f,0.0762f,0.0445f,0.0413f,-0.0126f,0.0205f,-0.0368f,-0.0186f,0.0182f,0.0251f,0.0508f,0.135f,-0.0536f,0.0471f,-0.0031f,0.102f,-0.321f,0.128f,0.155f,-0.0187f,0.0662f,-0.0244f,0.0392f,-0.00488f,-0.0133f,0.0851f,0.134f,0.0613f,0.0365f,-0.0649f,-0.0572f,0.0268f,-0.0527f,-0.0242f,0.0418f,0.0558f,0.0208f,0.0152f,0.106f,-0.0777f,0.135f,-0.00973f,0.167f,0.037f,0.0113f,0.128f,-0.119f,0.0262f,-0.0042f,-0.0961f,-0.141f,-0.0415f,-4.98e-05f,-0.046f,-0.193f,-0.0112f,-0.0656f,-0.156f,-0.21f,-0.215f,0.282f,-0.0527f,-0.0972f,0.0109f,0.0371f,-0.0782f,-0.0367f,-0.16f,0.0726f,0.0693f,0.0289f,-0.148f,0.0472f,0.00979f,-0.0353f,-0.176f,0.0614f,-0.054f,-0.0832f,-0.0438f,0.0825f,-0.0675f,-0.205f,-0.0332f,0.0448f,-0.0478f,0.016f,-0.15f,-0.131f,-0.165f,-0.195f,0.0768f,0.113f,-0.0257f,0.0241f,-0.19f,0.016f,-0.049f,-0.0839f,-0.109f,0.178f,0.104f,0.0288f,0.00267f,0.0699f,-0.0145f,0.0396f,-0.0738f,-0.061f,-0.0781f,0.0523f,-0.0535f,0.0431f,-0.213f,0.0433f,-0.174f,-5.61e-05f,0.00288f,0.0138f,0.093f,0.14f,0.209f,-0.166f,-0.0575f,0.0114f,-0.0455f,-0.147f,-0.0986f,-0.105f,-0.0303f,-0.0791f,7.55e-05f,-0.00179f,0.0551f,-0.0637f,-0.0094f,-0.00645f,-0.0103f,-0.0338f,0.0131f,-0.0736f,0.00264f,0.073f,-0.177f,-0.015f,-0.0199f,-0.152f,0.113f,0.0139f,-0.0025f,0.152f,-0.0675f,0.00266f,-0.0109f,0.0501f,0.0875f,0.132f,-0.00767f,-0.0447f,-0.0679f,-0.04f,-0.0819f,-0.0564f,0.0287f,-0.129f,-0.111f,0.0787f,-0.0744f,-0.0828f,0.0496f,-0.0501f,-0.0512f,-0.0403f,0.0354f,-0.0721f,0.051f,-0.133f,0.0694f,-0.0723f,-0.0418f,2.99e-05f,0.0795f,-0.103f,0.0571f,-0.0338f,0.015f,-0.059f,0.125f,-0.1f,-0.0287f,-0.0149f,0.00919f,-0.0475f,0.00388f,0.0458f,0.0937f,0.0234f,-0.0649f,0.17f,-0.0874f,0.06f,-0.0255f,0.1f,0.0258f,-0.00774f,0.077f,0.0964f,0.0986f,0.0565f,-0.132f,0.0783f,0.0702f,0.0447f,0.145f,0.013f,-0.0241f,0.043f,0.0334f,0.00148f,0.0153f,-0.0457f,-0.0727f,0.0829f,0.137f,-0.057f,-0.0209f,-0.0159f,0.199f,0.0268f,0.175f,0.0671f,0.0311f,-0.00131f,-0.0292f,0.00605f,0.163f,-0.0313f,0.0272f,0.0355f,-0.0305f,-0.0584f,0.0336f,0.233f,0.0183f,5.19e-05f,-0.0302f,-0.0435f,0.0305f,0.0765f,0.0148f,0.0136f,-0.0529f,-0.00371f,0.0318f,0.0083f,-0.0569f,0.0257f,0.0276f,-0.0241f,0.0189f,0.0372f,0.0902f,-0.0112f,0.00433f,0.033f,0.0702f,-0.0095f,0.0786f,0.0649f,-0.036f,-0.0475f,0.0573f,-0.0453f,0.0555f,0.109f,0.0634f,-0.0139f,-0.00707f,0.0999f,-0.0388f,0.187f,-0.0393f,-0.0373f,-0.028f,0.0917f,-0.0106f,-0.0672f,0.0218f,-0.0407f,0.0525f,0.0554f,-0.0989f,-0.0464f,0.0779f,0.0643f,-0.0307f,-0.092f,0.0888f,0.00303f,0.0536f,0.0104f,-0.0238f,-0.00602f,0.104f,-0.0375f,-0.0263f,-0.0693f,0.107f,2.98e-05f,-0.113f,-0.0682f,-0.122f,0.00346f,0.000325f,0.0546f,0.0578f,0.0985f,-0.0392f,-0.0456f,-0.0131f,0.0273f,0.113f,0.0401f,-0.0906f,-0.00512f,-0.0106f,-0.0109f,0.139f,-0.116f,-0.00465f,-0.0222f,0.0489f,0.0119f,0.035f,0.154f,0.0843f,0.0321f,-0.128f,-0.0142f,-0.1f,0.0425f,0.0665f,0.00246f,-0.109f,0.021f,-0.0925f,0.0132f,-0.0543f,0.00184f,-0.0289f,0.0157f,0.104f,-0.0523f,0.0794f,-0.105f,-0.0171f,0.00629f,0.0815f,-0.00417f,-0.0572f,-0.0247f,0.0879f,0.0716f,0.0527f,-0.0208f,0.00198f,0.0866f,-0.0251f,-0.11f,-0.0299f,0.0113f,-0.0896f,-3.97e-05f,-0.117f,-0.138f,-0.162f,0.106f,0.0866f,0.0011f,-0.0551f,0.0633f,-0.0275f,-0.0573f,-0.12f,-0.0544f,-0.142f,-0.0752f,0.0454f,0.0238f,0.00644f,-0.0739f,-0.0857f,-0.00985f,-0.0626f,-0.19f,0.0892f,0.0948f,-0.092f,0.0769f,0.186f,-0.0223f,-0.0358f,0.0313f,-0.086f,-0.0492f,-0.13f,-0.0111f,-0.116f,0.0118f,-0.0909f,-0.0185f,0.0918f,-0.00712f,-0.0666f,-0.0529f,0.0286f,0.0281f,-0.0306f,-0.0875f,-0.143f,-0.0146f,0.103f,-0.0547f,-0.033f,-0.022f,-0.0101f,-0.000598f,0.019f,0.0234f,-0.0781f,-0.0104f,-0.0427f,-0.0592f,-0.0526f,-0.0152f,-0.0394f,-2.57e-05f,0.0127f,-0.0554f,0.0555f,-0.0271f,0.0347f,0.0358f,-0.0834f,0.0177f,0.0852f,-0.0243f,-0.0352f,-0.0371f,-0.067f,-0.113f,0.0594f,-0.0703f,-0.0416f,0.0459f,0.093f,0.00812f,-0.0454f,-0.0427f,0.00499f,-0.105f,0.102f,-0.0104f,0.148f,-0.09f,0.0197f,-0.0333f,-0.0215f,-0.0271f,-0.011f,0.0223f,-0.00237f,0.168f,-0.0284f,-0.000679f,0.0183f,-0.02f,0.134f,-0.0698f,-0.0903f,-0.0129f,0.11f,0.042f,0.0779f,0.00357f,0.0227f,0.0214f,-0.0131f,-0.0763f,0.0568f,-0.0312f,-0.00697f,-0.000466f,0.0636f,-0.00212f,-0.0903f,0.0256f,0.144f,0.0402f,-0.0351f,-3.21e-05f,-0.054f,0.00188f,0.0392f,-0.0106f,0.202f,-0.0911f,-0.118f,0.038f,-0.02f,-0.146f,0.0681f,-0.0815f,0.0215f,-0.0298f,-0.00347f,0.0378f,0.0259f,0.0118f,-0.00315f,-0.0053f,-0.105f,-0.0249f,0.0214f,-0.075f,0.0133f,0.0392f,-0.0607f,-0.0217f,-0.0539f,-0.114f,-0.0418f,-0.0122f,0.0374f,0.00903f,-0.0933f,-0.00848f,0.00423f,0.0535f,-0.0227f,0.0696f,-0.00636f,-0.00692f,-0.0819f,-0.0304f,0.051f,-0.0359f,-0.0143f,-0.0732f,-0.051f,-0.00571f,-0.0215f,-0.0552f,0.217f,-0.0745f,-0.0353f,-0.0575f,-0.00556f,-0.0458f,0.128f,-0.0607f,0.0161f,-0.004f,-0.0247f,-2.15e-05f,-0.062f,0.09f,-0.0309f,-0.122f,-0.0614f,0.0189f,-0.0708f,0.0713f,0.0443f,-0.0441f,0.00468f,-0.0148f,0.0206f,0.0667f,-0.0792f,0.0243f,-0.0307f,0.017f,-0.00368f,-0.0155f,-0.00426f,-0.0342f,-0.106f,0.00254f,-0.0354f,-0.0477f,-0.149f,-0.00297f,-0.00358f,-0.000481f,-0.00854f,-0.211f,-0.105f,0.000235f,0.0302f,0.0144f,-0.0372f,-0.0227f,0.0536f,-0.00604f,-0.0833f,0.0241f,0.0616f,-0.0404f,0.176f,-0.0706f,0.0647f,0.0315f,0.0069f,-0.0722f,0.017f,0.077f,-0.028f,0.158f,-0.0313f,-0.119f,0.034f,-0.0783f,0.00327f,0.0861f,0.0129f,-0.0363f,-0.093f,-4.34e-05f,-0.141f,-0.0398f,0.105f,-0.0202f,0.0847f,-0.021f,0.107f,0.0184f,-0.0316f,-0.0494f,0.137f,0.00384f,-0.0992f,-0.115f,-0.0397f,0.0364f,0.0119f,-0.0467f,-0.011f,0.0136f,-0.049f,-0.0624f,-0.0157f,0.0037f,-0.0541f,0.113f,-0.066f,0.076f,-0.0673f,-0.0918f,-0.0393f,-0.0107f,0.0242f,0.037f,-0.00265f,0.326f,-0.081f,0.13f,0.0644f,-0.0593f,0.379f,0.0498f,-0.104f,-0.0386f,0.112f,-0.0961f,0.00949f,0.0361f,0.0691f,0.0701f,-0.0647f,-0.0037f,0.0534f,0.0423f,-0.134f,0.00155f,0.0767f,0.024f,0.0145f,-0.14f,0.0655f,0.2f,0.00592f,-7.45e-07f,0.0417f,0.0789f,-0.0097f,-0.0951f,-0.0309f,0.0673f,0.0926f,-0.0804f,0.114f,-0.0412f,0.0295f,0.113f,0.0781f,0.0688f,0.0867f,0.119f,-0.0815f,0.0886f,-0.0487f,-0.051f,-0.00515f,0.102f,-0.000459f,0.0627f,0.0902f,0.0404f,0.137f,0.0563f,0.12f,0.0624f,0.0726f,0.0319f,-0.0622f,-0.0908f,0.0321f,0.139f,-0.0295f,-0.126f,-0.105f,0.0301f,0.0274f,0.0656f,0.116f,-0.0781f,-0.249f,0.104f,0.104f,0.0563f,-0.0231f,-0.0124f,-0.0708f,-0.0315f,-0.084f,0.0127f,0.124f,-0.0194f,-0.0521f,-0.027f,-0.0749f,0.00313f,-0.117f,0.158f,-0.111f,4.48e-06f,-0.0764f,-0.00327f,-0.0789f,0.0187f,-0.0252f,-0.0883f,-0.0721f,-0.064f,0.0882f,-0.0135f,0.186f,0.0957f,-0.0634f,-0.111f,0.00945f,-0.0901f,-0.0323f,0.173f,-0.0671f,0.0691f,0.0818f,-0.0389f,-0.0663f,-0.0677f,-0.079f,0.0024f,-0.0266f,-0.139f,-0.0413f,-0.0291f,0.0651f,-0.0705f,0.0477f,-0.0206f,0.00617f,-0.0191f,0.233f,-0.0785f,-0.0031f,0.127f,0.0506f,0.0401f,-0.0844f,0.0575f,-0.0617f,-0.00677f,0.116f,-0.136f,-0.0528f,0.0613f,0.0927f,-0.0772f,-0.0544f,-0.0541f,-0.00478f,-0.0764f,0.0883f,0.0969f,0.0454f,0.102f,0.0465f,0.0882f,-0.0425f,-2.29e-05f,-0.144f,0.0898f,-0.1f,0.0143f,0.178f,-0.115f,0.158f,-0.0909f,0.0997f,-0.0237f,0.0394f,0.0628f,0.00447f,0.00882f,0.126f,0.000116f,-0.0125f,0.0384f,-0.0901f,0.092f,0.0215f,0.0594f,0.046f,0.0448f,-0.0825f,0.000243f,-0.0214f,-0.0646f,0.0936f,-0.0284f,0.117f,-0.00817f,-0.0628f,0.122f,0.134f,-0.0707f,0.00887f,-0.0151f,0.0631f,-0.022f,-0.0199f,0.067f,0.083f,-0.0133f,-0.0124f,-0.14f,-0.0143f,0.074f,-0.0554f,-0.0238f,0.0568f,-0.0212f,-0.177f,-0.0113f,0.134f,0.0466f,0.0221f,-0.0555f,-0.00773f,0.000171f,-0.0256f,-0.0237f,-0.056f,-4.17e-05f,0.0035f,0.00303f,0.0764f,-0.0182f,0.0529f,-0.0191f,-0.0796f,0.0411f,0.0994f,-0.0728f,-0.0477f,-0.0363f,-0.0102f,0.00857f,-0.00457f,-0.0467f,0.0736f,-0.0824f,0.139f,0.0167f,0.0303f,0.0108f,-0.0565f,-0.077f,-0.0584f,-0.0653f,0.00271f,-0.0877f,-0.0674f,0.00753f,-0.16f,-0.0496f,-0.0579f,-0.105f,-0.104f,0.0382f,0.0609f,0.107f,-0.0487f,-0.126f,0.0818f,-0.142f,-0.0466f,-0.0972f,0.0739f,0.147f,-0.0342f,-0.132f,0.151f,0.0516f,-0.0893f,0.0345f,-0.0222f,-0.036f,0.0279f,-0.0199f,0.0182f,-0.0168f,0.0358f,0.0514f,0.144f,-0.036f,-0.0205f,4.03e-05f,-0.164f,0.0747f,-0.0638f,-0.0122f,-0.0479f,-0.0634f,-0.0162f,0.0145f,-0.0256f,0.027f,0.086f,-0.00753f,-0.0742f,-0.0192f,-0.134f,0.01f,-0.00374f,-0.0523f,-0.116f,0.00805f,-0.0203f,-0.0714f,-0.00389f,-0.253f,-0.18f,0.0924f,-0.0425f,-0.019f,-0.0984f,-0.0718f,-0.125f,0.0939f,0.0249f,-0.0082f,0.00958f,-0.115f,-0.0335f,0.128f,0.0184f,0.0113f,-0.0249f,0.0516f,-0.124f,-0.0205f,0.266f,-0.124f,-0.0347f,0.0743f,0.0332f,0.0969f,0.0141f,0.118f,0.0663f,0.0169f,-0.0976f,0.0109f,0.0197f,-0.0135f,0.0618f,0.0146f,0.0525f,0.0338f,-0.0829f,6.13e-05f,-0.102f,-0.0782f,-0.0938f,0.0578f,-0.0212f,-0.101f,0.0436f,0.0141f,0.0128f,0.115f,0.00137f,-0.0427f,-0.0655f,-0.0931f,-0.0561f,-0.082f,0.0342f,-0.0525f,-0.156f,-0.038f,-0.0967f,-0.101f,0.0363f,-0.131f,-0.106f,0.202f,-0.0543f,0.0689f,-0.063f,-0.104f,0.259f,0.111f,0.0524f,0.17f,-0.0228f,0.0193f,-0.177f,-0.0406f,0.0394f,0.142f,0.0543f,0.0318f,-0.138f,-0.0991f,-0.0783f,-0.118f,0.027f,0.00932f,-0.0889f,0.0807f,-0.0221f,0.0136f,0.0722f,0.0246f,-0.0987f,0.00524f,0.0746f,0.131f,0.0177f,0.0148f,0.0762f,-0.0598f,-0.00453f,5.47e-05f,-0.123f,-0.0278f,-0.0962f,0.0218f,0.157f,0.0828f,0.0038f,0.00556f,0.161f,0.0314f,0.0624f,0.00795f,-0.0172f,-0.00233f,0.0736f,0.109f,-0.0972f,-0.00695f,0.0808f,0.0832f,-0.0235f,-0.0837f,-0.148f,-0.047f,0.121f,-0.00229f,0.0388f,-0.0494f,-0.107f,0.03f,0.0715f,-0.00455f,0.0952f,-0.104f,-0.0281f,-0.088f,0.0274f,0.0266f,0.213f,0.0113f,0.0386f,-0.0731f,-0.0399f,0.0264f,-0.0755f,-0.0243f,0.0849f,0.0466f,-0.0616f,-0.0128f,-0.0355f,-0.0603f,-0.0402f,0.0329f,0.128f,-0.0437f,-0.0109f,-0.0611f,-0.0536f,-0.00315f,0.0354f,0.0842f,-0.0597f,2.19e-05f,0.00534f,0.0111f,-0.0193f,-0.153f,-0.139f,-0.0591f,0.0307f,-0.00507f,-0.0481f,-0.167f,0.0294f,-0.0349f,-0.00542f,0.134f,-0.0548f,0.0178f,-0.194f,-0.105f,-0.0131f,0.165f,0.0131f,-0.0349f,-0.0838f,-0.099f,-0.122f,0.0106f,0.027f,0.0744f,-0.0657f,-0.0723f,-0.0209f,-0.00698f,0.0369f,0.0201f,-0.0233f,0.00961f,-0.0353f,-0.0215f,-0.0515f,-0.0441f,0.0141f,-0.0169f,-0.0335f,0.000445f,0.00383f,0.0232f,-0.021f,0.0143f,-0.0228f,-0.0267f,0.0412f,-0.0325f,0.0496f,-0.00147f,0.015f,-0.0413f,0.13f,-0.138f,0.0575f,-0.0129f,-0.075f,-0.0277f,-0.0291f,8.13e-07f,0.0418f,0.0287f,-0.00555f,-0.029f,-0.0327f,0.0165f,0.0219f,0.0726f,-0.0386f,-0.083f,0.117f,0.00384f,0.0387f,-0.0642f,-0.044f,0.0286f,0.00461f,0.0306f,0.101f,-0.0495f,-0.0547f,-0.0513f,-0.0184f,-0.0606f,0.0281f,0.0426f,-0.0193f,0.0364f,-0.141f,0.165f,-0.0664f,-0.022f,0.0672f,-0.0919f,-0.0211f,0.0107f,-0.0111f,0.00199f,-0.067f,-0.0236f,-0.0323f,0.0258f,-0.0344f,-0.0409f,0.0121f,0.0348f,-0.051f,-0.0269f,0.114f,0.0262f,0.0383f,-0.00323f,0.0162f,-0.0553f,0.0763f,0.0227f,-0.0869f,-0.0316f,-0.0715f,-0.0374f,0.368f,-0.0565f,-0.0159f,-3.5e-05f,-0.0342f,-0.0562f,-0.0189f,-0.18f,-0.103f,0.00817f,0.0367f,0.00812f,-0.0701f,-0.158f,-0.0647f,-0.0952f,-0.0132f,0.138f,-0.173f,0.242f,-0.102f,-0.0499f,-0.0442f,0.0489f,-0.0601f,-0.0243f,-0.0544f,-0.174f,-0.0423f,-0.143f,-0.012f,0.134f,-0.0906f,0.00305f,0.00119f,0.048f,0.0743f,-0.0182f,-0.134f,-0.132f,-0.0753f,0.0362f,0.0443f,-0.071f,0.12f,-0.00186f,0.062f,0.078f,0.0224f,-0.0718f,0.0148f,-0.00409f,-0.149f,-0.0559f,0.0533f,-0.109f,0.1f,-0.162f,-0.0517f,-0.0227f,0.00982f,-0.0398f,0.0546f,0.0216f,0.175f,-0.0325f,-0.000914f,1.07e-05f,0.055f,0.189f,-0.00206f,-0.165f,0.104f,0.0543f,0.0641f,0.092f,-0.0606f,-0.0542f,0.204f,0.128f,0.109f,0.0419f,0.151f,0.0485f,-0.205f,0.162f,0.0431f,0.106f,-0.0491f,0.0122f,0.0232f,-0.0551f,0.0922f,0.0399f,-0.0085f,0.0352f,0.14f,0.00461f,-0.06f,0.03f,0.0829f,0.0252f,-0.0334f,-0.0698f,0.00617f,0.0278f,0.045f,-0.189f,-0.0649f,0.174f,0.178f,0.0294f,0.039f,0.0666f,0.106f,0.0545f,-0.149f,-0.0521f,0.0928f,0.0862f,-0.0183f,0.0149f,0.022f,0.00422f,-0.0335f,-0.0461f,0.157f,0.0431f,0.0212f,-0.0316f,-0.0168f,1.32e-05f,-0.00202f,0.0999f,0.0288f,0.142f,0.0244f,-0.0321f,-0.0148f,-0.0159f,-0.101f,-0.0811f,-0.016f,-0.0681f,-0.0275f,0.00709f,-0.0681f,0.225f,-0.113f,-0.0477f,-0.048f,0.06f,-0.079f,0.00519f,-0.0293f,-0.203f,-0.0321f,-0.00217f,-0.146f,-0.147f,-0.0339f,-0.151f,-0.00148f,0.00234f,0.116f,-0.0147f,-0.0406f,-0.00605f,-0.12f,-0.059f,-0.0858f,-0.0438f,0.0126f,-0.0152f,-0.0476f,0.0161f,-0.0336f,-0.00965f,-0.0771f,-0.0022f,-0.0268f,-0.091f,-0.0552f,0.00198f,-0.0188f,0.16f,-0.0371f,-0.012f,0.00516f,0.056f,0.013f,0.0701f,0.029f,-0.00773f,-0.0178f,-1.16e-06f,-0.0137f,0.114f,-0.0825f,0.0263f,-0.0285f,0.0224f,0.0513f,0.0799f,-0.00837f,-0.0288f,0.106f,0.0112f,-0.0162f,0.0382f,0.0217f,-0.0237f,0.0894f,0.00417f,-0.0668f,-0.00598f,0.00885f,-0.0295f,0.05f,-0.543f,0.0613f,0.0105f,-0.04f,0.00839f,-0.00737f,-0.0205f,0.039f,-0.0112f,-0.0606f,0.0314f,0.0292f,-0.0436f,0.0337f,0.0303f,-0.0411f,-0.0346f,-0.12f,0.0521f,0.0364f,-0.0703f,0.0989f,-0.0424f,0.00516f,-0.0214f,0.0507f,0.059f,0.0378f,-0.0264f,-0.00398f,0.0704f,0.0117f,-0.0256f,0.0657f,0.0489f,0.124f,-0.00718f,-0.0497f,-0.0772f,0.087f,-3.27e-05f,0.0971f,0.0565f,0.0159f,-0.0569f,0.0631f,0.0754f,-0.0121f,0.0517f,-0.113f,0.018f,0.0789f,0.155f,0.0818f,0.0329f,0.0771f,-0.00176f,-0.0511f,0.137f,0.0776f,0.0532f,0.0352f,0.163f,-0.144f,0.036f,0.0884f,-0.1f,-0.0221f,-0.0747f,0.135f,-0.000171f,0.0995f,-0.0569f,0.157f,-0.00267f,0.0294f,-0.0239f,0.0489f,-0.068f,-0.0379f,-0.0959f,-0.00238f,0.0169f,0.125f,0.00825f,0.0139f,0.0117f,-0.0248f,0.0661f,-0.0633f,-0.125f,-0.0311f,0.0959f,-0.105f,0.0463f,0.046f,-0.0466f,-0.0715f,0.0606f,0.032f,-0.0781f,0.0968f,0.0158f,0.0915f,-0.000108f,-0.053f,-0.0884f,0.0771f,0.0875f,0.0524f,-0.0138f,0.0207f,-0.0917f,-0.00512f,0.151f,0.0742f,-0.046f,-0.112f,-0.0587f,-0.0913f,0.0466f,-0.000152f,-0.0348f,-0.0425f,-0.124f,0.083f,0.0635f,0.0216f,0.0086f,0.0339f,-0.0409f,-0.0118f,0.039f,-0.0128f,0.0201f,0.124f,-0.000773f,0.113f,0.0488f,0.161f,0.0403f,0.0302f,-0.0567f,0.0392f,0.0607f,-0.2f,0.0508f,-0.178f,-0.178f,-0.00986f,-0.0707f,-0.0779f,0.017f,-0.0355f,-0.0353f,0.0329f,0.0119f,0.022f,0.0198f,-0.103f,0.021f,-0.152f,0.127f,0.0495f,-0.186f,0.00775f,-0.0568f,0.0662f,5.51e-05f,-0.114f,-0.164f,-0.0643f,0.0275f,-0.0278f,-0.103f,-0.114f,-0.015f,0.0482f,0.0919f,0.00617f,-0.0455f,-0.22f,0.0797f,0.108f,-0.0615f,-0.0303f,0.0271f,-0.127f,0.00293f,0.123f,0.0573f,-0.0121f,0.0138f,0.0206f,-0.0454f,0.00533f,-0.0875f,0.075f,-0.318f,0.0764f,-0.043f,-0.0961f,-0.0284f,0.118f,-0.0527f,0.0865f,-0.0822f,-0.0854f,0.0384f,0.0683f,0.0196f,-0.226f,-0.0722f,-0.0603f,0.0178f,-0.0368f,-0.0649f,-0.0953f,-0.0412f,0.125f,0.0685f,-0.017f,-0.102f,-0.213f,-0.0147f,-0.214f,-0.0391f,0.0478f,0.0486f,-0.0441f,0.0735f,0.0425f,-1.97e-05f,-0.00822f,0.00388f,-0.000133f,0.00167f,0.0143f,0.0156f,-0.0493f,-0.17f,-0.0509f,-0.0213f,0.0739f,-0.0936f,-0.0025f,0.103f,0.0128f,0.0454f,0.0353f,0.0178f,0.000969f,-0.363f,0.0367f,-0.029f,-0.056f,0.118f,0.0858f,0.0184f,0.0826f,-0.0108f,0.0921f,-0.0572f,0.0398f,-0.0785f,0.138f,0.0234f,0.0352f,0.0318f,-0.0943f,-0.0965f,-0.104f,0.0115f,0.017f,-0.0108f,0.0945f,-0.0193f,0.00527f,-0.0149f,-0.124f,0.016f,0.0758f,-0.0921f,-0.0246f,0.0683f,-0.0658f,0.0685f,-0.015f,-0.0046f,0.00983f,0.0103f,-0.0334f,0.0727f,0.04f,0.00785f,-0.107f,-2e-05f,0.0498f,-0.123f,0.0339f,0.00352f,0.119f,-0.0751f,0.0805f,0.03f,-0.0323f,-0.0741f,-0.168f,0.0519f,-0.0471f,0.0543f,-0.0431f,0.106f,0.116f,-0.0931f,0.0295f,-0.0126f,0.0506f,-0.000987f,0.149f,-0.248f,-0.0252f,0.00372f,-0.0827f,0.017f,-0.0848f,0.0442f,0.0168f,0.038f,0.0128f,0.0134f,-0.0382f,-0.0421f,-0.0117f,0.0557f,-0.0259f,0.0622f,-0.137f,-0.00263f,-0.0377f,-0.177f,0.0498f,-0.0268f,0.0539f,0.00812f,0.00208f,0.278f,0.094f,0.0648f,-0.0131f,-0.0352f,-0.0697f,-0.0452f,0.135f,0.0125f,0.0733f,-0.000323f,0.138f,-0.161f,-0.0463f,-1.44e-05f,0.000248f,-0.0635f,0.168f,-0.00718f,0.196f,-0.0748f,0.0218f,-0.0252f,-0.0606f,-0.137f,0.263f,0.016f,-0.0698f,0.0235f,-0.109f,0.0086f,-0.0505f,-0.135f,-0.0423f,-0.00161f,-0.0291f,0.0269f,-0.067f,-0.198f,0.0539f,-0.0296f,-0.046f,0.0559f,-0.0924f,-0.0064f,-0.0232f,0.145f,-0.0305f,0.135f,0.0451f,-0.0409f,-0.0179f,0.12f,0.126f,0.0238f,-0.0416f,-0.0591f,-0.0751f,-0.0457f,-0.00721f,-0.0486f,0.0121f,0.16f,-0.0187f,0.0137f,-0.00443f,0.0931f,0.176f,0.0431f,-0.122f,0.0156f,0.069f,0.0438f,0.0159f,0.000631f,0.036f,-0.00181f,-0.0554f,5.81e-05f,0.0537f,0.121f,0.12f,-0.006f,0.0759f,-0.0227f,-0.0461f,0.119f,0.00046f,-0.0502f,-0.00756f,0.0251f,0.0115f,-0.0297f,-0.0356f,-0.0071f,0.0484f,-0.0386f,0.0387f,0.00495f,-0.0236f,-0.0105f,-0.0275f,0.0798f,0.0337f,0.0399f,-0.0771f,0.0732f,0.0118f,0.0353f,0.047f,0.0338f,0.0804f,0.151f,-0.000697f,0.0106f,0.0555f,0.00305f,-0.0518f,-0.0446f,-0.233f,0.0592f,0.00864f,0.0318f,0.123f,-0.0341f,-0.00592f,-0.0558f,0.0674f,0.0634f,0.027f,0.0168f,0.0537f,0.0616f,0.0604f,0.0236f,-0.0342f,-0.131f,-0.0745f,0.0233f,-0.0253f,0.161f,-0.0489f,-6.42e-05f,-0.079f,-0.0769f,-0.0113f,-0.0551f,0.0268f,-0.0185f,0.0453f,0.0805f,0.0265f,-0.0417f,-0.0141f,-0.0327f,-0.0243f,-0.0203f,-0.0394f,-0.0632f,0.00235f,-0.0942f,-0.0836f,-0.0141f,-0.0328f,-0.0397f,0.058f,-0.107f,-0.126f,0.0292f,-0.01f,0.0163f,-0.0183f,0.00424f,-0.0864f,-0.0465f,-0.0401f,-0.042f,-0.00986f,-0.00105f,-0.0416f,0.0736f,-0.0252f,0.127f,-0.00506f,0.0455f,-0.00647f,-0.039f,-0.112f,0.0488f,-0.0611f,-0.0108f,0.0122f,0.182f,0.0179f,-0.144f,-0.0407f,0.018f,-0.031f,-0.0184f,-0.0257f,-0.0376f,-0.0502f,-0.0224f,0.00613f,0.05f,-0.0459f,8.46e-05f,0.196f,0.0778f,0.09f,-0.0726f,0.0399f,0.0252f,-0.00971f,0.091f,-0.0102f,-0.114f,0.0668f,-0.073f,0.0938f,-0.0987f,-0.0346f,-0.0331f,-0.0293f,0.0125f,0.0214f,0.024f,-0.0957f,-0.0688f,0.042f,-0.0216f,0.0137f,0.105f,0.0778f,-0.0183f,-0.0691f,0.126f,-0.0305f,-0.0301f,0.0111f,-0.0165f,-0.0523f,0.0514f,-0.0279f,0.0504f,0.0568f,-0.07f,0.0197f,0.0302f,0.0904f,0.00793f,0.114f,0.053f,-0.00301f,0.016f,0.149f,0.0215f,-0.00151f,0.0118f,0.0917f,-0.0347f,0.189f,-0.103f,0.118f,-0.00353f,-0.00521f,0.0995f,0.0528f,0.0254f,0.0474f,-6.6e-05f,-0.0118f,-0.0139f,0.0299f,0.021f,0.0124f,-0.0595f,0.195f,-0.13f,-0.112f,0.0184f,0.0196f,0.0998f,-0.0932f,0.067f,0.106f,0.0151f,-0.00188f,-0.0072f,-0.141f,0.142f,0.00117f,0.0382f,0.11f,0.186f,-0.0885f,-0.0667f,-0.144f,0.0185f,0.0482f,-0.00281f,0.104f,-0.0283f,-0.0705f,0.0626f,0.131f,-0.0931f,-0.00546f,0.0145f,0.0783f,-0.0145f,0.0384f,0.0824f,0.0563f,-0.0387f,-0.0107f,-0.121f,0.144f,0.0687f,-0.098f,0.074f,0.0822f,0.0622f,-0.0602f,0.0121f,-0.068f,0.0315f,-0.16f,-0.124f,-0.029f,0.0187f,0.00501f,-0.0463f,-0.122f,2.03e-05f,-0.0926f,0.0309f,0.0509f,0.214f,-0.0351f,-0.000515f,0.0297f,-0.032f,-0.00187f,-0.134f,-0.0245f,-0.13f,-0.014f,-0.112f,0.0472f,-0.0252f,0.153f,-0.139f,-0.0162f,-0.0901f,-0.0409f,0.00138f,0.174f,-0.0928f,-0.077f,0.0286f,-0.0243f,-0.098f,0.00268f,-0.0386f,7.39e-05f,0.0587f,-0.211f,0.00295f,0.00439f,-0.0581f,-0.0483f,0.0994f,0.15f,0.236f,0.00193f,-0.0564f,-0.0676f,-0.00792f,-0.0581f,-0.0111f,-0.00013f,-0.0385f,-0.127f,0.0461f,0.125f,-0.0483f,0.0993f,-0.0374f,-0.0556f,-0.0765f,0.0419f,-0.0306f,0.0319f,0.00892f,0.109f,-0.105f,0.137f,-0.000112f,0.026f,-0.0505f,0.0331f,-0.00673f,0.0105f,0.12f,0.117f,0.056f,-0.0545f,-0.0856f,-0.0366f,0.0924f,0.108f,0.0916f,0.0555f,-0.00484f,0.0101f,-0.0977f,0.0702f,0.046f,0.0187f,0.0857f,0.00798f,0.28f,0.0873f,0.0489f,-0.0106f,-0.00551f,0.115f,0.027f,0.0355f,-0.0351f,0.0741f,-0.26f,0.0546f,0.0243f,0.137f,0.109f,-0.00879f,-0.0611f,-0.0919f,0.0995f,0.146f,-0.0195f,0.222f,-0.0168f,0.0992f,0.00563f,0.0509f,-0.106f,0.0838f,0.0473f,-0.0483f,0.0252f,0.0841f,-0.0175f,0.0206f,0.0298f,-0.0133f,-0.0943f,0.188f,0.0245f,0.128f,-8.32e-05f,0.0555f,0.128f,-0.00278f,0.000686f,0.000684f,0.0821f,0.05f,0.05f,0.0287f,0.0281f,0.0822f,0.0705f,-0.00167f,0.0334f,0.0189f,-0.00596f,0.0539f,-0.13f,0.0387f,0.0953f,0.0552f,-0.0341f,0.137f,0.0245f,0.155f,-0.134f,0.0963f,-0.114f,0.03f,0.152f,0.0658f,-0.421f,0.0461f,-0.000616f,-0.0696f,-0.00666f,0.0534f,0.11f,-0.0107f,0.0658f,-0.0698f,0.0368f,0.0865f,-0.0103f,0.0968f,0.0542f,0.0898f,-0.0951f,-0.0889f,-0.0721f,-0.0127f,0.0483f,-0.0591f,-0.268f,0.021f,-0.0233f,-0.0651f,-0.0481f,-0.0973f,-0.0798f,0.0325f,-0.0135f,-0.0842f,-5.17e-05f,0.053f,-0.171f,-0.0563f,-0.0347f,-0.0195f,-0.0461f,-0.0131f,-0.0393f,-0.012f,0.127f,0.0779f,-0.0323f,-0.0924f,-0.0391f,-0.14f,-0.0556f,-0.0744f,-0.0346f,0.0464f,0.0488f,-0.0314f,-0.0507f,-0.0225f,0.0227f,0.0693f,-0.0743f,-0.0714f,0.111f,-0.0629f,-0.0167f,-0.0644f,-0.114f,0.131f,0.0133f,-0.0455f,-0.00798f,0.0257f,0.0158f,0.0171f,-0.00117f,-0.00488f,-0.026f,-0.0701f,0.0209f,0.0214f,0.162f,-0.0218f,0.00847f,-0.133f,0.0826f,-0.0883f,-0.0763f,-0.117f,-0.0623f,-0.129f}; +float backbone__model5_dp2_pw_bias[64] = {-0.0858f,-0.0469f,0.0593f,-0.216f,0.0274f,-0.109f,0.00553f,0.0267f,0.12f,-0.0921f,-0.0451f,-0.0379f,-0.0933f,0.0762f,-0.0262f,-0.0296f,0.0318f,0.0915f,-0.00876f,-0.0406f,-0.0603f,0.041f,0.0415f,-0.0753f,-0.12f,-0.0999f,-0.0045f,0.117f,0.125f,0.041f,0.104f,-0.0129f,-0.00898f,0.125f,0.0792f,-0.00019f,0.0378f,0.11f,0.00864f,-0.00375f,0.0945f,0.0827f,0.00812f,-0.000703f,-0.0727f,0.0702f,-0.0165f,-0.0245f,0.121f,-0.016f,-0.0916f,0.0911f,-0.00738f,0.119f,-0.0984f,-0.12f,0.023f,-0.00299f,0.0881f,-0.0216f,0.102f,-0.125f,-0.0715f,0.153f}; +float backbone__model5_dp2_dw_weight[64*1*3*3] = {-0.221f,-1.55f,2.15f,0.56f,-0.325f,-0.962f,0.105f,1.28f,1.1f,-0.471f,-0.346f,-2.08f,-0.734f,0.893f,-1.55f,-1.05f,0.806f,0.461f,-0.966f,-0.271f,-1.5f,0.748f,-0.761f,0.196f,-0.283f,-1.04f,-0.426f,0.422f,0.0472f,-0.667f,-0.0173f,-1.02f,0.000749f,0.432f,0.109f,0.847f,-0.36f,-0.468f,0.899f,-0.52f,1.27f,-0.0213f,0.252f,-1.25f,1.97f,0.733f,0.506f,-1.12f,-0.848f,-0.209f,-1.22f,-1.07f,1.01f,-0.994f,0.342f,0.221f,0.447f,-0.94f,-1.12f,0.206f,-0.822f,-0.486f,-0.515f,1.02f,-0.599f,-0.464f,0.462f,1.8f,0.569f,-1.f,0.288f,0.071f,0.00548f,-0.659f,-0.408f,-0.585f,0.91f,0.666f,-0.00138f,-0.186f,0.604f,-0.0563f,-0.304f,0.0583f,0.0589f,0.214f,-1.38f,0.0717f,-0.613f,-0.048f,0.117f,0.0755f,0.917f,-0.193f,1.32f,1.77f,0.261f,0.864f,1.25f,0.29f,-0.0462f,0.102f,0.129f,-0.89f,0.995f,0.969f,-0.331f,-0.195f,1.53f,-0.965f,0.571f,-1.07f,-0.18f,-0.399f,-0.439f,-0.403f,-0.0626f,-0.657f,-0.227f,0.823f,0.133f,0.603f,-0.624f,0.506f,-0.355f,-0.0161f,-0.0788f,0.322f,-1.77f,-1.04f,0.602f,1.75f,1.44f,-0.698f,0.281f,-0.728f,0.915f,-1.1f,-0.489f,-0.91f,-0.0906f,2.22f,0.229f,-0.297f,0.309f,0.218f,-0.497f,-1.46f,-1.79f,0.739f,-0.511f,-0.0569f,-0.206f,-1.59f,0.199f,0.378f,0.927f,-0.752f,-1.66f,1.31f,0.782f,0.769f,-0.173f,-0.51f,-0.29f,-0.196f,0.306f,0.16f,2.05f,0.659f,0.0949f,0.521f,1.69f,-1.54f,0.469f,-0.917f,0.542f,1.79f,-0.509f,-0.877f,0.914f,-0.908f,-0.707f,0.208f,-0.144f,1.77f,-0.624f,0.0102f,0.144f,-0.321f,-0.867f,0.0551f,0.311f,0.0652f,0.658f,0.483f,0.68f,-0.0781f,0.282f,0.59f,0.0724f,-0.276f,-0.135f,-0.318f,1.6f,-0.258f,-0.665f,-0.0133f,-0.0431f,0.162f,0.401f,-0.134f,0.187f,0.241f,0.306f,0.0855f,-0.257f,0.165f,-0.858f,0.266f,0.663f,-0.137f,0.129f,-0.111f,-0.335f,0.158f,-0.195f,0.381f,-0.259f,-0.269f,0.615f,0.14f,0.189f,0.645f,0.978f,0.0261f,-0.287f,0.97f,0.281f,-0.242f,0.0977f,-0.695f,-1.07f,-0.3f,0.24f,0.249f,0.0622f,0.0224f,0.166f,0.00773f,0.492f,-0.791f,-0.436f,-0.257f,-0.863f,0.409f,0.0752f,0.113f,-0.0317f,-0.539f,0.695f,-0.889f,0.0413f,-0.323f,-0.204f,-1.13f,-0.509f,0.627f,-0.107f,0.0585f,0.229f,0.0662f,-0.576f,-0.362f,-0.394f,-0.0704f,0.59f,0.247f,-1.11f,0.268f,-0.0848f,0.97f,-0.354f,0.171f,0.476f,-0.255f,1.46f,0.719f,0.652f,0.56f,1.2f,-0.34f,-0.127f,-0.432f,-0.42f,-1.44f,-0.223f,1.19f,0.33f,-1.35f,-1.18f,1.41f,0.207f,-0.0803f,0.23f,-0.266f,0.243f,0.0207f,-0.0601f,0.331f,-0.25f,-0.178f,1.84f,-0.434f,-0.204f,-0.172f,3.18f,-1.78f,0.188f,0.0957f,-0.281f,-0.365f,-0.178f,-0.701f,0.338f,-0.764f,0.19f,-0.221f,-0.0708f,-0.939f,-0.473f,0.554f,0.424f,-0.00969f,0.313f,-0.0689f,0.0365f,0.611f,-0.752f,-0.454f,0.455f,0.249f,-1.52f,-0.664f,-0.247f,0.465f,0.0196f,-0.1f,0.0932f,-0.158f,-1.16f,0.593f,0.576f,0.362f,0.519f,-0.645f,-0.298f,-0.0339f,-0.0259f,-1.45f,0.258f,-0.246f,-0.209f,-0.107f,0.322f,0.843f,0.466f,-0.204f,0.472f,0.809f,0.321f,-0.638f,0.206f,0.389f,-0.3f,0.913f,0.0901f,-0.0266f,-0.779f,0.261f,0.94f,-0.128f,-1.02f,-0.0486f,0.782f,0.892f,0.511f,0.282f,1.38f,-0.811f,0.557f,1.34f,1.47f,-1.16f,-0.252f,-1.36f,-0.563f,0.824f,-0.664f,-0.835f,2.17f,1.72f,0.859f,-0.206f,0.178f,0.465f,-1.42f,-0.519f,-0.243f,-1.5f,-1.17f,0.43f,0.566f,0.512f,-0.355f,-0.0321f,0.489f,-0.561f,-0.106f,-0.0929f,-0.651f,-0.366f,1.18f,0.161f,-0.067f,0.646f,0.389f,-0.948f,-0.0927f,-0.291f,0.322f,-0.352f,0.639f,-0.692f,-1.19f,-0.955f,1.9f,0.00372f,0.552f,-0.103f,-1.22f,-0.142f,0.551f,-1.87f,0.601f,-0.474f,0.215f,0.71f,-0.0281f,-0.216f,0.133f,-0.616f,-0.241f,-0.215f,0.392f,-0.056f,0.101f,0.279f,-0.417f,-0.168f,0.485f,0.262f,-0.556f,-0.22f,0.37f,0.346f,0.542f,-0.369f,0.244f,0.674f,-1.08f,-1.6f,-0.637f,-0.345f,-0.439f,0.153f,0.791f,-1.27f,-0.466f,-0.412f,1.4f,-0.717f,0.736f,-0.116f,-0.388f,-1.08f,0.314f,-0.041f,0.311f,-0.402f,0.763f,-0.974f,-0.0836f,-0.544f,0.196f,-0.274f,-0.0142f,-0.506f,-0.308f,-0.222f,0.0233f,-0.0634f,-0.0858f,0.233f,-0.934f,0.175f,0.558f,-1.4f,0.698f,0.0533f,0.138f,0.066f,-1.49f,-0.458f,0.197f,-0.359f,-1.25f,-1.51f,0.689f,0.272f,1.26f,-0.248f,-0.709f,-1.63f,0.514f,0.697f,-0.376f,-0.284f,0.682f,0.863f,1.34f,-1.22f,-0.0437f,0.116f,-0.705f,-1.29f,-1.51f,-2.88f,-0.698f,0.652f,-0.283f,-0.96f,-1.38f,0.00463f,0.0509f,-1.46f,0.502f,-1.1f,-0.8f,-1.08f,0.473f,-0.503f,0.419f,0.288f,1.11f,0.343f,0.22f,0.296f,0.219f,-0.256f,1.01f,1.76f,-0.0803f,-0.8f,1.76f,-0.483f,-1.31f,0.528f,-1.29f,1.93f,0.485f,0.324f,-0.1f,-0.293f,-0.157f,0.473f}; +float backbone__model5_dp2_dw_bias[64] = {-0.169f,-0.27f,-0.0386f,0.548f,-0.0291f,0.168f,0.224f,0.0159f,-0.264f,-0.743f,0.00199f,-0.343f,0.0041f,-0.0198f,0.0471f,0.0933f,0.043f,0.198f,0.0204f,0.0837f,-0.0143f,-0.103f,0.242f,-0.227f,-0.38f,-0.257f,0.374f,0.105f,-0.331f,0.468f,0.273f,-0.0206f,0.468f,0.0839f,-0.262f,0.167f,0.188f,0.582f,-0.0481f,0.058f,-0.103f,-0.0857f,0.0776f,0.119f,0.491f,-0.0537f,0.441f,0.237f,0.0958f,-0.00706f,-0.0772f,0.336f,0.213f,0.188f,-0.016f,0.356f,0.245f,0.049f,0.208f,-0.0695f,-0.622f,0.193f,0.0327f,0.0371f}; +float neck__lateral_convs__0_pw_weight[64*64*1*1] = {-0.00534f,0.00604f,0.00493f,0.0238f,0.0351f,-0.165f,-0.0108f,0.155f,-0.0146f,0.0436f,-0.0939f,-0.0994f,-0.0115f,0.0168f,-0.00114f,-0.02f,0.0252f,0.253f,0.0626f,0.0461f,0.03f,-0.0425f,0.00216f,0.0785f,-0.0368f,0.0382f,0.00263f,0.0516f,0.00913f,-0.0267f,0.00515f,0.0278f,0.0731f,-0.0106f,-0.0655f,0.0178f,0.0302f,0.096f,-0.00849f,-0.0846f,-0.0287f,0.125f,-0.0461f,-0.133f,-0.112f,-0.00132f,0.118f,0.111f,-0.0613f,0.087f,-0.0139f,0.0316f,-0.0571f,0.167f,0.0472f,-0.0165f,-0.0487f,-0.0473f,0.0628f,-0.0513f,0.00553f,-0.00198f,0.121f,-0.159f,-0.176f,0.00598f,-0.00309f,-0.0814f,0.0248f,0.0876f,0.00261f,0.0551f,0.0324f,-0.0309f,0.00698f,0.0226f,-0.0151f,0.0421f,-0.0519f,-0.158f,0.0197f,0.146f,0.0695f,-0.0586f,0.0762f,-0.0798f,0.0539f,0.15f,0.0155f,-0.0299f,-0.18f,0.0172f,0.161f,-0.00714f,0.23f,0.0756f,0.158f,0.0172f,-0.0824f,-0.0756f,-0.0273f,0.0129f,-0.0706f,-0.0429f,0.108f,0.0239f,0.348f,-0.0385f,-0.0236f,-0.147f,0.497f,0.0428f,0.182f,0.0637f,0.0044f,0.276f,-0.00377f,0.135f,0.283f,0.0454f,0.00351f,-0.107f,0.307f,-0.13f,-0.102f,-0.097f,0.0534f,0.0385f,0.00463f,0.0201f,-0.0743f,-0.0783f,-0.037f,-0.0187f,-0.125f,0.0142f,-0.045f,-0.141f,0.0429f,-0.0337f,-0.0575f,-0.164f,-0.209f,0.0402f,0.11f,-0.11f,-0.168f,0.0108f,-0.0263f,-0.0983f,0.017f,0.0285f,-0.226f,0.0466f,0.055f,0.0419f,0.0111f,0.112f,0.0118f,-0.079f,-0.0123f,-0.0107f,-0.0318f,0.142f,0.125f,-0.0283f,-0.0119f,-0.0111f,-0.0547f,0.00952f,-0.109f,-0.0789f,-0.0147f,0.0113f,-0.0453f,-0.000801f,0.0105f,-0.0231f,0.0423f,-0.0747f,0.0488f,-0.239f,-0.0956f,-0.0359f,-0.0223f,-0.0404f,0.0705f,0.0182f,0.0502f,0.299f,-0.00928f,0.0487f,0.0336f,0.041f,0.0187f,0.0161f,0.00425f,-0.00452f,0.0333f,-0.0723f,-0.0738f,0.0253f,0.101f,-0.124f,0.0733f,0.0705f,0.0645f,0.128f,0.00968f,-0.00807f,0.0431f,0.014f,0.0739f,0.00525f,-0.0365f,-0.0794f,0.0287f,0.038f,0.0806f,-0.0089f,0.0496f,0.0379f,-0.201f,-0.00835f,0.0324f,0.00329f,-0.0353f,-0.0759f,-0.0895f,0.0233f,0.128f,0.0961f,-0.0182f,-0.28f,-0.0319f,0.0188f,0.0855f,-0.0457f,-0.137f,-0.122f,-0.179f,0.026f,0.0275f,-0.0842f,-0.0414f,0.0489f,-0.00804f,-0.15f,0.0978f,-0.0754f,-0.0106f,0.168f,-0.101f,0.00128f,0.108f,-0.194f,0.0346f,0.0116f,0.0425f,0.0221f,-0.0104f,-0.0612f,0.0294f,0.0588f,0.00828f,-0.103f,0.0468f,-0.135f,-0.173f,-0.0635f,0.0277f,-0.0267f,-0.011f,0.128f,-0.0526f,0.00543f,0.418f,0.0019f,0.0054f,0.043f,-0.0911f,-0.0459f,0.0106f,0.0575f,-0.0504f,0.00698f,-0.067f,0.0432f,0.0411f,-0.0826f,-0.036f,0.0335f,0.247f,-0.0135f,0.107f,-0.0315f,-0.0886f,0.00838f,-0.0741f,0.0132f,-0.0333f,0.0231f,0.0233f,0.109f,0.0959f,0.0561f,0.0119f,-0.0514f,-0.0258f,-0.0192f,-0.0552f,0.00205f,8.41e-05f,0.0131f,0.0356f,-0.0713f,0.149f,0.0545f,0.062f,-0.121f,0.0424f,-0.00212f,-0.0445f,-0.182f,0.0117f,-0.0661f,0.0251f,-0.103f,-0.072f,0.135f,0.0744f,-0.0726f,-0.0204f,-0.0527f,0.0483f,0.018f,0.0946f,-0.0228f,-0.0164f,0.0226f,-0.0179f,0.0103f,-0.0155f,0.15f,-0.0406f,0.0199f,-0.0769f,-0.11f,-0.0254f,-0.108f,0.0288f,0.0632f,-0.105f,-0.0954f,0.0263f,-0.05f,0.16f,0.0209f,0.0313f,-0.0279f,0.113f,0.0976f,0.00907f,0.0731f,0.0333f,0.03f,-0.00337f,0.0023f,-0.00192f,-0.195f,0.0171f,-0.0851f,0.0149f,-0.0246f,-0.0424f,0.0612f,0.00817f,0.0838f,-0.0214f,0.0107f,0.0582f,0.00839f,-0.176f,0.106f,0.00549f,-0.0307f,0.0119f,0.0343f,0.0375f,0.0511f,-0.000626f,-0.229f,0.0268f,-0.0763f,0.0303f,-0.358f,0.0111f,0.012f,-0.0249f,-0.0384f,0.0288f,-0.0889f,0.0305f,-0.000455f,-0.0287f,-0.0336f,0.0195f,0.0493f,0.0156f,0.0109f,0.0312f,0.0644f,-0.0225f,-0.059f,-0.0818f,-0.0269f,0.0693f,0.00434f,-0.00157f,-0.00845f,0.0639f,-0.0404f,0.0138f,0.0139f,-0.0307f,-0.0981f,0.0423f,0.0129f,0.0386f,0.0546f,-0.0298f,-0.00621f,-0.0289f,0.0776f,0.0299f,-0.166f,-0.0476f,0.0136f,-0.0109f,0.0302f,-0.038f,-0.0452f,-0.00671f,0.0183f,-0.483f,0.00116f,0.106f,-0.465f,0.192f,0.227f,-0.069f,-0.0225f,-0.0102f,-0.0941f,0.138f,0.0295f,-0.191f,-0.02f,-0.142f,-0.0414f,0.0226f,-0.0299f,-0.0523f,-0.149f,0.101f,-0.0335f,0.0567f,0.125f,-0.105f,0.0987f,-0.0928f,0.371f,-0.0137f,-0.0527f,-0.0345f,0.072f,-0.123f,-0.0584f,-0.171f,0.0225f,-0.125f,0.205f,-0.0966f,-0.109f,0.0118f,-0.041f,0.0404f,0.146f,-0.00836f,-0.172f,-0.0517f,0.0641f,0.123f,0.0739f,-0.023f,-0.181f,0.0618f,-0.0463f,0.241f,-0.0371f,0.21f,-0.0215f,0.00173f,-0.0392f,-0.0369f,-0.238f,0.00299f,-0.16f,-0.0803f,-0.068f,-0.00289f,0.203f,0.125f,-0.104f,-0.0381f,0.108f,0.0441f,-0.0288f,-0.1f,0.125f,-0.0209f,-0.0215f,-0.019f,0.0753f,-0.00686f,-0.0253f,-0.04f,-0.217f,-0.149f,-0.0751f,0.055f,-0.242f,0.0632f,-0.0564f,-0.0252f,0.107f,0.0417f,-0.0605f,0.057f,-0.0289f,-0.125f,0.0491f,-0.0361f,0.0963f,0.16f,-0.0706f,-0.122f,-0.0166f,0.132f,0.176f,0.099f,0.15f,-0.0463f,0.121f,0.0812f,-0.115f,-0.181f,0.0737f,-0.0378f,0.00747f,0.0228f,0.0634f,-0.0618f,-0.0645f,-0.0535f,0.164f,0.108f,-0.054f,-0.188f,0.143f,0.0188f,-0.00225f,0.116f,0.0863f,0.135f,-0.151f,-0.000277f,-0.00155f,-0.0319f,-0.0652f,-0.0391f,-0.00946f,-0.0849f,-0.255f,-0.0159f,-0.165f,-0.047f,-0.223f,0.00498f,0.0774f,-0.0719f,-0.0158f,-0.0937f,-0.113f,-0.161f,-0.171f,0.0526f,-0.0646f,-0.0298f,-0.0614f,-0.112f,-0.0431f,-0.0481f,-0.133f,0.0564f,0.0938f,-0.00417f,-0.224f,0.0816f,-0.0559f,-0.0189f,0.043f,-0.0596f,0.0848f,-0.0693f,0.0144f,-0.171f,-0.0255f,-0.0424f,0.0979f,-0.058f,0.00618f,0.0268f,-0.112f,-0.0729f,-0.0696f,0.0347f,-0.0732f,-0.0504f,0.0309f,0.0243f,-0.0975f,-0.0298f,0.0183f,-0.126f,-0.0631f,-0.263f,0.00955f,0.0278f,-0.106f,-0.0449f,-0.0366f,0.00383f,-0.0428f,-0.0132f,0.0159f,-0.0529f,0.000497f,-0.00662f,-0.107f,-0.00887f,-0.0897f,0.0245f,-0.0502f,-0.0645f,-0.0239f,0.0148f,-0.00341f,-0.21f,-0.0157f,-0.0778f,-0.0479f,-0.00955f,0.029f,-8.47e-05f,0.00902f,-0.0461f,-0.0204f,-0.00365f,-0.0646f,0.0286f,-0.0356f,-0.161f,-0.0232f,0.00619f,0.00974f,-0.0242f,-0.0506f,-0.272f,-0.0944f,0.121f,0.0156f,-0.281f,0.00541f,0.0357f,-0.0516f,0.0306f,0.0335f,-0.0383f,-0.0143f,-0.0349f,0.0536f,0.00934f,0.0291f,-0.0472f,-0.0287f,0.0188f,-0.014f,0.00882f,0.0455f,-0.00276f,0.0302f,-0.132f,-0.13f,-0.108f,-0.00469f,0.122f,-0.00217f,-0.000719f,-0.00215f,-0.0239f,0.109f,-0.0531f,-0.0753f,-0.0806f,-0.0141f,-0.105f,-0.143f,-0.0138f,-0.11f,0.0246f,-0.211f,0.00791f,-0.00118f,-0.0486f,-0.126f,-0.00949f,-0.0989f,0.0611f,-0.0436f,-0.0429f,-0.00218f,0.0316f,0.0776f,0.00228f,0.0141f,0.0737f,-0.064f,0.0526f,0.141f,-0.107f,0.0725f,-0.0911f,0.0217f,0.0554f,0.0703f,-0.0316f,0.0767f,-0.01f,0.0611f,0.083f,-0.0028f,0.0697f,0.161f,-0.0337f,0.114f,0.0581f,0.0206f,0.0357f,-0.111f,0.00831f,-0.0693f,0.0996f,-0.0508f,0.0477f,0.0825f,0.113f,0.0781f,-0.0379f,0.0193f,-0.115f,-0.0483f,0.0135f,-0.0421f,0.0309f,0.00507f,-0.0141f,0.0217f,0.0226f,0.0263f,0.0138f,0.149f,-0.00726f,-0.0282f,-0.0642f,0.0973f,0.0454f,-0.0116f,-0.0436f,0.00318f,0.0235f,0.0588f,0.108f,-0.00681f,0.0329f,0.0842f,0.0436f,-0.0778f,-0.0279f,0.0995f,0.0408f,0.00859f,0.0413f,0.194f,0.0839f,-0.0976f,-0.0835f,-0.0171f,-0.0255f,-0.0995f,-0.0117f,0.0149f,-0.0622f,0.104f,-0.00921f,-0.0285f,-0.0287f,-0.134f,-0.0177f,-0.00161f,0.0409f,0.0467f,0.00411f,0.221f,0.0914f,-0.0767f,-0.0517f,0.0208f,-0.0155f,-0.101f,-0.0862f,-0.0598f,0.0529f,-0.146f,-0.029f,-0.213f,-0.0448f,-0.013f,-0.0808f,0.036f,0.045f,-0.112f,-0.147f,-0.0447f,-0.00121f,-0.114f,0.0276f,0.0124f,-0.0918f,-0.0494f,-0.0312f,-0.207f,-0.0475f,0.0128f,0.00905f,0.0496f,0.00232f,0.103f,0.161f,-0.0691f,-0.0316f,-0.00163f,0.0458f,0.00404f,-0.0906f,0.0684f,-0.0861f,-0.0188f,0.0361f,-0.097f,0.0994f,0.261f,0.247f,0.0812f,0.0484f,-0.0909f,0.224f,0.0193f,-0.0507f,-0.0338f,-0.0658f,0.0607f,0.0984f,-0.0241f,0.0553f,0.156f,-0.0392f,-0.0252f,-0.0601f,-0.0789f,-0.00646f,-0.106f,-0.0832f,0.0218f,0.132f,-0.0936f,0.0193f,0.0275f,-0.0451f,-0.0227f,0.0086f,-0.128f,0.0623f,-0.0418f,-0.126f,0.0101f,0.14f,0.0464f,0.296f,-0.0207f,0.035f,-0.0157f,0.051f,-0.0585f,0.0365f,0.00317f,0.0246f,0.0073f,-0.0358f,0.0164f,-0.00915f,-0.0316f,0.0283f,0.104f,-0.00131f,0.0228f,0.0516f,0.000899f,0.0986f,-0.037f,-0.0487f,-0.0348f,0.0295f,-0.00838f,0.0178f,-0.0215f,0.0593f,-0.329f,-0.0813f,-0.0785f,-0.0318f,-0.0765f,-0.207f,0.0252f,-0.162f,0.0382f,-0.00976f,-0.0843f,-0.0407f,-0.0273f,0.0233f,0.0166f,0.000648f,0.00695f,-0.0201f,0.0311f,-0.0486f,0.00593f,0.0399f,-0.0996f,-0.00247f,0.0334f,-0.0233f,-0.126f,-0.0906f,-0.114f,-0.0652f,0.0469f,-0.0123f,0.00999f,-0.0915f,-0.013f,0.024f,-0.0396f,-0.149f,-0.134f,0.0025f,-0.0599f,-0.201f,-0.0392f,0.0479f,-0.0243f,0.00118f,0.053f,0.00497f,0.0581f,-0.0862f,-0.105f,-0.00137f,-0.058f,0.0588f,-0.027f,-0.151f,-0.0347f,0.0198f,-0.00902f,-0.0109f,-0.00136f,-0.0104f,-0.0437f,0.117f,0.12f,-0.37f,-0.0768f,-0.0415f,-0.129f,-0.0127f,-0.0279f,-0.0253f,-0.00191f,-0.092f,0.0261f,-0.0716f,0.0394f,-0.0601f,0.00725f,0.049f,0.0168f,-0.0383f,0.000534f,0.0348f,0.0318f,-0.175f,-0.016f,-0.049f,-0.0717f,-0.0525f,0.0952f,-0.0233f,-0.0095f,-0.0382f,-0.027f,0.0185f,0.0412f,-0.0307f,-0.0527f,-0.0104f,-0.273f,-0.137f,-0.0356f,0.0163f,0.0114f,-0.28f,-0.053f,-0.131f,-0.00998f,-0.0297f,0.0636f,0.00198f,0.00306f,-0.0324f,-0.0285f,-0.0444f,-0.0461f,0.0514f,0.00461f,0.0166f,-0.0257f,-0.0208f,-0.0203f,-0.0395f,0.0802f,-0.369f,0.0215f,0.0916f,-0.0133f,-0.192f,0.0178f,0.0159f,0.0674f,0.0161f,0.0563f,-0.0488f,-0.0485f,-0.0429f,0.236f,0.0153f,-0.0907f,-0.00381f,0.0028f,0.00409f,0.0537f,0.0251f,0.0224f,0.0443f,-0.023f,-0.201f,-0.0235f,-0.179f,-0.192f,-0.0187f,0.0821f,-0.0249f,-0.0314f,-0.0218f,0.00531f,-0.0942f,0.0157f,0.0623f,-0.00943f,-0.0074f,-0.0698f,-0.00663f,0.00403f,-0.0722f,0.0374f,0.00234f,0.0316f,0.169f,-0.038f,0.0862f,-0.00882f,-0.103f,0.023f,-0.123f,0.0123f,0.398f,-0.00672f,0.379f,-0.0405f,-0.175f,0.139f,-0.017f,-0.0118f,-0.236f,0.112f,0.184f,-0.015f,-0.258f,-0.157f,0.139f,0.0742f,0.0378f,0.059f,0.309f,-0.145f,0.00775f,-0.025f,0.149f,0.27f,0.197f,-0.237f,0.352f,0.076f,0.203f,-0.101f,-0.0207f,0.0497f,-0.0175f,0.0704f,-0.000621f,0.131f,0.0661f,0.0169f,-0.0502f,-0.035f,-0.00924f,0.0142f,-0.0535f,-0.0363f,0.0189f,0.0827f,-0.117f,0.0713f,0.0433f,0.0409f,-0.0668f,0.0166f,0.01f,0.0371f,-0.112f,0.0743f,0.109f,0.0115f,-0.0149f,0.0216f,0.102f,-0.0113f,0.0645f,-0.0665f,0.00876f,0.147f,0.0108f,-0.205f,0.1f,0.0653f,0.0679f,0.0211f,0.0503f,-0.0177f,0.0553f,-0.0237f,-0.0111f,-0.0427f,0.0407f,0.128f,-0.103f,0.0504f,0.0389f,0.0419f,0.00707f,0.192f,0.0343f,0.0471f,-0.0167f,0.0299f,-0.0552f,-0.0634f,-0.00685f,-0.00296f,0.0184f,-0.0504f,0.093f,-0.0993f,0.117f,-0.0459f,0.0437f,0.206f,-0.0908f,-0.0699f,-0.0597f,-0.132f,-0.0655f,0.0441f,-0.124f,-0.0358f,-0.185f,0.0957f,-0.176f,-0.0089f,-0.264f,-0.119f,0.0427f,-0.027f,-0.102f,-0.244f,-0.134f,0.245f,-0.0751f,0.276f,-0.00406f,-0.135f,-0.0669f,-0.0446f,0.0205f,-0.0704f,0.0479f,-0.102f,-0.283f,0.412f,-0.0879f,-0.183f,-0.0916f,-0.0124f,0.172f,0.0446f,-0.253f,-0.136f,-0.234f,-0.0737f,-0.0093f,-0.0507f,-0.17f,-0.113f,-0.0149f,0.0766f,0.215f,0.00589f,0.149f,0.058f,-0.109f,-0.159f,-0.00947f,0.151f,-0.0458f,-0.232f,0.0458f,-0.116f,0.0376f,0.105f,-0.0604f,0.00942f,-0.0153f,-0.0681f,-0.0277f,-0.0563f,0.0322f,0.00826f,0.0448f,-0.0494f,-0.105f,0.0403f,-0.0271f,-0.167f,-0.0597f,-0.0234f,0.0195f,0.000374f,-0.169f,-0.154f,-0.14f,0.00442f,-0.0479f,-0.0574f,0.00564f,-0.0531f,0.0729f,0.0608f,0.0978f,-0.00596f,-0.012f,-0.025f,-0.39f,-0.0773f,-0.0504f,-0.02f,-0.0188f,-0.0506f,-0.122f,0.114f,0.245f,0.00856f,-0.0621f,-0.0637f,0.139f,-0.0568f,-0.112f,-0.0712f,0.0417f,0.00875f,-0.00401f,0.0239f,-0.00889f,0.0712f,-0.109f,-0.0796f,0.15f,0.0363f,-0.0403f,-0.0628f,-0.0273f,-0.00212f,0.00926f,0.0218f,-0.221f,-0.00699f,-0.0395f,-0.0463f,-0.0812f,0.0286f,0.11f,0.175f,0.104f,-0.174f,-0.0135f,0.131f,0.00646f,0.208f,0.0389f,-0.0317f,0.0579f,0.173f,-0.232f,-0.0919f,0.0546f,0.0547f,0.0803f,-0.0467f,-0.0751f,-0.0776f,-0.122f,-0.128f,-0.0686f,0.145f,-0.0297f,0.0661f,0.0848f,-0.00402f,-0.0851f,-0.094f,0.123f,-0.0284f,-0.0246f,-0.0239f,-0.0761f,0.0785f,-0.0613f,0.0431f,-0.16f,-0.0172f,-0.0161f,0.024f,0.159f,0.394f,0.0686f,-0.347f,0.0243f,0.175f,-0.0677f,0.0163f,0.12f,0.0775f,0.151f,0.0354f,0.145f,-0.0929f,0.0229f,-0.0142f,0.0821f,-0.0907f,0.028f,-0.0361f,0.082f,-0.104f,-0.142f,-0.0565f,0.0172f,-0.0718f,-0.013f,0.0157f,0.0729f,-0.0947f,0.146f,0.0169f,-0.0902f,-0.0918f,-0.0776f,-0.0239f,-0.0762f,0.186f,0.244f,0.0316f,0.0737f,0.272f,0.285f,-0.0186f,-0.0156f,0.101f,-0.0468f,-0.114f,0.0137f,-0.0224f,0.0384f,0.0186f,-0.0269f,0.0565f,0.0931f,-0.018f,-0.087f,-0.134f,0.152f,-0.229f,-0.0649f,0.0816f,0.221f,0.172f,-0.0895f,-0.239f,0.0173f,0.28f,-0.00273f,0.162f,0.135f,-0.0251f,-0.0157f,0.0455f,0.00721f,-0.0998f,0.0817f,0.045f,0.104f,-0.105f,0.0146f,0.034f,0.0207f,-0.0722f,-0.0131f,0.0162f,-0.00458f,-0.153f,-0.0347f,-0.0214f,0.0336f,-0.184f,0.0874f,-0.0725f,0.00648f,0.0276f,-0.0833f,-0.0272f,-0.016f,0.0284f,0.00323f,0.0176f,0.0335f,-0.00103f,-0.0535f,0.0454f,0.0524f,-0.00501f,-0.00883f,-0.034f,-0.0514f,-0.04f,-0.0987f,0.0342f,0.00328f,0.00106f,0.0236f,0.0215f,-0.0303f,-0.0468f,0.117f,-0.0755f,0.0699f,0.0401f,-0.000644f,0.0193f,0.00574f,0.027f,-0.000534f,-0.0393f,-0.00172f,-0.133f,0.0114f,-0.12f,0.0149f,0.0514f,0.0226f,-0.0129f,0.00858f,0.00326f,-0.101f,0.0371f,-0.115f,-0.207f,0.0183f,0.021f,-0.0151f,-0.00516f,-0.0239f,0.00164f,0.0322f,-0.033f,0.0152f,-0.136f,0.0058f,-0.1f,0.00162f,-0.133f,-0.0946f,0.00125f,0.0122f,-0.0748f,-0.11f,0.00214f,-0.0567f,-0.0117f,0.00889f,0.00671f,-0.0314f,-0.000797f,-0.067f,0.00972f,-0.0359f,-0.195f,0.0633f,-0.0281f,0.0706f,0.0146f,-0.0259f,-0.0308f,0.0168f,0.0833f,-0.339f,0.014f,-0.0551f,-0.0444f,-0.09f,-0.0206f,-0.0232f,0.0711f,-0.00623f,-0.0244f,-0.0305f,-0.0669f,0.0209f,-0.0424f,0.0215f,-0.163f,-0.00505f,-0.0735f,-0.0479f,-0.0131f,-0.00875f,-0.0175f,-0.0592f,-0.0333f,-0.302f,-0.0473f,-0.09f,-0.00527f,-0.0866f,0.156f,-0.00291f,-0.0447f,-0.1f,0.0296f,0.0127f,0.0778f,-0.0957f,0.0491f,-0.45f,0.113f,-0.0678f,-0.229f,-0.016f,0.0795f,0.108f,-0.0463f,-0.0072f,-0.0704f,0.0131f,0.146f,-0.00771f,-0.0487f,-0.19f,-0.0798f,0.0272f,-0.0194f,0.175f,0.0298f,0.0868f,0.015f,-0.0105f,-0.0701f,-0.0307f,0.0451f,0.173f,-0.108f,0.221f,-0.0774f,0.225f,0.0265f,0.0951f,-0.0973f,0.0169f,-0.135f,0.00432f,0.0112f,0.124f,0.229f,-0.0274f,-0.0317f,0.0626f,-0.00981f,-0.017f,-0.0341f,-0.021f,-0.187f,-0.151f,-0.0292f,0.0933f,0.113f,-0.0471f,0.053f,0.0173f,0.216f,-0.0733f,0.011f,-0.000447f,0.0507f,0.013f,-0.0103f,0.043f,0.255f,0.0417f,0.0218f,0.00694f,0.0556f,-0.0127f,0.064f,0.0255f,-0.0732f,0.0917f,0.0155f,0.018f,0.0511f,-0.0183f,-0.0132f,0.00839f,-0.0461f,-0.103f,-0.0677f,0.00176f,0.00453f,0.0322f,-0.0633f,0.0731f,0.014f,0.00178f,0.0265f,0.182f,0.071f,-0.13f,-0.0943f,-0.187f,-0.013f,-0.0211f,-0.0124f,0.0711f,-0.0185f,0.0203f,0.0415f,0.0695f,-0.00192f,-0.0809f,-0.0621f,-0.142f,-0.0945f,0.0219f,-0.00831f,0.0276f,-0.0628f,0.439f,-0.0717f,0.0247f,0.329f,0.103f,0.00252f,-0.0454f,0.0174f,-0.00694f,-0.0378f,-0.0238f,-0.17f,-0.0402f,-0.0781f,0.0835f,0.0206f,0.0132f,-0.114f,-0.162f,0.0517f,0.0236f,0.0961f,-0.0911f,-0.0124f,0.101f,0.0586f,0.0338f,0.111f,-0.0205f,-0.0382f,0.151f,0.17f,0.033f,0.0703f,-0.00155f,0.024f,0.0336f,-0.0562f,0.0629f,-0.0844f,0.0471f,-0.0377f,0.0341f,0.0407f,0.149f,0.0258f,0.0131f,-0.0682f,0.0375f,0.0397f,-0.0116f,-0.125f,-0.0522f,-0.133f,-0.0881f,-0.112f,-0.0225f,-0.376f,-0.0113f,-0.0232f,0.0526f,-0.0125f,-0.0119f,0.111f,0.0945f,-0.0147f,-0.114f,0.0453f,0.0838f,-0.0227f,0.00641f,-0.0896f,-0.0166f,-0.0282f,0.00128f,0.0231f,-0.00542f,0.0427f,-0.0236f,0.00542f,0.0184f,-0.109f,-0.0265f,-0.0419f,-0.0299f,-0.0162f,-0.251f,-0.0123f,-0.116f,-0.00248f,-0.00882f,0.0186f,-0.0129f,0.0325f,-0.00824f,-0.0177f,-0.00119f,-0.0404f,0.024f,-0.018f,-0.0695f,-0.0234f,-0.00546f,0.0243f,0.0196f,-0.00146f,-0.17f,-0.0572f,0.109f,-0.01f,-0.106f,-0.00709f,-0.00102f,0.00556f,0.00697f,0.0221f,-0.0465f,-0.0966f,-0.0122f,0.014f,-0.00832f,-0.0618f,-0.00821f,0.0128f,0.0348f,-0.00406f,0.046f,-0.0597f,-0.15f,-0.00148f,-0.11f,-0.126f,-0.0108f,-0.0289f,-0.0572f,0.0423f,-0.0501f,0.0864f,-0.0407f,0.156f,0.123f,0.0172f,-0.098f,0.11f,-0.251f,0.0196f,0.0779f,-0.188f,-0.0128f,-0.0241f,0.0881f,-0.239f,-0.0379f,0.0949f,-0.0126f,0.0493f,0.00947f,0.046f,-0.04f,-0.135f,-0.0347f,-0.169f,0.197f,0.176f,-0.0644f,0.0464f,-0.023f,0.137f,0.221f,-0.0124f,-0.0407f,-0.0047f,-0.2f,0.0731f,-0.111f,-0.185f,-0.0498f,0.0663f,0.0696f,0.0717f,0.161f,-0.0298f,0.0476f,-0.0762f,0.0346f,0.17f,-0.0413f,0.147f,-0.147f,0.0644f,-0.0192f,-0.184f,-0.0491f,-0.0728f,-0.0262f,0.115f,-0.0948f,-0.0477f,0.0473f,0.00789f,0.039f,0.0209f,-0.0953f,0.0573f,0.0097f,0.103f,-0.0995f,0.0265f,-0.00281f,0.0331f,-0.124f,0.0794f,0.0569f,0.00124f,-0.0964f,0.0158f,-0.0256f,-0.0222f,0.179f,-0.0531f,0.0642f,0.068f,0.0949f,0.143f,0.03f,0.222f,-0.00554f,-0.0987f,-0.00484f,-0.0171f,0.0195f,0.0332f,0.0129f,0.00134f,-0.0558f,-0.102f,-0.0268f,-0.0319f,-0.00312f,-0.107f,-0.0125f,0.104f,0.129f,0.11f,-0.00732f,0.0314f,0.092f,0.387f,0.068f,-0.223f,0.134f,-0.0489f,-0.0706f,-0.155f,0.063f,0.0928f,0.0106f,0.00154f,0.063f,-0.0335f,-0.0308f,0.137f,-0.0367f,0.285f,-0.0988f,0.212f,-0.122f,0.0937f,-0.0897f,0.0495f,-0.0774f,-0.132f,-0.0698f,-0.0287f,-0.04f,-0.185f,0.0458f,-0.059f,0.0344f,0.173f,-0.028f,0.0755f,-0.0182f,0.0581f,0.0214f,-0.00531f,-0.0686f,0.0152f,0.0856f,0.0813f,0.153f,0.000613f,-0.141f,0.0682f,-0.0326f,0.00313f,0.123f,-0.0174f,0.0391f,0.125f,-0.0839f,-0.000221f,-0.105f,-0.115f,0.165f,-0.118f,-0.0674f,-0.0944f,0.0797f,-0.0063f,-0.0912f,0.002f,0.243f,-0.0379f,-0.0834f,-0.00134f,0.168f,0.00679f,-0.0684f,0.023f,-0.142f,-0.0192f,-0.0322f,0.141f,0.0514f,0.00985f,-0.0467f,-0.063f,-0.0532f,0.0598f,-0.00988f,-0.0213f,0.0839f,-0.047f,-0.141f,-0.00128f,-0.02f,0.0431f,0.0664f,0.0123f,0.058f,0.023f,-0.122f,0.166f,0.0496f,-0.0618f,-0.0226f,-0.00969f,0.00212f,0.116f,0.0156f,0.00821f,-0.00892f,0.0304f,0.101f,-0.0416f,-0.211f,-0.023f,-0.063f,-0.0505f,0.000813f,-0.0664f,-0.0391f,-0.0322f,0.173f,0.00899f,-0.122f,-0.0441f,0.132f,0.0137f,-0.216f,-0.0694f,-0.0926f,-0.027f,-0.069f,-0.093f,0.0433f,0.0718f,-0.129f,-0.000769f,0.0723f,-0.0592f,-0.0536f,-0.0875f,0.00536f,-0.0357f,0.159f,0.019f,0.0698f,0.00937f,-0.00896f,-0.0119f,-0.016f,-0.0183f,-0.155f,-0.227f,0.0532f,-0.0324f,-0.1f,-0.0912f,-0.0268f,0.0617f,-0.179f,-0.0283f,-0.0904f,0.0231f,-0.301f,-0.00448f,0.237f,0.0105f,0.0149f,0.0661f,0.0172f,-0.0482f,-0.0361f,-0.0324f,-0.0185f,0.0613f,0.0115f,-0.0223f,-0.12f,0.0179f,-0.0286f,-0.0283f,-0.0393f,-0.0104f,0.241f,-0.0543f,0.0555f,-0.0389f,-0.0502f,0.0217f,-0.0464f,-0.0427f,0.00547f,0.0129f,0.0207f,0.00642f,6e-05f,-0.0693f,-0.0337f,-0.0623f,-0.0383f,0.00679f,-0.142f,0.0232f,0.074f,-0.0383f,0.108f,-0.0319f,-0.393f,-0.00377f,0.039f,0.0126f,-0.0405f,-0.0795f,-0.0512f,-0.0965f,-0.0151f,0.194f,0.026f,0.0561f,-0.057f,0.315f,-6.25e-05f,0.00236f,0.0323f,-0.209f,-0.0477f,0.00999f,0.183f,-0.0791f,-0.0782f,0.00394f,-0.0132f,-0.0634f,-0.0108f,0.0397f,0.0563f,0.0163f,0.0325f,0.0326f,0.0114f,0.129f,0.0814f,-0.00198f,-0.0139f,-0.0116f,-0.186f,0.0232f,0.154f,0.0903f,0.179f,0.0784f,-0.00329f,0.0172f,0.00937f,0.0402f,0.031f,0.0552f,0.0531f,0.0925f,-0.00536f,0.134f,-0.0062f,-0.0501f,0.0867f,0.032f,-0.0733f,-0.063f,0.0273f,0.0105f,0.22f,0.0879f,0.0122f,0.163f,-0.0145f,0.0443f,0.001f,-0.0369f,-0.0255f,-0.0371f,0.076f,0.108f,-0.0189f,0.0613f,0.0656f,0.0683f,-0.00117f,0.0899f,0.00634f,0.016f,-0.0446f,0.058f,0.0671f,0.0334f,0.295f,-0.00617f,0.00559f,-0.0469f,0.033f,0.00598f,0.0523f,0.018f,0.0336f,0.0839f,0.03f,0.0853f,0.0373f,0.00394f,-0.0105f,-0.0173f,0.053f,-0.0265f,0.401f,-0.00445f,-0.0281f,-0.0815f,0.1f,0.106f,0.0466f,-0.0461f,-0.0483f,0.0103f,0.00465f,0.108f,0.0559f,-0.0673f,-0.0173f,-0.0539f,0.0221f,0.0339f,0.0347f,-0.0302f,0.108f,0.044f,0.189f,-0.0163f,0.0422f,0.164f,-0.00969f,0.0293f,0.0415f,0.00385f,0.155f,0.0161f,0.0422f,-0.0129f,-0.00127f,0.0021f,-0.0407f,1.18e-05f,0.00133f,0.0879f,0.139f,-0.0591f,0.00644f,-0.0139f,0.0508f,-0.0371f,-0.0397f,0.0989f,0.0651f,-0.0341f,0.0489f,0.0487f,0.145f,-0.0628f,-0.0298f,0.0893f,-0.0544f,-0.0455f,-0.0367f,-0.0664f,0.116f,0.00332f,-0.0612f,0.102f,0.0911f,0.0123f,0.0243f,-0.0951f,0.152f,-0.147f,-0.0157f,0.268f,0.118f,-0.00205f,-0.0779f,0.0351f,-0.0286f,0.133f,0.0521f,0.134f,-0.0525f,0.0252f,0.0431f,-0.0944f,0.00886f,0.01f,0.0897f,0.00757f,0.0368f,-0.133f,-0.0183f,-0.0289f,-0.0571f,-0.0231f,-0.0649f,0.0256f,-0.0945f,0.0193f,-0.00406f,0.0128f,-0.0803f,0.00931f,0.0676f,-0.11f,0.0302f,0.0704f,-0.0304f,-0.0143f,0.000772f,0.0255f,-0.0832f,0.0381f,-0.00926f,0.0211f,-0.0309f,0.291f,0.109f,-0.0608f,-0.0166f,0.062f,-0.0168f,-0.0396f,-0.00618f,-0.0408f,-0.0646f,-0.00641f,0.0706f,-0.0691f,-0.0984f,0.0261f,0.0338f,0.00513f,-0.127f,-0.046f,0.00894f,-0.0604f,-0.0584f,0.0348f,-0.0422f,0.0118f,-0.00489f,-0.0733f,0.0204f,-0.00489f,-0.0791f,0.0193f,-0.0135f,0.0113f,-0.000585f,-0.0305f,-0.0322f,-0.0122f,0.0935f,-0.0803f,-0.059f,0.0228f,-0.0524f,0.109f,-0.00514f,0.117f,-0.00786f,-0.0901f,-0.16f,-0.0466f,0.0871f,-0.114f,-0.17f,-0.0797f,0.0845f,-0.155f,-0.0453f,0.0116f,0.084f,0.244f,-0.051f,-0.00559f,-0.094f,0.0175f,-0.0209f,-0.0332f,-0.137f,-0.0352f,0.0454f,-0.111f,0.0105f,0.166f,0.0123f,-0.0299f,-0.0389f,0.14f,0.219f,0.0462f,-0.0263f,0.0557f,-0.0112f,0.00518f,0.0923f,-0.0432f,-0.023f,-0.0907f,0.0764f,0.0929f,0.122f,0.0167f,0.0222f,0.00158f,0.0984f,0.0819f,-0.0717f,0.00207f,0.0423f,-0.0299f,-0.012f,0.00527f,-0.121f,-0.0415f,-0.0749f,-0.152f,-0.022f,0.0394f,0.0126f,0.0694f,-0.0133f,-0.000462f,0.0598f,0.0732f,0.0145f,0.0745f,0.0332f,-0.00338f,-0.00483f,-0.00698f,0.0529f,-0.0656f,0.0245f,-0.0123f,0.187f,0.0289f,-0.0189f,0.0192f,-0.0216f,0.0313f,0.0694f,-0.0294f,0.00696f,-0.0659f,-0.00857f,-0.079f,-0.000447f,0.0706f,0.000137f,0.0663f,0.0204f,-0.0154f,-0.00409f,-0.0145f,-0.0544f,-0.0191f,-0.112f,-0.0174f,-0.013f,-0.0708f,0.015f,0.00511f,-0.0134f,-0.0159f,0.0986f,-0.0593f,0.0346f,0.0986f,0.0505f,0.0945f,-0.0443f,-0.0325f,0.0444f,0.0317f,-0.0407f,-0.177f,0.0787f,0.0178f,0.0831f,0.0609f,-0.00459f,0.0217f,-0.00135f,0.0404f,0.0251f,0.102f,0.025f,-0.127f,-0.0274f,0.00351f,0.00628f,0.0475f,0.196f,0.0117f,0.0221f,0.0302f,0.0172f,-0.146f,-0.0308f,0.0099f,-0.247f,0.00671f,-0.0043f,-0.0643f,0.0397f,-0.00802f,0.0168f,-0.00643f,0.0344f,0.00102f,-0.0517f,0.013f,-0.0263f,0.00411f,0.0127f,-0.00453f,-0.0715f,-0.0374f,-0.161f,-0.00165f,0.0666f,-0.144f,0.0453f,0.0382f,0.0955f,0.0431f,-0.0361f,-0.0446f,-0.0198f,-0.0822f,-0.0127f,-0.0203f,0.0665f,-0.00163f,0.038f,-0.0141f,0.0251f,-0.0267f,-0.0438f,0.104f,-0.133f,0.0173f,-0.0554f,0.0704f,-0.0243f,-0.0389f,-0.102f,-0.133f,0.0232f,-0.137f,0.223f,-0.254f,-0.0457f,0.0659f,0.14f,0.0129f,0.142f,0.00391f,0.0679f,0.0808f,-0.00442f,-0.142f,0.192f,0.23f,0.0165f,-0.00991f,-0.123f,-0.0443f,0.0704f,-0.0313f,-0.0249f,-0.103f,0.0139f,-0.177f,-0.107f,0.11f,-0.0312f,0.00956f,-0.01f,0.0732f,-0.00761f,0.0284f,-0.0245f,0.127f,0.197f,-0.0673f,-0.0505f,0.235f,0.0266f,-0.102f,-0.0175f,0.0364f,-0.128f,0.00998f,-0.12f,0.0156f,0.0223f,0.115f,-0.0228f,-0.0364f,-0.0231f,0.00171f,-0.16f,0.062f,0.0203f,-0.152f,-0.0447f,-0.0467f,0.0415f,0.0852f,-0.0676f,0.0251f,0.018f,-0.0407f,0.137f,-0.0631f,-0.00196f,-0.0415f,-0.0952f,-0.0547f,0.00397f,-0.211f,0.0498f,-0.0587f,-0.0279f,0.123f,-0.0827f,0.101f,-0.198f,-0.0273f,-0.0163f,0.0155f,-0.0578f,0.051f,-0.122f,-0.0838f,0.083f,-0.0196f,0.0202f,0.0566f,-0.141f,-0.131f,0.00278f,0.00564f,0.0489f,-0.0112f,-0.216f,-0.0935f,0.0885f,0.0381f,-0.116f,0.0582f,0.0429f,-0.116f,0.00282f,0.0344f,-0.0097f,-0.0368f,0.0467f,0.0863f,0.0486f,0.15f,0.074f,0.028f,-0.0187f,0.0809f,-0.0822f,-0.0505f,0.00518f,-0.0497f,-0.1f,0.127f,0.0894f,0.103f,0.115f,0.0471f,-0.0569f,0.149f,-0.0769f,-0.215f,-0.0649f,-0.198f,0.221f,-0.311f,0.133f,-0.171f,0.0276f,0.146f,-0.111f,-0.151f,-0.0738f,0.0635f,0.102f,0.144f,-0.0745f,0.101f,-0.111f,0.0444f,-0.0378f,0.04f,-0.0606f,-0.193f,-0.0143f,-0.106f,-0.00582f,0.108f,-0.00134f,0.202f,-0.0176f,0.133f,-0.0109f,-0.267f,-0.496f,0.0394f,0.00108f,-0.0312f,-0.0258f,0.045f,-0.0699f,0.0506f,-0.0959f,-0.0175f,0.197f,0.0737f,0.0383f,-0.0113f,-0.0333f,-0.11f,0.0549f,0.198f,-0.198f,0.0561f,-0.365f,0.0791f,-0.129f,-0.0524f,0.179f,0.187f,-0.0537f,-0.135f,0.0305f,0.0157f,0.114f,-0.269f,-0.142f,-0.0817f,0.0588f,-0.0858f,-0.156f,0.079f,0.0439f,-0.128f,-0.0654f,-0.0682f,0.0246f,0.086f,0.0637f,0.0132f,0.042f,-0.0394f,-0.0937f,-0.0227f,-0.219f,-0.0269f,0.0143f,-0.0383f,0.0615f,0.0442f,-0.0233f,-0.00345f,0.00669f,0.169f,0.232f,-0.0419f,0.159f,0.198f,0.0411f,0.0679f,0.155f,0.119f,-0.00134f,-0.0207f,-0.0531f,-0.215f,0.0445f,-0.0733f,0.0467f,-0.093f,0.00153f,0.0586f,-0.0365f,-0.0563f,-0.0139f,0.0531f,0.0306f,-0.0348f,-0.0175f,-0.0409f,-0.0783f,0.11f,0.0263f,0.066f,0.0988f,0.148f,-0.0444f,0.19f,-0.327f,-0.0183f,-0.173f,-0.0441f,0.0967f,-0.178f,-0.0952f,-0.0583f,-0.159f,-0.0359f,-0.0114f,0.12f,-0.167f,0.234f,0.0416f,-0.1f,0.0873f,-0.0247f,-0.0417f,-0.0637f,-0.0681f,0.275f,-0.0233f,0.0883f,0.0463f,-0.108f,0.0807f,-0.0807f,0.112f,-0.0881f,0.0893f,-0.052f,0.0129f,0.0515f,0.153f,0.0478f,-0.00245f,-0.115f,-0.107f,-0.0958f,0.0718f,0.0392f,0.137f,0.0331f,0.0395f,0.00799f,0.0898f,-0.156f,-0.0598f,-0.0533f,0.0837f,-0.0357f,0.185f,-0.0394f,-0.0611f,0.145f,0.0435f,-0.0119f,0.00216f,-0.00111f,-0.0138f,0.0332f,-0.0234f,-0.0182f,-0.0665f,0.182f,-0.00597f,0.459f,-0.0581f,0.105f,0.00256f,0.207f,-0.0591f,0.016f,0.375f,0.29f,-0.06f,0.0265f,0.0264f,-0.0214f,0.0525f,0.0102f,-0.0216f,0.0611f,0.00374f,-0.015f,-0.00588f,0.0637f,-0.032f,0.0675f,0.0186f,-0.00612f,-0.0027f,-0.105f,-0.0586f,-0.0396f,0.021f,-0.0443f,0.0518f,0.0185f,-0.0133f,-0.0565f,-0.0203f,0.00512f,0.0177f,0.00762f,-0.0213f,-0.0799f,-0.00154f,0.0204f,0.0138f,0.0165f,-0.0105f,0.0856f,0.0208f,0.0564f,0.0226f,-0.00607f,0.121f,-0.0224f,-0.0201f,-0.0381f,-0.00701f,0.0128f,0.0556f,0.047f,-0.000124f,-0.0159f,-0.00975f,-0.0477f,-0.0266f,-0.193f,0.0463f,-0.0743f,-0.0107f,-0.122f,0.015f,0.0283f,-0.403f,-0.168f,0.0672f,0.0518f,0.0328f,-0.0142f,-0.0778f,0.0196f,-0.108f,0.0237f,-0.0362f,-0.196f,-0.0138f,-0.147f,-0.00311f,0.104f,-0.0319f,-0.0109f,0.0357f,0.0265f,0.00308f,0.0413f,0.0835f,-0.054f,-0.00278f,0.083f,-0.0355f,0.0427f,-0.0149f,-0.113f,0.00897f,0.0463f,0.0286f,0.193f,-0.0098f,-0.0411f,-0.02f,0.0121f,-0.0874f,-0.188f,0.218f,-0.1f,-0.0414f,0.0477f,-0.0649f,0.0204f,-0.00131f,0.0908f,-0.0272f,0.0296f,-0.0136f,0.0374f,-0.0148f,0.0182f,0.0322f,0.079f,0.0224f,-0.00423f,0.0657f,0.129f,0.0381f,0.191f,0.145f,-0.0359f,0.00921f,-0.0531f,0.206f,-0.0219f,0.39f,-0.0317f,0.0116f,-0.0181f,0.00882f,-0.000573f,0.0582f,0.0235f,0.0496f,0.0503f,-0.0345f,0.027f,0.104f,-0.0186f,-0.0508f,-0.0187f,-0.0397f,-0.000976f,0.244f,-0.0178f,0.0103f,-0.00791f,0.287f,-0.0171f,-0.0404f,0.0036f,0.0891f,0.0411f,0.0579f,0.0424f,-0.0282f,0.173f,0.0147f,0.00349f,0.121f,0.0243f,0.046f,-0.0163f,-0.0128f,0.0279f,0.116f,0.0222f,0.0333f,0.116f,-0.0527f,0.0848f,0.0649f,0.249f,0.00156f,0.119f,-0.104f,-0.00766f,-0.0718f,-0.0127f,0.0382f,-0.0788f,-0.0878f,0.0918f,0.0521f,-0.0616f,0.11f,0.159f,0.0153f,0.0057f,-0.0211f,0.0163f,0.0551f,0.0553f,0.00526f,-0.033f,-0.0373f,0.0533f,-0.0387f,-0.0374f,-0.0399f,0.0553f,0.08f,0.00559f,0.0533f,0.00186f,0.0959f,-0.0636f,0.0695f,0.0827f,0.177f,-0.0719f,0.00586f,-0.0689f,-0.00139f,-0.039f,0.0823f,0.0625f,0.141f,-0.0789f,-0.0258f,-0.126f,0.0316f,0.0165f,-0.0361f,0.0204f,0.0435f,-0.0743f,0.0697f,-0.0295f,-0.116f,-0.0176f,0.0224f,-0.358f,-0.0114f,0.163f,0.0404f,0.0604f,-0.00512f,-0.0724f,0.108f,0.0236f,0.0269f,0.114f,0.184f,0.0439f,0.128f,0.04f,-0.0701f,-0.0892f,0.0893f,0.0553f,0.0534f,-0.0841f,0.0252f,-0.00575f,-0.0328f,-0.0971f,0.0272f,-0.0378f,0.035f,-0.0627f,-0.00266f,0.0359f,0.0612f,-0.00903f,0.0781f,-0.0479f,-0.0425f,0.0738f,0.114f,0.0456f,0.0134f,-0.0437f,-0.00138f,-0.166f,-0.113f,-0.0353f,-0.037f,-0.161f,-0.0681f,0.143f,-0.00532f,0.329f,-0.0189f,-0.15f,0.0562f,0.0216f,-0.0481f,-0.116f,0.0547f,-0.122f,0.0703f,0.0511f,-0.0925f,0.123f,0.092f,-0.0676f,-0.0829f,-0.0489f,-0.00168f,0.0229f,0.0508f,-0.0475f,0.013f,0.196f,0.0239f,0.0814f,-0.000544f,0.179f,0.0111f,-0.168f,0.078f,0.0571f,-0.0621f,0.17f,0.213f,0.0321f,-0.247f,-0.0705f,0.0035f,0.00148f,0.0901f,0.00169f,0.202f,-0.0298f,0.0953f,0.114f,0.041f,0.162f,0.0446f,0.0112f,0.0491f,-0.0414f,0.0602f,0.112f,0.0328f,0.0497f,0.0772f,0.0146f,0.181f,0.112f,-0.0227f,0.0112f,0.249f,0.101f,0.237f,0.271f,0.0261f,0.0802f,-0.0838f,0.196f,0.15f,0.00367f,0.0285f,-0.0626f,0.221f,0.0158f,0.135f,0.00442f,0.426f,0.254f,-0.124f,-0.0303f,0.0803f,-0.27f,0.0213f,-0.0289f,0.0363f,-0.0539f,-0.127f,-0.212f,-0.184f,-0.261f,-0.0224f,-0.165f,-0.0772f,-0.0861f,-0.089f,-0.000674f,-0.0707f,-0.258f,0.00247f,0.0881f,0.0411f,-0.117f,-0.139f,-0.008f,-0.0132f,0.0772f,0.0764f,0.0719f,-0.0165f,0.00512f,-0.16f,0.0715f,-0.0468f,0.127f,-0.00491f,-0.0578f,-0.0829f,0.213f,0.235f,0.0172f,-0.12f,0.0838f,0.0194f,-0.0498f,-0.111f,0.027f,0.0468f,-0.0464f,0.213f,-0.185f,0.0273f,-0.0924f,-0.0297f,0.048f,0.0114f,0.176f,0.0348f,-0.0524f,-0.1f,0.0843f,-0.0783f,-0.292f,-0.0589f,-0.0483f,-0.0728f,-0.229f,-0.0121f,0.0427f,0.0191f,0.0577f,0.0311f,0.191f,-0.0632f,0.113f,-0.0786f,0.133f,0.18f,-0.0257f,0.0885f,0.0149f,-0.0423f,-0.0524f,-0.0142f,-0.0406f,-0.0387f,0.0711f,0.199f,0.0565f,-0.102f,-0.215f,0.0518f,0.0429f,0.0105f,0.0955f,0.0738f,0.0238f,-0.025f,0.101f,0.0563f,0.0178f,-0.112f,-0.0185f,-0.145f,-0.0682f,0.0143f,0.078f,-0.0433f,0.19f,0.0608f,0.026f,-0.0879f,-0.0223f,0.0303f,-0.00159f,0.00253f,0.219f,0.0416f,0.00419f,-0.0893f,0.0159f,0.0175f,-0.0294f,0.0234f,-0.139f,-0.0803f,-0.149f,0.00966f,0.0727f,-0.0227f,-0.0511f,0.00796f,-0.0222f,-0.0121f,-0.32f,-0.0354f,-0.148f,0.102f,-0.0886f,-0.00998f,-0.0161f,0.0403f,-0.0693f,-0.0946f,0.178f,-0.0804f,0.0427f,0.0208f,0.044f,0.0389f,-0.0201f,-0.00492f,0.0365f,-0.0466f,0.000264f,0.0601f,0.0128f,0.00258f,-0.16f,-0.0545f,-0.0919f,-0.0359f,0.0831f,0.0858f,-0.0729f,0.0339f,-0.0113f,-0.0165f,0.054f,0.018f,-0.0277f,-0.000682f,-0.0482f,-0.0152f,-0.0265f,0.0254f,-0.0727f,0.07f,-0.0918f,0.0184f,0.0276f,0.0397f,0.0612f,-0.155f,-0.08f,0.0306f,-0.0264f,0.0159f,0.0244f,-0.15f,-0.118f,-0.0683f,0.056f,-0.0621f,-0.0158f,-0.00402f,0.0525f,-0.0123f,0.00104f,-0.00481f,-0.0114f,-0.125f,0.171f,0.0507f,0.266f,0.0373f,0.0607f,-0.0189f,0.0235f,-0.139f,0.00506f,0.0697f,-0.0516f,0.0523f,0.0553f,0.103f,0.0339f,0.0866f,-0.0597f,-0.00554f,0.321f,-0.0514f,-0.131f,0.0245f,0.00175f,0.00329f,-0.0507f,0.0144f,-0.0247f,-0.062f,-0.0445f,0.00534f,0.023f,0.0178f,0.123f,-0.0682f,0.0793f,-0.0152f,-0.0494f,0.0256f,0.242f,0.027f,0.187f,-0.0495f,0.21f,0.00509f,-0.0268f,-0.0142f,0.00247f,-0.0219f,-0.0729f,0.0886f,-0.0439f,0.137f,0.00103f,0.0734f,0.068f,0.122f,-0.0609f,0.00539f,-0.0113f,0.0466f,-0.0906f,0.00346f,-0.0655f,-0.0973f,-0.176f,0.0675f,0.0137f,-0.0631f,0.0432f,-0.116f,-0.248f,-0.143f,-0.0379f,-0.0871f,-0.0183f,0.0504f,0.0394f,-0.1f,-0.0284f,-0.0904f,0.0414f,0.0292f,0.0632f,-0.04f,-0.0389f,-0.0174f,-0.1f,0.0414f,-0.0171f,0.0245f,-0.0097f,-0.164f,0.011f,0.123f,0.0276f,0.166f,0.00846f,-0.0689f,0.0247f,0.0329f,0.0626f,-0.0414f,0.0233f,0.0309f,0.0334f,-0.0212f,0.04f,0.0544f,-0.0452f,0.0448f,-0.0094f,0.0709f,0.0646f,-0.19f,0.0631f,0.0681f,0.136f,-0.0173f,0.0437f,-0.129f,-0.0627f,-0.0336f,0.0436f,0.0286f,0.171f,-0.00585f,0.0909f,0.0773f,0.0466f,0.0787f,0.0409f,0.136f,-0.111f,0.00805f,0.0223f,-0.00193f,-0.00192f,-0.0176f,-0.0654f,-0.017f,0.00869f,0.0914f,0.0481f,-0.00952f,-0.00862f,-0.0376f,1.15e-05f,-0.256f,-0.0604f,-0.0563f,-0.0512f,-0.0132f,0.0334f,0.151f,0.0796f,-0.13f,-0.0433f,-0.0705f,-0.0554f,-0.164f,-0.0876f,-0.105f,0.0429f,-0.00131f,0.126f,0.0442f,-0.0954f,0.00172f,0.0188f,-0.0635f,0.199f,-0.00843f,-0.00213f,-0.00165f,-3.2e-05f,-0.0959f,-0.039f,0.0574f,-0.115f,-0.0368f,0.0465f,-0.0109f,-0.0657f,0.0107f,0.126f,-0.0431f,0.0359f,-0.0213f,0.0286f,0.039f,0.0288f,-0.0211f,-0.0447f,-0.38f,-0.0411f,-0.00265f,-0.0144f,-0.0427f,0.0481f,0.0299f,0.0226f,-0.0451f,0.0632f,0.00129f,0.0313f,0.0175f,-0.00164f,0.0662f,-0.0411f,-0.0473f,0.0239f,-0.0688f,0.027f,-0.0826f,0.00676f,-0.00345f,0.00117f,0.0454f,-0.0363f,-0.0159f,0.00345f,-0.0543f,0.257f,-0.0938f,0.0308f,0.00677f,-0.029f,0.0271f,0.0284f,0.0566f,0.0072f,-0.0419f,-0.108f,-0.0787f,-0.00303f,-0.0585f,-0.0134f,0.0257f,-0.026f,0.0479f,-0.112f,0.125f,0.00972f,0.00894f,0.0114f,0.157f,0.125f,0.00177f,0.127f,-0.0741f,-0.0472f,-0.0543f,-0.0754f,-0.155f,-0.0633f,0.0958f,-0.0458f,-0.245f,0.0629f,0.11f,-0.00612f,-0.184f,-0.192f,0.129f,0.00638f,-0.0816f,0.0843f,-0.0136f,0.185f,-0.104f,0.111f,0.0778f,-0.0846f,-0.246f,0.00811f,-0.15f,0.0168f,-0.133f,0.436f,0.0508f,0.139f,0.103f,0.0904f,-0.103f,0.127f,0.00564f,-0.0307f,0.126f,-0.104f,0.122f,0.0943f,-0.1f,-0.137f,-0.0694f,-0.101f,0.17f,-0.00682f,0.0108f,0.116f,-0.0356f,-0.0672f,-0.11f,0.129f,-0.0859f,-0.135f,-0.078f,0.107f,0.124f,0.0942f,0.055f,0.0297f,-0.164f,0.119f,-0.0313f,0.0745f,-0.0772f,0.0774f,-0.0899f,-0.0941f,-0.0281f,0.00994f,0.0215f,0.0188f,-0.153f,0.0247f,-0.0663f,0.174f,0.0414f,-0.0576f,0.0728f,-0.0336f,-0.0326f,0.191f,-0.127f,-0.000769f,-0.0447f,0.211f,-0.225f,-0.115f,0.0822f,-0.0372f,0.0265f,0.00485f,0.069f,-0.0691f,-0.0231f,-0.179f,0.042f,-0.0319f,0.153f,-0.131f,-0.139f,-0.0455f,-0.0367f,-0.115f,-0.0128f,0.116f,0.0222f,-0.0532f,-0.0261f,-0.326f,-0.0695f,-0.13f,-0.335f,0.174f,-0.231f,0.129f,0.0103f,-0.138f,0.0821f,-0.135f,0.149f,0.0101f,0.079f,0.0466f,0.0895f,-0.0524f,-0.0104f,-0.0851f,-0.0284f,-0.386f,-0.00886f,-0.0159f,-0.000626f,-0.257f,-0.117f,0.0913f,0.00713f,0.0547f,-0.015f,-0.219f,-0.047f,0.0764f,0.225f,-0.0661f,-0.0155f,0.0667f,0.0748f,0.0682f,-0.0507f,-0.139f,-0.0357f,-0.114f,-0.0444f,-0.156f,0.0877f,-0.0483f,0.00127f,-0.0549f,-0.163f,-0.0542f,0.0993f,-0.0772f,0.0439f,-0.0743f,-0.108f,-0.111f,-0.088f,0.0143f,0.0474f,-0.0888f,-0.0206f,-0.375f,0.0425f,0.0292f,-0.0866f,-0.00263f,-0.104f,0.0179f,0.0179f,0.006f,-0.168f,-0.187f,0.0375f,-0.0255f,-0.473f,-0.138f,0.172f,-0.151f,-0.0536f,-0.308f,-0.0296f,-0.111f,0.047f,-0.0668f,-0.0911f,0.0583f,0.0483f,0.0536f,0.0836f,-0.0412f,-0.0476f,0.393f,-0.0133f,-0.0561f,0.00513f,0.125f,0.235f,0.00989f,-0.0131f,0.0765f,-0.00993f,0.00508f,0.0838f,0.0174f,-0.0044f,0.0172f,-0.183f,0.00318f,-0.0243f,-0.00909f,-0.0415f,0.0175f,-0.157f,0.0146f,-0.0425f,0.105f,0.0997f,-0.00971f,0.113f,0.159f,0.0328f,-0.00142f,-0.199f,-0.0135f,-0.103f,-0.0551f,-0.0788f,-0.187f,0.017f,-0.0838f,0.00569f,0.0371f,-0.0782f,-0.00692f,-0.122f,0.0909f,-0.146f,0.075f,-0.0423f,-0.00288f,0.0367f,0.0504f,0.0637f,-0.0465f,0.0122f,-0.129f,-0.0171f,-0.057f,0.149f,0.0356f,0.0138f,0.0379f,0.0584f,-0.0598f,-0.0803f,0.126f,-0.00437f,-0.00441f,-0.0362f,-0.0399f,0.0256f,0.0178f,0.0365f,-0.0179f,-0.0383f,0.0823f,0.0684f,0.0458f,0.0386f,0.109f,-0.0849f,-0.223f,0.00403f,0.0231f,-0.0236f,0.0312f,-0.0446f,0.0147f,-0.0164f,-0.117f,-0.235f,-0.0309f,0.0328f,0.0316f,-0.00843f,0.152f,-0.0152f,-0.158f,-0.0603f,-0.0111f,0.0537f,0.114f,-0.108f,-0.0678f,-0.0307f,-0.0537f,-0.0172f,0.0148f,-0.0879f,0.0417f,-0.00917f,0.00525f,-0.0255f,0.0145f}; +float neck__lateral_convs__0_pw_bias[64] = {0.0736f,-0.0177f,0.0164f,-0.0535f,-0.0729f,0.0122f,-0.0804f,0.0817f,0.00686f,-0.0303f,0.0194f,-0.0509f,0.0151f,0.177f,-0.0465f,0.0148f,-0.0492f,-0.0969f,0.00622f,0.0889f,-0.0861f,-0.0183f,0.0335f,0.046f,0.148f,0.0391f,0.00969f,-0.0329f,0.0012f,0.0332f,-0.0102f,0.12f,-0.173f,-0.0656f,0.0226f,0.0592f,0.16f,-0.0818f,-0.0157f,-0.0143f,-0.0517f,-0.00359f,-0.00586f,0.0298f,0.0128f,-0.0162f,0.0936f,-0.0103f,-0.0116f,-0.0151f,0.0466f,0.22f,0.113f,0.0475f,-0.0468f,-0.0302f,-0.0979f,-0.0285f,0.0203f,0.148f,0.0766f,-0.0989f,0.0128f,-0.0467f}; +float neck__lateral_convs__0_dw_weight[64*1*3*3] = {-0.198f,-0.0844f,0.0525f,0.438f,-0.184f,0.206f,0.0527f,0.153f,-0.186f,-0.0847f,-0.308f,-0.126f,-0.181f,0.163f,0.561f,-0.014f,0.112f,-0.0136f,-0.059f,0.0674f,0.333f,-0.0463f,-0.0998f,-0.839f,0.311f,-0.12f,-0.536f,-0.219f,0.0679f,-0.43f,-0.316f,-0.0454f,0.285f,0.139f,-0.0685f,0.132f,-0.061f,0.455f,0.303f,-0.0984f,0.346f,-0.0531f,0.247f,-0.0866f,0.345f,-0.165f,-0.325f,0.18f,-0.124f,-0.187f,0.13f,-0.382f,0.198f,0.0484f,-0.903f,-0.163f,0.137f,-0.19f,-0.0474f,0.0579f,0.0335f,0.125f,0.201f,-0.999f,-0.242f,-0.0992f,0.151f,0.367f,-0.429f,0.588f,0.203f,0.139f,-0.154f,0.207f,-0.425f,-0.322f,-0.0608f,0.274f,0.499f,-0.146f,-0.0298f,-0.091f,-0.881f,0.254f,0.227f,0.0736f,-0.122f,2.15f,-0.188f,-0.199f,-0.736f,0.652f,0.667f,-0.831f,-0.27f,-0.0125f,0.348f,-0.243f,-0.215f,0.551f,-0.549f,-0.207f,-0.184f,-1.41f,1.06f,1.6f,0.401f,-0.0688f,0.175f,-0.516f,-0.879f,0.239f,-0.642f,-0.019f,0.0776f,-0.37f,0.117f,-0.244f,0.753f,-0.169f,0.522f,-0.144f,-0.0524f,-0.0955f,0.0777f,0.164f,0.169f,2.28f,-0.414f,-0.104f,0.309f,0.47f,-0.12f,-0.12f,0.017f,0.216f,-0.0431f,-0.0745f,-0.144f,-0.197f,-0.102f,0.242f,0.579f,0.0352f,0.0377f,-0.0613f,0.815f,0.00784f,0.271f,-0.191f,-0.0956f,-0.936f,0.215f,-0.129f,-0.352f,0.246f,-0.259f,-0.44f,-0.0837f,0.0095f,0.484f,0.333f,-0.113f,-0.16f,0.101f,0.65f,-0.301f,0.67f,0.351f,0.402f,0.198f,-0.0565f,-0.141f,0.585f,-0.589f,-0.068f,0.0325f,-0.233f,0.131f,-0.11f,0.114f,-0.293f,0.405f,0.22f,0.339f,-0.377f,0.0271f,0.0832f,0.0392f,0.0817f,0.191f,-0.89f,-0.652f,-0.101f,0.151f,0.188f,-0.151f,0.436f,0.373f,0.169f,-0.485f,0.0244f,0.364f,-0.245f,0.0968f,0.119f,0.437f,-0.136f,-0.0152f,-0.105f,-0.733f,0.0673f,0.177f,0.0112f,-0.0258f,0.475f,1.2f,0.224f,-0.425f,-0.000528f,0.0549f,0.0795f,-0.216f,0.2f,0.146f,0.106f,-0.0793f,-0.435f,-0.52f,0.407f,1.f,1.1f,0.436f,1.5f,0.298f,-0.123f,0.313f,-0.299f,-0.685f,0.412f,-0.538f,0.277f,0.0809f,-0.155f,0.181f,-0.0157f,-0.582f,-0.162f,0.0891f,0.0879f,0.31f,0.154f,0.131f,0.0906f,0.165f,-1.47f,-0.916f,-0.0124f,0.0908f,0.319f,-0.763f,0.27f,0.718f,0.079f,-0.287f,0.211f,2.89f,-0.092f,-0.021f,0.173f,0.0126f,0.167f,1.29f,-0.192f,-0.572f,0.264f,0.376f,-0.0363f,-0.0254f,1.97f,-0.819f,0.554f,-0.176f,0.289f,2.18f,-0.629f,-0.109f,0.161f,0.143f,-0.198f,-0.34f,-1.31f,-0.277f,0.0195f,0.803f,-0.631f,1.74f,0.321f,0.728f,-0.243f,0.32f,0.381f,-0.528f,0.189f,-0.233f,0.189f,-0.028f,0.282f,-0.189f,-0.173f,0.72f,-0.426f,0.228f,-0.282f,0.4f,0.119f,0.0986f,0.123f,0.152f,0.305f,-0.591f,-0.0932f,0.134f,0.535f,-0.123f,0.223f,0.296f,0.182f,-0.358f,0.0914f,0.184f,-0.19f,-0.863f,0.139f,0.377f,-0.191f,-0.0618f,-0.128f,1.35f,0.114f,0.171f,-0.173f,-0.0296f,0.592f,1.52f,0.0122f,-0.427f,0.457f,-0.577f,-1.02f,0.024f,0.338f,0.0749f,0.423f,-0.163f,-0.134f,-0.467f,0.414f,-0.105f,-1.05f,0.312f,-0.714f,-0.228f,-0.0614f,0.0249f,1.04f,-0.126f,0.256f,-0.619f,0.338f,0.0746f,-0.458f,0.219f,-0.248f,0.258f,0.0351f,0.457f,-0.0896f,0.215f,0.146f,0.202f,-0.0603f,0.167f,0.618f,0.5f,-0.0286f,0.107f,-0.057f,0.411f,0.64f,0.261f,0.0589f,-0.0311f,-0.0077f,-0.053f,-0.0833f,-0.115f,0.155f,-0.149f,0.229f,-0.0512f,-0.0498f,-0.193f,0.0727f,0.0533f,0.0265f,-0.0909f,-0.711f,0.139f,-0.0261f,-0.0789f,0.00526f,-0.0287f,-0.00234f,-0.211f,0.211f,0.376f,-0.0678f,0.0603f,-0.00737f,-0.464f,0.508f,0.264f,0.772f,-0.798f,0.319f,0.615f,-0.0665f,0.159f,0.182f,-0.69f,0.397f,0.101f,0.458f,0.173f,-0.112f,0.129f,-0.144f,-0.243f,-0.0813f,-0.392f,0.0192f,0.387f,0.213f,0.146f,0.0964f,-0.024f,-0.228f,0.675f,-0.0144f,0.181f,0.0215f,0.776f,0.5f,0.497f,0.0966f,-0.256f,0.178f,-0.0882f,-0.186f,-0.796f,0.219f,-0.00979f,0.731f,-0.0943f,-0.127f,-1.07f,0.0811f,0.386f,-0.166f,-0.0831f,1.48f,-0.0859f,0.318f,-0.355f,0.0154f,0.604f,0.0852f,-0.256f,0.179f,0.21f,0.107f,0.000361f,-0.387f,-0.433f,-0.0502f,0.886f,-0.534f,-1.37f,-0.66f,-0.234f,-0.0262f,0.366f,1.32f,-0.237f,0.628f,-0.427f,0.568f,0.126f,-0.314f,0.12f,-0.518f,0.608f,-0.379f,0.16f,-0.171f,0.407f,0.28f,0.154f,-0.00848f,0.0508f,-1.34f,0.497f,-0.0159f,0.132f,-0.157f,0.17f,-0.489f,0.18f,0.132f,-0.127f,0.0639f,0.0133f,-0.0954f,-0.286f,0.252f,-0.11f,0.247f,0.241f,-0.103f,0.0584f,0.0319f,-0.0195f,-0.0699f,-0.083f,-1.14f,0.223f,-0.00027f,0.0159f,0.197f,-0.117f,0.0795f,-0.0527f,0.319f,0.244f,0.204f,0.00565f,0.0569f,-0.307f,0.446f,0.322f,-0.386f,-0.631f,0.0814f,-0.329f,-0.031f,0.144f,-0.0104f,-0.303f,0.244f,-0.0542f,0.421f,0.174f,-0.0812f,0.107f,-0.223f,0.279f,0.129f,0.339f,-0.403f,0.19f,0.14f,0.121f,-0.0336f,0.00526f,0.0203f}; +float neck__lateral_convs__0_dw_bias[64] = {0.207f,0.683f,0.647f,0.292f,0.289f,-0.15f,0.922f,0.000689f,0.34f,0.803f,1.04f,0.307f,0.156f,0.0139f,0.717f,0.793f,0.744f,0.451f,-0.0962f,0.725f,1.1f,0.253f,0.527f,-0.326f,0.613f,0.11f,0.345f,0.0456f,0.637f,-1.19f,0.332f,0.0712f,1.04f,0.529f,0.73f,0.943f,1.42f,0.676f,-0.5f,-0.123f,-0.204f,-0.711f,0.361f,0.0568f,-0.263f,-1.06f,0.759f,0.554f,1.49f,-0.0811f,0.0507f,2.29f,0.597f,-0.0727f,0.331f,0.433f,0.0679f,-0.286f,0.624f,-0.336f,0.67f,0.924f,0.185f,-0.49f}; +float neck__lateral_convs__1_pw_weight[64*64*1*1] = {0.0266f,0.175f,-0.0141f,0.0854f,0.16f,-0.00956f,-0.0457f,0.176f,-0.0442f,0.102f,-0.0411f,-0.0269f,0.0461f,-0.0479f,0.0364f,-0.0367f,0.00368f,0.172f,-0.0573f,0.161f,-0.121f,0.0823f,0.0248f,0.00117f,-0.00566f,0.0867f,-0.0667f,-0.0837f,-0.0496f,0.014f,0.0363f,0.108f,0.0691f,-0.0368f,0.126f,-0.0405f,-0.0142f,-0.0575f,0.0523f,-0.122f,0.0364f,-0.0326f,-0.0303f,-0.088f,0.0666f,-0.0215f,0.115f,0.134f,-0.0525f,0.12f,0.0126f,-0.0439f,-0.0629f,0.107f,-0.0103f,0.0277f,-0.132f,0.018f,-0.0211f,-0.0346f,0.0387f,-0.014f,0.0642f,-0.0331f,0.00144f,0.0755f,-0.095f,-0.0726f,0.102f,0.0185f,-0.0569f,-0.0288f,-0.0441f,-0.0868f,0.119f,0.0297f,-0.0219f,0.00222f,-0.0459f,-0.0147f,0.000397f,-0.00866f,-0.0138f,0.0197f,-0.133f,-0.0203f,0.035f,-0.014f,-0.077f,-0.0674f,0.0249f,-0.0516f,0.0156f,-0.089f,-0.226f,0.276f,-0.0601f,0.0951f,0.0227f,0.15f,-0.0464f,-0.0205f,-0.087f,-0.0366f,0.0821f,-0.324f,0.0777f,-0.0223f,-0.0351f,0.0536f,0.0969f,0.171f,0.06f,0.127f,-0.139f,-0.00815f,-0.107f,-0.0171f,0.0606f,0.0299f,0.00906f,-0.00173f,0.0603f,-0.04f,-0.0426f,-0.0124f,-0.0435f,-0.0973f,-0.0573f,0.13f,0.0465f,0.00736f,-0.0342f,-0.0133f,-0.0619f,-0.00962f,0.0481f,0.0377f,0.00654f,0.0481f,-0.00587f,-0.0909f,0.00192f,0.0561f,0.0294f,0.0441f,0.069f,0.0717f,0.00433f,-0.0407f,-0.0346f,-0.089f,-0.0314f,0.0187f,-0.0495f,0.0688f,0.0775f,0.0325f,0.045f,0.0245f,-0.0688f,0.0133f,0.0586f,0.0329f,0.000728f,0.33f,-0.085f,-0.12f,0.0247f,0.0985f,-0.0679f,0.0615f,0.02f,0.0619f,0.0861f,0.00928f,-0.018f,-0.0892f,-0.137f,-0.158f,0.00781f,0.115f,-0.087f,0.078f,0.0134f,0.0327f,-0.0216f,-0.0237f,0.0219f,-0.0176f,0.00807f,0.0256f,-0.0758f,0.024f,0.0478f,0.0296f,-0.0263f,0.029f,-0.0076f,-0.0666f,0.158f,0.0413f,-0.014f,0.0733f,0.079f,0.0363f,0.102f,-0.0309f,-0.0799f,0.0907f,0.022f,-0.116f,-0.059f,-0.0641f,0.0296f,0.035f,-0.0269f,-0.123f,0.0176f,-0.0306f,-0.128f,-0.0207f,0.0255f,-0.192f,-0.0293f,-0.0843f,0.194f,-0.00605f,0.0128f,-0.0342f,-0.0614f,0.0505f,0.0152f,-0.271f,-0.083f,0.0884f,0.0151f,-0.0645f,-0.0127f,-0.033f,-0.0284f,0.0444f,0.0439f,-0.0665f,0.0343f,0.0343f,0.0126f,0.0414f,0.0194f,0.0431f,0.0234f,0.0489f,0.0768f,0.0343f,-0.0765f,-0.0146f,-0.0181f,0.00106f,0.0944f,-0.0505f,-0.017f,-0.0122f,-0.0172f,0.014f,-0.111f,0.035f,-0.0315f,0.0446f,0.0786f,-0.0532f,-0.0388f,0.0392f,0.299f,0.0741f,0.0223f,-0.0375f,0.0207f,-0.0514f,-0.0311f,0.0285f,0.0275f,-0.00149f,-0.00313f,0.00446f,-0.045f,0.0208f,0.0176f,-0.0339f,-0.0136f,-0.0301f,0.0218f,-0.007f,0.0209f,-0.0946f,0.0612f,-0.00376f,0.0182f,-0.0634f,0.0119f,-0.129f,-0.0561f,-0.0185f,-0.0381f,0.0737f,0.0176f,0.00808f,-0.0214f,-0.0483f,0.077f,0.0276f,0.0757f,-0.00445f,-0.165f,0.00823f,0.0344f,-0.00812f,0.0714f,0.0116f,0.0303f,-0.0237f,0.182f,-0.109f,0.0668f,-0.0445f,0.0595f,0.0335f,-0.0732f,0.127f,-0.0519f,0.0168f,0.0199f,-0.0528f,0.0596f,-0.0895f,-0.13f,0.0186f,-0.0173f,-0.0805f,0.0179f,0.0845f,0.0508f,0.0553f,0.0425f,-0.0553f,-0.0953f,-0.0999f,0.0573f,0.0426f,0.099f,-0.119f,-0.00869f,0.163f,-0.0242f,-0.00503f,-0.0716f,0.0496f,-0.0249f,-0.101f,-0.0042f,0.0122f,-0.0507f,-0.00609f,0.0235f,-0.0785f,-0.0792f,0.00535f,-0.234f,-0.0156f,-0.0816f,-0.0437f,-0.176f,-0.0761f,0.0134f,-0.105f,-0.0368f,-0.123f,0.0331f,0.0583f,-0.0762f,0.0774f,-0.0554f,0.0268f,0.00649f,-0.0362f,-0.0897f,-0.0057f,-0.108f,-0.0175f,-0.168f,-0.115f,0.107f,-0.0669f,0.0659f,0.0104f,-0.0228f,0.122f,-0.0619f,0.243f,0.11f,-0.0872f,0.0338f,-0.0851f,0.0321f,-0.00559f,-0.0524f,-0.086f,0.00966f,0.142f,0.0146f,0.0742f,-0.132f,0.0629f,0.0506f,-0.0665f,0.0226f,-0.104f,0.00345f,-0.034f,-0.271f,-0.0216f,0.034f,0.0212f,0.0045f,-0.0101f,0.0382f,0.116f,-0.123f,0.0474f,-0.0193f,0.00966f,-0.0203f,-0.0278f,0.0255f,-0.0302f,0.043f,0.023f,0.0276f,-0.0555f,-0.0883f,0.107f,0.025f,0.0805f,0.0324f,-0.0298f,0.0481f,-0.0682f,0.0175f,-0.048f,-0.118f,0.0147f,-0.114f,-0.0936f,-0.0475f,-0.0946f,0.106f,-0.152f,-0.0729f,-0.0165f,-0.0521f,0.0224f,-0.0846f,0.232f,0.212f,-0.0862f,-0.0211f,-0.00996f,-0.0212f,-0.139f,0.0609f,-0.141f,-0.0749f,0.028f,-0.0235f,0.0719f,-0.0625f,0.0112f,-0.108f,-0.00592f,0.0571f,-0.173f,-0.0993f,-0.0221f,-0.0796f,-0.0191f,-0.037f,-0.0348f,0.112f,0.00739f,0.0105f,0.0822f,-0.0752f,0.195f,-0.105f,-0.0573f,0.0394f,-0.0513f,0.0807f,0.0234f,0.292f,-0.0276f,0.0447f,0.0493f,-0.0987f,0.0977f,-0.106f,0.151f,0.0724f,-0.0206f,0.0268f,-0.0133f,0.0304f,0.00237f,-0.118f,-0.177f,0.0751f,-0.0815f,-0.0712f,0.013f,0.133f,0.0535f,-0.027f,-0.00714f,-0.0142f,-0.0512f,-0.000413f,0.0938f,-0.0425f,-0.0256f,0.0908f,0.0928f,-0.135f,0.000558f,-0.0392f,-0.133f,0.0529f,0.0044f,-0.0118f,-0.0209f,-0.0123f,0.0317f,0.078f,0.00325f,0.054f,0.192f,-0.0216f,-0.00386f,0.138f,0.041f,0.0799f,0.166f,-0.054f,-0.0654f,-0.0122f,0.199f,0.239f,-0.101f,-0.0171f,0.0731f,0.0165f,0.0256f,-0.0245f,-0.159f,0.0675f,0.0794f,-0.0518f,0.12f,-0.0258f,0.0796f,-0.0176f,-0.0369f,0.0135f,-0.0298f,-0.0195f,0.145f,-0.0615f,-0.0462f,0.0538f,-0.0595f,0.000403f,0.0286f,0.0315f,-0.0706f,0.0959f,0.00537f,-0.0718f,-0.066f,0.00742f,0.0217f,0.0663f,0.0264f,0.12f,-0.0737f,0.011f,0.0569f,-0.0292f,-0.14f,0.000434f,-0.0114f,0.0732f,0.0186f,-0.002f,0.0878f,0.00588f,-0.0504f,0.0063f,-0.00459f,-0.0788f,0.000731f,0.057f,-0.0408f,-0.0432f,-0.0566f,0.027f,-0.389f,0.127f,0.0353f,-0.00581f,0.0557f,0.0309f,-0.0148f,0.066f,-0.0032f,-0.057f,0.0104f,0.0258f,0.105f,0.0852f,0.151f,-0.0394f,-0.0897f,0.0851f,-0.109f,-0.0218f,0.00357f,0.0497f,0.0255f,0.048f,-0.0182f,-0.00586f,-0.0167f,-0.00479f,-0.0658f,0.0524f,0.0346f,0.0694f,0.0171f,-0.0957f,0.102f,-0.202f,0.0936f,0.0239f,0.062f,0.0402f,-0.13f,-0.068f,-0.0415f,-0.00575f,-0.0927f,0.0252f,-0.0306f,0.0393f,-0.0389f,-0.00912f,0.0342f,0.0735f,0.007f,0.067f,0.0327f,-0.107f,-0.016f,0.0233f,0.0153f,-0.111f,0.0221f,-0.0272f,0.0905f,0.00795f,-0.114f,-0.00117f,0.0905f,0.00378f,-0.00825f,0.0713f,-0.0838f,-0.111f,0.0655f,-0.126f,-0.0914f,-0.0881f,0.0395f,-0.0797f,-0.104f,0.0387f,-0.0996f,0.0421f,-0.0102f,0.0861f,0.0727f,-0.0872f,0.0128f,-0.0822f,0.255f,-0.0591f,-0.00838f,0.0681f,-0.072f,0.108f,-0.0699f,0.0183f,-0.00422f,-0.213f,0.173f,0.0697f,0.0113f,-0.0114f,-0.0436f,0.0415f,0.0183f,-0.0347f,0.0282f,0.0299f,-0.127f,0.0519f,0.105f,-0.0352f,0.0446f,0.089f,-0.0424f,-0.0882f,-0.0167f,0.0469f,-0.00286f,-0.177f,-0.129f,-0.00323f,0.0555f,-0.0208f,-0.0784f,-0.135f,0.0938f,-0.0101f,-0.000437f,0.0586f,-0.0125f,-0.0884f,-0.206f,0.0569f,0.0172f,0.0499f,-0.0594f,-0.158f,-0.13f,-0.0222f,0.0268f,-0.0139f,-0.0971f,-0.044f,-0.0908f,-0.0584f,0.0253f,0.119f,-0.0166f,-0.0704f,0.154f,-0.00751f,-0.0271f,-0.0628f,0.0224f,0.0872f,0.0583f,0.0506f,0.0591f,-0.0138f,-0.0859f,-0.143f,0.171f,-0.0479f,0.102f,0.00537f,-0.108f,0.0457f,-0.0616f,-0.0244f,-0.0222f,-0.0333f,0.105f,-0.042f,0.0216f,-0.103f,0.047f,0.036f,-0.00995f,-0.0362f,-0.00366f,0.0912f,-0.0797f,0.00802f,0.00915f,0.0875f,0.0643f,0.0518f,0.0938f,-0.0399f,-0.0993f,-0.00485f,-0.097f,0.00782f,-0.0159f,-0.117f,-0.0394f,0.0648f,-0.0383f,-0.0247f,0.053f,0.119f,0.0277f,0.0654f,-0.0247f,-0.0948f,-0.113f,-0.0526f,0.035f,0.00144f,-0.196f,0.033f,-0.0844f,-0.033f,-0.0532f,-0.03f,0.00818f,0.0583f,0.0282f,0.0585f,-0.0178f,-0.0282f,0.0606f,0.0345f,-0.139f,0.101f,0.0601f,0.208f,-0.0733f,-0.0501f,-0.0303f,-0.0502f,-0.151f,0.0993f,-0.0398f,0.0991f,-0.0208f,0.0514f,-0.0639f,-0.0339f,0.0535f,-0.0192f,-0.082f,-0.00279f,0.0439f,-0.0201f,-0.174f,0.0175f,-0.0362f,-0.00852f,0.148f,-0.0476f,-0.0191f,0.081f,0.0089f,0.0142f,0.0478f,0.0677f,0.0354f,0.0391f,0.00478f,0.135f,0.0707f,0.011f,-0.0236f,-0.135f,0.0237f,-0.00445f,0.109f,-0.0332f,-0.0101f,0.0176f,0.0596f,-0.0611f,-0.00738f,-0.0515f,0.046f,0.0142f,-0.0482f,-0.0107f,0.0602f,-0.00906f,0.0175f,-0.0253f,0.0642f,-0.0808f,-0.00265f,-0.0754f,-0.0596f,0.0827f,-0.0925f,0.113f,0.0144f,0.00379f,0.00451f,-0.046f,0.169f,-0.00688f,0.0168f,-0.0795f,-0.0205f,0.0519f,0.00516f,-0.0412f,-0.0602f,-0.0846f,0.0636f,0.0649f,0.0955f,-0.0268f,0.0146f,0.0674f,0.0358f,0.147f,-0.184f,-0.0108f,-0.00347f,0.0066f,-0.0717f,0.0636f,0.0918f,0.00517f,-0.0336f,-0.00678f,-0.0284f,-0.143f,0.124f,-0.0286f,-0.0225f,0.163f,0.00179f,-0.00519f,-0.0601f,0.0574f,0.0739f,0.0758f,-0.0129f,0.132f,0.0184f,0.00162f,0.0275f,0.0321f,-0.102f,-0.00282f,-0.106f,0.0569f,0.028f,0.0721f,0.081f,-0.0374f,0.0168f,0.088f,-0.0627f,-0.0417f,0.188f,-0.0348f,0.0751f,0.0323f,-0.0218f,-0.0448f,-0.193f,-0.073f,0.138f,-0.0808f,0.0924f,0.0536f,0.0863f,-0.0421f,0.0959f,-0.0311f,-0.128f,-0.156f,-0.0769f,0.0607f,-0.0503f,-0.104f,0.293f,0.107f,0.0566f,0.101f,0.115f,-0.031f,-0.0513f,-0.00823f,-0.00834f,0.0122f,0.014f,-0.0608f,-0.0105f,0.0899f,-0.268f,0.0179f,0.0472f,0.0766f,-0.0277f,0.0567f,-0.0387f,-0.079f,0.0755f,0.0594f,-0.00044f,-0.0766f,-0.115f,0.0252f,0.111f,-0.039f,0.00779f,0.0825f,0.0352f,0.0367f,-0.00761f,-0.00363f,-0.0127f,0.0688f,-0.0259f,-0.141f,-0.0236f,-0.0719f,-0.0931f,0.0881f,-0.0368f,0.073f,-0.0121f,-0.00811f,-0.000725f,-0.0549f,0.0457f,0.0184f,0.122f,-0.0129f,0.00682f,0.0387f,-0.0554f,0.0343f,-0.0975f,0.00755f,0.0356f,0.00535f,0.0604f,0.107f,0.0112f,0.0655f,-0.11f,0.00153f,-0.0513f,-0.0266f,-0.039f,0.00143f,0.148f,-0.0883f,-0.0602f,0.00347f,0.0914f,-0.0243f,-0.00128f,-0.0135f,0.0418f,-0.0869f,0.00756f,0.00662f,-0.0231f,-0.0453f,-0.161f,-0.055f,0.142f,-0.007f,0.144f,0.014f,0.0943f,-0.0329f,-0.0932f,0.0395f,0.0699f,-0.0289f,-0.011f,0.0568f,-0.0398f,-0.00889f,0.0394f,-0.0124f,-0.0346f,0.007f,0.0802f,0.105f,-0.00182f,0.0182f,-0.0639f,0.0156f,-0.0999f,-0.139f,0.031f,-0.0591f,-0.0379f,0.0352f,0.0511f,0.0207f,0.129f,0.0682f,-0.126f,0.0566f,0.0381f,0.0776f,-0.0599f,-0.0891f,-0.0366f,0.0375f,0.018f,-0.0414f,0.0272f,-0.00611f,0.0526f,-0.0188f,0.0719f,0.0375f,0.00811f,-0.024f,-0.046f,0.025f,-0.0451f,-0.0266f,0.0248f,-0.0286f,0.0191f,0.0262f,0.0132f,-0.0405f,-0.323f,0.0339f,0.208f,0.0777f,0.0241f,0.0646f,-0.0485f,-0.0716f,0.000917f,-0.0511f,-0.0523f,-0.00452f,0.002f,-0.028f,0.0246f,0.0158f,0.0182f,-0.0545f,0.119f,-0.128f,-0.135f,-0.0542f,-0.0444f,0.0515f,-0.0723f,0.0744f,-0.125f,-0.114f,-0.00619f,-0.0392f,0.123f,-0.0505f,0.12f,0.0481f,-0.0678f,-0.0942f,0.0187f,-0.0581f,-0.119f,0.129f,-0.033f,0.184f,0.101f,-0.0382f,0.0186f,0.0907f,0.0491f,-0.00134f,-0.0552f,0.0504f,-0.0817f,-0.186f,-0.0579f,-0.00176f,-0.146f,-0.0647f,-0.0447f,0.0734f,-0.0399f,0.137f,0.156f,-0.00531f,-0.124f,-0.0213f,0.163f,-0.049f,0.0201f,0.00566f,-0.119f,-0.0909f,0.114f,0.12f,-0.00589f,0.0716f,-0.138f,0.058f,0.0145f,-0.0271f,0.0276f,0.0501f,-0.293f,-0.0206f,0.000774f,-0.128f,-0.0232f,0.313f,0.0416f,-0.0374f,-0.00886f,0.0624f,0.0234f,0.0363f,-0.0188f,-0.0241f,-0.0561f,0.027f,-0.0794f,0.0606f,0.0306f,0.00562f,0.0978f,0.0239f,-0.01f,-0.0114f,0.0314f,0.0289f,0.0469f,-0.0332f,-0.134f,0.0102f,0.0381f,0.121f,0.0394f,0.00437f,-0.14f,0.0305f,0.03f,0.0851f,0.0682f,0.0348f,-0.00234f,0.0431f,0.0931f,-0.000842f,-0.126f,0.0468f,-0.0745f,0.0132f,-0.11f,-0.0592f,-0.0231f,0.00474f,0.0719f,0.0781f,-0.0319f,-0.162f,0.146f,-0.0646f,-0.0072f,-0.335f,-0.084f,-0.0388f,-0.131f,-0.00159f,0.0924f,-0.00802f,-0.0954f,-0.015f,-0.0822f,0.0694f,0.0455f,-0.0336f,-0.0122f,0.0403f,-0.177f,-0.0437f,0.0066f,-0.111f,0.0117f,-0.0618f,-0.00287f,0.0268f,-0.0275f,-0.0334f,0.0472f,0.0985f,-0.00284f,-0.0211f,0.000714f,-0.101f,0.0806f,-0.0341f,-0.0608f,-0.031f,0.0276f,-0.0467f,0.0761f,0.0349f,-0.137f,0.00649f,0.00169f,0.0797f,0.00744f,0.00754f,-0.0648f,-0.0673f,-0.0457f,-0.0841f,-0.0459f,-0.0584f,0.0517f,0.00401f,-0.158f,-0.0206f,-0.0792f,0.0324f,-0.0109f,-0.16f,0.0789f,-0.0484f,0.0291f,-0.0831f,0.322f,0.0908f,0.0407f,0.0803f,-0.00294f,-0.147f,0.00161f,-0.0486f,0.0866f,-0.0178f,0.0972f,0.207f,-0.0678f,-0.0131f,-0.055f,0.0014f,-0.127f,0.0538f,-0.0499f,-0.0173f,-0.165f,0.11f,0.235f,0.144f,0.0554f,-0.0954f,-0.0582f,-0.0194f,0.197f,-0.0254f,-0.0185f,0.097f,-0.012f,0.0684f,-0.189f,0.0265f,-0.0201f,-0.114f,-0.00865f,-0.037f,0.052f,0.123f,0.0683f,0.076f,-0.0849f,0.104f,0.086f,0.106f,-0.0666f,0.0833f,-0.0747f,0.067f,-0.1f,-0.023f,-0.0792f,0.0179f,0.0438f,0.0793f,-0.0028f,-0.0475f,-0.172f,-0.0767f,-0.0495f,-0.145f,-0.215f,0.0515f,-0.0172f,-0.0138f,-0.0183f,-0.00374f,0.0356f,0.0288f,0.0177f,0.0366f,-0.0326f,-0.0749f,0.0152f,0.0258f,-0.00789f,0.00108f,0.173f,-0.076f,-0.00447f,0.00288f,-0.0454f,-0.0364f,-0.00918f,0.00291f,0.0174f,0.0552f,0.00858f,0.0576f,0.051f,0.146f,0.102f,-0.0127f,0.0041f,0.00692f,0.0164f,-0.0204f,-0.0156f,-0.0461f,0.0244f,-0.00194f,0.107f,-0.0112f,0.0303f,-0.0513f,0.0974f,-0.0817f,-0.00911f,-0.0152f,0.337f,-0.0675f,-0.0597f,-0.0151f,0.0537f,-0.0385f,-0.109f,-0.00414f,-0.0575f,0.0275f,0.0358f,-0.0607f,-0.0652f,0.0255f,-0.0082f,0.053f,0.096f,-0.0641f,0.019f,0.00452f,0.0269f,0.0795f,-0.06f,-0.0613f,0.119f,-0.0367f,-0.0944f,-0.0513f,0.126f,-0.135f,0.0455f,-0.0434f,0.0529f,-0.0149f,-0.132f,0.0635f,-0.0595f,-0.014f,-0.0964f,0.152f,0.0265f,-0.107f,0.13f,0.112f,0.0533f,0.0598f,-0.0105f,-0.0233f,-0.0139f,-0.013f,0.0439f,0.0216f,0.0163f,-0.0879f,0.0212f,-0.06f,0.0993f,0.00733f,0.0107f,-0.00418f,-0.157f,-0.0584f,0.19f,0.0877f,0.096f,0.114f,-0.302f,-0.0874f,0.0511f,-0.0187f,0.076f,-0.0494f,-0.102f,0.0876f,0.0843f,0.0614f,0.317f,-0.0774f,-0.0481f,0.0918f,-0.0929f,0.0388f,-0.13f,0.0626f,0.0424f,-0.104f,0.017f,-0.0213f,0.0763f,0.0645f,-0.0211f,-0.0126f,0.0158f,-0.0122f,-0.0095f,0.0406f,-0.0838f,-0.0455f,0.00398f,0.0135f,-0.0601f,0.0309f,0.0632f,-0.0621f,0.0468f,-0.0499f,-0.0934f,-0.0476f,0.0987f,0.0239f,-0.00563f,0.0985f,-0.0303f,0.0741f,0.0121f,-0.129f,0.075f,0.0601f,-0.00598f,-0.0425f,0.0947f,0.0841f,0.0566f,-0.00823f,0.0892f,-0.11f,0.0748f,-0.0445f,-0.0603f,0.14f,0.0503f,0.0676f,-0.0287f,-0.00157f,-0.404f,0.00636f,0.166f,0.0425f,0.0394f,-0.00497f,-0.00632f,0.000906f,0.0343f,-0.00611f,-0.00556f,0.0255f,0.0157f,-0.00982f,-0.126f,0.0482f,-0.0492f,-0.038f,0.0105f,-0.0178f,-0.0171f,0.0739f,0.0436f,-0.0173f,0.0206f,0.049f,0.0138f,-0.0322f,0.0106f,-0.0298f,-0.0319f,-0.059f,-0.0346f,0.034f,-0.0237f,0.0345f,0.0309f,-0.0397f,-0.0858f,0.000676f,0.0129f,-0.0715f,-0.0132f,-0.0052f,0.00178f,-0.00711f,0.0158f,-0.157f,-0.0196f,-0.000268f,-0.042f,-0.0223f,0.0374f,0.035f,-0.0453f,-0.0638f,-0.0609f,-0.0458f,-0.00496f,-0.0745f,-0.0118f,0.00174f,-0.039f,0.0214f,-0.0694f,-0.0302f,-0.0565f,-0.0545f,-0.0421f,-0.0246f,0.0257f,0.0234f,0.00997f,0.0159f,0.0648f,0.0437f,0.0126f,0.0509f,-0.0785f,-0.0191f,-0.0471f,-0.0366f,-0.0359f,0.0689f,0.0512f,0.142f,0.0518f,0.0127f,0.035f,-0.0585f,-0.0112f,-0.00855f,-0.115f,0.0495f,-0.0956f,0.11f,0.0432f,-0.102f,-0.0289f,-0.0371f,-0.0198f,-0.105f,0.071f,-0.0498f,0.000974f,-0.0241f,0.0413f,0.00483f,0.0517f,-0.0173f,-0.0278f,-0.0617f,0.0352f,0.082f,0.0109f,-0.0317f,-0.00526f,-0.0542f,0.00939f,0.242f,-0.0573f,-0.197f,-0.0494f,-0.101f,-0.164f,-0.0717f,0.0592f,-0.0395f,-0.0889f,-0.0125f,-0.0294f,-0.00439f,0.00214f,0.0326f,0.00338f,-0.0215f,-0.00821f,-5.17e-05f,0.156f,0.0657f,-0.0117f,-0.0568f,0.0203f,-0.112f,-0.0726f,0.0328f,-0.0393f,0.12f,-0.052f,-0.0207f,0.00407f,-0.0379f,0.00159f,-0.00763f,0.204f,0.217f,-0.0468f,-0.0153f,0.122f,-0.117f,-0.0902f,0.08f,-0.0251f,0.000152f,0.167f,-0.0933f,0.0108f,-0.182f,-0.0457f,0.0175f,0.0304f,-0.0104f,-0.0992f,-0.0513f,0.0119f,0.119f,0.0629f,-0.0562f,-0.0307f,0.0113f,0.0766f,0.0373f,0.125f,-0.073f,0.0824f,-0.0455f,-0.0058f,0.0575f,0.0309f,0.00571f,-0.0111f,0.153f,-0.0343f,0.0566f,-0.0206f,-0.141f,-0.055f,0.00231f,0.0174f,0.0225f,0.0286f,0.00458f,-0.0108f,0.0611f,-0.00297f,0.0472f,0.0787f,-0.0233f,-0.00264f,-0.0767f,-0.149f,0.0702f,-0.0353f,-0.0754f,-0.0485f,-0.0564f,-0.119f,-0.065f,0.189f,0.106f,-0.0157f,0.332f,0.0141f,-0.0386f,-0.0367f,-0.0422f,0.054f,-0.0778f,0.0199f,-0.0135f,0.0472f,0.0689f,-0.0101f,0.018f,-0.0335f,-0.00633f,-0.0754f,0.032f,0.0457f,0.0869f,-0.0444f,-0.0367f,0.0698f,0.0266f,0.0229f,-0.056f,0.00972f,-0.0507f,0.108f,-0.0301f,-0.122f,0.0261f,-0.0558f,0.00415f,-0.0522f,0.0442f,0.0796f,-0.0193f,0.0299f,0.0787f,0.0596f,0.315f,0.0252f,-0.0574f,-0.0885f,0.0247f,0.118f,0.105f,-0.0127f,-0.0301f,0.0673f,-0.0109f,0.000693f,-0.0573f,-0.022f,0.0159f,-0.105f,0.0134f,-0.00825f,-0.00974f,0.0231f,0.00731f,0.143f,0.0623f,-0.00222f,0.0178f,-0.00332f,0.0119f,-0.0244f,0.0661f,-0.0895f,-0.0612f,-0.0661f,0.0171f,0.0182f,-0.0972f,-0.0994f,0.021f,0.118f,-0.0379f,-0.0535f,0.0928f,0.0934f,-0.107f,-0.0258f,-0.0128f,-0.0885f,-0.0299f,-0.0606f,0.0507f,-0.151f,0.00903f,0.0866f,-0.0753f,0.0542f,0.149f,0.113f,0.0706f,-0.0754f,0.214f,0.0583f,-0.106f,0.0494f,0.016f,0.0172f,-0.0167f,-0.0381f,0.0352f,0.0135f,-0.0172f,-0.0273f,0.0846f,0.0476f,0.0968f,0.0108f,0.0249f,-0.0188f,0.0643f,0.00134f,-0.0307f,-0.000268f,-0.18f,-0.00275f,0.0208f,-0.0241f,-0.0281f,-0.0378f,-0.0177f,-0.0027f,0.138f,0.0267f,0.0462f,-0.071f,0.00374f,-0.0161f,-0.0333f,0.024f,0.0346f,0.0192f,0.0371f,-0.102f,-0.0485f,-0.302f,-0.00598f,-0.00989f,-0.00279f,0.0155f,0.0192f,-0.0357f,0.0598f,-0.0124f,0.0445f,-0.0194f,-0.15f,-0.0125f,0.0213f,-0.0764f,0.00174f,-0.0325f,0.0391f,-0.117f,-0.0371f,-0.0302f,-0.0785f,-0.0327f,-0.0394f,0.0143f,-0.0549f,-0.0468f,0.0195f,-0.155f,0.00398f,-0.0217f,-0.105f,-0.0281f,0.0265f,-0.0106f,-0.103f,-0.0181f,-0.0707f,-0.035f,-0.114f,0.0238f,0.0929f,-0.0821f,-0.142f,-0.0655f,-0.00503f,-0.0401f,-0.0569f,0.0291f,0.0975f,-0.0176f,0.0435f,0.119f,-0.0665f,-0.0725f,0.0941f,-0.0872f,0.0333f,0.0189f,-0.0026f,0.0155f,-0.089f,-0.103f,0.133f,0.035f,0.0228f,-0.0355f,-0.12f,-0.0366f,0.156f,0.0289f,0.0131f,0.135f,-0.0616f,0.0697f,0.0751f,0.103f,-0.027f,0.0933f,0.0386f,-0.164f,-0.0976f,0.0312f,0.0153f,0.00409f,0.0448f,0.00385f,0.0442f,0.185f,-0.149f,0.051f,0.0184f,0.0979f,0.127f,-0.0938f,0.0237f,-0.00143f,0.0511f,0.0321f,-0.0807f,-0.00603f,0.000495f,0.009f,-0.0121f,-0.168f,0.0272f,-0.0704f,0.185f,0.138f,-0.0296f,-0.0456f,-0.112f,0.2f,0.0242f,-0.0157f,0.0677f,0.148f,-0.132f,0.0544f,-0.00489f,-0.00201f,-0.0261f,0.0362f,0.0443f,0.169f,-0.131f,-0.0946f,-0.0484f,0.0517f,0.083f,-0.019f,-0.0227f,-0.0246f,0.0615f,-0.011f,0.0743f,0.0568f,-0.0639f,-0.0599f,-0.0211f,-0.0611f,-0.103f,0.0616f,0.0304f,-0.0179f,-0.0941f,-0.0728f,-0.0651f,-0.0586f,-0.015f,0.0517f,0.0374f,0.0567f,0.0592f,0.0837f,0.00549f,-0.0368f,-0.0365f,-0.0743f,0.129f,-0.03f,0.0395f,-0.0177f,-0.0434f,-0.0252f,0.178f,-0.143f,-0.0503f,0.182f,-0.0539f,-0.0268f,-0.0879f,0.092f,-0.00824f,-0.072f,0.117f,0.0101f,0.0474f,0.0215f,0.0677f,-0.173f,-0.126f,-0.322f,0.271f,0.0534f,-0.178f,0.0337f,-0.0196f,-0.14f,0.0154f,-0.0418f,0.0827f,-0.0283f,0.0699f,0.0497f,-0.0481f,0.201f,-0.0159f,-0.00179f,-0.0891f,-0.00749f,-0.0774f,0.02f,0.101f,-0.0858f,-0.178f,0.16f,0.00695f,0.0664f,0.0221f,-0.45f,-0.282f,0.0725f,0.0323f,0.0676f,-0.108f,-0.0379f,-0.104f,0.103f,0.0689f,0.179f,0.0472f,0.0575f,0.147f,0.211f,0.09f,0.016f,-0.00107f,0.0424f,0.000986f,-0.000339f,-0.00222f,-0.0198f,0.0584f,-0.00718f,-0.0724f,-0.0319f,-0.00459f,-0.0263f,0.00796f,-0.0859f,-0.0378f,0.0126f,-0.267f,-0.0332f,0.00179f,-0.00605f,-0.0102f,0.00493f,-0.0128f,-0.0898f,-0.0485f,-0.000621f,0.00134f,-0.0566f,-0.0593f,-0.0126f,-0.0365f,0.0375f,-0.0223f,-0.0325f,0.0553f,-0.00176f,-0.0151f,-0.0432f,-0.0231f,0.000322f,0.00407f,-0.0259f,0.0296f,0.0234f,-0.0245f,-0.0643f,-0.0136f,-0.00784f,-0.016f,-0.0111f,-0.0498f,0.0118f,0.0204f,-0.00713f,-0.0174f,-0.0313f,-0.208f,0.0202f,0.0514f,0.04f,-0.0635f,0.0167f,0.082f,0.0431f,0.0478f,-0.0632f,-0.0642f,-0.0114f,-0.00727f,-0.00499f,0.106f,-0.042f,-0.00947f,-0.0948f,0.00954f,-0.0526f,0.0658f,-0.179f,-0.0983f,0.0394f,-0.00816f,-0.0953f,0.0306f,0.0781f,0.0254f,0.0638f,0.0477f,-0.152f,-0.0668f,0.0291f,0.137f,-0.0947f,-0.0624f,-0.0075f,0.00521f,0.0549f,-0.0542f,0.0202f,0.00421f,0.00158f,-0.0427f,0.19f,0.0677f,0.131f,0.0139f,-0.0277f,-0.096f,-0.0228f,-0.117f,0.0133f,0.0481f,-0.00543f,0.0341f,-0.011f,-0.0802f,-0.277f,-0.00751f,0.0593f,-0.0125f,0.059f,0.0268f,0.0545f,0.0352f,-0.0108f,-0.011f,0.0448f,-0.0186f,-0.00223f,-0.0506f,0.0738f,-0.0647f,-0.0398f,-0.0469f,0.00999f,0.0216f,-0.147f,0.192f,-0.0254f,-0.0723f,0.084f,-0.0786f,0.173f,0.104f,-0.0242f,-0.0954f,0.0374f,-0.0608f,-0.0471f,0.0726f,-0.0331f,-0.0252f,0.000457f,0.0711f,0.114f,-0.0755f,0.0272f,-0.383f,0.0741f,0.0377f,-0.204f,-0.0228f,-0.105f,0.0452f,0.0334f,-0.0573f,0.0522f,-0.0507f,-0.048f,0.0298f,-0.265f,-0.229f,0.113f,-0.00896f,0.0288f,-0.0727f,-0.0514f,-0.00517f,0.146f,0.0632f,0.0117f,0.0425f,-0.00116f,0.0417f,0.118f,-0.00623f,0.065f,-0.0863f,-0.0358f,0.0266f,-0.0414f,-0.095f,-0.0121f,0.116f,-0.038f,0.0787f,-0.0216f,-0.0146f,0.0106f,-0.116f,0.0315f,0.0553f,-0.00962f,-0.0485f,0.0258f,-0.0332f,-8.03e-06f,-0.144f,-0.0297f,-0.0582f,-0.0102f,0.0453f,0.0146f,-0.0502f,0.0833f,-0.0483f,-0.0266f,0.00446f,0.00441f,0.0886f,0.0513f,0.0281f,-0.0366f,0.0345f,0.0525f,0.0195f,0.111f,-0.0363f,0.0277f,0.0321f,-0.0362f,0.0295f,0.0203f,0.0499f,-0.07f,0.0635f,-0.0966f,-0.036f,0.0611f,0.0138f,-0.0645f,-0.0328f,0.0121f,-0.0662f,-0.0182f,-0.0402f,0.0368f,-0.0251f,0.0671f,-0.291f,0.063f,-0.067f,-0.0514f,-0.0167f,0.132f,0.109f,0.00191f,-0.0398f,0.0647f,0.00643f,-0.00575f,0.0204f,0.0467f,-0.0091f,0.12f,-0.0063f,-0.0111f,0.0395f,0.031f,-0.00518f,0.0176f,0.0307f,0.0282f,-0.0831f,0.0104f,0.0272f,0.0174f,-0.00696f,-0.0169f,0.019f,-0.0828f,0.0187f,-0.0458f,-0.0353f,-0.0134f,0.0638f,-0.0166f,0.0337f,0.0139f,-0.00277f,0.0579f,-0.0049f,-0.0443f,0.0778f,-0.0119f,-0.0211f,0.00802f,-0.0637f,-0.0259f,0.0131f,-0.00987f,0.000532f,0.0171f,0.0447f,0.0285f,-0.00828f,0.00313f,-0.0045f,0.0807f,0.0994f,0.0686f,-0.0837f,0.0248f,-0.0405f,-0.0504f,0.0386f,-0.0309f,0.0547f,-0.179f,-0.0933f,0.00514f,-0.0691f,-0.134f,-0.0956f,0.035f,-0.0649f,-0.17f,0.0529f,0.0076f,0.218f,0.155f,0.0527f,-0.183f,0.0896f,-0.0866f,0.0413f,0.00104f,-0.124f,-0.0791f,-0.0288f,-0.0687f,-0.0343f,-0.233f,-0.0172f,0.0651f,0.0692f,-0.0039f,-0.0843f,-0.0564f,-0.00334f,0.046f,0.0305f,-0.0642f,-0.029f,0.101f,-0.128f,0.0182f,0.0433f,0.0191f,-0.0565f,-0.00257f,0.161f,0.0622f,-0.0193f,0.0177f,-0.111f,-0.0212f,-0.125f,0.311f,0.0604f,-0.0106f,0.114f,-0.0072f,-0.0475f,-0.0105f,-0.00299f,-0.076f,-0.103f,-0.00286f,0.0667f,-0.0371f,-0.041f,-0.147f,-0.0528f,-0.0373f,-0.0157f,0.0897f,-0.0652f,-0.106f,0.0725f,0.15f,0.0528f,0.0406f,-0.214f,-0.178f,0.0899f,0.0464f,-0.0746f,0.165f,0.0257f,0.0436f,0.0545f,0.073f,0.0274f,0.0366f,-0.0418f,0.165f,0.0682f,-0.129f,0.0231f,0.00543f,-0.0311f,0.0558f,-0.0463f,0.0226f,0.0177f,0.0102f,-0.0345f,-0.0448f,0.169f,0.0552f,0.07f,0.0142f,0.00932f,-0.00578f,-0.236f,-0.00554f,0.113f,-0.0469f,-0.038f,0.0244f,0.116f,0.00495f,0.047f,-0.0881f,-0.0809f,0.0545f,0.115f,0.102f,-0.0385f,0.107f,-0.0448f,-0.0518f,0.0559f,0.0983f,-0.0132f,0.0873f,-0.0622f,-0.0157f,-0.0661f,0.0868f,0.0951f,0.0174f,-0.042f,0.0109f,-0.208f,-0.015f,0.0875f,0.107f,0.0156f,-0.102f,0.0869f,0.0992f,0.0465f,0.045f,-0.053f,0.0676f,-0.117f,0.0819f,0.0215f,-0.0304f,0.0626f,0.137f,0.0214f,0.0597f,0.0221f,-0.0617f,-0.107f,0.0475f,0.113f,-0.0363f,0.0364f,-0.0343f,0.0194f,-0.072f,0.0143f,0.0433f,-0.13f,-0.0369f,-0.00792f,-0.0468f,-0.116f,-0.115f,0.0176f,-0.0554f,-0.0103f,-0.00248f,-0.0709f,0.0539f,-0.0963f,-0.0491f,-0.106f,0.0749f,-0.0041f,-0.101f,0.0292f,-0.0343f,0.00296f,0.0141f,0.0579f,0.0342f,0.0617f,-0.0194f,0.0934f,-0.136f,0.00762f,-0.00366f,-0.0667f,0.178f,-0.104f,-0.102f,-0.03f,-0.0231f,0.022f,-0.106f,-0.0085f,-0.0713f,-0.184f,0.11f,0.00454f,-0.0836f,0.012f,0.052f,0.0394f,0.0476f,0.0388f,-0.112f,-0.095f,-0.0696f,-0.0698f,-0.012f,-0.0533f,0.0361f,0.0306f,0.0763f,0.0431f,0.0957f,0.0256f,-0.0631f,0.0552f,0.0935f,-0.0158f,-0.00843f,0.0673f,-0.188f,-0.154f,-0.207f,0.162f,0.0554f,-0.00373f,0.284f,0.0561f,-0.0493f,-0.0598f,0.0262f,0.0219f,-0.0981f,0.0122f,-0.137f,0.128f,-0.0842f,0.0328f,-0.0109f,-0.0302f,-0.368f,0.0282f,0.0194f,0.0114f,-0.0873f,-0.00514f,-0.0246f,0.191f,-0.0291f,-0.0436f,0.0474f,-0.124f,-0.00227f,-0.0255f,0.02f,0.0122f,-0.139f,-0.118f,-0.0124f,-0.0104f,-0.178f,0.0577f,0.0284f,0.0489f,-0.000117f,-0.0866f,-0.176f,0.0235f,0.00645f,0.107f,0.0424f,-0.159f,0.0137f,-0.0669f,-0.0408f,-0.0761f,0.0149f,0.0486f,-0.0231f,0.061f,-0.0331f,0.0599f,0.0126f,0.0682f,-0.0384f,-0.00249f,-0.133f,-0.0762f,0.0465f,-0.142f,-0.121f,-0.0715f,0.0751f,-0.0433f,-0.0534f,-0.0146f,-0.111f,-0.0164f,0.0216f,0.0756f,-0.0574f,-0.101f,0.00176f,-0.00947f,-0.00685f,0.0458f,0.0139f,0.0392f,0.0154f,-0.0152f,-0.0321f,0.0105f,0.0104f,0.169f,0.0955f,-0.102f,0.0165f,0.11f,0.0106f,-0.0648f,-0.0703f,-0.164f,-0.0418f,-0.101f,-0.0378f,-0.0311f,0.0488f,0.00494f,0.0323f,0.0696f,0.0258f,0.00681f,0.225f,-0.0929f,0.076f,0.0847f,-0.0303f,-0.0173f,0.115f,-0.0828f,-0.0516f,-0.0139f,-0.00356f,-0.127f,0.0208f,-0.00594f,-0.1f,-0.116f,0.126f,-0.106f,-0.00535f,-0.0774f,0.0135f,0.0911f,0.0421f,0.0173f,0.0344f,-0.093f,0.0647f,-0.0466f,0.04f,-0.0149f,-0.0685f,0.0452f,-0.0177f,-0.0483f,-0.0226f,-0.0353f,0.0385f,0.0453f,0.00513f,-0.00972f,-0.027f,0.0363f,0.00823f,-0.0652f,0.0478f,0.0688f,0.0172f,0.152f,0.0337f,-0.0584f,-0.0116f,-0.00844f,0.128f,0.138f,0.0214f,-0.0542f,0.106f,-0.00817f,-0.0496f,0.0562f,-0.114f,0.0269f,0.0732f,0.0714f,-0.00792f,-0.0656f,0.0308f,0.169f,-0.0435f,0.06f,0.00167f,0.0397f,-0.00277f,0.0944f,-0.0352f,0.00496f,0.153f,0.0228f,-0.0249f,0.077f,0.094f,0.00561f,0.168f,0.0655f,0.00261f,0.0551f,-0.0398f,-0.0131f,-0.0241f,0.0965f,0.0962f,0.00455f,0.0963f,0.011f,0.0736f,-0.0127f,-0.0155f,0.0541f,0.00166f,0.00859f,-0.0524f,-0.0751f,0.00931f,-0.0826f,0.104f,-0.0157f,0.0448f,-0.0922f,-0.105f,0.0635f,0.0125f,-0.047f,-0.113f,0.0964f,-0.115f,-0.0251f,0.323f,0.0775f,0.144f,-0.229f,0.145f,0.0214f,-0.172f,-0.0364f,0.0828f,0.175f,0.0406f,0.104f,0.0265f,0.0616f,0.118f,0.074f,-0.042f,0.126f,-0.279f,0.046f,0.0801f,-0.0324f,-0.00419f,0.0847f,-0.114f,-0.0159f,0.0269f,-0.164f,0.0135f,-0.0539f,0.114f,-0.119f,0.00598f,0.0442f,0.11f,0.104f,0.0283f,-0.0572f,-0.0104f,-0.000582f,0.131f,0.13f,0.0681f,-0.32f,0.0491f,0.227f,0.0052f,0.0623f,0.00476f,-0.1f,-0.0236f,-0.017f,-0.13f,0.021f,0.0396f,-0.0833f,0.0498f,0.0466f,-0.0713f,-0.071f,-0.0285f,-0.0541f,-0.107f,0.0282f,0.0142f,0.0263f,-0.0762f,0.01f,-0.066f,-0.0988f,0.0501f,0.00978f,-0.0854f,-0.092f,-0.0015f,0.067f,0.0921f,0.0969f,-0.0544f,0.11f,-0.125f,0.0243f,0.107f,-0.04f,-0.0493f,0.0854f,-0.0214f,-0.00268f,0.201f,-0.131f,0.108f,0.018f,0.197f,-0.0146f,0.015f,0.0319f,0.0426f,-0.0864f,0.186f,-0.0182f,-0.121f,-0.0575f,0.0314f,-0.0334f,0.0242f,0.0581f,0.0754f,0.0242f,-0.00782f,0.115f,-0.0169f,0.0187f,-0.231f,0.00554f,-0.0437f,-0.024f,-0.0086f,-0.143f,-0.0104f,0.034f,-0.0123f,0.136f,0.08f,0.0542f,-0.134f,-0.0231f,-0.0266f,-0.0808f,-0.0254f,0.156f,-0.0168f,-0.0182f,0.0438f,0.0416f,0.0225f,-0.0504f,0.00306f,-0.0194f,-0.135f,-0.00952f,-0.0335f,-0.112f,0.00716f,0.165f,-0.0322f,0.00274f,0.118f,-0.038f,-0.0725f,0.0841f,0.0473f,-0.0417f,0.0764f,0.0534f,0.0595f,0.00335f,0.0771f,0.129f,0.21f,0.0535f,-0.0298f,-0.0844f,-0.0889f,-0.0218f,0.0419f,0.0323f,0.0669f,-0.0351f,0.0729f,-0.0401f,0.1f,-0.05f,0.0766f,0.00119f,-0.00771f,-0.0335f,-0.00947f,-0.0433f,-0.0144f,-0.035f,-0.0565f,0.104f,-0.113f,-0.125f,-0.0638f,-0.0571f,-0.016f,0.0132f,-0.0186f,-0.087f,-0.00522f,0.0357f,0.165f,0.033f,-0.0134f,-0.0336f,-0.134f,0.0203f,-0.0663f,-0.00621f,-0.00689f,0.0344f,0.0337f,0.00929f,0.0333f,-0.0406f,0.098f,-0.135f,0.0504f,-0.0106f,-0.147f,-0.0633f,-0.0263f,-0.159f,0.0222f,0.0223f,0.0232f,-0.0526f,-0.0287f,0.0258f,0.07f,-0.103f,0.114f,0.00309f,-0.173f,-0.167f,0.0314f,-0.105f,-0.0142f,0.0505f,-0.0966f,-0.000956f,0.0409f,-0.177f,0.0645f,-0.0242f,0.0528f,-0.019f,-0.0355f,-0.0397f,0.00136f,-0.0107f,0.00671f,0.0822f,0.143f,0.0367f,-0.0246f,0.195f,0.143f,-0.141f,0.082f,0.143f,-0.0568f,-0.085f,-0.00109f,-0.195f,-0.183f,0.05f,-0.0553f,-0.0943f,0.132f,0.0418f,0.0979f,-0.223f,0.0539f,0.135f,-0.0429f,-0.0787f,-0.0545f,-0.00707f,-0.112f,-0.136f,0.0376f,-0.0233f,-0.046f,0.0324f,-0.113f,0.0898f,-0.0298f,0.0115f,-0.00823f,0.0971f,-0.00938f,0.227f,-0.149f,0.0192f,-0.0138f,0.0575f,0.0552f,0.22f,0.105f,0.132f,0.016f,0.0519f,-0.0979f,-0.0741f,0.0111f,-0.0875f,-0.147f,-0.0135f,-0.253f,-0.0577f,0.085f,-0.0415f,-0.00842f,0.129f,0.0206f,-0.141f,0.0179f,0.0921f,0.0613f,0.0337f,-0.0427f,0.0601f,-0.0136f,0.146f,0.121f,-0.139f,0.0842f,0.0536f,-0.376f,-0.0948f,-0.0514f,-0.13f,-0.0874f,-0.0291f,-0.0585f,0.0201f,0.00612f,-0.113f,0.0097f,0.0273f,0.0103f,-0.0772f,-0.0829f,-0.127f,0.0128f,-0.0214f,-0.0639f,-0.0822f,-0.0828f,-0.077f,0.0802f,0.0564f,-0.255f,-0.0274f,0.0146f,0.0173f,-0.105f,0.0969f,-0.172f,-0.289f,0.0578f,-0.149f,-0.167f,-0.218f,0.0249f,-0.0264f,-0.204f,-0.0478f,-0.152f,0.00308f,0.000192f,0.121f,0.131f,0.0327f,0.0083f,-0.104f,0.324f,0.111f,-0.0611f,0.14f,0.246f,-0.0953f,0.0105f,0.0234f,-0.0613f,-0.006f,-0.0919f,0.134f,-0.0468f,-0.0567f,-0.171f,-0.0648f,0.0848f,0.0883f,0.124f,-0.0318f,-0.0269f,-0.026f,0.131f,-0.0493f,0.0758f,-0.0713f,-0.0122f,-0.0936f,0.0786f,-0.0848f,-0.0263f,0.108f,-0.00376f,0.0692f,0.0264f,0.0454f,-0.0436f,0.137f,-0.0367f,0.0108f,-0.038f,0.0264f,-0.00947f,0.0661f,-0.124f,0.12f,0.0648f,-0.0537f,-0.0719f,-0.01f,-0.126f,-0.0131f,0.0879f,0.0262f,0.0434f,0.0248f,0.125f,0.101f,0.032f,-0.0345f,-0.0259f,-0.0389f,-0.0415f,0.108f,-0.0929f,0.0953f,0.00405f,0.00753f,0.0172f,-0.00216f,0.0727f,0.169f,0.137f,-0.0186f,0.033f,-0.22f,-0.00117f,-0.0242f,-0.0488f,-0.0747f,-0.0157f,-0.11f,-0.0956f,0.0295f,-0.0048f,-0.036f,-0.13f,-0.0403f,0.0293f,-0.0118f,0.0102f,-0.198f,-0.0575f,-0.0851f,0.0203f,0.12f,0.0538f,-0.0345f,0.0684f,0.0656f,0.0416f,-0.0694f,0.0137f,-0.0331f,0.0911f,0.0626f,-0.0564f,-0.0403f,-0.0396f,0.0543f,-0.0678f,-0.0455f,0.0946f,0.178f,-0.0294f,0.0168f,-0.0375f,-0.0708f,0.088f,-0.0269f,0.00538f,0.0323f,-0.0715f,-0.0136f,-0.0798f,-0.0388f,0.0291f,-0.0105f,0.0118f,-0.00242f,0.0024f,0.00302f,0.0422f,-0.0501f,0.0134f,-0.0244f,-0.0666f,0.0334f,-0.0126f,-0.018f,0.0605f,-0.0245f,0.0642f,0.0143f,0.309f,-0.0177f,-0.00298f,-0.346f,0.0524f,-0.0013f,-0.0903f,0.023f,0.0633f,0.0223f,-0.00149f,0.0735f,0.012f,0.0149f,0.123f,-0.0651f,0.0278f,0.0754f,-0.0601f,0.0324f,0.0947f,0.0772f,-0.00798f,0.0202f,-0.0738f,0.107f,0.00772f,-0.184f,0.0456f,0.0555f,0.0201f,-0.158f,-0.0141f,-0.0314f,-0.0272f,0.0559f,-0.0289f,0.062f,-0.0656f,0.0543f,0.0604f,0.0127f,0.0416f,-0.00267f,-0.0242f,0.0543f,0.0873f,0.0448f,0.263f,0.0334f,0.0859f,0.0615f,-0.0856f,0.00959f,-0.00184f,0.00872f,0.0746f,0.0388f,0.0058f,-0.0278f,0.0281f,0.0102f,-0.0209f,0.0196f,-0.0901f,-0.0438f,-0.00995f,0.00296f,-0.0144f,-0.0479f,0.0158f,0.0891f,0.00324f,0.051f,0.0482f,-0.0435f,0.00516f,0.0224f,-0.0954f,-0.0097f,0.0206f,-0.027f,0.0102f,-0.028f,-0.0157f,-0.103f,0.0325f,-0.00369f,-0.161f,-0.0372f,-0.0259f,0.0471f,-0.0553f,0.0721f,-0.0312f,-0.0151f,-0.403f,0.00638f,0.0352f,0.0177f,0.0322f,-0.0193f,-0.00868f,-0.000327f,0.0146f,-0.00801f,-0.0287f,-0.0409f,-0.0147f,0.00519f,-0.03f,-0.00585f,0.00711f,0.0309f,0.00364f,0.0116f,-0.279f,-0.00151f,0.0656f,-0.0979f,0.0436f,-0.162f,0.0707f,-0.118f,0.003f,0.00998f,0.0357f,0.0771f,0.0398f,-0.00574f,0.0563f,-0.00176f,-0.0456f,0.0487f,0.0345f,0.118f,-0.0643f,0.0709f,-0.0764f,0.117f,-0.135f,-0.0552f,0.112f,-0.000914f,0.119f,-0.0369f,-0.161f,-0.0238f,0.0329f,-0.176f,-0.0477f,0.0444f,-0.0178f,-0.0595f,-0.00244f,-0.00398f,-0.00316f,-0.00245f,-0.0822f,-0.0772f,-0.111f,0.0141f,-0.0119f,-0.00435f,-0.0335f,0.0138f,0.0291f,0.0501f,-0.00167f,0.112f,-0.102f,-0.126f,-0.0301f,0.0253f,0.0261f,0.0352f,-0.019f,-0.0249f,0.043f,-0.0581f,-0.0583f,0.00286f,-0.0447f,-0.109f,-0.0778f,0.14f,0.059f,-0.0316f,0.0478f,0.0699f,0.0309f,0.0299f,-0.124f,0.00386f,0.174f,-0.0419f,-0.0785f,-0.066f,-0.0756f,0.143f,-0.0874f,-0.14f,-0.0738f,0.0842f,-0.104f,-0.217f,-0.148f,0.00413f,0.0127f,-0.0198f,-0.177f,-0.0353f,0.0452f,-0.0355f,-0.128f,-0.00835f,-0.116f,-0.0386f,-0.141f,-0.0714f,0.0608f,0.034f,0.061f,-0.174f,-0.0703f,0.0748f,-0.0286f,-0.0227f,-0.13f,0.0942f,-0.0448f,-0.02f,0.167f,0.00586f,0.134f,0.0349f,0.0597f,-0.0553f,-0.0419f,0.0589f,0.144f,0.0337f,-0.0511f,0.0455f,0.0496f,0.0765f,-0.0194f,0.104f,0.0564f,-0.0414f,0.0671f,-0.0482f,0.00569f,-0.0101f,0.15f,0.0471f,0.0541f,0.037f,-0.00524f,-0.0541f,-0.11f,0.0888f,-0.103f,-0.0789f,0.0184f,0.0844f,0.02f,0.059f,-0.0179f,0.0567f,0.131f,-0.237f,-0.0908f,-0.107f,-0.0144f,-0.107f,-0.142f,-0.0741f,0.0378f,-0.0488f,-0.225f,0.122f,0.00393f,-0.0294f,-0.0721f,0.122f,0.0436f,-0.0412f,-0.0085f,-0.223f,-0.233f,-0.0322f,0.0995f,0.031f,-0.0946f,0.136f,-0.0859f,0.0345f,-0.0472f,0.0376f,-0.0573f,-0.0519f,0.0574f,-0.04f,0.087f,-0.115f,-0.048f,0.12f,-0.0631f,0.0525f,-0.0223f,0.000296f,0.014f,-0.0866f,0.0583f,0.0217f,0.00142f,-0.0165f,0.0614f,0.0263f,0.049f,0.0198f,0.0496f,-0.0155f,-0.214f,0.107f,-0.0144f,-0.0504f,0.0252f,0.0348f,0.106f,-0.0173f,-0.00136f,-0.0518f,0.028f,-0.173f,0.0693f,-0.116f,0.0338f,0.0425f,-0.0211f,-0.145f,0.0677f,-0.0493f,-0.104f,0.182f,-0.0494f,-0.0706f,-0.0894f,0.158f,-0.0417f,0.055f,0.0307f,0.0919f,-0.073f,0.0573f,0.0615f,0.0705f,-0.11f,0.026f,-0.111f,-0.12f,-0.0271f,0.0483f,-0.113f,-0.0631f,0.0824f,-0.0259f,0.0213f,-0.116f,0.0126f,-0.0295f,-0.0565f,-0.0209f,0.00862f,0.00743f,0.0444f,0.0533f,-0.118f,-0.00624f,-0.164f,-0.069f,0.0554f,-0.0761f,0.142f,0.0852f,-0.113f,-0.0311f,0.00815f,-0.104f,-0.0649f,0.091f,-0.0805f,-0.0177f,0.0328f,0.119f,-0.0192f,-0.141f,-0.042f,-0.0989f,-0.0707f,-0.0622f,-0.0963f,-0.0601f,-0.115f,0.0348f,0.0947f,-0.0294f,0.0448f,0.00203f,-0.025f,0.0427f,-0.0893f,0.0223f,0.171f,0.0263f,-0.00496f,-0.0765f,-0.0356f,0.0152f,0.0372f,0.0696f,-0.0162f,-0.0164f,0.0413f,0.0375f,0.141f,-0.0581f,-0.00968f,0.0577f,-0.0019f,0.0492f,0.0698f,-0.0623f,-0.00184f,0.0348f,0.0615f,-0.0282f,0.0485f,0.0985f,-0.0133f,-0.00601f,0.0793f,-0.103f,0.052f,-0.0468f,0.0601f,-0.0331f,-0.0321f,-0.0274f,0.00847f,0.0311f,-0.0429f,0.00819f,0.0136f,-0.0903f,0.031f,-0.0574f,0.0296f,0.0485f,-0.0285f,0.0884f,0.0852f,-0.0148f,-0.0162f,-0.0543f,0.058f,0.0253f,0.0434f,-0.0115f,0.00115f,-0.0358f,-0.0156f,0.0221f,0.125f,0.0241f,-0.0642f,0.0802f,-0.0812f,0.0284f,0.0856f,0.0808f,-0.0196f,-0.0626f,-0.0442f,-0.0345f,0.215f,0.0587f,-0.0672f,0.15f,-0.18f,0.0368f,-0.114f,-0.0211f,0.0535f,0.0142f,-0.0452f,-0.0464f,0.00755f,0.215f,-0.0635f,-0.0306f,0.0143f,0.069f,-0.0235f,-0.0488f,0.0945f,0.198f,-0.112f,-0.0026f,0.0087f,0.0331f,-0.113f,-0.0196f,0.0328f,-0.0168f,-0.163f,0.0327f,-0.0144f,-0.12f,0.153f,0.0796f,-0.0787f,0.0209f,-0.0801f,0.0755f,-0.116f,-0.11f,-0.0331f,-0.113f,0.161f,-0.00874f,0.0238f,-0.0919f,-0.0417f,-0.0213f,-0.166f,0.112f,0.0587f,0.021f,-0.0835f,0.174f,-0.0722f,0.121f,0.062f,-0.0781f,-0.0591f,0.00292f,0.0573f,-0.0439f,-0.054f,-0.0218f,-0.082f,0.0391f,-0.0209f,0.0796f,-0.0745f,-0.0997f,0.0425f,-0.0475f,0.0547f,-0.0481f,-0.00461f,0.109f,-0.033f,-0.00205f,-0.0123f,0.117f,0.0967f,-0.097f,0.0861f,0.0194f,-0.0504f,-0.0107f,-0.0138f,-0.017f,-0.0575f,0.00951f,-0.0091f,-0.122f,-0.105f,0.00142f,0.0289f,-0.0249f,0.0593f,-0.0111f,-0.0505f,0.0542f,0.0307f,0.0114f,0.0159f,-0.186f,-0.0771f,-0.0252f,0.0804f,-0.0659f,-0.00669f,-0.0365f,-0.0108f,-0.014f,-0.122f,0.121f,-0.0145f,-0.106f,-0.0651f,0.0716f,-0.0894f,-0.000179f,-0.0541f,-0.12f,-0.035f,-0.0432f,0.0838f,-0.000819f,-0.0456f,-0.00628f,-0.0416f,0.0103f,-0.048f,0.0134f,-0.00417f,-0.00753f,0.00714f,-0.0294f,-0.0225f,0.0126f,0.0042f}; +float neck__lateral_convs__1_pw_bias[64] = {-0.0297f,-0.0706f,-0.0337f,0.0276f,0.0273f,-0.00913f,0.14f,-0.0478f,-0.00486f,0.0403f,0.00589f,-0.0234f,-0.042f,-0.147f,0.106f,-0.0822f,0.0298f,-0.0362f,0.0386f,-0.0432f,-0.0725f,0.0243f,-0.0072f,-0.0194f,0.00856f,-0.109f,-0.0771f,0.129f,0.0196f,0.00348f,7.39e-05f,0.0472f,0.0623f,0.0781f,0.0134f,0.00279f,0.0361f,0.000638f,0.0684f,-0.0198f,0.0305f,0.0316f,0.0362f,-0.102f,0.168f,0.0215f,0.0204f,-0.046f,-0.0602f,0.0887f,-0.0902f,-0.122f,-0.0295f,-0.147f,0.173f,0.0412f,-0.0446f,0.139f,-0.0654f,-0.0168f,0.0233f,-0.181f,-0.0636f,0.0383f}; +float neck__lateral_convs__1_dw_weight[64*1*3*3] = {-0.0822f,-0.318f,-0.00384f,-0.121f,-0.188f,0.609f,-0.34f,-0.305f,-0.0389f,-0.0332f,-0.22f,-0.0564f,-1.08f,-0.0746f,0.833f,-0.584f,0.702f,0.0728f,-0.0671f,0.718f,0.113f,0.185f,-0.224f,0.414f,0.254f,0.784f,-0.212f,-0.38f,0.0588f,0.0403f,0.107f,0.16f,0.584f,-0.0581f,0.128f,-0.48f,0.377f,-0.106f,-0.543f,0.111f,-0.226f,0.615f,0.027f,0.0477f,-0.142f,-0.0965f,0.0879f,-0.0554f,-0.0593f,-0.0998f,-0.595f,0.122f,-0.545f,-0.791f,-0.149f,0.0222f,0.0312f,0.0416f,0.0479f,-0.293f,0.243f,0.00708f,0.0848f,0.095f,0.0417f,0.0658f,0.596f,-0.0789f,-2.09f,0.00107f,1.36f,0.216f,-0.0829f,-0.218f,-0.49f,-0.395f,-1.83f,-0.55f,0.116f,-1.48f,0.0717f,0.271f,0.0102f,0.661f,0.0737f,-0.251f,0.251f,0.119f,-0.318f,-0.623f,-0.906f,0.296f,-0.875f,-0.996f,-0.489f,-0.404f,0.456f,-0.105f,-0.372f,0.214f,0.14f,0.244f,0.363f,0.00537f,-0.187f,1.06f,-0.00778f,-1.33f,-0.202f,0.299f,0.332f,-0.251f,-0.787f,0.651f,-0.503f,0.291f,-0.226f,-0.437f,-1.69f,0.0798f,0.385f,-0.0923f,0.437f,-1.48f,0.614f,0.404f,-0.551f,0.28f,0.0302f,0.0611f,0.318f,0.733f,0.000398f,0.0895f,0.165f,-0.0405f,0.0224f,0.181f,-0.34f,-0.132f,-0.579f,-0.492f,-0.142f,-0.453f,0.284f,-0.201f,-0.0317f,0.454f,0.0405f,-0.585f,-0.228f,0.415f,0.144f,0.964f,-0.112f,0.426f,0.0374f,1.6f,0.609f,0.158f,0.827f,0.0383f,0.0205f,0.11f,-0.0894f,-0.0503f,-0.624f,0.0428f,-0.128f,0.634f,0.076f,0.207f,-0.454f,0.62f,-0.00203f,0.131f,0.262f,-0.064f,-0.311f,0.074f,-0.227f,-0.166f,-0.0343f,-0.0913f,-0.055f,-0.0784f,-0.141f,0.176f,-0.164f,-1.25f,-0.126f,-0.0206f,-0.299f,-0.239f,-0.259f,0.095f,-0.235f,0.0158f,0.94f,-0.0086f,-0.53f,-0.863f,-0.656f,-0.229f,0.4f,-0.218f,0.531f,-0.0826f,0.563f,0.693f,0.258f,0.49f,0.0498f,0.319f,-1.06f,-0.0229f,-0.161f,1.91f,0.308f,-0.268f,0.00598f,0.0986f,-1.16f,1.75f,-0.527f,0.0507f,0.131f,-2.21f,0.844f,-0.148f,-0.225f,-0.0734f,-0.275f,0.0757f,0.0302f,-0.607f,-0.0601f,-0.164f,0.0939f,0.662f,-1.16f,0.306f,-0.287f,0.0728f,-0.152f,-0.437f,-0.147f,-0.213f,0.53f,0.612f,0.263f,-0.0136f,0.0924f,-0.111f,-0.0578f,-0.292f,-0.454f,-0.125f,-0.173f,0.87f,1.31f,0.00846f,1.1f,1.45f,-1.21f,-1.39f,1.13f,-0.961f,-0.0866f,0.701f,1.43f,-0.183f,0.792f,-0.719f,1.24f,-0.21f,0.993f,-0.2f,2.35f,0.215f,-2.36f,-2.07f,-0.188f,-0.134f,-1.28f,-0.906f,-1.9f,-0.34f,-0.398f,0.195f,1.94f,-0.51f,0.964f,1.19f,-0.171f,0.559f,-0.411f,0.745f,0.6f,-0.485f,-0.0419f,1.61f,-1.12f,-0.649f,-1.33f,1.52f,0.299f,0.94f,-0.35f,-0.682f,0.533f,1.25f,0.846f,0.564f,-1.32f,-0.172f,1.41f,-0.14f,-1.75f,-0.837f,-0.26f,-0.159f,2.65f,0.696f,-0.132f,-0.0534f,-0.324f,0.0977f,0.0592f,0.389f,-0.503f,0.244f,0.0852f,-0.891f,-0.789f,-0.561f,-0.451f,-1.19f,-0.212f,0.355f,0.176f,-0.414f,-1.27f,0.12f,0.151f,2.39f,-0.205f,1.78f,0.0408f,1.52f,-0.81f,-0.261f,0.733f,0.147f,0.068f,0.483f,0.178f,-0.167f,-0.248f,0.158f,-0.315f,-0.326f,0.0604f,-0.25f,-0.0918f,-0.131f,0.00922f,0.0654f,-1.53f,0.488f,-0.0329f,0.0333f,-0.419f,-0.111f,-0.144f,-0.0528f,0.201f,0.129f,-0.446f,-0.866f,0.633f,-2.45f,0.33f,-0.539f,-0.0605f,-0.575f,0.271f,1.3f,-0.185f,-0.0378f,0.349f,-0.138f,-0.0669f,-0.0823f,-0.00504f,0.189f,0.285f,0.021f,0.00382f,-0.0291f,0.707f,0.00425f,-0.0189f,0.375f,0.208f,0.209f,-0.459f,0.196f,-0.234f,1.02f,-0.162f,-0.0584f,0.0335f,0.528f,0.0333f,0.985f,-0.206f,0.329f,0.0877f,-0.87f,-0.125f,-0.00759f,-0.0683f,0.219f,-0.282f,-0.36f,0.0348f,-0.0207f,-0.423f,0.0338f,-0.0519f,1.08f,-0.417f,0.241f,-0.162f,0.199f,0.0236f,-0.421f,0.00088f,-0.0366f,-0.177f,0.322f,-0.162f,-0.205f,-0.405f,-0.00381f,0.0898f,-0.12f,-0.219f,-0.289f,0.598f,1.14f,0.138f,-2.42f,0.0312f,0.268f,-0.487f,0.0107f,-0.518f,0.362f,-0.0709f,0.163f,0.148f,0.154f,0.603f,-0.264f,0.221f,-0.149f,0.213f,0.0797f,-0.425f,0.262f,-0.274f,-1.68f,0.0238f,0.39f,-0.125f,0.287f,0.317f,0.28f,0.212f,0.0936f,-0.421f,-0.725f,0.912f,0.0192f,0.066f,0.112f,-0.228f,-0.394f,0.076f,0.26f,-0.617f,0.499f,-0.346f,0.983f,2.13f,0.685f,0.46f,-0.0374f,-0.136f,-0.609f,0.0943f,-0.0497f,-0.249f,-0.0407f,-0.614f,0.388f,-0.492f,-0.622f,-0.401f,0.135f,-0.144f,-0.218f,0.631f,-0.869f,-0.0465f,-0.6f,-0.486f,-0.00918f,0.0615f,-0.477f,-0.413f,-0.0285f,0.11f,-0.233f,-0.485f,0.0873f,-0.794f,-0.589f,0.0698f,0.663f,0.207f,-0.26f,-0.413f,0.157f,-0.676f,0.612f,-0.084f,0.211f,0.0435f,-0.399f,-0.175f,-0.0132f,0.14f,0.417f,0.11f,-0.348f,0.441f,0.109f,-0.204f,0.0958f,-0.242f,-0.094f,0.0283f,0.211f,-0.0173f,0.012f,-0.126f,-0.111f,-0.617f,0.134f,0.0252f,0.175f,-0.218f,-0.148f,-0.0616f,-0.0766f,-0.0421f,-0.112f,0.0974f,-0.0656f,0.14f,-0.616f,0.0438f,-0.232f}; +float neck__lateral_convs__1_dw_bias[64] = {0.958f,0.171f,-0.52f,0.44f,0.702f,-0.518f,0.0556f,0.353f,0.514f,-0.296f,0.338f,-0.558f,-0.267f,-0.13f,-0.408f,0.52f,-0.106f,-0.239f,-0.121f,0.988f,0.479f,0.466f,0.613f,0.109f,-0.152f,0.66f,0.0603f,-0.272f,0.838f,-0.401f,-1.75f,-0.349f,-0.445f,0.249f,1.41f,-0.575f,1.53f,0.843f,0.111f,0.748f,0.606f,-0.177f,0.317f,-0.606f,0.486f,-1.65f,0.113f,-0.231f,0.0535f,1.45f,0.315f,1.08f,0.518f,-1.03f,0.548f,0.543f,0.716f,0.736f,-0.815f,-0.327f,0.0758f,-0.0999f,-0.148f,-0.218f}; +float neck__lateral_convs__2_pw_weight[64*64*1*1] = {-0.179f,-0.0225f,-0.0432f,0.0191f,-0.0368f,-0.126f,-0.0407f,0.0429f,0.00751f,-0.0777f,0.0174f,-0.0746f,0.108f,0.0204f,-0.118f,0.218f,0.0668f,-0.00321f,-0.1f,0.0462f,0.0712f,-0.208f,0.00833f,0.0468f,0.00578f,-0.0559f,0.144f,0.0932f,0.0339f,0.136f,0.0683f,-0.0443f,0.0841f,0.0917f,-0.0244f,0.0595f,0.105f,0.0202f,0.13f,-0.0517f,0.0488f,-0.0482f,-0.0831f,0.133f,-0.016f,-0.0137f,-0.116f,-0.0679f,0.0673f,0.168f,-0.131f,-0.0524f,0.00346f,0.12f,-0.166f,-0.205f,-0.0103f,-0.0279f,-0.0668f,-0.0314f,-0.0964f,0.207f,0.0542f,-0.0568f,0.0205f,0.0294f,-0.0831f,-0.0331f,-0.0373f,-0.115f,-0.0501f,-0.056f,-0.0477f,-0.0646f,0.0272f,0.00239f,-0.0775f,0.0609f,0.107f,-0.193f,0.0334f,-0.0238f,-0.00694f,0.052f,0.00745f,0.0402f,-0.0189f,-0.0365f,-0.124f,-0.00447f,0.0252f,-0.0545f,-0.105f,0.0212f,-0.00779f,-0.0262f,0.0111f,-0.0448f,0.0538f,-0.00445f,0.0101f,-0.0459f,0.0113f,0.0132f,0.000813f,-0.0157f,-0.0305f,0.0893f,-0.0259f,-0.0354f,-0.00676f,0.00495f,-0.0653f,-0.00131f,0.0104f,0.0319f,0.0277f,0.00576f,-0.0629f,-0.122f,-0.0176f,0.000979f,-0.0706f,0.0474f,-0.0194f,0.047f,0.0752f,-0.2f,-0.0283f,-0.00182f,-0.101f,0.032f,0.019f,0.11f,0.0818f,-0.0195f,0.12f,-0.061f,0.0497f,-0.207f,-0.0592f,-0.05f,0.000512f,-0.0127f,-0.256f,0.0198f,0.0024f,-0.0116f,0.0123f,0.00463f,-0.211f,-0.0238f,0.0214f,0.0819f,0.00425f,-0.0295f,-0.0212f,-0.0725f,-0.0289f,-0.285f,-0.157f,-0.0594f,0.0255f,0.0554f,0.00965f,0.0615f,-0.0366f,0.0588f,-0.0372f,-0.113f,-0.0609f,-0.0381f,0.0201f,0.0324f,-0.107f,0.0353f,-0.143f,0.0205f,-0.0447f,-0.00301f,-0.0374f,0.00676f,-0.0444f,-0.057f,-0.0231f,-0.0104f,0.0246f,-0.124f,0.0693f,0.081f,-0.0146f,-0.00643f,0.0606f,0.0876f,0.031f,0.0793f,0.0331f,0.0112f,-0.0796f,-0.013f,-0.00395f,0.00148f,-0.00937f,0.0548f,0.0946f,0.0694f,0.0831f,-0.01f,0.0633f,-0.0252f,-0.0484f,0.186f,-0.0531f,0.116f,0.0543f,0.0347f,0.103f,0.007f,-0.027f,-0.0281f,0.203f,0.0405f,0.0689f,-0.0185f,0.077f,-0.00908f,-0.0579f,0.0414f,0.123f,0.0763f,0.078f,0.0717f,0.121f,-0.0975f,-0.116f,0.129f,0.04f,0.00507f,-0.203f,0.233f,0.0137f,-0.0228f,-0.193f,0.0409f,-0.0061f,-0.0197f,0.0429f,-0.216f,0.124f,0.0552f,-0.069f,0.159f,-0.0488f,0.222f,0.0554f,0.0559f,0.135f,0.114f,0.0825f,0.0777f,0.0503f,0.0817f,-0.142f,-0.112f,0.248f,0.0189f,0.0537f,-0.0243f,-0.0936f,-0.00391f,0.0867f,0.00486f,0.00388f,0.0351f,0.0621f,0.0433f,0.0523f,0.146f,0.108f,0.0301f,0.0381f,0.0482f,-0.0597f,-0.0422f,0.137f,0.0811f,0.0149f,-0.0316f,0.0439f,0.0367f,0.0815f,-0.0821f,0.0993f,0.038f,0.0168f,0.0891f,-0.0229f,0.0507f,0.00909f,-0.0958f,0.00514f,0.000994f,-0.00775f,0.143f,0.0706f,0.0393f,-0.0226f,0.000394f,0.0236f,0.0306f,0.0731f,0.033f,0.0823f,0.0291f,0.0885f,0.0176f,0.0388f,-0.0541f,-0.0177f,0.0148f,-0.0156f,0.0327f,-0.0205f,-0.0315f,0.0247f,0.0385f,-0.0867f,-0.136f,-0.197f,0.0834f,-0.016f,0.0128f,-0.00491f,0.00335f,-0.000276f,-0.063f,-0.0399f,-0.0244f,-0.0156f,-0.0112f,-0.00647f,0.0259f,-0.232f,0.0537f,-0.0324f,0.0148f,0.0754f,0.0225f,0.00194f,0.0482f,-0.451f,0.0112f,-0.00622f,-0.0257f,0.0833f,0.0486f,-0.0317f,0.112f,-0.0705f,-0.015f,0.0329f,-0.213f,-0.0786f,-0.0636f,-0.0315f,0.00541f,-0.0188f,0.0172f,-0.0614f,-0.0611f,-0.235f,0.0342f,0.00971f,-0.034f,0.0233f,-0.126f,-0.00569f,-0.499f,0.0169f,-0.046f,-0.00744f,0.0226f,0.0147f,-0.0621f,-0.000758f,0.0253f,0.141f,0.0595f,-0.0977f,-0.19f,0.03f,-0.00681f,-0.0114f,0.0279f,-0.0265f,0.206f,-0.0409f,-0.0797f,0.0459f,-0.0321f,0.127f,-0.0695f,0.0413f,0.0335f,-0.0299f,0.0183f,0.0262f,-0.0653f,-0.0425f,-0.0829f,-0.0568f,-0.0386f,-0.0424f,0.077f,-0.00635f,0.0719f,0.159f,0.0847f,0.0556f,-0.0282f,-0.0458f,0.0243f,0.121f,-0.0299f,-0.0181f,0.0269f,0.0287f,-0.076f,-0.0159f,-0.0127f,0.0266f,-0.0585f,-1.15e-05f,-0.0226f,0.0534f,0.0102f,-0.0903f,0.0263f,0.076f,-0.0537f,0.014f,0.0214f,-0.0346f,0.0259f,-0.0749f,-0.0304f,-0.0923f,0.0348f,-0.0865f,-0.0137f,-0.0491f,-0.00775f,-0.0733f,-0.0888f,0.225f,0.0411f,-0.16f,-0.071f,-0.000823f,-0.0704f,-0.0222f,-0.0106f,-0.022f,-0.129f,-0.0161f,-0.0258f,0.0088f,-0.125f,-0.0651f,-0.13f,-0.0881f,-0.0597f,-0.127f,-0.00802f,0.0165f,0.139f,-0.14f,-0.0477f,0.0161f,-0.0325f,-0.0942f,-0.00383f,-0.147f,0.0605f,-0.0732f,-0.0712f,-0.00221f,-0.126f,-0.0969f,0.024f,-0.0349f,-0.0385f,0.0282f,-0.041f,-0.217f,-0.182f,0.0535f,0.0249f,-0.0602f,-0.0183f,0.00619f,-0.00445f,0.0176f,0.0872f,-0.0277f,-0.109f,-0.0712f,-0.22f,-0.0712f,0.101f,0.057f,-0.16f,0.00346f,-0.000275f,0.0898f,0.104f,-0.07f,0.0975f,-0.0333f,-0.0492f,-0.196f,0.112f,-0.114f,0.0459f,0.0795f,-0.0929f,0.0637f,-0.214f,0.0528f,-0.00413f,-0.00315f,0.0499f,0.0509f,0.126f,-0.0266f,-0.11f,-0.179f,-0.0538f,-0.0648f,-0.104f,0.177f,-0.121f,-0.115f,0.0223f,0.0448f,0.0408f,-0.0415f,-0.0486f,-0.0949f,0.111f,-0.0147f,0.0929f,-0.132f,-0.127f,-0.131f,-0.0453f,0.0261f,0.0468f,-0.206f,0.0521f,-0.0336f,0.028f,-0.0517f,-0.0267f,0.0654f,-0.0474f,0.0126f,-0.0464f,0.0432f,-0.00918f,0.0371f,-0.103f,-0.0452f,-0.0106f,-0.0247f,0.0866f,0.0456f,0.0526f,0.00321f,-0.0168f,0.129f,0.0906f,-0.174f,-0.0586f,0.0491f,0.0461f,-0.0517f,0.0927f,0.00475f,-0.00866f,-0.0439f,-0.186f,-0.017f,0.152f,0.058f,0.0818f,0.0763f,0.00178f,0.0488f,0.0523f,-0.0684f,0.0591f,0.0964f,-0.269f,0.0841f,-0.157f,0.0211f,0.089f,0.0362f,-0.00385f,0.0458f,-0.165f,0.105f,0.0817f,0.0772f,0.127f,-0.0281f,0.215f,0.0623f,-0.0174f,0.0512f,0.124f,-0.0621f,0.103f,-0.135f,-0.167f,-0.125f,-0.149f,0.0971f,-0.143f,0.155f,0.0596f,-0.0125f,0.0911f,0.0435f,-0.00283f,0.0479f,0.134f,0.0183f,0.0416f,-0.138f,0.0588f,0.251f,-0.0118f,-0.0821f,-0.0678f,-0.131f,-0.0162f,-0.0213f,-0.0657f,-0.194f,0.114f,-0.0601f,0.0703f,-0.0344f,0.185f,-0.0103f,0.0261f,0.0139f,-0.0132f,-0.046f,0.152f,0.101f,-0.0114f,-0.02f,-0.055f,-0.0121f,0.0194f,-0.088f,-0.00768f,0.0409f,-0.0312f,0.0573f,-0.0279f,0.00731f,-0.0142f,-0.167f,0.0702f,-0.0795f,-0.0114f,0.118f,0.128f,-0.0899f,0.00105f,-0.0527f,-0.0571f,0.068f,0.0216f,-0.0555f,0.036f,0.102f,-0.137f,0.0163f,-0.0458f,-0.169f,0.115f,0.0806f,0.0672f,0.0109f,-0.0724f,0.161f,-0.0719f,0.114f,0.0441f,-0.113f,0.00403f,-0.0103f,-0.029f,0.114f,-0.0361f,-0.0352f,-0.0558f,0.129f,0.0346f,-0.0651f,-0.00412f,-0.0617f,0.0795f,-0.0585f,0.123f,0.0693f,0.0343f,-0.0378f,0.136f,-0.0201f,0.133f,0.0601f,-0.327f,-0.0714f,-0.0525f,0.0334f,-0.0771f,-0.134f,0.0287f,0.0152f,-0.012f,0.131f,-0.148f,-0.0237f,0.0675f,-0.183f,0.183f,0.0244f,0.0772f,0.0129f,0.123f,0.00509f,0.0588f,-0.0208f,0.0845f,0.0759f,-0.0619f,0.0439f,0.224f,0.0806f,-0.105f,0.0205f,0.0601f,-0.118f,0.0689f,0.0468f,0.0141f,0.0288f,0.143f,-0.0401f,0.183f,-0.00154f,-0.0601f,0.0322f,-0.0551f,-0.0267f,0.0472f,-0.0107f,0.0755f,0.0342f,0.0306f,-0.00901f,0.235f,-0.0999f,0.137f,0.0567f,0.0973f,-0.0368f,0.000208f,0.233f,0.0543f,0.000874f,0.0212f,-0.00285f,0.00533f,0.104f,0.0457f,0.0623f,0.0684f,0.0548f,-0.0264f,-0.026f,-0.0385f,0.124f,0.341f,0.183f,-0.0281f,0.0355f,0.031f,0.0218f,-0.00242f,-0.165f,-0.000912f,-0.00191f,0.0129f,0.0758f,0.0312f,0.00673f,0.0362f,0.0177f,0.0183f,-0.0185f,0.00474f,-0.0181f,0.00403f,-0.000374f,-0.0205f,0.0143f,-0.0212f,0.00998f,0.0985f,0.0299f,0.0787f,0.0139f,0.0387f,0.0793f,-0.0263f,0.0677f,-0.0371f,-0.0733f,0.00134f,-0.0142f,-0.189f,-0.0839f,-0.18f,-0.117f,-0.0697f,0.0895f,-0.0814f,-0.142f,0.0198f,-0.0603f,-0.0469f,-0.0738f,-0.0615f,-0.167f,-0.024f,0.0534f,0.0294f,0.0109f,-0.104f,-0.0317f,-0.0729f,-0.0967f,-0.284f,0.0542f,-0.0676f,0.0194f,-0.0467f,0.0671f,-0.065f,-0.0861f,0.0828f,-0.179f,0.141f,-0.103f,-0.0303f,-0.0928f,-0.0827f,0.0665f,0.0435f,0.0901f,0.00029f,0.0319f,0.0134f,-0.129f,-0.0278f,0.0284f,0.12f,-0.143f,0.019f,-0.132f,-0.105f,0.0017f,-0.0897f,-0.106f,-0.0841f,0.212f,-0.0592f,-0.222f,0.0845f,-0.021f,0.0193f,0.144f,-0.02f,0.0182f,-0.113f,-0.0372f,0.0256f,-0.0555f,-0.0744f,0.0199f,0.028f,-0.0127f,-0.00702f,-0.00834f,0.0327f,-0.0126f,-0.0543f,-0.0093f,-0.0343f,0.0158f,-0.0139f,0.0467f,-0.0563f,0.0423f,-0.0444f,0.00888f,-0.0436f,0.0559f,-0.00733f,0.047f,-0.0169f,-0.0313f,0.00804f,-0.0353f,-0.0154f,-0.0312f,0.0271f,-0.0109f,-0.0221f,0.117f,0.0908f,0.0229f,0.0204f,-0.0928f,0.00658f,0.0408f,0.102f,-0.0459f,-0.0718f,0.0456f,0.0105f,0.0398f,0.025f,-0.0776f,-0.0622f,0.0198f,0.101f,0.0244f,0.04f,-0.027f,-0.0939f,-0.00791f,0.038f,0.0144f,0.0502f,-0.00218f,0.0798f,0.0158f,0.0883f,0.12f,0.0299f,0.348f,0.0481f,-0.0775f,0.0157f,0.00932f,-0.0631f,0.00157f,0.025f,0.074f,0.0559f,0.00745f,0.333f,0.0326f,0.185f,0.101f,0.066f,0.166f,0.0237f,-0.0165f,-0.0675f,0.011f,0.00169f,0.0798f,-0.0122f,0.0663f,-0.0359f,0.064f,0.00158f,0.0258f,-0.0186f,-0.0517f,0.136f,0.0476f,0.0611f,0.0133f,0.048f,-0.0243f,0.0663f,0.00633f,0.0465f,0.0356f,0.146f,-0.0703f,0.026f,-0.0431f,0.0193f,-0.0141f,-0.076f,0.0342f,0.11f,0.0324f,0.0595f,0.00446f,0.0197f,0.0107f,0.0313f,0.0128f,-0.0286f,0.0664f,0.0398f,-0.00793f,0.0231f,-0.121f,-0.00103f,-0.16f,-0.027f,-0.0641f,0.0154f,-0.00787f,-0.0461f,0.0245f,0.0102f,-0.0962f,-0.0369f,-0.0308f,0.0334f,0.0439f,0.0202f,0.0131f,-0.00429f,0.0162f,-0.0787f,-0.0619f,-0.112f,0.0139f,0.028f,0.00665f,-0.0128f,0.00866f,0.0291f,0.0444f,-0.0433f,-0.232f,0.0663f,0.0356f,-0.0254f,0.0232f,0.0711f,0.0244f,-0.00438f,0.0753f,0.0223f,-0.021f,0.0672f,-0.0751f,0.00835f,0.0395f,0.000796f,-0.0722f,0.0146f,-0.002f,-0.0565f,0.0829f,-0.0407f,-0.0198f,0.00398f,0.0481f,-0.0268f,-0.00875f,0.0768f,0.0215f,0.0112f,-0.00486f,-0.0187f,-0.00536f,0.0329f,0.0364f,-0.00279f,0.0505f,-0.00764f,0.0688f,0.0177f,0.0727f,0.00733f,0.0442f,-0.0714f,0.0342f,-0.0146f,-0.0166f,-0.0986f,0.0047f,0.00798f,-0.128f,-0.0456f,-0.00981f,-0.0156f,-0.0932f,-0.0529f,0.0203f,-0.0361f,-0.0737f,0.0297f,0.00404f,-0.0117f,-0.0533f,-0.00539f,0.0304f,-0.0196f,0.00619f,-0.0196f,-0.0525f,-0.176f,-0.163f,-0.0273f,0.0497f,-0.0156f,-0.0911f,-0.0943f,-0.0236f,-0.371f,-0.2f,-0.013f,-0.0115f,0.0212f,0.0831f,-0.0847f,0.0143f,-0.25f,-0.0173f,-0.0324f,0.00822f,-0.138f,0.00803f,0.000202f,0.0128f,0.0816f,-0.00467f,0.0672f,-0.16f,0.148f,0.0705f,-0.0216f,0.0349f,0.0849f,-0.00913f,-0.0276f,0.00419f,0.077f,0.0872f,-0.00867f,-0.0596f,-0.0169f,0.0112f,-0.0205f,-0.00136f,-0.0104f,-0.011f,0.0281f,-0.0593f,0.0256f,0.072f,0.0627f,0.0262f,0.00991f,-0.0379f,0.117f,-0.163f,0.0368f,0.247f,0.029f,0.0351f,-0.0972f,0.0137f,0.17f,0.000727f,0.0188f,-0.0303f,0.0325f,-0.0199f,0.194f,0.0836f,-0.0559f,0.0341f,-0.00907f,0.00111f,-0.00293f,0.0085f,0.0145f,0.0214f,0.126f,-0.0158f,-0.0292f,0.0342f,-0.0271f,0.048f,0.0294f,-0.0424f,0.143f,0.0294f,0.0998f,-0.0276f,0.0786f,0.104f,-0.0021f,-0.099f,0.118f,0.0226f,-0.0611f,0.147f,0.0385f,-0.123f,0.0301f,0.103f,0.0372f,0.0874f,-0.0791f,0.129f,0.113f,0.0349f,-0.0214f,0.187f,-0.0359f,0.18f,-0.0313f,0.115f,0.0228f,0.00853f,-0.0165f,0.0118f,0.0775f,0.0283f,0.113f,0.0541f,0.232f,-0.00684f,0.125f,0.116f,0.0295f,0.0331f,0.133f,0.111f,0.118f,-0.0359f,0.114f,-0.0118f,0.16f,-0.245f,0.0531f,-0.0337f,0.0222f,0.125f,0.0869f,0.021f,0.0588f,-0.044f,-0.0384f,0.0196f,0.0805f,0.0521f,-0.0782f,-0.0802f,0.00655f,-0.164f,-0.0222f,0.0545f,0.0755f,-0.0413f,0.0114f,0.00239f,-0.099f,-0.0276f,0.0112f,-0.0175f,-0.0264f,-0.118f,0.0526f,-0.161f,0.259f,-0.0733f,-0.0829f,-0.0449f,-0.0184f,-0.0196f,-0.0296f,0.0236f,-0.0369f,-0.053f,0.0411f,-0.175f,-0.0254f,-0.284f,0.0817f,-0.00381f,0.0732f,-0.0392f,0.0112f,-0.258f,-0.0734f,-0.0432f,0.0451f,0.156f,0.0177f,-0.0304f,-0.0141f,-0.119f,0.0828f,0.0175f,-0.0311f,-0.0411f,-0.00213f,-0.015f,0.0315f,0.0294f,-0.0305f,0.0834f,0.0463f,-0.118f,-0.316f,0.0293f,0.071f,-0.00286f,0.0143f,-0.0483f,0.0619f,-0.106f,0.0383f,-0.0274f,0.0572f,0.04f,-0.189f,0.174f,-0.00317f,0.00824f,-0.0429f,0.0894f,0.0179f,-0.0249f,-0.0379f,0.0068f,0.0874f,0.0114f,0.099f,0.00971f,0.117f,0.0415f,0.0301f,0.0303f,0.00871f,-0.0524f,0.0643f,-0.0615f,0.000528f,-0.104f,0.157f,0.051f,0.109f,-0.0487f,0.0402f,-0.00365f,-0.0986f,0.0139f,0.0758f,0.375f,-0.0818f,0.0357f,0.0141f,0.205f,-0.114f,0.0262f,-0.00875f,0.00298f,0.0192f,0.00888f,-0.0134f,-0.11f,-0.0277f,0.00973f,0.052f,-0.0448f,-0.0031f,0.0455f,-0.0248f,-0.149f,-0.00626f,-0.0461f,0.0113f,0.118f,-0.0367f,0.0448f,0.0456f,0.0475f,-0.11f,0.113f,0.0397f,0.058f,0.161f,0.0814f,0.00519f,-0.121f,0.0316f,-0.0359f,-0.022f,-0.0458f,-0.0268f,0.263f,-0.164f,-0.0674f,-0.0412f,0.00377f,0.0157f,-0.0106f,0.0809f,0.00993f,0.0113f,0.0407f,-0.0101f,-0.0163f,-0.0716f,0.24f,0.0236f,-0.00213f,-0.00456f,-0.0526f,0.00323f,0.218f,-0.0486f,0.0816f,0.06f,0.0816f,0.0657f,-0.0103f,0.0949f,0.0937f,-0.00757f,-0.0459f,-0.0213f,-0.0787f,0.0338f,0.0496f,-0.0292f,-0.0494f,-0.0113f,0.0311f,-0.0157f,0.0293f,0.205f,0.017f,-0.0356f,-0.0202f,0.0312f,-0.0572f,0.0891f,0.0357f,0.00433f,0.0201f,0.0482f,-0.0308f,-0.0317f,-0.0739f,0.123f,0.00744f,0.0937f,-0.0397f,0.00622f,0.0144f,-0.115f,0.0209f,0.114f,0.0313f,0.112f,-0.00761f,0.104f,-0.000828f,0.0796f,-0.00383f,-0.0108f,-0.051f,-0.0683f,0.0572f,0.134f,-0.0248f,0.0725f,0.00933f,-0.163f,0.106f,0.143f,-0.104f,-0.00941f,-0.032f,0.0293f,-0.00212f,-0.0321f,-0.0093f,0.208f,0.0158f,-0.0251f,0.0383f,0.0893f,0.0477f,0.00211f,0.123f,0.00878f,-0.0359f,0.0388f,-0.0142f,0.00173f,0.053f,-0.00745f,-0.0505f,0.0298f,-0.0232f,-0.0245f,-0.0251f,0.0709f,0.0269f,0.0287f,0.127f,0.0858f,-0.0541f,-0.0261f,0.00267f,0.0465f,0.00996f,0.0219f,0.0148f,-0.0673f,-0.0535f,-0.135f,-0.0703f,0.0176f,-0.147f,-0.0393f,0.0601f,-0.0536f,0.0307f,-0.065f,0.00953f,-0.0739f,0.00756f,-0.0648f,0.181f,-0.0664f,-0.187f,-0.0675f,-0.0331f,-0.0636f,0.0107f,0.0969f,0.154f,0.00132f,0.0432f,-0.00855f,0.0662f,-0.0806f,0.0219f,0.0216f,-0.0859f,-0.0106f,-0.0451f,0.0217f,-0.0112f,0.106f,0.00512f,-0.0566f,0.046f,-0.0401f,-0.018f,-0.0897f,-0.00891f,-0.0228f,0.00257f,0.0739f,-0.135f,-0.0176f,0.00165f,0.0281f,0.0298f,0.0766f,0.038f,0.0342f,-0.018f,-0.0458f,-0.0139f,0.133f,0.0432f,0.0537f,-0.163f,0.011f,-0.116f,-0.0667f,-0.00289f,0.0503f,-0.0378f,0.228f,-0.0406f,-0.0954f,0.0408f,-0.165f,0.209f,0.0197f,-0.00907f,-0.0358f,-0.00778f,-0.0442f,0.088f,-0.0299f,0.0678f,-0.00194f,-0.126f,0.0985f,0.0169f,0.0124f,0.105f,0.0742f,0.0859f,0.0551f,0.121f,-0.04f,0.027f,0.0329f,-0.00143f,-0.0579f,-0.0956f,0.0229f,-0.0526f,-0.0652f,0.0044f,-0.0178f,-0.03f,-0.0582f,0.00114f,0.035f,-0.0242f,-0.0214f,0.088f,-0.0162f,0.0731f,0.0857f,0.069f,0.0535f,0.037f,0.021f,0.0355f,0.0335f,-0.0428f,0.0754f,0.0942f,-0.0635f,0.0131f,0.0174f,0.108f,0.0605f,-0.00283f,-0.0258f,0.129f,-0.0693f,0.0873f,-0.138f,0.00215f,-0.0143f,0.0071f,-0.0697f,-0.0646f,0.116f,-0.0509f,-0.0955f,0.0262f,-0.0151f,-0.0608f,-0.0499f,0.0558f,0.132f,0.0316f,-0.00369f,0.0154f,-0.167f,-0.0698f,-0.0957f,-0.119f,0.0487f,-0.00342f,-0.0382f,-0.103f,-0.0282f,-0.0186f,0.0408f,-0.0551f,-0.124f,-0.0541f,-0.134f,0.0483f,0.0227f,-0.0742f,0.0406f,-0.0259f,-0.238f,-0.141f,0.033f,-0.0693f,-0.0398f,0.0962f,-0.0528f,0.0276f,-0.212f,0.0544f,-0.0191f,0.00607f,-0.0812f,-0.051f,-0.0406f,0.269f,-0.0494f,0.0431f,-0.0211f,0.0196f,0.151f,-0.0545f,0.178f,0.0338f,0.108f,0.0916f,-0.0158f,-0.0229f,0.0199f,0.192f,-0.277f,-0.149f,0.0408f,0.0727f,-0.0449f,0.017f,0.24f,-0.149f,0.0268f,-0.178f,0.0712f,0.0543f,0.014f,0.0686f,-0.0705f,-0.0472f,0.0382f,-0.0589f,-0.00754f,0.2f,0.0452f,-0.182f,0.0868f,0.0805f,0.178f,-0.0699f,0.0227f,0.000918f,-0.154f,-0.0701f,-0.00952f,-0.00662f,-0.0877f,-0.00195f,-0.0209f,-0.0136f,-0.0922f,-0.038f,0.108f,0.128f,0.132f,0.0646f,-0.0269f,-0.0633f,-0.321f,-0.0166f,-0.107f,0.0573f,-0.029f,0.0377f,0.042f,-0.33f,0.0526f,0.0782f,0.0395f,0.0426f,-0.0267f,-0.241f,0.103f,-0.136f,-0.0358f,-0.0486f,-0.00456f,-0.0107f,-0.0635f,0.109f,0.0413f,0.0316f,0.159f,0.0478f,-0.273f,-0.0206f,0.00446f,-0.103f,0.0527f,-0.0252f,-0.0311f,0.0616f,-0.0994f,0.033f,-0.00589f,0.0229f,-0.052f,0.0801f,0.0155f,0.109f,0.0114f,-0.137f,0.0476f,-0.132f,-0.113f,0.027f,-0.0246f,0.0732f,0.0812f,-0.135f,0.00683f,-0.0584f,0.0172f,-0.0334f,0.185f,-0.157f,0.0376f,-0.0077f,-0.0879f,-0.0387f,0.0129f,-0.00775f,0.04f,-0.0134f,0.0359f,0.0324f,0.0132f,0.0552f,0.00287f,-0.00955f,0.0274f,-0.0382f,0.0275f,-0.0609f,0.0492f,0.126f,0.00909f,-0.000571f,-0.0309f,0.0501f,-0.00413f,0.026f,0.0587f,-0.0238f,0.0218f,0.0127f,0.0233f,-0.0653f,-0.0469f,0.056f,-0.0922f,0.0596f,0.00826f,-0.0203f,-0.0122f,-0.014f,0.0691f,-0.0419f,0.0058f,-0.00915f,0.0166f,0.00894f,-0.0046f,0.00514f,-0.0061f,0.0505f,0.0349f,-0.0391f,0.0199f,-0.208f,0.01f,0.303f,-0.0354f,-0.0154f,0.0287f,-0.0479f,-0.0287f,0.0519f,0.0105f,-0.183f,0.0451f,0.0194f,-0.014f,-0.0238f,0.0344f,-0.0897f,0.00985f,-0.08f,-0.0913f,-0.0129f,-0.0291f,0.0208f,-0.0981f,0.0192f,0.0269f,0.127f,0.255f,-0.0611f,0.0763f,-0.1f,0.0256f,-0.039f,0.00187f,0.0913f,0.0925f,-0.0195f,-0.0401f,-0.0774f,0.144f,0.0505f,-0.0611f,-0.000942f,0.0305f,-0.00342f,-0.0423f,0.141f,0.221f,-0.0158f,0.0471f,0.0242f,-0.0784f,-0.00482f,0.18f,0.125f,0.0403f,0.0225f,0.0428f,0.0425f,-0.0286f,-0.052f,0.288f,0.0196f,-0.000467f,0.034f,0.0501f,-0.013f,-0.0751f,0.0156f,-0.0469f,0.038f,-0.00677f,0.00219f,-0.00888f,0.0465f,0.0722f,0.0361f,0.201f,-0.0417f,0.0222f,-0.00284f,-0.0546f,-0.0574f,-0.00693f,0.0927f,0.0172f,0.076f,0.0301f,0.0342f,-0.00045f,0.0126f,0.0476f,-0.136f,-0.0164f,0.154f,0.0408f,-0.00286f,0.0142f,-0.0504f,-0.00314f,0.0616f,0.0118f,0.183f,0.0809f,0.0833f,0.0712f,0.0296f,0.0979f,0.102f,0.151f,0.0748f,0.0472f,-0.0574f,-0.154f,0.121f,-0.0244f,0.144f,0.0672f,-0.0903f,-0.0133f,0.0613f,0.186f,0.159f,-0.00663f,0.0364f,0.0904f,0.17f,0.0741f,0.0953f,0.0148f,-0.0414f,-0.0696f,0.011f,0.0893f,-0.0184f,0.0252f,0.0512f,-0.0327f,-0.0146f,0.064f,-0.0986f,0.188f,0.0118f,-0.0164f,0.123f,0.0831f,0.16f,-0.174f,-0.0371f,0.0412f,0.00254f,0.00789f,-0.000872f,0.0551f,0.00898f,0.05f,0.0765f,0.0523f,-0.116f,-0.00387f,0.0209f,0.266f,-0.0241f,0.11f,0.00939f,-0.0159f,-0.0216f,0.205f,-0.00161f,0.045f,-0.00957f,-0.0825f,0.0653f,-0.00391f,0.0299f,-0.0226f,-0.0508f,-0.0736f,0.0461f,0.0465f,-0.00246f,0.016f,0.0698f,-0.0225f,0.038f,0.00198f,0.049f,-0.037f,4.82e-05f,0.0146f,0.0703f,0.139f,0.0316f,-0.0171f,0.0631f,0.0352f,-0.0195f,-0.00409f,-0.0404f,-0.0476f,0.0673f,-0.112f,-0.082f,0.0193f,-0.0155f,0.0571f,-0.0834f,0.00613f,-0.0172f,-0.0064f,0.046f,-0.0361f,0.0316f,0.0621f,-0.0701f,-0.0531f,0.0106f,0.0198f,-0.0928f,-0.00494f,0.0118f,0.0612f,0.207f,0.0831f,-0.107f,-0.0243f,0.236f,-0.165f,-0.125f,0.317f,-0.0314f,0.0927f,0.0427f,0.148f,0.00476f,0.0431f,0.171f,0.101f,-0.0589f,-0.115f,-0.0959f,-0.148f,0.0257f,0.0294f,-0.105f,0.0843f,0.0516f,0.00662f,-0.0436f,0.0354f,-0.084f,0.101f,-0.0936f,0.0851f,0.0802f,0.00704f,0.171f,0.213f,0.049f,0.014f,-0.142f,0.176f,-0.0602f,0.18f,-0.0235f,0.0118f,0.00785f,-0.195f,-0.124f,-0.0212f,0.00269f,-0.0384f,-0.0421f,0.0185f,0.113f,-0.12f,0.031f,0.088f,0.0195f,-0.12f,-0.121f,-0.00707f,0.0526f,0.0517f,0.0166f,-0.071f,-0.0668f,0.077f,-0.0716f,-0.156f,0.00806f,-0.117f,0.0274f,-0.0863f,-0.0921f,0.0272f,-0.0184f,0.118f,0.0366f,0.0981f,0.0267f,-0.177f,-0.0387f,-0.0667f,-0.0159f,-0.041f,0.105f,-0.0938f,0.0366f,0.0215f,0.0318f,0.0515f,0.0834f,-0.0368f,-0.0828f,0.0423f,-0.0182f,0.0972f,-0.146f,-0.0359f,-0.0717f,-0.0403f,0.029f,0.0487f,-0.21f,0.00464f,-0.0444f,-0.0236f,-0.0226f,-0.0422f,-0.0991f,0.139f,-0.0436f,-0.0629f,-0.0351f,0.0131f,0.121f,0.0173f,-0.00791f,0.0803f,-0.0794f,0.00659f,0.0062f,-0.267f,-0.0325f,0.0254f,-0.248f,-0.0462f,0.0359f,0.148f,0.0329f,-0.0796f,0.0659f,0.0776f,0.0223f,0.0378f,0.0178f,0.0192f,-0.0176f,0.0357f,0.00759f,-0.098f,-0.145f,-0.0174f,-0.0659f,-0.0257f,0.0941f,-0.032f,-0.0436f,-0.0217f,-0.0998f,-0.0272f,0.0406f,-0.0924f,-0.0583f,0.00884f,-0.0314f,-0.0116f,-0.00294f,-0.103f,0.0833f,-0.0635f,0.0819f,-0.144f,-0.0664f,-0.0472f,0.0243f,0.0637f,-0.0241f,-0.174f,-0.0254f,-0.0263f,-0.0874f,-0.131f,-0.338f,0.0364f,-0.033f,-0.119f,0.0541f,-0.0174f,0.0416f,-0.0903f,0.0125f,-0.115f,0.0118f,-0.0689f,0.00399f,0.00778f,-0.01f,-0.0164f,0.0637f,-0.0521f,-0.074f,-0.0597f,0.0909f,-0.00387f,0.0831f,-0.0838f,-0.0448f,-0.0625f,0.0762f,-0.0333f,0.0488f,-0.051f,-0.341f,-0.0117f,0.0253f,-0.123f,-0.0319f,-0.0796f,-0.0568f,0.0553f,-0.0431f,0.0395f,0.00599f,-0.0251f,0.00145f,-0.0383f,-0.0669f,0.0713f,-0.0157f,-0.0525f,0.0477f,-0.375f,-0.0956f,-0.0758f,-0.174f,-0.18f,-0.083f,0.00532f,-0.031f,0.0257f,0.014f,-0.11f,-0.0498f,0.066f,-0.104f,0.0597f,0.083f,-0.00177f,-0.00328f,-0.0853f,-0.363f,0.0125f,-0.0468f,-0.0674f,-0.00748f,-0.0374f,-0.124f,-0.0715f,0.0852f,0.0894f,0.11f,0.00325f,0.0533f,-0.0212f,0.176f,0.0465f,-0.197f,-0.01f,-0.0659f,0.135f,-0.02f,0.0648f,-0.03f,0.0698f,0.0458f,-0.0155f,0.0809f,-0.0644f,0.0153f,-0.0591f,0.128f,0.0607f,0.00932f,0.0596f,-0.0282f,-0.0817f,-0.00306f,-0.19f,0.0729f,0.148f,0.0704f,0.109f,0.0342f,0.0755f,-0.0593f,-0.0419f,0.0427f,0.0365f,0.0528f,0.0126f,0.0599f,0.0181f,-0.0379f,0.0317f,0.0841f,-0.171f,-0.00734f,0.1f,-0.00409f,-0.0961f,0.0279f,0.018f,-0.0333f,-0.0636f,0.0174f,0.0184f,0.0552f,0.0769f,-0.178f,0.0278f,0.0203f,-0.0258f,-0.0465f,0.22f,-0.0498f,0.0227f,-0.223f,0.016f,0.0619f,-0.117f,0.00356f,-0.00252f,-0.0674f,-0.0189f,0.0137f,-0.0406f,0.0498f,-0.0157f,-0.00803f,0.0542f,0.00193f,0.0257f,-0.0152f,0.00443f,-0.0227f,-0.0266f,-0.108f,0.0157f,0.0155f,-0.103f,0.0426f,-0.0318f,-0.0588f,0.00315f,-0.181f,-0.042f,0.0275f,-0.0111f,-0.0445f,0.0416f,-0.0384f,0.00954f,0.0104f,0.00837f,-0.0862f,-0.0328f,-0.00758f,0.0933f,-0.158f,-0.0355f,0.0453f,0.00133f,-0.125f,0.0251f,0.0306f,-0.0136f,0.0888f,-0.0552f,-0.077f,-0.0488f,-0.0223f,-0.0403f,-0.0335f,0.0888f,0.0414f,0.195f,-0.0292f,0.00262f,-0.0449f,0.122f,-0.0133f,0.0363f,-0.00174f,-0.0151f,-0.0607f,0.0346f,-0.0494f,0.0481f,-0.0262f,-0.00673f,0.0315f,-0.0562f,-0.00683f,-0.0277f,0.0408f,-0.0595f,0.0181f,-0.0971f,-0.00348f,-0.00364f,0.0239f,0.0397f,-0.0191f,-0.0636f,0.0193f,-0.0321f,-0.0422f,0.0574f,0.0393f,-0.256f,0.04f,0.0272f,0.31f,-0.36f,0.0253f,0.0544f,-0.00876f,-0.509f,-0.0726f,-0.0242f,0.05f,0.000919f,0.0832f,0.00531f,0.00433f,-0.00989f,0.0225f,-0.00352f,-0.107f,-0.0181f,0.0592f,-0.13f,-0.00774f,0.0692f,-0.0449f,-0.0349f,-0.00649f,0.0524f,-0.115f,-0.0768f,-0.0715f,0.095f,0.0656f,-0.0099f,0.143f,0.0117f,-0.025f,0.000654f,-0.0289f,0.00332f,0.0336f,-0.109f,-0.106f,-0.161f,-0.0907f,-0.0213f,-0.00299f,0.0396f,-0.00256f,-0.00596f,-0.0335f,-0.045f,0.0163f,0.128f,0.0603f,0.103f,0.00649f,-0.0594f,0.0377f,0.00735f,0.0157f,0.0727f,-0.0167f,0.0169f,0.0709f,-0.135f,0.00138f,-0.0282f,0.0297f,0.013f,-0.00249f,0.0204f,0.195f,0.00893f,-0.00298f,0.0656f,-0.0319f,0.0915f,0.114f,-0.00268f,-0.0472f,0.053f,0.186f,-0.00681f,0.028f,0.0877f,-0.0329f,0.0753f,0.171f,0.0223f,0.0383f,-0.0131f,-0.113f,-0.041f,-0.0449f,0.0838f,0.143f,-0.0167f,0.0965f,0.0144f,0.0348f,0.00426f,-0.0231f,0.0788f,0.0283f,-0.0718f,-0.0628f,-0.0357f,0.0313f,-0.00903f,-0.0167f,-0.00227f,-0.11f,0.0485f,-0.00867f,0.0739f,0.0728f,-0.08f,-0.0185f,-0.0619f,0.0382f,0.0206f,0.0586f,0.0152f,0.0424f,0.103f,0.0894f,-0.0211f,-0.0387f,-0.0559f,0.0774f,-0.0356f,0.0941f,0.0657f,0.0768f,0.145f,-0.0349f,0.078f,-0.0158f,0.0983f,0.0336f,0.0342f,-0.0227f,0.0221f,-0.0124f,-0.0407f,-0.21f,-0.0538f,-0.0199f,-0.00189f,-0.0422f,-0.0036f,0.0482f,-0.0775f,0.0543f,0.033f,0.139f,-0.0172f,0.0582f,-0.0107f,0.0295f,-0.0413f,0.018f,0.143f,0.0275f,-0.031f,-0.138f,0.145f,-0.00557f,0.0338f,-0.0794f,0.183f,0.0115f,-0.067f,0.122f,0.22f,0.00658f,0.068f,0.08f,0.00512f,-0.0186f,0.00648f,0.007f,0.431f,-0.0403f,-0.0282f,0.111f,-0.192f,0.0313f,0.0415f,0.011f,-0.0224f,0.0422f,0.0407f,-0.00305f,0.0708f,-0.0638f,-0.0182f,-0.0261f,0.124f,0.0675f,-0.0443f,0.00272f,0.0464f,0.129f,0.00605f,-0.0124f,0.0674f,0.0247f,-0.00389f,-0.0476f,-0.0488f,-0.036f,-0.0524f,0.0318f,0.0276f,0.0531f,0.0209f,-0.0104f,0.0813f,0.0656f,0.0164f,-0.0106f,0.0422f,-0.0441f,0.00261f,-0.0206f,0.0395f,-0.0174f,-0.0717f,0.13f,0.0759f,0.037f,-0.0559f,-0.187f,-0.102f,-0.041f,0.00283f,-0.206f,-0.121f,-0.11f,-0.0229f,-0.0366f,-0.0144f,0.077f,-0.0873f,0.0401f,-0.104f,0.01f,-0.0646f,0.0652f,0.0417f,0.0779f,-0.119f,-0.153f,-0.0205f,0.0329f,0.027f,-0.0858f,-0.00125f,0.107f,0.0155f,-0.0692f,-0.0531f,-0.121f,0.0265f,-0.0225f,-0.107f,-0.0942f,0.091f,-0.104f,-0.00851f,0.021f,-0.0185f,-0.188f,-0.0563f,0.05f,-0.0662f,-0.0194f,-0.043f,-0.208f,-0.0831f,-0.17f,-0.058f,-0.178f,-0.0998f,-0.00959f,-0.0661f,-0.0434f,0.277f,-0.0308f,-0.0101f,0.0616f,0.0482f,-0.127f,0.00688f,-0.0522f,-0.0393f,-0.0747f,-0.0265f,0.0033f,0.00397f,-0.0205f,-0.0815f,0.0241f,0.0227f,0.545f,-0.0946f,0.0175f,0.067f,0.0122f,-0.0382f,0.063f,0.0132f,0.155f,-0.0252f,-0.0186f,0.048f,0.0085f,0.00239f,-0.084f,-0.0718f,0.0657f,0.0146f,-0.0244f,0.0336f,-0.0403f,0.0436f,0.372f,0.0184f,0.23f,0.0194f,0.035f,0.0904f,0.0831f,-0.0221f,0.0727f,0.0775f,0.0297f,-0.0648f,-0.0256f,0.127f,-0.00573f,0.00764f,0.0261f,0.00868f,-0.0404f,0.0131f,0.00873f,0.0379f,0.0773f,0.104f,0.0141f,0.33f,0.0309f,-0.0411f,-0.0569f,0.0144f,0.163f,-0.0312f,0.0906f,0.0437f,-0.0203f,0.131f,-0.0147f,-0.00785f,0.0317f,0.0401f,-0.00704f,-0.0537f,0.0103f,0.0487f,-0.017f,-0.0653f,-0.0105f,0.0352f,0.00978f,0.0785f,-0.00581f,-0.0884f,-0.0153f,-0.0514f,-0.015f,-0.0232f,-0.0449f,0.0833f,0.0468f,-0.0679f,0.0643f,-0.0274f,0.00569f,0.0577f,0.265f,-0.0334f,0.49f,-0.0632f,0.183f,-0.0452f,0.134f,0.0407f,-0.0753f,-0.018f,-0.013f,-0.0834f,0.043f,0.0373f,-0.0354f,-0.0395f,-0.122f,0.0298f,0.158f,0.0131f,0.0849f,-0.0232f,0.0688f,-0.00615f,0.0216f,-0.0235f,-0.0275f,-0.0595f,-0.0695f,-0.0894f,0.113f,-0.0206f,-0.0685f,-0.0276f,-0.043f,-0.04f,-0.0985f,-0.0434f,0.0633f,0.13f,0.0671f,0.0683f,-0.014f,0.0639f,0.0477f,-0.0875f,-0.0995f,0.0163f,0.0559f,0.0012f,0.0135f,0.0191f,0.0963f,0.0194f,-0.000618f,-0.129f,-0.172f,0.0106f,0.141f,-0.0796f,-0.0823f,0.000645f,-0.00882f,-0.128f,-0.0139f,0.0362f,0.0819f,0.0752f,-0.034f,0.00235f,-0.00672f,0.00621f,0.0153f,-0.00465f,-0.0228f,-0.0179f,-0.0839f,-0.304f,-0.0645f,0.0465f,0.0765f,0.0864f,-0.0223f,0.0705f,0.00736f,0.195f,-0.104f,0.00304f,-0.151f,0.0107f,-0.0733f,-0.0702f,-0.265f,-0.109f,-0.0663f,-0.143f,-0.118f,-0.0962f,-0.0457f,-0.128f,-0.11f,-0.131f,0.029f,0.0374f,-0.0583f,-0.0224f,-0.0092f,-0.136f,-0.0729f,-0.0145f,-0.014f,-0.116f,0.201f,0.197f,-0.0968f,0.0034f,0.0243f,-0.0387f,-0.0468f,-0.00384f,-0.0199f,0.0658f,-0.102f,-0.0497f,-0.253f,-0.166f,-0.0712f,-0.0891f,0.00689f,-0.0559f,-0.0287f,-0.0575f,0.00363f,-0.245f,0.041f,-0.0874f,0.139f,-0.029f,-0.124f,0.0185f,-0.184f,0.0131f,0.00321f,0.00644f,0.0544f,-0.196f,-0.0569f,-0.0727f,-0.0183f,0.0117f,-0.000689f,-0.0963f,-0.0928f,0.0299f,0.0488f,0.0496f,-0.177f,-0.0205f,0.106f,-0.0563f,-0.0159f,-0.186f,-0.00744f,0.165f,-0.00128f,0.0332f,-0.21f,0.00935f,0.0603f,0.0269f,-0.0197f,0.011f,-0.141f,-0.0286f,0.0438f,0.128f,0.0202f,0.0693f,-0.0675f,-0.0345f,-0.0401f,-0.0185f,-0.0577f,0.0233f,0.0314f,-0.00771f,0.0346f,-0.0191f,-0.0569f,-0.00305f,-0.00612f,-0.159f,-0.0141f,-0.0754f,0.0148f,-0.0584f,0.0515f,-0.0637f,0.138f,-0.00885f,0.0154f,-0.0539f,-0.0939f,-0.0275f,-0.118f,-0.14f,0.107f,0.0145f,-0.061f,-0.0347f,-0.042f,0.0537f,0.0565f,-0.0499f,-0.0311f,-0.0311f,-0.106f,-0.0624f,-0.0249f,0.0299f,0.05f,0.0152f,0.105f,-0.00926f,0.116f,-0.193f,0.0437f,-0.208f,0.109f,-0.0456f,-0.0654f,-0.186f,-0.0796f,0.0844f,0.0284f,-0.0199f,0.0681f,-0.0208f,-0.0334f,-0.0443f,-0.0445f,-0.0219f,0.0487f,0.0526f,0.0266f,-0.152f,0.0478f,-0.000116f,-0.00329f,-0.00568f,0.0168f,-0.12f,-0.0254f,-0.108f,-0.154f,-0.222f,-0.0363f,0.0404f,-0.0531f,-0.155f,-0.0772f,0.0124f,0.0317f,0.0199f,0.0392f,-0.0635f,0.141f,0.0671f,0.0482f,0.0121f,-0.116f,-0.00405f,0.0695f,-0.0716f,-0.0596f,0.0356f,0.0887f,0.0457f,-0.0671f,-0.0252f,-0.0135f,0.0576f,-0.0169f,-0.0073f,0.00131f,-0.0558f,0.0123f,-0.0536f,0.158f,-0.123f,-0.00829f,-0.151f,-0.0397f,0.0261f,0.0418f,-0.0588f,-0.066f,-0.0361f,0.215f,-0.23f,-0.0128f,-0.0856f,0.0233f,0.017f,-0.0345f,0.116f,-0.02f,0.0565f,-0.000465f,-0.0984f,-0.113f,0.173f,-0.0101f,0.0141f,0.158f,-0.0575f,-0.0415f,-0.0384f,0.0228f,-0.0126f,-0.104f,0.0299f,0.0348f,-0.0826f,0.0348f,-0.0392f,-0.0417f,0.0145f,-0.0147f,0.0965f,0.0154f,0.0945f,0.0961f,0.0178f,-0.0633f,-0.033f,-0.0209f,0.0405f,-0.0232f,-0.155f,-0.00703f,-0.118f,0.123f,0.0233f,0.0884f,0.0847f,0.129f,0.0944f,0.185f,-0.0486f,0.0799f,-0.0245f,-0.0652f,0.0417f,0.0618f,-0.00517f,-0.00752f,-0.114f,0.027f,0.0194f,0.0443f,0.126f,0.0562f,0.0416f,-0.11f,0.0943f,0.114f,-0.0228f,-0.015f,-0.0964f,0.0992f,-0.0213f,0.0298f,0.0659f,0.133f,0.0552f,-0.0407f,-0.138f,0.0384f,0.0128f,0.00413f,0.113f,0.0572f,0.00105f,0.108f,-0.0397f,-0.0327f,-0.00105f,0.0191f,0.0435f,-0.104f,0.0156f,0.152f,0.072f,0.0669f,0.0538f,0.163f,0.132f,0.0453f,-0.0136f,0.0274f,0.0813f,0.058f,-0.0547f,-0.00487f,-0.229f,-0.215f,0.00212f,-0.0576f,0.048f,-0.0484f,-0.18f,-0.0309f,-0.0416f,-0.00533f,-0.14f,0.135f,-0.0344f,0.0491f,-0.0174f,-0.126f,0.172f,0.0793f,-0.107f,-0.0779f,-0.000216f,0.0287f,-0.223f,0.0986f,-0.148f,0.161f,-0.089f,-0.000233f,-0.00973f,-0.0898f,0.149f,0.155f,-0.0911f,-0.018f,0.0717f,-0.182f,-0.0337f,0.166f,-0.166f,0.0367f,-0.216f,-0.113f,-0.0106f,0.203f,0.124f,0.069f,-0.0451f,-0.0267f,-0.00777f,0.024f,0.0718f,0.086f,0.0887f,-0.00672f,0.0853f,-0.104f,0.0585f,-0.023f,0.0436f,0.0415f,0.251f,-0.0285f,0.053f,-0.00846f,-0.0495f,0.0646f,0.0497f,0.0439f,0.169f,-0.036f,-0.0318f,0.0639f,0.0523f,0.0443f,-0.0217f,0.0169f,0.000409f,0.0857f,-0.024f,0.0682f,0.0693f,0.0429f,0.0648f,0.00103f,0.158f,0.0594f,0.135f,0.0843f,-0.00335f,0.0346f,0.0219f,-0.0342f,-0.0437f,0.167f,-0.0116f,0.123f,0.107f,-0.0199f,-0.0433f,0.0402f,0.029f,0.0437f,0.0237f,-0.0383f,0.135f,-0.0215f,0.172f,0.204f,0.0234f,0.0181f,-0.0113f,-0.0692f,0.0448f,0.0525f,0.119f,-0.0523f,0.0706f,-0.0181f,0.0431f,0.047f,-0.0349f,-0.0883f,0.0443f,0.0664f,0.19f,-0.0818f,-0.103f,0.0463f,-0.00733f,-0.0604f,0.0486f,0.0273f,-0.0328f,-0.0275f,-0.0898f,0.0984f,-0.0041f,0.0944f,-0.134f,0.107f,-0.187f,0.0289f,-0.144f,-0.135f,0.0148f,-0.0331f,-0.0921f,-0.0646f,-0.176f,-0.29f,-0.187f,-0.134f,-0.0676f,0.0162f,0.0143f,0.0654f,-0.0735f,-0.133f,-0.0325f,0.0611f,-0.0215f,-0.00256f,0.151f,-0.0608f,0.0201f,-0.0235f,-0.172f,0.053f,-0.0787f,-0.0636f,-0.158f,-0.0868f,-0.063f,-0.00271f,-0.106f,-0.0261f,-0.13f,-0.0923f,-0.136f,-0.153f,-0.0191f,0.00439f,0.0783f,0.0528f,-0.122f,-0.142f,-0.102f,-0.0726f,-0.0403f,-0.0687f,-0.134f,-0.0563f,-0.0186f,0.141f,-0.052f,0.0103f,0.0495f,0.0306f,-0.0384f,-0.0741f,0.0242f,0.0997f,0.0465f,-0.0519f,0.0948f,0.112f,0.0676f,0.138f,-0.137f,0.057f,0.0364f,-0.0202f,0.0089f,-0.0326f,0.189f,0.139f,0.0279f,-0.062f,0.02f,0.182f,-0.0185f,-0.015f,0.0574f,0.0724f,0.0207f,0.122f,0.0888f,0.0185f,0.0367f,0.112f,-0.015f,-0.102f,0.121f,-0.0323f,-0.0641f,0.012f,0.0382f,0.00507f,-0.00333f,0.0516f,0.0221f,-0.142f,-0.00971f,-0.0265f,0.0362f,-0.00615f,-0.0215f,0.0469f,-0.00264f,0.0495f,0.00703f,0.0116f,0.134f,-0.0589f,-0.0492f,0.0482f,-0.00686f,-0.00158f,-0.0979f,-0.00239f,0.215f,0.0038f,0.0029f,0.0368f,0.0154f,-0.0468f,0.00345f,-0.0368f,0.0116f,-0.000152f,0.0105f,0.00281f,0.0304f,-0.0134f,-0.0219f,-0.0168f,0.0323f,-0.0117f,-0.00717f,-0.0153f,0.133f,0.014f,0.0195f,-0.0312f,0.0953f,0.0454f,-0.0402f,-0.0173f,0.0222f,-0.0111f,0.0535f,0.0181f,0.0197f,-0.0207f,-0.0149f,0.0167f,0.0193f,-0.019f,0.0255f,0.194f,-0.0238f,0.0167f,0.162f,0.12f,0.0506f,0.023f,-0.0215f,0.0585f,-0.0207f,0.42f,-0.00981f,-0.00854f,0.035f,0.0151f,-0.0122f,0.335f,-0.00778f,-0.00366f,0.0379f,0.0702f,0.0378f,-0.0181f,-0.0185f,0.0631f,-0.00397f,-0.0575f,0.0174f,0.112f,-0.0787f,-0.175f,0.00154f,0.0862f,0.0721f,-0.141f,-0.0321f,-0.103f,0.0334f,-0.217f,0.029f,0.0126f,-0.0257f,-0.215f,0.0786f,-0.074f,-0.144f,-0.0026f,-0.0728f,0.0721f,0.0149f,0.015f,0.0198f,-0.0102f,0.0333f,-0.00422f,-0.0363f,0.0136f,0.0808f,-0.0933f,0.0682f,-0.0737f,-0.0173f,0.0862f,-0.0489f,-0.0322f,-0.0443f,-0.142f,-0.144f,-0.116f,-0.0696f,-0.0145f,-0.121f,-0.126f,0.00113f,-0.0532f,0.408f,0.0437f,-0.115f,-0.0156f,-0.0824f,-0.0255f,0.0463f,-0.0504f,0.0436f,-0.202f,0.0216f,0.0302f,-0.0153f,-0.0926f,0.0198f,-0.0749f,0.00763f,-0.0522f,-0.0566f,-0.114f,-0.0197f,0.0468f,0.0166f,-0.138f,0.0608f,-0.0064f,-0.132f,-0.0744f,-0.191f,-0.426f,-0.0688f,-0.00436f,-0.0997f,-0.0141f,-0.111f,-0.067f,0.00736f,0.0137f,-0.0546f,0.023f,0.0372f,-0.0366f,0.0319f,-0.0232f,0.00575f,-0.0127f,-0.0358f,-0.271f,-0.0524f,-0.0943f,-0.00848f,0.018f,-0.0125f,-0.148f,-0.0552f,0.102f,0.00792f,-0.0152f,-0.00609f,-0.0438f,0.0159f,-0.0127f,0.0139f,0.0138f,-0.00785f,-0.0813f,0.016f,0.0457f,0.00732f,-0.324f,-0.235f,0.113f,-0.136f,-0.0976f,0.0163f,-0.0342f,-0.0154f,0.0199f,-0.0482f,0.0301f,-0.0283f,-0.081f,-0.0303f,-0.104f,-0.0478f,-0.172f,-0.0169f,0.0259f,0.0257f,0.0137f,0.121f,-0.0218f,0.115f,0.0164f,0.116f,-0.0282f,0.139f,0.17f,-0.185f,-0.175f,-0.0136f,-0.0341f,-0.0213f,0.0155f,-0.00588f,0.00043f,0.081f,0.13f,-0.0278f,-0.218f,0.0618f,-0.2f,0.109f,-0.073f,0.0569f,-0.0214f,-0.0706f,-0.0464f,0.0772f,-0.0274f,-0.00801f,-0.0624f,0.0229f,-0.00685f,0.0369f,0.0132f,-0.112f,0.00939f,0.0491f,-0.196f,-0.018f,0.0865f,0.00877f,-0.00657f,0.0213f,-0.0549f,0.0396f,-0.0725f,-0.0608f,-0.0306f,-0.0453f,0.133f,-0.139f,0.0281f,0.0155f,0.0838f,0.0927f,-0.0229f,0.0473f,0.0378f,0.101f,0.158f,0.123f,0.0534f,0.0344f,-0.039f,0.141f,0.00738f,-0.0288f,0.0261f,0.0428f,-0.046f,-0.0652f,-0.023f,-0.0418f,0.054f,0.125f,0.0345f,0.0301f,-0.069f,0.0715f,-0.0408f,0.0291f,-0.122f,0.0107f,-0.0294f,-0.0955f,-0.0579f,0.00364f,0.225f,-0.00415f,-0.096f,-0.0213f,-0.0252f,0.0768f,0.0254f,-0.0438f,0.0791f,-0.00565f,-0.0259f,-0.0977f,-0.146f,0.0845f,0.0583f,0.0651f,-0.0407f,0.0463f,-0.0134f,-0.0254f,-0.0157f,-0.0535f,0.154f,-0.055f,0.0392f,0.0078f,0.0254f,-0.106f,-0.0395f,-0.0189f,0.224f,0.0483f,-0.109f,-0.206f,0.0666f,-0.0762f,-0.102f,0.208f,0.0268f,-0.0205f,-0.0281f,0.0404f,0.0136f,0.07f,-0.0306f,0.0123f,-0.119f,0.0544f,-0.103f,-0.0179f,-0.117f,-0.0964f,-0.101f,0.0647f,-0.0663f,-0.0432f,0.0179f,0.163f,0.0176f,-0.00376f,-0.0981f,-0.057f,-0.00521f,0.0268f,-0.0886f,-0.0559f,-0.0355f,-0.0711f,0.0356f,-0.107f,-0.154f,0.0276f,-0.103f,0.143f,-0.138f,6.32e-05f,0.12f,-0.136f,0.151f,0.0556f,-0.0773f,-0.0244f,-0.162f,-0.0638f,-0.00426f,-0.0189f,-0.122f,-0.00043f,-0.0276f,-0.224f,-0.0918f,-0.157f,-0.0764f,-0.0287f,0.0192f,0.0203f,0.0237f,-0.0485f,0.0188f,-0.0916f,-0.0498f,-0.0816f,-0.0198f,-0.128f,-0.202f,-0.0237f,-0.052f,-0.148f,-0.0787f,-0.0869f,-0.0437f,0.00712f,-0.0757f,-0.101f,0.0734f,-0.144f,-0.0705f,0.0475f,-0.0644f,-0.102f,0.0146f,-0.133f,-0.121f,0.141f,-0.171f,0.134f,0.0115f,-0.129f,-0.148f,0.047f,0.0261f,-0.0504f,-0.0308f,-0.225f,0.00728f,-0.244f,0.109f,0.0379f,-0.026f,-0.155f,-0.0538f,-0.0508f,0.00803f,-0.0694f,0.0404f,-0.128f,-0.00561f,-0.086f,0.173f,-0.0734f,-0.101f,0.0117f,0.00987f,0.0313f,0.0459f,-0.0653f,0.0149f,0.00138f,-0.0295f,0.000454f,0.284f,0.0368f,-0.111f,0.203f,0.0412f,0.0953f,0.0262f,0.0604f,0.044f,0.178f,0.000154f,-0.0433f,-0.0257f,0.118f,-0.0853f,-0.0103f,-0.0277f,0.0265f,0.0239f,-0.0216f,0.0135f,0.0984f,-0.0564f,0.0176f,0.0714f,0.0203f,-0.167f,0.0526f,0.0237f,0.0334f,-0.0806f,0.00982f,0.0982f,0.00852f,-0.0811f,0.0434f,0.00244f,0.0337f,-0.103f,-0.0732f,-0.0579f,-0.0514f,-0.0484f,-0.244f,-0.0317f,0.00894f,0.0447f,-0.0307f,-0.0285f,0.00884f,-0.0063f,0.0368f,-0.146f,0.0942f,0.0587f,-0.0501f}; +float neck__lateral_convs__2_pw_bias[64] = {-0.0574f,0.0164f,0.0236f,0.264f,0.106f,0.00578f,0.00725f,-0.149f,0.0783f,0.00496f,0.00653f,0.0262f,0.0783f,0.265f,0.0601f,0.0232f,0.118f,0.121f,0.0384f,0.0121f,0.00394f,-0.0187f,-0.042f,-0.0114f,0.213f,-0.0799f,0.0984f,0.0141f,-0.0116f,-0.162f,-0.117f,-0.0279f,0.0363f,-0.0179f,0.0409f,0.103f,0.0575f,-0.0132f,0.0302f,0.14f,0.0126f,0.00635f,-0.0922f,0.0847f,-0.104f,-0.0724f,0.212f,-0.169f,0.0516f,-0.0283f,-0.311f,-0.0584f,-0.0341f,-0.12f,0.179f,0.109f,-0.0316f,-0.0668f,0.0304f,0.036f,-0.27f,-0.0589f,0.0699f,0.094f}; +float neck__lateral_convs__2_dw_weight[64*1*3*3] = {1.06f,1.65f,-0.415f,0.0932f,-0.972f,-0.0165f,1.23f,0.812f,0.336f,-0.987f,1.78f,-0.45f,-1.27f,0.226f,0.617f,0.0374f,0.422f,0.528f,-1.74f,-0.249f,1.02f,-0.307f,-2.23f,-2.04f,0.436f,-1.15f,0.341f,-0.92f,1.11f,0.514f,-1.51f,0.018f,-0.365f,-0.843f,0.461f,3.68f,0.488f,-0.27f,1.09f,-0.273f,-1.92f,-0.308f,-1.97f,-0.065f,-0.702f,-0.525f,0.449f,0.528f,0.613f,-0.275f,1.45f,-0.59f,-0.15f,-0.633f,2.05f,-0.774f,-1.05f,1.29f,0.507f,-0.274f,0.945f,0.169f,0.566f,1.03f,0.524f,-0.333f,0.285f,-0.374f,-0.0434f,0.227f,0.206f,0.753f,-0.373f,-0.356f,2.15f,0.581f,-0.422f,0.822f,1.33f,-0.941f,1.9f,-0.18f,-0.766f,-0.0981f,0.0526f,-0.0173f,-0.328f,-0.566f,1.21f,-0.409f,0.369f,-0.208f,2.27f,1.34f,-0.278f,-0.00319f,-0.044f,-0.303f,-1.14f,-0.221f,0.412f,-0.344f,0.413f,-0.175f,-0.817f,-0.226f,-0.323f,-0.245f,-0.58f,-0.492f,-0.101f,0.19f,-0.149f,0.471f,1.21f,-0.27f,0.434f,-0.427f,-0.369f,-0.285f,-0.473f,0.731f,0.339f,-0.78f,1.08f,0.339f,0.737f,1.09f,0.433f,0.364f,1.3f,-0.524f,-0.0144f,0.707f,0.104f,0.494f,0.498f,-1.33f,1.32f,-1.13f,0.16f,0.516f,-0.405f,-0.557f,1.26f,1.93f,-0.453f,-0.958f,-0.281f,-0.229f,-0.325f,-0.403f,-0.464f,-0.27f,1.45f,0.839f,0.828f,0.526f,0.148f,-0.0117f,-0.0876f,-1.09f,0.225f,3.51f,0.536f,0.196f,1.91f,0.0348f,-1.08f,-0.143f,-1.96f,-0.0393f,-0.864f,-0.794f,-0.0881f,0.163f,2.45f,-0.218f,1.97f,-0.644f,-5.82f,-0.669f,2.06f,0.382f,-0.96f,2.12f,0.0731f,-0.00411f,0.604f,0.136f,0.518f,1.12f,0.297f,0.56f,-0.289f,-0.181f,-1.38f,0.0889f,0.603f,0.612f,1.41f,0.293f,1.1f,0.0494f,-1.14f,0.558f,1.83f,0.58f,0.386f,0.102f,-0.308f,0.708f,0.529f,-0.848f,-0.275f,-1.2f,0.38f,-0.701f,0.558f,-1.24f,-0.142f,0.817f,-0.522f,-0.237f,-0.46f,-0.226f,-1.1f,1.12f,0.245f,-1.27f,-0.631f,0.0769f,-0.994f,-0.465f,-1.09f,0.642f,-0.232f,-0.324f,0.333f,0.794f,-0.137f,0.509f,-0.15f,-0.335f,-0.218f,-0.396f,0.846f,-0.921f,-0.379f,0.342f,0.201f,-1.4f,-0.598f,0.019f,0.296f,1.15f,-0.699f,0.683f,1.09f,-2.98f,-0.112f,0.464f,0.23f,1.57f,-0.799f,0.477f,0.162f,0.577f,-0.0785f,0.762f,0.122f,-0.976f,0.752f,0.38f,-0.897f,0.318f,0.149f,-1.33f,0.228f,-1.05f,0.869f,0.278f,-0.361f,1.34f,-0.334f,-0.198f,-0.721f,-0.267f,-0.516f,-0.0231f,1.42f,-0.931f,0.688f,-0.803f,-0.255f,0.635f,-0.295f,-0.385f,-0.647f,0.942f,-0.371f,-0.294f,0.177f,-0.522f,0.118f,1.31f,0.671f,-0.578f,0.868f,-0.107f,-0.285f,0.13f,-0.783f,-0.297f,1.38f,-1.17f,-1.3f,0.523f,1.09f,0.545f,0.159f,0.278f,1.36f,0.736f,0.859f,-0.0689f,-0.469f,0.378f,-0.487f,0.00557f,-0.712f,-2.24f,0.459f,0.418f,-0.182f,-1.46f,-0.168f,-0.426f,0.168f,-1.06f,0.366f,-0.871f,0.076f,0.668f,-0.786f,-0.228f,0.259f,-0.0105f,-0.858f,0.252f,0.0254f,-0.527f,-0.0938f,-0.242f,0.834f,0.774f,0.598f,0.312f,1.07f,0.333f,-0.399f,-0.803f,0.375f,0.2f,-0.208f,-0.246f,-0.242f,0.139f,1.07f,0.705f,0.15f,-0.308f,-1.3f,-0.255f,0.383f,-0.0733f,-0.653f,0.495f,0.63f,1.92f,-0.376f,0.394f,0.334f,0.536f,0.941f,1.74f,0.661f,-0.0683f,-0.974f,-0.0253f,0.869f,0.696f,2.55f,-1.46f,0.502f,-2.38f,-0.908f,0.386f,1.26f,-0.0128f,-0.761f,0.755f,-0.555f,-0.294f,1.21f,0.209f,-1.44f,-0.376f,-0.227f,-1.63f,0.379f,-5.05f,-0.396f,0.392f,-1.11f,-0.807f,-1.98f,-0.625f,0.103f,3.18f,1.61f,-1.01f,0.589f,0.761f,0.105f,-1.11f,-1.78f,0.776f,-0.0299f,-0.162f,1.04f,0.912f,0.661f,1.31f,0.635f,-0.222f,0.42f,-0.139f,2.42f,-0.774f,0.00208f,0.279f,-0.099f,0.521f,-0.904f,0.653f,0.279f,-2.58f,0.583f,0.00447f,1.59f,0.199f,0.626f,0.39f,-0.469f,0.614f,1.01f,-0.418f,-0.81f,-2.58f,-0.831f,-0.197f,-1.2f,-0.289f,-1.27f,0.212f,-0.98f,0.157f,-0.174f,-0.0368f,-0.406f,-0.546f,1.16f,-0.306f,0.465f,-0.889f,-0.45f,0.773f,-1.41f,-1.19f,-0.79f,-0.231f,2.93f,-0.203f,-0.106f,-0.8f,-0.0249f,0.369f,0.0327f,-1.13f,-1.42f,0.846f,-0.136f,0.163f,0.792f,-0.0165f,0.436f,0.294f,0.473f,-0.572f,-0.291f,-0.52f,-0.124f,0.227f,-0.11f,-0.299f,0.497f,1.07f,-1.54f,0.532f,-0.092f,-3.07f,0.848f,-0.044f,0.0568f,-0.849f,0.226f,0.406f,-0.122f,0.97f,-0.368f,-1.31f,0.198f,0.145f,0.259f,0.637f,-0.133f,-0.52f,-0.943f,1.65f,-0.138f,-0.539f,0.0848f,0.207f,-0.554f,-1.59f,-0.206f,-0.353f,2.92f,-0.386f,0.0244f,0.915f,-0.321f,-0.818f,-2.13f,-0.685f,-0.0273f,2.8f,1.58f,0.289f,1.75f,0.431f,-0.118f,-0.64f,-4.31f,1.25f,-0.289f,-0.212f,-0.0689f,0.721f,2.74f,0.824f,1.29f,-0.599f,0.12f,-0.505f,2.55f,0.00216f,0.0589f,0.747f,0.519f,1.98f,-0.563f,0.942f,-0.168f,-1.77f}; +float neck__lateral_convs__2_dw_bias[64] = {0.238f,0.364f,0.599f,1.8f,0.741f,0.734f,0.171f,1.77f,-0.123f,0.187f,-0.0739f,0.463f,1.05f,0.0615f,-0.227f,1.08f,-0.206f,0.165f,0.99f,0.735f,0.678f,0.179f,0.278f,0.558f,-0.285f,0.0331f,0.154f,-0.0699f,-0.23f,0.639f,0.338f,0.902f,0.648f,0.263f,-0.111f,-0.0888f,1.36f,0.326f,0.34f,0.324f,0.411f,0.293f,-0.288f,0.713f,0.377f,0.433f,-0.178f,1.26f,0.22f,0.826f,1.83f,0.529f,-0.228f,0.417f,0.114f,0.533f,0.775f,0.888f,1.06f,-0.182f,-0.389f,0.821f,0.943f,0.246f}; +float bbox_head__multi_level_cls__0_pw_weight[1*64*1*1] = {0.00105f,-0.0296f,0.0624f,-0.0184f,0.0296f,-0.0341f,-0.105f,-0.0511f,0.0871f,-0.157f,0.182f,-0.0475f,-0.0173f,-0.0101f,0.0171f,-0.185f,-0.274f,0.106f,0.114f,0.0174f,-0.0586f,-0.0155f,0.0659f,0.205f,0.0717f,0.0752f,0.133f,-0.0278f,0.218f,0.0809f,0.0694f,-0.0373f,0.0358f,-0.0724f,-0.0927f,0.0922f,0.00581f,0.0823f,0.158f,0.129f,0.0773f,0.0919f,-0.0088f,0.266f,-0.108f,0.107f,-0.00169f,-0.0107f,0.0825f,-0.0224f,-0.0201f,-0.197f,-0.00738f,-0.0104f,0.0546f,-0.0957f,0.0252f,-0.0503f,-0.0539f,-0.0794f,-0.00916f,-0.0143f,-0.0636f,0.0238f}; +float bbox_head__multi_level_cls__0_pw_bias[1] = {0.326f}; +float bbox_head__multi_level_cls__0_dw_weight[1*1*3*3] = {0.148f,0.272f,0.154f,0.295f,0.308f,0.256f,0.192f,0.31f,0.147f}; +float bbox_head__multi_level_cls__0_dw_bias[1] = {0.236f}; +float bbox_head__multi_level_cls__1_pw_weight[1*64*1*1] = {0.0381f,0.0417f,0.0601f,0.00415f,-0.0122f,-0.00986f,-0.00248f,0.00159f,-0.0601f,0.00147f,0.0264f,-0.0315f,0.000155f,-0.0219f,-0.0335f,0.00232f,0.00178f,-0.019f,-0.0929f,0.0114f,0.113f,0.0493f,-0.0847f,0.0143f,0.0119f,0.00246f,-0.0673f,0.013f,0.0361f,-0.0243f,0.0299f,0.00241f,0.000444f,0.024f,0.0223f,0.0285f,0.0108f,0.168f,0.0349f,0.116f,0.0313f,0.01f,-0.286f,-0.0163f,0.0176f,-0.0196f,-0.269f,-0.0674f,-0.153f,0.00216f,0.0236f,0.0611f,-0.012f,0.00622f,-0.18f,-0.0342f,-0.0514f,0.184f,-0.147f,0.01f,-0.000824f,0.0129f,-0.00944f,-0.00473f}; +float bbox_head__multi_level_cls__1_pw_bias[1] = {-0.0775f}; +float bbox_head__multi_level_cls__1_dw_weight[1*1*3*3] = {-0.0623f,-0.332f,-0.028f,-0.0787f,-0.498f,-0.0164f,0.00711f,-0.109f,-0.000642f}; +float bbox_head__multi_level_cls__1_dw_bias[1] = {0.0625f}; +float bbox_head__multi_level_cls__2_pw_weight[1*64*1*1] = {0.017f,-0.0933f,0.0192f,-0.00439f,-0.0224f,-0.0613f,-0.036f,0.352f,-0.0878f,0.0731f,-0.103f,-0.0972f,-0.0432f,0.0193f,-0.0875f,0.112f,-0.00198f,0.0255f,-0.00745f,-0.0672f,0.000509f,-0.0943f,-0.00139f,0.0803f,-0.132f,-0.00974f,-0.0179f,-0.0619f,-0.19f,-0.178f,-0.00342f,0.144f,-0.0248f,0.0772f,-0.171f,-0.0205f,-0.0237f,0.0853f,-0.0187f,-0.0989f,0.0249f,-0.0182f,-0.0434f,0.0778f,0.0278f,-0.0915f,-0.0826f,-0.00217f,-0.0124f,0.106f,0.000268f,0.168f,-0.0689f,0.19f,-0.0719f,0.0537f,-0.0567f,0.031f,0.0376f,-0.115f,-0.0731f,-0.0464f,0.0984f,0.0283f}; +float bbox_head__multi_level_cls__2_pw_bias[1] = {-0.287f}; +float bbox_head__multi_level_cls__2_dw_weight[1*1*3*3] = {-0.126f,-0.239f,-0.0973f,-0.239f,-0.416f,-0.265f,-0.139f,-0.378f,-0.155f}; +float bbox_head__multi_level_cls__2_dw_bias[1] = {0.254f}; +float bbox_head__multi_level_bbox__0_pw_weight[4*64*1*1] = {0.0604f,-0.00251f,0.00671f,0.00252f,0.0193f,0.112f,0.0493f,-0.0549f,0.0375f,0.208f,0.0694f,0.0879f,0.0245f,-0.145f,0.0561f,0.0256f,0.185f,-0.146f,-0.0467f,0.0119f,0.1f,0.0142f,-0.342f,-0.00435f,-0.247f,-0.0511f,0.067f,0.169f,-0.114f,-0.0187f,0.255f,-0.0389f,0.202f,0.247f,0.0846f,-0.00818f,-0.268f,0.131f,-0.049f,-0.0252f,-0.0282f,-0.0102f,0.051f,-0.0576f,0.059f,-0.0208f,0.148f,0.0517f,0.121f,0.0527f,-0.388f,0.00965f,0.0579f,0.206f,0.0617f,0.263f,0.0859f,0.0537f,-0.0115f,0.0085f,-0.109f,0.141f,0.0112f,0.0381f,0.111f,0.0261f,0.0123f,0.31f,0.243f,0.0155f,0.306f,-0.083f,0.105f,0.236f,-0.121f,0.0185f,0.0126f,-0.0659f,-0.0198f,0.231f,0.092f,-0.469f,0.0125f,0.0679f,0.0865f,0.0183f,0.135f,-0.00277f,-0.0243f,-0.0436f,0.0538f,0.0409f,0.159f,-0.103f,-0.077f,0.223f,0.105f,0.0501f,0.165f,0.22f,0.219f,-0.202f,-0.0134f,0.0385f,-0.188f,-0.0309f,0.0995f,-0.121f,0.0875f,0.0156f,0.0533f,0.056f,0.13f,0.0805f,-0.36f,-0.0102f,0.0374f,0.0258f,0.0554f,0.071f,0.0723f,-0.0512f,-0.0971f,-0.0402f,-0.0253f,0.0136f,0.514f,0.0195f,0.0266f,-0.147f,-0.109f,0.0478f,0.0497f,-0.0259f,-0.0232f,-0.0528f,-0.0148f,0.0714f,0.0564f,0.0183f,0.00959f,0.032f,-0.0615f,0.062f,0.0102f,-0.0605f,0.0219f,-0.0077f,-0.0516f,0.461f,-0.29f,-0.0264f,0.152f,0.0839f,0.00103f,-0.05f,0.035f,0.0103f,-0.143f,-0.00303f,-0.0123f,0.251f,-0.0935f,0.145f,-0.0544f,0.181f,0.0129f,0.0235f,-0.022f,0.0036f,0.0583f,0.0427f,0.0192f,0.00384f,-0.00307f,-0.0214f,-0.288f,-0.00307f,-0.0555f,0.47f,0.0181f,-0.0539f,0.0239f,0.0176f,0.0249f,-0.0744f,0.0446f,0.0185f,-0.12f,0.441f,-0.0294f,-0.00948f,0.00887f,-0.346f,-0.0441f,-0.0522f,0.125f,-0.00239f,0.039f,-0.0313f,-0.012f,0.261f,0.0638f,0.00488f,-0.0259f,-0.0496f,0.0107f,0.182f,0.0543f,-0.172f,-0.00551f,0.0434f,-0.034f,0.186f,-0.0478f,-0.0365f,0.0394f,0.309f,-0.0111f,0.00218f,-0.00773f,0.0161f,-0.0438f,-0.0249f,-0.0111f,0.0815f,-0.139f,0.203f,0.0176f,-0.0998f,0.0214f,-0.0263f,-0.0246f,0.0147f,0.00161f,0.0155f,0.0145f,0.0166f,-0.000148f,-0.0136f,-0.366f,-0.0128f,-0.0522f,0.548f,0.0323f,-0.0528f,-0.00893f,0.00623f,-0.0727f,0.177f,-0.0292f,-0.00439f,-0.107f,0.375f,-0.0854f,-0.000854f}; +float bbox_head__multi_level_bbox__0_pw_bias[4] = {-0.688f,-0.717f,-0.289f,-0.245f}; +float bbox_head__multi_level_bbox__0_dw_weight[4*1*3*3] = {0.213f,0.0619f,-0.0922f,-0.0547f,-0.103f,1.11f,-0.13f,-0.0934f,-0.122f,0.0618f,0.00831f,-0.0288f,1.04f,-0.0434f,-0.138f,-0.131f,-0.256f,-0.847f,-0.251f,-0.227f,-0.707f,-0.0362f,-0.112f,-0.137f,0.151f,-0.0616f,-0.029f,-0.0481f,-0.0659f,-0.364f,-0.211f,-0.197f,-0.0684f,-0.0783f,-0.0868f,-0.0762f}; +float bbox_head__multi_level_bbox__0_dw_bias[4] = {0.483f,0.501f,1.21f,1.46f}; +float bbox_head__multi_level_bbox__1_pw_weight[4*64*1*1] = {0.0206f,-0.0129f,-0.0415f,-0.0071f,0.0185f,-0.00535f,-0.0294f,-4.58e-05f,0.0115f,0.0394f,-0.00271f,-0.0432f,-0.00161f,-0.0292f,0.0635f,-0.00152f,0.00445f,-0.048f,0.0439f,-0.00592f,-0.0518f,0.054f,-0.239f,0.00601f,0.00077f,0.0435f,-0.0744f,0.0176f,0.077f,0.0026f,0.0166f,-0.0563f,0.0226f,-0.0175f,0.00636f,0.0967f,-0.0128f,-0.0691f,-0.02f,0.0477f,0.00674f,0.00247f,-0.0426f,0.0492f,0.00449f,-0.0509f,-0.0124f,0.0216f,-0.0141f,0.0282f,-0.0421f,-0.0172f,-0.0567f,0.0268f,-0.00212f,0.612f,0.0813f,-0.00108f,-0.0731f,-0.0264f,-0.000495f,0.00246f,0.00856f,-0.00998f,-0.0429f,0.00204f,-0.0105f,0.00999f,0.0298f,-0.0275f,0.0282f,-0.0226f,0.0487f,-0.00268f,0.0262f,0.018f,0.0127f,0.0166f,0.0112f,0.00389f,-0.00325f,0.0359f,0.0401f,-0.00664f,0.0159f,-0.000969f,-0.00406f,0.0174f,-0.00256f,0.000262f,-0.00728f,0.0212f,-0.166f,-0.0122f,-0.0413f,0.0254f,-0.00377f,-0.00179f,-0.356f,0.0127f,-0.00953f,-0.191f,-0.00847f,-0.181f,-0.0201f,-0.00546f,0.21f,-0.107f,0.00708f,0.00824f,0.0887f,0.0544f,0.0231f,-0.0117f,-0.0256f,0.0357f,-0.0365f,-0.0029f,-0.0322f,-0.0012f,-0.0409f,-0.0261f,0.0599f,-0.0269f,-0.00226f,-0.0026f,0.0181f,0.0426f,-0.00255f,0.00699f,0.0215f,-0.0258f,0.0697f,-0.00194f,-0.00756f,-0.0031f,-0.033f,0.0351f,-0.00206f,0.0567f,-0.00543f,-0.0562f,0.0195f,-0.013f,-0.0327f,-0.0235f,-0.0629f,-0.0238f,0.23f,0.0997f,0.0173f,-0.0122f,0.0391f,0.106f,-0.165f,-0.0211f,0.0741f,-0.0202f,-0.0734f,-0.0182f,0.000434f,-0.0633f,0.054f,0.0184f,-0.0152f,-0.0846f,0.0335f,0.0605f,0.0233f,0.00558f,-0.169f,-0.0589f,0.053f,0.0719f,0.0419f,-0.0235f,-0.0464f,-0.0165f,-0.0307f,0.328f,-0.0813f,0.0261f,0.0159f,0.0574f,-0.0783f,0.178f,-0.114f,-0.108f,0.000984f,0.00967f,-0.037f,-0.0166f,0.000958f,0.00621f,0.00424f,-0.00685f,-0.0051f,0.00874f,-0.0145f,0.000829f,-0.0429f,-0.0798f,-0.00538f,0.0453f,-0.0252f,-0.00331f,-0.0612f,-0.0185f,0.00917f,-0.0598f,-0.0888f,0.00707f,0.189f,0.0297f,0.0123f,-0.0366f,-0.0271f,-0.0388f,-0.267f,-0.00554f,0.06f,-0.0164f,0.166f,-0.0125f,0.00135f,-0.0176f,0.0415f,0.0183f,-0.00441f,-0.0746f,0.0274f,0.0105f,0.0141f,0.0224f,-0.178f,0.0174f,0.0175f,0.0776f,0.0205f,-0.0624f,-0.0511f,-0.00479f,0.0176f,0.33f,-0.0412f,-0.037f,0.0341f,0.0235f,-0.067f,0.165f,-0.0587f,-0.0909f,0.000605f,0.00339f,-0.0575f,-0.00802f}; +float bbox_head__multi_level_bbox__1_pw_bias[4] = {-0.152f,0.372f,-0.108f,-0.102f}; +float bbox_head__multi_level_bbox__1_dw_weight[4*1*3*3] = {-0.0306f,-0.00544f,-0.0455f,-0.0537f,0.0132f,-0.503f,-0.0847f,-0.0395f,-0.00504f,-0.00259f,-0.0308f,-0.0257f,0.213f,0.0167f,-0.0889f,-0.0935f,-0.549f,0.373f,-0.379f,-0.406f,-0.0348f,0.0231f,-0.0393f,-0.0688f,-0.0131f,-0.00308f,-0.00556f,-0.00203f,-0.022f,0.0894f,-0.176f,-0.132f,-0.01f,0.00824f,0.00628f,0.0129f}; +float bbox_head__multi_level_bbox__1_dw_bias[4] = {0.464f,0.486f,0.0237f,0.173f}; +float bbox_head__multi_level_bbox__2_pw_weight[4*64*1*1] = {0.0237f,0.29f,0.0681f,0.0161f,0.305f,0.526f,-0.0414f,-0.0345f,-0.00772f,-0.0807f,0.0136f,-0.00819f,0.119f,-0.0239f,-0.164f,-0.277f,-0.0242f,0.746f,-0.143f,-0.118f,-0.336f,-0.00553f,-0.564f,0.0357f,-0.174f,-0.0917f,0.188f,0.045f,0.0105f,0.0144f,-0.101f,0.0116f,-0.0543f,-0.0104f,0.0379f,-0.0149f,-0.0302f,0.074f,0.0634f,0.075f,0.0495f,0.0472f,0.017f,0.000869f,-0.0294f,-0.00646f,-0.283f,0.128f,-0.0852f,-0.0143f,-0.00608f,-0.00205f,0.028f,0.076f,-0.0302f,0.254f,-0.0412f,0.00669f,0.0735f,0.0175f,-0.00963f,-0.0183f,-0.00432f,-0.0106f,-0.0385f,-0.129f,-0.0431f,-0.00533f,-0.0229f,-0.0508f,0.0116f,-0.00142f,-0.00441f,0.0666f,0.00261f,0.0226f,-0.00824f,0.00753f,0.0863f,-0.00321f,0.284f,-0.084f,-0.00867f,-0.0187f,0.0221f,0.0531f,-0.143f,-0.0237f,0.0284f,-0.00332f,-0.0119f,0.0098f,-0.0064f,-0.15f,-0.00853f,0.0857f,0.311f,0.017f,-0.0152f,-0.0158f,-0.462f,-0.0503f,-0.00671f,-0.509f,-0.0309f,-0.0649f,-0.00419f,0.0378f,0.871f,0.404f,-0.242f,0.0156f,-0.0339f,-0.0767f,-0.166f,0.0386f,0.027f,0.0712f,0.102f,-6.89e-05f,0.104f,-0.0599f,0.269f,0.00273f,-0.264f,-0.00856f,-0.0866f,0.0458f,-0.0125f,0.26f,0.017f,-0.00787f,0.132f,-0.41f,-0.0141f,0.891f,-0.0268f,-0.0483f,-0.00428f,0.00384f,-0.00353f,-0.0081f,-0.0409f,0.207f,0.0438f,-0.276f,-0.0926f,0.0821f,-0.236f,0.00751f,-0.151f,-0.00137f,0.244f,-0.0579f,-0.101f,0.0143f,-0.00742f,-0.0425f,-0.0411f,-0.0889f,-0.0244f,0.0478f,0.0749f,-0.0501f,-0.0302f,0.00742f,-0.0445f,-0.0547f,-0.0992f,-0.0109f,-0.0138f,0.0313f,-0.0228f,0.0016f,-0.13f,0.267f,-0.00439f,-0.00619f,-0.000718f,-0.05f,0.00636f,-0.249f,-0.12f,0.273f,-0.0526f,-0.000354f,0.092f,-0.0351f,0.0389f,-0.0361f,0.0179f,0.00119f,-0.0301f,0.103f,0.00175f,0.0188f,0.00387f,0.0179f,0.0159f,-0.898f,-0.00415f,0.0715f,-0.00503f,-0.00782f,0.00609f,-0.0125f,0.0381f,-0.117f,-0.182f,0.0244f,0.00474f,-0.0156f,0.0224f,-0.134f,0.0731f,-0.00296f,0.0274f,0.00861f,0.0281f,0.00376f,0.00557f,-0.157f,0.0109f,-0.0608f,-0.00428f,0.0387f,-0.0219f,0.0762f,0.213f,-0.0134f,0.00707f,0.309f,0.0407f,0.048f,0.0256f,-0.00838f,0.376f,0.266f,0.123f,-0.113f,0.0291f,0.0733f,-0.0255f,0.0467f,-0.00672f,0.231f,0.0719f,0.0427f,0.103f,-0.0174f,-0.206f,-0.00398f,-0.143f,0.0651f,-0.0968f,-0.0312f}; +float bbox_head__multi_level_bbox__2_pw_bias[4] = {0.0512f,-0.115f,-0.0535f,0.0116f}; +float bbox_head__multi_level_bbox__2_dw_weight[4*1*3*3] = {0.0846f,-0.0655f,-0.0693f,0.0569f,0.183f,-0.252f,-0.102f,0.176f,0.0856f,-0.0347f,-0.0635f,0.0283f,0.182f,-0.252f,-0.141f,0.113f,0.526f,-0.553f,-0.294f,0.31f,0.195f,-0.307f,-0.185f,0.14f,0.0646f,-0.0606f,-0.0648f,0.0468f,0.388f,-0.345f,-0.183f,0.213f,0.0887f,-0.0248f,-0.0718f,0.033f}; +float bbox_head__multi_level_bbox__2_dw_bias[4] = {0.306f,0.267f,1.33f,1.5f}; +float bbox_head__multi_level_obj__0_pw_weight[1*64*1*1] = {-0.451f,-0.19f,-0.0746f,-0.186f,-0.00517f,-0.345f,-0.117f,-0.654f,-0.544f,-0.151f,-0.522f,-0.217f,-0.0214f,-0.571f,-0.0345f,-0.222f,-0.301f,0.482f,-0.646f,-0.597f,-0.617f,0.0679f,0.0766f,-0.613f,-0.0193f,0.301f,-0.624f,-0.462f,-0.47f,-1.08f,-0.00709f,-0.469f,-0.453f,-0.13f,-0.152f,0.0462f,0.224f,0.0302f,-0.789f,-0.531f,-0.351f,-1.09f,-0.423f,0.788f,-0.499f,-1.19f,-0.103f,-0.0973f,-0.102f,-0.563f,0.275f,0.0252f,-0.509f,-0.318f,-0.518f,-0.231f,-0.288f,-0.309f,0.0223f,-0.558f,0.00841f,-0.0168f,-0.305f,-0.648f}; +float bbox_head__multi_level_obj__0_pw_bias[1] = {0.928f}; +float bbox_head__multi_level_obj__0_dw_weight[1*1*3*3] = {-0.0188f,-0.0238f,-0.00136f,-0.17f,3.26f,-0.194f,-0.0487f,-0.174f,-0.0291f}; +float bbox_head__multi_level_obj__0_dw_bias[1] = {-1.91f}; +float bbox_head__multi_level_obj__1_pw_weight[1*64*1*1] = {-0.598f,-0.323f,-0.118f,-0.119f,-0.798f,-0.159f,-0.0257f,-0.0238f,0.135f,0.245f,-0.223f,-0.305f,-0.0216f,-0.166f,-0.0291f,-0.114f,-0.133f,-0.0214f,0.247f,-0.245f,0.104f,-0.238f,-0.0841f,-0.414f,0.135f,-0.0495f,-0.0528f,-0.0285f,-0.697f,-0.199f,-0.054f,-0.11f,-0.00832f,-0.438f,0.0799f,-0.165f,0.06f,-0.671f,-0.00565f,-0.696f,-0.959f,-0.0198f,0.464f,-0.325f,-0.356f,-0.0745f,0.312f,-0.254f,-0.349f,-0.0568f,-0.3f,0.153f,-0.317f,-0.106f,0.401f,-0.137f,-0.431f,-0.156f,0.118f,-0.0813f,0.00428f,-0.0452f,0.0171f,-0.24f}; +float bbox_head__multi_level_obj__1_pw_bias[1] = {0.000274f}; +float bbox_head__multi_level_obj__1_dw_weight[1*1*3*3] = {0.0675f,0.249f,0.0626f,0.025f,2.36f,0.0428f,0.0466f,0.136f,0.045f}; +float bbox_head__multi_level_obj__1_dw_bias[1] = {-0.147f}; +float bbox_head__multi_level_obj__2_pw_weight[1*64*1*1] = {-0.544f,0.0875f,0.00497f,-0.914f,-0.2f,0.0575f,-0.266f,0.217f,0.472f,-0.87f,-0.69f,-0.706f,-0.0663f,0.203f,-0.478f,-0.107f,-0.467f,0.0528f,0.0386f,-0.103f,-0.0785f,0.555f,-0.0327f,0.0819f,0.195f,0.263f,-0.37f,-1.f,0.879f,0.142f,-0.0547f,-0.2f,-0.158f,-0.56f,0.494f,-0.00014f,-0.133f,-0.199f,0.129f,0.183f,-0.239f,0.196f,0.0125f,-0.184f,0.0227f,0.396f,0.301f,0.0348f,0.0291f,-0.273f,-0.851f,-0.0115f,-0.992f,0.182f,0.349f,0.056f,0.0206f,-0.464f,-0.0662f,0.617f,-0.146f,-0.0261f,-0.331f,-0.616f}; +float bbox_head__multi_level_obj__2_pw_bias[1] = {0.183f}; +float bbox_head__multi_level_obj__2_dw_weight[1*1*3*3] = {0.565f,0.242f,0.297f,-0.0272f,2.67f,-0.0276f,0.175f,0.435f,0.378f}; +float bbox_head__multi_level_obj__2_dw_bias[1] = {-0.119f}; +float bbox_head__multi_level_kps__0_pw_weight[10*64*1*1] = {-0.0058f,0.191f,0.0938f,-0.182f,0.0457f,0.316f,-0.0251f,0.0335f,0.00648f,-0.289f,0.00132f,0.0128f,-0.331f,0.0174f,0.00252f,-0.0451f,-0.143f,0.0516f,0.0204f,-0.00565f,-0.00434f,-0.06f,0.146f,0.0523f,0.19f,-0.0179f,-0.027f,-0.113f,0.0268f,0.0113f,-0.286f,0.103f,0.0353f,-0.103f,-0.152f,-0.046f,0.36f,0.0803f,0.0606f,0.0702f,0.0421f,-0.115f,-0.151f,0.063f,-0.149f,-0.0118f,-0.219f,-0.391f,-0.117f,-0.071f,-0.122f,-0.0719f,-0.0348f,0.119f,-0.0699f,-0.131f,-0.234f,0.0233f,0.0743f,0.00481f,0.437f,-0.157f,0.0803f,-0.0215f,-0.107f,-0.244f,-0.0354f,-0.22f,-0.218f,-0.0303f,-0.22f,-0.0575f,-0.0215f,0.0292f,-0.0321f,-0.0738f,0.0614f,-0.00877f,-0.437f,-0.0956f,-0.0989f,0.00632f,-0.00805f,0.109f,-0.0716f,0.000816f,0.019f,0.00847f,-0.000436f,0.141f,-0.103f,0.0212f,0.074f,0.0552f,-0.0512f,0.00161f,-0.0562f,0.0678f,0.00534f,-0.205f,0.0609f,-0.0968f,0.0382f,-0.0195f,0.194f,0.0693f,0.00107f,0.0222f,0.0444f,-0.00794f,-0.0798f,-0.0978f,-0.0763f,-0.1f,-0.187f,0.0628f,-0.00303f,0.0557f,-0.0134f,0.0385f,-0.0594f,-0.0331f,0.449f,0.00369f,-0.042f,0.286f,-0.0838f,0.0116f,-0.0161f,-0.159f,-0.556f,-0.0183f,0.00743f,-0.0764f,-0.074f,-0.0285f,0.0118f,-0.22f,-0.00258f,0.28f,-0.21f,0.0777f,-0.286f,0.0918f,-0.164f,0.1f,0.0282f,0.0582f,-0.0627f,0.126f,0.0766f,0.0344f,0.329f,0.0726f,-0.0259f,0.0447f,0.0186f,-0.0209f,0.251f,-0.0245f,0.0347f,-0.0421f,0.0613f,-0.0248f,0.214f,0.0208f,0.0414f,0.00144f,0.0616f,0.0122f,0.0294f,0.138f,0.0619f,0.0209f,-0.43f,-0.221f,-0.0304f,0.0232f,-0.292f,0.0159f,-0.02f,-0.24f,-0.0279f,-0.137f,0.000859f,-0.189f,0.0546f,-0.0337f,0.076f,-0.0704f,-0.108f,0.0146f,-0.105f,-0.24f,0.0195f,-0.247f,-0.244f,0.0474f,-0.239f,-0.0997f,-0.0145f,-0.0117f,-0.0232f,-0.0702f,-0.0581f,-0.0189f,-0.444f,-0.0881f,-0.0585f,0.0333f,-0.0365f,0.119f,-0.095f,0.0918f,-0.0204f,0.0207f,0.00238f,0.166f,-0.0919f,-0.0425f,0.0226f,0.0767f,-0.0174f,0.0438f,-0.0851f,0.0746f,-0.0163f,-0.178f,0.0442f,-0.0986f,0.041f,0.00726f,0.2f,0.015f,-0.0417f,0.0108f,0.0536f,-0.0335f,-0.0199f,-0.00412f,-0.117f,-0.0883f,-0.175f,0.0505f,-0.025f,-0.0692f,0.0279f,0.0537f,-0.0894f,-0.0321f,0.456f,0.00128f,-0.0484f,0.229f,-0.0577f,0.0165f,-0.0314f,-0.0017f,-0.168f,-0.11f,0.00636f,0.0996f,-0.0966f,0.0787f,0.0577f,-0.239f,-0.00102f,0.414f,-0.423f,-0.0396f,0.0986f,-0.0399f,-0.117f,0.0784f,0.016f,0.0987f,-0.0364f,-0.0244f,-0.174f,0.0371f,0.227f,0.00596f,-0.0237f,0.00633f,-0.00815f,-0.022f,0.109f,-0.00653f,-0.085f,-0.108f,-0.0557f,-0.0256f,0.15f,-0.128f,0.0315f,0.0434f,0.0264f,-0.01f,-0.0138f,0.152f,-0.0782f,0.0241f,-0.451f,-0.436f,-0.0217f,-0.0275f,-0.373f,-0.0105f,0.00313f,0.00884f,-0.0555f,-0.0801f,-0.157f,-0.0574f,-0.0827f,-0.172f,0.473f,-0.0595f,0.0547f,0.00432f,-0.0735f,-0.131f,0.156f,-0.258f,-0.298f,0.00873f,-0.284f,-0.0572f,-0.0162f,-0.0878f,-0.0259f,-0.0427f,0.0824f,-0.00211f,-0.294f,-0.119f,-0.0588f,0.146f,-0.00888f,-0.0295f,-0.00769f,-0.0254f,0.162f,0.0103f,0.00763f,0.12f,-0.0936f,-0.0138f,0.0425f,0.0413f,0.0997f,-0.115f,0.0637f,-0.0467f,0.179f,-0.226f,0.183f,0.079f,0.0109f,0.0095f,0.191f,0.0238f,0.00546f,-0.0117f,-0.015f,-0.0232f,0.00826f,-0.0842f,0.0151f,-0.0107f,-0.167f,0.0457f,0.032f,-0.00515f,0.005f,-0.0127f,-0.0595f,-0.0176f,0.431f,0.00955f,0.116f,0.0995f,0.139f,0.0123f,-0.0381f,0.156f,0.224f,-0.148f,-0.0121f,0.00759f,-0.104f,0.092f,0.0824f,-0.273f,-0.00689f,0.0596f,-0.342f,0.0566f,0.371f,-0.0808f,-0.129f,0.0965f,0.0326f,0.0685f,-0.0144f,-0.078f,-0.108f,0.05f,0.2f,0.00938f,-0.015f,-0.141f,0.029f,0.0239f,-0.227f,-0.0305f,0.0264f,-0.138f,-0.158f,0.0238f,-0.065f,0.0892f,0.048f,0.07f,0.0145f,0.0557f,-0.0921f,0.176f,-0.188f,0.0776f,-0.208f,-0.417f,-0.129f,-0.0644f,0.0371f,-0.0775f,-0.0849f,-0.0368f,-0.0948f,-0.105f,-0.182f,0.0323f,-0.302f,-0.0767f,0.47f,-0.0612f,0.19f,-0.0412f,-0.131f,-0.124f,-0.0613f,-0.225f,-0.211f,-0.0149f,-0.312f,0.0452f,-0.0391f,0.259f,-0.149f,-0.05f,-0.0787f,0.00469f,0.196f,0.0417f,-0.244f,-0.169f,0.0144f,0.194f,0.0259f,0.232f,-0.174f,-0.000751f,-0.0134f,-0.0914f,-0.23f,0.0219f,0.0971f,-0.00549f,-0.0534f,-0.133f,-0.0484f,0.00356f,-0.465f,0.0641f,-0.0335f,-0.152f,0.0689f,-0.0242f,0.162f,-0.00606f,-0.0898f,0.0853f,0.00362f,0.0749f,-0.0545f,-0.102f,-0.107f,-0.107f,-0.0679f,0.0671f,-0.0329f,-0.168f,-0.00872f,0.011f,0.0433f,0.164f,-0.317f,-0.03f,-0.172f,-0.0281f,0.186f,-0.0268f,0.00608f,0.0951f,0.34f,0.0312f,0.0116f,0.264f,0.122f,-0.0733f,-0.132f,0.224f,0.00826f,-0.276f,0.235f,-0.0686f,-0.318f,0.015f,0.181f,-0.202f,-0.0315f,-0.117f,0.0455f,0.0217f,0.0195f,-0.031f,-0.256f,-0.0369f,0.0456f,-0.0426f,-0.0394f,0.00549f,-0.309f,0.166f,-0.0556f,0.1f,0.0324f,-0.00378f,0.0896f,-0.0432f,-0.0569f,0.0105f,-0.0359f,-0.0798f,-0.0413f,-0.219f,-0.0243f,-0.0704f,0.316f,0.279f,0.0712f,-0.0053f,0.00616f,0.0529f,0.0871f,0.342f,0.0351f,0.141f,0.00755f,0.128f,0.403f,0.142f,-0.227f,0.0512f,0.0486f,0.00112f,-0.0752f,0.0285f,0.202f,-0.196f,-0.286f,0.0692f,-0.311f,-0.0943f,-0.0323f,-0.137f,-0.0254f,0.051f,0.0423f,0.0149f,-0.156f,-0.148f,-0.0326f,0.249f,-0.0449f,-0.0951f,0.0201f,-0.0559f,0.0413f,0.0263f,-0.0457f,0.108f,-0.0733f,-0.0489f,0.0573f,0.0533f,0.0251f,-0.0797f,0.0962f,-0.0538f,0.337f,-0.272f,0.0557f,0.119f,0.00129f,-0.000169f,0.162f,-0.0223f,0.0415f,-0.049f,-0.0325f,-0.0217f,0.0126f,0.0451f,0.112f,-0.0102f,0.121f,-0.057f,0.0205f,-0.052f,-0.0179f,-0.021f,-0.0317f,-0.0716f,0.298f,0.0295f,0.218f,0.0145f,-0.000525f,0.0347f}; +float bbox_head__multi_level_kps__0_pw_bias[10] = {0.372f,0.081f,0.116f,0.0954f,0.262f,0.39f,0.321f,-0.125f,-0.316f,0.589f}; +float bbox_head__multi_level_kps__0_dw_weight[10*1*3*3] = {-0.722f,-0.0849f,-0.549f,-0.12f,-0.57f,0.021f,-0.368f,-0.513f,0.343f,-0.0392f,0.045f,-0.344f,0.049f,-0.371f,0.0268f,-0.286f,0.0517f,-0.719f,-0.0542f,-0.145f,0.222f,-0.131f,0.389f,-0.157f,0.281f,-0.042f,0.127f,-0.344f,-0.235f,-0.0826f,-0.703f,0.392f,-0.617f,0.138f,-0.689f,0.264f,-0.718f,-0.133f,0.613f,0.265f,0.0267f,0.549f,-0.0355f,0.558f,0.0395f,0.675f,0.0901f,-0.405f,-0.0685f,0.774f,0.418f,0.0964f,0.553f,0.325f,0.502f,0.228f,0.447f,-0.1f,-0.55f,0.365f,-0.402f,0.34f,-0.416f,0.0912f,-0.548f,0.251f,-0.668f,0.0625f,0.596f,0.207f,0.101f,0.447f,-0.0363f,0.441f,0.0263f,0.498f,0.0786f,0.289f,-0.123f,0.443f,0.252f,0.115f,0.26f,0.377f,0.369f,0.251f,0.44f,0.11f,-0.571f,0.344f}; +float bbox_head__multi_level_kps__0_dw_bias[10] = {-0.124f,0.0521f,0.881f,0.0629f,0.359f,0.27f,0.0297f,0.42f,0.805f,0.421f}; +float bbox_head__multi_level_kps__1_pw_weight[10*64*1*1] = {-0.00159f,0.000328f,0.195f,7.3e-05f,0.0548f,0.00128f,-0.000561f,0.000258f,0.0242f,-0.056f,-0.0385f,0.00854f,0.000488f,-0.00218f,-0.00327f,-0.000384f,-0.00118f,-0.0239f,0.0993f,0.000366f,0.00524f,0.0202f,-0.313f,-0.000586f,0.00997f,0.00666f,-0.0262f,-0.00333f,0.0237f,-0.0015f,0.00249f,-0.00262f,6.47e-05f,-0.00519f,0.0512f,0.029f,-0.000398f,0.0708f,0.000377f,0.00963f,0.000901f,0.000931f,0.00538f,0.0132f,0.000784f,0.00725f,-0.0246f,0.00483f,0.0072f,0.000862f,0.00918f,0.0173f,-0.0122f,-0.00022f,-0.0547f,0.189f,0.0198f,0.00969f,-0.00966f,0.000575f,8.24e-05f,-0.000615f,-0.00434f,0.00103f,-0.00441f,-0.00185f,0.00109f,0.000556f,-0.0395f,-0.011f,0.000223f,-4.98e-05f,-0.0107f,0.000153f,0.0349f,-0.00682f,-0.00044f,-0.000889f,0.00121f,-0.00055f,5.65e-05f,0.0108f,-0.0117f,-0.00286f,-0.00991f,-0.0115f,-0.0266f,-0.000473f,-0.00271f,-0.00597f,-0.015f,0.00209f,-0.106f,0.00171f,-0.00535f,0.00187f,-7.42e-05f,0.00803f,-0.359f,0.0131f,-0.000174f,-0.177f,-0.000994f,-0.0166f,-0.00161f,-0.00106f,0.11f,-0.0185f,-0.00694f,0.000613f,0.142f,0.0539f,0.0819f,-0.000168f,-0.0202f,-0.0869f,-0.00549f,-0.000278f,-0.095f,-0.0665f,-0.0792f,-0.0244f,0.0873f,-0.00418f,-0.000259f,-2.43e-05f,-0.00234f,0.000987f,-0.000568f,-0.00174f,0.163f,0.000504f,0.0977f,0.000475f,0.000496f,0.00111f,0.0731f,0.00694f,0.0901f,-0.00438f,0.00157f,-0.00352f,-0.00252f,0.000482f,-0.00106f,-0.0789f,0.0189f,0.00231f,-0.00426f,0.0229f,-0.277f,0.00408f,-0.0359f,-0.03f,0.0315f,0.0032f,0.0668f,0.00102f,0.0341f,0.0064f,-2.93e-05f,0.00501f,0.088f,-0.075f,0.000371f,0.106f,-0.000168f,0.0279f,0.00133f,-0.00019f,0.0916f,0.00693f,0.00286f,-0.00282f,0.0359f,0.0127f,0.0111f,0.00116f,0.0201f,-0.00563f,0.0192f,0.00189f,0.0039f,0.21f,0.0269f,0.0245f,-0.013f,0.00505f,0.000204f,-0.000112f,-0.00893f,-0.000111f,-0.00481f,-0.00226f,0.00877f,0.000502f,-0.0394f,-0.00836f,-0.000322f,-0.000127f,-0.0114f,-0.00424f,0.0352f,-0.00692f,-0.000379f,-0.000466f,0.000575f,-0.000673f,-3.83e-05f,0.0105f,-0.00889f,-0.00285f,-0.00967f,-0.0115f,-0.0334f,-0.000952f,0.00291f,-0.00663f,-0.0123f,0.0023f,-0.107f,0.00266f,-0.00478f,0.0015f,2.74e-06f,0.00704f,-0.36f,0.00795f,-0.000343f,-0.177f,-0.000949f,-0.017f,-0.00162f,-0.000959f,0.112f,-0.0196f,-0.007f,3.82e-05f,0.141f,0.0539f,0.0803f,-0.000161f,-0.0198f,-0.0859f,-0.00559f,-0.00022f,-0.0927f,-0.0653f,-0.0791f,-0.0246f,0.0885f,-0.00383f,-0.000227f,3.97e-05f,-0.00363f,0.000153f,0.00196f,0.00321f,-0.273f,-0.000347f,-0.0765f,0.00124f,-0.000716f,-0.000735f,-0.0677f,-0.00822f,-0.0159f,-0.000739f,-0.00122f,0.00296f,0.00162f,-0.000743f,-0.00116f,0.108f,-0.0258f,-0.00167f,5.54e-05f,-0.0106f,0.281f,-0.00222f,0.0451f,0.0165f,0.0205f,0.00404f,-0.0317f,-0.000106f,-0.0186f,-0.000141f,0.000958f,-0.00389f,-0.0725f,0.0771f,-0.00119f,-0.097f,-9.51e-05f,-0.0185f,-0.000905f,-0.000914f,-0.0454f,-0.0015f,-0.00133f,-0.00283f,-0.039f,-0.0061f,0.00304f,-0.00126f,-0.00533f,-0.0298f,-0.00606f,-0.00137f,0.00676f,-0.162f,-0.0165f,-0.0224f,-0.0096f,0.00501f,-0.00021f,-0.000443f,-0.00456f,-0.00381f,0.00681f,0.00498f,0.0155f,0.000119f,0.0373f,0.0511f,0.000336f,0.000452f,0.0513f,-0.000951f,0.0362f,0.00203f,0.000946f,-2.22e-05f,-0.00177f,0.000513f,0.000255f,-0.00938f,-0.00354f,0.00223f,7.47e-05f,0.0264f,0.0489f,0.00279f,-0.00197f,0.0465f,0.0247f,0.000581f,0.0972f,-0.00422f,-0.0072f,0.000855f,4.09e-05f,-0.00608f,0.369f,0.000814f,0.00147f,0.191f,-7.14e-05f,0.0247f,0.00168f,0.000465f,-0.038f,0.00857f,0.0129f,-0.00102f,-0.126f,-0.0316f,-0.0457f,0.000251f,0.0386f,0.0196f,0.00104f,0.000771f,0.127f,0.0852f,0.0848f,0.0313f,-0.071f,0.00285f,0.00045f,-0.000158f,-0.000601f,-0.00622f,0.00246f,0.00177f,-0.202f,-0.000263f,-0.0687f,-0.00182f,0.000924f,-0.000241f,-0.043f,0.00929f,0.0168f,-0.0048f,-0.00037f,0.00635f,-0.000702f,0.000392f,-0.000547f,0.0387f,-0.0537f,-0.00103f,-0.00301f,-0.0375f,0.302f,0.000599f,0.0162f,0.0131f,0.0363f,0.00214f,-0.031f,0.00807f,-0.00489f,0.00214f,-8.79e-05f,0.00204f,-0.0728f,0.00127f,0.000441f,-0.0792f,-0.000418f,-0.0159f,-0.000805f,-0.00108f,0.02f,0.000926f,-0.00178f,-0.00408f,-0.0256f,-0.00315f,0.0102f,-0.000849f,-0.00662f,-0.0651f,0.00427f,-0.000339f,0.0289f,-0.189f,-0.0101f,-0.032f,0.0238f,0.00377f,-2.19e-05f,-0.000177f,-0.0017f,-0.00093f,-0.00819f,-0.00929f,-0.0424f,-0.00121f,-0.0364f,-0.0754f,-0.000485f,-0.00103f,-0.0609f,-0.00515f,-0.0836f,-0.00267f,-0.00142f,-0.00253f,-0.000524f,-0.00121f,-0.00171f,0.0013f,-0.0139f,-0.00271f,0.00684f,-0.0368f,-0.0645f,-0.00759f,-0.00499f,-0.0886f,-0.0499f,-0.0051f,-0.0619f,-0.00161f,0.00105f,-0.00507f,-0.000234f,0.00153f,-0.371f,-0.0167f,-0.00265f,-0.196f,0.000761f,-0.0338f,-0.00238f,-0.00106f,-0.00888f,-0.0181f,-0.0196f,-0.000234f,0.119f,0.00781f,0.0293f,-0.000223f,-0.0517f,0.0331f,0.00746f,-0.00172f,-0.156f,-0.0922f,-0.0881f,-0.0352f,0.0504f,-0.0138f,-0.000675f,-0.00038f,-0.00375f,0.00667f,0.000796f,-0.000982f,0.161f,0.000581f,0.0971f,0.000197f,0.000359f,0.00104f,0.0739f,0.00768f,0.0827f,-0.00427f,0.00154f,-0.00465f,-0.00168f,0.00105f,-0.000404f,-0.074f,0.021f,0.0022f,-0.00249f,0.0227f,-0.281f,0.0042f,-0.029f,-0.0316f,0.0253f,0.0043f,0.0705f,-0.00134f,0.0295f,0.00564f,-0.00012f,0.00451f,0.0841f,-0.0646f,0.000503f,0.104f,-1.04e-06f,0.0274f,0.00156f,-0.000594f,0.0816f,0.00595f,0.00376f,-0.00302f,0.0367f,0.0126f,0.0106f,0.00124f,0.0166f,0.000416f,0.0156f,0.00177f,-0.00148f,0.209f,0.0277f,0.0237f,-0.0182f,0.00225f,0.000209f,0.000512f,-0.00695f,4.63e-06f,0.00859f,0.00888f,0.0392f,0.000796f,0.0392f,0.0749f,0.000644f,0.00101f,0.0629f,0.00421f,0.0869f,0.00208f,0.00145f,0.000889f,-0.000222f,0.00141f,0.00168f,0.00107f,0.0066f,0.00213f,-0.00718f,0.0379f,0.0686f,0.00815f,0.00447f,0.0892f,0.0445f,0.00392f,0.0711f,0.000761f,-0.000669f,0.00416f,0.00021f,-0.000433f,0.38f,0.0196f,0.00253f,0.198f,-0.000797f,0.0342f,0.00222f,0.000726f,0.00427f,0.017f,0.0188f,-5.39e-06f,-0.116f,-0.00295f,-0.0261f,0.000262f,0.0514f,-0.0387f,-0.00623f,0.00174f,0.14f,0.094f,0.0868f,0.0364f,-0.0486f,0.0116f,0.0006f,0.000322f,0.00191f,-0.0059f}; +float bbox_head__multi_level_kps__1_pw_bias[10] = {0.0101f,-0.0198f,0.106f,-0.0193f,-0.0776f,0.0535f,-0.0602f,-0.0832f,0.0987f,0.0806f}; +float bbox_head__multi_level_kps__1_dw_weight[10*1*3*3] = {0.0726f,-0.0574f,0.103f,-0.0583f,-0.116f,0.0586f,-0.0924f,-0.0645f,0.0978f,0.0644f,-0.0133f,-0.425f,0.0601f,-0.428f,-0.0579f,0.435f,-0.0269f,-0.469f,0.0577f,0.479f,0.00191f,-0.0506f,0.0781f,-0.0493f,-0.06f,0.052f,-0.0363f,-0.0579f,0.0728f,0.0577f,0.335f,-0.0102f,0.391f,-0.0122f,-0.412f,0.0261f,-0.362f,-0.046f,0.382f,0.046f,-0.277f,0.259f,-0.171f,0.257f,0.137f,-0.24f,0.215f,0.197f,-0.181f,-0.19f,0.00185f,-0.0108f,0.0972f,-0.00815f,-0.0855f,0.0223f,-0.0417f,-0.0396f,0.0899f,0.0371f,0.102f,-0.0258f,0.119f,-0.025f,-0.137f,0.043f,-0.124f,-0.0646f,0.121f,0.0632f,-0.0429f,0.00451f,0.038f,0.00439f,-0.0131f,0.0422f,0.00898f,-0.0959f,0.0284f,0.0846f,0.00673f,-0.0176f,0.0896f,-0.0186f,-0.0621f,0.043f,-0.038f,-0.0686f,0.0861f,0.0684f}; +float bbox_head__multi_level_kps__1_dw_bias[10] = {0.238f,0.128f,0.273f,0.126f,0.189f,0.222f,0.186f,0.242f,0.265f,0.238f}; +float bbox_head__multi_level_kps__2_pw_weight[10*64*1*1] = {0.0246f,-0.166f,0.367f,0.0507f,0.0997f,-0.129f,-0.281f,0.0756f,0.0285f,0.0326f,-0.0126f,0.00261f,0.224f,-0.0455f,-0.0216f,-0.0419f,0.0216f,-0.0357f,-0.352f,-0.0704f,-0.015f,0.0217f,-0.314f,0.0289f,-0.0503f,0.128f,0.011f,0.0534f,-0.0145f,0.0121f,-0.294f,-0.0106f,-0.0708f,-0.00322f,-0.024f,-0.201f,-0.0899f,0.139f,0.167f,-0.0255f,-0.0697f,0.0593f,-0.464f,0.0901f,-0.0407f,-0.00249f,-0.157f,0.0277f,0.277f,0.0153f,0.0113f,0.111f,0.025f,0.134f,-0.259f,0.174f,-0.074f,0.024f,0.0833f,-0.0157f,0.00538f,-0.0774f,0.0259f,-0.0101f,-0.0464f,0.00547f,-0.121f,-0.00674f,0.000503f,-0.000189f,0.093f,-0.104f,0.0324f,-0.00335f,0.0291f,-0.00341f,-0.0168f,-0.0235f,0.0633f,-0.0622f,0.0766f,0.0258f,-0.221f,0.0137f,0.00555f,-0.027f,0.101f,-0.0667f,-0.0215f,-0.0449f,-0.0209f,-0.0275f,0.0619f,0.174f,0.0853f,0.0515f,-0.101f,0.0279f,-0.108f,0.714f,-0.0135f,-0.0227f,0.113f,-0.0116f,0.264f,-0.21f,-0.0507f,0.148f,0.0573f,0.0355f,0.0109f,-0.0253f,0.106f,-0.304f,0.0361f,-0.0174f,0.0119f,-0.0857f,-0.0441f,-0.0205f,0.624f,-0.039f,0.0771f,0.00598f,-0.207f,-0.0459f,-0.11f,0.0506f,0.0782f,0.0477f,-0.183f,0.0408f,-0.0348f,-0.117f,0.233f,0.0956f,0.00339f,0.0735f,-0.0187f,-0.0413f,-0.319f,-0.0249f,0.00231f,0.219f,0.0445f,-0.147f,0.166f,0.00277f,-0.00963f,-0.0605f,-0.0962f,0.305f,0.0698f,0.00493f,-0.406f,0.0129f,-0.0152f,-0.0357f,0.142f,0.0235f,-0.2f,0.00634f,-0.00182f,-0.23f,-0.162f,-0.0454f,-0.174f,-0.0697f,-0.132f,-0.0561f,0.472f,0.0658f,-0.0494f,-0.0152f,-0.0947f,-0.101f,-0.133f,0.118f,-0.0284f,0.109f,0.0131f,0.295f,-0.371f,-0.0126f,-0.122f,0.0121f,0.02f,-0.062f,0.0188f,-0.106f,-0.0131f,0.0182f,0.0366f,-0.0843f,0.126f,0.0191f,0.0258f,-0.0629f,-0.0613f,0.0849f,0.0159f,-0.0126f,-0.0392f,0.00939f,0.0236f,0.0191f,-0.0459f,0.0335f,-0.0582f,-0.00949f,-0.0836f,-0.0189f,-0.0204f,0.0398f,-0.0516f,0.00618f,0.0192f,-0.0684f,-0.0709f,0.0235f,-0.0762f,-0.15f,0.116f,-0.0193f,0.105f,0.00144f,0.0692f,-0.724f,-0.00212f,0.0619f,0.193f,-0.00127f,-0.216f,0.251f,-0.0142f,-0.17f,-0.0693f,-0.0204f,0.0614f,-0.0025f,-0.105f,0.251f,-0.0279f,0.0899f,-0.0176f,-0.000903f,0.0897f,0.0123f,-0.618f,0.0566f,-0.135f,-0.0233f,0.209f,-0.0578f,0.0962f,-0.0442f,-0.0514f,0.265f,0.4f,-0.0166f,-0.0704f,-0.105f,-0.424f,0.0196f,-0.0353f,0.0192f,0.0429f,0.0483f,0.414f,0.0143f,-0.0213f,-0.0144f,-0.0273f,-0.0958f,-0.139f,-0.132f,0.144f,0.0435f,0.0835f,-0.209f,-0.0224f,0.259f,0.203f,0.0297f,-0.00303f,0.00137f,-0.434f,-0.00981f,0.0541f,-0.0624f,-0.0213f,0.0237f,0.0189f,0.114f,0.0286f,-0.0502f,-0.0297f,0.0129f,-0.587f,0.0131f,0.00408f,-0.0123f,0.00054f,0.0585f,0.398f,-0.0385f,0.0011f,-0.0743f,-0.00461f,-0.0602f,0.0908f,-0.0098f,-0.0033f,0.0034f,0.0517f,0.0611f,0.0183f,0.0561f,0.0028f,-0.0214f,0.0182f,-0.0746f,-0.237f,-0.0467f,-0.0277f,-0.0207f,0.218f,0.0323f,0.0282f,-0.0294f,0.0312f,-0.000178f,-0.0547f,-0.0514f,0.0063f,0.0456f,0.00824f,0.0331f,-0.159f,-0.0397f,0.0673f,-0.0209f,-0.0666f,-0.13f,-0.00144f,0.065f,-0.135f,-0.0121f,-0.00802f,0.0962f,-0.0327f,0.0416f,-0.307f,-0.0754f,-0.0619f,0.379f,-0.21f,-0.0742f,-0.108f,0.00802f,0.335f,-0.0699f,-0.132f,0.3f,-0.129f,-0.00219f,-0.198f,-0.00238f,0.177f,-0.345f,-0.0212f,-0.041f,0.0498f,0.0264f,-0.444f,-0.00356f,0.313f,-0.0202f,0.32f,-0.0287f,-0.207f,0.0221f,-0.0152f,0.0767f,-0.0251f,0.229f,-0.273f,-0.00531f,-0.074f,-0.00832f,0.327f,-0.0681f,0.0531f,-0.0332f,-0.00992f,0.0225f,-0.297f,0.0131f,0.0887f,0.0535f,-0.0015f,0.0684f,-0.0378f,0.0451f,0.0164f,0.0213f,0.347f,-0.126f,0.0106f,-0.26f,-0.134f,-0.0536f,0.0127f,0.0162f,0.484f,-0.015f,0.0581f,0.0194f,0.00611f,0.118f,0.0344f,-0.0507f,0.19f,0.0166f,0.152f,0.00151f,0.45f,-0.0787f,0.0355f,0.0198f,0.275f,-0.0464f,-0.315f,-0.114f,0.00362f,0.115f,-0.0195f,-0.22f,0.246f,-0.0769f,0.0264f,-0.00472f,-0.105f,-0.00511f,-0.018f,0.0535f,-0.0228f,0.026f,0.06f,-0.08f,-0.118f,-0.00389f,0.00658f,-0.136f,0.118f,0.145f,0.0364f,-0.00122f,0.0336f,0.0178f,-0.062f,-0.013f,0.0771f,0.0503f,0.132f,-0.0469f,-0.16f,-0.0912f,-0.0105f,0.0034f,-0.0311f,-0.102f,-0.0174f,-0.157f,-0.0722f,-0.0299f,0.0022f,0.0623f,0.00293f,0.0838f,-0.363f,0.00583f,-0.0751f,0.0929f,-0.522f,-0.00443f,0.106f,-0.32f,0.235f,0.114f,-0.167f,0.127f,-0.082f,0.00877f,-0.116f,-0.00325f,0.021f,-0.188f,0.0357f,0.0523f,0.0309f,0.0167f,-0.568f,-0.0152f,0.0764f,0.0387f,0.319f,0.00264f,-0.167f,0.101f,-0.0303f,0.0488f,-0.000983f,-0.00387f,0.131f,-0.053f,0.0403f,0.0862f,-0.193f,-0.0465f,-0.0266f,-0.0751f,0.0359f,0.0317f,0.334f,0.03f,-0.0438f,-0.18f,-0.0922f,0.14f,0.155f,-0.0205f,-0.0155f,0.0272f,0.0901f,-0.128f,-0.0218f,-0.0137f,0.486f,-0.00721f,0.00615f,0.0225f,-0.474f,-0.0363f,0.18f,-0.0306f,0.0188f,0.199f,0.164f,0.0277f,-0.182f,0.0963f,0.0202f,0.0179f,-0.423f,-0.0401f,0.0434f,0.0188f,0.0492f,0.11f,0.218f,-0.0177f,-0.0137f,-0.265f,0.00437f,-0.112f,0.304f,-0.00811f,0.0428f,-0.00955f,0.0573f,0.11f,-0.0259f,0.312f,0.0369f,-0.0106f,0.0669f,0.00803f,-0.124f,-0.0218f,-0.0129f,-0.0864f,0.108f,0.162f,-0.00229f,-0.0103f,0.043f,0.00649f,-0.065f,-0.00584f,0.0524f,0.0675f,0.116f,-0.0512f,0.0852f,-0.0988f,-0.0132f,-0.00964f,-0.0564f,-0.0504f,-0.00666f,-0.0552f,-0.00963f,-0.0222f,0.00737f,0.0379f,-0.162f,0.0691f,-0.364f,-0.0101f,-0.0544f,0.105f,-0.508f,-0.0466f,-0.172f,-0.304f,0.172f,0.0719f,-0.13f,0.14f,-0.079f,-0.0033f,-0.189f,0.0105f,0.0103f,-0.139f,0.0278f,-0.0099f,0.0309f,0.1f,-0.586f,-0.00386f,0.0671f,0.0312f,0.363f,0.0233f,-0.161f,0.197f,-0.0248f,0.0433f}; +float bbox_head__multi_level_kps__2_pw_bias[10] = {-0.127f,0.119f,-0.305f,-0.0945f,0.105f,-0.126f,0.0373f,-0.382f,0.25f,-0.386f}; +float bbox_head__multi_level_kps__2_dw_weight[10*1*3*3] = {0.3f,-0.306f,-0.069f,0.18f,0.191f,-0.171f,-0.187f,-0.113f,0.0575f,-0.069f,0.333f,-0.261f,-0.334f,0.255f,0.254f,-0.338f,-0.249f,-0.34f,0.202f,-0.338f,0.148f,-0.142f,-0.28f,0.27f,0.217f,-0.0885f,-0.127f,0.00967f,0.186f,-0.0364f,0.283f,-0.448f,-0.299f,0.344f,0.327f,-0.386f,-0.312f,-0.348f,0.278f,-0.312f,0.584f,-0.584f,-0.662f,0.573f,0.604f,-0.597f,-0.559f,-0.664f,0.583f,-0.665f,0.294f,-0.388f,-0.399f,0.491f,0.355f,-0.463f,-0.314f,-0.419f,0.419f,-0.465f,0.246f,-0.321f,-0.223f,0.245f,0.3f,-0.346f,-0.345f,-0.412f,0.26f,-0.366f,0.553f,-0.486f,-0.567f,0.474f,0.694f,-0.447f,-0.69f,-0.529f,0.693f,-0.533f,0.213f,-0.227f,-0.249f,0.306f,0.333f,-0.3f,-0.299f,-0.279f,0.398f,-0.32f}; +float bbox_head__multi_level_kps__2_dw_bias[10] = {-0.0976f,-0.0443f,0.232f,-0.0505f,0.0628f,0.16f,-0.0595f,0.316f,0.169f,0.319f}; + +//(in_channels, out_channels, is_depthwise, is_pointwise, with_bn, weight_ptr, bias_ptr) +ConvInfoStruct param_pConvInfo[53] = { + {32, 16, false, true, true, backbone__model0_pw_weight, backbone__model0_pw_bias}, + {16, 16, false, true, false, backbone__model0_dp_pw_weight, backbone__model0_dp_pw_bias}, + {16, 16, true, false, true, backbone__model0_dp_dw_weight, backbone__model0_dp_dw_bias}, + {16, 16, false, true, false, backbone__model1_dp1_pw_weight, backbone__model1_dp1_pw_bias}, + {16, 16, true, false, true, backbone__model1_dp1_dw_weight, backbone__model1_dp1_dw_bias}, + {16, 32, false, true, false, backbone__model1_dp2_pw_weight, backbone__model1_dp2_pw_bias}, + {32, 32, true, false, true, backbone__model1_dp2_dw_weight, backbone__model1_dp2_dw_bias}, + {32, 32, false, true, false, backbone__model2_dp1_pw_weight, backbone__model2_dp1_pw_bias}, + {32, 32, true, false, true, backbone__model2_dp1_dw_weight, backbone__model2_dp1_dw_bias}, + {32, 64, false, true, false, backbone__model2_dp2_pw_weight, backbone__model2_dp2_pw_bias}, + {64, 64, true, false, true, backbone__model2_dp2_dw_weight, backbone__model2_dp2_dw_bias}, + {64, 64, false, true, false, backbone__model3_dp1_pw_weight, backbone__model3_dp1_pw_bias}, + {64, 64, true, false, true, backbone__model3_dp1_dw_weight, backbone__model3_dp1_dw_bias}, + {64, 64, false, true, false, backbone__model3_dp2_pw_weight, backbone__model3_dp2_pw_bias}, + {64, 64, true, false, true, backbone__model3_dp2_dw_weight, backbone__model3_dp2_dw_bias}, + {64, 64, false, true, false, backbone__model4_dp1_pw_weight, backbone__model4_dp1_pw_bias}, + {64, 64, true, false, true, backbone__model4_dp1_dw_weight, backbone__model4_dp1_dw_bias}, + {64, 64, false, true, false, backbone__model4_dp2_pw_weight, backbone__model4_dp2_pw_bias}, + {64, 64, true, false, true, backbone__model4_dp2_dw_weight, backbone__model4_dp2_dw_bias}, + {64, 64, false, true, false, backbone__model5_dp1_pw_weight, backbone__model5_dp1_pw_bias}, + {64, 64, true, false, true, backbone__model5_dp1_dw_weight, backbone__model5_dp1_dw_bias}, + {64, 64, false, true, false, backbone__model5_dp2_pw_weight, backbone__model5_dp2_pw_bias}, + {64, 64, true, false, true, backbone__model5_dp2_dw_weight, backbone__model5_dp2_dw_bias}, + {64, 64, false, true, false, neck__lateral_convs__0_pw_weight, neck__lateral_convs__0_pw_bias}, + {64, 64, true, false, true, neck__lateral_convs__0_dw_weight, neck__lateral_convs__0_dw_bias}, + {64, 64, false, true, false, neck__lateral_convs__1_pw_weight, neck__lateral_convs__1_pw_bias}, + {64, 64, true, false, true, neck__lateral_convs__1_dw_weight, neck__lateral_convs__1_dw_bias}, + {64, 64, false, true, false, neck__lateral_convs__2_pw_weight, neck__lateral_convs__2_pw_bias}, + {64, 64, true, false, true, neck__lateral_convs__2_dw_weight, neck__lateral_convs__2_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_cls__0_pw_weight, bbox_head__multi_level_cls__0_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_cls__0_dw_weight, bbox_head__multi_level_cls__0_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_cls__1_pw_weight, bbox_head__multi_level_cls__1_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_cls__1_dw_weight, bbox_head__multi_level_cls__1_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_cls__2_pw_weight, bbox_head__multi_level_cls__2_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_cls__2_dw_weight, bbox_head__multi_level_cls__2_dw_bias}, + {64, 4, false, true, false, bbox_head__multi_level_bbox__0_pw_weight, bbox_head__multi_level_bbox__0_pw_bias}, + {4, 4, true, false, false, bbox_head__multi_level_bbox__0_dw_weight, bbox_head__multi_level_bbox__0_dw_bias}, + {64, 4, false, true, false, bbox_head__multi_level_bbox__1_pw_weight, bbox_head__multi_level_bbox__1_pw_bias}, + {4, 4, true, false, false, bbox_head__multi_level_bbox__1_dw_weight, bbox_head__multi_level_bbox__1_dw_bias}, + {64, 4, false, true, false, bbox_head__multi_level_bbox__2_pw_weight, bbox_head__multi_level_bbox__2_pw_bias}, + {4, 4, true, false, false, bbox_head__multi_level_bbox__2_dw_weight, bbox_head__multi_level_bbox__2_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_obj__0_pw_weight, bbox_head__multi_level_obj__0_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_obj__0_dw_weight, bbox_head__multi_level_obj__0_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_obj__1_pw_weight, bbox_head__multi_level_obj__1_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_obj__1_dw_weight, bbox_head__multi_level_obj__1_dw_bias}, + {64, 1, false, true, false, bbox_head__multi_level_obj__2_pw_weight, bbox_head__multi_level_obj__2_pw_bias}, + {1, 1, true, false, false, bbox_head__multi_level_obj__2_dw_weight, bbox_head__multi_level_obj__2_dw_bias}, + {64, 10, false, true, false, bbox_head__multi_level_kps__0_pw_weight, bbox_head__multi_level_kps__0_pw_bias}, + {10, 10, true, false, false, bbox_head__multi_level_kps__0_dw_weight, bbox_head__multi_level_kps__0_dw_bias}, + {64, 10, false, true, false, bbox_head__multi_level_kps__1_pw_weight, bbox_head__multi_level_kps__1_pw_bias}, + {10, 10, true, false, false, bbox_head__multi_level_kps__1_dw_weight, bbox_head__multi_level_kps__1_dw_bias}, + {64, 10, false, true, false, bbox_head__multi_level_kps__2_pw_weight, bbox_head__multi_level_kps__2_pw_bias}, + {10, 10, true, false, false, bbox_head__multi_level_kps__2_dw_weight, bbox_head__multi_level_kps__2_dw_bias} +}; \ No newline at end of file diff --git a/libfacedetection/src/facedetectcnn-model.cpp b/libfacedetection/src/facedetectcnn-model.cpp new file mode 100644 index 0000000..1893e0a --- /dev/null +++ b/libfacedetection/src/facedetectcnn-model.cpp @@ -0,0 +1,243 @@ +/* +By downloading, copying, installing or using the software you agree to this license. +If you do not agree to this license, do not download, install, +copy or use the software. + + + License Agreement For libfacedetection + (3-clause BSD License) + +Copyright (c) 2018-2021, Shiqi Yu, all rights reserved. +shiqi.yu@gmail.com + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +This software is provided by the copyright holders and contributors "as is" and +any express or implied warranties, including, but not limited to, the implied +warranties of merchantability and fitness for a particular purpose are disclaimed. +In no event shall copyright holders or contributors be liable for any direct, +indirect, incidental, special, exemplary, or consequential damages +(including, but not limited to, procurement of substitute goods or services; +loss of use, data, or profits; or business interruption) however caused +and on any theory of liability, whether in contract, strict liability, +or tort (including negligence or otherwise) arising in any way out of +the use of this software, even if advised of the possibility of such damage. +*/ + + +#include "facedetectcnn.h" + + +#if 0 +#include +cv::TickMeter cvtm; +#define TIME_START cvtm.reset();cvtm.start(); +#define TIME_END(FUNCNAME) cvtm.stop(); printf(FUNCNAME);printf("=%g\n", cvtm.getTimeMilli()); +#else +#define TIME_START +#define TIME_END(FUNCNAME) +#endif + + +#define NUM_CONV_LAYER 53 + +extern ConvInfoStruct param_pConvInfo[NUM_CONV_LAYER]; +Filters g_pFilters[NUM_CONV_LAYER]; + +bool param_initialized = false; + +void init_parameters() +{ + for(int i = 0; i < NUM_CONV_LAYER; i++) + g_pFilters[i] = param_pConvInfo[i]; +} + +std::vector objectdetect_cnn(unsigned char * rgbImageData, int width, int height, int step) +{ + + TIME_START; + if (!param_initialized) + { + init_parameters(); + param_initialized = true; + } + TIME_END("init"); + + + TIME_START; + auto fx = setDataFrom3x3S2P1to1x1S1P0FromImage(rgbImageData, width, height, 3, step); + TIME_END("convert data"); + + /***************CONV0*********************/ + TIME_START; + fx = convolution(fx, g_pFilters[0]); + TIME_END("conv_head"); + + TIME_START; + fx = convolutionDP(fx, g_pFilters[1], g_pFilters[2]); + TIME_END("conv0"); + + TIME_START; + fx = maxpooling2x2S2(fx); + TIME_END("pool0"); + + /***************CONV1*********************/ + TIME_START; + fx = convolution4layerUnit(fx, g_pFilters[3], g_pFilters[4], g_pFilters[5], g_pFilters[6]); + TIME_END("conv1"); + + /***************CONV2*********************/ + TIME_START; + fx = convolution4layerUnit(fx, g_pFilters[7], g_pFilters[8], g_pFilters[9], g_pFilters[10]); + TIME_END("conv2"); + + /***************CONV3*********************/ + TIME_START; + fx = maxpooling2x2S2(fx); + TIME_END("pool3"); + + TIME_START; + auto fb1 = convolution4layerUnit(fx, g_pFilters[11], g_pFilters[12], g_pFilters[13], g_pFilters[14]); + TIME_END("conv3"); + + /***************CONV4*********************/ + TIME_START; + fx = maxpooling2x2S2(fb1); + TIME_END("pool4"); + + TIME_START; + auto fb2 = convolution4layerUnit(fx, g_pFilters[15], g_pFilters[16], g_pFilters[17], g_pFilters[18]); + TIME_END("conv4"); + + /***************CONV5*********************/ + TIME_START; + fx = maxpooling2x2S2(fb2); + TIME_END("pool5"); + + TIME_START; + auto fb3 = convolution4layerUnit(fx, g_pFilters[19], g_pFilters[20], g_pFilters[21], g_pFilters[22]); + TIME_END("conv5"); + + CDataBlob pred_reg[3], pred_cls[3], pred_kps[3], pred_obj[3]; + /***************branch5*********************/ + TIME_START; + fb3 = convolutionDP(fb3, g_pFilters[27], g_pFilters[28]); + pred_cls[2] = convolutionDP(fb3, g_pFilters[33], g_pFilters[34], false); + pred_reg[2] = convolutionDP(fb3, g_pFilters[39], g_pFilters[40], false); + pred_kps[2] = convolutionDP(fb3, g_pFilters[51], g_pFilters[52], false); + pred_obj[2] = convolutionDP(fb3, g_pFilters[45], g_pFilters[46], false); + TIME_END("branch5"); + + /*****************add5*********************/ + TIME_START; + fb2 = elementAdd(upsampleX2(fb3), fb2); + TIME_END("add5"); + + /*****************add6*********************/ + TIME_START; + fb2 = convolutionDP(fb2, g_pFilters[25], g_pFilters[26]); + pred_cls[1] = convolutionDP(fb2, g_pFilters[31], g_pFilters[32], false); + pred_reg[1] = convolutionDP(fb2, g_pFilters[37], g_pFilters[38], false); + pred_kps[1] = convolutionDP(fb2, g_pFilters[49], g_pFilters[50], false); + pred_obj[1] = convolutionDP(fb2, g_pFilters[43], g_pFilters[44], false); + TIME_END("branch4"); + + /*****************add4*********************/ + TIME_START; + fb1 = elementAdd(upsampleX2(fb2), fb1); + TIME_END("add4"); + + /***************branch3*********************/ + TIME_START; + fb1 = convolutionDP(fb1, g_pFilters[23], g_pFilters[24]); + pred_cls[0] = convolutionDP(fb1, g_pFilters[29], g_pFilters[30], false); + pred_reg[0] = convolutionDP(fb1, g_pFilters[35], g_pFilters[36], false); + pred_kps[0] = convolutionDP(fb1, g_pFilters[47], g_pFilters[48], false); + pred_obj[0] = convolutionDP(fb1, g_pFilters[41], g_pFilters[42], false); + TIME_END("branch3"); + + /***************PRIORBOX*********************/ + TIME_START; + auto prior3 = meshgrid(fb1.cols, fb1.rows, 8); + auto prior4 = meshgrid(fb2.cols, fb2.rows, 16); + auto prior5 = meshgrid(fb3.cols, fb3.rows, 32); + TIME_END("prior"); + /***************PRIORBOX*********************/ + + TIME_START; + bbox_decode(pred_reg[0], prior3, 8); + bbox_decode(pred_reg[1], prior4, 16); + bbox_decode(pred_reg[2], prior5, 32); + + kps_decode(pred_kps[0], prior3, 8); + kps_decode(pred_kps[1], prior4, 16); + kps_decode(pred_kps[2], prior5, 32); + + auto cls = concat3(blob2vector(pred_cls[0]), blob2vector(pred_cls[1]), blob2vector(pred_cls[2])); + auto reg = concat3(blob2vector(pred_reg[0]), blob2vector(pred_reg[1]), blob2vector(pred_reg[2])); + auto kps = concat3(blob2vector(pred_kps[0]), blob2vector(pred_kps[1]), blob2vector(pred_kps[2])); + auto obj = concat3(blob2vector(pred_obj[0]), blob2vector(pred_obj[1]), blob2vector(pred_obj[2])); + + sigmoid(cls); + sigmoid(obj); + TIME_END("decode") + + TIME_START; + std::vector facesInfo = detection_output(cls, reg, kps, obj, 0.45f, 0.2f, 1000, 512); + TIME_END("detection output") + return facesInfo; +} + +int* facedetect_cnn(unsigned char * result_buffer, //buffer memory for storing face detection results, !!its size must be FACEDETECTION_RESULT_BUFFER_SIZE Bytes!! + unsigned char * rgb_image_data, int width, int height, int step) //input image, it must be BGR (three-channel) image! +{ + + if (!result_buffer) + { + fprintf(stderr, "%s: null buffer memory.\n", __FUNCTION__); + return NULL; + } + //clear memory + result_buffer[0] = 0; + result_buffer[1] = 0; + result_buffer[2] = 0; + result_buffer[3] = 0; + + std::vector faces = objectdetect_cnn(rgb_image_data, width, height, step); + + int num_faces =(int)faces.size(); + num_faces = MIN(num_faces, FACEDETECTION_RESULT_MAX_FACES); + + int * pCount = (int *)result_buffer; + pCount[0] = num_faces; + + for (int i = 0; i < num_faces; i++) + { + //copy data + short * p = ((short*)(result_buffer + 4)) + FACEDETECTION_RESULT_STRIDE_SHORTS * size_t(i); + p[0] = (short)(faces[i].score * 100); + p[1] = (short)faces[i].x; + p[2] = (short)faces[i].y; + p[3] = (short)faces[i].w; + p[4] = (short)faces[i].h; + //copy landmarks + for (int lmidx = 0; lmidx < 10; lmidx++) + { + p[5 + lmidx] = (short)faces[i].lm[lmidx]; + } + } + + return pCount; +} diff --git a/libfacedetection/src/facedetectcnn.cpp b/libfacedetection/src/facedetectcnn.cpp new file mode 100644 index 0000000..c9cfc78 --- /dev/null +++ b/libfacedetection/src/facedetectcnn.cpp @@ -0,0 +1,882 @@ +/* +By downloading, copying, installing or using the software you agree to this license. +If you do not agree to this license, do not download, install, +copy or use the software. + + + License Agreement For libfacedetection + (3-clause BSD License) + +Copyright (c) 2018-2021, Shiqi Yu, all rights reserved. +shiqi.yu@gmail.com + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of the contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +This software is provided by the copyright holders and contributors "as is" and +any express or implied warranties, including, but not limited to, the implied +warranties of merchantability and fitness for a particular purpose are disclaimed. +In no event shall copyright holders or contributors be liable for any direct, +indirect, incidental, special, exemplary, or consequential damages +(including, but not limited to, procurement of substitute goods or services; +loss of use, data, or profits; or business interruption) however caused +and on any theory of liability, whether in contract, strict liability, +or tort (including negligence or otherwise) arising in any way out of +the use of this software, even if advised of the possibility of such damage. +*/ + +#include "facedetectcnn.h" +#include +#include //for FLT_EPSION +#include //for stable_sort, sort + +typedef struct NormalizedBBox_ +{ + float xmin; + float ymin; + float xmax; + float ymax; + float lm[10]; +} NormalizedBBox; + + +void* myAlloc(size_t size) +{ + char *ptr, *ptr0; + ptr0 = (char*)malloc( + (size_t)(size + _MALLOC_ALIGN * ((size >= 4096) + 1L) + sizeof(char*))); + + if (!ptr0) + return 0; + + // align the pointer + ptr = (char*)(((size_t)(ptr0 + sizeof(char*) + 1) + _MALLOC_ALIGN - 1) & ~(size_t)(_MALLOC_ALIGN - 1)); + *(char**)(ptr - sizeof(char*)) = ptr0; + + return ptr; +} + +void myFree_(void* ptr) +{ + // Pointer must be aligned by _MALLOC_ALIGN + if (ptr) + { + if (((size_t)ptr & (_MALLOC_ALIGN - 1)) != 0) + return; + free(*((char**)ptr - 1)); + } +} + + +CDataBlob setDataFrom3x3S2P1to1x1S1P0FromImage(const unsigned char* inputData, int imgWidth, int imgHeight, int imgChannels, int imgWidthStep, int padDivisor) { + if (imgChannels != 3) { + std::cerr << __FUNCTION__ << ": The input image must be a 3-channel RGB image." << std::endl; + exit(1); + } + if (padDivisor != 32) { + std::cerr << __FUNCTION__ << ": This version need pad of 32" << std::endl; + exit(1); + } + int rows = ((imgHeight - 1) / padDivisor + 1) * padDivisor / 2; + int cols = ((imgWidth - 1) / padDivisor + 1 ) * padDivisor / 2; + int channels = 32; + CDataBlob outBlob(rows, cols, channels); + +#if defined(_OPENMP) +#pragma omp parallel for +#endif + for (int r = 0; r < rows; r++) { + for (int c = 0; c < cols; c++) { + float* pData = outBlob.ptr(r, c); + for (int fy = -1; fy <= 1; fy++) { + int srcy = r * 2 + fy; + + if (srcy < 0 || srcy >= imgHeight) //out of the range of the image + continue; + + for (int fx = -1; fx <= 1; fx++) { + int srcx = c * 2 + fx; + + if (srcx < 0 || srcx >= imgWidth) //out of the range of the image + continue; + + const unsigned char * pImgData = inputData + size_t(imgWidthStep) * srcy + imgChannels * srcx; + + int output_channel_offset = ((fy + 1) * 3 + fx + 1) ; //3x3 filters, 3-channel image + pData[output_channel_offset * imgChannels] = pImgData[0]; + pData[output_channel_offset * imgChannels + 1] = pImgData[1]; + pData[output_channel_offset * imgChannels + 2] = pImgData[2]; + } + } + } + } + return outBlob; +} + +//p1 and p2 must be 512-bit aligned (16 float numbers) +inline float dotProduct(const float * p1, const float * p2, int num) +{ + float sum = 0.f; + +#if defined(_ENABLE_AVX512) + __m512 a_float_x16, b_float_x16; + __m512 sum_float_x16 = _mm512_setzero_ps(); + for (int i = 0; i < num; i += 16) + { + a_float_x16 = _mm512_load_ps(p1 + i); + b_float_x16 = _mm512_load_ps(p2 + i); + sum_float_x16 = _mm512_add_ps(sum_float_x16, _mm512_mul_ps(a_float_x16, b_float_x16)); + } + sum = _mm512_reduce_add_ps(sum_float_x16); +#elif defined(_ENABLE_AVX2) + __m256 a_float_x8, b_float_x8; + __m256 sum_float_x8 = _mm256_setzero_ps(); + for (int i = 0; i < num; i += 8) + { + a_float_x8 = _mm256_load_ps(p1 + i); + b_float_x8 = _mm256_load_ps(p2 + i); + sum_float_x8 = _mm256_add_ps(sum_float_x8, _mm256_mul_ps(a_float_x8, b_float_x8)); + } + sum_float_x8 = _mm256_hadd_ps(sum_float_x8, sum_float_x8); + sum_float_x8 = _mm256_hadd_ps(sum_float_x8, sum_float_x8); + sum = ((float*)&sum_float_x8)[0] + ((float*)&sum_float_x8)[4]; +#elif defined(_ENABLE_NEON) + float32x4_t a_float_x4, b_float_x4; + float32x4_t sum_float_x4; + sum_float_x4 = vdupq_n_f32(0); + for (int i = 0; i < num; i+=4) + { + a_float_x4 = vld1q_f32(p1 + i); + b_float_x4 = vld1q_f32(p2 + i); + sum_float_x4 = vaddq_f32(sum_float_x4, vmulq_f32(a_float_x4, b_float_x4)); + } + sum += vgetq_lane_f32(sum_float_x4, 0); + sum += vgetq_lane_f32(sum_float_x4, 1); + sum += vgetq_lane_f32(sum_float_x4, 2); + sum += vgetq_lane_f32(sum_float_x4, 3); +#else + for(int i = 0; i < num; i++) + { + sum += (p1[i] * p2[i]); + } +#endif + + return sum; +} + +inline bool vecMulAdd(const float * p1, const float * p2, float * p3, int num) +{ +#if defined(_ENABLE_AVX512) + __m512 a_float_x16, b_float_x16, c_float_x16; + for (int i = 0; i < num; i += 16) + { + a_float_x16 = _mm512_load_ps(p1 + i); + b_float_x16 = _mm512_load_ps(p2 + i); + c_float_x16 = _mm512_load_ps(p3 + i); + c_float_x16 = _mm512_add_ps(c_float_x16, _mm512_mul_ps(a_float_x16, b_float_x16)); + _mm512_store_ps(p3 + i, c_float_x16); + } +#elif defined(_ENABLE_AVX2) + __m256 a_float_x8, b_float_x8, c_float_x8; + for (int i = 0; i < num; i += 8) + { + a_float_x8 = _mm256_load_ps(p1 + i); + b_float_x8 = _mm256_load_ps(p2 + i); + c_float_x8 = _mm256_load_ps(p3 + i); + c_float_x8 = _mm256_add_ps(c_float_x8, _mm256_mul_ps(a_float_x8, b_float_x8)); + _mm256_store_ps(p3 + i, c_float_x8); + } +#elif defined(_ENABLE_NEON) + float32x4_t a_float_x4, b_float_x4, c_float_x4; + for (int i = 0; i < num; i+=4) + { + a_float_x4 = vld1q_f32(p1 + i); + b_float_x4 = vld1q_f32(p2 + i); + c_float_x4 = vld1q_f32(p3 + i); + c_float_x4 = vaddq_f32(c_float_x4, vmulq_f32(a_float_x4, b_float_x4)); + vst1q_f32(p3 + i, c_float_x4); + } +#else + for(int i = 0; i < num; i++) + p3[i] += (p1[i] * p2[i]); +#endif + + return true; +} + +inline bool vecAdd(const float * p1, float * p2, int num) +{ +#if defined(_ENABLE_AVX512) + __m512 a_float_x16, b_float_x16; + for (int i = 0; i < num; i += 16) + { + a_float_x16 = _mm512_load_ps(p1 + i); + b_float_x16 = _mm512_load_ps(p2 + i); + b_float_x16 = _mm512_add_ps(a_float_x16, b_float_x16); + _mm512_store_ps(p2 + i, b_float_x16); + } +#elif defined(_ENABLE_AVX2) + __m256 a_float_x8, b_float_x8; + for (int i = 0; i < num; i += 8) + { + a_float_x8 = _mm256_load_ps(p1 + i); + b_float_x8 = _mm256_load_ps(p2 + i); + b_float_x8 = _mm256_add_ps(a_float_x8, b_float_x8); + _mm256_store_ps(p2 + i, b_float_x8); + } +#elif defined(_ENABLE_NEON) + float32x4_t a_float_x4, b_float_x4, c_float_x4; + for (int i = 0; i < num; i+=4) + { + a_float_x4 = vld1q_f32(p1 + i); + b_float_x4 = vld1q_f32(p2 + i); + c_float_x4 = vaddq_f32(a_float_x4, b_float_x4); + vst1q_f32(p2 + i, c_float_x4); + } +#else + for(int i = 0; i < num; i++) + { + p2[i] += p1[i]; + } +#endif + return true; +} + +inline bool vecAdd(const float * p1, const float * p2, float* p3, int num) +{ +#if defined(_ENABLE_AVX512) + __m512 a_float_x16, b_float_x16; + for (int i = 0; i < num; i += 16) + { + a_float_x16 = _mm512_load_ps(p1 + i); + b_float_x16 = _mm512_load_ps(p2 + i); + b_float_x16 = _mm512_add_ps(a_float_x16, b_float_x16); + _mm512_store_ps(p3 + i, b_float_x16); + } +#elif defined(_ENABLE_AVX2) + __m256 a_float_x8, b_float_x8; + for (int i = 0; i < num; i += 8) + { + a_float_x8 = _mm256_load_ps(p1 + i); + b_float_x8 = _mm256_load_ps(p2 + i); + b_float_x8 = _mm256_add_ps(a_float_x8, b_float_x8); + _mm256_store_ps(p3 + i, b_float_x8); + } +#elif defined(_ENABLE_NEON) + float32x4_t a_float_x4, b_float_x4, c_float_x4; + for (int i = 0; i < num; i+=4) + { + a_float_x4 = vld1q_f32(p1 + i); + b_float_x4 = vld1q_f32(p2 + i); + c_float_x4 = vaddq_f32(a_float_x4, b_float_x4); + vst1q_f32(p3 + i, c_float_x4); + } +#else + for(int i = 0; i < num; i++) + { + p3[i] = p1[i] + p2[i]; + } +#endif + return true; +} + +bool convolution_1x1pointwise(const CDataBlob & inputData, const Filters & filters, CDataBlob & outputData) +{ +#if defined(_OPENMP) +#pragma omp parallel for +#endif + for (int row = 0; row < outputData.rows; row++) + { + for (int col = 0; col < outputData.cols; col++) + { + float * pOut = outputData.ptr(row, col); + const float * pIn = inputData.ptr(row, col); + for (int ch = 0; ch < outputData.channels; ch++) + { + const float * pF = filters.weights.ptr(0, ch); + pOut[ch] = dotProduct(pIn, pF, inputData.channels); + pOut[ch] += filters.biases.data[ch]; + } + } + } + return true; +} + +bool convolution_3x3depthwise(const CDataBlob & inputData, const Filters & filters, CDataBlob & outputData) +{ + //set all elements in outputData to zeros + outputData.setZero(); +#if defined(_OPENMP) +#pragma omp parallel for +#endif + for (int row = 0; row < outputData.rows; row++) + { + int srcy_start = row - 1; + int srcy_end = srcy_start + 3; + srcy_start = MAX(0, srcy_start); + srcy_end = MIN(srcy_end, inputData.rows); + + for (int col = 0; col < outputData.cols; col++) + { + float * pOut = outputData.ptr(row, col); + int srcx_start = col - 1; + int srcx_end = srcx_start + 3; + srcx_start = MAX(0, srcx_start); + srcx_end = MIN(srcx_end, inputData.cols); + + + for ( int r = srcy_start; r < srcy_end; r++) + for( int c = srcx_start; c < srcx_end; c++) + { + int filter_r = r - row + 1; + int filter_c = c - col + 1; + int filter_idx = filter_r * 3 + filter_c; + vecMulAdd(inputData.ptr(r, c), filters.weights.ptr(0, filter_idx), pOut, filters.num_filters); + } + vecAdd(filters.biases.ptr(0,0), pOut, filters.num_filters); + } + } + return true; +} + +bool relu(CDataBlob & inputoutputData) +{ + if( inputoutputData.isEmpty() ) + { + std::cerr << __FUNCTION__ << ": The input data is empty." << std::endl; + return false; + } + + int len = inputoutputData.cols * inputoutputData.rows * inputoutputData.channelStep / sizeof(float); + + +#if defined(_ENABLE_AVX512) + __m512 a, bzeros; + bzeros = _mm512_setzero_ps(); //zeros + for( int i = 0; i < len; i+=16) + { + a = _mm512_load_ps(inputoutputData.data + i); + a = _mm512_max_ps(a, bzeros); + _mm512_store_ps(inputoutputData.data + i, a); + } +#elif defined(_ENABLE_AVX2) + __m256 a, bzeros; + bzeros = _mm256_setzero_ps(); //zeros + for( int i = 0; i < len; i+=8) + { + a = _mm256_load_ps(inputoutputData.data + i); + a = _mm256_max_ps(a, bzeros); + _mm256_store_ps(inputoutputData.data + i, a); + } +#else + for( int i = 0; i < len; i++) + inputoutputData.data[i] *= (inputoutputData.data[i] >0); +#endif + + return true; +} + +void IntersectBBox(const NormalizedBBox& bbox1, const NormalizedBBox& bbox2, + NormalizedBBox* intersect_bbox) +{ + if (bbox2.xmin > bbox1.xmax || bbox2.xmax < bbox1.xmin || + bbox2.ymin > bbox1.ymax || bbox2.ymax < bbox1.ymin) + { + // Return [0, 0, 0, 0] if there is no intersection. + intersect_bbox->xmin = 0; + intersect_bbox->ymin = 0; + intersect_bbox->xmax = 0; + intersect_bbox->ymax = 0; + } + else + { + intersect_bbox->xmin = (std::max(bbox1.xmin, bbox2.xmin)); + intersect_bbox->ymin = (std::max(bbox1.ymin, bbox2.ymin)); + intersect_bbox->xmax = (std::min(bbox1.xmax, bbox2.xmax)); + intersect_bbox->ymax = (std::min(bbox1.ymax, bbox2.ymax)); + } +} + +float JaccardOverlap(const NormalizedBBox& bbox1, const NormalizedBBox& bbox2) +{ + NormalizedBBox intersect_bbox; + IntersectBBox(bbox1, bbox2, &intersect_bbox); + float intersect_width, intersect_height; + intersect_width = intersect_bbox.xmax - intersect_bbox.xmin; + intersect_height = intersect_bbox.ymax - intersect_bbox.ymin; + + if (intersect_width > 0 && intersect_height > 0) + { + float intersect_size = intersect_width * intersect_height; + float bsize1 = (bbox1.xmax - bbox1.xmin)*(bbox1.ymax - bbox1.ymin); + float bsize2 = (bbox2.xmax - bbox2.xmin)*(bbox2.ymax - bbox2.ymin); + return intersect_size / ( bsize1 + bsize2 - intersect_size); + } + else + { + return 0.f; + } +} + +bool SortScoreBBoxPairDescend(const std::pair& pair1, const std::pair& pair2) +{ + return pair1.first > pair2.first; +} + + +CDataBlob upsampleX2(const CDataBlob& inputData) { + if (inputData.isEmpty()) { + std::cerr << __FUNCTION__ << ": The input data is empty." << std::endl; + exit(1); + } + + CDataBlob outData(inputData.rows * 2, inputData.cols * 2, inputData.channels); + + for (int r = 0; r < inputData.rows; r++) { + for (int c = 0; c < inputData.cols; c++) { + const float * pIn = inputData.ptr(r, c); + int outr = r * 2; + int outc = c * 2; + for (int ch = 0; ch < inputData.channels; ++ch) { + outData.ptr(outr, outc)[ch] = pIn[ch]; + outData.ptr(outr, outc + 1)[ch] = pIn[ch]; + outData.ptr(outr + 1, outc)[ch] = pIn[ch]; + outData.ptr(outr + 1, outc + 1)[ch] = pIn[ch]; + } + } + } + return outData; +} + +CDataBlob elementAdd(const CDataBlob& inputData1, const CDataBlob& inputData2) { + if (inputData1.rows != inputData2.rows || inputData1.cols != inputData2.cols || inputData1.channels != inputData2.channels) { + std::cerr << __FUNCTION__ << ": The two input datas must be in the same shape." << std::endl; + exit(1); + } + CDataBlob outData(inputData1.rows, inputData1.cols, inputData1.channels); + for (int r = 0; r < inputData1.rows; r++) { + for (int c = 0; c < inputData1.cols; c++) { + const float * pIn1 = inputData1.ptr(r, c); + const float * pIn2 = inputData2.ptr(r, c); + float* pOut = outData.ptr(r, c); + vecAdd(pIn1, pIn2, pOut, inputData1.channels); + } + } + return outData; +} + +CDataBlob convolution(const CDataBlob& inputData, const Filters& filters, bool do_relu) +{ + if( inputData.isEmpty() || filters.weights.isEmpty() || filters.biases.isEmpty()) + { + std::cerr << __FUNCTION__ << ": The input data or filter data is empty" << std::endl; + exit(1); + } + if( inputData.channels != filters.channels) + { + std::cerr << __FUNCTION__ << ": The input data dimension cannot meet filters: " << inputData.channels << " vs " << filters.channels << std::endl; + exit(1); + } + CDataBlob outputData(inputData.rows, inputData.cols, filters.num_filters); + if(filters.is_pointwise && !filters.is_depthwise) + convolution_1x1pointwise(inputData, filters, outputData); + else if(!filters.is_pointwise && filters.is_depthwise) + convolution_3x3depthwise(inputData, filters, outputData); + else + { + std::cerr << __FUNCTION__ << ": Unsupported filter type." << std::endl; + exit(1); + } + + if(do_relu) + relu(outputData); + + return outputData; +} + +CDataBlob convolutionDP(const CDataBlob& inputData, + const Filters& filtersP, const Filters& filtersD, bool do_relu) +{ + CDataBlob tmp = convolution(inputData, filtersP, false); + CDataBlob out = convolution(tmp, filtersD, do_relu); + return out; +} + +CDataBlob convolution4layerUnit(const CDataBlob& inputData, + const Filters& filtersP1, const Filters& filtersD1, + const Filters& filtersP2, const Filters& filtersD2, bool do_relu) +{ + CDataBlob tmp = convolutionDP(inputData, filtersP1, filtersD1, true); + CDataBlob out = convolutionDP(tmp, filtersP2, filtersD2, do_relu); + return out; +} + + +//only 2X2 S2 is supported +CDataBlob maxpooling2x2S2(const CDataBlob&inputData) +{ + if (inputData.isEmpty()) + { + std::cerr << __FUNCTION__ << ": The input data is empty." << std::endl; + exit(1); + } + int outputR = static_cast(ceil((inputData.rows - 3.0f) / 2)) + 1; + int outputC = static_cast(ceil((inputData.cols - 3.0f) / 2)) + 1; + int outputCH = inputData.channels; + + if (outputR < 1 || outputC < 1) + { + std::cerr << __FUNCTION__ << ": The size of the output is not correct. (" << outputR << ", " << outputC << ")." << std::endl; + exit(1); + } + + CDataBlob outputData(outputR, outputC, outputCH); + outputData.setZero(); + + for (int row = 0; row < outputData.rows; row++) + { + for (int col = 0; col < outputData.cols; col++) + { + size_t inputMatOffsetsInElement[4]; + int elementCount = 0; + + int rstart = row * 2; + int cstart = col * 2; + int rend = MIN(rstart + 2, inputData.rows); + int cend = MIN(cstart + 2, inputData.cols); + + for (int fr = rstart; fr < rend; fr++) + { + for (int fc = cstart; fc < cend; fc++) + { + inputMatOffsetsInElement[elementCount++] = (size_t(fr) * inputData.cols + fc) * inputData.channelStep / sizeof(float); + } + } + + float * pOut = outputData.ptr(row, col); + float * pIn = inputData.data; + +#if defined(_ENABLE_NEON) + for (int ch = 0; ch < outputData.channels; ch += 4) + { + float32x4_t tmp; + float32x4_t maxVal = vld1q_f32(pIn + ch + inputMatOffsetsInElement[0]); + for (int ec = 1; ec < elementCount; ec++) + { + tmp = vld1q_f32(pIn + ch + inputMatOffsetsInElement[ec]); + maxVal = vmaxq_f32(maxVal, tmp); + } + vst1q_f32(pOut + ch, maxVal); + } +#elif defined(_ENABLE_AVX512) + for (int ch = 0; ch < outputData.channels; ch += 16) + { + __m512 tmp; + __m512 maxVal = _mm512_load_ps((__m512 const*)(pIn + ch + inputMatOffsetsInElement[0])); + for (int ec = 1; ec < elementCount; ec++) + { + tmp = _mm512_load_ps((__m512 const*)(pIn + ch + inputMatOffsetsInElement[ec])); + maxVal = _mm512_max_ps(maxVal, tmp); + } + _mm512_store_ps((__m512*)(pOut + ch), maxVal); + } +#elif defined(_ENABLE_AVX2) + for (int ch = 0; ch < outputData.channels; ch += 8) + { + __m256 tmp; + __m256 maxVal = _mm256_load_ps((float const*)(pIn + ch + inputMatOffsetsInElement[0])); + for (int ec = 1; ec < elementCount; ec++) + { + tmp = _mm256_load_ps((float const*)(pIn + ch + inputMatOffsetsInElement[ec])); + maxVal = _mm256_max_ps(maxVal, tmp); + } + _mm256_store_ps(pOut + ch, maxVal); + } +#else + for (int ch = 0; ch < outputData.channels; ch++) + { + float maxVal = pIn[ch + inputMatOffsetsInElement[0]]; + for (int ec = 1; ec < elementCount; ec++) + { + maxVal = MAX(maxVal, pIn[ch + inputMatOffsetsInElement[ec]]); + } + pOut[ch] = maxVal; + } +#endif + } + } + return outputData; +} + +CDataBlob meshgrid(int feature_width, int feature_height, int stride, float offset) { + CDataBlob out(feature_height, feature_width, 2); + for(int r = 0; r < feature_height; ++r) { + float rx = (float)(r * stride) + offset; + for(int c = 0; c < feature_width; ++c) { + float* p = out.ptr(r, c); + p[0] = (float)(c * stride) + offset; + p[1] = rx; + } + } + return out; +} + +void bbox_decode(CDataBlob& bbox_pred, const CDataBlob& priors, int stride) { + if(bbox_pred.cols != priors.cols || bbox_pred.rows != priors.rows) { + std::cerr << __FUNCTION__ << ": Mismatch between feature map and anchor size. (" \ + << (bbox_pred.rows) << ", " << (bbox_pred.cols) << ") vs (" \ + << (priors.rows) << ", " << (priors.cols) << ")." << std::endl; + } + if(bbox_pred.channels != 4) { + std::cerr << __FUNCTION__ << ": The bbox dim must be 4." << std::endl; + } + float fstride = (float)stride; + for(int r = 0; r < bbox_pred.rows; ++r) { + for(int c = 0; c < bbox_pred.cols; ++c) { + float* pb = bbox_pred.ptr(r, c); + const float* pp = priors.ptr(r, c); + float cx = pb[0] * fstride + pp[0]; + float cy = pb[1] * fstride + pp[1]; + float w = std::exp(pb[2]) * fstride; + float h = std::exp(pb[3]) * fstride; + pb[0] = cx - w / 2.f; + pb[1] = cy - h / 2.f; + pb[2] = cx + w / 2.f; + pb[3] = cy + h / 2.f; + } + } +} + +void kps_decode(CDataBlob& kps_pred, const CDataBlob& priors, int stride) { + if(kps_pred.cols != priors.cols || kps_pred.rows != priors.rows) { + std::cerr << __FUNCTION__ << ": Mismatch between feature map and anchor size." << std::endl; + exit(1); + } + if(kps_pred.channels & 1) { + std::cerr << __FUNCTION__ << ": The kps dim must be even." << std::endl; + exit(1); + } + float fstride = (float)stride; + int num_points = kps_pred.channels >> 1; + + for(int r = 0; r < kps_pred.rows; ++r) { + for(int c = 0; c < kps_pred.cols; ++c) { + float* pb = kps_pred.ptr(r, c); + const float* pp = priors.ptr(r, c); + for(int n = 0; n < num_points; ++n) { + pb[2 * n] = pb[2 * n] * fstride + pp[0]; + pb[2 * n + 1] = pb[2 * n + 1] * fstride + pp[1]; + } + } + } +} + +template +CDataBlob concat3(const CDataBlob& inputData1, const CDataBlob& inputData2, const CDataBlob& inputData3) +{ + if ((inputData1.isEmpty()) || (inputData2.isEmpty()) || (inputData3.isEmpty())) + { + std::cerr << __FUNCTION__ << ": The input data is empty." << std::endl; + exit(1); + } + + if ((inputData1.cols != inputData2.cols) || + (inputData1.rows != inputData2.rows) || + (inputData1.cols != inputData3.cols) || + (inputData1.rows != inputData3.rows)) + { + std::cerr << __FUNCTION__ << ": The three inputs must have the same size." << std::endl; + exit(1); + } + int outputR = inputData1.rows; + int outputC = inputData1.cols; + int outputCH = inputData1.channels + inputData2.channels + inputData3.channels; + + if (outputR < 1 || outputC < 1 || outputCH < 1) + { + std::cerr << __FUNCTION__ << ": The size of the output is not correct. (" << outputR << ", " << outputC << ", " << outputCH << ")." << std::endl; + exit(1); + } + + CDataBlob outputData(outputR, outputC, outputCH); + + for (int row = 0; row < outputData.rows; row++) + { + for (int col = 0; col < outputData.cols; col++) + { + T * pOut = outputData.ptr(row, col); + const T * pIn1 = inputData1.ptr(row, col); + const T * pIn2 = inputData2.ptr(row, col); + const T * pIn3 = inputData3.ptr(row, col); + + memcpy(pOut, pIn1, sizeof(T)* inputData1.channels); + memcpy(pOut + inputData1.channels, pIn2, sizeof(T)* inputData2.channels); + memcpy(pOut + inputData1.channels + inputData2.channels, pIn3, sizeof(T)* inputData3.channels); + } + } + return outputData; +} +template CDataBlob concat3(const CDataBlob& inputData1, const CDataBlob& inputData2, const CDataBlob& inputData3); + +template +CDataBlob blob2vector(const CDataBlob &inputData) +{ + if (inputData.isEmpty()) + { + std::cerr << __FUNCTION__ << ": The input data is empty." << std::endl; + exit(1); + } + + CDataBlob outputData(1, 1, inputData.cols * inputData.rows * inputData.channels); + + int bytesOfAChannel = inputData.channels * sizeof(T); + T * pOut = outputData.ptr(0,0); + for (int row = 0; row < inputData.rows; row++) + { + for (int col = 0; col < inputData.cols; col++) + { + const T * pIn = inputData.ptr(row, col); + memcpy(pOut, pIn, bytesOfAChannel); + pOut += inputData.channels; + } + } + + return outputData; +} +template CDataBlob blob2vector(const CDataBlob& inputData); + +void sigmoid(CDataBlob& inputData) { + for(int r = 0; r < inputData.rows; ++r) { + for(int c = 0; c < inputData.cols; ++c) { + float* pIn = inputData.ptr(r, c); + for(int ch = 0; ch < inputData.channels; ++ch) { + float v = pIn[ch]; + v = std::min(v, 88.3762626647949f); + v = std::max(v, -88.3762626647949f); + pIn[ch] = static_cast(1.f / (1.f + exp(-v))); + } + } + } +} + +std::vector detection_output(const CDataBlob& cls, + const CDataBlob& reg, + const CDataBlob& kps, + const CDataBlob& obj, + float overlap_threshold, + float confidence_threshold, + int top_k, + int keep_top_k) +{ + if (reg.isEmpty() || cls.isEmpty() || kps.isEmpty() || obj.isEmpty())//|| iou.isEmpty()) + { + std::cerr << __FUNCTION__ << ": The input data is null." << std::endl; + exit(1); + } + if(reg.cols != 1 || reg.rows!= 1 || cls.cols != 1 || cls.rows!= 1 || kps.cols != 1 || kps.rows!= 1 || obj.cols != 1 || obj.rows!= 1) { + std::cerr << __FUNCTION__ << ": Only support vector format." << std::endl; + exit(1); + } + + if((int)(kps.channels / obj.channels) != 10) { + std::cerr << __FUNCTION__ << ": Only support 5 keypoints. (" << kps.channels << ")" << std::endl; + exit(1); + } + + const float* pCls = cls.ptr(0, 0); + const float* pReg = reg.ptr(0, 0); + const float* pObj = obj.ptr(0, 0); + const float* pKps = kps.ptr(0, 0); + + std::vector > score_bbox_vec; + std::vector > final_score_bbox_vec; + + //get the candidates those are > confidence_threshold + for(int i = 0; i < cls.channels; ++i) + { + float conf = std::sqrt(pCls[i] * pObj[i]); + // float conf = pCls[i] * pObj[i]; + + if(conf >= confidence_threshold) + { + NormalizedBBox bb; + bb.xmin = pReg[4 * i]; + bb.ymin = pReg[4 * i + 1]; + bb.xmax = pReg[4 * i + 2]; + bb.ymax = pReg[4 * i + 3]; + + //store the five landmarks + memcpy(bb.lm, pKps + 10 * i, 10 * sizeof(float)); + score_bbox_vec.push_back(std::make_pair(conf, bb)); + } + } + + //Sort the score pair according to the scores in descending order + std::stable_sort(score_bbox_vec.begin(), score_bbox_vec.end(), SortScoreBBoxPairDescend); + + // Keep top_k scores if needed. + if (top_k > -1 && size_t(top_k) < score_bbox_vec.size()) { + score_bbox_vec.resize(top_k); + } + + //Do NMS + final_score_bbox_vec.clear(); + while (score_bbox_vec.size() != 0) { + const NormalizedBBox bb1 = score_bbox_vec.front().second; + bool keep = true; + for (size_t k = 0; k < final_score_bbox_vec.size(); k++) + { + if (keep) + { + const NormalizedBBox bb2 = final_score_bbox_vec[k].second; + float overlap = JaccardOverlap(bb1, bb2); + keep = (overlap <= overlap_threshold); + } + else + { + break; + } + } + if (keep) { + final_score_bbox_vec.push_back(score_bbox_vec.front()); + } + score_bbox_vec.erase(score_bbox_vec.begin()); + } + if (keep_top_k > -1 && size_t(keep_top_k) < final_score_bbox_vec.size()) { + final_score_bbox_vec.resize(keep_top_k); + } + + //copy the results to the output blob + int num_faces = (int)final_score_bbox_vec.size(); + + std::vector facesInfo; + for (int fi = 0; fi < num_faces; fi++) + { + std::pair pp = final_score_bbox_vec[fi]; + + FaceRect r; + r.score = pp.first; + r.x = int(pp.second.xmin); + r.y = int(pp.second.ymin); + r.w = int(pp.second.xmax - pp.second.xmin); + r.h = int(pp.second.ymax - pp.second.ymin); + //copy landmark data + for(int i = 0; i < 10; ++i) { + r.lm[i] = int(pp.second.lm[i]); + } + facesInfo.emplace_back(r); + } + + return facesInfo; +} diff --git a/network_camera_receiver/CMakeLists.txt b/network_camera_receiver/CMakeLists.txt new file mode 100644 index 0000000..e60a6ac --- /dev/null +++ b/network_camera_receiver/CMakeLists.txt @@ -0,0 +1,25 @@ +# ============================================================================ +# network_camera_receiver —— 静态库 +# 仅负责从网络视频流抓取最新帧,不包含任何人脸检测逻辑、不依赖 libfacedetection。 +# ============================================================================ + +add_library(network_camera_receiver STATIC + src/network_camera_receiver.cpp +) + +target_include_directories(network_camera_receiver PUBLIC + ${CMAKE_CURRENT_SOURCE_DIR}/include +) + +# OpenCV 用于视频采集;Threads 用于后台抓帧线程。 +# 设为 PUBLIC,链接本库的目标可传递获得这些依赖。 +target_link_libraries(network_camera_receiver PUBLIC + ${OpenCV_LIBS} + Threads::Threads +) + +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") + target_compile_options(network_camera_receiver PRIVATE -O3) +elseif(MSVC) + target_compile_options(network_camera_receiver PRIVATE /O2) +endif() diff --git a/network_camera_receiver/include/network_camera_receiver.h b/network_camera_receiver/include/network_camera_receiver.h new file mode 100644 index 0000000..9e191e8 --- /dev/null +++ b/network_camera_receiver/include/network_camera_receiver.h @@ -0,0 +1,47 @@ +/* + * @Author: Liu zhenyu + * @Description: 网络摄像头接收器(重构版) + * 仅负责从视频流抓取最新帧,不做任何检测/显示。 + * 主程序通过 getLatestFrame() 拉取最新帧后自行处理。 + */ + +#ifndef NETWORK_CAMERA_RECEIVER_H +#define NETWORK_CAMERA_RECEIVER_H + +#include +#include +#include +#include +#include + +class NetworkCameraReceiver { +public: + NetworkCameraReceiver(const std::string& host_ip, int port = 5000); + ~NetworkCameraReceiver(); + + // 打开视频流 + bool connect(); + // 启动后台抓帧线程(不阻塞) + void start(); + // 停止抓帧线程并 join + void stop(); + // 取最新帧(深拷贝到 out);自上次取帧后若无新帧则返回 false + bool getLatestFrame(cv::Mat& out); + // 视频流是否已打开 + bool isOpened() const; + +private: + // 后台抓帧循环 + void captureLoop(); + + std::string stream_url; + cv::VideoCapture cap; + + std::thread capture_thread; + std::mutex mtx; // 保护 latest_frame + cv::Mat latest_frame; // 最新一帧 + std::atomic has_new_frame{false}; + std::atomic running{false}; +}; + +#endif // NETWORK_CAMERA_RECEIVER_H diff --git a/network_camera_receiver/src/network_camera_receiver.cpp b/network_camera_receiver/src/network_camera_receiver.cpp new file mode 100644 index 0000000..39fe617 --- /dev/null +++ b/network_camera_receiver/src/network_camera_receiver.cpp @@ -0,0 +1,73 @@ +/* + * @Author: Liu zhenyu + * @Description: 网络摄像头接收器(重构版)实现 + * 后台线程持续抓帧并更新最新帧缓冲;主线程按需拉取。 + */ + +#include "network_camera_receiver.h" +#include +#include + +NetworkCameraReceiver::NetworkCameraReceiver(const std::string& host_ip, int port) { + stream_url = "http://" + host_ip + ":" + std::to_string(port) + "/video"; +} + +NetworkCameraReceiver::~NetworkCameraReceiver() { + stop(); + if (cap.isOpened()) cap.release(); +} + +bool NetworkCameraReceiver::connect() { + std::cout << "尝试连接到视频流: " << stream_url << std::endl; + cap.open(stream_url); + if (!cap.isOpened()) { + std::cerr << "无法打开视频流: " << stream_url << std::endl; + return false; + } + std::cout << "视频流连接成功。" << std::endl; + return true; +} + +bool NetworkCameraReceiver::isOpened() const { + return cap.isOpened(); +} + +void NetworkCameraReceiver::start() { + // 已在运行则直接返回 + if (running.exchange(true)) return; + capture_thread = std::thread(&NetworkCameraReceiver::captureLoop, this); +} + +void NetworkCameraReceiver::stop() { + // 未运行则直接返回 + if (!running.exchange(false)) return; + if (capture_thread.joinable()) capture_thread.join(); +} + +void NetworkCameraReceiver::captureLoop() { + cv::Mat frame; + while (running.load()) { + cap >> frame; + if (frame.empty()) { + // 流暂未就绪或读取失败,稍作等待避免空转占满 CPU + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + continue; + } + { + std::lock_guard lock(mtx); + // 仅保留最新一帧,旧帧直接丢弃 + frame.copyTo(latest_frame); + } + has_new_frame.store(true); + } +} + +bool NetworkCameraReceiver::getLatestFrame(cv::Mat& out) { + if (!has_new_frame.load()) return false; + // 先清标记:若在此期间后台又写入新帧,标记会被再次置 true,下一轮可取到 + has_new_frame.store(false); + std::lock_guard lock(mtx); + if (latest_frame.empty()) return false; + latest_frame.copyTo(out); + return true; +} diff --git a/resources/test.jpg b/resources/test.jpg new file mode 100644 index 0000000..47edeaa Binary files /dev/null and b/resources/test.jpg differ