blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
b6d554fef4fb15d0682a95140860ef430e7a6507
166729f27064d7565dac923450bd41c2fe6eb7a4
/logdevice/lib/ClientProcessor.h
08ea450b74105ff94fe7a2a7d1baeff5eb3410f1
[ "BSD-3-Clause" ]
permissive
abhishekg785/LogDevice
742e7bd6bf3177056774346c8095b43a7fe82c79
060da71ef84b61f3371115ed352a7ee7b07ba9e2
refs/heads/master
2020-04-17T05:26:15.201210
2019-01-17T14:18:09
2019-01-17T14:23:57
166,278,849
1
0
NOASSERTION
2019-01-17T18:53:23
2019-01-17T18:53:22
null
UTF-8
C++
false
false
955
h
/** * Copyright (c) 2017-present, Facebook, Inc. and its affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <memory> #include <utility> #include "logdevice/common/Processor.h" /** * @file Subclass of Processor containing state specific to clients, also * spawning ClientWorker instances instead of plain Worker. */ namespace facebook { namespace logdevice { class ClientProcessor : public Processor { public: // Inherit Processor's protected constructor using Processor::Processor; template <typename... Args> static std::shared_ptr<ClientProcessor> create(Args&&... args) { auto p = std::make_shared<ClientProcessor>(std::forward<Args>(args)...); p->init(); return p; } Worker* createWorker(worker_id_t i, WorkerType type) override; }; }} // namespace facebook::logdevice
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
f69d6f41af4a4e55ec7a1403a9d7a7bdddc4a15c
92c4eb7b4e66e82fda6684d7c98a6a66203d930a
/src/sean/simple-tests/echo_client.cc
5235df168f9adf6dac047e2a878a30ba346d9b44
[]
no_license
grouptheory/SEAN
5ea2ab3606898d842b36d5c4941a5685cda529d9
6aa7d7a81a6f71a5f2a4f52f15d8e50b863f05b4
refs/heads/master
2020-03-16T23:15:51.392537
2018-05-11T17:49:18
2018-05-11T17:49:18
133,071,079
0
0
null
null
null
null
UTF-8
C++
false
false
7,368
cc
// -*- C++ -*- // +++++++++++++++ // S E A N --- Signalling Entity for ATM Networks --- // +++++++++++++++ // Version: 1.0.1 // // Copyright (c) 1998 // Naval Research Laboratory (NRL/CCS) // and the // Defense Advanced Research Projects Agency (DARPA) // // All Rights Reserved. // // Permission to use, copy, and modify this software and its // documentation is hereby granted, provided that both the copyright notice and // this permission notice appear in all copies of the software, derivative // works or modified versions, and any portions thereof, and that both notices // appear in supporting documentation. // // NRL AND DARPA ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND // DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM // THE USE OF THIS SOFTWARE. // // NRL and DARPA request users of this software to return modifications, // improvements or extensions that they make to: // // sean-dev@cmf.nrl.navy.mil // -or- // Naval Research Laboratory, Code 5590 // Center for Computation Science // Washington, D.C. 20375 // // and grant NRL and DARPA the rights to redistribute these changes in // future upgrades. // // -*- C++ -*- #ifndef LINT static char const _echo_client_cc_rcsid_[] = "$Id: echo_client.cc,v 1.11 1998/08/06 04:06:21 bilal Exp $"; #endif #include <common/cprototypes.h> #include <FW/basics/Conduit.h> #include <sean/daemon/HostFile.h> #include "PrintFunctions.h" #include "echo_client.h" #include "EchoService.h" #ifdef ECHO_S #define SERVICE_ECHO true #else #define SERVICE_ECHO false #endif echo_client::echo_client(ATM_Interface & interface, double stop_time, char *called_party) : BaseClient("echo_client", interface, called_party), _call_active(false), _call(0) { if (stop_time == -1.0) stop_time = 10.0; RegisterPeriodicCallback( 666, stop_time ); } echo_client::~echo_client() { } void echo_client::Call_Active(ATM_Call & call) { diag(_diag_key, DIAG_INFO, "The call has become active ...\n"); _call = (Outgoing_ATM_Call *)&call; _call_active = true; // data processing callback RegisterPeriodicCallback( 100, 1.0 ); } void echo_client::Call_Inactive(ATM_Call & call) { if (_call_active) diag(_diag_key, DIAG_INFO, "The call has become inactive, the test was a success. Exiting ...\n"); else diag(_diag_key, DIAG_INFO, "The call has become inactive, the test was a failure. Exiting ...\n"); exit( 1 ); } void echo_client::PeriodicCallback(int code) { u_char buf[1024]; int rd_len = 0; if (code == 666) { diag(_diag_key, DIAG_INFO, "%s has exited normally, the test has failed.\n", _diag_key); exit(0); } else if (code == 100) { if (!_call) return; // write some misc data to the call sprintf((char *)buf, "Lalalalalalalalalalalalalalalalalala"); if ((rd_len = _call->SendData(buf, strlen((char *)buf))) < strlen((char *)buf)) diag(_diag_key, DIAG_INFO, "Error writing data to the call, return code is %d.\n", rd_len); else diag(_diag_key, DIAG_INFO, "Successfully wrote some data to the call: %d.\n", rd_len); } else diag(_diag_key, DIAG_INFO, "%s received an unsupported code %d.\n", _diag_key, code); } void echo_client::Incoming_Data(ATM_Call& call) { DIAG(_diag_key, DIAG_INFO, cout << endl; cout << _diag_key << " (Info): "; cout << "Incoming Data to BHLI #"; PrintBHLIUser(call); cout << endl; ); int bytes_expected = 0; int rd_len = -1; u_char *buf = 0; while ((bytes_expected = call.Next_PDU_Length()) > 0) { // read and write data to the call buf = new u_char[bytes_expected]; if ((rd_len = _call->RecvData(buf, bytes_expected)) < 0) diag(_diag_key, DIAG_INFO, "Error reading from the call, return code is %d.\n", rd_len); else if (rd_len > 0) { // Print out the data to the screen cout << "Expected: " << bytes_expected << endl; cout << "Read : " << rd_len << endl; cout << "Received '"; for (int i = 0; i < rd_len; i++) cout << hex << (int)buf[i] << " "; cout << "'" << dec << endl; } } } void Usage(char *name) { cerr << "usage: " << name << " s my-name [host-file [stoptime [visualizer-pipe]]]" << endl; cerr << "usage: " << name << " c my-name server-name [host-file [stoptime [visualizer-pipe]]]" << endl; } int StartClient(int argc, char **argv) { int answer = 0; double stop_time = 10.0; if (argc >= 4) { char * host_file_name = "../daemon/host.file"; if ((argc >= 5) && (strlen(argv[4]) > 0)) host_file_name = argv[4]; if (argc >= 6) stop_time = atof(argv[5]); HostFile name_service(host_file_name); int port = name_service.get_port_byname(argv[2]); if (port > 0) { ATM_Interface &interface = Open_ATM_Interface("/dev/foo", port); echo_client *caller = 0; char *called_party = 0; called_party = name_service.get_nsap_byname(argv[3]); if (called_party != 0) { cout << "called party name = " << argv[3] << " ATM Address = " << called_party << endl; caller = new echo_client(interface, stop_time, called_party); interface.Associate_Controller(*caller); if (argc >= 7) { cout << "vispipe = " << argv[6] << endl; VisPipe(argv[6]); } else { cout << "vispipe = echo_client_client.output" << endl; VisPipe("echo_client_client.output"); } SEAN_Run(); } else { cout << argv[0] << ": Can't find host " << argv[3] << endl; answer = 1; } } else { cout << argv[0] << ": Can't find host " << argv[2] << " or can't find port file" << endl; answer = 1; } } else { Usage(argv[0]); answer = 1; } return answer; } int StartServer(int argc, char **argv) { int answer = 0; double stop_time = 10.0; char * host_file_name = "../daemon/host.file"; if ((argc >= 4) && (strlen(argv[3]) > 0)) host_file_name = argv[3]; if (argc >= 5) stop_time = atof(argv[4]); HostFile name_service(host_file_name); int port = name_service.get_port_byname(argv[2]); if (port > 0) { ATM_Interface &interface = Open_ATM_Interface("/dev/una0", port); EchoService *service = new EchoService("echo_client", interface, stop_time); interface.Associate_Controller(*service); if (argc >= 5) { cout << "vispipe = " << argv[5] << endl; VisPipe(argv[4]); } else { cout << "vispipe = echo_client_server.output" << endl; VisPipe("echo_client_server.output"); } SEAN_Run(); } else { cout << argv[0] << ": Can't find host " << argv[2] << " or can't find port file" << endl; answer = 1; } return answer; } int main(int argc, char **argv) { int answer = 0; EchoService * service = 0; echo_client * caller = 0; DiagLevel("api", DIAG_DEBUG); DiagLevel("echo_client", DIAG_DEBUG); DiagLevel("ipc", DIAG_ENV); if (argc >= 3) { if (argv[1][0] == 'c') answer = StartClient(argc, argv); else if (argv[1][0] == 's') answer = StartServer(argc, argv); else { Usage(argv[0]); answer = 1; } } else { Usage(argv[0]); answer = 1; } return answer; }
[ "grouptheory@gmail.com" ]
grouptheory@gmail.com
5a87ec4fee16ddf28e25674cf2d1524e5b618f08
1706185aa18490859e586df22e0920f5b83f271a
/mayz-src/DerivMaker.h
e09e73a87d322d1eafe268b46b42db9509b57865
[ "LicenseRef-scancode-wordnet", "Zlib", "bzip2-1.0.6", "Artistic-1.0", "Apache-2.0" ]
permissive
wuhanlin0810/enju
546e10f217d99347b2b484400651318f9b30f528
d984a630b30b95de16f3b715277e95dc6fbe15b4
refs/heads/master
2022-01-29T13:08:27.202285
2018-06-29T02:15:43
2018-06-29T02:15:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,596
h
/********************************************************************** * * Copyright (c) 2005, Tsujii Laboratory, The University of Tokyo. * All rights reserved. * * @file DerivMaker.h * @version Time-stamp: <2006-11-07 21:50:38 yusuke> * Making derivation by applying inverse schemas * **********************************************************************/ #ifndef MAYZ_DERIV_MAKER_H #define MAYZ_DERIV_MAKER_H #include "mconfig.h" #include "Derivation.h" #include "Tree.h" #include <liblilfes/builtin.h> #include <string> #include <exception> namespace mayz { class DerivMakerException : public std::exception { private: std::string message; public: DerivMakerException( const char* m ) : message( m ) {} DerivMakerException( const std::string& m ) : message( m ) {} virtual ~DerivMakerException() throw () {} const char* what() const throw () { return message.c_str(); } }; class DerivMakerFailure : public std::exception { private: std::string message; public: DerivMakerFailure( const char* m ) : message( m ) {} DerivMakerFailure( const std::string& m ) : message( m ) {} virtual ~DerivMakerFailure() throw () {} const char* what() const throw () { return message.c_str(); } }; class DerivMaker { private: std::vector< std::pair< lilfes::FSP, lilfes::FSP > > tmp_terminals; lilfes::machine* mach; lilfes::procedure* inverse_schema_binary; lilfes::procedure* inverse_schema_unary; lilfes::procedure* lexical_constraints; lilfes::procedure* root_constraints; lilfes::procedure* fail_point_inverse_schema_binary; lilfes::procedure* fail_point_inverse_schema_unary; lilfes::procedure* fail_point_lexical_constraints; lilfes::procedure* fail_point_root_constraints; size_t num_all; size_t num_success; //size_t num_fail; protected: virtual bool convertUnary( lilfes::FSP schema_name, lilfes::FSP mother_sign, Tree dtr_tree, Derivation deriv ); virtual bool convertBinary( lilfes::FSP schema_name, lilfes::FSP mother_sign, Tree left_tree, Tree right_tree, Derivation deriv ); virtual void convertTerminal( lilfes::FSP word, lilfes::FSP sign ); virtual bool convert_( Tree, Derivation deriv ); public: DerivMaker( lilfes::machine* m ) : mach( m ), num_all( 0 ), num_success( 0 ) {} virtual ~DerivMaker() {} virtual void initialize(); virtual void convert( Tree tree, Derivation derivation ); virtual void showStatistics( std::ostream& os, const std::string& indent = "" ) const; }; } #endif // MAYZ_DERIV_MAKER_H
[ "yusuke@nii.ac.jp" ]
yusuke@nii.ac.jp
52a4dae9c1805b9321c81eca61d6a72e268214a6
a034e67a3a37e9aa268961ec2be3a31aaac44fb3
/src/cloneKuGou/Utils/WndShadow.cpp
63b1437ca43717f937840e2e6a5e7e255e9d3898
[]
no_license
15831944/DuiLib-examples
d2a90b73e494a6342d7f08f868b716ab979abd13
b49c75cd9621e6e5e3a7ed3ada5167385fc887de
refs/heads/master
2021-07-25T20:38:30.403638
2017-11-02T00:31:19
2017-11-02T00:31:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,527
cpp
// WndShadow.h : header file // // Version 0.1 // // Copyright (c) 2006 Perry Zhu, All Rights Reserved. // // mailto:perry@live.com // // // This source file may be redistributed unmodified by any means PROVIDING // it is NOT sold for profit without the authors expressed written // consent, and providing that this notice and the author's name and all // copyright notices remain intact. This software is by no means to be // included as part of any third party components library, or as part any // development solution that offers MFC extensions that are sold for profit. // // If the source code is used in any commercial applications then a statement // along the lines of: // // "Portions Copyright (c) 2006 Perry Zhu" must be included in the "Startup // Banner", "About Box" or "Printed Documentation". This software is provided // "as is" without express or implied warranty. Use it at your own risk! The // author accepts no liability for any damage/loss of business that this // product may cause. // ///////////////////////////////////////////////////////////////////////////// //**************************************************************************** #include "StdAfx.h" #include "WndShadow.h" #include "math.h" #include "crtdbg.h" // Some extra work to make this work in VC++ 6.0 // walk around the for iterator scope bug of VC++6.0 #ifdef _MSC_VER #if _MSC_VER == 1200 #define for if(false);else for #endif #endif // Some definitions for VC++ 6.0 without newest SDK #ifndef WS_EX_LAYERED #define WS_EX_LAYERED 0x00080000 #endif #ifndef AC_SRC_ALPHA #define AC_SRC_ALPHA 0x01 #endif #ifndef ULW_ALPHA #define ULW_ALPHA 0x00000002 #endif CWndShadow::pfnUpdateLayeredWindow CWndShadow::s_UpdateLayeredWindow = NULL; const TCHAR *strWndClassName = _T("PerryShadowWnd"); HINSTANCE CWndShadow::s_hInstance = (HINSTANCE)INVALID_HANDLE_VALUE; std::map<HWND, CWndShadow *> CWndShadow::s_Shadowmap; CWndShadow::CWndShadow(void) : m_hWnd((HWND)INVALID_HANDLE_VALUE) , m_OriParentProc(NULL) , m_nDarkness(150) , m_nSharpness(5) , m_nSize(0) , m_nxOffset(5) , m_nyOffset(5) , m_Color(RGB(0, 0, 0)) , m_WndSize(0) , m_bUpdate(false) { } CWndShadow::~CWndShadow(void) { } bool CWndShadow::Initialize(HINSTANCE hInstance) { // Should not initiate more than once if (NULL != s_UpdateLayeredWindow) return false; HMODULE hUser32 = GetModuleHandle(_T("USER32.DLL")); s_UpdateLayeredWindow = (pfnUpdateLayeredWindow)GetProcAddress(hUser32, "UpdateLayeredWindow"); // If the import did not succeed, make sure your app can handle it! if (NULL == s_UpdateLayeredWindow) return false; // Store the instance handle s_hInstance = hInstance; // Register window class for shadow window WNDCLASSEX wcex; memset(&wcex, 0, sizeof(wcex)); wcex.cbSize = sizeof(WNDCLASSEX); wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = DefWindowProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = NULL; wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); wcex.lpszMenuName = NULL; wcex.lpszClassName = strWndClassName; wcex.hIconSm = NULL; RegisterClassEx(&wcex); return true; } void CWndShadow::Create(HWND hParentWnd, bool IsWS_CAPTION /*= false*/) { // Do nothing if the system does not support layered windows if (NULL == s_UpdateLayeredWindow) return; // Already initialized _ASSERT(s_hInstance != INVALID_HANDLE_VALUE); // Add parent window - shadow pair to the map _ASSERT(s_Shadowmap.find(hParentWnd) == s_Shadowmap.end()); // Only one shadow for each window s_Shadowmap[hParentWnd] = this; // Create the shadow window LONG styleValue = IsWS_CAPTION ? WS_CAPTION : 0; m_hWnd = CreateWindowEx(WS_EX_LAYERED | WS_EX_TRANSPARENT, strWndClassName, NULL, /*WS_VISIBLE | */styleValue | WS_POPUPWINDOW, CW_USEDEFAULT, 0, 0, 0, hParentWnd, NULL, s_hInstance, NULL); // Determine the initial show state of shadow according to parent window's state LONG lParentStyle = GetWindowLong(hParentWnd, GWL_STYLE); if (!(WS_VISIBLE & lParentStyle)) // Parent invisible m_Status = SS_ENABLED; else if ((WS_MAXIMIZE | WS_MINIMIZE) & lParentStyle) // Parent visible but does not need shadow m_Status = SS_ENABLED | SS_PARENTVISIBLE; else { // Show the shadow m_Status = SS_ENABLED | SS_VISABLE | SS_PARENTVISIBLE; ::ShowWindow(m_hWnd, SW_SHOWNA); Update(hParentWnd); } // Replace the original WndProc of parent window to steal messages m_OriParentProc = GetWindowLong(hParentWnd, GWL_WNDPROC); #pragma warning(disable: 4311) // temporrarily disable the type_cast warning in Win32 SetWindowLong(hParentWnd, GWL_WNDPROC, (LONG)ParentProc); #pragma warning(default: 4311) } LRESULT CALLBACK CWndShadow::ParentProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { _ASSERT(s_Shadowmap.find(hwnd) != s_Shadowmap.end()); // Shadow must have been attached CWndShadow *pThis = s_Shadowmap[hwnd]; switch (uMsg) { case WM_MOVE: if (pThis->m_Status & SS_VISABLE) { RECT WndRect; GetWindowRect(hwnd, &WndRect); SetWindowPos(pThis->m_hWnd, 0, WndRect.left + pThis->m_nxOffset - pThis->m_nSize, WndRect.top + pThis->m_nyOffset - pThis->m_nSize, 0, 0, SWP_NOSIZE | SWP_NOACTIVATE); } break; case WM_SIZE: if (pThis->m_Status & SS_ENABLED) { if (SIZE_MAXIMIZED == wParam || SIZE_MINIMIZED == wParam) { ::ShowWindow(pThis->m_hWnd, SW_HIDE); pThis->m_Status &= ~SS_VISABLE; } else if (pThis->m_Status & SS_PARENTVISIBLE) { // Parent maybe resized even if invisible // Awful! It seems that if the window size was not decreased // the window region would never be updated until WM_PAINT was sent. // So do not Update() until next WM_PAINT is received in this case if (LOWORD(lParam) > LOWORD(pThis->m_WndSize) || HIWORD(lParam) > HIWORD(pThis->m_WndSize)) pThis->m_bUpdate = true; else pThis->Update(hwnd); if (!(pThis->m_Status & SS_VISABLE)) { ::ShowWindow(pThis->m_hWnd, SW_SHOWNA); pThis->m_Status |= SS_VISABLE; } } pThis->m_WndSize = lParam; } break; case WM_PAINT: { if (pThis->m_bUpdate) { pThis->Update(hwnd); pThis->m_bUpdate = false; } //return hr; break; } // In some cases of sizing, the up-right corner of the parent window region would not be properly updated // Update() again when sizing is finished case WM_EXITSIZEMOVE: if (pThis->m_Status & SS_VISABLE) { pThis->Update(hwnd); } break; case WM_SHOWWINDOW: if (pThis->m_Status & SS_ENABLED) { if (!wParam) { // the window is being hidden ::ShowWindow(pThis->m_hWnd, SW_HIDE); pThis->m_Status &= ~(SS_VISABLE | SS_PARENTVISIBLE); } else if (!(pThis->m_Status & SS_PARENTVISIBLE)) { //pThis->Update(hwnd); pThis->m_bUpdate = true; ::ShowWindow(pThis->m_hWnd, SW_SHOWNA); pThis->m_Status |= SS_VISABLE | SS_PARENTVISIBLE; } } break; case WM_DESTROY: DestroyWindow(pThis->m_hWnd); // Destroy the shadow break; case WM_NCDESTROY: s_Shadowmap.erase(hwnd); // Remove this window and shadow from the map break; } #pragma warning(disable: 4312) // temporrarily disable the type_cast warning in Win32 // Call the default(original) window procedure for other messages or messages processed but not returned return ((WNDPROC)pThis->m_OriParentProc)(hwnd, uMsg, wParam, lParam); #pragma warning(default: 4312) } void CWndShadow::Update(HWND hParent) { //int ShadSize = 5; //int Multi = 100 / ShadSize; RECT WndRect; GetWindowRect(hParent, &WndRect); int nShadWndWid = WndRect.right - WndRect.left + m_nSize * 2; int nShadWndHei = WndRect.bottom - WndRect.top + m_nSize * 2; // Create the alpha blending bitmap BITMAPINFO bmi; // bitmap header ZeroMemory(&bmi, sizeof(BITMAPINFO)); bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); bmi.bmiHeader.biWidth = nShadWndWid; bmi.bmiHeader.biHeight = nShadWndHei; bmi.bmiHeader.biPlanes = 1; bmi.bmiHeader.biBitCount = 32; // four 8-bit components bmi.bmiHeader.biCompression = BI_RGB; bmi.bmiHeader.biSizeImage = nShadWndWid * nShadWndHei * 4; BYTE *pvBits; // pointer to DIB section HBITMAP hbitmap = CreateDIBSection(NULL, &bmi, DIB_RGB_COLORS, (void **)&pvBits, NULL, 0); ZeroMemory(pvBits, bmi.bmiHeader.biSizeImage); MakeShadow((UINT32 *)pvBits, hParent, &WndRect); HDC hMemDC = CreateCompatibleDC(NULL); HBITMAP hOriBmp = (HBITMAP)SelectObject(hMemDC, hbitmap); POINT ptDst = {WndRect.left + m_nxOffset - m_nSize, WndRect.top + m_nyOffset - m_nSize}; POINT ptSrc = {0, 0}; SIZE WndSize = {nShadWndWid, nShadWndHei}; BLENDFUNCTION blendPixelFunction = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA }; MoveWindow(m_hWnd, ptDst.x, ptDst.y, nShadWndWid, nShadWndHei, FALSE); BOOL bRet = s_UpdateLayeredWindow(m_hWnd, NULL, &ptDst, &WndSize, hMemDC, &ptSrc, 0, &blendPixelFunction, ULW_ALPHA); _ASSERT(bRet); // something was wrong.... // Delete used resources SelectObject(hMemDC, hOriBmp); DeleteObject(hbitmap); DeleteDC(hMemDC); } void CWndShadow::MakeShadow(UINT32 *pShadBits, HWND hParent, RECT *rcParent) { // The shadow algorithm: // Get the region of parent window, // Apply morphologic erosion to shrink it into the size (ShadowWndSize - Sharpness) // Apply modified (with blur effect) morphologic dilation to make the blurred border // The algorithm is optimized by assuming parent window is just "one piece" and without "wholes" on it // Get the region of parent window, HRGN hParentRgn = CreateRectRgn(0, 0, 0, 0); GetWindowRgn(hParent, hParentRgn); // Determine the Start and end point of each horizontal scan line SIZE szParent = {rcParent->right - rcParent->left, rcParent->bottom - rcParent->top}; SIZE szShadow = {szParent.cx + 2 * m_nSize, szParent.cy + 2 * m_nSize}; // Extra 2 lines (set to be empty) in ptAnchors are used in dilation int nAnchors = max(szParent.cy, szShadow.cy); // # of anchor points pares int (*ptAnchors)[2] = new int[nAnchors + 2][2]; int (*ptAnchorsOri)[2] = new int[szParent.cy][2]; // anchor points, will not modify during erosion ptAnchors[0][0] = szParent.cx; ptAnchors[0][1] = 0; ptAnchors[nAnchors + 1][0] = szParent.cx; ptAnchors[nAnchors + 1][1] = 0; if (m_nSize > 0) { // Put the parent window anchors at the center for (int i = 0; i < m_nSize; i++) { ptAnchors[i + 1][0] = szParent.cx; ptAnchors[i + 1][1] = 0; ptAnchors[szShadow.cy - i][0] = szParent.cx; ptAnchors[szShadow.cy - i][1] = 0; } ptAnchors += m_nSize; } for (int i = 0; i < szParent.cy; i++) { // find start point int j; for (j = 0; j < szParent.cx; j++) { if (PtInRegion(hParentRgn, j, i)) { ptAnchors[i + 1][0] = j + m_nSize; ptAnchorsOri[i][0] = j; break; } } if (j >= szParent.cx) { // Start point not found ptAnchors[i + 1][0] = szParent.cx; ptAnchorsOri[i][1] = 0; ptAnchors[i + 1][0] = szParent.cx; ptAnchorsOri[i][1] = 0; } else { // find end point for (j = szParent.cx - 1; j >= ptAnchors[i + 1][0]; j--) { if (PtInRegion(hParentRgn, j, i)) { ptAnchors[i + 1][1] = j + 1 + m_nSize; ptAnchorsOri[i][1] = j + 1; break; } } } } if (m_nSize > 0) ptAnchors -= m_nSize; // Restore pos of ptAnchors for erosion int (*ptAnchorsTmp)[2] = new int[nAnchors + 2][2]; // Store the result of erosion // First and last line should be empty ptAnchorsTmp[0][0] = szParent.cx; ptAnchorsTmp[0][1] = 0; ptAnchorsTmp[nAnchors + 1][0] = szParent.cx; ptAnchorsTmp[nAnchors + 1][1] = 0; int nEroTimes = 0; // morphologic erosion for (int i = 0; i < m_nSharpness - m_nSize; i++) { nEroTimes++; //ptAnchorsTmp[1][0] = szParent.cx; //ptAnchorsTmp[1][1] = 0; //ptAnchorsTmp[szParent.cy + 1][0] = szParent.cx; //ptAnchorsTmp[szParent.cy + 1][1] = 0; for (int j = 1; j < nAnchors + 1; j++) { ptAnchorsTmp[j][0] = max(ptAnchors[j - 1][0], max(ptAnchors[j][0], ptAnchors[j + 1][0])) + 1; ptAnchorsTmp[j][1] = min(ptAnchors[j - 1][1], min(ptAnchors[j][1], ptAnchors[j + 1][1])) - 1; } // Exchange ptAnchors and ptAnchorsTmp; int (*ptAnchorsXange)[2] = ptAnchorsTmp; ptAnchorsTmp = ptAnchors; ptAnchors = ptAnchorsXange; } // morphologic dilation ptAnchors += (m_nSize < 0 ? -m_nSize : 0) + 1; // now coordinates in ptAnchors are same as in shadow window // Generate the kernel int nKernelSize = m_nSize > m_nSharpness ? m_nSize : m_nSharpness; int nCenterSize = m_nSize > m_nSharpness ? (m_nSize - m_nSharpness) : 0; UINT32 *pKernel = new UINT32[(2 * nKernelSize + 1) * (2 * nKernelSize + 1)]; UINT32 *pKernelIter = pKernel; for (int i = 0; i <= 2 * nKernelSize; i++) { for (int j = 0; j <= 2 * nKernelSize; j++) { double dLength = sqrt((i - nKernelSize) * (i - nKernelSize) + (j - nKernelSize) * (double)(j - nKernelSize)); if (dLength < nCenterSize) *pKernelIter = m_nDarkness << 24 | PreMultiply(m_Color, m_nDarkness); else if (dLength <= nKernelSize) { UINT32 nFactor = ((UINT32)((1 - (dLength - nCenterSize) / (m_nSharpness + 1)) * m_nDarkness)); *pKernelIter = nFactor << 24 | PreMultiply(m_Color, nFactor); } else *pKernelIter = 0; //TRACE("%d ", *pKernelIter >> 24); pKernelIter ++; } //TRACE("\n"); } // Generate blurred border for (int i = nKernelSize; i < szShadow.cy - nKernelSize; i++) { int j; if (ptAnchors[i][0] < ptAnchors[i][1]) { // Start of line for (j = ptAnchors[i][0]; j < min(max(ptAnchors[i - 1][0], ptAnchors[i + 1][0]) + 1, ptAnchors[i][1]); j++) { for (int k = 0; k <= 2 * nKernelSize; k++) { UINT32 *pPixel = pShadBits + (szShadow.cy - i - 1 + nKernelSize - k) * szShadow.cx + j - nKernelSize; UINT32 *pKernelPixel = pKernel + k * (2 * nKernelSize + 1); for (int l = 0; l <= 2 * nKernelSize; l++) { if (*pPixel < *pKernelPixel) *pPixel = *pKernelPixel; pPixel++; pKernelPixel++; } } } // for() start of line // End of line for (j = max(j, min(ptAnchors[i - 1][1], ptAnchors[i + 1][1]) - 1); j < ptAnchors[i][1]; j++) { for (int k = 0; k <= 2 * nKernelSize; k++) { UINT32 *pPixel = pShadBits + (szShadow.cy - i - 1 + nKernelSize - k) * szShadow.cx + j - nKernelSize; UINT32 *pKernelPixel = pKernel + k * (2 * nKernelSize + 1); for (int l = 0; l <= 2 * nKernelSize; l++) { if (*pPixel < *pKernelPixel) *pPixel = *pKernelPixel; pPixel++; pKernelPixel++; } } } // for() end of line } } // for() Generate blurred border // Erase unwanted parts and complement missing UINT32 clCenter = m_nDarkness << 24 | PreMultiply(m_Color, m_nDarkness); for (int i = min(nKernelSize, max(m_nSize - m_nyOffset, 0)); i < max(szShadow.cy - nKernelSize, min(szParent.cy + m_nSize - m_nyOffset, szParent.cy + 2 * m_nSize)); i++) { UINT32 *pLine = pShadBits + (szShadow.cy - i - 1) * szShadow.cx; if (i - m_nSize + m_nyOffset < 0 || i - m_nSize + m_nyOffset >= szParent.cy) { // Line is not covered by parent window for (int j = ptAnchors[i][0]; j < ptAnchors[i][1]; j++) { *(pLine + j) = clCenter; } } else { for (int j = ptAnchors[i][0]; j < min(ptAnchorsOri[i - m_nSize + m_nyOffset][0] + m_nSize - m_nxOffset, ptAnchors[i][1]); j++) *(pLine + j) = clCenter; for (int j = max(ptAnchorsOri[i - m_nSize + m_nyOffset][0] + m_nSize - m_nxOffset, 0); j < min(ptAnchorsOri[i - m_nSize + m_nyOffset][1] + m_nSize - m_nxOffset, szShadow.cx); j++) *(pLine + j) = 0; for (int j = max(ptAnchorsOri[i - m_nSize + m_nyOffset][1] + m_nSize - m_nxOffset, ptAnchors[i][0]); j < ptAnchors[i][1]; j++) *(pLine + j) = clCenter; } } // Delete used resources delete[](ptAnchors - (m_nSize < 0 ? -m_nSize : 0) - 1); delete[] ptAnchorsTmp; delete[] ptAnchorsOri; delete[] pKernel; DeleteObject(hParentRgn); } bool CWndShadow::SetSize(int NewSize) { if (NewSize > 20 || NewSize < -20) return false; m_nSize = (signed char)NewSize; if (SS_VISABLE & m_Status) Update(GetParent(m_hWnd)); return true; } bool CWndShadow::SetSharpness(unsigned int NewSharpness) { if (NewSharpness > 20) return false; m_nSharpness = (unsigned char)NewSharpness; if (SS_VISABLE & m_Status) Update(GetParent(m_hWnd)); return true; } bool CWndShadow::SetDarkness(unsigned int NewDarkness) { if (NewDarkness > 255) return false; m_nDarkness = (unsigned char)NewDarkness; if (SS_VISABLE & m_Status) Update(GetParent(m_hWnd)); return true; } bool CWndShadow::SetPosition(int NewXOffset, int NewYOffset) { if (NewXOffset > 20 || NewXOffset < -20 || NewYOffset > 20 || NewYOffset < -20) return false; m_nxOffset = (signed char)NewXOffset; m_nyOffset = (signed char)NewYOffset; if (SS_VISABLE & m_Status) Update(GetParent(m_hWnd)); return true; } bool CWndShadow::SetColor(COLORREF NewColor) { m_Color = NewColor; if (SS_VISABLE & m_Status) Update(GetParent(m_hWnd)); return true; }
[ "wyrover@gmail.com" ]
wyrover@gmail.com
11a1acc057058464e22d710304b38bfc865fe277
c0388b728d92f87bff643e23440f281443e9dd2b
/src/util/DlbException.h
33ee7c549efe7fc56457852eaf4dafd3568b525d
[]
no_license
DanLB/TowerDefense
00dc113ad9863e88e4f51317fa534f33c9f31e93
5ad6793bed1a8ae4ce9cad15abc62c523d58ce7b
refs/heads/master
2021-01-13T02:37:39.901070
2015-03-25T01:00:31
2015-03-25T01:00:31
32,224,524
0
0
null
null
null
null
UTF-8
C++
false
false
376
h
#ifndef DLB_EXCEPTION_H #define DLB_EXCEPTION_H #include <exception> #include <string> namespace dlb { class DlbException : public std::exception { private: std::string message; public: DlbException(std::string message); ~DlbException() = default; virtual const char* what() const throw(); }; } #endif // DLB_EXCEPTION_H
[ "dabick@gmail.com" ]
dabick@gmail.com
af9f302accdb3dce63965c365ecbfd13f3e7567e
1a7c96e5e67b81b04eb62ca7a7d26d89986ba6c7
/vm/vm/main/cached/Object-implem-decl-after.hh
7fa0a65e0f630bceeaedfa4c6ba969d48e935415
[ "BSD-2-Clause" ]
permissive
mozart/mozart2
3b914397aaf5ec5c40036d8eaa19260cb490420c
cb42466b1f1369233d72ade062ec8af1f8f35274
refs/heads/master
2023-08-16T06:12:08.529224
2022-09-02T12:07:47
2022-09-02T12:07:47
2,916,838
452
91
BSD-2-Clause
2023-04-28T16:17:31
2011-12-05T14:02:43
Oz
UTF-8
C++
false
false
2,448
hh
template <> class TypeInfoOf<Object>: public TypeInfo { static constexpr UUID uuid() { return UUID(); } public: TypeInfoOf() : TypeInfo("Object", uuid(), false, false, false, sbTokenEq, 0) {} static const TypeInfoOf<Object>* const instance() { return &RawType<Object>::rawType; } static Type type() { return Type(instance()); } atom_t getTypeAtom(VM vm) const { return Object::getTypeAtom(vm); } inline void printReprToStream(VM vm, RichNode self, std::ostream& out, int depth, int width) const; inline void gCollect(GC gc, RichNode from, StableNode& to) const; inline void gCollect(GC gc, RichNode from, UnstableNode& to) const; inline void sClone(SC sc, RichNode from, StableNode& to) const; inline void sClone(SC sc, RichNode from, UnstableNode& to) const; }; template <> class TypedRichNode<Object>: public BaseTypedRichNode { public: explicit TypedRichNode(RichNode self) : BaseTypedRichNode(self) {} inline size_t getArraySize(); inline StaticArray<class mozart::UnstableNode> getElementsArray(); inline class mozart::UnstableNode& getElements(size_t i); inline class mozart::Space * home(); inline size_t getArraySizeImpl(); inline class mozart::StableNode * getFeaturesRecord(); inline bool lookupFeature(VM vm, class mozart::RichNode feature, nullable<class mozart::UnstableNode &> value); inline bool lookupFeature(VM vm, nativeint feature, nullable<class mozart::UnstableNode &> value); inline bool isChunk(VM vm); inline bool isObject(VM vm); inline class mozart::UnstableNode getClass(VM vm); inline class mozart::UnstableNode attrGet(VM vm, class mozart::RichNode attribute); inline void attrPut(VM vm, class mozart::RichNode attribute, class mozart::RichNode value); inline class mozart::UnstableNode attrExchange(VM vm, class mozart::RichNode attribute, class mozart::RichNode newValue); inline bool isCallable(VM vm); inline bool isProcedure(VM vm); inline size_t procedureArity(VM vm); inline void getCallInfo(VM vm, size_t & arity, ProgramCounter & start, size_t & Xcount, StaticArray<class mozart::StableNode> & Gs, StaticArray<class mozart::StableNode> & Ks); inline void getDebugInfo(VM vm, atom_t & printName, class mozart::UnstableNode & debugData); inline void printReprToStream(VM vm, std::ostream & out, int depth, int width); };
[ "37216245+azarzadavila@users.noreply.github.com" ]
37216245+azarzadavila@users.noreply.github.com
3d687e232ffbc5741b29a608812ff52625a25584
2a907be0d3a88281a75774a95a2d0d3b80e8e2c4
/WorldInterfacing/Arrive.h
2a918d09993d166959baeba11475079410894eb1
[]
no_license
SpaceFarerOrg/DesicionMakingLabb
8d0f2bf6f605e69ff0ca8ece8fe134fb2932cf05
0e746a0def18fdd9346646c2d22dbb293d640539
refs/heads/master
2020-03-23T05:17:12.938612
2019-03-23T20:26:58
2019-03-23T20:26:58
141,135,006
0
0
null
null
null
null
UTF-8
C++
false
false
350
h
#pragma once #include "SteeringBehaviour.h" #include "PollingStation.h" class CArrive : public CSteeringBehaviour { public: CArrive(CPollingStation* aPollingStation) : CSteeringBehaviour(aPollingStation) { mySlowingRadius = 50.f; } const sf::Vector2f& Update(CSteeringBehaviour::SSteeringData aData) override; private: float mySlowingRadius; };
[ "kasper.esbjornsson@gmail.com" ]
kasper.esbjornsson@gmail.com
095df1032c1f8082e73d5240a406c8ad08f3f304
015960ea3b83853d27147c224041d70ced9c9347
/BoggleSolver/Source/Timer.cpp
01623c05c8cca30644b2a88fadbe26084e3236a9
[]
no_license
TomasMonkevic/BoggleSolver
341ea8781db87655927cb9b2ceb7ae52a5d48e78
549f444291cbd662a7ef26688a5dafa89fcee3ef
refs/heads/master
2021-01-06T19:05:37.205240
2018-08-30T09:31:49
2018-08-30T09:31:49
241,452,315
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
#include "../Include/Timer.h" using namespace std::chrono; namespace TomasMo { Timer::Timer() : _start(Clock::now()) { } void Timer::Reset() { _start = Clock::now(); } long long Timer::ElapsedMs() { Clock::time_point finish = Clock::now(); milliseconds elapsed = duration_cast<milliseconds>(finish - _start); return elapsed.count(); } }
[ "tomas.monkevic97@gmail.com" ]
tomas.monkevic97@gmail.com
3e96fda207d37ff4a129b76fdf3fd2573541810c
a4a2460f1fc9e2117fd36ccb1e4393413bcc48b7
/check1/check1.cpp
c7095aff600c240b5b6f4a04f177ea4d91f9a8d0
[ "MIT" ]
permissive
amypathum/study
22088cc4fffee5c35cdcadfb87b11b8e0d169b0f
c8a5881ed140a66c0423ac19e3141fa5b509713a
refs/heads/master
2020-04-21T05:55:21.510027
2019-02-06T04:11:45
2019-02-06T04:11:45
169,353,155
0
0
null
null
null
null
UTF-8
C++
false
false
915
cpp
#include <iostream> #include <cstdlib> #include <string> #include <sstream> #include <vector> #include <algorithm> using namespace std; void print(const int& n) { std::cout << n << ' '; }; int main() { int myints[] = {10,20,30,30,20,10,10,20}; vector<int> v(myints,myints+8); // 10 20 30 30 20 10 10 20 sort(v.begin(), v.end()); // 10 10 10 20 20 20 30 30 vector<int>::iterator low,up; low = std::lower_bound (v.begin(), v.end(), 20); up = std::upper_bound (v.begin(), v.end(), 20); cout << "lower_bound at position " << (low - v.begin()) << '\n'; cout << "upper_bound at position " << (up - v.begin()) << '\n'; cout << *low << endl; // std::for_each(v.begin(), v.end(), print); // cout << endl; // std::reverse(v.begin(),v.end()); // std::for_each(v.begin(), v.end(), print); // cout << endl; return 0; }
[ "amypathum@aol.com" ]
amypathum@aol.com
0d0aa3b83927b4f22a6a0b48247c21f949aca146
bd4288a7931a5416553a813f86e431f383337c1f
/Code/BasicFilters/src/sitkCenteredTransformInitializerFilter.cxx
8c8f019c5825f57eaaeea0310db6fdf4161545db
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
aihardman/SimpleElastix
698b52d9e6a4b5d514df1b88670c012936c230e6
9dfa8cb7c99e78b36f64bb6600b084b70960f166
refs/heads/master
2020-03-15T00:27:15.715690
2017-11-08T17:23:19
2017-11-08T17:23:19
131,868,751
1
0
null
2018-05-02T15:14:49
2018-05-02T15:14:49
null
UTF-8
C++
false
false
5,610
cxx
/*========================================================================= * * Copyright Insight Software Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #include "itkImage.h" #include "itkVectorImage.h" #include "itkLabelMap.h" #include "itkLabelObject.h" #include "itkNumericTraits.h" #include "itkNumericTraitsVariableLengthVectorPixel.h" #include "itkVectorIndexSelectionCastImageFilter.h" #include "itkComposeImageFilter.h" #include "sitkCenteredTransformInitializerFilter.h" #include "itkCenteredTransformInitializer.h" // Additional include files #include "sitkTransform.h" // Done with additional include files namespace itk { namespace simple { //----------------------------------------------------------------------------- // // Default constructor that initializes parameters // CenteredTransformInitializerFilter::CenteredTransformInitializerFilter () { this->m_OperationMode = itk::simple::CenteredTransformInitializerFilter::MOMENTS; this->m_MemberFactory.reset( new detail::MemberFunctionFactory<MemberFunctionType>( this ) ); this->m_MemberFactory->RegisterMemberFunctions< PixelIDTypeList, 3 > (); this->m_MemberFactory->RegisterMemberFunctions< PixelIDTypeList, 2 > (); } // // Destructor // CenteredTransformInitializerFilter::~CenteredTransformInitializerFilter () { } // // ToString // std::string CenteredTransformInitializerFilter::ToString() const { std::ostringstream out; out << "itk::simple::CenteredTransformInitializerFilter\n"; out << " OperationMode: "; this->ToStringHelper(out, this->m_OperationMode); out << std::endl; out << ProcessObject::ToString(); return out.str(); } // // Execute // Transform CenteredTransformInitializerFilter::Execute ( const Image & fixedImage, const Image & movingImage, const Transform & transform, CenteredTransformInitializerFilter::OperationModeType operationMode ) { this->SetOperationMode ( operationMode ); return this->Execute ( fixedImage, movingImage, transform ); } Transform CenteredTransformInitializerFilter::Execute ( const Image & fixedImage, const Image & movingImage, const Transform & transform ) { PixelIDValueEnum type = fixedImage.GetPixelID(); unsigned int dimension = fixedImage.GetDimension(); if ( type != movingImage.GetPixelIDValue() || dimension != movingImage.GetDimension() ) { sitkExceptionMacro ( "Moving Image parameter for " << this->GetName() << " doesn't match type or dimension!" ); } if ( dimension != transform.GetDimension() ) { sitkExceptionMacro( "Transform parameter for " << this->GetName() << " doesn't match dimension!" ); } return this->m_MemberFactory->GetMemberFunction( type, dimension )( &fixedImage, &movingImage, &transform ); } //----------------------------------------------------------------------------- // // Custom Casts // namespace { } //----------------------------------------------------------------------------- // // ExecuteInternal // template <class TImageType> Transform CenteredTransformInitializerFilter::ExecuteInternal ( const Image * inFixedImage, const Image * inMovingImage, const Transform * inTransform ) { typedef itk::MatrixOffsetTransformBase< double, TImageType::ImageDimension, TImageType::ImageDimension > TransformType; typedef itk::CenteredTransformInitializer< TransformType, TImageType, TImageType> FilterType; // Set up the ITK filter typename FilterType::Pointer filter = FilterType::New(); assert( inFixedImage != NULL ); filter->SetFixedImage( this->CastImageToITK<typename FilterType::FixedImageType>(*inFixedImage) ); assert( inMovingImage != NULL ); typename FilterType::MovingImageType::ConstPointer image2 = this->CastImageToITK<typename FilterType::MovingImageType>( *inMovingImage ); filter->SetMovingImage( image2 ); assert( inTransform != NULL ); // This initializers modifies the input, we copy the transform to // prevent this change Transform copyTransform(*inTransform); copyTransform.SetFixedParameters(copyTransform.GetFixedParameters()); const typename FilterType::TransformType *itkTx = dynamic_cast<const typename FilterType::TransformType *>(copyTransform.GetITKBase() ); if ( !itkTx ) { sitkExceptionMacro( "Error converting input transform to required transform type with center.\n" ); } else { filter->SetTransform( const_cast<typename FilterType::TransformType*>(itkTx) ); } if (m_OperationMode == MOMENTS) { filter->MomentsOn(); } else { filter->GeometryOn(); } filter->InitializeTransform(); return copyTransform; } //----------------------------------------------------------------------------- Transform CenteredTransformInitializer ( const Image & fixedImage, const Image & movingImage, const Transform & transform, CenteredTransformInitializerFilter::OperationModeType operationMode ) { CenteredTransformInitializerFilter filter; return filter.Execute( fixedImage, movingImage, transform, operationMode ); } } // end namespace simple } // end namespace itk
[ "blowekamp@mail.nih.gov" ]
blowekamp@mail.nih.gov
c678b8b5495429948fc47009ad3c12f64b22f0d2
10a47b100d6bc7c06da4a95556764d761dd1f9c5
/v8/src/debug/wasm/gdb-server/gdb-server-thread.cc
a9f1b58f6c3da6f7f9275733938d2db2f52fe0ea
[ "BSD-3-Clause", "bzip2-1.0.6", "Apache-2.0", "SunPro" ]
permissive
yourWaifu/v8-cmake
a10e67c38075152f7d4a82bd6fc427a8daa92f72
d3c05a7de2f679a1f986512a540331d00875a38a
refs/heads/master
2022-12-17T20:27:49.386878
2020-06-02T15:50:44
2020-06-02T15:50:44
295,308,677
0
0
BSD-3-Clause
2020-09-14T05:01:20
2020-09-14T05:01:19
null
UTF-8
C++
false
false
3,571
cc
// Copyright 2020 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/debug/wasm/gdb-server/gdb-server-thread.h" #include "src/debug/wasm/gdb-server/gdb-server.h" #include "src/debug/wasm/gdb-server/session.h" namespace v8 { namespace internal { namespace wasm { namespace gdb_server { GdbServerThread::GdbServerThread(GdbServer* gdb_server) : Thread(v8::base::Thread::Options("GdbServerThread")), gdb_server_(gdb_server), start_semaphore_(0) {} bool GdbServerThread::StartAndInitialize() { // Executed in the Isolate thread. if (!Start()) { return false; } // We need to make sure that {Stop} is never called before the thread has // completely initialized {transport_} and {target_}. Otherwise there could be // a race condition where in the main thread {Stop} might get called before // the transport is created, and then in the GDBServer thread we may have time // to setup the transport and block on accept() before the main thread blocks // on joining the thread. // The small performance hit caused by this Wait should be negligeable because // this operation happensat most once per process and only when the // --wasm-gdb-remote flag is set. start_semaphore_.Wait(); return true; } void GdbServerThread::CleanupThread() { // Executed in the GdbServer thread. v8::base::MutexGuard guard(&mutex_); target_ = nullptr; transport_ = nullptr; #if _WIN32 ::WSACleanup(); #endif } void GdbServerThread::Run() { // Executed in the GdbServer thread. #ifdef _WIN32 // Initialize Winsock WSADATA wsaData; int iResult = ::WSAStartup(MAKEWORD(2, 2), &wsaData); if (iResult != 0) { TRACE_GDB_REMOTE("GdbServerThread::Run: WSAStartup failed\n"); return; } #endif // If the default port is not available, try any port. SocketBinding socket_binding = SocketBinding::Bind(FLAG_wasm_gdb_remote_port); if (!socket_binding.IsValid()) { socket_binding = SocketBinding::Bind(0); } if (!socket_binding.IsValid()) { TRACE_GDB_REMOTE("GdbServerThread::Run: Failed to bind any TCP port\n"); return; } TRACE_GDB_REMOTE("gdb-remote(%d) : Connect GDB with 'target remote :%d\n", __LINE__, socket_binding.GetBoundPort()); transport_ = socket_binding.CreateTransport(); target_ = std::make_unique<Target>(gdb_server_); // Here we have completed the initialization, and the thread that called // {StartAndInitialize} may resume execution. start_semaphore_.Signal(); while (!target_->IsTerminated()) { // Wait for incoming connections. if (!transport_->AcceptConnection()) { continue; } // Create a new session for this connection Session session(transport_.get()); TRACE_GDB_REMOTE("GdbServerThread: Connected\n"); // Run this session for as long as it lasts target_->Run(&session); } CleanupThread(); } void GdbServerThread::Stop() { // Executed in the Isolate thread. // Synchronized, becauses {Stop} might be called while {Run} is still // initializing {transport_} and {target_}. If this happens and the thread is // blocked waiting for an incoming connection or GdbServer for incoming // packets, it will unblocked when {transport_} is closed. v8::base::MutexGuard guard(&mutex_); if (target_) { target_->Terminate(); } if (transport_) { transport_->Close(); } } } // namespace gdb_server } // namespace wasm } // namespace internal } // namespace v8
[ "info@bnoordhuis.nl" ]
info@bnoordhuis.nl
3f3d086f412a74a84981a8c29c35962ac2920c2e
5158a68a6858200fcdffdac58d483e036bb5f979
/PAT Advanced Level/A1036/A1036.cpp
4dc7fed89237359ba1680305f13c03f28e8a9ba7
[]
no_license
ChangeZ24/PAT
85b122d4c37ec2012fe400db9b914da805db19ac
b237687aa12bf5425b276c089d52bd2b6f4cf2d2
refs/heads/master
2021-01-19T22:37:07.117406
2017-09-07T17:11:30
2017-09-07T17:11:30
88,832,389
0
0
null
null
null
null
UTF-8
C++
false
false
964
cpp
#include<cstdio> #include<cstdlib> #include<algorithm> #define MAX 1002 using namespace std; struct student { char no[11]; char name[11]; char gender; int grade; }; int main() { int N = 0; student s[MAX]; student boy,girl; boy.grade = 100; girl.grade = 0; int temp1 = 0, temp2 = 0; bool b = false, g = false; scanf("%d", &N); for (int i = 0;i < N;i++) { scanf("%s%s%s%d", &s[i].name, &s[i].gender, &s[i].no, &s[i].grade); if (s[i].gender == 'M') { b = true; temp1 = s[i].grade; if (temp1 < boy.grade) boy = s[i]; } if (s[i].gender == 'F') { g = true; temp2 = s[i].grade; if (temp2 > girl.grade) girl = s[i]; } } if (g == false) printf("Absent\n"); else printf("%s %s\n", girl.name, girl.no); if (b == false) printf("Absent\n"); else printf("%s %s\n", boy.name, boy.no); if (b == false || g == false) printf("NA\n"); else printf("%d\n", girl.grade - boy.grade); system("pause"); return 0; }
[ "bian.love@qq.com" ]
bian.love@qq.com
cc18dd7735865f15e60025935776208c91164789
a89a30a000a6c7eef6853aacbe051985f1965d6a
/topcoder/sources/Packhorses.cpp
40349454cbfaeb0b8ae80d7a1f43bfc1b0a94de6
[]
no_license
ak795/acm
9edd7d18ddb6efeed8184b91489005aec7425caa
81787e16e23ce54bf956714865b7162c0188eb3a
refs/heads/master
2021-01-15T19:36:00.052971
2012-02-06T02:25:23
2012-02-06T02:25:23
44,054,046
1
0
null
2015-10-11T13:53:25
2015-10-11T13:53:23
null
UTF-8
C++
false
false
3,343
cpp
#include <cctype> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <deque> #include <fstream> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; class Packhorses { public: int horses(int p, int x, int y); // BEGIN CUT HERE public: void run_test(int Case) { if ((Case == -1) || (Case == 0)) test_case_0(); if ((Case == -1) || (Case == 1)) test_case_1(); if ((Case == -1) || (Case == 2)) test_case_2(); if ((Case == -1) || (Case == 3)) test_case_3(); } private: template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); } void verify_case(int Case, const int &Expected, const int &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } } void test_case_0() { int Arg0 = 1; int Arg1 = 5; int Arg2 = 0; int Arg3 = 2; verify_case(0, Arg3, horses(Arg0, Arg1, Arg2)); } void test_case_1() { int Arg0 = 1; int Arg1 = 6; int Arg2 = 0; int Arg3 = 3; verify_case(1, Arg3, horses(Arg0, Arg1, Arg2)); } void test_case_2() { int Arg0 = 20; int Arg1 = 15; int Arg2 = 7; int Arg3 = 20; verify_case(2, Arg3, horses(Arg0, Arg1, Arg2)); } void test_case_3() { int Arg0 = 5; int Arg1 = 1; int Arg2 = 5; int Arg3 = 2; verify_case(3, Arg3, horses(Arg0, Arg1, Arg2)); } // END CUT HERE }; // BEGIN CUT HERE //////////////////////////////////////////////////////////////////////////////// template<class T> inline void print(T A) { cout<<"{ "; for (__typeof((A).begin()) i=(A).begin(); i!=(A).end(); ++i) cout<<*i<<", "; cout<<"}"<<endl; } template<class T> inline void print2(T A) { cout<<"{"<<endl; for (__typeof((A).begin()) i=(A).begin(); i!=(A).end(); ++i) {cout<<" { "; for (__typeof((*i).begin()) j=(*i).begin(); j!=(*i).end(); j++) cout<<*j<<", "; cout<<"}"; cout<<endl;} cout<<"}"<<endl; } template<class T> inline void printp(T A) { cout<<"{ "; for (__typeof((A).begin()) i=(A).begin(); i!=(A).end(); ++i) {cout<<"{"<<i->first<<", "<<i->second<<"}"; cout<<", ";} cout<<" }"<<endl; } template<class T> inline void print(T A[], int n) { cout<<"{ "; for (int i=0; i<n; i++) { cout<<A[i]; if (i+1<n) cout<<", ";} cout<<" }"<<endl; } template<class T> inline void print2(T A[], int n, int m) { cout<<"{"<<endl; for (int i=0; i<n; ++i) {cout<<" { "; for (int j=0; j<m; ++j) { cout<<A[i][j]; if (j+1<m) cout<<", ";} cout<<" } "<<endl; } cout<<"}"<<endl; } int main() { Packhorses ___test; ___test.run_test(3); } //////////////////////////////////////////////////////////////////////////////// // END CUT HERE int Packhorses :: horses(int p, int ox, int oy) { int m=INT_MAX; for (int k=0; k<=p; ++k) { int x=ox, y=oy; int aux=p; x-=2*k; y-=p-k; x=max(0, x); y=max(0, y); aux+=(x+2)/3; aux+=(y+1)/2; m=min(m, aux); cout<<m<<endl; } return m; }
[ "rock.spartacus@gmail.com" ]
rock.spartacus@gmail.com
6c08bff6fc8f5d9c52b3aa2feadfcabe43412c86
67d7e1757e78768b9efd77dfb8f13c768d67bbf5
/media/video/h265_parser_unittest.cc
689f958e0f8773285350834ecf56d6d5663137fe
[ "BSD-3-Clause" ]
permissive
Kucarub/chromium
5bf2ec909536eb00d8a9bac69ec237947b30b88b
6c41b35a1270fb44a0adae5493e6d58a763ba8aa
refs/heads/master
2023-01-01T15:29:29.927527
2020-10-28T01:54:25
2020-10-28T01:54:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,735
cc
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <memory> #include <string> #include "base/files/file_path.h" #include "base/files/memory_mapped_file.h" #include "base/logging.h" #include "media/base/test_data_util.h" #include "media/video/h265_parser.h" #include "testing/gtest/include/gtest/gtest.h" namespace media { namespace { struct HevcTestData { std::string file_name; // Number of NALUs in the test stream to be parsed. int num_nalus; }; } // namespace class H265ParserTest : public ::testing::Test { protected: void LoadParserFile(std::string file_name) { parser_.Reset(); base::FilePath file_path = GetTestDataFilePath(file_name); stream_ = std::make_unique<base::MemoryMappedFile>(); ASSERT_TRUE(stream_->Initialize(file_path)) << "Couldn't open stream file: " << file_path.MaybeAsASCII(); parser_.SetStream(stream_->data(), stream_->length()); } bool ParseNalusUntilNut(H265NALU::Type nalu_type) { while (true) { H265NALU nalu; H265Parser::Result res = parser_.AdvanceToNextNALU(&nalu); if (res == H265Parser::kEOStream) { return false; } EXPECT_EQ(res, H265Parser::kOk); if (nalu.nal_unit_type == nalu_type) return true; } } H265Parser parser_; std::unique_ptr<base::MemoryMappedFile> stream_; }; TEST_F(H265ParserTest, RawHevcStreamFileParsing) { HevcTestData test_data[] = { {"bear.hevc", 35}, {"bbb.hevc", 64}, }; for (const auto& data : test_data) { LoadParserFile(data.file_name); // Parse until the end of stream/unsupported stream/error in stream is // found. int num_parsed_nalus = 0; while (true) { H265NALU nalu; H265Parser::Result res = parser_.AdvanceToNextNALU(&nalu); if (res == H265Parser::kEOStream) { DVLOG(1) << "Number of successfully parsed NALUs before EOS: " << num_parsed_nalus; EXPECT_EQ(data.num_nalus, num_parsed_nalus); break; } EXPECT_EQ(res, H265Parser::kOk); ++num_parsed_nalus; DVLOG(4) << "Found NALU " << nalu.nal_unit_type; switch (nalu.nal_unit_type) { case H265NALU::SPS_NUT: int sps_id; res = parser_.ParseSPS(&sps_id); EXPECT_TRUE(!!parser_.GetSPS(sps_id)); break; default: break; } EXPECT_EQ(res, H265Parser::kOk); } } } TEST_F(H265ParserTest, SpsParsing) { LoadParserFile("bear.hevc"); EXPECT_TRUE(ParseNalusUntilNut(H265NALU::SPS_NUT)); int sps_id; EXPECT_EQ(H265Parser::kOk, parser_.ParseSPS(&sps_id)); const H265SPS* sps = parser_.GetSPS(sps_id); EXPECT_TRUE(!!sps); EXPECT_EQ(sps->sps_max_sub_layers_minus1, 0); EXPECT_EQ(sps->profile_tier_level.general_profile_idc, 1); EXPECT_EQ(sps->profile_tier_level.general_level_idc, 60); EXPECT_EQ(sps->sps_seq_parameter_set_id, 0); EXPECT_EQ(sps->chroma_format_idc, 1); EXPECT_FALSE(sps->separate_colour_plane_flag); EXPECT_EQ(sps->pic_width_in_luma_samples, 320); EXPECT_EQ(sps->pic_height_in_luma_samples, 184); EXPECT_EQ(sps->conf_win_left_offset, 0); EXPECT_EQ(sps->conf_win_right_offset, 0); EXPECT_EQ(sps->conf_win_top_offset, 0); EXPECT_EQ(sps->conf_win_bottom_offset, 2); EXPECT_EQ(sps->bit_depth_luma_minus8, 0); EXPECT_EQ(sps->bit_depth_chroma_minus8, 0); EXPECT_EQ(sps->log2_max_pic_order_cnt_lsb_minus4, 4); EXPECT_EQ(sps->sps_max_dec_pic_buffering_minus1[0], 4); EXPECT_EQ(sps->sps_max_num_reorder_pics[0], 2); EXPECT_EQ(sps->sps_max_latency_increase_plus1[0], 0); for (int i = 1; i < kMaxSubLayers; ++i) { EXPECT_EQ(sps->sps_max_dec_pic_buffering_minus1[i], 0); EXPECT_EQ(sps->sps_max_num_reorder_pics[i], 0); EXPECT_EQ(sps->sps_max_latency_increase_plus1[i], 0); } EXPECT_EQ(sps->log2_min_luma_coding_block_size_minus3, 0); EXPECT_EQ(sps->log2_diff_max_min_luma_coding_block_size, 3); EXPECT_EQ(sps->log2_min_luma_transform_block_size_minus2, 0); EXPECT_EQ(sps->log2_diff_max_min_luma_transform_block_size, 3); EXPECT_EQ(sps->max_transform_hierarchy_depth_inter, 0); EXPECT_EQ(sps->max_transform_hierarchy_depth_intra, 0); EXPECT_FALSE(sps->scaling_list_enabled_flag); EXPECT_FALSE(sps->sps_scaling_list_data_present_flag); EXPECT_FALSE(sps->amp_enabled_flag); EXPECT_TRUE(sps->sample_adaptive_offset_enabled_flag); EXPECT_FALSE(sps->pcm_enabled_flag); EXPECT_EQ(sps->pcm_sample_bit_depth_luma_minus1, 0); EXPECT_EQ(sps->pcm_sample_bit_depth_chroma_minus1, 0); EXPECT_EQ(sps->log2_min_pcm_luma_coding_block_size_minus3, 0); EXPECT_EQ(sps->log2_diff_max_min_pcm_luma_coding_block_size, 0); EXPECT_FALSE(sps->pcm_loop_filter_disabled_flag); EXPECT_EQ(sps->num_short_term_ref_pic_sets, 0); EXPECT_FALSE(sps->long_term_ref_pics_present_flag); EXPECT_EQ(sps->num_long_term_ref_pics_sps, 0); EXPECT_TRUE(sps->sps_temporal_mvp_enabled_flag); EXPECT_TRUE(sps->strong_intra_smoothing_enabled_flag); EXPECT_EQ(sps->vui_parameters.sar_width, 0); EXPECT_EQ(sps->vui_parameters.sar_height, 0); EXPECT_EQ(sps->vui_parameters.video_full_range_flag, 0); EXPECT_EQ(sps->vui_parameters.colour_description_present_flag, 0); EXPECT_EQ(sps->vui_parameters.colour_primaries, 0); EXPECT_EQ(sps->vui_parameters.transfer_characteristics, 0); EXPECT_EQ(sps->vui_parameters.matrix_coeffs, 0); EXPECT_EQ(sps->vui_parameters.def_disp_win_left_offset, 0); EXPECT_EQ(sps->vui_parameters.def_disp_win_right_offset, 0); EXPECT_EQ(sps->vui_parameters.def_disp_win_top_offset, 0); EXPECT_EQ(sps->vui_parameters.def_disp_win_bottom_offset, 0); } } // namespace media
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
b91d41f6ac2192b0aa5c53f31a8af565475ab227
d9a56dd53a75b770483f821ef34570ef04cf44e9
/AnimationSplitter/Source.cpp
8f76881e42404c1287f7ca21f4ff4ec605b916f2
[]
no_license
CheezeCoder/OSGStuff
86d93b2b1ede9b648399a02e9f0cfefc15b873e9
35a59888789b315c52f996b2c0a230d4e84230a6
refs/heads/master
2016-09-06T12:10:43.260236
2014-11-17T10:42:07
2014-11-17T10:42:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,787
cpp
// // Takes a given FBX file and converts it to an osgb file with the given animation information. // #include <stdio.h> #include <tchar.h> #include <windows.h> #include "AnimationSplitter.h" #include "tinystr.h" #include "tinyxml.h" #include "OsgXml.h" /** * Builds the animation property * * @param (int k) = Assign a unique key to locate the specific animation * @param (int s) = The starting frame of this particular animation * @param (int f) = The end frame of this particular animation * @param (const char * n) = The name of the animation you wish to refer to in your OSG application. * * @return A new animation property to add to the list of animations to bake into your new .osgb file. */ animations newAnim(int k, int s, int f, const char* n) { animations * a = new animations(); a->key = k; a->start = s; a->finish = f; a->name = n; return *a; } /** * Creates a new .osgb file with your animations baked into it. * In order to add an animation just push a new animation object into the anims list. * You can either do this by directly instanciating the object in the paramater of the * push_back() method or by creating individual animation objects and adding them to the * anims list. You must give a unique ID, a start frame, and end frame and the name you * wish to find the animation by in your OSG application as arguments for the newAnim method, * in the given order. Then instanciate OsgXML which builds the xml file that the animationSplitter * (@courtesy of tomhog), class will use to create your new .osgb file. * * For example a new Animation could look like: anims.push_back(newAnim(0, 0, 25, "Jump"); * This animation would have a unique id of 0, The animation begins on frame 0 and ends on * frame 25. The name for the animation is jump and will now be available through the * animation manager in your OSG application via getAnimationsList() and getName(). * * * Pass in the list of animations and your fbx file path, the new path and name for your new .osgb file * and the fps. FPS defaults to 30 if not provided. * * Finally instanciate the AnimationSplitter class with the xml file as a paramater and the program * will create a new .osgb file with your proper animations. */ int main(int argc, char** argv) { std::list<animations> anims; //Example: //anims.push_back(newAnim(0, 38, 76, "Idle")); //anims.push_back(newAnim(1, 0, 36, "Run")); //or //animations run = newAnim(0, 80, 102, "Walk"); //anims.push_back(run); //NOTE: I haven't written checks in so if you give a false path name or file name //it won't work properly. Make sure your file paths and names are good. OsgXml xml(&anims, "ExportToOSG.fbx.", "TutorialModel.osgb", "30"); AnimationSplitter spiltter("./xml/XmlParser.xml"); return 0; }
[ "Chris@Erghis.com" ]
Chris@Erghis.com
2a93ded2603b06eda65c81127b2a7ddd4ccbee19
92e979498ec13e4ef1f9ff140e12865b5082c1dd
/SDK/BP_ProjectileBazooka_classes.h
6d2718a4b85a141a0a38e670564cffd540541767
[]
no_license
ALEHACKsp/BlazingSails-SDK
ac1d98ff67983b9d8e9c527815f17233d045d44d
900cbb934dc85f7325f1fc8845b90def2298dc2d
refs/heads/master
2022-04-08T21:55:32.767942
2020-03-11T11:37:42
2020-03-11T11:37:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
681
h
#pragma once // Name: BlazingSails, Version: 1.481.81 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_ProjectileBazooka.BP_ProjectileBazooka_C // 0x0000 (0x04E8 - 0x04E8) class ABP_ProjectileBazooka_C : public ABP_ProjectileCannonballBase_C { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass BP_ProjectileBazooka.BP_ProjectileBazooka_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
a8edc0150d7b25a8b350f936e1df9764501e2455
428053b24d028d9ffc602b99328756092164f4da
/BattleTank 4.23/Source/BattleTank/Private/TankAimingComponent.cpp
76f154fb9b8b2ca7edf3d8404ed67be452ed2f8d
[]
no_license
JunkieCream/Section_04
8973631a29e04d3a798282595f309376404cadac
00b3df25d28ed8d0847a102d3284d02c34c61c48
refs/heads/master
2022-04-07T04:09:48.909910
2020-02-17T15:48:06
2020-02-17T15:48:06
184,297,024
0
0
null
null
null
null
UTF-8
C++
false
false
3,418
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "TankAimingComponent.h" #include "TankBarrel.h" #include "TankTurret.h" #include "..\Public\TankAimingComponent.h" #include "Projectile.h" // Sets default values for this component's properties UTankAimingComponent::UTankAimingComponent() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. PrimaryComponentTick.bCanEverTick = true; // ... } void UTankAimingComponent::Initialise(UTankBarrel* BarrelToSet, UTankTurret* TurretToSet) { if (!ensure(BarrelToSet || TurretToSet)) { return; } Barrel = BarrelToSet; Turret = TurretToSet; LastFireTime = FPlatformTime::Seconds() - ReloadTimeInSeconds; } EFiringState UTankAimingComponent::GetFiringState() const { return FiringState; } void UTankAimingComponent::Aiming(FVector HitLocation) { if (!ensure(Barrel)) {return;} FVector LaunchVelocity; FVector StartLocation = Barrel->GetSocketLocation(FName ("Projectile")); if (HitLocation != FVector(0,0,0)) { if (UGameplayStatics::SuggestProjectileVelocity(this, LaunchVelocity, StartLocation, HitLocation, LaunchSpeed, false, 0.f, 0.f, ESuggestProjVelocityTraceOption::DoNotTrace)) { //Calculate launch velocity auto AimDirection = LaunchVelocity.GetSafeNormal(); MoveTurret(LaunchVelocity); } else { auto Time = GetWorld()->GetTimeSeconds(); UE_LOG(LogTemp, Warning, TEXT("%f: No aim solution"), Time); } } CheckFiringState(LaunchVelocity, HitLocation); } //Receive aim direction and rotate barrel with FRotator to that direction void UTankAimingComponent::MoveTurret(FVector AimDirection) { //Difference between current barrel rotation and AimDirection auto BarrelRotator = Barrel->GetForwardVector().Rotation(); auto AimAsRotator = AimDirection.Rotation(); auto DeltaRotator = AimAsRotator - BarrelRotator; Barrel->Elevate(DeltaRotator.Pitch); Turret->TurretRotate(DeltaRotator.Yaw); } void UTankAimingComponent::Fire() { if (!ensure(Barrel && ProjectileBlueprint)) { return; } if (FiringState != EFiringState::Reloading && FiringState != EFiringState::OutOfAmmo) { //Spawn projectile at the socket location of barrel auto Projectile = GetWorld()->SpawnActor<AProjectile>( ProjectileBlueprint, Barrel->GetSocketLocation(FName("Projectile")), Barrel->GetSocketRotation(FName("Projectile")) ); Projectile->LaunchProjectile(LaunchSpeed); LastFireTime = FPlatformTime::Seconds(); AmmoCount--; } } void UTankAimingComponent::CheckFiringState(FVector AimDirection, FVector HitLocation) { auto SquareSum = (AimDirection.X * AimDirection.X) + (AimDirection.Y * AimDirection.Y) + (AimDirection.Z * AimDirection.Z); float Scale = 1 / sqrt(SquareSum); AimDirection = FVector(AimDirection.X * Scale, AimDirection.Y * Scale, AimDirection.Z * Scale); if (AmmoCount <= 0) { FiringState = EFiringState::OutOfAmmo; return; } if (HitLocation == FVector(0, 0, 0)) { FiringState = EFiringState::Locked; return; } if ((FPlatformTime::Seconds() - LastFireTime) < ReloadTimeInSeconds) { FiringState = EFiringState::Reloading; return; } if (Barrel->GetForwardVector().Equals(AimDirection, 0.05)) { FiringState = EFiringState::Aiming; } else { FiringState = EFiringState::Moving; } return; }
[ "cyriljoker@gmail.com" ]
cyriljoker@gmail.com
78977b76ab601a7eab8c2d9f285942c0a25bb89b
0166d2152e37fa9024810dec3d5176a7afbf4a24
/SFML Project/Inventory.cpp
61280c14804588af44f8ea0b6c41237650d072d9
[]
no_license
FeKozma/SFML-RPG
78f49b02fc66e057c9b1a67cc89f92cc587fe6e8
5aef7198062cc948d2ca10e73541763ff4c170e7
refs/heads/master
2021-04-30T13:31:28.042053
2018-02-21T10:38:55
2018-02-21T10:38:55
121,294,573
1
0
null
null
null
null
UTF-8
C++
false
false
2,878
cpp
#include "Inventory.h" #include <iostream> Inventory::Inventory() { axBlock.setSize(sf::Vector2f(64.0f, 64.0f)); if (ax.loadFromFile("../Resources/inventoryAx.png")) { axBlock.setTexture(&ax); } else { std::cout << "did not load inventoryAx texture\n"; } emptyBlock.setSize(sf::Vector2f(64.0f, 64.0f)); if (empty.loadFromFile("../Resources/inventory.png")) { emptyBlock.setTexture(&empty); } else { std::cout << "did not load emptyBlock texture\n"; } skillAnimationBlock.setSize(sf::Vector2f(64, 64)); if (skillAnimation.loadFromFile("../Resources/timer.png")) { skillAnimationBlock.setTexture(&skillAnimation); currentFrame.width = 64; currentFrame.height = 64; currentFrame.left = 0; currentFrame.top = 0; skillAnimationBlock.setTextureRect(currentFrame); } else { std::cout << "did not load skillAnimation texture\n"; } energyBlock.setSize(sf::Vector2f(64, 64)); if (energy.loadFromFile("../Resources/explosionBlock6.png")) { energyBlock.setTexture(&energy); } } Inventory::~Inventory() { } void Inventory::draw(sf::RenderWindow & renderWindow, int height, int with) { axBlock.setPosition(sf::Vector2f((float(((with / 2) - 3) * 64)), (float((height - 1) * 64)))); renderWindow.draw(axBlock); emptyBlock.setPosition(sf::Vector2f((float(((with / 2) - 2) * 64)), (float((height - 1) * 64)))); renderWindow.draw(emptyBlock); emptyBlock.setPosition(sf::Vector2f((float(((with / 2) - 1) * 64)), (float((height - 1) * 64)))); renderWindow.draw(emptyBlock); //emptyBlock.setPosition(sf::Vector2f((float(((with / 2) - 0) * 64)), (float((height - 1) * 64)))); //renderWindow.draw(emptyBlock); emptyBlock.setPosition(sf::Vector2f((float(((with / 2) + 1) * 64)), (float((height - 1) * 64)))); renderWindow.draw(emptyBlock); energyBlock.setPosition(sf::Vector2f((float(((with / 2) + 1) * 64)), (float((height - 1) * 64)))); renderWindow.draw(energyBlock); emptyBlock.setPosition(sf::Vector2f((float(((with / 2) + 2) * 64)), (float((height - 1) * 64)))); renderWindow.draw(emptyBlock); emptyBlock.setPosition(sf::Vector2f((float(((with / 2) + 3) * 64)), (float((height - 1) * 64)))); renderWindow.draw(emptyBlock); if (skill1 != -1) { currentFrame.left = this->skill1 * 64; skillAnimationBlock.setTextureRect(currentFrame); skillAnimationBlock.setPosition(sf::Vector2f((float(((with / 2) + 1) * 64)), (float((height - 1) * 64)))); renderWindow.draw(skillAnimationBlock); } } int Inventory::updateSkill1(float deltaTime) { timeOnThisFrame -= deltaTime; //std::cout << std::to_string(deltaTime) + '\n'; //std::cout << "timeOnThisFrame: " + std::to_string(timeOnThisFrame) + '\n'; if (timeOnThisFrame < 0) { if (skill1 < 3) { skill1++; timeOnThisFrame += timePerFrame; return true; } else { skill1 = -1; timeOnThisFrame = 0; return false; } } }
[ "felix.kozma@gmail.com" ]
felix.kozma@gmail.com
10885c79811198a6ae88dc73fb7b668892c4354e
61413725ffcfc9d815abd95cd021f8429297c0cf
/Resumake/ResumeObject/education.cpp
13df28323809f00a3a520a4bcbc27525ad288538
[]
no_license
mclhtay/Resumake
efe878bf0e41769631b6f5b034a541e681546a67
8e3e7562c7ff8be46375788b63d3540da4b75139
refs/heads/main
2023-07-11T07:11:35.898632
2021-08-29T01:58:04
2021-08-29T01:58:04
400,929,015
0
0
null
null
null
null
UTF-8
C++
false
false
845
cpp
#include "education.h" Education::Education() { } void Education::setInstitutionName(QString s){ Education::institutionName = s; } void Education:: setEnrollmentDate(QString s){ Education::enrollmentDate = s; } void Education::setGraduationDate(QString s){ Education::graduationDate=s; } void Education::setDescription(QString s){ Education::description = s; } void Education::reset(){ setDescription(""); setInstitutionName(""); setEnrollmentDate(""); setGraduationDate(""); } QString Education::getInstitutionName(){ return Education::institutionName; } QString Education::getEnrollmentDate(){ return Education::enrollmentDate; } QString Education::getGraduationDate(){ return Education::graduationDate; } QString Education::getDescription(){ return Education::description; }
[ "carter.jin6487@gmail.com" ]
carter.jin6487@gmail.com
5b03a249d6b5a8c44f6b980ab0020f86a0bc65d4
9bcba5bfac34b8319cf0e10bd3719b719cfb4d2a
/PokemonHackSourceCode/PokemonRomViewer/EncWaterPage.h
706b8887f067d575da638365a27b491b206a3e81
[]
no_license
roytam1/rtoss
60a12f59d4cf11532460ce010463ba2d2b2c48b7
1041a1ab55cce3693d44c0fb199560442db39552
refs/heads/master
2023-08-04T11:18:53.858480
2023-07-29T15:08:02
2023-07-29T15:08:02
32,128,533
11
8
null
2023-03-01T14:09:47
2015-03-13T04:29:24
C
GB18030
C++
false
false
958
h
#pragma once // CEncWaterPage 对话框 class CEncWaterPage : public CEncTabPage { DECLARE_DYNAMIC(CEncWaterPage) public: CEncWaterPage(); // 标准构造函数 virtual ~CEncWaterPage(); void OnConfigChanged(BOOL bRomChanged, BOOL bUILangChanged); void TransData(BOOL bToControls); void SetFocusedEntry(DWORD dwEncEntryIndex); // 对话框数据 enum { IDD = IDD_ROM_ENC_WATER }; protected: CComboBox m_ctrlBrdList[ENC_WATER_ENTRY_COUNT]; CStatic m_ctrlImage[ENC_WATER_ENTRY_COUNT]; CButton m_ctrlSetBrd[ENC_WATER_ENTRY_COUNT]; void SetBrdImage(DWORD dwIndex); void GetBreed(DWORD dwIndex); void SetBreed(DWORD dwIndex); virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 afx_msg void OnCbnSelchangeEncBreedList(UINT uID); afx_msg void OnBnClickedEncSetBreed(UINT uID); afx_msg void OnSetFocus(UINT uID); afx_msg void OnDblClickedIcon(UINT uID); DECLARE_MESSAGE_MAP() };
[ "roytam@gmail.com" ]
roytam@gmail.com
7d5001e76e8a1ec328a5112e96a45d79614061ea
495bcabda93104867af4dfe2ecb5d6996a8d9f1a
/day1/problems/hotgraph/sols/sol_ge_mqlog.cpp
c24a1b5d32ec02341589fc08f7be67bd2c9b6962
[]
no_license
blackav/zaoch-final-2015
471aec3362b052c625a67868c4d3ec12430cd5d7
79d9af1cf8eba4f443d4c8ed101da1aaf01282dd
refs/heads/master
2016-09-05T10:07:08.936074
2015-04-01T17:15:13
2015-04-01T17:15:13
31,839,694
0
1
null
null
null
null
UTF-8
C++
false
false
3,083
cpp
#include <cstdio> #include <cmath> #include <cstdlib> #include <cassert> #include <ctime> #include <cstring> #include <string> #include <set> #include <map> #include <vector> #include <list> #include <deque> #include <queue> #include <sstream> #include <iostream> #include <algorithm> using namespace std; #define pb push_back #define mp make_pair #define fs first #define sc second #define left dsklf #define right sdlkfj const double pi = acos(-1.0); const int vsize = 100 * 1000; const int esize = 1000 * 1000; const int inf = 1000 * 1000 * 1000; int getnearest(int* ptr, int v) { if (v == -1 || ptr[v] == v) return v; ptr[v] = getnearest(ptr, ptr[v]); return ptr[v]; } int n, m, q; vector <pair <int, int> > vertex[vsize]; int* left[vsize]; int* right[vsize]; int* temps[vsize]; int* edgenum[vsize]; int numv[2 * esize]; int locps[2 * esize]; int dist[2 * esize]; int len[vsize]; int bfs(int start, int finish, int diff) { for (int i = 0; i < 2 * m; i++) { dist[i] = inf; } for (int i = 0; i < n; i++) for (int j = 0; j < len[i]; j++) { left[i][j] = j; right[i][j] = j; } queue <int> q; for (int i = 0; i < len[start]; i++) { // cerr << start << ' ' << i << ' ' << edgenum[start][i] << endl; dist[edgenum[start][i] ^ 1] = 1; q.push(edgenum[start][i] ^ 1); left[start][i] = -1; right[start][i] = -1; } while (!q.empty()) { int edge = q.front(); int myv = numv[edge]; if (myv == finish) return dist[edge]; int myps = locps[edge]; // cerr << start << ' ' << edge << ' ' << myv << ' ' << myps << endl; q.pop(); for (int i = 0; i < 2; i++) { while (true) { int nrs; if (i == 0) nrs = getnearest(left[myv], myps); else nrs = getnearest(right[myv], myps); if (nrs == -1 || abs(temps[myv][myps] - temps[myv][nrs]) > diff) break; dist[edgenum[myv][nrs] ^ 1] = dist[edge] + 1; q.push(edgenum[myv][nrs] ^ 1); left[myv][nrs] = nrs - 1; right[myv][nrs] = nrs + 1; if (nrs + 1 == len[myv]) right[myv][nrs] = -1; } } } return -1; } int main() { int v, u, temp; // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); scanf("%d%d", &n, &m); for (int i = 0; i < m; i++) { scanf("%d%d%d", &v, &u, &temp); v--, u--; numv[2 * i] = v; locps[2 * i] = vertex[v].size(); numv[2 * i + 1] = u; locps[2 * i + 1] = vertex[u].size(); vertex[v].pb(mp(2 * i, temp)); vertex[u].pb(mp(2 * i + 1, temp)); } for (int i = 0; i < n; i++) { len[i] = vertex[i].size(); left[i] = new int[len[i]]; right[i] = new int[len[i]]; edgenum[i] = new int[len[i]]; temps[i] = new int[len[i]]; for (int j = 0; j < len[i]; j++) { edgenum[i][j] = vertex[i][j].fs; temps[i][j] = vertex[i][j].sc; } } scanf("%d", &q); for (int i = 0; i < q; i++) { scanf("%d%d%d", &v, &u, &temp); v--, u--; if (v == u) { printf("0\n"); continue; } printf("%d\n", bfs(v, u, temp)); } return 0; }
[ "cher@smartdec.ru" ]
cher@smartdec.ru
e74db036f8c747b2cd78d9ebde3a05d2074b1d1c
5b5dadd0691c98b6bc6640a842493bef5bf091a2
/Praktikum8.ino
3e8fd33a02e88c7d6144c2ebc1dfe29f3fe1d306
[]
no_license
andikris/praktikum-mikrokontroller-1
4de63f3528cfe110acc2ada8820e749fb0eb74b2
68e69e7ffe6ee738f7d80c3224523ec5c60d0dec
refs/heads/master
2021-01-18T19:08:36.669195
2016-12-19T15:21:18
2016-12-19T15:21:18
74,126,756
0
0
null
null
null
null
UTF-8
C++
false
false
3,468
ino
#include <EEPROM.h> boolean exitProgram = 0; void setup() { Serial.begin(9600); Serial.println("======== EEPROM ACCESS VIA SERIAL =========="); Serial.println("Type this command to excute EEPROM operation"); Serial.println("write : For wrte data to EEPROM"); Serial.println("read : for read data from EEPROM"); Serial.println("clear : for clear all data in EEPROM"); Serial.println("exit : for exit from program"); } void loop(){ int command; while(!exitProgram) { do{ Serial.print("Type Command >> "); while(Serial.available()==0); command = readCommandFromSerial(); switch(command) { case 1 : Serial.println("Write EEPROM Selected"); writeEEPROM(); break; case 2 : Serial.println("Read EEPROM Selected"); readEEPROM(); break; case 3 : Serial.println("clear EEPROM Selected"); clearEEPROM(); Serial.println("clear EEPROM Selected"); break; case 4 : Serial.println("Exit From Program"); exitProgram = 1; break; default : Serial.println("Wrong Command, Please Type Again !"); break; } } while(command == 0); } } int readCommandFromSerial(){ char stringFromSerial[10]; char data; int command; int countData = 0; for(int i=0;i<10;i++){ stringFromSerial[i]=0; } while(true) { if(Serial.available()) { data = Serial.read(); if(data=='\n'){ break; } else{ if(data!='\r'){ stringFromSerial[countData] = data; countData++; } } } } if(strcmp(stringFromSerial,"write")==0){ command = 1; } else if(strcmp(stringFromSerial,"read")==0){ command = 2; } else if(strcmp(stringFromSerial,"clear")==0){ command = 3; } else if(strcmp(stringFromSerial,"exit")==0){ command = 4; } else{ command = 0; } return command; } int readValFromSerial() { char stringFromSerial [10]; char data; int val; int countData =0; for (int i=0; i<10; i++) { stringFromSerial[i]=0; } while(true) { if(Serial.available()) { data = Serial.read(); Serial.write(data); if (data=='\n') { break; } else { if (data!='\r') { stringFromSerial[countData] = data; countData++; } } } } sscanf(stringFromSerial,"%d",&val); return val; } void clearEEPROM() { for (int i=0; i<512; i++) { EEPROM.write(i,0); } } void writeEEPROM() { int address; do { Serial.print("Address : "); address = readValFromSerial(); if (address>512) { Serial.println("Address maximal is 512 !, please type again!"); } } while (address>512); int data; do { Serial.print("Data : "); data = readValFromSerial(); if (data>512) { Serial.println("Data maximal is 512!, please type again!"); } } while (data>512); EEPROM.write(address,data); Serial.println("EEPROM Write Success !"); } void readEEPROM() { int address; do { Serial.print("Address : "); address = readValFromSerial(); if (address > 512) { Serial.println("Address maximal is 512!, Please type again !"); } } while (address>512); int data = EEPROM.read(address); Serial.print("Data in Address "); Serial.print(address,DEC); Serial.print(" : "); Serial.println(data,DEC); }
[ "andi_karis@yahoo.com" ]
andi_karis@yahoo.com
adc971d8abed3c26f95aa9f706cb2fa90c627445
e23d16c738296df79f932aeab48d671f24ae3732
/796 - Rotate String.cpp
f0f177229b1e35272d28b788ded732a874f29e43
[]
no_license
y4lp/leets-easy
32e579b18036eb41cc15858355ddb60267c96c33
7ef430042455a193fea05a54e6638a6917fc4783
refs/heads/master
2023-05-30T19:26:18.665390
2021-06-18T09:17:48
2021-06-18T09:17:48
378,097,146
0
0
null
null
null
null
UTF-8
C++
false
false
271
cpp
#include <string> #include <iostream> using namespace std; class Solution { public: bool rotateString(string A, string B) { if (A.size() != B.size()) return false; A = A + A; auto res = A.find(B); return res != string::npos; } };
[ "821738231@qq.com" ]
821738231@qq.com
6aca4297b9d6396a3a90477d60d29bf07a15b902
8f257bdf91b162d61d86b528ec2a95bbf1b13ebd
/Algo/b10870피보.cpp
26287dc29f8e82ad7636eac735163d3b75bd2f9b
[]
no_license
zxc6147/algorithm
1dc2d39e0f4f8fb57febd68331bd155624b4037d
a68dd2656bd1ea555a1fd93289a120d11fc30431
refs/heads/master
2023-06-03T06:22:36.283140
2021-06-16T05:02:07
2021-06-16T05:02:07
375,632,575
0
0
null
null
null
null
UTF-8
C++
false
false
360
cpp
// https://www.acmicpc.net/problem/10870 #include <iostream> #include <vector> using namespace std; vector<long long> dp; long long fibo(int n) { if (n == 0) return 0; if (n == 1) return 1; if (dp[n] != -1) return dp[n]; dp[n] = fibo(n - 2) + fibo(n - 1); return dp[n]; } int main() { int N; cin >> N; dp.resize(N + 1, -1); cout << fibo(N); }
[ "https://github.com/zxc6147" ]
https://github.com/zxc6147
6e4103aae7e56a7930459482eda01b739449a0d3
f9b9b85b07e28af7b439b392f453876d15938041
/include/limb.h
7c4cb2d6abd41cf74972ef10ac59ffa0e445be69
[]
no_license
aronszucs/cpp-experimentation
e2438e07803f381022f0eacea11e7ca75818739b
21f90f81d5ad7f5e5520b3acc129450ed39024ea
refs/heads/master
2020-06-26T17:31:02.957049
2019-07-30T17:48:37
2019-07-30T17:48:37
199,700,003
0
0
null
null
null
null
UTF-8
C++
false
false
360
h
#ifndef _LIMB_H #define _LIMB_H #include <iostream> #include <string> using namespace std; /** * Limb class; can be used to append Persons with useful appendages. */ class Limb{ private: string name; string type; public: Limb(); Limb(string newName); string getName(); string getType(); string getHoldable(); }; #endif
[ "aron.szucs.miskolc@gmail.com" ]
aron.szucs.miskolc@gmail.com
4acef6d5e9a0877fd5e8d749833f015e80d27989
8dde6f201657946ad0cfeacab41831f681e6bc6f
/C1/c1.hpp
1126104cab8c444cf084d226a31fd6d6d2ab50b8
[]
no_license
peraktong/LEETCODE_Jason
c5d4a524ba69b1b089f18ce4a53dc8f50ccbb88c
06961cc468211b9692cd7a889ee38d1cd4e1d11e
refs/heads/master
2022-04-12T11:34:38.738731
2020-04-07T21:17:04
2020-04-07T21:17:04
219,398,022
0
0
null
null
null
null
UTF-8
C++
false
false
137
hpp
// // c1.hpp // // // Created by caojunzhi on 8/12/17. // // #ifndef c1_hpp #define c1_hpp #include <stdio.h> #endif /* c1_hpp */
[ "caojunzhi@caojunzhisMBP3.fios-router.home" ]
caojunzhi@caojunzhisMBP3.fios-router.home
01e168dedceda286a1d9cf05607f67eae5f5cc25
e0bd2b6974809d3a709f6154c3fa3bb10eb6dd33
/btpm/btpmactionplugin.h
8a5132604ecb6fa93595343a12b57e864f139a6c
[]
no_license
opsidao/summer-of-code-2007
14fc743efa44368a5dc4b1fba7ab2a775e3e771e
3cb54ae0f86216d87ede74062dd570c5e8e048c3
refs/heads/master
2021-01-19T10:57:37.970445
2015-03-12T17:42:24
2015-03-12T17:42:24
32,091,789
0
0
null
null
null
null
UTF-8
C++
false
false
2,074
h
/* * * BTPM assignable action plugin base * * Copyright (C) 2007 Juan González Aguilera <kde-devel@ka-tet> * * * This file is part of btpm (Bluetooth Presence Manager). * * btpm is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * btpm is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with kbluemon; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef _BTPM_ACTION_PLUGIN_BASE_ #define _BTPM_ACTION_PLUGIN_BASE_ #include <QIcon> #include <QWidget> #include <kparts/plugin.h> #include <kgenericfactory.h> class KDE_EXPORT BtpmActionPlugin:public KLibFactory { Q_OBJECT Q_PROPERTY(QString linkedUbi READ linkedUbi WRITE setLinkedUbi) public: BtpmActionPlugin(QObject *parent = 0); QString linkedUbi(); void setLinkedUbi(const QString &ubi); virtual ~BtpmActionPlugin(){}; virtual QString nameForAction() = 0; virtual QString descriptionForAction() = 0; virtual QIcon iconForAction() = 0; virtual void configureAction(QWidget *parent) = 0; virtual void arrivalEvent() = 0; virtual void leaveEvent() = 0; virtual QObject* createObject( QObject * parent = 0, const char * className = "BtpmActionPlugin", const QStringList & args = QStringList()) = 0; private: QString m_linkedUbi; }; Q_DECLARE_INTERFACE(BtpmActionPlugin,"org.kde.bluetooth.BtpmActionPlugin/0.1") #define K_EXPORT_BTPM_ACTION_PLUGIN(name,classname)\ K_EXPORT_COMPONENT_FACTORY(btpm_action_##name,KGenericFactory< classname >("btpm_action_" #name));\ Q_EXPORT_PLUGIN2(btpm_action_##name,classname) #endif
[ "juan.gonzalez@wuaki.tv" ]
juan.gonzalez@wuaki.tv
c049ae661cbd7bff7146118f0ccf08d62b7d86ad
635909383a9ee35ae7c769a7976b6c4f81a68397
/ProcessLib/Deformation/GMatrix.h
6cf11c5bb96f2c60c16d7200b924b374e821a981
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
ThieJan/ogs
84cccbcc2864570bd3f29c5b0e6bbefb035c0045
a527e1a0954c49bfd1d87634d0e353137aa73eff
refs/heads/master
2021-07-26T01:08:43.871700
2018-12-21T14:53:16
2018-12-21T14:53:16
154,638,503
1
0
null
2018-10-25T08:44:21
2018-10-25T08:44:21
null
UTF-8
C++
false
false
2,527
h
/** * \file * * \copyright * Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license * */ #pragma once #include <cmath> namespace ProcessLib { namespace Deformation { /// Fills a G-matrix based on given shape function dN/dx values. template <int DisplacementDim, int NPOINTS, typename N_Type, typename DNDX_Type, typename GMatrixType> void computeGMatrix(DNDX_Type const& dNdx, GMatrixType& g_matrix, const bool is_axially_symmetric, N_Type const& N, const double radius) { static_assert(0 < DisplacementDim && DisplacementDim <= 3, "LinearGMatrix::computeGMatrix: DisplacementDim must be in " "range [1,3]."); g_matrix.setZero(); switch (DisplacementDim) { case 3: // The gradient coordinates are organized in the following order: // (1,1), (1,2), (1,3) // (2,1), (2,2), (2,3) // (3,1), (3,2), (3,3) for (int d = 0; d < DisplacementDim; ++d) { for (int i = 0; i < NPOINTS; ++i) { g_matrix(d + 0 * DisplacementDim, i + 0 * NPOINTS) = dNdx(d, i); g_matrix(d + 1 * DisplacementDim, i + 1 * NPOINTS) = dNdx(d, i); g_matrix(d + 2 * DisplacementDim, i + 2 * NPOINTS) = dNdx(d, i); } } break; case 2: // The gradient coordinates are organized in the following order: // (1,1), (1,2) // (2,1), (2,2) // (3,3) for (int d = 0; d < DisplacementDim; ++d) { for (int i = 0; i < NPOINTS; ++i) { g_matrix(d, i) = dNdx(d, i); g_matrix(d + DisplacementDim, i + NPOINTS) = dNdx(d, i); } } if (is_axially_symmetric) { for (int i = 0; i < NPOINTS; ++i) { g_matrix(4, i) = N[i] / radius; } } break; default: break; } } } // namespace Deformation } // namespace ProcessLib
[ "dmitri.naumov@ufz.de" ]
dmitri.naumov@ufz.de
22eca79d8a94bb3b033450b772d2a65cc2985e4b
3cdbb249012d504b62dcd01fb321d9c42cb36d9b
/src/nmgen-rcn/NMGen/Source/ContoursEx.cpp
5b438acd04d74d3d19c64594a909dfdbfbe158e7
[ "MIT" ]
permissive
wuxinwei/critterai
840d5d011c5ab449e7e56ff7a2548c8c64b5e1cb
74668605053d6a19f9b8c0915b4fb7f2c3ccb44b
refs/heads/master
2021-01-21T19:47:40.296498
2016-04-12T02:45:46
2016-04-12T02:45:46
55,914,561
2
1
null
2016-04-10T18:07:36
2016-04-10T18:07:36
null
UTF-8
C++
false
false
2,570
cpp
/* * Copyright (c) 2011 Stephen A. Pratt * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include <string.h> #include "NMGen.h" #include "RecastAlloc.h" extern "C" { EXPORT_API bool nmcsBuildSet(nmgBuildContext* ctx , rcCompactHeightfield* chf , const float maxError , const int maxEdgeLen , rcContourSet* cset , const int flags) { if (!ctx || !chf || !cset) return false; return rcBuildContours(ctx , *chf , maxError , maxEdgeLen , *cset , flags); } EXPORT_API void nmcsFreeSetData(rcContourSet* cset) { if (!cset || !cset->conts) return; for (int i = 0; i < cset->nconts; ++i) { rcFree(cset->conts[i].verts); rcFree(cset->conts[i].rverts); } rcFree(cset->conts); cset->ch = 0; cset->borderSize = 0; cset->conts = 0; cset->cs = 0; cset->height = 0; cset->nconts = 0; cset->width = 0; memset(&cset->bmin, 0, sizeof(float) * 6); } EXPORT_API bool nmcsGetContour(const rcContourSet* cset , const int index , rcContour* result) { if (!cset || !result || index < 0 || index >= cset->nconts) return false; memcpy(result, &cset->conts[index], sizeof(rcContour)); return true; } }
[ "stevefsp@67e97ef4-0a9b-11df-b317-0f3410dc57f6" ]
stevefsp@67e97ef4-0a9b-11df-b317-0f3410dc57f6
eb4a4ab63799bae12feddfa258aafd21246b0f72
9918dabef0b8194260f76c9f015b7844ee6280e6
/include/robor_controllers/feedback_controller.h
7571e0590bfeba5c9a09394a8a5aea7216360974
[]
no_license
tysik/robor_controllers
5bcc56bb6188abc0be5fa2ee3ca14903534e869d
4f884edcec20f01d15206e54a012641375f01a94
refs/heads/master
2021-01-17T20:54:03.272207
2017-11-08T09:02:28
2017-11-08T09:02:28
95,588,113
0
1
null
null
null
null
UTF-8
C++
false
false
3,157
h
/* * Software License Agreement (BSD License) * * Copyright (c) 2017, Poznan University of Technology * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the Poznan University of Technology nor the names * of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /* * Author: Mateusz Przybyla */ #pragma once #include <ros/ros.h> #include <tf/tf.h> #include <tf/transform_listener.h> #include <geometry_msgs/Twist.h> #include <std_srvs/Empty.h> namespace robor_controllers { class FeedbackController { public: FeedbackController(ros::NodeHandle& nh, ros::NodeHandle& nh_local); ~FeedbackController(); private: bool updateParams(std_srvs::Empty::Request& req, std_srvs::Empty::Response& res); void timerCallback(const ros::TimerEvent& e); void refTwistCallback(const geometry_msgs::Twist::ConstPtr reference_twist_msg); void initialize() { std_srvs::Empty empt; updateParams(empt.request, empt.response); } void scaleControls(double& u, double& v, double& w); void sendZeroControls() { static geometry_msgs::Twist::ConstPtr zero_controls(new geometry_msgs::Twist); controls_pub_.publish(zero_controls); } ros::NodeHandle nh_; ros::NodeHandle nh_local_; ros::ServiceServer params_srv_; ros::Timer timer_; tf::TransformListener tf_ls_; ros::Subscriber reference_twist_sub_; ros::Publisher controls_pub_; geometry_msgs::Twist reference_twist_; // Parameters bool p_active_; bool p_run_; bool p_use_ff_; double p_loop_rate_; double p_sampling_time_; double p_gain_x_; double p_gain_y_; double p_gain_theta_; double p_max_u_; double p_max_v_; double p_max_w_; std::string p_robot_frame_id_; std::string p_reference_frame_id_; }; } // namespace robor_controllers
[ "inz.mateusz.przybyla@gmail.com" ]
inz.mateusz.przybyla@gmail.com
8dd3dc4c2da5b96362330a05bc6b2d7b003383c3
68b3c2fde0d3aecb479137150a75c8ce078021de
/src/framework/engine/components/spotlightcmp.h
18e8812861abeebd893142d65dc23bf11335647e
[]
no_license
giron3s/Insomnium-Engine
1e63bcd61710f60a6e6af8efa69e2792d37a126b
455e8470447847e037c39e09e2f3199ced51adc8
refs/heads/master
2022-08-24T00:46:16.717653
2020-05-29T00:24:04
2020-05-29T00:24:04
267,723,611
0
0
null
null
null
null
UTF-8
C++
false
false
941
h
/******************************************************************************* * Author : giron3s * Copyright : Copyright (C) 2017 Marc Girones Dezsenyi - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * * Brief : SpotLight Component *******************************************************************************/ #pragma once #include "engine/components/object3dcmp.h" namespace Framework { class SpotLight; class SpotLightCmp : public Object3DCmp { public: void Serialize(Json::Value& aSerializer) const override; void Deserialize(const Json::Value& aSerializer) override; Object3D* GetObject3D() const override; SpotLight* GetSpotLight() const { return mSpotLight.get(); } protected: std::unique_ptr<SpotLight> mSpotLight; }; }
[ "giron3s@gmail.com" ]
giron3s@gmail.com
0e1f3847cb379fa0158df2f29d7ff8a23cfe04b0
72cae4e552b34c75f6edb66e3021a6a1a0c603ae
/非实验/工厂模式/工厂模式(4).cpp
15d749b447ee7ebae3f29d89e85080bebcfbf125
[]
no_license
leehaoze/DesignPatterns
0661692d74f7d3fcec61bbf6492d65a7da5da04a
bc01873cb2841f9e83e6d3b6732845e058ee5523
refs/heads/master
2020-06-26T07:18:03.548557
2017-07-12T13:12:10
2017-07-12T13:12:10
97,008,442
1
0
null
null
null
null
UTF-8
C++
false
false
11,698
cpp
#include<iostream> #include<sstream> #include<cstring> #include<string> #include<cmath> #include<cstdlib> #include<iomanip> #include<typeinfo> #include<algorithm> #include<time.h> #include<map> #include<vector> using namespace std; typedef long long ll; typedef unsigned long long llu; #define inf 0x3f3f3f3f #define PI 3.14 const int maxn = 1000 + 8; /* 原料: Dough Sauce Cheese Veggies Pepperoni Clams */ class Dough { public: Dough(){} virtual void show() = 0; }; class ThickCrustDough:virtual public Dough { public: ThickCrustDough() {} void show() { printf(" ThickCrustDough,"); } }; class ThinCrustDough:public Dough { public: ThinCrustDough(){ } void show() { printf(" ThinCrustDough,"); } }; //*********************************** class Sauce { public: Sauce(){} virtual void show() = 0; }; class PlumTomatoSause: public Sauce { public: PlumTomatoSause(){ } void show() { printf(" PlumTomatoSause,");} }; class MarinaraSause:public Sauce { public: MarinaraSause(){ } void show() { printf(" MarinaraSause,");} }; //*********************************** class Cheese { public: Cheese(){} virtual void show() = 0; }; class MozzarellaCheese:public Cheese { public: MozzarellaCheese(){}; void show(){ printf(" MarinaraSause,");} }; class RegginaoCheese:public Cheese { public: RegginaoCheese(){}; void show(){ printf(" MarinaraSause,");} }; //*********************************** class Veggies { public: Veggies(){} virtual void show() = 0; }; class Garlic:public Veggies { public: Garlic(){}; void show(){ printf(" Garlic,");} }; class Onion:public Veggies { public: Onion(){}; void show(){ printf(" Onion,");} }; class Mushroom:public Veggies { public: Mushroom(){}; void show(){ printf(" Mushroom,");} }; class RedPepper:public Veggies { public: RedPepper(){}; void show(){ printf(" RedPepper,");} }; class BlackOlives:public Veggies { public: BlackOlives(){}; void show(){ printf(" BlackOlives,");} }; class Spinach:public Veggies { public: Spinach(){}; void show(){ printf(" Spinach,");} }; class Eggplant:public Veggies { public: Eggplant(){}; void show(){ printf(" Eggplant,");} }; //*********************************** class Pepperoni { public: Pepperoni(){} virtual void show() = 0; }; class SlicedPepperoni:public Pepperoni { public: SlicedPepperoni(){}; void show(){ printf(" SlicedPepperoni,");} }; //*********************************** class Clams { public: Clams(){} virtual void show() = 0; }; class FrozenClams:public Clams { public: FrozenClams(){}; void show(){ printf(" FrozenClams,");} }; class FreshClams:public Clams { public: FreshClams(){}; void show(){ printf(" FreshClams,");} }; //************************************************************************ /* 原料工厂: NYPizzaIngerdientFactory ChicagoPizzaIngerdientFactory */ class PizzaIngerdientFactory{ public: virtual Dough* createDough() = 0; virtual Sauce* createSauce() = 0; virtual Cheese* createCheese() = 0; virtual Veggies** createVeggies() = 0; virtual Pepperoni* createPepperoni() = 0; virtual Clams* createClams() = 0; }; class NYPizzaIngerdientFactory:public PizzaIngerdientFactory { public: Dough* createDough(){ return new ThickCrustDough(); } Sauce* createSauce(){ return new MarinaraSause(); } Cheese* createCheese(){ return new RegginaoCheese(); } Veggies** createVeggies(){ Veggies **veggies = new Veggies* [4]; veggies[0] = new Garlic(); veggies[1] = new Onion(); veggies[2] = new Mushroom(); veggies[3] = new RedPepper(); veggies[4] = NULL; return veggies; } Pepperoni* createPepperoni(){ return new SlicedPepperoni(); } Clams* createClams(){ return new FreshClams(); } }; class ChicagoPizzaIngerdientFactory:public PizzaIngerdientFactory { public: Dough* createDough(){ return new ThickCrustDough(); } Sauce* createSauce(){ return new PlumTomatoSause(); } Cheese* createCheese(){ return new MozzarellaCheese(); } Veggies** createVeggies(){ Veggies **veggies = new Veggies* [3]; veggies[0] = new BlackOlives(); veggies[1] = new Spinach(); veggies[2] = new Eggplant(); veggies[3] = NULL; return veggies; } Pepperoni* createPepperoni(){ return new SlicedPepperoni(); } Clams* createClams(){ return new FrozenClams(); } }; //************************************************************************ /* 披萨: ChessPizza ClamPizza VeggiePizza PepperoniPizza */ class Pizza { protected: string name_; Dough *dough_; Sauce *sauce_; Cheese *cheese_; Veggies **veggies_; Pepperoni *pepperoni_; Clams *clams_; public: Pizza(){} public: void bake(){ printf("Bake for 25 minutes at 350.\n"); } void cut(){ printf("Cutting the pizza into diagonal slices.\n"); } void box(){ printf("Place pizza in offical PizzaStore box.\n"); } void name(string s){name_ = s;} string name() const{ return name_;} virtual void prepare() = 0; virtual void show() = 0; }; class ChessPizza:public Pizza { protected: PizzaIngerdientFactory *ingredientFactory_; public: ChessPizza(PizzaIngerdientFactory *i):ingredientFactory_(i){} void prepare() { cout <<"Preparing: " << name() << endl; dough_ = ingredientFactory_->createDough(); sauce_ = ingredientFactory_->createSauce(); cheese_ = ingredientFactory_->createCheese(); } void show(){ cout << "Our Ingredient: " ; dough_->show(); sauce_->show(); cheese_->show(); } }; class ClamPizza:public Pizza { protected: PizzaIngerdientFactory *ingredientFactory_; public: ClamPizza(PizzaIngerdientFactory *i):ingredientFactory_(i){} void prepare() { cout <<"Preparing: " << name() << endl; dough_ = ingredientFactory_->createDough(); sauce_ = ingredientFactory_->createSauce(); cheese_ = ingredientFactory_->createCheese(); clams_ = ingredientFactory_->createClams(); } void show(){ cout << "Our Ingredient: " ; dough_->show(); sauce_->show(); cheese_->show(); clams_->show(); } }; class VeggiePizza:public Pizza { protected: PizzaIngerdientFactory *ingredientFactory_; public: VeggiePizza(PizzaIngerdientFactory *i):ingredientFactory_(i){} void prepare() { cout <<"Preparing: " << name() << endl; dough_ = ingredientFactory_->createDough(); sauce_ = ingredientFactory_->createSauce(); cheese_ = ingredientFactory_->createCheese(); veggies_ = ingredientFactory_->createVeggies(); } void show(){ cout << "Our Ingredient: " ; dough_->show(); sauce_->show(); cheese_->show(); int pos = 0; while(veggies_[pos] != NULL) { veggies_[pos++]->show(); } } }; class PepperoniPizza:public Pizza { protected: PizzaIngerdientFactory *ingredientFactory_; public: PepperoniPizza(PizzaIngerdientFactory *i):ingredientFactory_(i){} void prepare() { cout <<"Preparing: " << name() << endl; dough_ = ingredientFactory_->createDough(); sauce_ = ingredientFactory_->createSauce(); cheese_ = ingredientFactory_->createCheese(); pepperoni_ = ingredientFactory_->createPepperoni(); } void show(){ cout << "Our Ingredient: " ; dough_->show(); sauce_->show(); cheese_->show(); pepperoni_->show(); } }; //************************************************************************ /* 披萨店: NYPizzaStore ChicagoPizzaStore */ class PizzaStore { protected: Pizza *pizza_; PizzaIngerdientFactory *ingerdientFactory_; public: Pizza* pizza () const { return pizza_;} PizzaStore(){} void orderPizza(string s) { pizza_ = createPizza(s); pizza_->bake(); pizza_->cut(); pizza_->box(); } virtual Pizza* createPizza(string s) = 0; }; class NYPizzaStore:public PizzaStore { public: Pizza* createPizza(string s) { Pizza *pizza = NULL; ingerdientFactory_ = new NYPizzaIngerdientFactory(); if(s == "chess"){ pizza = new ChessPizza(ingerdientFactory_); pizza->name("New York Style Chess Pizza"); } else if(s == "veggie") { pizza = new VeggiePizza(ingerdientFactory_); pizza->name("New York Style Veggie Pizza"); }else if(s == "clam"){ pizza = new ClamPizza(ingerdientFactory_); pizza->name("New York Style Clam Pizza"); }else //if( s == "pepperoni") { pizza = new PepperoniPizza(ingerdientFactory_); pizza->name("New York Style Pepperoni Pizza"); } return pizza; } }; class ChicagoPizzaStore:public PizzaStore { public: Pizza* createPizza(string s) { Pizza *pizza = NULL; ingerdientFactory_ = new ChicagoPizzaIngerdientFactory(); if(s == "chess"){ pizza = new ChessPizza(ingerdientFactory_); pizza->name("Chicago Style Chess Pizza"); } else if(s == "veggie") { pizza = new VeggiePizza(ingerdientFactory_); pizza->name("Chicago Style Veggie Pizza"); }else if(s == "clam"){ pizza = new ClamPizza(ingerdientFactory_); pizza->name("Chicago Style Clam Pizza"); }else //if( s == "pepperoni") { pizza = new PepperoniPizza(ingerdientFactory_); pizza->name("Chicago Style Pepperoni Pizza"); } return pizza; } }; //************************************************************************ int main() { printf("Waiter: Welcome to our PizzaStore!\n"); printf("Waiter: Here is the menu,sir/madam.\n"); printf("Waiter: May I take your order now?\n\n"); PizzaStore *pizzaStore; ///The First Costomer printf("Costomer: I need a New York Pizza.\n"); printf("Costomer: I am eager to taste the chess pizza.\n"); cout << "Our process: \n"; pizzaStore = new NYPizzaStore(); pizzaStore->orderPizza("chess"); pizzaStore->pizza()->prepare(); pizzaStore->pizza()->show(); cout << endl<<endl; ///The Second Costomer printf("Costomer: I need a Chicago Pizza.\n"); printf("Costomer: I am eager to taste the veggie pizza.\n"); cout << "Our process: \n"; pizzaStore = new ChicagoPizzaStore(); pizzaStore->orderPizza("veggie"); pizzaStore->pizza()->prepare(); pizzaStore->pizza()->show(); return 0; } /* 输出结果: Waiter: Welcome to our PizzaStore! Waiter: Here is the menu,sir/madam. Waiter: May I take your order now? Costomer: I need a New York Pizza. Costomer: I am eager to taste the chess pizza. Our process: Bake for 25 minutes at 350. Cutting the pizza into diagonal slices. Place pizza in offical PizzaStore box. Preparing: New York Style Chess Pizza Our Ingredient: ThickCrustDough, MarinaraSause, MarinaraSause, Costomer: I need a Chicago Pizza. Costomer: I am eager to taste the veggie pizza. Our process: Bake for 25 minutes at 350. Cutting the pizza into diagonal slices. Place pizza in offical PizzaStore box. Preparing: Chicago Style Veggie Pizza Our Ingredient: ThickCrustDough, PlumTomatoSause, MarinaraSause, BlackOlives, Spinach, Eggplant, */
[ "leehaoze@lihaozedeMacBook-Pro.local" ]
leehaoze@lihaozedeMacBook-Pro.local
0abedfaefe153f915dd3e194d4485a946dfca67c
4909fcb3501add9420bfa92584782bd21def813c
/mycode/4.cc
d2a127904ad870cd373a1bcdd8800c1a94c8a5d9
[]
no_license
zhanghliang/video_code
378ae231c409077d0dba8639c7adf93cafbafb86
0d7c52e97c738d532bb40f4c1efa8e16e445c00d
refs/heads/master
2023-03-08T05:56:41.727105
2020-11-27T15:29:59
2020-11-27T15:29:59
300,679,379
0
0
null
null
null
null
UTF-8
C++
false
false
67
cc
#include <iostream> asdasdjshfgkjhgasfdh asdaskjdhakjgfdhkashjdgf
[ "961133096@qq.com" ]
961133096@qq.com
e58a7a49ad85a4e852cb1742ea0d2c4839a48500
868e8628acaa0bf276134f9cc3ced379679eab10
/squareDrop/0.248/U
3bbb0212ae6066e67294f7b439c98bac9d7dad71
[]
no_license
stigmn/droplet
921af6851f88c0acf8b1cd84f5e2903f1d0cb87a
1649ceb0a9ce5abb243fb77569211558c2f0dc96
refs/heads/master
2020-04-04T20:08:37.912624
2015-11-25T11:20:32
2015-11-25T11:20:32
45,102,907
0
0
null
2015-10-28T09:46:30
2015-10-28T09:46:29
null
UTF-8
C++
false
false
270,310
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.248"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 10000 ( (-1.48324e-07 1.2543e-07 0) (-1.17781e-06 3.54104e-07 0) (-1.94537e-06 1.62882e-07 0) (-1.45487e-06 -1.8949e-07 0) (5.65293e-07 -5.33187e-07 0) (3.94989e-06 -8.04978e-07 0) (8.30237e-06 -9.6772e-07 0) (1.31441e-05 -1.01647e-06 0) (1.79682e-05 -9.53706e-07 0) (2.22758e-05 -7.84118e-07 0) (2.55885e-05 -5.13825e-07 0) (2.7454e-05 -1.52489e-07 0) (2.7463e-05 2.91773e-07 0) (2.52687e-05 8.03658e-07 0) (2.06072e-05 1.36303e-06 0) (1.3323e-05 1.94459e-06 0) (3.38883e-06 2.51996e-06 0) (-9.08122e-06 3.05955e-06 0) (-2.38314e-05 3.53497e-06 0) (-4.04798e-05 3.92228e-06 0) (-5.85473e-05 4.20462e-06 0) (-7.74966e-05 4.37374e-06 0) (-9.67756e-05 4.43042e-06 0) (-0.000115856 4.38366e-06 0) (-0.000134262 4.24816e-06 0) (-0.000151595 4.04116e-06 0) (-0.000167534 3.77947e-06 0) (-0.000181848 3.47809e-06 0) (-0.000194386 3.15151e-06 0) (-0.000205093 2.81773e-06 0) (-0.00021403 2.50411e-06 0) (-0.000221414 2.24945e-06 0) (-0.000227633 2.09474e-06 0) (-0.00023321 2.06249e-06 0) (-0.000238694 2.14094e-06 0) (-0.000244549 2.29884e-06 0) (-0.000251121 2.50444e-06 0) (-0.000258655 2.73745e-06 0) (-0.000267341 2.99079e-06 0) (-0.000277358 3.26721e-06 0) (-0.000288901 3.57403e-06 0) (-0.000302187 3.91718e-06 0) (-0.00031744 4.29744e-06 0) (-0.00033487 4.70925e-06 0) (-0.000354644 5.14162e-06 0) (-0.000376864 5.5799e-06 0) (-0.000401549 6.00767e-06 0) (-0.000428628 6.40791e-06 0) (-0.000457941 6.764e-06 0) (-0.00048924 7.06019e-06 0) (-2.25521e-07 1.02764e-06 0) (-1.58894e-06 2.02684e-06 0) (-1.30898e-06 3.00279e-07 0) (2.06225e-06 -2.47971e-06 0) (8.93345e-06 -5.26962e-06 0) (1.89177e-05 -7.50976e-06 0) (3.11357e-05 -8.90796e-06 0) (4.44692e-05 -9.35266e-06 0) (5.77128e-05 -8.81981e-06 0) (6.96477e-05 -7.32813e-06 0) (7.90826e-05 -4.92264e-06 0) (8.48923e-05 -1.67634e-06 0) (8.6056e-05 2.30788e-06 0) (8.17078e-05 6.8851e-06 0) (7.11987e-05 1.18651e-05 0) (5.4154e-05 1.70165e-05 0) (3.0524e-05 2.20782e-05 0) (6.14112e-07 2.67769e-05 0) (-3.49132e-05 3.08518e-05 0) (-7.50757e-05 3.40823e-05 0) (-0.000118643 3.6313e-05 0) (-0.000164236 3.74675e-05 0) (-0.000210433 3.75522e-05 0) (-0.000255875 3.6646e-05 0) (-0.000299343 3.48802e-05 0) (-0.000339815 3.24137e-05 0) (-0.000376492 2.94117e-05 0) (-0.000408794 2.60362e-05 0) (-0.000436364 2.24547e-05 0) (-0.000459078 1.88655e-05 0) (-0.000477099 1.55302e-05 0) (-0.000490967 1.27741e-05 0) (-0.000501655 1.09132e-05 0) (-0.000510486 1.01186e-05 0) (-0.000518859 1.0328e-05 0) (-0.000527985 1.13357e-05 0) (-0.000538799 1.29228e-05 0) (-0.000552005 1.49407e-05 0) (-0.000568195 1.73316e-05 0) (-0.000587938 2.01073e-05 0) (-0.000611847 2.33073e-05 0) (-0.000640573 2.69585e-05 0) (-0.000674777 3.10479e-05 0) (-0.000715066 3.55137e-05 0) (-0.000761928 4.02482e-05 0) (-0.000815677 4.51094e-05 0) (-0.000876411 4.99335e-05 0) (-0.000943993 5.45467e-05 0) (-0.00101804 5.87743e-05 0) (-0.00109793 6.24483e-05 0) (1.57939e-08 1.39093e-06 0) (4.88629e-07 1.61811e-06 0) (4.25895e-06 -3.27967e-06 0) (1.2633e-05 -1.01684e-05 0) (2.58752e-05 -1.69678e-05 0) (4.33697e-05 -2.24271e-05 0) (6.39081e-05 -2.585e-05 0) (8.59571e-05 -2.69141e-05 0) (0.000107833 -2.55147e-05 0) (0.000127803 -2.16678e-05 0) (0.000144149 -1.54694e-05 0) (0.00015523 -7.09312e-06 0) (0.000159548 3.19319e-06 0) (0.000155822 1.50146e-05 0) (0.000143083 2.78776e-05 0) (0.000120767 4.11789e-05 0) (8.87912e-05 5.42328e-05 0) (4.7607e-05 6.63195e-05 0) (-1.79549e-06 7.67507e-05 0) (-5.79371e-05 8.49445e-05 0) (-0.000118958 9.04927e-05 0) (-0.000182777 9.31999e-05 0) (-0.000247256 9.30893e-05 0) (-0.000310368 9.03753e-05 0) (-0.00037032 8.54101e-05 0) (-0.000425634 7.86185e-05 0) (-0.000475179 7.04431e-05 0) (-0.000518157 6.13182e-05 0) (-0.000554083 5.16887e-05 0) (-0.000582781 4.20709e-05 0) (-0.000604463 3.31387e-05 0) (-0.000619897 2.57327e-05 0) (-0.000630557 2.06802e-05 0) (-0.000638529 1.84401e-05 0) (-0.000646018 1.88617e-05 0) (-0.000654883 2.14369e-05 0) (-0.000666527 2.56374e-05 0) (-0.000682016 3.11125e-05 0) (-0.000702277 3.77337e-05 0) (-0.000728242 4.55336e-05 0) (-0.000760919 5.46012e-05 0) (-0.000801391 6.49861e-05 0) (-0.000850736 7.66368e-05 0) (-0.000909941 8.93775e-05 0) (-0.000979798 0.000102915 0) (-0.00106082 0.000116861 0) (-0.0011532 0.000130764 0) (-0.00125674 0.00014414 0) (-0.00137087 0.000156501 0) (-0.00149463 0.000167374 0) (3.86612e-07 4.04265e-07 0) (3.5742e-06 -2.15065e-06 0) (1.1944e-05 -1.17847e-05 0) (2.62884e-05 -2.40931e-05 0) (4.65304e-05 -3.59921e-05 0) (7.17965e-05 -4.55023e-05 0) (0.000100621 -5.1448e-05 0) (0.000131178 -5.3238e-05 0) (0.000161449 -5.06456e-05 0) (0.000189329 -4.36581e-05 0) (0.000212704 -3.24146e-05 0) (0.000229525 -1.72032e-05 0) (0.000237896 1.51112e-06 0) (0.000236172 2.30553e-05 0) (0.000223086 4.65335e-05 0) (0.000197872 7.08359e-05 0) (0.000160386 9.46892e-05 0) (0.00011118 0.000116749 0) (5.15282e-05 0.000135724 0) (-1.66395e-05 0.000150527 0) (-9.08843e-05 0.000160398 0) (-0.000168474 0.000164985 0) (-0.000246629 0.000164353 0) (-0.000322747 0.00015893 0) (-0.000394575 0.0001494 0) (-0.000460314 0.000136577 0) (-0.000518636 0.000121298 0) (-0.000568639 0.00010436 0) (-0.000609781 8.65494e-05 0) (-0.000641817 6.87546e-05 0) (-0.000664891 5.21747e-05 0) (-0.000679856 3.83989e-05 0) (-0.000688654 2.90797e-05 0) (-0.000694269 2.51605e-05 0) (-0.000699842 2.62936e-05 0) (-0.000707823 3.14515e-05 0) (-0.000719906 3.96374e-05 0) (-0.000737336 5.02365e-05 0) (-0.000761235 6.30663e-05 0) (-0.00079282 7.82297e-05 0) (-0.000833475 9.59101e-05 0) (-0.000884703 0.000116197 0) (-0.000948011 0.00013898 0) (-0.00102477 0.000163912 0) (-0.00111606 0.000190424 0) (-0.00122262 0.000217768 0) (-0.0013447 0.000245074 0) (-0.00148205 0.000271408 0) (-0.00163393 0.00029583 0) (-0.00179906 0.000317432 0) (7.78475e-07 -2.32791e-06 0) (6.89933e-06 -9.98733e-06 0) (2.01489e-05 -2.59087e-05 0) (4.06458e-05 -4.4721e-05 0) (6.78587e-05 -6.24871e-05 0) (0.000100635 -7.65584e-05 0) (0.000137294 -8.52908e-05 0) (0.000175796 -8.78084e-05 0) (0.000213885 -8.37316e-05 0) (0.000249184 -7.29865e-05 0) (0.000279271 -5.57271e-05 0) (0.00030176 -3.23413e-05 0) (0.000314393 -3.49758e-06 0) (0.000315172 2.97995e-05 0) (0.000302514 6.61789e-05 0) (0.000275413 0.000103913 0) (0.00023361 0.000140992 0) (0.000177719 0.000175272 0) (0.000109273 0.000204687 0) (3.06571e-05 0.000227486 0) (-5.50883e-05 0.00024246 0) (-0.000144563 0.000249077 0) (-0.000234343 0.000247489 0) (-0.000321282 0.000238437 0) (-0.000402743 0.00022308 0) (-0.000476714 0.000202764 0) (-0.000541811 0.000178834 0) (-0.000597169 0.000152506 0) (-0.00064228 0.000124893 0) (-0.0006768 9.71931e-05 0) (-0.0007006 7.11539e-05 0) (-0.000714345 4.93983e-05 0) (-0.000720405 3.49284e-05 0) (-0.000723038 2.95239e-05 0) (-0.000726669 3.23555e-05 0) (-0.000734274 4.14517e-05 0) (-0.000747566 5.51071e-05 0) (-0.000767686 7.24035e-05 0) (-0.000795762 9.31905e-05 0) (-0.000833209 0.000117763 0) (-0.000881775 0.000146493 0) (-0.000943413 0.00017955 0) (-0.00102009 0.000216749 0) (-0.00111359 0.000257507 0) (-0.00122531 0.000300881 0) (-0.00135619 0.000345644 0) (-0.00150655 0.000390379 0) (-0.0016761 0.000433575 0) (-0.00186389 0.000473709 0) (-0.00206833 0.000509321 0) (1.14533e-06 -6.77017e-06 0) (1.00155e-05 -2.18521e-05 0) (2.78488e-05 -4.55372e-05 0) (5.40708e-05 -7.17876e-05 0) (8.76745e-05 -9.60065e-05 0) (0.000127237 -0.000114984 0) (0.000170902 -0.000126658 0) (0.000216478 -0.000129873 0) (0.000261545 -0.000124074 0) (0.000303529 -0.000109084 0) (0.000339762 -8.50306e-05 0) (0.000367556 -5.236e-05 0) (0.000384306 -1.19227e-05 0) (0.000387633 3.49398e-05 0) (0.000375581 8.63318e-05 0) (0.000346828 0.000139809 0) (0.000300929 0.000192477 0) (0.000238502 0.000241198 0) (0.000161332 0.000282913 0) (7.23081e-05 0.000315025 0) (-2.48346e-05 0.000335759 0) (-0.000125927 0.000344381 0) (-0.00022682 0.000341205 0) (-0.0003238 0.000327443 0) (-0.00041388 0.000304917 0) (-0.00049495 0.000275702 0) (-0.000565734 0.000241784 0) (-0.000625607 0.000204839 0) (-0.000674274 0.000166203 0) (-0.000711294 0.00012712 0) (-0.000735905 8.97385e-05 0) (-0.000748031 5.80855e-05 0) (-0.000750338 3.74894e-05 0) (-0.000749141 3.1292e-05 0) (-0.000750887 3.74866e-05 0) (-0.000758929 5.23196e-05 0) (-0.000774499 7.30271e-05 0) (-0.000798219 9.84138e-05 0) (-0.000830997 0.000128578 0) (-0.000874392 0.000164239 0) (-0.000930555 0.000206119 0) (-0.00100197 0.000254532 0) (-0.00109114 0.000309192 0) (-0.00120031 0.000369199 0) (-0.00133123 0.00043312 0) (-0.00148503 0.000499121 0) (-0.00166213 0.000565109 0) (-0.00186217 0.000628866 0) (-0.002084 0.000688167 0) (-0.00232574 0.00074088 0) (1.4548e-06 -1.27204e-05 0) (1.26641e-05 -3.73049e-05 0) (3.4406e-05 -7.0061e-05 0) (6.54874e-05 -0.000104535 0) (0.000104478 -0.000135668 0) (0.00014973 -0.000159812 0) (0.000199263 -0.00017455 0) (0.000250798 -0.000178461 0) (0.000301817 -0.000170793 0) (0.000349613 -0.000151221 0) (0.00039132 -0.000119779 0) (0.000423971 -7.69089e-05 0) (0.0004446 -2.35874e-05 0) (0.000450393 3.85334e-05 0) (0.000438928 0.000107014 0) (0.00040845 0.000178607 0) (0.000358207 0.000249367 0) (0.000288741 0.000314925 0) (0.00020208 0.000370948 0) (0.000101712 0.00041373 0) (-7.75457e-06 0.000440775 0) (-0.000121182 0.000451138 0) (-0.000233539 0.000445419 0) (-0.00034045 0.000425522 0) (-0.000438589 0.000394215 0) (-0.000525859 0.000354571 0) (-0.000601315 0.000309423 0) (-0.000664871 0.000260961 0) (-0.000716818 0.000210556 0) (-0.000756752 0.000158894 0) (-0.000782718 0.000107965 0) (-0.000792744 6.3626e-05 0) (-0.000789332 3.54265e-05 0) (-0.000782468 2.98846e-05 0) (-0.000782102 4.21493e-05 0) (-0.000791473 6.50644e-05 0) (-0.00081038 9.43931e-05 0) (-0.000838339 0.000128886 0) (-0.000875821 0.000169341 0) (-0.000924564 0.000217294 0) (-0.000987267 0.000274048 0) (-0.0010671 0.000340125 0) (-0.00116722 0.000415095 0) (-0.0012904 0.000497625 0) (-0.00143878 0.000585655 0) (-0.00161372 0.000676599 0) (-0.0018157 0.000767549 0) (-0.00204428 0.000855452 0) (-0.00229813 0.000937259 0) (-0.00257505 0.00101005 0) (1.69726e-06 -1.98916e-05 0) (1.47225e-05 -5.56682e-05 0) (3.94743e-05 -9.8543e-05 0) (7.4264e-05 -0.000141852 0) (0.000117339 -0.000180251 0) (0.000166902 -0.000209778 0) (0.000220924 -0.000227723 0) (0.000277109 -0.000232418 0) (0.000332918 -0.000222885 0) (0.000385576 -0.000198594 0) (0.00043207 -0.000159403 0) (0.000469175 -0.000105651 0) (0.000493538 -3.83441e-05 0) (0.000501838 4.06261e-05 0) (0.000491054 0.000128297 0) (0.00045883 0.000220552 0) (0.00040392 0.000312208 0) (0.000326647 0.00039736 0) (0.000229253 0.000470003 0) (0.00011597 0.00052494 0) (-7.43062e-06 0.000558729 0) (-0.000134524 0.000570228 0) (-0.000259138 0.000560501 0) (-0.000376073 0.000532473 0) (-0.000481638 0.00049026 0) (-0.000573875 0.000438331 0) (-0.000652431 0.000380682 0) (-0.000718181 0.000320181 0) (-0.00077272 0.000258049 0) (-0.000816216 0.000193213 0) (-0.000844762 0.000126041 0) (-0.000852168 6.44597e-05 0) (-0.0008394 2.59574e-05 0) (-0.000823391 2.39351e-05 0) (-0.000820535 4.67211e-05 0) (-0.000832485 8.0698e-05 0) (-0.000855796 0.000119947 0) (-0.000888144 0.000163861 0) (-0.000929487 0.000214784 0) (-0.000981979 0.000275656 0) (-0.00104917 0.00034863 0) (-0.00113514 0.000434474 0) (-0.00124388 0.000532501 0) (-0.00137876 0.000640787 0) (-0.00154233 0.000756469 0) (-0.00173616 0.000876048 0) (-0.00196079 0.000995657 0) (-0.00221572 0.00111127 0) (-0.00249944 0.00121891 0) (-0.00280944 0.00131473 0) (1.87261e-06 -2.79654e-05 0) (1.61377e-05 -7.61423e-05 0) (4.28658e-05 -0.00012985 0) (8.00191e-05 -0.000182391 0) (0.00012565 -0.000228294 0) (0.000177916 -0.000263393 0) (0.000234831 -0.000284744 0) (0.000294171 -0.000290441 0) (0.000353468 -0.000279253 0) (0.00040996 -0.000250375 0) (0.000460555 -0.000203383 0) (0.000501804 -0.000138378 0) (0.000529954 -5.62452e-05 0) (0.000541091 4.10237e-05 0) (0.000531433 0.000150024 0) (0.00049778 0.000265738 0) (0.000438111 0.000381551 0) (0.000352279 0.000489624 0) (0.000242649 0.000581709 0) (0.000114394 0.000650525 0) (-2.50979e-05 0.000691356 0) (-0.00016764 0.000702903 0) (-0.000305545 0.000686973 0) (-0.000432549 0.000647967 0) (-0.000544535 0.000591912 0) (-0.000639807 0.000525234 0) (-0.000718866 0.000453576 0) (-0.000784008 0.000380925 0) (-0.000839385 0.000308528 0) (-0.000887221 0.000231385 0) (-0.00092101 0.000144828 0) (-0.000925919 5.81496e-05 0) (-0.000897715 3.90873e-06 0) (-0.000866803 1.12545e-05 0) (-0.000861728 5.19887e-05 0) (-0.00087862 0.000100534 0) (-0.000907502 0.000150163 0) (-0.000943654 0.000202593 0) (-0.000986854 0.000263152 0) (-0.00104027 0.000336939 0) (-0.00110878 0.000427189 0) (-0.00119772 0.000534832 0) (-0.001312 0.000658716 0) (-0.00145567 0.000796085 0) (-0.00163167 0.000943063 0) (-0.00184177 0.00109506 0) (-0.00208656 0.00124711 0) (-0.00236546 0.00139409 0) (-0.00267678 0.00153095 0) (-0.00301775 0.00165287 0) (1.98158e-06 -3.66078e-05 0) (1.68741e-05 -9.78522e-05 0) (4.44422e-05 -0.000162712 0) (8.24589e-05 -0.000224622 0) (0.000128921 -0.000278128 0) (0.000182062 -0.000318952 0) (0.000240044 -0.000343969 0) (0.000300826 -0.000351046 0) (0.000362114 -0.000338671 0) (0.000421274 -0.000305682 0) (0.00047523 -0.000251247 0) (0.000520386 -0.000175049 0) (0.000552604 -7.76351e-05 0) (0.000567308 3.913e-05 0) (0.000559766 0.000171579 0) (0.00052561 0.00031384 0) (0.000461627 0.000457688 0) (0.00036676 0.000592858 0) (0.000243264 0.000708016 0) (9.75061e-05 0.000792853 0) (-6.08019e-05 0.000840858 0) (-0.000221013 0.000850728 0) (-0.000373442 0.000825393 0) (-0.000510422 0.000771371 0) (-0.000627317 0.00069737 0) (-0.000722832 0.000612511 0) (-0.000798482 0.000524695 0) (-0.000858178 0.000439906 0) (-0.000910472 0.000361109 0) (-0.000962987 0.000276007 0) (-0.0010072 0.000167209 0) (-0.00101205 4.15255e-05 0) (-0.000959107 -3.99577e-05 0) (-0.000904718 -1.07466e-05 0) (-0.00090024 6.0387e-05 0) (-0.000926632 0.000126743 0) (-0.000962084 0.00018516 0) (-0.00100009 0.000243219 0) (-0.00104152 0.000311353 0) (-0.00109163 0.000397526 0) (-0.00115723 0.000506041 0) (-0.00124517 0.000637683 0) (-0.0013614 0.000790462 0) (-0.00151056 0.000960473 0) (-0.00169592 0.00114259 0) (-0.00191942 0.00133096 0) (-0.00218166 0.00151938 0) (-0.00248201 0.00170153 0) (-0.00281862 0.00187121 0) (-0.00318847 0.00202249 0) (2.02176e-06 -4.54672e-05 0) (1.68879e-05 -0.000119856 0) (4.40644e-05 -0.00019574 0) (8.12993e-05 -0.00026685 0) (0.00012668 -0.000327876 0) (0.000178639 -0.000374513 0) (0.0002356 -0.000403506 0) (0.000295827 -0.000412509 0) (0.000357331 -0.000399701 0) (0.000417746 -0.000363492 0) (0.000474167 -0.000302496 0) (0.00052298 -0.00021576 0) (0.000559749 -0.000103192 0) (0.000579213 3.38136e-05 0) (0.000575502 0.000191656 0) (0.000542687 0.000363807 0) (0.000475756 0.000540343 0) (0.000372 0.000708018 0) (0.000233026 0.000851166 0) (6.6678e-05 0.000954859 0) (-0.000113854 0.00100997 0) (-0.000294466 0.00101561 0) (-0.000462892 0.000976352 0) (-0.000609613 0.000901703 0) (-0.000729378 0.00080411 0) (-0.000821582 0.000696305 0) (-0.000888797 0.000588922 0) (-0.000935753 0.000490913 0) (-0.000976862 0.000412447 0) (-0.00103148 0.000331413 0) (-0.0010942 0.00020117 0) (-0.00110678 1.14177e-05 0) (-0.00101696 -0.000123184 0) (-0.000928395 -4.35413e-05 0) (-0.00093312 7.91608e-05 0) (-0.000976435 0.000163076 0) (-0.00101783 0.000224091 0) (-0.00105306 0.000282003 0) (-0.00108683 0.000354551 0) (-0.00112794 0.000452521 0) (-0.00118561 0.000580675 0) (-0.00126823 0.000739 0) (-0.00138261 0.000924136 0) (-0.00153385 0.00113067 0) (-0.00172543 0.001352 0) (-0.00195934 0.00158088 0) (-0.00223621 0.00180978 0) (-0.00255539 0.00203113 0) (-0.00291491 0.00223748 0) (-0.00331158 0.00242171 0) (1.98764e-06 -5.41674e-05 0) (1.61261e-05 -0.000141139 0) (4.15883e-05 -0.000227426 0) (7.62635e-05 -0.000307213 0) (0.000118469 -0.000375446 0) (0.000166954 -0.000427874 0) (0.000220518 -0.00046116 0) (0.000277846 -0.000472777 0) (0.000337405 -0.000460588 0) (0.000397277 -0.000422516 0) (0.000454936 -0.000356485 0) (0.000506984 -0.000260653 0) (0.000548877 -0.000133917 0) (0.000574752 2.32949e-05 0) (0.000577478 0.000207994 0) (0.000549138 0.000413461 0) (0.000482111 0.000628224 0) (0.0003708 0.000835579 0) (0.000215005 0.00101369 0) (2.42949e-05 0.00114021 0) (-0.000182712 0.00120205 0) (-0.000387038 0.00119988 0) (-0.000573262 0.00114055 0) (-0.000729385 0.00103769 0) (-0.000849481 0.000909002 0) (-0.000934368 0.000771995 0) (-0.000987966 0.000639799 0) (-0.00101395 0.000524149 0) (-0.00102963 0.0004514 0) (-0.00107189 0.000397822 0) (-0.00115892 0.000265151 0) (-0.00119794 -2.92864e-05 0) (-0.00106353 -0.000275001 0) (-0.000934057 -8.23576e-05 0) (-0.000966729 0.000125227 0) (-0.00103504 0.000212345 0) (-0.00107488 0.000262012 0) (-0.00109722 0.000311672 0) (-0.00111483 0.000385791 0) (-0.00114048 0.000496015 0) (-0.00118522 0.000646221 0) (-0.00125848 0.000834718 0) (-0.00136758 0.0010562 0) (-0.00151776 0.00130343 0) (-0.00171251 0.00156822 0) (-0.00195386 0.00184189 0) (-0.00224247 0.00211556 0) (-0.00257773 0.00238035 0) (-0.0029577 0.00262752 0) (-0.00337911 0.00284868 0) (1.87233e-06 -6.23042e-05 0) (1.45381e-05 -0.000160619 0) (3.6894e-05 -0.000256158 0) (6.71296e-05 -0.000343699 0) (0.000103918 -0.000418542 0) (0.000146422 -0.000476558 0) (0.000193906 -0.000514393 0) (0.000245591 -0.000529387 0) (0.000300547 -0.000519122 0) (0.000357515 -0.000481019 0) (0.000414631 -0.000412212 0) (0.000469048 -0.000309733 0) (0.000516476 -0.000171032 0) (0.000550735 5.0918e-06 0) (0.000563484 0.000217098 0) (0.000544452 0.000458958 0) (0.000482469 0.000718282 0) (0.000367091 0.000974928 0) (0.000193944 0.00119834 0) (-2.57488e-05 0.00135354 0) (-0.000264494 0.00142114 0) (-0.000496468 0.00140636 0) (-0.000702725 0.00131889 0) (-0.000867682 0.00117783 0) (-0.00098476 0.00100841 0) (-0.00105796 0.000834779 0) (-0.00109342 0.000670367 0) (-0.0010937 0.000529475 0) (-0.00107233 0.000457659 0) (-0.00106354 0.00044582 0) (-0.00114092 0.000376078 0) (-0.00122947 -4.97793e-05 0) (-0.00109231 -0.000514369 0) (-0.000963241 -9.35456e-05 0) (-0.00105157 0.000224413 0) (-0.00112608 0.00025971 0) (-0.00113172 0.000280256 0) (-0.00112133 0.000318475 0) (-0.00111324 0.000396266 0) (-0.00111865 0.000522236 0) (-0.00114735 0.000698512 0) (-0.00120866 0.000921484 0) (-0.00131 0.00118364 0) (-0.00145652 0.00147583 0) (-0.00165165 0.00178831 0) (-0.00189746 0.00211103 0) (-0.00219479 0.00243382 0) (-0.00254322 0.00274651 0) (-0.002941 0.00303901 0) (-0.00338496 0.00330156 0) (1.67027e-06 -6.94512e-05 0) (1.20971e-05 -0.00017717 0) (2.99325e-05 -0.000280257 0) (5.38092e-05 -0.000374195 0) (8.28558e-05 -0.000454703 0) (0.000116709 -0.000517841 0) (0.000155158 -0.000560307 0) (0.000198036 -0.000579395 0) (0.000245143 -0.000572493 0) (0.000296092 -0.000536588 0) (0.00035001 -0.000468023 0) (0.000405071 -0.000362537 0) (0.000457828 -0.000215699 0) (0.000502377 -2.38777e-05 0) (0.000529575 0.000214035 0) (0.000526699 0.000494165 0) (0.000478187 0.000804632 0) (0.000365961 0.00112321 0) (0.000176956 0.00140781 0) (-7.74144e-05 0.00160094 0) (-0.000354495 0.00167204 0) (-0.000618602 0.00163836 0) (-0.000847389 0.00151221 0) (-0.00101948 0.00132002 0) (-0.00112834 0.00109816 0) (-0.00118556 0.000881443 0) (-0.00120279 0.000676997 0) (-0.00118032 0.000500666 0) (-0.00112421 0.000410539 0) (-0.00103116 0.000400671 0) (-0.000968014 0.000444589 0) (-0.00102558 3.51409e-05 0) (-0.00112028 -0.000605386 0) (-0.0012245 6.1155e-06 0) (-0.00127883 0.00027765 0) (-0.00121277 0.00022453 0) (-0.00113326 0.000241706 0) (-0.00108438 0.000290802 0) (-0.00105754 0.000383463 0) (-0.00104846 0.000530624 0) (-0.00106363 0.000736759 0) (-0.00111328 0.00099793 0) (-0.0012058 0.00130451 0) (-0.00134666 0.00164542 0) (-0.00153949 0.00200941 0) (-0.00178665 0.00238523 0) (-0.00208938 0.00276149 0) (-0.00244773 0.0031267 0) (-0.00286036 0.00346941 0) (-0.00332444 0.00377837 0) (1.38059e-06 -7.5178e-05 0) (8.82351e-06 -0.000189668 0) (2.07798e-05 -0.000298052 0) (3.64408e-05 -0.000396568 0) (5.54522e-05 -0.000481392 0) (7.79416e-05 -0.000548821 0) (0.000104222 -0.000595679 0) (0.000134754 -0.000619335 0) (0.000170138 -0.000617147 0) (0.000211017 -0.00058586 0) (0.000257837 -0.00052118 0) (0.000310364 -0.000417586 0) (0.000366844 -0.000268458 0) (0.000422712 -6.68814e-05 0) (0.000469055 0.000192465 0) (0.000491144 0.00051012 0) (0.000468633 0.000877234 0) (0.000372384 0.00127359 0) (0.000174055 0.00164331 0) (-0.000121247 0.00189075 0) (-0.000445535 0.00195993 0) (-0.000747395 0.00189986 0) (-0.00100098 0.00171962 0) (-0.00117447 0.00146007 0) (-0.00126472 0.00117159 0) (-0.0012985 0.000911646 0) (-0.00130308 0.000669375 0) (-0.00127931 0.00045538 0) (-0.00122909 0.00033459 0) (-0.00114772 0.000287474 0) (-0.00103447 0.000394589 0) (-0.00094696 0.000100141 0) (-0.00107273 -0.000422119 0) (-0.00119998 9.86682e-05 0) (-0.00111398 0.000213579 0) (-0.00101899 0.000108462 0) (-0.000969423 0.00017041 0) (-0.00094619 0.000255526 0) (-0.000934534 0.000365343 0) (-0.000926002 0.000530321 0) (-0.000932807 0.000764567 0) (-0.000971681 0.00106471 0) (-0.00105444 0.00141769 0) (-0.00118744 0.00180992 0) (-0.00137485 0.00222851 0) (-0.00161966 0.00266106 0) (-0.00192387 0.00309503 0) (-0.00228831 0.00351759 0) (-0.00271232 0.00391583 0) (-0.00319366 0.00427688 0) (1.01292e-06 -7.90799e-05 0) (4.80926e-06 -0.000197067 0) (9.68883e-06 -0.000307984 0) (1.54825e-05 -0.000408805 0) (2.23669e-05 -0.000496145 0) (3.09195e-05 -0.000566558 0) (4.19081e-05 -0.00061707 0) (5.63454e-05 -0.000645265 0) (7.55752e-05 -0.000648709 0) (0.000101307 -0.000624236 0) (0.000135518 -0.000567323 0) (0.000180121 -0.000471548 0) (0.000236118 -0.000328186 0) (0.000301952 -0.000126399 0) (0.000370991 0.000145242 0) (0.000428066 0.000495074 0) (0.000448694 0.000921204 0) (0.00038694 0.00141598 0) (0.000190759 0.00190229 0) (-0.000148586 0.00223094 0) (-0.000526337 0.00228837 0) (-0.000875553 0.00220018 0) (-0.00116068 0.00193806 0) (-0.00132028 0.00158479 0) (-0.00136743 0.00121381 0) (-0.0013633 0.000926918 0) (-0.00135657 0.000668384 0) (-0.00135219 0.00044516 0) (-0.00136246 0.000322995 0) (-0.00137646 0.000244015 0) (-0.00122806 0.000192226 0) (-0.000979629 -3.82832e-05 0) (-0.000960905 -0.000327504 0) (-0.000872682 -9.73981e-05 0) (-0.000590038 5.88554e-05 0) (-0.000549822 0.000157471 0) (-0.000682148 0.000225459 0) (-0.000761372 0.000284109 0) (-0.000784023 0.0003696 0) (-0.0007757 0.000530014 0) (-0.000768673 0.000782907 0) (-0.000791335 0.00112032 0) (-0.000860017 0.00152061 0) (-0.000980982 0.00196597 0) (-0.00115844 0.00244167 0) (-0.00139604 0.00293427 0) (-0.00169681 0.00343017 0) (-0.00206264 0.00391518 0) (-0.00249383 0.0043748 0) (-0.00298896 0.00479441 0) (5.89247e-07 -8.0802e-05 0) (2.33911e-07 -0.000198508 0) (-2.87251e-06 -0.000308759 0) (-8.21424e-06 -0.000409185 0) (-1.51252e-05 -0.000496774 0) (-2.26741e-05 -0.000568309 0) (-2.97841e-05 -0.000621055 0) (-3.50834e-05 -0.000652951 0) (-3.67054e-05 -0.000662042 0) (-3.20816e-05 -0.000645712 0) (-1.77831e-05 -0.000599884 0) (1.0514e-05 -0.000518096 0) (5.75564e-05 -0.000390399 0) (0.000126998 -0.000202286 0) (0.000218151 6.53784e-05 0) (0.00031969 0.000433435 0) (0.00040882 0.000910823 0) (0.000420375 0.0015292 0) (0.000247973 0.00218871 0) (-0.000151882 0.00263584 0) (-0.000586103 0.0026384 0) (-0.000982009 0.00255631 0) (-0.00131061 0.00217137 0) (-0.0014396 0.00167058 0) (-0.00140816 0.00118853 0) (-0.0013324 0.00090627 0) (-0.00127569 0.000640834 0) (-0.00120408 0.000405976 0) (-0.00109602 0.000269074 0) (-0.00094749 0.000157752 0) (-0.000741734 -5.9992e-05 0) (-0.000576578 -0.000162222 0) (-0.000873166 -7.78503e-06 0) (-0.00118661 -0.000277942 0) (-0.00105949 -0.000128586 0) (-0.000896997 0.000175145 0) (-0.000789336 0.00024179 0) (-0.000724086 0.000290393 0) (-0.000683302 0.000353686 0) (-0.000633841 0.000506084 0) (-0.000588747 0.000776635 0) (-0.000580748 0.00115562 0) (-0.000627459 0.00160693 0) (-0.000730278 0.00210806 0) (-0.000891703 0.00264336 0) (-0.0011158 0.00319932 0) (-0.00140697 0.00376158 0) (-0.00176847 0.00431458 0) (-0.00220176 0.0048421 0) (-0.00270643 0.00532765 0) (1.20433e-07 -8.01102e-05 0) (-4.65058e-06 -0.000193415 0) (-1.62002e-05 -0.0002995 0) (-3.337e-05 -0.000396503 0) (-5.50658e-05 -0.000481646 0) (-8.01367e-05 -0.000551857 0) (-0.000107406 -0.000604617 0) (-0.000135446 -0.000638284 0) (-0.000162282 -0.000651613 0) (-0.000185014 -0.000643009 0) (-0.000199349 -0.000609693 0) (-0.000199053 -0.000546556 0) (-0.000175542 -0.000444432 0) (-0.000118221 -0.00028738 0) (-1.69313e-05 -4.93729e-05 0) (0.000129408 0.000308045 0) (0.000306058 0.000810826 0) (0.00044033 0.00156408 0) (0.000371596 0.00247428 0) (-5.97402e-05 0.00313187 0) (-0.000609814 0.00303096 0) (-0.00109642 0.00298643 0) (-0.00143084 0.00239786 0) (-0.00147255 0.00169034 0) (-0.00137315 0.00109722 0) (-0.00122107 0.000791603 0) (-0.00107903 0.000544626 0) (-0.000961985 0.000281732 0) (-0.000835586 0.00011462 0) (-0.000700417 -1.68478e-05 0) (-0.000596405 -0.000180109 0) (-0.000643834 -7.20456e-05 0) (-0.000749905 0.000339494 0) (-0.000856713 -0.000182217 0) (-0.000875777 -0.000259867 0) (-0.000753443 4.02857e-05 0) (-0.000660702 0.000126224 0) (-0.000608399 0.000221452 0) (-0.00055917 0.000292791 0) (-0.000478774 0.000437251 0) (-0.000383822 0.000727839 0) (-0.000335347 0.00116098 0) (-0.000356386 0.00167041 0) (-0.00043655 0.00223016 0) (-0.000575497 0.00282701 0) (-0.000778589 0.00344942 0) (-0.00105269 0.00408279 0) (-0.00140304 0.00470993 0) (-0.00183243 0.00531262 0) (-0.00234155 0.0058725 0) (-3.49283e-07 -7.69362e-05 0) (-9.49036e-06 -0.000181607 0) (-2.93921e-05 -0.000279918 0) (-5.83256e-05 -0.000370291 0) (-9.48575e-05 -0.000449995 0) (-0.00013776 -0.000515944 0) (-0.000185982 -0.000565713 0) (-0.000238392 -0.000598015 0) (-0.000293459 -0.000612355 0) (-0.000348782 -0.000608433 0) (-0.000400419 -0.000585476 0) (-0.00044185 -0.000541271 0) (-0.000462556 -0.000470319 0) (-0.000446336 -0.000360059 0) (-0.000370151 -0.000184228 0) (-0.000205202 0.000107858 0) (6.14502e-05 0.000577441 0) (0.000398349 0.00141001 0) (0.000573881 0.00267714 0) (0.000145007 0.00377916 0) (-0.000582543 0.00349973 0) (-0.00119881 0.00352479 0) (-0.00146521 0.00251374 0) (-0.00126038 0.00154818 0) (-0.000994002 0.000931723 0) (-0.000805903 0.000616236 0) (-0.000668577 0.000413533 0) (-0.000575182 0.000167233 0) (-0.000532655 2.95792e-05 0) (-0.000532249 -8.44405e-05 0) (-0.000575516 -0.00016681 0) (-0.000626969 1.88059e-05 0) (-0.000526123 0.000211859 0) (-0.000453171 -6.82732e-05 0) (-0.000509599 -0.000296122 0) (-0.000430627 -8.59372e-05 0) (-0.000354271 9.53785e-05 0) (-0.000399236 0.000202098 0) (-0.000407771 0.000236447 0) (-0.000304678 0.000322707 0) (-0.000142826 0.000624715 0) (-4.74576e-05 0.00113474 0) (-4.65138e-05 0.00170958 0) (-0.00010177 0.00232745 0) (-0.000210856 0.00298527 0) (-0.000383626 0.00367641 0) (-0.000631556 0.00438601 0) (-0.000962741 0.00509436 0) (-0.00138137 0.00578039 0) (-0.00188898 0.00642395 0) (-7.71518e-07 -7.13911e-05 0) (-1.38839e-05 -0.000163399 0) (-4.14173e-05 -0.000250456 0) (-8.11702e-05 -0.00033103 0) (-0.000131456 -0.000402225 0) (-0.000191073 -0.000460728 0) (-0.000259258 -0.000503971 0) (-0.000335466 -0.000530768 0) (-0.00041912 -0.00054112 0) (-0.000509232 -0.00053582 0) (-0.00060379 -0.000516129 0) (-0.00069868 -0.000483422 0) (-0.000785843 -0.000438058 0) (-0.000850118 -0.000376328 0) (-0.000864533 -0.000283449 0) (-0.000783806 -0.000118044 0) (-0.000541495 0.000202139 0) (-5.14401e-05 0.000917618 0) (0.000666351 0.00243301 0) (0.000773571 0.00454902 0) (-0.000532343 0.00472027 0) (-0.00165851 0.00405311 0) (-0.00136573 0.00214897 0) (-0.000709072 0.0011261 0) (-0.000328711 0.000647732 0) (-0.000139803 0.000443435 0) (-5.36143e-05 0.000309671 0) (-5.06465e-05 0.000146402 0) (-0.000123335 7.21065e-05 0) (-0.000240037 -5.95871e-06 0) (-0.00037014 -8.20941e-05 0) (-0.000405797 -1.84271e-05 0) (-0.000262576 1.57043e-06 0) (-7.76008e-05 -0.000105342 0) (-4.54898e-05 -0.0002602 0) (-7.25698e-05 -0.000158028 0) (-8.7085e-05 0.000141826 0) (-0.000186586 0.000270287 0) (-0.000242441 0.000189349 0) (-9.99318e-05 0.000138937 0) (0.000144531 0.000450739 0) (0.000282688 0.00108518 0) (0.000293649 0.00172622 0) (0.000267476 0.0023935 0) (0.000200226 0.00310796 0) (7.06229e-05 0.00386978 0) (-0.000140057 0.0046618 0) (-0.000442877 0.00545984 0) (-0.000843089 0.00623867 0) (-0.00134262 0.00697616 0) (-1.1002e-06 -6.3799e-05 0) (-1.74311e-05 -0.000139631 0) (-5.12422e-05 -0.000212344 0) (-9.99707e-05 -0.000280265 0) (-0.00016173 -0.000340129 0) (-0.00023536 -0.000388161 0) (-0.000320404 -0.000421342 0) (-0.00041697 -0.000438173 0) (-0.000525645 -0.000438577 0) (-0.000647362 -0.000423634 0) (-0.000783177 -0.000395561 0) (-0.000933845 -0.000357925 0) (-0.00109901 -0.0003155 0) (-0.0012753 -0.000273249 0) (-0.00145257 -0.000232336 0) (-0.00160671 -0.000177293 0) (-0.00168166 -4.18907e-05 0) (-0.00155893 0.000406499 0) (-0.00101395 0.00177774 0) (-0.000639224 0.00501759 0) (-0.000577756 0.00551549 0) (-3.32171e-05 0.00392977 0) (0.000519875 0.00164159 0) (0.000677856 0.000781598 0) (0.000703451 0.000483765 0) (0.000640754 0.000394799 0) (0.00054655 0.0003257 0) (0.000427088 0.000236026 0) (0.000291077 0.000199025 0) (0.000140863 0.000148585 0) (-1.84475e-05 3.39155e-05 0) (-7.8592e-05 -7.09743e-05 0) (3.7428e-05 -0.000179798 0) (0.000207933 -0.000253536 0) (0.000308806 -0.000271087 0) (0.000341932 -0.000133103 0) (0.000340203 0.000221604 0) (0.000200536 0.000444165 0) (6.33763e-05 0.000160383 0) (0.000184717 -0.000107653 0) (0.000466218 0.00020903 0) (0.000625699 0.00103844 0) (0.00063941 0.00171876 0) (0.000660898 0.0024126 0) (0.000657741 0.00317827 0) (0.000588537 0.0040157 0) (0.000427317 0.00489926 0) (0.00016232 0.0057975 0) (-0.000211519 0.00668025 0) (-0.000695867 0.00752265 0) (-1.29662e-06 -5.46843e-05 0) (-1.9793e-05 -0.000111636 0) (-5.79876e-05 -0.000167566 0) (-0.000113069 -0.000220571 0) (-0.000182956 -0.000266894 0) (-0.000266438 -0.000302106 0) (-0.000363179 -0.000322448 0) (-0.000473685 -0.000325673 0) (-0.000599357 -0.000310947 0) (-0.000742611 -0.000278564 0) (-0.000907062 -0.000229944 0) (-0.00109794 -0.000167788 0) (-0.00132279 -9.61524e-05 0) (-0.00159232 -2.05217e-05 0) (-0.0019211 5.32075e-05 0) (-0.00232607 0.0001236 0) (-0.0028165 0.000213187 0) (-0.00330192 0.000425808 0) (-0.00330357 0.00116771 0) (-0.00188869 0.0040155 0) (-0.000146976 0.00470583 0) (0.00111167 0.0029594 0) (0.00194735 0.00121476 0) (0.00193298 0.000798458 0) (0.00160608 0.000662506 0) (0.00126733 0.000590713 0) (0.000994001 0.000509369 0) (0.000770684 0.000410945 0) (0.000605966 0.000342261 0) (0.000483275 0.000296389 0) (0.000336458 0.00017288 0) (0.000251013 -8.8194e-05 0) (0.000288658 -0.000296324 0) (0.000355691 -0.000364458 0) (0.000434911 -0.00036579 0) (0.00056518 -0.000207067 0) (0.000809821 0.000129382 0) (0.000872214 0.000697252 0) (0.000746363 0.000184237 0) (0.000667679 -0.000193118 0) (0.000759687 -5.71644e-05 0) (0.000925549 0.000986632 0) (0.000995763 0.00165952 0) (0.00109806 0.00235834 0) (0.00117809 0.00317667 0) (0.00118178 0.00410053 0) (0.00107882 0.00508852 0) (0.000859079 0.00609908 0) (0.000519589 0.00709743 0) (5.86701e-05 0.00805632 0) (-1.33651e-06 -4.47238e-05 0) (-2.07518e-05 -8.11213e-05 0) (-6.10829e-05 -0.000118682 0) (-0.000119378 -0.000155337 0) (-0.000193336 -0.000186838 0) (-0.000281509 -0.000208028 0) (-0.000383349 -0.000214259 0) (-0.000499216 -0.000202288 0) (-0.000630481 -0.000170145 0) (-0.00077965 -0.000116748 0) (-0.000950592 -4.17456e-05 0) (-0.00114891 5.48093e-05 0) (-0.00138255 0.000172913 0) (-0.00166268 0.000313267 0) (-0.00200512 0.000478057 0) (-0.00243627 0.000670289 0) (-0.00300777 0.000881237 0) (-0.00376679 0.00104667 0) (-0.0042416 0.000845974 0) (-0.00242748 0.000845388 0) (0.000748358 0.00242444 0) (0.00331294 0.000993163 0) (0.00396569 0.00149232 0) (0.00289256 0.00143531 0) (0.00210445 0.00122427 0) (0.00158059 0.00101089 0) (0.00121452 0.000818724 0) (0.000945146 0.000640734 0) (0.000767972 0.000484848 0) (0.000663845 0.000415658 0) (0.000530223 0.000340846 0) (0.000419428 -8.17495e-05 0) (0.000391396 -0.000320382 0) (0.00037332 -0.000400062 0) (0.000396784 -0.00048056 0) (0.000552266 -0.00044469 0) (0.000879981 -0.000240198 0) (0.00143277 0.000505464 0) (0.00172455 0.000202137 0) (0.00158459 -0.000103424 0) (0.00150851 -0.000178122 0) (0.00148029 0.00108511 0) (0.00150247 0.0016045 0) (0.00164435 0.002256 0) (0.00179203 0.0031099 0) (0.00186586 0.00412422 0) (0.00182193 0.00522657 0) (0.00165185 0.00635875 0) (0.00135542 0.00748175 0) (0.000928304 0.00856913 0) (-1.21514e-06 -3.46699e-05 0) (-2.02505e-05 -4.99837e-05 0) (-6.03676e-05 -6.85498e-05 0) (-0.000118585 -8.83704e-05 0) (-0.000192352 -0.000104858 0) (-0.00027979 -0.000112209 0) (-0.00037978 -0.00010494 0) (-0.000491963 -7.8879e-05 0) (-0.000616769 -3.10556e-05 0) (-0.00075538 4.06591e-05 0) (-0.000909612 0.000137692 0) (-0.00108152 0.000260918 0) (-0.00127221 0.000410544 0) (-0.00147846 0.000585494 0) (-0.00168473 0.000781454 0) (-0.00184924 0.00098645 0) (-0.00188865 0.00116948 0) (-0.00170874 0.00123372 0) (-0.00104255 0.000291554 0) (-0.000530892 -0.000924909 0) (-0.000105434 0.000671039 0) (0.000697876 -0.000557727 0) (0.00129086 0.00179994 0) (0.00153686 0.00187986 0) (0.00152604 0.00162293 0) (0.00135635 0.0013657 0) (0.00111318 0.00111235 0) (0.00087977 0.000857131 0) (0.000741302 0.000576982 0) (0.000735162 0.000431317 0) (0.000771444 0.00043183 0) (0.000633401 8.11677e-05 0) (0.000398518 -0.000212409 0) (0.000264 -0.000340262 0) (0.000183418 -0.000510367 0) (0.000164872 -0.00062461 0) (0.000288125 -0.00064252 0) (0.000913013 -0.000336503 0) (0.00125594 0.000357699 0) (0.0008575 0.000179026 0) (0.000529916 -0.000109494 0) (0.000963338 0.000778445 0) (0.00171649 0.00139618 0) (0.00210936 0.0020483 0) (0.0024158 0.00295044 0) (0.00260418 0.00407421 0) (0.00263984 0.00530578 0) (0.0025329 0.00656738 0) (0.00229424 0.00782107 0) (0.00191655 0.00905017 0) (-9.47408e-07 -2.52602e-05 0) (-1.83968e-05 -2.00913e-05 0) (-5.61054e-05 -1.9985e-05 0) (-0.00011118 -2.34141e-05 0) (-0.000180821 -2.57339e-05 0) (-0.000262598 -2.0714e-05 0) (-0.000354583 -2.25208e-06 0) (-0.00045535 3.44756e-05 0) (-0.000563904 9.30166e-05 0) (-0.000679517 0.000175886 0) (-0.000801471 0.000284529 0) (-0.000928535 0.000418857 0) (-0.00105785 0.0005758 0) (-0.00118266 0.00074613 0) (-0.00128924 0.000909199 0) (-0.00135239 0.00102726 0) (-0.00133688 0.00104178 0) (-0.00114674 0.000865376 0) (-0.000900116 -0.000250616 0) (-0.000756301 -0.000804872 0) (-2.60819e-05 -3.03017e-05 0) (0.00045862 -0.00073857 0) (0.000579637 0.00131842 0) (0.00100002 0.00163114 0) (0.00111543 0.00161555 0) (0.00105101 0.00151655 0) (0.000883359 0.00132475 0) (0.00066603 0.0010675 0) (0.000455554 0.000684811 0) (0.000278768 0.000462513 0) (0.000257678 0.000377632 0) (0.000227114 0.000309988 0) (5.96919e-05 -2.8192e-05 0) (-5.33492e-05 -0.000224833 0) (-0.000189982 -0.000381732 0) (-0.000307388 -0.000604445 0) (-0.000362988 -0.000711673 0) (-0.000570992 -0.00057352 0) (-0.000653765 0.000487961 0) (-0.000585039 0.000454962 0) (-0.00073965 2.52363e-06 0) (-9.7576e-05 -0.000440168 0) (0.00126601 0.000547367 0) (0.00225225 0.00145782 0) (0.00293431 0.00254164 0) (0.00335158 0.00387677 0) (0.00351287 0.00529138 0) (0.00349314 0.00670193 0) (0.00333506 0.00809406 0) (0.00303231 0.00948029 0) (-5.64152e-07 -1.71345e-05 0) (-1.54325e-05 6.91604e-06 0) (-4.89022e-05 2.45387e-05 0) (-9.82902e-05 3.62777e-05 0) (-0.000160605 4.64602e-05 0) (-0.000232849 6.14475e-05 0) (-0.000312219 8.76703e-05 0) (-0.000396123 0.000130253 0) (-0.000482029 0.000192867 0) (-0.000567204 0.000277845 0) (-0.000648319 0.000385978 0) (-0.000720808 0.000515611 0) (-0.000777779 0.000660412 0) (-0.000808225 0.000804978 0) (-0.000794514 0.000918307 0) (-0.000704073 0.000949496 0) (-0.000500138 0.000828646 0) (3.61266e-06 0.000381411 0) (0.000334687 -0.000237189 0) (-1.48896e-06 -0.000724158 0) (-0.000109006 -0.000527698 0) (-0.000519632 -0.000298724 0) (-0.00036468 0.00050294 0) (0.000515133 0.001259 0) (0.00068134 0.00152494 0) (0.000702978 0.00157397 0) (0.000639495 0.00145871 0) (0.000530132 0.00125708 0) (0.000296766 0.000949873 0) (-1.26402e-06 0.00068889 0) (-0.000226806 0.000452106 0) (-0.000349762 0.000399797 0) (-0.000388864 2.92488e-05 0) (-0.000426751 -0.000157332 0) (-0.000494063 -0.00024571 0) (-0.000616275 -0.000476295 0) (-0.000712424 -0.000599532 0) (-0.000690202 -0.00037431 0) (-0.000366594 0.000159652 0) (0.000242613 0.000146903 0) (0.000823128 -0.000252854 0) (0.00115703 -0.00124948 0) (0.00179268 -0.000601246 0) (0.00282644 0.00056481 0) (0.00368829 0.00188268 0) (0.00425278 0.00354422 0) (0.00449616 0.00517994 0) (0.0045538 0.00674652 0) (0.00449168 0.00827466 0) (0.00429329 0.00983299 0) (-1.04502e-07 -1.07775e-05 0) (-1.1677e-05 2.97657e-05 0) (-3.95664e-05 6.31004e-05 0) (-8.14206e-05 8.82251e-05 0) (-0.000134165 0.000108739 0) (-0.000194328 0.00013082 0) (-0.000258356 0.000160941 0) (-0.000322665 0.000204212 0) (-0.000383476 0.000264053 0) (-0.000436524 0.000342192 0) (-0.000476675 0.000438321 0) (-0.000497451 0.000548966 0) (-0.000490651 0.00066515 0) (-0.000446669 0.000768384 0) (-0.000356008 0.000823621 0) (-0.000208997 0.00077589 0) (-5.87654e-05 0.00061235 0) (2.04579e-05 7.411e-05 0) (-3.875e-05 -9.19522e-05 0) (-0.000179055 -0.000477934 0) (1.82095e-05 -0.000643543 0) (-1.6456e-05 0.000219377 0) (-7.31788e-05 -0.000167386 0) (0.000218114 0.000978598 0) (0.000311293 0.00142422 0) (0.000344857 0.00158632 0) (0.000289006 0.00153962 0) (0.000190192 0.00137112 0) (8.53096e-05 0.00116561 0) (-1.01055e-05 0.000884441 0) (-0.000108478 0.000636321 0) (-0.000244205 0.000510497 0) (-0.000433592 0.000130445 0) (-0.00063076 -5.77236e-05 0) (-0.000757823 -0.000176324 0) (-0.000813184 -0.000392621 0) (-0.000821961 -0.000614204 0) (-0.000692147 -0.000600391 0) (-0.000248228 -0.000446477 0) (0.000506408 -0.000631476 0) (0.00134019 -0.000978206 0) (0.00201409 -0.00158749 0) (0.00264707 -0.0014328 0) (0.00351627 -0.000362349 0) (0.00454266 0.00105082 0) (0.00529454 0.0031387 0) (0.00563795 0.00499299 0) (0.00575791 0.0067234 0) (0.00578734 0.00834435 0) (0.00571979 0.010084 0) (3.91568e-07 -6.49694e-06 0) (-7.46322e-06 4.76107e-05 0) (-2.89432e-05 9.4418e-05 0) (-6.21338e-05 0.000130826 0) (-0.000104024 0.000159317 0) (-0.000150852 0.000185605 0) (-0.000198567 0.000215987 0) (-0.000242952 0.000255371 0) (-0.000279502 0.000306753 0) (-0.000303184 0.000371116 0) (-0.000308144 0.000447039 0) (-0.000287405 0.00052964 0) (-0.000232648 0.000608902 0) (-0.000135069 0.000667893 0) (8.40443e-06 0.000681218 0) (0.000171927 0.000618976 0) (0.000321114 0.000520535 0) (0.000388954 0.000134 0) (0.000483595 -8.62974e-05 0) (0.00033633 -0.000260244 0) (-0.000225513 -0.000511687 0) (-0.000485356 0.000235704 0) (-0.000461555 -0.000196584 0) (-0.000351045 0.000808767 0) (-9.60255e-05 0.00128983 0) (5.73023e-05 0.00155085 0) (8.13891e-05 0.00159628 0) (3.78453e-06 0.00145608 0) (-9.09786e-05 0.00123317 0) (-0.000132231 0.000935116 0) (-0.000189706 0.000734507 0) (-0.000277042 0.000640263 0) (-0.000429878 0.000368208 0) (-0.000673133 0.000145332 0) (-0.000864738 -7.77067e-05 0) (-0.000937688 -0.000389262 0) (-0.000906624 -0.000692895 0) (-0.000714941 -0.000916959 0) (-0.000216948 -0.0010932 0) (0.000551189 -0.00147088 0) (0.00143722 -0.00183009 0) (0.00224903 -0.00225331 0) (0.00299814 -0.00216609 0) (0.00404045 -0.00147125 0) (0.00533834 -6.55964e-05 0) (0.00631955 0.00266926 0) (0.00682021 0.00470772 0) (0.00703617 0.00664241 0) (0.00721285 0.00824157 0) (0.00733837 0.0102012 0) (8.90058e-07 -4.43581e-06 0) (-3.08231e-06 6.00051e-05 0) (-1.77707e-05 0.000117805 0) (-4.17823e-05 0.000163279 0) (-7.23287e-05 0.000197454 0) (-0.000105584 0.000225384 0) (-0.000137313 0.000253081 0) (-0.000163106 0.000285226 0) (-0.000178365 0.000324463 0) (-0.00017821 0.000371243 0) (-0.000157439 0.000423506 0) (-0.000110711 0.000475885 0) (-3.32184e-05 0.000518793 0) (7.73986e-05 0.000538404 0) (0.000218352 0.000519986 0) (0.000374218 0.000459888 0) (0.000547042 0.000367877 0) (0.00068493 7.87301e-05 0) (0.000694876 -0.000141161 0) (0.00050536 0.000142786 0) (0.000112274 5.30351e-05 0) (-0.000168474 0.00026098 0) (-0.000351421 -3.23586e-05 0) (-0.000369429 0.000579746 0) (-0.000139191 0.00107798 0) (2.40267e-05 0.00144797 0) (9.35234e-05 0.00159512 0) (2.24735e-05 0.00155992 0) (-0.000109002 0.00129654 0) (-0.000132636 0.00093446 0) (-0.000175827 0.000814164 0) (-0.000298034 0.000740813 0) (-0.000456141 0.000578707 0) (-0.000695305 0.000378648 0) (-0.000925114 6.8707e-05 0) (-0.00104478 -0.00036967 0) (-0.00102554 -0.0008095 0) (-0.000802638 -0.00127228 0) (-0.000293902 -0.00175187 0) (0.000489736 -0.0023212 0) (0.00147567 -0.00279211 0) (0.00252661 -0.0031308 0) (0.00357606 -0.00308314 0) (0.00459248 -0.00256349 0) (0.00554416 -0.00122266 0) (0.00709926 0.0011684 0) (0.00837338 0.00427294 0) (0.00859123 0.00657269 0) (0.00886534 0.00793348 0) (0.0091624 0.010191 0) (1.36599e-06 -4.60415e-06 0) (1.25423e-06 6.6822e-05 0) (-6.58259e-06 0.00013304 0) (-2.13278e-05 0.000185377 0) (-4.05588e-05 0.000223151 0) (-6.05985e-05 0.000250636 0) (-7.73115e-05 0.000273558 0) (-8.64699e-05 0.000296484 0) (-8.38572e-05 0.000321965 0) (-6.53224e-05 0.000350381 0) (-2.69283e-05 0.000379816 0) (3.46173e-05 0.000405659 0) (0.000120986 0.000420403 0) (0.000230226 0.000414579 0) (0.000354644 0.000380176 0) (0.000485757 0.000317388 0) (0.000617017 0.000223525 0) (0.000677913 4.03447e-05 0) (0.000552366 1.74051e-05 0) (0.000418783 0.000299485 0) (0.000341647 0.000305734 0) (0.000287998 0.000372541 0) (0.000166741 0.00019238 0) (5.2441e-05 0.000491168 0) (0.000142325 0.000923829 0) (0.00028044 0.00134332 0) (0.000355862 0.00158521 0) (0.000260481 0.00170611 0) (7.96261e-05 0.001404 0) (3.37247e-05 0.000915171 0) (-0.000102216 0.000966003 0) (-0.000342103 0.000896361 0) (-0.000503032 0.000775263 0) (-0.000777506 0.000659162 0) (-0.00108712 0.000268399 0) (-0.00125785 -0.000312875 0) (-0.00126576 -0.000931734 0) (-0.00104862 -0.00165037 0) (-0.000552066 -0.00240052 0) (0.000222168 -0.00321714 0) (0.00126411 -0.00388908 0) (0.00251632 -0.00431044 0) (0.00390898 -0.00430721 0) (0.00531274 -0.0036681 0) (0.00658055 -0.00226602 0) (0.00756675 -0.000248493 0) (0.00846299 0.00354225 0) (0.00966137 0.00583775 0) (0.0106496 0.00741848 0) (0.0110674 0.0100362 0) (1.80172e-06 -6.93911e-06 0) (5.42426e-06 6.81382e-05 0) (4.3278e-06 0.000140194 0) (-1.28089e-06 0.000197259 0) (-9.45069e-06 0.000236775 0) (-1.68165e-05 0.000262187 0) (-1.95576e-05 0.000278993 0) (-1.3878e-05 0.000291812 0) (3.79501e-06 0.000303386 0) (3.66599e-05 0.000314438 0) (8.73275e-05 0.00032373 0) (0.000157371 0.000327999 0) (0.000246521 0.000322249 0) (0.000351549 0.000301102 0) (0.000466137 0.000261316 0) (0.000581673 0.000201946 0) (0.000686207 0.000130551 0) (0.000723385 6.4798e-05 0) (0.000601246 0.000229806 0) (0.000499306 0.000308948 0) (0.00049746 0.00033918 0) (0.000500921 0.000373802 0) (0.000463728 0.000315473 0) (0.000406119 0.000500082 0) (0.000457017 0.000814535 0) (0.000618861 0.00119316 0) (0.000775388 0.00154127 0) (0.00073173 0.00186983 0) (0.000553751 0.00158831 0) (0.000395191 0.00105615 0) (-0.000124614 0.00148272 0) (-0.000572328 0.00104692 0) (-0.000594915 0.000875279 0) (-0.000859814 0.00102199 0) (-0.00125303 0.00051465 0) (-0.00148813 -0.000210592 0) (-0.00160337 -0.000994676 0) (-0.00151422 -0.00198258 0) (-0.00109937 -0.00303116 0) (-0.00034404 -0.00413206 0) (0.000757323 -0.00510137 0) (0.002182 -0.00575895 0) (0.00385076 -0.00589471 0) (0.00560032 -0.00518295 0) (0.00723574 -0.00357547 0) (0.00866541 -0.00108445 0) (0.0101282 0.00226722 0) (0.0114553 0.00460894 0) (0.0122916 0.00679422 0) (0.0128625 0.00969294 0) (2.20175e-06 -1.13393e-05 0) (9.41096e-06 6.41214e-05 0) (1.48958e-05 0.000139446 0) (1.82598e-05 0.000199161 0) (2.09223e-05 0.000238731 0) (2.58202e-05 0.000260774 0) (3.63266e-05 0.000270642 0) (5.56745e-05 0.000273151 0) (8.67087e-05 0.000271454 0) (0.000131703 0.000266876 0) (0.000192165 0.000259079 0) (0.000268505 0.000246232 0) (0.000359529 0.000225575 0) (0.000461714 0.000194953 0) (0.000567994 0.00015508 0) (0.000664101 0.000111388 0) (0.000724497 8.14901e-05 0) (0.000710155 0.000107905 0) (0.00068447 0.000312472 0) (0.000703141 0.000298621 0) (0.000719804 0.000331506 0) (0.000729991 0.000364798 0) (0.00070587 0.000363491 0) (0.00064867 0.000530134 0) (0.000632185 0.000751653 0) (0.000710793 0.00103542 0) (0.000819315 0.00146068 0) (0.000747539 0.00205128 0) (0.000704172 0.00166117 0) (0.000486454 0.0014233 0) (0.00021777 0.00190341 0) (0.000226891 0.00115954 0) (-0.000102337 0.00117883 0) (-0.000721923 0.00151607 0) (-0.00121399 0.00082152 0) (-0.00160928 2.7815e-05 0) (-0.00196854 -0.000878715 0) (-0.00213623 -0.00214271 0) (-0.00192695 -0.00358047 0) (-0.0012522 -0.00506099 0) (-8.96527e-05 -0.0064298 0) (0.00145776 -0.00740002 0) (0.00327998 -0.00776121 0) (0.0052209 -0.00703073 0) (0.0071418 -0.00531762 0) (0.00898613 -0.00264717 0) (0.0107295 0.000640547 0) (0.0122009 0.00350614 0) (0.0132726 0.00605495 0) (0.0141832 0.00908892 0) (2.57293e-06 -1.7701e-05 0) (1.32541e-05 5.49257e-05 0) (2.52301e-05 0.000130931 0) (3.75186e-05 0.000191227 0) (5.09812e-05 0.000229243 0) (6.80629e-05 0.000246793 0) (9.16095e-05 0.000249156 0) (0.000124237 0.000241465 0) (0.00016806 0.000227416 0) (0.000224505 0.000209076 0) (0.000294144 0.000187067 0) (0.000376458 0.000160913 0) (0.000469466 0.000129734 0) (0.000569327 9.40244e-05 0) (0.000669946 5.84562e-05 0) (0.000762074 3.5174e-05 0) (0.000831106 5.06493e-05 0) (0.000864783 0.000131248 0) (0.000898268 0.000268489 0) (0.000952274 0.000258256 0) (0.0009921 0.000310698 0) (0.00101489 0.000357349 0) (0.00100845 0.000402887 0) (0.000985738 0.000573469 0) (0.000972764 0.000769918 0) (0.000958968 0.00101022 0) (0.000874488 0.00152001 0) (0.000905629 0.00207481 0) (0.000961228 0.00162771 0) (0.000828572 0.00164804 0) (0.000903512 0.00179194 0) (0.000912816 0.00133378 0) (0.00048239 0.00174922 0) (-5.96997e-05 0.00210067 0) (-0.000721932 0.00139816 0) (-0.00154592 0.000606115 0) (-0.0023344 -0.000421566 0) (-0.00289924 -0.00200201 0) (-0.00300643 -0.00394188 0) (-0.00249491 -0.00598958 0) (-0.00129835 -0.00786658 0) (0.000231436 -0.00902715 0) (0.00194008 -0.00973427 0) (0.00382195 -0.00900084 0) (0.00581582 -0.00736346 0) (0.00793207 -0.00460918 0) (0.00994974 -0.00108736 0) (0.0116727 0.00217794 0) (0.0132581 0.00487703 0) (0.0149051 0.00797979 0) (2.92588e-06 -2.59625e-05 0) (1.70418e-05 4.0618e-05 0) (3.55583e-05 0.000114655 0) (5.69323e-05 0.000173387 0) (8.14593e-05 0.000208204 0) (0.000111063 0.000220146 0) (0.000148032 0.000214486 0) (0.000194353 0.000196749 0) (0.000251446 0.000171262 0) (0.000319986 0.000140901 0) (0.000399765 0.000107268 0) (0.000489507 7.11131e-05 0) (0.000586622 3.30093e-05 0) (0.000687159 -5.21134e-06 0) (0.000786755 -3.84033e-05 0) (0.000883607 -5.58413e-05 0) (0.000987992 -3.78325e-05 0) (0.0011162 3.68808e-05 0) (0.00123586 0.000194777 0) (0.00128156 0.00023487 0) (0.00129121 0.000289853 0) (0.00132126 0.00033216 0) (0.00136787 0.000380053 0) (0.00145362 0.000514985 0) (0.00156865 0.000711328 0) (0.00166067 0.000970534 0) (0.00190381 0.00136879 0) (0.00221281 0.00200506 0) (0.00197484 0.00194629 0) (0.0014565 0.00185247 0) (0.0012751 0.00175471 0) (0.000951714 0.00174548 0) (0.000446945 0.00219497 0) (0.000145639 0.00256209 0) (-0.000509514 0.00228426 0) (-0.00164131 0.0015743 0) (-0.0028386 0.000487382 0) (-0.00386181 -0.00144942 0) (-0.00444122 -0.00393017 0) (-0.00442806 -0.00668245 0) (-0.00344265 -0.00939728 0) (-0.00191515 -0.0104875 0) (-0.000488762 -0.0115229 0) (0.000898083 -0.010756 0) (0.00257849 -0.00948253 0) (0.0047874 -0.00697634 0) (0.00726026 -0.00313289 0) (0.00962925 0.00048041 0) (0.0121851 0.0028387 0) (0.0150411 0.00599254 0) (3.27501e-06 -3.61129e-05 0) (2.08861e-05 2.11382e-05 0) (4.61642e-05 9.04222e-05 0) (7.703e-05 0.000145291 0) (0.000113217 0.000175122 0) (0.000156119 0.000180217 0) (0.000207462 0.000165888 0) (0.000268626 0.000138109 0) (0.000340388 0.000101868 0) (0.000422785 6.08746e-05 0) (0.00051498 1.76957e-05 0) (0.000615139 -2.5816e-05 0) (0.000720292 -6.79217e-05 0) (0.00082644 -0.000106171 0) (0.000929254 -0.000136424 0) (0.00102509 -0.000151925 0) (0.00111238 -0.00014318 0) (0.00119351 -8.60115e-05 0) (0.00130745 7.36396e-05 0) (0.00143214 0.000189102 0) (0.00153502 0.000229818 0) (0.00162208 0.000281564 0) (0.001676 0.000327788 0) (0.0017043 0.000448226 0) (0.00170108 0.000658039 0) (0.00164503 0.000949929 0) (0.00150149 0.00116141 0) (0.00207912 0.00132629 0) (0.00233222 0.00255319 0) (0.00177616 0.00219573 0) (0.00167848 0.00190242 0) (0.00140656 0.00231622 0) (0.000893799 0.00258216 0) (0.000522673 0.00298492 0) (-0.000336656 0.00342595 0) (-0.00186611 0.00294568 0) (-0.00343539 0.00173861 0) (-0.00482926 -0.000437577 0) (-0.00593352 -0.00332795 0) (-0.00668906 -0.00664629 0) (-0.00643911 -0.0107227 0) (-0.00494699 -0.0119533 0) (-0.00422632 -0.0122559 0) (-0.00401412 -0.0120694 0) (-0.00247801 -0.011762 0) (-0.000617253 -0.00928645 0) (0.00189725 -0.00573795 0) (0.00576674 -0.00224592 0) (0.0104354 -0.000841751 0) (0.0152358 0.00258343 0) (3.63388e-06 -4.82025e-05 0) (2.49e-05 -3.72435e-06 0) (5.73337e-05 5.78136e-05 0) (9.83389e-05 0.000106297 0) (0.000147094 0.000129124 0) (0.000204466 0.000125896 0) (0.000271631 0.000102003 0) (0.000349392 6.38841e-05 0) (0.000437955 1.71941e-05 0) (0.000536819 -3.35687e-05 0) (0.000644695 -8.49474e-05 0) (0.000759453 -0.000134148 0) (0.000878118 -0.000178458 0) (0.000996974 -0.000214725 0) (0.0011118 -0.000238684 0) (0.00121794 -0.0002442 0) (0.00131062 -0.000222124 0) (0.001389 -0.000155809 0) (0.00148113 -4.76705e-05 0) (0.00163862 2.96107e-05 0) (0.00180816 0.000105603 0) (0.00193507 0.00018855 0) (0.00204413 0.000262837 0) (0.00213375 0.000414417 0) (0.00220716 0.000651715 0) (0.00231221 0.000934881 0) (0.00247656 0.00114512 0) (0.00232399 0.00104658 0) (0.00195333 0.00300981 0) (0.00195227 0.00216616 0) (0.00234585 0.00168515 0) (0.00239392 0.00277835 0) (0.00177012 0.00323685 0) (0.00102441 0.00364984 0) (0.000150097 0.00462062 0) (-0.00123936 0.00458463 0) (-0.0031984 0.00344016 0) (-0.00523745 0.00110165 0) (-0.00669443 -0.00216381 0) (-0.00789528 -0.00555744 0) (-0.00904491 -0.0107014 0) (-0.00854813 -0.0134163 0) (-0.00759474 -0.0121124 0) (-0.00808169 -0.0118102 0) (-0.00948851 -0.0116766 0) (-0.0111346 -0.0097425 0) (-0.0077262 -0.0114663 0) (0.00129905 -0.00929063 0) (0.00995774 -0.00735235 0) (0.0166384 -0.00277808 0) (4.01287e-06 -6.23412e-05 0) (2.91799e-05 -3.43228e-05 0) (6.93147e-05 1.62066e-05 0) (0.000121312 5.54962e-05 0) (0.000183799 6.90059e-05 0) (0.000257125 5.56739e-05 0) (0.000341932 2.09845e-05 0) (0.000438487 -2.81502e-05 0) (0.000546469 -8.54362e-05 0) (0.000664908 -0.000145672 0) (0.000792155 -0.000204661 0) (0.000925905 -0.000258909 0) (0.00106332 -0.000305099 0) (0.00120123 -0.000339674 0) (0.00133655 -0.00035843 0) (0.00146714 -0.000356125 0) (0.00159415 -0.000326242 0) (0.00172281 -0.000258322 0) (0.00187282 -0.000181914 0) (0.00204019 -0.000153534 0) (0.00220584 -4.79292e-05 0) (0.00236383 5.27702e-05 0) (0.00250326 0.00014577 0) (0.00263642 0.000306936 0) (0.0027838 0.00054284 0) (0.00293057 0.00080892 0) (0.00303097 0.00107327 0) (0.00299606 0.00148325 0) (0.00346181 0.00271927 0) (0.00372365 0.00231659 0) (0.0033656 0.00157336 0) (0.00310689 0.00316304 0) (0.00295287 0.00369199 0) (0.00264209 0.004397 0) (0.00175532 0.00574635 0) (0.000218154 0.00637413 0) (-0.00222338 0.00575349 0) (-0.00485125 0.00296819 0) (-0.00608565 -0.00133494 0) (-0.00603412 -0.00484943 0) (-0.00557602 -0.0106363 0) (-0.00509154 -0.014118 0) (-0.00532104 -0.0114414 0) (-0.00554772 -0.0108275 0) (-0.00444413 -0.010844 0) (-0.00278457 -0.00977106 0) (-4.0347e-05 -0.0177657 0) (0.00619004 -0.0190996 0) (0.0140314 -0.0153147 0) (0.0203145 -0.00907 0) (4.4186e-06 -7.8688e-05 0) (3.37962e-05 -7.11244e-05 0) (8.229e-05 -3.51828e-05 0) (0.00014628 -8.2225e-06 0) (0.00022384 -6.67855e-06 0) (0.000314811 -3.22489e-05 0) (0.000419321 -7.93402e-05 0) (0.000537128 -0.000140579 0) (0.000667433 -0.000209079 0) (0.000808843 -0.000279026 0) (0.000959398 -0.000345654 0) (0.00111666 -0.000405009 0) (0.00127793 -0.000453571 0) (0.0014406 -0.000487919 0) (0.00160259 -0.000504635 0) (0.00176297 -0.000500293 0) (0.00192249 -0.000471694 0) (0.00208741 -0.000413965 0) (0.00226796 -0.000362946 0) (0.0024457 -0.000311188 0) (0.00261682 -0.000217997 0) (0.00279874 -0.000116186 0) (0.00298519 -1.53896e-05 0) (0.00318515 0.000132613 0) (0.00340851 0.000351413 0) (0.00365254 0.000619032 0) (0.00390129 0.000924638 0) (0.00418306 0.00131846 0) (0.00477027 0.00189828 0) (0.00556696 0.00223865 0) (0.00580063 0.00182278 0) (0.00586412 0.0031897 0) (0.00601809 0.00381876 0) (0.00564166 0.00512889 0) (0.00474785 0.0070186 0) (0.00307758 0.00852873 0) (3.94689e-05 0.0088342 0) (-0.00367963 0.0053282 0) (-0.00525693 -0.00137622 0) (-0.00451997 -0.00547291 0) (-0.00445162 -0.0112309 0) (-0.00446608 -0.0148045 0) (-0.00326821 -0.0111389 0) (-0.000283415 -0.012914 0) (0.00678252 -0.0159158 0) (0.0159606 -0.0149854 0) (0.0211802 -0.0205562 0) (0.0215731 -0.0232284 0) (0.0221956 -0.0198364 0) (0.0247057 -0.0136098 0) (4.85515e-06 -9.74321e-05 0) (3.87886e-05 -0.000114668 0) (9.63625e-05 -9.72386e-05 0) (0.000173422 -8.60914e-05 0) (0.000267483 -9.9516e-05 0) (0.000377882 -0.000139823 0) (0.000504252 -0.000201309 0) (0.000645861 -0.000276161 0) (0.000801457 -0.000356956 0) (0.000969253 -0.000437356 0) (0.00114699 -0.000512158 0) (0.00133206 -0.00057714 0) (0.00152175 -0.000628823 0) (0.00171362 -0.000664228 0) (0.00190583 -0.000680838 0) (0.00209764 -0.000676658 0) (0.00229026 -0.000650386 0) (0.00248916 -0.000602801 0) (0.00269232 -0.000556909 0) (0.00288597 -0.000486383 0) (0.00308037 -0.000407691 0) (0.00328718 -0.000317294 0) (0.00350105 -0.000226419 0) (0.00374775 -0.000116421 0) (0.00403644 7.14406e-05 0) (0.00435839 0.000299931 0) (0.00475188 0.000544073 0) (0.0052915 0.000761969 0) (0.00615232 0.000983113 0) (0.00710335 0.00143191 0) (0.0076348 0.00174621 0) (0.00805311 0.0027711 0) (0.0085079 0.00382775 0) (0.00862935 0.00563623 0) (0.00832698 0.00811133 0) (0.00726442 0.0107194 0) (0.00432297 0.012757 0) (-0.000852604 0.00921684 0) (-0.00388047 -0.00189544 0) (-0.00275297 -0.0070805 0) (-0.0054339 -0.00805536 0) (-0.0118404 -0.0133199 0) (-0.00762204 -0.0171892 0) (0.00475902 -0.0211333 0) (0.0157439 -0.0254864 0) (0.0246731 -0.0232884 0) (0.0286383 -0.0222061 0) (0.027409 -0.0220235 0) (0.025455 -0.0200909 0) (0.0257775 -0.015882 0) (5.32279e-06 -0.000118771 0) (4.4165e-05 -0.000165517 0) (0.000111551 -0.000170878 0) (0.000202763 -0.000179378 0) (0.00031475 -0.000211126 0) (0.000446344 -0.000269026 0) (0.000596689 -0.000347273 0) (0.000764575 -0.00043764 0) (0.000948298 -0.000532217 0) (0.00114567 -0.000624215 0) (0.00135411 -0.000708092 0) (0.00157077 -0.000779467 0) (0.00179275 -0.000834968 0) (0.0020174 -0.000872081 0) (0.00224263 -0.000889065 0) (0.00246728 -0.00088503 0) (0.00269132 -0.000860248 0) (0.00291596 -0.000817253 0) (0.00313737 -0.000765513 0) (0.00335709 -0.000691905 0) (0.00358286 -0.000624858 0) (0.00380639 -0.000534949 0) (0.00403085 -0.00046028 0) (0.00430414 -0.000420659 0) (0.00461367 -0.000251742 0) (0.00494518 -7.94404e-05 0) (0.00537391 3.31822e-05 0) (0.00596565 5.0435e-05 0) (0.0066357 0.000138436 0) (0.00740361 0.000587657 0) (0.0082462 0.00113064 0) (0.00915599 0.00202128 0) (0.0101588 0.00324557 0) (0.0110744 0.00539893 0) (0.0117473 0.00845134 0) (0.0118539 0.0122109 0) (0.0102613 0.0166805 0) (0.00554274 0.0152841 0) (-0.00156159 0.00228846 0) (-0.0102042 -0.00308597 0) (-0.0161816 -0.00496696 0) (-0.0161224 -0.0136029 0) (-0.00853565 -0.0289514 0) (0.00538181 -0.0349019 0) (0.0192548 -0.036405 0) (0.0284161 -0.0298226 0) (0.0301191 -0.0221869 0) (0.0259292 -0.0190239 0) (0.0217915 -0.0186834 0) (0.0209531 -0.0173274 0) (5.82012e-06 -0.000142893 0) (4.99042e-05 -0.00022422 0) (0.000127796 -0.000256995 0) (0.000234182 -0.000289311 0) (0.000365434 -0.000343071 0) (0.000519878 -0.000421756 0) (0.000696162 -0.000519462 0) (0.000892594 -0.00062758 0) (0.00110701 -0.000737747 0) (0.00133679 -0.000842779 0) (0.00157898 -0.000936852 0) (0.00183038 -0.00101547 0) (0.00208774 -0.00107534 0) (0.00234802 -0.0011143 0) (0.00260858 -0.0011312 0) (0.00286747 -0.00112592 0) (0.00312349 -0.00109958 0) (0.00337634 -0.00105489 0) (0.00362442 -0.000997266 0) (0.00386915 -0.000927461 0) (0.00410889 -0.000859911 0) (0.00434789 -0.000770766 0) (0.00460526 -0.000719535 0) (0.00485882 -0.000706575 0) (0.00510591 -0.000549224 0) (0.00541221 -0.000456383 0) (0.00583169 -0.000478278 0) (0.00632566 -0.000559884 0) (0.00687782 -0.000486467 0) (0.00757195 -0.000258963 0) (0.00845641 0.000146374 0) (0.00959832 0.000830292 0) (0.0110293 0.00192756 0) (0.0128255 0.00397299 0) (0.015056 0.00713745 0) (0.0175525 0.0115054 0) (0.0193139 0.0181142 0) (0.0184269 0.0205226 0) (0.0119663 0.0120957 0) (0.00278126 0.00641856 0) (-0.00763145 0.000676984 0) (-0.0132849 -0.0168675 0) (-0.0064154 -0.041086 0) (0.00666927 -0.0500093 0) (0.0200776 -0.0485428 0) (0.0289425 -0.0349222 0) (0.0277106 -0.0185123 0) (0.0190363 -0.0127882 0) (0.0116477 -0.0156449 0) (0.00866984 -0.0178477 0) (6.34362e-06 -0.000169963 0) (5.59608e-05 -0.000291274 0) (0.00014497 -0.000356405 0) (0.000267437 -0.000417018 0) (0.000419142 -0.000496775 0) (0.000597894 -0.000599727 0) (0.000801841 -0.000719879 0) (0.0010288 -0.000848256 0) (0.00127612 -0.000976074 0) (0.00154074 -0.00109578 0) (0.00181924 -0.00120128 0) (0.00210799 -0.00128797 0) (0.00240327 -0.00135258 0) (0.00270147 -0.00139317 0) (0.00299923 -0.00140897 0) (0.00329365 -0.00140041 0) (0.00358231 -0.00136918 0) (0.0038633 -0.00131844 0) (0.00413433 -0.00125318 0) (0.00439405 -0.00117803 0) (0.0046406 -0.00110012 0) (0.00488018 -0.00101658 0) (0.00511142 -0.000970595 0) (0.00530965 -0.000923088 0) (0.0055222 -0.000815711 0) (0.00579664 -0.00079653 0) (0.00610227 -0.000891772 0) (0.00643108 -0.00100686 0) (0.00682984 -0.0010644 0) (0.00737668 -0.00101571 0) (0.00814117 -0.000878822 0) (0.00922465 -0.000561471 0) (0.0107498 9.36987e-05 0) (0.0129347 0.00146513 0) (0.0160273 0.00397161 0) (0.0198377 0.008255 0) (0.023982 0.0155578 0) (0.0263502 0.0220411 0) (0.0250186 0.019134 0) (0.0197363 0.0152936 0) (0.00966713 0.0126988 0) (0.000680417 -0.0147365 0) (0.00247078 -0.0511235 0) (0.00956096 -0.0614553 0) (0.0190618 -0.0604948 0) (0.0268678 -0.0383652 0) (0.0229741 -0.0100358 0) (0.00958406 -0.00203639 0) (-0.00154592 -0.00990392 0) (-0.00808245 -0.0156319 0) (6.88705e-06 -0.000200117 0) (6.22686e-05 -0.0003671 0) (0.00016289 -0.000469809 0) (0.000302183 -0.000563462 0) (0.000475323 -0.000673459 0) (0.000679589 -0.000804407 0) (0.00091262 -0.000950226 0) (0.00117173 -0.00110159 0) (0.00145377 -0.00124932 0) (0.00175521 -0.00138549 0) (0.00207216 -0.00150376 0) (0.00240045 -0.00159933 0) (0.00273582 -0.00166893 0) (0.003074 -0.00171065 0) (0.00341082 -0.00172393 0) (0.00374232 -0.00170947 0) (0.00406471 -0.00166932 0) (0.00437441 -0.00160689 0) (0.00466758 -0.00152716 0) (0.00494076 -0.00143562 0) (0.00519067 -0.00133907 0) (0.00541679 -0.00124375 0) (0.00561117 -0.00116988 0) (0.00577174 -0.00109568 0) (0.00592971 -0.00103351 0) (0.00609648 -0.00103565 0) (0.00625221 -0.00113229 0) (0.00639252 -0.00127252 0) (0.00654819 -0.00141949 0) (0.00680463 -0.00155322 0) (0.0072511 -0.00168268 0) (0.00796987 -0.00175591 0) (0.0090682 -0.00163971 0) (0.0107545 -0.00109644 0) (0.0132874 0.000406162 0) (0.0171679 0.00376038 0) (0.0208334 0.0119464 0) (0.024082 0.0199589 0) (0.0280211 0.0190231 0) (0.0317567 0.0177302 0) (0.0337835 0.0180619 0) (0.0352606 -0.0110108 0) (0.0296731 -0.0479537 0) (0.0188105 -0.0610588 0) (0.01686 -0.0664724 0) (0.0186233 -0.0379527 0) (0.0146866 -0.000455187 0) (0.00255389 0.0117791 0) (-0.0106949 -0.000905747 0) (-0.018602 -0.0108694 0) (7.44196e-06 -0.000233455 0) (6.87462e-05 -0.000452023 0) (0.000181337 -0.000597756 0) (0.000338007 -0.000729409 0) (0.000533315 -0.000874092 0) (0.000764002 -0.00103696 0) (0.00102719 -0.00121185 0) (0.00131968 -0.00138912 0) (0.00163784 -0.00155918 0) (0.00197765 -0.00171377 0) (0.0023347 -0.00184623 0) (0.00270433 -0.00195158 0) (0.00308169 -0.00202638 0) (0.00346182 -0.00206866 0) (0.0038397 -0.00207786 0) (0.00421027 -0.00205473 0) (0.00456842 -0.00200135 0) (0.00490886 -0.00192116 0) (0.005226 -0.001819 0) (0.00551415 -0.00170067 0) (0.00576752 -0.00157332 0) (0.00598121 -0.00144496 0) (0.00614801 -0.00132745 0) (0.00626498 -0.00122251 0) (0.00633895 -0.00114647 0) (0.0063724 -0.00112445 0) (0.00635015 -0.00118381 0) (0.00625226 -0.00129012 0) (0.00612252 -0.00147391 0) (0.00602298 -0.00171627 0) (0.00600178 -0.00203057 0) (0.00612051 -0.00237167 0) (0.00644758 -0.0026377 0) (0.0070842 -0.00266869 0) (0.00814672 -0.00193458 0) (0.00976757 0.000202711 0) (0.0115578 0.00951902 0) (0.0143143 0.0153389 0) (0.0217369 0.0106822 0) (0.030061 0.0119872 0) (0.0354631 0.0142765 0) (0.0396008 -0.0125957 0) (0.0301351 -0.0320642 0) (0.0136892 -0.051384 0) (0.00594939 -0.0632407 0) (0.00412488 -0.0355469 0) (0.00282104 0.00561423 0) (-0.00664224 0.025423 0) (-0.0171345 0.00993918 0) (-0.0259833 0.00198478 0) (7.99898e-06 -0.000270039 0) (7.53034e-05 -0.000546259 0) (0.000200066 -0.000740619 0) (0.000374445 -0.000915388 0) (0.000592378 -0.00109935 0) (0.000850057 -0.0012982 0) (0.00114409 -0.00150571 0) (0.00147076 -0.00171193 0) (0.00182597 -0.00190689 0) (0.0022052 -0.00208199 0) (0.00260359 -0.00223025 0) (0.00301597 -0.0023464 0) (0.00343695 -0.00242678 0) (0.00386091 -0.00246921 0) (0.00428201 -0.00247293 0) (0.00469417 -0.00243853 0) (0.005091 -0.00236788 0) (0.00546567 -0.00226416 0) (0.00581081 -0.00213183 0) (0.00611854 -0.00197652 0) (0.00638046 -0.00180518 0) (0.00658805 -0.00162594 0) (0.00673136 -0.00144907 0) (0.00680141 -0.00128354 0) (0.0067931 -0.00114394 0) (0.00669864 -0.00105243 0) (0.00648879 -0.00101391 0) (0.00615242 -0.00103008 0) (0.00572487 -0.0011913 0) (0.00523277 -0.00142838 0) (0.00469185 -0.00178578 0) (0.00411536 -0.00219822 0) (0.0035491 -0.00261232 0) (0.00302236 -0.0028272 0) (0.00257029 -0.0023703 0) (0.00197935 -0.000497265 0) (0.00252893 0.00770433 0) (0.00595502 0.0103895 0) (0.0107996 0.00250163 0) (0.0168687 0.0047444 0) (0.0253058 0.00808191 0) (0.0247133 -0.00871456 0) (0.0124341 -0.0166633 0) (0.00178486 -0.0437526 0) (-0.00294571 -0.0608029 0) (0.000320526 -0.0375705 0) (0.00164768 0.011539 0) (-0.013272 0.0401708 0) (-0.0210438 0.0104481 0) (-0.0047361 -0.00816823 0) (8.54914e-06 -0.000309889 0) (8.18468e-05 -0.000649897 0) (0.000218819 -0.000898574 0) (0.000411002 -0.00112166 0) (0.000651709 -0.00134958 0) (0.000936586 -0.00158856 0) (0.00126172 -0.00183234 0) (0.00162292 -0.00207065 0) (0.0020156 -0.00229322 0) (0.00243482 -0.00249107 0) (0.00287529 -0.00265691 0) (0.00333141 -0.00278515 0) (0.00379732 -0.00287177 0) (0.00426682 -0.0029143 0) (0.00473339 -0.00291162 0) (0.00519006 -0.00286393 0) (0.0056293 -0.00277268 0) (0.00604295 -0.00264054 0) (0.00642207 -0.0024713 0) (0.00675688 -0.00226989 0) (0.00703664 -0.00204246 0) (0.00724964 -0.00179635 0) (0.00738247 -0.00154046 0) (0.00742079 -0.00128442 0) (0.00734896 -0.00104156 0) (0.00714425 -0.000827664 0) (0.00677947 -0.000637435 0) (0.00625417 -0.000524072 0) (0.00556377 -0.000562124 0) (0.00469837 -0.000684885 0) (0.00365583 -0.000927663 0) (0.00244118 -0.00123677 0) (0.00108516 -0.00158894 0) (-0.000395945 -0.00174358 0) (-0.00194341 -0.00131556 0) (-0.00337948 0.000443359 0) (-0.00231823 0.00545167 0) (0.00215014 0.00579689 0) (0.00695859 -0.000823284 0) (0.0115287 -0.000577839 0) (0.0180659 0.00213645 0) (0.0201133 -0.00128205 0) (0.013315 -0.00687091 0) (0.00145581 -0.0337503 0) (-0.0200198 -0.0491939 0) (-0.034792 -0.0365308 0) (-0.0264738 0.0083007 0) (-0.00346562 0.0267505 0) (0.00185763 0.0287606 0) (-0.0194724 -0.0217328 0) (9.0846e-06 -0.000352975 0) (8.82828e-05 -0.000762892 0) (0.00023733 -0.00107158 0) (0.000447157 -0.00134822 0) (0.000710461 -0.00162479 0) (0.00102235 -0.00190808 0) (0.0013784 -0.00219179 0) (0.00177395 -0.00246543 0) (0.00220399 -0.00271841 0) (0.00266321 -0.00294143 0) (0.00314596 -0.00312686 0) (0.00364632 -0.00326874 0) (0.00415805 -0.00336271 0) (0.00467454 -0.00340585 0) (0.00518874 -0.00339657 0) (0.005693 -0.00333453 0) (0.00617895 -0.00322052 0) (0.00663736 -0.00305646 0) (0.007058 -0.00284524 0) (0.00742964 -0.00259074 0) (0.00773986 -0.00229781 0) (0.00797462 -0.00197208 0) (0.00811764 -0.00162027 0) (0.00815007 -0.00125001 0) (0.00804882 -0.000870465 0) (0.00778503 -0.000491576 0) (0.00733561 -0.000119388 0) (0.00668353 0.000178785 0) (0.00578008 0.000376612 0) (0.00458794 0.000485587 0) (0.00311853 0.00047004 0) (0.00139418 0.000360548 0) (-0.000530281 0.000145531 0) (-0.00254249 7.22758e-06 0) (-0.00439527 0.000153482 0) (-0.00541634 0.000801076 0) (-0.00368467 0.00198932 0) (0.00179362 3.8822e-05 0) (0.0083164 -0.00549513 0) (0.0146381 -0.00520741 0) (0.0227015 -0.00397935 0) (0.0276161 0.000176452 0) (0.0215195 0.00397358 0) (0.00396223 -0.0145669 0) (-0.0214359 -0.0230764 0) (-0.0380208 -0.0292115 0) (-0.0276086 -0.00385744 0) (-0.0172791 0.00539259 0) (-0.00649932 0.0591048 0) (-0.0477027 0.0177925 0) (9.59822e-06 -0.000399219 0) (9.4517e-05 -0.000885055 0) (0.00025532 -0.00125939 0) (0.000482361 -0.00159472 0) (0.000767735 -0.0019246 0) (0.00110601 -0.00225633 0) (0.0014923 -0.00258364 0) (0.00192149 -0.00289586 0) (0.00238821 -0.00318214 0) (0.00288683 -0.00343288 0) (0.00341145 -0.00364014 0) (0.00395594 -0.00379761 0) (0.00451382 -0.00390052 0) (0.00507826 -0.00394549 0) (0.00564189 -0.00393037 0) (0.0061967 -0.00385414 0) (0.00673382 -0.0037168 0) (0.00724338 -0.00351925 0) (0.00771435 -0.00326328 0) (0.0081344 -0.00295147 0) (0.00848992 -0.00258727 0) (0.00876586 -0.00217429 0) (0.00894522 -0.0017166 0) (0.00900737 -0.00121764 0) (0.00892581 -0.000680845 0) (0.00866713 -0.000112351 0) (0.00819734 0.000472595 0) (0.00747632 0.00102151 0) (0.00645635 0.00152582 0) (0.00511183 0.00194584 0) (0.00342307 0.00223852 0) (0.00140523 0.00238514 0) (-0.000889409 0.00233377 0) (-0.00331039 0.00209812 0) (-0.00549561 0.00165191 0) (-0.00672769 0.000668578 0) (-0.00561424 -0.00146548 0) (-0.001194 -0.00652486 0) (0.00591844 -0.0131047 0) (0.0171208 -0.0154426 0) (0.031963 -0.0142608 0) (0.0411092 -0.00170382 0) (0.0357136 0.0170739 0) (0.0199514 0.00500214 0) (0.00707486 -0.00629507 0) (-0.00336943 -0.0263436 0) (-0.0144608 -0.0155912 0) (-0.0358827 0.0136165 0) (0.0128555 0.0125206 0) (0.0081453 0.0283109 0) (1.00826e-05 -0.00044849 0) (0.000100452 -0.00101606 0) (0.000272499 -0.00146148 0) (0.000516038 -0.00186054 0) (0.000822583 -0.00224824 0) (0.00118619 -0.00263243 0) (0.00160151 -0.00300693 0) (0.00206304 -0.00336095 0) (0.0025651 -0.00368344 0) (0.00310184 -0.00396458 0) (0.00366722 -0.00419615 0) (0.004255 -0.00437152 0) (0.00485865 -0.00448554 0) (0.00547128 -0.00453433 0) (0.0060855 -0.00451519 0) (0.00669321 -0.00442637 0) (0.0072855 -0.00426696 0) (0.00785239 -0.00403675 0) (0.00838263 -0.00373616 0) (0.00886352 -0.00336636 0) (0.00928089 -0.00292936 0) (0.00961945 -0.00242729 0) (0.00986275 -0.00186188 0) (0.00999202 -0.00123163 0) (0.00998224 -0.000532439 0) (0.00979493 0.000238674 0) (0.00938216 0.00106649 0) (0.00869139 0.00191042 0) (0.00767655 0.00274732 0) (0.00630411 0.00352071 0) (0.00454125 0.00419291 0) (0.00237875 0.00466645 0) (-0.000111465 0.00483019 0) (-0.00282687 0.00459273 0) (-0.00546874 0.00359842 0) (-0.00735715 0.00115545 0) (-0.00738521 -0.00370686 0) (-0.00441562 -0.0121958 0) (0.00146919 -0.0216586 0) (0.0111075 -0.0287294 0) (0.0253624 -0.0275871 0) (0.0342853 -0.00114839 0) (0.0362347 0.0235313 0) (0.0431582 0.00770868 0) (0.043486 -0.00317375 0) (0.0309184 -0.0216686 0) (0.0340732 -0.00143027 0) (0.0246468 0.0147762 0) (0.0274421 0.0185436 0) (0.0106608 0.0389641 0) (1.05289e-05 -0.00050061 0) (0.000105982 -0.00115541 0) (0.000288559 -0.00167714 0) (0.000547576 -0.00214468 0) (0.000874 -0.00259451 0) (0.00126139 -0.00303501 0) (0.00170398 -0.00346014 0) (0.00219592 -0.00385908 0) (0.0027313 -0.00422068 0) (0.00330413 -0.00453497 0) (0.00390834 -0.00479352 0) (0.0045377 -0.00498945 0) (0.00518582 -0.00511726 0) (0.00584595 -0.00517267 0) (0.00651091 -0.0051524 0) (0.00717289 -0.00505403 0) (0.00782333 -0.00487576 0) (0.00845272 -0.0046162 0) (0.00905016 -0.00427429 0) (0.00960315 -0.00384974 0) (0.0100979 -0.00334337 0) (0.01052 -0.00275658 0) (0.0108553 -0.00208954 0) (0.0110896 -0.00133721 0) (0.0112027 -0.000484908 0) (0.0111532 0.000487606 0) (0.01088 0.00157098 0) (0.0103201 0.00272605 0) (0.00943042 0.00390743 0) (0.00818372 0.00505717 0) (0.00656021 0.00612765 0) (0.00449621 0.00703742 0) (0.00193288 0.007556 0) (-0.00100486 0.00746573 0) (-0.00402772 0.00615133 0) (-0.00661437 0.00261317 0) (-0.00771496 -0.00452298 0) (-0.00679953 -0.0156503 0) (-0.00493268 -0.0265875 0) (-0.000793024 -0.0378749 0) (0.0105723 -0.0423774 0) (0.0281317 -0.0101817 0) (0.0484208 0.00983162 0) (0.0739576 -0.00680007 0) (0.0740015 0.0191124 0) (0.0459998 0.0110847 0) (0.0380435 -0.0028146 0) (0.032825 0.00982402 0) (0.0283597 0.0268437 0) (0.0196182 0.0498415 0) (-0.000522197 7.28195e-06 0) (-0.00055641 7.41615e-06 0) (-0.000591416 7.45155e-06 0) (-0.000626704 7.37961e-06 0) (-0.000661733 7.19598e-06 0) (-0.000695951 6.9021e-06 0) (-0.00072882 6.50597e-06 0) (-0.000759838 6.02103e-06 0) (-0.000788562 5.46394e-06 0) (-0.000814625 4.85206e-06 0) (-0.000837739 4.20073e-06 0) (-0.000857685 3.52134e-06 0) (-0.000874292 2.82153e-06 0) (-0.00088741 2.10424e-06 0) (-0.000896881 1.36402e-06 0) (-0.000902528 5.90526e-07 0) (-0.000904144 -2.14982e-07 0) (-0.000901472 -1.05644e-06 0) (-0.000894259 -1.95345e-06 0) (-0.000882319 -2.89493e-06 0) (-0.000865542 -3.85477e-06 0) (-0.000843977 -4.79923e-06 0) (-0.000817901 -5.67939e-06 0) (-0.000787838 -6.44414e-06 0) (-0.000754473 -7.07921e-06 0) (-0.00071848 -7.60741e-06 0) (-0.000680372 -8.08273e-06 0) (-0.000640503 -8.52463e-06 0) (-0.000599161 -8.92152e-06 0) (-0.000556664 -9.24975e-06 0) (-0.000513407 -9.48646e-06 0) (-0.000469856 -9.61701e-06 0) (-0.00042649 -9.63879e-06 0) (-0.000383759 -9.56245e-06 0) (-0.000342078 -9.39931e-06 0) (-0.000301814 -9.15705e-06 0) (-0.000263298 -8.84013e-06 0) (-0.000226827 -8.45558e-06 0) (-0.000192668 -8.01516e-06 0) (-0.000161076 -7.51631e-06 0) (-0.000132267 -6.95576e-06 0) (-0.000106399 -6.35439e-06 0) (-8.36123e-05 -5.73124e-06 0) (-6.39602e-05 -5.10194e-06 0) (-4.73928e-05 -4.48306e-06 0) (-3.37631e-05 -3.90083e-06 0) (-2.27821e-05 -3.38196e-06 0) (-1.4008e-05 -2.92284e-06 0) (-6.98937e-06 -2.47303e-06 0) (-1.76416e-06 -1.72955e-06 0) (-0.00118282 6.54136e-05 0) (-0.00127166 6.75335e-05 0) (-0.00136323 6.86958e-05 0) (-0.00145617 6.88191e-05 0) (-0.00154905 6.78609e-05 0) (-0.00164041 6.58248e-05 0) (-0.00172878 6.2763e-05 0) (-0.00181281 5.87724e-05 0) (-0.00189127 5.39812e-05 0) (-0.00196308 4.85319e-05 0) (-0.00202738 4.25602e-05 0) (-0.00208344 3.61755e-05 0) (-0.00213069 2.94475e-05 0) (-0.00216859 2.24004e-05 0) (-0.00219665 1.5009e-05 0) (-0.0022143 7.21585e-06 0) (-0.00222094 -1.02732e-06 0) (-0.00221592 -9.73662e-06 0) (-0.00219861 -1.88895e-05 0) (-0.00216851 -2.8344e-05 0) (-0.00212544 -3.78457e-05 0) (-0.00206962 -4.70292e-05 0) (-0.00200183 -5.54345e-05 0) (-0.0019235 -6.26283e-05 0) (-0.0018365 -6.84603e-05 0) (-0.0017427 -7.30739e-05 0) (-0.00164361 -7.6822e-05 0) (-0.0015403 -7.99177e-05 0) (-0.00143372 -8.23684e-05 0) (-0.00132487 -8.40742e-05 0) (-0.00121484 -8.4923e-05 0) (-0.00110488 -8.4849e-05 0) (-0.000996187 -8.38561e-05 0) (-0.000889911 -8.20143e-05 0) (-0.000787067 -7.94201e-05 0) (-0.00068854 -7.61604e-05 0) (-0.000595093 -7.23087e-05 0) (-0.000507388 -6.79256e-05 0) (-0.000425977 -6.30733e-05 0) (-0.000351346 -5.7796e-05 0) (-0.000283941 -5.21357e-05 0) (-0.000224119 -4.61961e-05 0) (-0.00017214 -4.01055e-05 0) (-0.000128105 -3.40087e-05 0) (-9.1896e-05 -2.81106e-05 0) (-6.31129e-05 -2.26689e-05 0) (-4.09414e-05 -1.79721e-05 0) (-2.41804e-05 -1.42222e-05 0) (-1.16498e-05 -1.12141e-05 0) (-2.6756e-06 -7.13909e-06 0) (-0.0016267 0.000176328 0) (-0.00176546 0.000182985 0) (-0.001909 0.000187035 0) (-0.0020552 0.000188259 0) (-0.00220182 0.000186536 0) (-0.00234655 0.000181864 0) (-0.00248712 0.000174357 0) (-0.00262135 0.000164238 0) (-0.00274726 0.000151816 0) (-0.00286309 0.00013744 0) (-0.00296737 0.000121463 0) (-0.00305886 0.000104186 0) (-0.00313656 8.58147e-05 0) (-0.0031996 6.64369e-05 0) (-0.00324714 4.60216e-05 0) (-0.00327835 2.44542e-05 0) (-0.00329228 1.61758e-06 0) (-0.00328797 -2.24968e-05 0) (-0.00326451 -4.77234e-05 0) (-0.00322121 -7.3649e-05 0) (-0.00315784 -9.95815e-05 0) (-0.00307476 -0.000124541 0) (-0.00297317 -0.000147304 0) (-0.00285535 -0.000166701 0) (-0.0027243 -0.000182329 0) (-0.00258303 -0.000194542 0) (-0.00243387 -0.000204244 0) (-0.00227841 -0.000211985 0) (-0.00211808 -0.00021781 0) (-0.00195449 -0.000221509 0) (-0.00178942 -0.000222854 0) (-0.00162476 -0.000221742 0) (-0.00146236 -0.000218232 0) (-0.00130393 -0.000212516 0) (-0.001151 -0.00020486 0) (-0.00100485 -0.000195523 0) (-0.000866586 -0.000184736 0) (-0.000737142 -0.000172679 0) (-0.000617296 -0.000159499 0) (-0.000507696 -0.000145338 0) (-0.000408938 -0.000130339 0) (-0.000321495 -0.000114701 0) (-0.000245676 -9.87116e-05 0) (-0.000181589 -8.27551e-05 0) (-0.000129043 -6.73739e-05 0) (-8.74209e-05 -5.32226e-05 0) (-5.55561e-05 -4.10146e-05 0) (-3.17983e-05 -3.13068e-05 0) (-1.46152e-05 -2.37487e-05 0) (-3.08615e-06 -1.45186e-05 0) (-0.00197567 0.000335384 0) (-0.00216158 0.000348961 0) (-0.00235424 0.000357577 0) (-0.00255082 0.000360805 0) (-0.0027483 0.00035841 0) (-0.00294359 0.000350365 0) (-0.0031336 0.000336857 0) (-0.00331539 0.00031827 0) (-0.00348622 0.000295149 0) (-0.00364368 0.000268135 0) (-0.00378571 0.00023789 0) (-0.00391061 0.000205005 0) (-0.00401702 0.00016991 0) (-0.0041038 0.000132817 0) (-0.00416994 9.37166e-05 0) (-0.00421438 5.24407e-05 0) (-0.004236 8.80919e-06 0) (-0.0042336 -3.7172e-05 0) (-0.00420607 -8.51461e-05 0) (-0.00415261 -0.000134321 0) (-0.00407291 -0.000183432 0) (-0.00396731 -0.000230687 0) (-0.00383723 -0.000273753 0) (-0.00368576 -0.000310241 0) (-0.00351716 -0.000339403 0) (-0.00333564 -0.000361978 0) (-0.00314408 -0.000379902 0) (-0.00294413 -0.000394172 0) (-0.00273749 -0.000404764 0) (-0.00252629 -0.000411228 0) (-0.00231304 -0.000413159 0) (-0.00210036 -0.000410436 0) (-0.00189073 -0.000403246 0) (-0.00168642 -0.000391991 0) (-0.00148935 -0.00037718 0) (-0.00130117 -0.000359317 0) (-0.00112324 -0.000338851 0) (-0.000956708 -0.000316141 0) (-0.000802517 -0.000291469 0) (-0.000661465 -0.000265105 0) (-0.00053423 -0.000237344 0) (-0.000421343 -0.000208524 0) (-0.000323142 -0.000179149 0) (-0.000239722 -0.000149915 0) (-0.00017082 -0.000121746 0) (-0.000115686 -9.57606e-05 0) (-7.29996e-05 -7.31581e-05 0) (-4.09623e-05 -5.48766e-05 0) (-1.80485e-05 -4.0404e-05 0) (-3.47342e-06 -2.36213e-05 0) (-0.00228725 0.00053907 0) (-0.00251791 0.000561786 0) (-0.00275714 0.000576516 0) (-0.00300142 0.000582569 0) (-0.00324698 0.000579549 0) (-0.00348994 0.000567388 0) (-0.00372642 0.00054635 0) (-0.00395269 0.000517014 0) (-0.00416529 0.000480224 0) (-0.00436117 0.000437 0) (-0.00453772 0.000388425 0) (-0.00469286 0.000335497 0) (-0.00482498 0.000278987 0) (-0.00493283 0.000219318 0) (-0.00501534 0.000156541 0) (-0.00507145 9.04371e-05 0) (-0.00509996 2.07386e-05 0) (-0.00509955 -5.25428e-05 0) (-0.00506901 -0.000128835 0) (-0.00500745 -0.000206922 0) (-0.00491449 -0.000284953 0) (-0.00479021 -0.000360282 0) (-0.00463573 -0.000429085 0) (-0.00445496 -0.000486904 0) (-0.00425376 -0.000532594 0) (-0.0040377 -0.000567585 0) (-0.00380987 -0.000595824 0) (-0.00357114 -0.00061878 0) (-0.00332318 -0.000635929 0) (-0.00306881 -0.00064627 0) (-0.0028115 -0.000649113 0) (-0.00255479 -0.000644382 0) (-0.00230188 -0.000632516 0) (-0.00205554 -0.000614267 0) (-0.00181807 -0.000590499 0) (-0.00159138 -0.000562044 0) (-0.00137701 -0.00052962 0) (-0.00117622 -0.000493815 0) (-0.000990099 -0.000455099 0) (-0.00081953 -0.000413893 0) (-0.000665236 -0.000370655 0) (-0.000527777 -0.000325915 0) (-0.000407518 -0.000280424 0) (-0.000304537 -0.00023521 0) (-0.000218529 -0.000191591 0) (-0.000148707 -0.000151168 0) (-9.3766e-05 -0.000115626 0) (-5.20007e-05 -8.62099e-05 0) (-2.21431e-05 -6.21289e-05 0) (-3.8978e-06 -3.46361e-05 0) (-0.00258476 0.000785044 0) (-0.00285784 0.000818946 0) (-0.00314118 0.000841186 0) (-0.00343057 0.000850736 0) (-0.0037215 0.000846999 0) (-0.00400928 0.00082984 0) (-0.00428923 0.000799606 0) (-0.00455682 0.000757107 0) (-0.00480787 0.000703555 0) (-0.00503866 0.000640459 0) (-0.00524611 0.000569461 0) (-0.00542781 0.000492128 0) (-0.00558204 0.000409723 0) (-0.0057076 0.000323007 0) (-0.0058036 0.000232151 0) (-0.00586917 0.000136853 0) (-0.0059032 3.66933e-05 0) (-0.00590435 -6.83486e-05 0) (-0.00587137 -0.000177471 0) (-0.00580348 -0.000289027 0) (-0.0057003 -0.000400755 0) (-0.00556127 -0.00050945 0) (-0.00538624 -0.000609416 0) (-0.00517995 -0.000692367 0) (-0.0049505 -0.000756919 0) (-0.0047053 -0.000805592 0) (-0.00444691 -0.00084647 0) (-0.00417385 -0.000881137 0) (-0.00388759 -0.00090746 0) (-0.00359225 -0.00092329 0) (-0.00329287 -0.000927549 0) (-0.00299424 -0.000920416 0) (-0.00270042 -0.000902843 0) (-0.00241462 -0.000876149 0) (-0.0021394 -0.000841708 0) (-0.00187678 -0.000800777 0) (-0.00162837 -0.000754395 0) (-0.0013955 -0.000703404 0) (-0.00117928 -0.000648494 0) (-0.000980641 -0.000590255 0) (-0.000800334 -0.000529307 0) (-0.000638932 -0.00046641 0) (-0.000496818 -0.000402558 0) (-0.000374058 -0.000339093 0) (-0.000270356 -0.000277736 0) (-0.000184982 -0.000220547 0) (-0.000116762 -0.000169656 0) (-6.42642e-05 -0.000126502 0) (-2.66423e-05 -8.98023e-05 0) (-4.34205e-06 -4.78393e-05 0) (-0.00287203 0.00107113 0) (-0.00318531 0.00111816 0) (-0.00351049 0.00114919 0) (-0.00384267 0.00116281 0) (-0.00417656 0.00115814 0) (-0.00450667 0.00113497 0) (-0.00482746 0.00109372 0) (-0.00513359 0.00103546 0) (-0.00542008 0.000961846 0) (-0.00568257 0.000875016 0) (-0.00591745 0.000777347 0) (-0.00612208 0.000671192 0) (-0.00629473 0.000558527 0) (-0.00643448 0.000440625 0) (-0.00654089 0.000317853 0) (-0.00661353 0.000189769 0) (-0.00665156 5.56465e-05 0) (-0.00665366 -8.46426e-05 0) (-0.00661865 -0.000229982 0) (-0.00654617 -0.000378226 0) (-0.00643633 -0.000527137 0) (-0.00628761 -0.000674015 0) (-0.00609647 -0.00081116 0) (-0.00586862 -0.000922585 0) (-0.00561562 -0.00100769 0) (-0.00534756 -0.00107022 0) (-0.00506497 -0.00112707 0) (-0.00476086 -0.00117842 0) (-0.00443694 -0.00121793 0) (-0.00410024 -0.00124138 0) (-0.00375855 -0.00124744 0) (-0.00341849 -0.00123711 0) (-0.00308495 -0.00121239 0) (-0.00276144 -0.00117552 0) (-0.00245054 -0.00112857 0) (-0.00215418 -0.0010733 0) (-0.00187386 -0.00101111 0) (-0.00161088 -0.000943095 0) (-0.0013663 -0.00087014 0) (-0.00114102 -0.000793012 0) (-0.000935824 -0.000712502 0) (-0.000751271 -0.000629581 0) (-0.000587744 -0.000545477 0) (-0.000445339 -0.000461809 0) (-0.000323816 -0.000380692 0) (-0.000222574 -0.000304595 0) (-0.000140655 -0.000236012 0) (-7.70051e-05 -0.000176467 0) (-3.12614e-05 -0.000123903 0) (-4.78472e-06 -6.33354e-05 0) (-0.0031423 0.00139523 0) (-0.00349376 0.00145731 0) (-0.00385882 0.00149843 0) (-0.00423188 0.00151666 0) (-0.00460687 0.00151083 0) (-0.00497743 0.00148055 0) (-0.00533714 0.00142633 0) (-0.00567976 0.00134952 0) (-0.00599945 0.00125232 0) (-0.00629108 0.00113761 0) (-0.00655054 0.00100876 0) (-0.00677489 0.000869181 0) (-0.00696255 0.000721883 0) (-0.00711309 0.000568911 0) (-0.00722687 0.000410937 0) (-0.00730428 0.000247269 0) (-0.00734491 7.65701e-05 0) (-0.00734739 -0.000101546 0) (-0.00731048 -0.000285343 0) (-0.00723483 -0.000471718 0) (-0.00712252 -0.000659135 0) (-0.00697121 -0.000848225 0) (-0.00676958 -0.0010302 0) (-0.00652519 -0.00117244 0) (-0.00625497 -0.00127922 0) (-0.00597279 -0.00135386 0) (-0.00567432 -0.00143275 0) (-0.00534056 -0.00150988 0) (-0.00497593 -0.00156875 0) (-0.00459397 -0.00160224 0) (-0.00420721 -0.00160968 0) (-0.00382462 -0.00159431 0) (-0.00345171 -0.0015601 0) (-0.00309182 -0.00151071 0) (-0.00274711 -0.00144911 0) (-0.00241911 -0.00137755 0) (-0.00210903 -0.00129776 0) (-0.00181795 -0.00121103 0) (-0.00154683 -0.00111841 0) (-0.00129652 -0.00102082 0) (-0.00106778 -0.000919189 0) (-0.000861163 -0.00081466 0) (-0.000677035 -0.000708677 0) (-0.000515555 -0.00060312 0) (-0.000376594 -0.000500431 0) (-0.000259721 -0.000403435 0) (-0.000164261 -0.000314902 0) (-8.95724e-05 -0.000236289 0) (-3.57777e-05 -0.000164491 0) (-5.21106e-06 -8.10693e-05 0) (-0.00338455 0.00175539 0) (-0.00377244 0.00183459 0) (-0.00417582 0.0018872 0) (-0.00458839 0.00191072 0) (-0.00500327 0.00190355 0) (-0.00541321 0.00186511 0) (-0.00581083 0.00179591 0) (-0.00618888 0.00169763 0) (-0.00654053 0.00157304 0) (-0.00685978 0.00142599 0) (-0.00714181 0.00126103 0) (-0.00738338 0.00108305 0) (-0.00758307 0.000896553 0) (-0.00774125 0.000704758 0) (-0.00785953 0.000508834 0) (-0.00793967 0.000307636 0) (-0.00798193 9.85899e-05 0) (-0.00798443 -0.000119336 0) (-0.00794516 -0.000343058 0) (-0.00786632 -0.000566759 0) (-0.00775527 -0.000789918 0) (-0.00761097 -0.00102341 0) (-0.00740544 -0.00126207 0) (-0.00715188 -0.00143487 0) (-0.00687468 -0.00156403 0) (-0.00659175 -0.00164454 0) (-0.00628898 -0.00175821 0) (-0.00592282 -0.00187848 0) (-0.00550839 -0.00196562 0) (-0.00507271 -0.00201093 0) (-0.00463554 -0.00201721 0) (-0.00420827 -0.00199288 0) (-0.00379604 -0.00194533 0) (-0.00340114 -0.00188017 0) (-0.00302464 -0.00180131 0) (-0.00266727 -0.00171136 0) (-0.00232972 -0.0016122 0) (-0.00201272 -0.00150522 0) (-0.00171708 -0.00139151 0) (-0.00144356 -0.00127208 0) (-0.00119286 -0.001148 0) (-0.000965551 -0.00102052 0) (-0.000761996 -0.000891248 0) (-0.000582425 -0.000762317 0) (-0.000426854 -0.000636412 0) (-0.00029507 -0.000516657 0) (-0.000186696 -0.000406012 0) (-0.000101477 -0.000305706 0) (-4.00279e-05 -0.000211362 0) (-5.60202e-06 -0.000100953 0) (-0.00358741 0.00214989 0) (-0.00401025 0.00224854 0) (-0.00445081 0.00231432 0) (-0.00490209 0.00234405 0) (-0.0053564 0.0023356 0) (-0.00580556 0.00228809 0) (-0.00624115 0.00220199 0) (-0.00665475 0.00207922 0) (-0.00703841 0.00192323 0) (-0.00738499 0.00173891 0) (-0.00768877 0.00153237 0) (-0.007946 0.00131043 0) (-0.00815541 0.0010797 0) (-0.0083184 0.000845285 0) (-0.00843849 0.000609214 0) (-0.00851979 0.000369608 0) (-0.00856375 0.000121329 0) (-0.00856692 -0.000138506 0) (-0.00852401 -0.00040444 0) (-0.00843806 -0.000662949 0) (-0.00832787 -0.000910941 0) (-0.00820164 -0.00118551 0) (-0.00799779 -0.00150494 0) (-0.00774768 -0.0017021 0) (-0.00748243 -0.0018534 0) (-0.00721978 -0.00191957 0) (-0.00692774 -0.00209962 0) (-0.00651606 -0.00229467 0) (-0.00603367 -0.0024205 0) (-0.00553117 -0.00247621 0) (-0.00503707 -0.00247443 0) (-0.00456338 -0.00243398 0) (-0.00411275 -0.00236725 0) (-0.00368501 -0.00228202 0) (-0.00327933 -0.00218287 0) (-0.00289523 -0.00207236 0) (-0.00253273 -0.00195214 0) (-0.00219219 -0.00182347 0) (-0.0018742 -0.00168742 0) (-0.00157946 -0.001545 0) (-0.00130861 -0.00139732 0) (-0.00106221 -0.00124571 0) (-0.000840681 -0.00109193 0) (-0.000644319 -0.000938282 0) (-0.000473308 -0.000787664 0) (-0.000327699 -0.000643418 0) (-0.00020739 -0.000508594 0) (-0.000112455 -0.000384073 0) (-4.39784e-05 -0.000264077 0) (-5.97085e-06 -0.000122896 0) (-0.003741 0.0025772 0) (-0.00419755 0.00269802 0) (-0.00467456 0.00277908 0) (-0.00516435 0.00281637 0) (-0.00565841 0.0028071 0) (-0.0061476 0.00274996 0) (-0.00662236 0.00264524 0) (-0.00707304 0.00249506 0) (-0.0074903 0.00230347 0) (-0.00786559 0.00207654 0) (-0.0081919 0.0018222 0) (-0.00846457 0.00154981 0) (-0.00868225 0.00126901 0) (-0.00884757 0.000987836 0) (-0.00896683 0.000710044 0) (-0.00904838 0.000432888 0) (-0.00909646 0.000145954 0) (-0.00910453 -0.000159041 0) (-0.00905795 -0.000474785 0) (-0.0089539 -0.000770649 0) (-0.00882994 -0.00102182 0) (-0.00872748 -0.00131481 0) (-0.00852575 -0.00176203 0) (-0.00830535 -0.00194433 0) (-0.00809031 -0.00213541 0) (-0.00787946 -0.00213835 0) (-0.00761 -0.00247163 0) (-0.00711657 -0.00278382 0) (-0.00653829 -0.00295356 0) (-0.00595451 -0.0030091 0) (-0.0053999 -0.00298489 0) (-0.00488165 -0.00291717 0) (-0.00439628 -0.00282356 0) (-0.00393961 -0.00271334 0) (-0.00350838 -0.00259085 0) (-0.00310073 -0.00245776 0) (-0.00271606 -0.00231503 0) (-0.00235449 -0.00216349 0) (-0.00201645 -0.00200404 0) (-0.00170257 -0.00183762 0) (-0.00141347 -0.00166533 0) (-0.00114974 -0.00148857 0) (-0.000911867 -0.00130919 0) (-0.000700229 -0.00112961 0) (-0.000515196 -0.000952904 0) (-0.000357074 -0.000782551 0) (-0.00022601 -0.000621591 0) (-0.000122376 -0.000470488 0) (-4.76845e-05 -0.000322016 0) (-6.36813e-06 -0.000146764 0) (-0.0038374 0.00303597 0) (-0.00432666 0.00318222 0) (-0.00483976 0.00328126 0) (-0.00536841 0.00332807 0) (-0.00590332 0.00331905 0) (-0.00643437 0.00325227 0) (-0.00695085 0.0031277 0) (-0.00744173 0.00294747 0) (-0.00789608 0.0027161 0) (-0.00830356 0.00244081 0) (-0.00865532 0.0021316 0) (-0.00894515 0.00180099 0) (-0.00917102 0.00146285 0) (-0.00933662 0.00112994 0) (-0.00945207 0.000809656 0) (-0.00953367 0.000499323 0) (-0.00959266 0.000178399 0) (-0.00961938 -0.000174973 0) (-0.00958112 -0.000558436 0) (-0.00944846 -0.000917061 0) (-0.00926006 -0.00115715 0) (-0.00913746 -0.00139677 0) (-0.00890325 -0.00206473 0) (-0.00880377 -0.00204641 0) (-0.00875635 -0.00240892 0) (-0.00860596 -0.00225761 0) (-0.00832625 -0.00292405 0) (-0.00768528 -0.00338777 0) (-0.00698118 -0.00358799 0) (-0.0063125 -0.00361518 0) (-0.00570588 -0.00354604 0) (-0.00515316 -0.00343728 0) (-0.00464157 -0.00330891 0) (-0.00416241 -0.0031695 0) (-0.00371042 -0.00302143 0) (-0.00328288 -0.0028644 0) (-0.00287899 -0.00269816 0) (-0.00249889 -0.00252288 0) (-0.00214306 -0.00233917 0) (-0.0018121 -0.0021479 0) (-0.00150669 -0.00195014 0) (-0.00122745 -0.00174733 0) (-0.000974935 -0.00154137 0) (-0.000749652 -0.00133477 0) (-0.000552151 -0.00113068 0) (-0.000382954 -0.000932683 0) (-0.00024242 -0.000743729 0) (-0.00013119 -0.000563878 0) (-5.11554e-05 -0.0003845 0) (-6.81069e-06 -0.000172466 0) (-0.00387053 0.00352492 0) (-0.00439162 0.00370057 0) (-0.00494076 0.00382105 0) (-0.00550913 0.00388017 0) (-0.00608671 0.00387333 0) (-0.00666249 0.00379779 0) (-0.0072246 0.00365294 0) (-0.0077606 0.00344066 0) (-0.00825778 0.00316568 0) (-0.00870366 0.00283613 0) (-0.00908685 0.00246408 0) (-0.00939858 0.00206575 0) (-0.0096349 0.00166069 0) (-0.00979959 0.00126911 0) (-0.00990688 0.000906017 0) (-0.00998727 0.000573422 0) (-0.010068 0.000232906 0) (-0.0101408 -0.000165366 0) (-0.0101531 -0.000643589 0) (-0.010035 -0.00113439 0) (-0.00972148 -0.00148182 0) (-0.00930498 -0.00163265 0) (-0.00885279 -0.0023345 0) (-0.00924767 -0.00108224 0) (-0.00978076 -0.00255686 0) (-0.00954354 -0.00247806 0) (-0.00897097 -0.00363311 0) (-0.008091 -0.0041714 0) (-0.00727552 -0.00432909 0) (-0.00656182 -0.00427942 0) (-0.00593529 -0.00414205 0) (-0.00537006 -0.00398069 0) (-0.00484641 -0.00381366 0) (-0.00435336 -0.00364392 0) (-0.00388605 -0.00347007 0) (-0.0034423 -0.00328893 0) (-0.00302197 -0.00309885 0) (-0.00262566 -0.00289934 0) (-0.00225409 -0.00269075 0) (-0.001908 -0.00247389 0) (-0.00158813 -0.0022499 0) (-0.00129517 -0.00202022 0) (-0.00102973 -0.00178678 0) (-0.000792466 -0.00155215 0) (-0.000584068 -0.00131951 0) (-0.000405238 -0.00109241 0) (-0.000256551 -0.000873701 0) (-0.000138875 -0.000663102 0) (-5.43491e-05 -0.000450779 0) (-7.27495e-06 -0.000199925 0) (-0.00383555 0.0040428 0) (-0.00438762 0.00425265 0) (-0.00497293 0.00439899 0) (-0.00558226 0.00447427 0) (-0.006205 0.00447268 0) (-0.00682931 0.00439046 0) (-0.00744231 0.00422615 0) (-0.00803023 0.00398101 0) (-0.00857859 0.00365953 0) (-0.00907249 0.00327023 0) (-0.00949733 0.0028268 0) (-0.00984044 0.00234926 0) (-0.0100939 0.00186413 0) (-0.0102588 0.00140267 0) (-0.0103506 0.000994649 0) (-0.0104232 0.000661707 0) (-0.0105358 0.000337798 0) (-0.0106896 -6.5688e-05 0) (-0.0108248 -0.000614847 0) (-0.0109038 -0.00119065 0) (-0.0109866 -0.00159002 0) (-0.0110824 -0.00169857 0) (-0.0107663 -0.00294915 0) (-0.00950793 -0.00140982 0) (-0.0083812 -0.00301002 0) (-0.00843092 -0.00231641 0) (-0.00853798 -0.00412985 0) (-0.00801699 -0.00490066 0) (-0.00732161 -0.00504289 0) (-0.00667007 -0.00493016 0) (-0.00607862 -0.00473202 0) (-0.0055337 -0.00452185 0) (-0.0050152 -0.00432452 0) (-0.00451634 -0.00412915 0) (-0.00403824 -0.00393225 0) (-0.00358112 -0.0037283 0) (-0.00314648 -0.00351476 0) (-0.00273576 -0.00329084 0) (-0.00235018 -0.00305687 0) (-0.00199067 -0.00281381 0) (-0.00165805 -0.00256287 0) (-0.00135305 -0.00230554 0) (-0.00107638 -0.0020438 0) (-0.000828773 -0.00178021 0) (-0.000611026 -0.00151791 0) (-0.000423949 -0.00126037 0) (-0.000268338 -0.00101031 0) (-0.000145293 -0.00076716 0) (-5.70986e-05 -0.000520133 0) (-7.68991e-06 -0.000228954 0) (-0.0037283 0.00458823 0) (-0.00431034 0.0048381 0) (-0.00493199 0.00501586 0) (-0.00558374 0.00511241 0) (-0.00625452 0.00512056 0) (-0.00693187 0.00503531 0) (-0.00760212 0.00485412 0) (-0.00825048 0.00457723 0) (-0.00886096 0.00420826 0) (-0.00941632 0.0037552 0) (-0.00989833 0.00323228 0) (-0.0102891 0.00266242 0) (-0.0105741 0.00207926 0) (-0.0107469 0.00152792 0) (-0.0108115 0.00106065 0) (-0.0108537 0.000754139 0) (-0.0109844 0.000491582 0) (-0.0111922 0.000117115 0) (-0.0113784 -0.000501895 0) (-0.0114012 -0.00120249 0) (-0.0110518 -0.00179695 0) (-0.00992936 -0.00232913 0) (-0.00949655 -0.00304486 0) (-0.00977661 -0.00251647 0) (-0.0105297 -0.00258778 0) (-0.0106219 -0.00282312 0) (-0.00923723 -0.00485754 0) (-0.00815321 -0.00570639 0) (-0.00734474 -0.00575073 0) (-0.00671243 -0.00555054 0) (-0.00617425 -0.00528086 0) (-0.00567208 -0.00504071 0) (-0.00516375 -0.00483388 0) (-0.00466 -0.00462086 0) (-0.00417211 -0.00440538 0) (-0.00370259 -0.00418068 0) (-0.00325459 -0.00394429 0) (-0.00283055 -0.00369582 0) (-0.00243221 -0.00343598 0) (-0.00206069 -0.00316604 0) (-0.00171682 -0.0028874 0) (-0.00140138 -0.00260168 0) (-0.0011151 -0.00231086 0) (-0.000858741 -0.00201745 0) (-0.000633131 -0.0017245 0) (-0.000439154 -0.00143533 0) (-0.000277787 -0.0011525 0) (-0.000150305 -0.000875251 0) (-5.91485e-05 -0.000592009 0) (-7.93427e-06 -0.000259263 0) (-0.00354464 0.00515954 0) (-0.00415532 0.0054564 0) (-0.00481328 0.00567244 0) (-0.00550886 0.00579684 0) (-0.00623064 0.00582085 0) (-0.00696578 0.00573813 0) (-0.00770015 0.00554488 0) (-0.00841843 0.00524004 0) (-0.00910379 0.00482565 0) (-0.00973729 0.00430798 0) (-0.0102974 0.00369995 0) (-0.0107608 0.00302545 0) (-0.0111046 0.00232283 0) (-0.0113102 0.00165042 0) (-0.0113441 0.00108169 0) (-0.011333 0.000824337 0) (-0.0114869 0.000679961 0) (-0.011752 0.000334462 0) (-0.0119934 -0.000371509 0) (-0.0120382 -0.00136735 0) (-0.0116362 -0.00249271 0) (-0.0107269 -0.00364236 0) (-0.0100663 -0.00277767 0) (-0.00931818 -0.00289673 0) (-0.0087371 -0.00164704 0) (-0.00880443 -0.00364104 0) (-0.00836869 -0.0059114 0) (-0.00763161 -0.00654493 0) (-0.00710348 -0.00637474 0) (-0.00667483 -0.00607895 0) (-0.00627033 -0.00573635 0) (-0.00582079 -0.00553979 0) (-0.00530552 -0.0053444 0) (-0.00479206 -0.00511953 0) (-0.00429261 -0.00488975 0) (-0.00380977 -0.0046459 0) (-0.00334817 -0.00438685 0) (-0.00291117 -0.00411334 0) (-0.00250087 -0.00382685 0) (-0.00211847 -0.00352914 0) (-0.00176472 -0.00322195 0) (-0.00144035 -0.00290703 0) (-0.00114605 -0.00258635 0) (-0.000882524 -0.00226234 0) (-0.000650509 -0.00193787 0) (-0.00045092 -0.00161607 0) (-0.000284919 -0.00129932 0) (-0.000153856 -0.000986681 0) (-6.03664e-05 -0.000665963 0) (-7.93647e-06 -0.000290513 0) (-0.00328 0.00575456 0) (-0.00391745 0.00610668 0) (-0.00461126 0.00636929 0) (-0.00535169 0.00652964 0) (-0.00612708 0.00657736 0) (-0.00692431 0.00650473 0) (-0.00772914 0.00630673 0) (-0.00852634 0.00598095 0) (-0.00929926 0.00552742 0) (-0.0100286 0.00494933 0) (-0.0106905 0.00425594 0) (-0.011258 0.00346982 0) (-0.0117023 0.0026304 0) (-0.0119936 0.00180078 0) (-0.0120172 0.00104285 0) (-0.0119647 0.000878772 0) (-0.0121787 0.000911859 0) (-0.0125236 0.000610658 0) (-0.0127825 -0.000191101 0) (-0.0127859 -0.00152389 0) (-0.0124841 -0.00302778 0) (-0.0121308 -0.00434746 0) (-0.0113861 -0.0036417 0) (-0.00988842 -0.00454762 0) (-0.00783172 -0.00274783 0) (-0.00690543 -0.0033447 0) (-0.00706687 -0.00620819 0) (-0.00699559 -0.00680565 0) (-0.00694414 -0.00660834 0) (-0.0067938 -0.00636961 0) (-0.00647956 -0.00611358 0) (-0.00599302 -0.00605443 0) (-0.005448 -0.00586506 0) (-0.00491988 -0.00563114 0) (-0.00440376 -0.00538857 0) (-0.00390476 -0.00512542 0) (-0.00342828 -0.00484282 0) (-0.00297806 -0.00454307 0) (-0.00255625 -0.00422862 0) (-0.00216393 -0.0039019 0) (-0.00180163 -0.00356507 0) (-0.00146987 -0.00322 0) (-0.00116916 -0.00286864 0) (-0.000900059 -0.00251324 0) (-0.000663164 -0.00215646 0) (-0.000459325 -0.00180121 0) (-0.000289811 -0.00144971 0) (-0.000156037 -0.00110072 0) (-6.08746e-05 -0.000741552 0) (-7.77122e-06 -0.000322386 0) (-0.00292901 0.00637042 0) (-0.00359064 0.00678748 0) (-0.00431921 0.00710643 0) (-0.00510485 0.00731236 0) (-0.00593561 0.00739318 0) (-0.00679804 0.00733992 0) (-0.00767787 0.0071467 0) (-0.00856048 0.00681008 0) (-0.00943063 0.00632815 0) (-0.0102704 0.00569987 0) (-0.011055 0.00492726 0) (-0.0117516 0.00402851 0) (-0.012331 0.00304951 0) (-0.0127803 0.00205476 0) (-0.0128224 0.000913781 0) (-0.0127638 0.000987915 0) (-0.0132429 0.00130627 0) (-0.0137952 0.000971262 0) (-0.0139866 -2.62959e-05 0) (-0.0138649 -0.00172278 0) (-0.0135113 -0.00341327 0) (-0.0131016 -0.00475041 0) (-0.0123028 -0.00484862 0) (-0.0121837 -0.00513836 0) (-0.0116772 -0.00479247 0) (-0.00955348 -0.00434956 0) (-0.00794127 -0.0066953 0) (-0.00743047 -0.0068333 0) (-0.00733004 -0.00666652 0) (-0.00709599 -0.00659436 0) (-0.00662253 -0.0065781 0) (-0.00607303 -0.00655924 0) (-0.00556828 -0.00637923 0) (-0.00503892 -0.00615567 0) (-0.00450442 -0.00590243 0) (-0.00398739 -0.00562034 0) (-0.00349454 -0.00531298 0) (-0.00303048 -0.00498509 0) (-0.00259744 -0.00464075 0) (-0.00219618 -0.00428329 0) (-0.00182676 -0.00391538 0) (-0.00148926 -0.00353904 0) (-0.00118391 -0.00315606 0) (-0.000910986 -0.00276847 0) (-0.000670865 -0.00237866 0) (-0.000464301 -0.00198929 0) (-0.000292541 -0.00160238 0) (-0.000157067 -0.00121642 0) (-6.09849e-05 -0.000818187 0) (-7.62553e-06 -0.000354617 0) (-0.00248548 0.00700343 0) (-0.00316782 0.00749658 0) (-0.00392923 0.00788314 0) (-0.00475966 0.00814563 0) (-0.00564646 0.00827012 0) (-0.00657545 0.00824661 0) (-0.00753201 0.00806892 0) (-0.00850219 0.00773364 0) (-0.00947332 0.00723803 0) (-0.0104328 0.00657684 0) (-0.0113614 0.00573967 0) (-0.0122175 0.00472386 0) (-0.0129436 0.00358523 0) (-0.0135462 0.00245186 0) (-0.0136336 0.000637247 0) (-0.0137994 0.00154331 0) (-0.0150101 0.00255766 0) (-0.0157311 0.00105619 0) (-0.0153667 -0.000276306 0) (-0.0148913 -0.0021094 0) (-0.0145171 -0.00375321 0) (-0.014385 -0.00499753 0) (-0.0142586 -0.00544692 0) (-0.0137755 -0.00510584 0) (-0.0126534 -0.00637692 0) (-0.0111241 -0.00633485 0) (-0.00990282 -0.00778363 0) (-0.00903346 -0.00737542 0) (-0.00832438 -0.00705819 0) (-0.00767111 -0.00710567 0) (-0.00697902 -0.00719551 0) (-0.00635255 -0.00707969 0) (-0.00577032 -0.00691913 0) (-0.00518142 -0.00670874 0) (-0.0046074 -0.00644124 0) (-0.00406068 -0.00613636 0) (-0.00354618 -0.0058001 0) (-0.00306646 -0.00544026 0) (-0.00262229 -0.00506285 0) (-0.00221328 -0.00467222 0) (-0.0018385 -0.0042714 0) (-0.00149725 -0.00386244 0) (-0.00118927 -0.00344689 0) (-0.0009145 -0.00302636 0) (-0.000673038 -0.00260288 0) (-0.000465486 -0.00217882 0) (-0.00029298 -0.00175599 0) (-0.000157058 -0.00133267 0) (-6.09229e-05 -0.000895072 0) (-7.64272e-06 -0.000386954 0) (-0.00194243 0.00764897 0) (-0.00264108 0.00823085 0) (-0.00343259 0.00869786 0) (-0.0043066 0.00902915 0) (-0.00524918 0.00920852 0) (-0.0062444 0.00922509 0) (-0.00727612 0.00907324 0) (-0.00833 0.00875163 0) (-0.0093957 0.00826038 0) (-0.010469 0.00759637 0) (-0.0115538 0.00674601 0) (-0.0126497 0.00568234 0) (-0.0137476 0.0044637 0) (-0.0148319 0.00328277 0) (-0.0157448 0.000878291 0) (-0.0159589 0.00178232 0) (-0.0152847 0.00283165 0) (-0.0148511 0.000866281 0) (-0.0149206 -0.000279351 0) (-0.0148448 -0.00233843 0) (-0.014723 -0.00391398 0) (-0.014641 -0.00505032 0) (-0.0144239 -0.00573389 0) (-0.013823 -0.00597697 0) (-0.012923 -0.00755099 0) (-0.0117454 -0.00769173 0) (-0.0108208 -0.008613 0) (-0.0102104 -0.00821561 0) (-0.0093307 -0.0078894 0) (-0.0083703 -0.0079266 0) (-0.00754611 -0.00791547 0) (-0.00678158 -0.00776561 0) (-0.00602398 -0.0075819 0) (-0.00533013 -0.00733137 0) (-0.00469794 -0.00702597 0) (-0.00411413 -0.006683 0) (-0.00357558 -0.00630773 0) (-0.00308033 -0.00590917 0) (-0.00262649 -0.00549403 0) (-0.00221189 -0.00506699 0) (-0.00183428 -0.00463105 0) (-0.00149189 -0.00418803 0) (-0.00118377 -0.00373902 0) (-0.000909441 -0.00328498 0) (-0.000668783 -0.00282742 0) (-0.000462204 -0.00236832 0) (-0.00029068 -0.00190925 0) (-0.000155762 -0.00144838 0) (-6.0533e-05 -0.000971394 0) (-7.76506e-06 -0.000419153 0) (-0.00129238 0.0083015 0) (-0.00200198 0.00898635 0) (-0.00282018 0.0095483 0) (-0.00373623 0.0099619 0) (-0.00473414 0.0102075 0) (-0.00579449 0.0102729 0) (-0.00689699 0.0101534 0) (-0.00802312 0.00985119 0) (-0.00915897 0.00937277 0) (-0.0102988 0.00872369 0) (-0.0114499 0.0078994 0) (-0.0126295 0.0068636 0) (-0.013788 0.0056052 0) (-0.0145331 0.00412324 0) (-0.0151678 0.00172793 0) (-0.015658 0.00166415 0) (-0.0156533 0.00225662 0) (-0.016314 0.00141548 0) (-0.0162076 -0.000979244 0) (-0.0151036 -0.00275897 0) (-0.0146737 -0.00415669 0) (-0.0144324 -0.00526127 0) (-0.0140974 -0.00618077 0) (-0.0133752 -0.00686879 0) (-0.0125462 -0.00832776 0) (-0.0118972 -0.00856634 0) (-0.0113793 -0.00913351 0) (-0.0108058 -0.00896594 0) (-0.00977942 -0.00902656 0) (-0.00866107 -0.0088568 0) (-0.007767 -0.00873339 0) (-0.0069264 -0.0085779 0) (-0.0061362 -0.00833605 0) (-0.00540738 -0.00801586 0) (-0.00473808 -0.00765472 0) (-0.0041261 -0.00725793 0) (-0.00356971 -0.00683353 0) (-0.00306353 -0.00638924 0) (-0.00260398 -0.00593143 0) (-0.00218756 -0.00546456 0) (-0.00181077 -0.00499128 0) (-0.0014707 -0.00451285 0) (-0.00116557 -0.00402964 0) (-0.000894446 -0.00354185 0) (-0.00065704 -0.0030502 0) (-0.000453626 -0.00255613 0) (-0.000285008 -0.00206089 0) (-0.000152651 -0.00156257 0) (-5.93631e-05 -0.00104642 0) (-7.76578e-06 -0.000450862 0) (-0.000526929 0.00895452 0) (-0.00124141 0.00975864 0) (-0.00208288 0.010432 0) (-0.00304007 0.0109431 0) (-0.00409434 0.0112666 0) (-0.00522113 0.0113874 0) (-0.00639293 0.0113006 0) (-0.00758245 0.0110111 0) (-0.00876519 0.0105308 0) (-0.00992188 0.00987225 0) (-0.0110425 0.0090369 0) (-0.0121222 0.00797899 0) (-0.0130849 0.00654853 0) (-0.0134287 0.00427605 0) (-0.0138365 0.00255896 0) (-0.0142876 0.00171372 0) (-0.0139647 0.00223071 0) (-0.0139259 0.00230019 0) (-0.0141541 -0.00194583 0) (-0.0142439 -0.00313111 0) (-0.0143572 -0.00434192 0) (-0.0143099 -0.00550935 0) (-0.0140287 -0.00662951 0) (-0.013468 -0.00765749 0) (-0.0129098 -0.00884251 0) (-0.0123288 -0.00914845 0) (-0.0117074 -0.00961314 0) (-0.0109992 -0.00979179 0) (-0.0100377 -0.0101457 0) (-0.00899383 -0.00987958 0) (-0.00794424 -0.00968012 0) (-0.00699732 -0.00944221 0) (-0.00615694 -0.00911626 0) (-0.00540254 -0.00872949 0) (-0.0047128 -0.0083078 0) (-0.00408595 -0.00785011 0) (-0.00351938 -0.00737043 0) (-0.00300842 -0.00687503 0) (-0.00254872 -0.00637032 0) (-0.00213559 -0.00586059 0) (-0.00176434 -0.00534802 0) (-0.00143092 -0.00483308 0) (-0.00113263 -0.00431526 0) (-0.000868066 -0.00379382 0) (-0.000636772 -0.00326855 0) (-0.000438977 -0.00274013 0) (-0.000275365 -0.00220935 0) (-0.00014719 -0.00167416 0) (-5.69809e-05 -0.00111941 0) (-7.43192e-06 -0.00048152 0) (0.000362688 0.00960077 0) (-0.000349738 0.0105429 0) (-0.00121115 0.0113473 0) (-0.00221037 0.0119737 0) (-0.00332558 0.0123889 0) (-0.00452618 0.0125716 0) (-0.00577563 0.0125145 0) (-0.00703541 0.0122228 0) (-0.00826812 0.0117108 0) (-0.00943822 0.0109925 0) (-0.0105058 0.0100675 0) (-0.0114239 0.0088843 0) (-0.0121709 0.00725571 0) (-0.0129067 0.00456466 0) (-0.0135142 0.00297652 0) (-0.0137823 0.0014898 0) (-0.0133572 0.00158836 0) (-0.0122911 0.00202072 0) (-0.0125472 -0.00087543 0) (-0.0138362 -0.0024606 0) (-0.0144239 -0.00408176 0) (-0.0144979 -0.00559557 0) (-0.014231 -0.00698583 0) (-0.0137301 -0.00822508 0) (-0.0131633 -0.00931102 0) (-0.0124886 -0.00987815 0) (-0.0116383 -0.0103254 0) (-0.0107133 -0.0107212 0) (-0.00980084 -0.0110503 0) (-0.0088783 -0.0109103 0) (-0.00790594 -0.0106665 0) (-0.00697411 -0.0103477 0) (-0.00610943 -0.00992978 0) (-0.00532735 -0.00946422 0) (-0.00462273 -0.00897441 0) (-0.00398697 -0.00845189 0) (-0.00341687 -0.00791168 0) (-0.0029081 -0.0073602 0) (-0.00245503 -0.00680482 0) (-0.00205146 -0.00624975 0) (-0.00169141 -0.00569646 0) (-0.00136974 -0.00514438 0) (-0.00108284 -0.00459193 0) (-0.000828802 -0.00403731 0) (-0.000607012 -0.00347929 0) (-0.00041764 -0.00291768 0) (-0.000261354 -0.00235261 0) (-0.000139149 -0.00178172 0) (-5.33264e-05 -0.00118951 0) (-6.74889e-06 -0.000510522 0) (0.00138364 0.0102312 0) (0.000682926 0.0113325 0) (-0.000193972 0.0122932 0) (-0.00123818 0.0130581 0) (-0.00242355 0.0135832 0) (-0.00371273 0.0138383 0) (-0.00505998 0.0138107 0) (-0.00641572 0.0135042 0) (-0.00773147 0.0129339 0) (-0.00896434 0.0121149 0) (-0.0100663 0.0110345 0) (-0.0109826 0.00965058 0) (-0.0116786 0.00784675 0) (-0.0124259 0.00539285 0) (-0.0138576 0.00401342 0) (-0.0160291 0.00265652 0) (-0.0168963 0.000906731 0) (-0.0160342 0.000999592 0) (-0.0154822 -0.000128874 0) (-0.0154535 -0.00195982 0) (-0.01538 -0.00393725 0) (-0.0151426 -0.0057729 0) (-0.0146948 -0.00740937 0) (-0.0140742 -0.00881562 0) (-0.0133589 -0.00995795 0) (-0.0125264 -0.0107212 0) (-0.0115572 -0.0112789 0) (-0.010548 -0.0116909 0) (-0.00958496 -0.0119353 0) (-0.00864924 -0.0118574 0) (-0.00771342 -0.011595 0) (-0.00680944 -0.0112423 0) (-0.00595649 -0.0107526 0) (-0.00517296 -0.0102117 0) (-0.0044585 -0.00965064 0) (-0.00381868 -0.0090577 0) (-0.00325311 -0.00844978 0) (-0.00275586 -0.00783697 0) (-0.00231798 -0.00722769 0) (-0.00193141 -0.00662564 0) (-0.00158896 -0.00603108 0) (-0.00128462 -0.00544202 0) (-0.00101412 -0.00485549 0) (-0.000775085 -0.00426857 0) (-0.000566718 -0.00367901 0) (-0.000389075 -0.00308571 0) (-0.000242755 -0.00248812 0) (-0.000128581 -0.00188334 0) (-4.86972e-05 -0.00125559 0) (-5.91161e-06 -0.000537309 0) (0.0025517 0.0108329 0) (0.00187335 0.0121196 0) (0.000983904 0.01327 0) (-0.000110953 0.0142043 0) (-0.00138042 0.0148645 0) (-0.00277962 0.0152095 0) (-0.00425394 0.0152196 0) (-0.00574482 0.0148981 0) (-0.00719722 0.0142652 0) (-0.00856977 0.0133498 0) (-0.00985793 0.0121633 0) (-0.0111225 0.0107111 0) (-0.0125143 0.00895163 0) (-0.0143911 0.00699062 0) (-0.0164742 0.00594992 0) (-0.0176172 0.00407996 0) (-0.0179594 0.000823128 0) (-0.017964 0.000408299 0) (-0.0176035 -0.000654518 0) (-0.017137 -0.00233745 0) (-0.0165939 -0.00432266 0) (-0.0159805 -0.00628111 0) (-0.0152572 -0.00806052 0) (-0.0144243 -0.0095843 0) (-0.0135122 -0.010807 0) (-0.0125151 -0.0116949 0) (-0.0114366 -0.0123247 0) (-0.0103503 -0.0127167 0) (-0.00932307 -0.0128913 0) (-0.00835122 -0.0128001 0) (-0.00741067 -0.0125043 0) (-0.00653093 -0.0121012 0) (-0.00570925 -0.0115637 0) (-0.00492056 -0.0109756 0) (-0.00419739 -0.0103316 0) (-0.00356661 -0.00965707 0) (-0.00302025 -0.00897356 0) (-0.00254688 -0.00829489 0) (-0.00213453 -0.00762979 0) (-0.00177328 -0.00698056 0) (-0.00145516 -0.00634544 0) (-0.00117384 -0.00572059 0) (-0.000924806 -0.00510141 0) (-0.00070545 -0.00448371 0) (-0.000514722 -0.00386426 0) (-0.000352516 -0.0032411 0) (-0.000219217 -0.00261308 0) (-0.000115522 -0.00197679 0) (-4.33861e-05 -0.00131622 0) (-5.13365e-06 -0.000561396 0) (0.00388717 0.0113908 0) (0.00324083 0.0128979 0) (0.00233963 0.0142795 0) (0.0011871 0.0154235 0) (-0.000183301 0.0162526 0) (-0.00171808 0.0167126 0) (-0.00335137 0.0167763 0) (-0.00501305 0.0164482 0) (-0.00664029 0.0157617 0) (-0.00819356 0.0147755 0) (-0.00967468 0.013558 0) (-0.0111419 0.0121748 0) (-0.012728 0.010642 0) (-0.01453 0.00903554 0) (-0.0161186 0.00745225 0) (-0.0170564 0.00451276 0) (-0.0181727 0.00175232 0) (-0.0190509 0.000439941 0) (-0.0189008 -0.00109422 0) (-0.018325 -0.00297666 0) (-0.0175562 -0.00504728 0) (-0.0166811 -0.00709313 0) (-0.0157129 -0.00896472 0) (-0.0146636 -0.0105692 0) (-0.0135551 -0.0118522 0) (-0.0123991 -0.0128032 0) (-0.0112185 -0.0134561 0) (-0.01006 -0.0138119 0) (-0.00896199 -0.0139192 0) (-0.00793053 -0.013777 0) (-0.00695779 -0.0134314 0) (-0.00605492 -0.0129515 0) (-0.00522271 -0.0123692 0) (-0.00447589 -0.011711 0) (-0.00381455 -0.0109856 0) (-0.00322384 -0.0102289 0) (-0.00271458 -0.00946638 0) (-0.00228005 -0.00872072 0) (-0.00190464 -0.00800067 0) (-0.00157714 -0.00730615 0) (-0.00128979 -0.00663266 0) (-0.00103684 -0.00597422 0) (-0.000814054 -0.00532462 0) (-0.000618867 -0.00467836 0) (-0.000450027 -0.00403126 0) (-0.000307113 -0.00338059 0) (-0.000190151 -0.00272465 0) (-9.97158e-05 -0.00205982 0) (-3.73267e-05 -0.00136991 0) (-4.44863e-06 -0.000582394 0) (0.00540967 0.0118894 0) (0.00480473 0.0136646 0) (0.00389165 0.0153234 0) (0.0026741 0.0167282 0) (0.0011838 0.0177705 0) (-0.00051588 0.0183783 0) (-0.00234473 0.0185152 0) (-0.0042157 0.0181863 0) (-0.00604705 0.0174418 0) (-0.00778113 0.0163757 0) (-0.00939664 0.0150982 0) (-0.0109366 0.013728 0) (-0.0125126 0.0123067 0) (-0.0141753 0.0107348 0) (-0.0157174 0.00872314 0) (-0.0172579 0.0056844 0) (-0.0187222 0.00313082 0) (-0.019504 0.000791979 0) (-0.0194961 -0.00141986 0) (-0.0189441 -0.00367718 0) (-0.0180844 -0.00594519 0) (-0.0170524 -0.0081141 0) (-0.0159059 -0.0100764 0) (-0.0146804 -0.0117454 0) (-0.01341 -0.0130676 0) (-0.0121237 -0.0140357 0) (-0.0108523 -0.0146695 0) (-0.00962327 -0.0149799 0) (-0.00846141 -0.0150158 0) (-0.00738292 -0.014801 0) (-0.00638687 -0.0143833 0) (-0.0054783 -0.0138206 0) (-0.00467869 -0.0131439 0) (-0.00398709 -0.0123837 0) (-0.00336289 -0.0115948 0) (-0.0028064 -0.010759 0) (-0.00234411 -0.00991392 0) (-0.00196122 -0.00910225 0) (-0.00163259 -0.00833105 0) (-0.00134566 -0.00759536 0) (-0.00109415 -0.00688693 0) (-0.000873976 -0.00619768 0) (-0.000681728 -0.00552017 0) (-0.00051491 -0.00484794 0) (-0.00037203 -0.00417588 0) (-0.00025222 -0.00350058 0) (-0.000155013 -0.00281988 0) (-8.07311e-05 -0.00213018 0) (-3.01763e-05 -0.00141514 0) (-3.7381e-06 -0.000599857 0) (0.00714931 0.0123099 0) (0.00659687 0.0144177 0) (0.00566689 0.0164097 0) (0.00436997 0.0181349 0) (0.00273838 0.0194447 0) (0.000840805 0.0202427 0) (-0.00122782 0.0204774 0) (-0.00335937 0.0201512 0) (-0.0054451 0.0193278 0) (-0.0073854 0.0181283 0) (-0.00911462 0.0167089 0) (-0.0106714 0.015285 0) (-0.0122331 0.013933 0) (-0.0139739 0.0124299 0) (-0.0158266 0.010308 0) (-0.0176508 0.00740051 0) (-0.0190936 0.00424713 0) (-0.0197657 0.0011713 0) (-0.0196947 -0.00170676 0) (-0.0190848 -0.00440841 0) (-0.0181454 -0.00693938 0) (-0.0170101 -0.00926912 0) (-0.0157435 -0.0113368 0) (-0.0143905 -0.0130676 0) (-0.0130026 -0.0144108 0) (-0.0116244 -0.0153654 0) (-0.0102867 -0.0159547 0) (-0.00900993 -0.016205 0) (-0.00781284 -0.0161569 0) (-0.00671239 -0.0158477 0) (-0.00572309 -0.0153284 0) (-0.00486031 -0.0146568 0) (-0.00412068 -0.0138661 0) (-0.00347033 -0.0130262 0) (-0.00286207 -0.0121813 0) (-0.0023258 -0.0112514 0) (-0.00191641 -0.0103077 0) (-0.00159878 -0.00943006 0) (-0.00132518 -0.00861423 0) (-0.00108301 -0.00784375 0) (-0.000870227 -0.00710456 0) (-0.000685958 -0.0063872 0) (-0.000527905 -0.00568399 0) (-0.000393465 -0.00498816 0) (-0.000280537 -0.00429399 0) (-0.000187594 -0.00359735 0) (-0.000113595 -0.00289566 0) (-5.83202e-05 -0.00218545 0) (-2.16549e-05 -0.00145034 0) (-2.87463e-06 -0.000613239 0) (0.00908365 0.0126459 0) (0.00859596 0.015154 0) (0.00765739 0.0175473 0) (0.00628065 0.0196563 0) (0.00449593 0.0213017 0) (0.00236902 0.0223469 0) (8.7789e-06 0.0227167 0) (-0.00245557 0.0224055 0) (-0.00487332 0.0214721 0) (-0.00707986 0.0200501 0) (-0.00895166 0.0183746 0) (-0.010507 0.0168176 0) (-0.0120451 0.0155981 0) (-0.0139179 0.0143303 0) (-0.0160846 0.0122659 0) (-0.0181313 0.00917208 0) (-0.0194669 0.0052428 0) (-0.0198599 0.00138099 0) (-0.0195402 -0.00212105 0) (-0.0187574 -0.00523909 0) (-0.0177085 -0.00802205 0) (-0.0164995 -0.0105142 0) (-0.0151632 -0.0126961 0) (-0.0137312 -0.0144892 0) (-0.0122719 -0.0158361 0) (-0.0108479 -0.0167538 0) (-0.00948595 -0.0172813 0) (-0.00819804 -0.017455 0) (-0.00699639 -0.0173121 0) (-0.00589837 -0.0168907 0) (-0.00492925 -0.0162371 0) (-0.00411599 -0.015424 0) (-0.00344616 -0.0145359 0) (-0.00286894 -0.0136338 0) (-0.00229306 -0.0127566 0) (-0.001773 -0.0117071 0) (-0.00143524 -0.0106312 0) (-0.00120459 -0.00969228 0) (-0.000991665 -0.00884532 0) (-0.000794028 -0.0080495 0) (-0.000619803 -0.00728387 0) (-0.000473201 -0.00654019 0) (-0.000352636 -0.00581266 0) (-0.000254569 -0.00509514 0) (-0.000175668 -0.00438156 0) (-0.000113404 -0.00366713 0) (-6.60502e-05 -0.00294879 0) (-3.26231e-05 -0.00222307 0) (-1.18834e-05 -0.00147374 0) (-1.91457e-06 -0.0006219 0) (0.0111438 0.0128687 0) (0.010773 0.0158503 0) (0.00986128 0.0187293 0) (0.00841912 0.021295 0) (0.00647814 0.0233627 0) (0.00409598 0.0247354 0) (0.00138126 0.0253094 0) (-0.00151311 0.025045 0) (-0.00437357 0.0239617 0) (-0.00696669 0.0222133 0) (-0.00909225 0.0201312 0) (-0.0106828 0.0182974 0) (-0.0121436 0.0172708 0) (-0.014162 0.0164991 0) (-0.0167175 0.0145518 0) (-0.0189208 0.0109934 0) (-0.0198924 0.00590072 0) (-0.0197067 0.00120113 0) (-0.018938 -0.00282613 0) (-0.0178777 -0.00624807 0) (-0.016696 -0.00919508 0) (-0.0154492 -0.0118104 0) (-0.0140998 -0.0141087 0) (-0.0126393 -0.0159649 0) (-0.0111598 -0.0172938 0) (-0.00974961 -0.0181504 0) (-0.00842204 -0.0186027 0) (-0.00717202 -0.0186943 0) (-0.0059997 -0.018458 0) (-0.00491696 -0.0179217 0) (-0.0039516 -0.0171213 0) (-0.00314704 -0.0161383 0) (-0.00256599 -0.0150985 0) (-0.00215842 -0.0141371 0) (-0.00165734 -0.0133353 0) (-0.00114816 -0.0121144 0) (-0.000917805 -0.010845 0) (-0.000804436 -0.00987464 0) (-0.000645907 -0.00902502 0) (-0.000483099 -0.00821543 0) (-0.000343377 -0.0074252 0) (-0.000235471 -0.00665459 0) (-0.000155986 -0.00590274 0) (-9.86553e-05 -0.00516492 0) (-5.80475e-05 -0.00443464 0) (-3.03267e-05 -0.00370625 0) (-1.29189e-05 -0.00297603 0) (-4.00077e-06 -0.00224041 0) (-1.10973e-06 -0.00148353 0) (-9.59683e-07 -0.000625122 0) (0.0131894 0.0129176 0) (0.0130281 0.0164509 0) (0.0122266 0.0199153 0) (0.0107772 0.0230341 0) (0.00871025 0.0256286 0) (0.00607034 0.0274464 0) (0.00295962 0.0283337 0) (-0.000433948 0.0281728 0) (-0.00385754 0.0269314 0) (-0.00705134 0.0248002 0) (-0.00969083 0.0221167 0) (-0.0114613 0.0197127 0) (-0.0128481 0.0188766 0) (-0.0150442 0.019104 0) (-0.0183187 0.0175816 0) (-0.0203997 0.0123115 0) (-0.0201409 0.00566357 0) (-0.0189832 0.0003402 0) (-0.0176502 -0.00396431 0) (-0.0162796 -0.00748661 0) (-0.0149798 -0.0104328 0) (-0.0137581 -0.0130938 0) (-0.0124751 -0.0155201 0) (-0.0110482 -0.0174472 0) (-0.0096109 -0.0187243 0) (-0.00829409 -0.0194877 0) (-0.00708026 -0.0198567 0) (-0.00593641 -0.019876 0) (-0.00484486 -0.0195685 0) (-0.00380204 -0.0189452 0) (-0.00282846 -0.0180155 0) (-0.00200985 -0.0168178 0) (-0.0015374 -0.0154705 0) (-0.00137798 -0.014437 0) (-0.000980843 -0.0139687 0) (-0.000474455 -0.0124407 0) (-0.000417202 -0.0108788 0) (-0.000448908 -0.00998242 0) (-0.0003022 -0.00917541 0) (-0.000148874 -0.0083542 0) (-3.77014e-05 -0.00753112 0) (2.83446e-05 -0.00672775 0) (6.13481e-05 -0.0059499 0) (7.27646e-05 -0.0051931 0) (7.07112e-05 -0.00444935 0) (6.03222e-05 -0.0037114 0) (4.48798e-05 -0.00297463 0) (2.69925e-05 -0.00223528 0) (1.05685e-05 -0.00147813 0) (1.24663e-07 -0.000622382 0) (0.0149385 0.0126455 0) (0.0152007 0.0168109 0) (0.0146998 0.0209855 0) (0.0133763 0.0248072 0) (0.011251 0.0280696 0) (0.00838314 0.0304837 0) (0.00489741 0.0318137 0) (0.000995686 0.031873 0) (-0.00315499 0.0306371 0) (-0.00725412 0.0281491 0) (-0.0108325 0.0247759 0) (-0.0133889 0.0215286 0) (-0.015619 0.0210625 0) (-0.0182825 0.0219272 0) (-0.0202515 0.0198756 0) (-0.0200662 0.0119876 0) (-0.0184994 0.00438177 0) (-0.0169173 -0.00113604 0) (-0.0153451 -0.0054681 0) (-0.0137894 -0.00891957 0) (-0.012411 -0.0116724 0) (-0.0112767 -0.0142608 0) (-0.0101797 -0.0168274 0) (-0.00888726 -0.0188854 0) (-0.00757294 -0.0200434 0) (-0.0064586 -0.0206692 0) (-0.00546183 -0.0209569 0) (-0.00451386 -0.0209282 0) (-0.00358348 -0.0205901 0) (-0.002651 -0.0199376 0) (-0.00172431 -0.0189282 0) (-0.00087074 -0.0175149 0) (-0.000373549 -0.0156839 0) (-0.00043743 -0.0144318 0) (-0.000383946 -0.0145264 0) (-2.62187e-05 -0.0126714 0) (-0.000104276 -0.0106952 0) (-0.000189378 -0.0100981 0) (5.74703e-05 -0.00935527 0) (0.00023062 -0.00848448 0) (0.000307205 -0.00760074 0) (0.000319231 -0.0067532 0) (0.000296384 -0.00594766 0) (0.000255848 -0.00517467 0) (0.000207265 -0.00442205 0) (0.000156095 -0.00367998 0) (0.000105855 -0.00294268 0) (5.97537e-05 -0.00220635 0) (2.30602e-05 -0.00145658 0) (1.44266e-06 -0.000613366 0) (0.0163011 0.0118938 0) (0.0171748 0.0166623 0) (0.0172243 0.0217461 0) (0.016208 0.0264786 0) (0.0141516 0.0306114 0) (0.0111274 0.0338078 0) (0.00728409 0.0357505 0) (0.00286552 0.036177 0) (-0.00191579 0.0351638 0) (-0.00690049 0.0325559 0) (-0.0116185 0.0285415 0) (-0.0149921 0.0239832 0) (-0.0169302 0.023283 0) (-0.0179663 0.0234802 0) (-0.0178299 0.0199549 0) (-0.0165016 0.0103575 0) (-0.0149121 0.00279307 0) (-0.013572 -0.00268574 0) (-0.0121429 -0.00706351 0) (-0.010521 -0.0105038 0) (-0.00894443 -0.0130007 0) (-0.00774358 -0.015268 0) (-0.00700672 -0.0177141 0) (-0.00607438 -0.0202401 0) (-0.00500189 -0.0210879 0) (-0.00425412 -0.0215555 0) (-0.00358937 -0.0217933 0) (-0.00293143 -0.0217508 0) (-0.00226874 -0.0214224 0) (-0.00158627 -0.0208053 0) (-0.000832781 -0.0198504 0) (8.2315e-05 -0.0184388 0) (0.000937712 -0.0161352 0) (0.00168277 -0.0145595 0) (0.00023272 -0.013199 0) (-0.000893074 -0.0129761 0) (-0.000185286 -0.0105987 0) (0.000116323 -0.0104924 0) (0.000564037 -0.00963471 0) (0.00070944 -0.00859608 0) (0.000700262 -0.00761252 0) (0.000630603 -0.00671495 0) (0.00053981 -0.00588662 0) (0.000442682 -0.00510454 0) (0.000345951 -0.00434993 0) (0.000253373 -0.00361033 0) (0.000167901 -0.00287913 0) (9.32931e-05 -0.00215298 0) (3.60469e-05 -0.00141861 0) (2.97938e-06 -0.000597864 0) (0.017507 0.0103897 0) (0.0191742 0.0158725 0) (0.0198659 0.0219403 0) (0.0193702 0.0278651 0) (0.0175096 0.0331368 0) (0.0144169 0.0373281 0) (0.0103255 0.0400651 0) (0.00548179 0.0410315 0) (0.00011934 0.0403551 0) (-0.00539967 0.0377159 0) (-0.0104191 0.0329113 0) (-0.0136139 0.0262989 0) (-0.0145165 0.0240494 0) (-0.0142279 0.0232248 0) (-0.0127645 0.0184148 0) (-0.0111246 0.00906635 0) (-0.0103624 0.00177847 0) (-0.00964575 -0.00375437 0) (-0.00858113 -0.00845158 0) (-0.0070936 -0.0120968 0) (-0.00556894 -0.0144187 0) (-0.00427404 -0.0163655 0) (-0.00315723 -0.0185651 0) (-0.00246339 -0.0210913 0) (-0.00217801 -0.0216008 0) (-0.0018719 -0.0220519 0) (-0.00152808 -0.0222891 0) (-0.0011867 -0.0222484 0) (-0.00087391 -0.0219154 0) (-0.000618309 -0.0212978 0) (-0.000437996 -0.0203835 0) (-0.000347525 -0.0190426 0) (-0.000149688 -0.0166221 0) (-0.000344659 -0.0148196 0) (0.000253111 -0.0126454 0) (0.00163483 -0.0136537 0) (0.00198714 -0.0102944 0) (0.00179394 -0.0106343 0) (0.00156711 -0.0096283 0) (0.00132407 -0.00849244 0) (0.0011112 -0.0074833 0) (0.00093171 -0.00658241 0) (0.000770651 -0.00575756 0) (0.000620629 -0.00498088 0) (0.000479524 -0.00423313 0) (0.000348093 -0.00350269 0) (0.000228839 -0.00278402 0) (0.000126452 -0.00207499 0) (4.89069e-05 -0.0013642 0) (4.54471e-06 -0.000575864 0) (0.0191202 0.00776294 0) (0.0217824 0.0143545 0) (0.0230597 0.0215879 0) (0.0229788 0.0288073 0) (0.0213739 0.0355696 0) (0.0181798 0.041013 0) (0.0137615 0.0447165 0) (0.00844522 0.0463801 0) (0.00263915 0.0459732 0) (-0.00308046 0.0429976 0) (-0.00792034 0.0369536 0) (-0.0105909 0.0278788 0) (-0.0110093 0.0237155 0) (-0.0106878 0.0226121 0) (-0.00959018 0.0165096 0) (-0.0080709 0.00823291 0) (-0.0070198 0.00114237 0) (-0.00612204 -0.00443401 0) (-0.00497696 -0.00967242 0) (-0.00344959 -0.0135839 0) (-0.00183056 -0.0159211 0) (-0.000603246 -0.0174164 0) (4.53682e-05 -0.0193961 0) (9.14931e-05 -0.0212155 0) (0.000235776 -0.0219748 0) (0.000642114 -0.0222721 0) (0.000748168 -0.0224932 0) (0.000822837 -0.0224177 0) (0.000815189 -0.0220015 0) (0.0006606 -0.021245 0) (0.000280242 -0.0201365 0) (-0.000448697 -0.0186057 0) (-0.00102928 -0.0164755 0) (-0.00191345 -0.0142183 0) (-0.00233975 -0.0138672 0) (-0.00263819 -0.0139861 0) (-0.000282666 -0.0124869 0) (0.0024307 -0.0105894 0) (0.00190483 -0.00928184 0) (0.00155243 -0.00818953 0) (0.00131902 -0.00724476 0) (0.00113112 -0.00638511 0) (0.000951917 -0.00558166 0) (0.000775186 -0.00481687 0) (0.000602525 -0.00407903 0) (0.000438242 -0.00336076 0) (0.000287899 -0.00265887 0) (0.000158854 -0.00197283 0) (6.13422e-05 -0.00129338 0) (5.97598e-06 -0.000547468 0) (0.0217959 0.00380515 0) (0.0255068 0.0118651 0) (0.0275738 0.0207378 0) (0.0277381 0.0295178 0) (0.0259422 0.0380959 0) (0.0224066 0.0449926 0) (0.0175852 0.0497713 0) (0.0119005 0.052149 0) (0.00580897 0.0519162 0) (-0.000261361 0.0486021 0) (-0.00602456 0.0414863 0) (-0.0093592 0.028989 0) (-0.0109368 0.0241544 0) (-0.0115719 0.0220661 0) (-0.010209 0.0147608 0) (-0.00780167 0.00650191 0) (-0.0051626 -0.00043329 0) (-0.00290193 -0.00568023 0) (-0.000739525 -0.0113785 0) (0.00151042 -0.0153841 0) (0.00324865 -0.017369 0) (0.00401345 -0.0179362 0) (0.0039996 -0.0194684 0) (0.00349351 -0.0207813 0) (0.00307981 -0.0221881 0) (0.0031727 -0.0224922 0) (0.00332162 -0.0225709 0) (0.00325404 -0.0223642 0) (0.0030248 -0.0217977 0) (0.00264373 -0.0208463 0) (0.002101 -0.0194834 0) (0.00138601 -0.0176859 0) (0.000589904 -0.0156635 0) (-0.000696287 -0.0128126 0) (-0.00133548 -0.0143211 0) (-0.00122056 -0.0138805 0) (-0.000695493 -0.0155143 0) (0.000399512 -0.0112091 0) (0.00104972 -0.00937434 0) (0.00129689 -0.00813228 0) (0.00132785 -0.00712564 0) (0.00124652 -0.00623391 0) (0.00110018 -0.00541093 0) (0.000918529 -0.00463654 0) (0.0007229 -0.00389863 0) (0.000528687 -0.00318949 0) (0.000347907 -0.00250571 0) (0.000191976 -0.00184712 0) (7.40303e-05 -0.00120621 0) (7.41673e-06 -0.000512728 0) (0.0254745 -0.000946352 0) (0.029644 0.00860471 0) (0.0322606 0.0194191 0) (0.0324766 0.0304467 0) (0.0304175 0.0408381 0) (0.0266307 0.049307 0) (0.0214676 0.0551601 0) (0.0155241 0.0580956 0) (0.0094159 0.0578268 0) (0.00387914 0.0539001 0) (0.000273631 0.0457051 0) (-0.00408195 0.0324758 0) (-0.0099154 0.0273712 0) (-0.0124673 0.0221027 0) (-0.0115979 0.0130759 0) (-0.00868639 0.00342138 0) (-0.00471415 -0.00365585 0) (-0.000141804 -0.00914009 0) (0.00380573 -0.0139009 0) (0.00614629 -0.0174109 0) (0.0073737 -0.0183163 0) (0.00795861 -0.0183314 0) (0.0082591 -0.0192988 0) (0.00815328 -0.0203474 0) (0.00774262 -0.0218044 0) (0.0071806 -0.0223683 0) (0.00672625 -0.0223826 0) (0.00628569 -0.0220634 0) (0.00578135 -0.0213846 0) (0.00521701 -0.0203291 0) (0.00462546 -0.0188787 0) (0.00407826 -0.0170353 0) (0.00361438 -0.0149562 0) (0.00393754 -0.0123414 0) (0.00239119 -0.0127928 0) (0.000483386 -0.0135936 0) (0.000171068 -0.0156298 0) (0.000192606 -0.0121426 0) (0.000999226 -0.00996849 0) (0.00138565 -0.0084063 0) (0.00151103 -0.00717807 0) (0.00145816 -0.00615073 0) (0.00130259 -0.00525182 0) (0.00109298 -0.00444025 0) (0.000861513 -0.00369058 0) (0.000629946 -0.00298744 0) (0.00041429 -0.00232345 0) (0.000228591 -0.00169713 0) (8.82419e-05 -0.00110214 0) (9.17383e-06 -0.000471337 0) (0.0286729 -0.00545491 0) (0.033219 0.00495915 0) (0.0364982 0.0177639 0) (0.0371126 0.0314326 0) (0.0349056 0.0438822 0) (0.0305182 0.0540755 0) (0.024773 0.0609672 0) (0.0183346 0.0643614 0) (0.0116261 0.0639989 0) (0.00497029 0.0594152 0) (-0.00119011 0.05021 0) (-0.00792824 0.0388208 0) (-0.0134654 0.0314414 0) (-0.0147966 0.0222454 0) (-0.0125952 0.0106969 0) (-0.0081153 -0.000738268 0) (-0.00254435 -0.00843382 0) (0.00272403 -0.0139569 0) (0.00690881 -0.0172717 0) (0.00975157 -0.0194622 0) (0.011246 -0.0192271 0) (0.0120884 -0.018972 0) (0.0124981 -0.019397 0) (0.0124864 -0.0201743 0) (0.0120566 -0.0211751 0) (0.0113201 -0.0217035 0) (0.0105186 -0.021755 0) (0.00970349 -0.0214179 0) (0.00887672 -0.0207136 0) (0.00806484 -0.0196668 0) (0.00731566 -0.0182741 0) (0.00667761 -0.0165576 0) (0.00617592 -0.0146222 0) (0.00597817 -0.0125892 0) (0.00599408 -0.0112285 0) (0.00563363 -0.0128386 0) (0.00416678 -0.0142368 0) (0.0027968 -0.0121925 0) (0.00245246 -0.0101552 0) (0.00228607 -0.00848928 0) (0.00210926 -0.00712798 0) (0.00188374 -0.00599718 0) (0.00161688 -0.00503424 0) (0.00132675 -0.00419155 0) (0.00103206 -0.00343533 0) (0.000748673 -0.00274385 0) (0.000490303 -0.00210606 0) (0.000270304 -0.00151948 0) (0.000104627 -0.000979249 0) (1.13288e-05 -0.000422373 0) (0.0291243 -0.00966879 0) (0.0346157 0.000612306 0) (0.0392451 0.0154862 0) (0.0405469 0.032184 0) (0.0380879 0.047501 0) (0.0330536 0.0594292 0) (0.0268515 0.0673206 0) (0.0200488 0.0712243 0) (0.0128335 0.071088 0) (0.00528649 0.0664785 0) (-0.00211975 0.0569175 0) (-0.00968912 0.0460087 0) (-0.0152856 0.0345939 0) (-0.0162594 0.0214146 0) (-0.0129268 0.00655416 0) (-0.0063283 -0.00665092 0) (0.00132052 -0.0147782 0) (0.00763757 -0.0189563 0) (0.0118744 -0.0210067 0) (0.0141769 -0.0213501 0) (0.0152962 -0.0203984 0) (0.0161083 -0.0196352 0) (0.0165989 -0.0196183 0) (0.0166886 -0.0200012 0) (0.0162954 -0.0205397 0) (0.0154816 -0.0208394 0) (0.0144398 -0.0208015 0) (0.0133025 -0.0204359 0) (0.012139 -0.0197352 0) (0.0110257 -0.0187618 0) (0.0100411 -0.0174928 0) (0.00922021 -0.0159454 0) (0.00859062 -0.01422 0) (0.00829117 -0.012484 0) (0.00828649 -0.0114345 0) (0.00788216 -0.011977 0) (0.00648725 -0.0123618 0) (0.00494938 -0.0111814 0) (0.00401215 -0.00959973 0) (0.00338089 -0.00809549 0) (0.00287788 -0.00678306 0) (0.00242751 -0.00565763 0) (0.00200474 -0.00469193 0) (0.00160362 -0.00385312 0) (0.00122693 -0.00311176 0) (0.000880904 -0.00244656 0) (0.000573724 -0.00184635 0) (0.000315867 -0.00130975 0) (0.000122561 -0.000834845 0) (1.36692e-05 -0.000364681 0) (0.0243968 -0.0143854 0) (0.031943 -0.00548764 0) (0.0391079 0.0118819 0) (0.0416645 0.0325837 0) (0.0392652 0.0515159 0) (0.0337185 0.0653182 0) (0.0271808 0.0740243 0) (0.0204949 0.0784032 0) (0.0133129 0.078781 0) (0.0052244 0.074574 0) (-0.00338128 0.064718 0) (-0.0107031 0.052666 0) (-0.01522 0.0375536 0) (-0.0159546 0.0199468 0) (-0.01149 0.00067696 0) (-0.00220441 -0.0150529 0) (0.00774059 -0.0224702 0) (0.0138719 -0.0239627 0) (0.0165244 -0.024002 0) (0.0178746 -0.0228523 0) (0.0186083 -0.0212452 0) (0.0194225 -0.0204471 0) (0.0203604 -0.020049 0) (0.0207589 -0.0199353 0) (0.0204935 -0.0199384 0) (0.0196345 -0.0198449 0) (0.0183779 -0.0195796 0) (0.016934 -0.0191357 0) (0.0154188 -0.0184113 0) (0.013966 -0.0175645 0) (0.0127075 -0.0164735 0) (0.0116617 -0.0151323 0) (0.010837 -0.0136377 0) (0.0102919 -0.0121911 0) (0.00991178 -0.0112152 0) (0.00921785 -0.0110461 0) (0.00792835 -0.0108052 0) (0.00648314 -0.00990486 0) (0.00531248 -0.00865811 0) (0.00438889 -0.00736702 0) (0.00363188 -0.00617776 0) (0.00298119 -0.00512661 0) (0.00240587 -0.00421086 0) (0.00189023 -0.00341278 0) (0.00142736 -0.00271144 0) (0.00101587 -0.00209018 0) (0.000658417 -0.00154088 0) (0.000361991 -0.00106555 0) (0.000140678 -0.00066722 0) (1.59493e-05 -0.000297591 0) (0.0120755 -0.0206669 0) (0.023206 -0.0152121 0) (0.0345688 0.00587855 0) (0.0392787 0.0321335 0) (0.0371084 0.0554859 0) (0.0310203 0.07137 0) (0.0247941 0.080207 0) (0.0194459 0.084821 0) (0.0134898 0.086049 0) (0.00568537 0.082879 0) (-0.00306412 0.0726743 0) (-0.00937482 0.0579667 0) (-0.0126253 0.039977 0) (-0.0130956 0.0178135 0) (-0.00740543 -0.00742208 0) (0.00578394 -0.0266711 0) (0.0185557 -0.0310075 0) (0.0227814 -0.0271061 0) (0.0219016 -0.0251435 0) (0.0209703 -0.0232798 0) (0.020986 -0.0218297 0) (0.0223527 -0.021618 0) (0.0238962 -0.0208572 0) (0.0247113 -0.0201128 0) (0.0246175 -0.0193985 0) (0.0236977 -0.0187263 0) (0.0221983 -0.0180817 0) (0.0204241 -0.0175179 0) (0.0185385 -0.0167014 0) (0.0167397 -0.0160599 0) (0.0152013 -0.0151893 0) (0.0138949 -0.0140721 0) (0.0128136 -0.0127989 0) (0.0119505 -0.0115618 0) (0.0112082 -0.0105712 0) (0.0102803 -0.00999394 0) (0.00899757 -0.00942597 0) (0.00759172 -0.00857534 0) (0.00631001 -0.00752179 0) (0.00521084 -0.00641912 0) (0.00427519 -0.00537523 0) (0.00346947 -0.00443422 0) (0.00276767 -0.00360406 0) (0.00215212 -0.00287635 0) (0.00161161 -0.00223765 0) (0.00114022 -0.00167711 0) (0.000736557 -0.00119153 0) (0.000404619 -0.000788137 0) (0.000157525 -0.000476932 0) (1.80711e-05 -0.000221284 0) (-0.00595356 -0.0294678 0) (0.00806411 -0.0296764 0) (0.0236149 -0.00346136 0) (0.0315109 0.0300779 0) (0.0300695 0.0591871 0) (0.0236594 0.0770906 0) (0.0189827 0.0846497 0) (0.0169714 0.0890025 0) (0.0142514 0.0916113 0) (0.00814185 0.0905151 0) (-0.000476067 0.0799826 0) (-0.00447998 0.0609788 0) (-0.00487456 0.0412234 0) (-0.00598674 0.0152754 0) (7.07261e-05 -0.0183776 0) (0.0189145 -0.042899 0) (0.03512 -0.0394572 0) (0.0335442 -0.0248295 0) (0.0250467 -0.0223458 0) (0.0212334 -0.0219367 0) (0.021319 -0.0226168 0) (0.0240055 -0.0236124 0) (0.0269446 -0.0225471 0) (0.0285866 -0.020731 0) (0.028642 -0.018919 0) (0.027517 -0.0174213 0) (0.0257106 -0.0162889 0) (0.0235402 -0.0154997 0) (0.021295 -0.0146661 0) (0.0192573 -0.0142777 0) (0.017457 -0.0136353 0) (0.0158809 -0.0127438 0) (0.0145302 -0.0116813 0) (0.0133608 -0.0105854 0) (0.0122727 -0.00959933 0) (0.0111032 -0.0088076 0) (0.00975577 -0.00806178 0) (0.00833877 -0.00721562 0) (0.00700154 -0.00628285 0) (0.00580417 -0.00533434 0) (0.00475634 -0.0044357 0) (0.00384448 -0.00362039 0) (0.00305091 -0.00289677 0) (0.00235988 -0.00226006 0) (0.00175913 -0.00170164 0) (0.00124049 -0.00121576 0) (0.0008 -0.000804787 0) (0.000439605 -0.000482311 0) (0.000171713 -0.000266999 0) (2.0017e-05 -0.000136777 0) (-0.0209453 -0.0356329 0) (-0.0137043 -0.0455374 0) (0.0027731 -0.0181788 0) (0.0165215 0.0238908 0) (0.0166286 0.0632507 0) (0.00975979 0.082807 0) (0.0086832 0.085741 0) (0.0132995 0.0891881 0) (0.0170382 0.0939754 0) (0.0148906 0.0972649 0) (0.00864335 0.085478 0) (0.00989818 0.0586202 0) (0.0131344 0.0413845 0) (0.00806043 0.0145233 0) (0.0109419 -0.0318644 0) (0.0371449 -0.0658906 0) (0.0570338 -0.0466132 0) (0.0435737 -0.0111872 0) (0.0240525 -0.0146281 0) (0.0189869 -0.0191258 0) (0.0206391 -0.0248271 0) (0.0263731 -0.0276219 0) (0.031069 -0.0255319 0) (0.0330128 -0.0216716 0) (0.0326961 -0.0182059 0) (0.0309446 -0.0156566 0) (0.028596 -0.0141604 0) (0.0260769 -0.0131072 0) (0.0236605 -0.0125021 0) (0.0214729 -0.0122523 0) (0.0193976 -0.0118047 0) (0.0175371 -0.0111374 0) (0.015905 -0.0102799 0) (0.0144488 -0.009304 0) (0.0130837 -0.00834538 0) (0.0117087 -0.00747382 0) (0.0102678 -0.00664558 0) (0.00881247 -0.00581966 0) (0.00742975 -0.00498439 0) (0.0061728 -0.00417026 0) (0.00505799 -0.00341125 0) (0.00408103 -0.00272653 0) (0.0032301 -0.00212001 0) (0.00249153 -0.0015868 0) (0.00185286 -0.00112055 0) (0.0013046 -0.000719373 0) (0.000841099 -0.000390951 0) (0.000462912 -0.000155792 0) (0.000181761 -4.25132e-05 0) (2.16813e-05 -4.5791e-05 0) (-0.0328834 -0.0367863 0) (-0.0322592 -0.0612243 0) (-0.0208505 -0.0383619 0) (-0.00588145 0.0147727 0) (-0.00968418 0.0889687 0) (-0.0166939 0.115703 0) (-0.00832991 0.104585 0) (0.00836808 0.108858 0) (0.025041 0.118269 0) (0.03423 0.130499 0) (0.0348465 0.101992 0) (0.0431206 0.0511066 0) (0.0496588 0.0460771 0) (0.0331563 0.0232869 0) (0.0252897 -0.0478593 0) (0.0578017 -0.10057 0) (0.0742408 -0.0455478 0) (0.0422302 0.0239373 0) (0.0138644 -0.00591152 0) (0.0150093 -0.0172775 0) (0.0224101 -0.032323 0) (0.0327409 -0.0344975 0) (0.0377366 -0.0287494 0) (0.0382991 -0.0220099 0) (0.0369811 -0.0168448 0) (0.0346752 -0.0132823 0) (0.0317967 -0.0115256 0) (0.0288052 -0.0103656 0) (0.025938 -0.0100096 0) (0.0232907 -0.00989409 0) (0.0209028 -0.00966723 0) (0.0187852 -0.00924907 0) (0.0169001 -0.00859531 0) (0.015185 -0.00775288 0) (0.0135808 -0.00685911 0) (0.0120247 -0.00598976 0) (0.01049 -0.00516443 0) (0.00899999 -0.00438636 0) (0.00759604 -0.0036502 0) (0.00631386 -0.00296479 0) (0.0051697 -0.00234288 0) (0.00416412 -0.00179085 0) (0.00328897 -0.00130667 0) (0.00253191 -0.000883644 0) (0.00188015 -0.000516207 0) (0.00132302 -0.000205382 0) (0.000853496 3.62507e-05 0) (0.000470978 0.000181065 0) (0.000186187 0.000189639 0) (2.28376e-05 4.92131e-05 0) (0.00122482 -0.03387 0) (-0.0332097 -0.0500019 0) (-0.0666283 -0.0501567 0) (-0.0644374 -0.00584196 0) (-0.080028 0.0965877 0) (-0.066889 0.0780643 0) (-0.0328757 0.0369017 0) (0.00603259 0.0453802 0) (0.0457336 0.045864 0) (0.0808159 0.0948089 0) (0.0975107 0.0953356 0) (0.101761 0.0262242 0) (0.110349 0.0831089 0) (0.0747958 0.0669754 0) (0.0499253 -0.0700006 0) (0.0737408 -0.157021 0) (0.0503756 0.00395002 0) (-0.00680253 0.0597206 0) (-0.00161011 -0.0160082 0) (0.0179321 -0.026735 0) (0.0318307 -0.0453332 0) (0.04111 -0.0421284 0) (0.0435458 -0.0299034 0) (0.0418767 -0.0206703 0) (0.0396489 -0.014698 0) (0.037001 -0.0104079 0) (0.033732 -0.00831461 0) (0.0303347 -0.00721892 0) (0.0271678 -0.00705422 0) (0.0243039 -0.007228 0) (0.0217617 -0.00729653 0) (0.0194899 -0.00713675 0) (0.0174243 -0.00667923 0) (0.0155255 -0.00598758 0) (0.0137523 -0.0051879 0) (0.0120649 -0.00437989 0) (0.0104519 -0.00361836 0) (0.00892583 -0.00292331 0) (0.00751049 -0.00229895 0) (0.00622679 -0.00174581 0) (0.00508482 -0.00126318 0) (0.00408427 -0.000846773 0) (0.00321729 -0.000488392 0) (0.00247134 -0.000178869 0) (0.00183266 8.70677e-05 0) (0.00128925 0.000305913 0) (0.000832714 0.000460425 0) (0.00046112 0.000515741 0) (0.000183719 0.000421146 0) (2.31988e-05 0.000145075 0) (-0.0410985 0.00545466 0) (-0.0855567 0.0301573 0) (-0.160987 0.0213923 0) (-0.198199 0.032431 0) (-0.144644 0.0241196 0) (-0.074135 0.00356426 0) (-0.0301473 -0.00322791 0) (0.00540336 -0.00743823 0) (0.0453499 -0.00618374 0) (0.103868 0.00288718 0) (0.178452 0.0173362 0) (0.224973 0.0395508 0) (0.198159 0.103246 0) (0.145902 0.136477 0) (0.108692 -0.085407 0) (0.118969 -0.18856 0) (0.0465461 0.0922617 0) (-0.0034762 0.0407938 0) (0.033911 -0.0368265 0) (0.0450108 -0.0340331 0) (0.0447307 -0.0506889 0) (0.0441555 -0.0440324 0) (0.0423932 -0.0265356 0) (0.0401616 -0.0184807 0) (0.0392702 -0.0125212 0) (0.0370775 -0.00733902 0) (0.0337341 -0.00483261 0) (0.0302903 -0.00389428 0) (0.0271767 -0.00401474 0) (0.0243959 -0.00450464 0) (0.0218902 -0.00486171 0) (0.0195944 -0.00491829 0) (0.017455 -0.00463248 0) (0.0154489 -0.00408292 0) (0.0135602 -0.0033934 0) (0.0117803 -0.00268332 0) (0.010112 -0.00202237 0) (0.00856763 -0.00144173 0) (0.00716164 -0.000948762 0) (0.00590365 -0.000538727 0) (0.00479597 -0.000201724 0) (0.00383421 7.48764e-05 0) (0.00300823 0.000304802 0) (0.00230377 0.000499556 0) (0.00170541 0.000664219 0) (0.00119949 0.000792876 0) (0.000776145 0.000863686 0) (0.000431771 0.000834339 0) (0.000173645 0.000642712 0) (2.26162e-05 0.000238132 0) (-0.0532836 0.0179427 0) (-0.0521796 0.0323266 0) (-0.059456 0.0325436 0) (-0.0428973 0.0105844 0) (-0.015126 -0.00870391 0) (0.00198921 -0.010272 0) (0.00878378 -0.0100827 0) (0.0143808 -0.0118381 0) (0.0175007 -0.0111529 0) (0.0203462 -0.00764272 0) (0.0310828 -0.00479095 0) (0.0629359 0.00831048 0) (0.113419 0.0324558 0) (0.200091 0.0560307 0) (0.263767 0.0263366 0) (0.140389 0.0235028 0) (-0.109333 0.246781 0) (-0.0286016 -0.01818 0) (0.038102 -0.0341769 0) (0.0318661 -0.026863 0) (0.0199101 -0.0474888 0) (0.018747 -0.0419137 0) (0.0253082 -0.0287034 0) (0.0343443 -0.0217631 0) (0.037593 -0.0124593 0) (0.0359463 -0.00479115 0) (0.0325548 -0.00144592 0) (0.0291723 -0.000653889 0) (0.0262523 -0.00112328 0) (0.0236896 -0.00191198 0) (0.0213448 -0.00249315 0) (0.0191244 -0.00270112 0) (0.0169827 -0.00253641 0) (0.014922 -0.00209544 0) (0.012965 -0.00152116 0) (0.0111328 -0.000934556 0) (0.00944209 -0.000406757 0) (0.00790827 2.98464e-05 0) (0.00654036 0.000369936 0) (0.00533934 0.000623552 0) (0.00429957 0.000807555 0) (0.00341084 0.000940943 0) (0.00265897 0.00104168 0) (0.00202674 0.00112302 0) (0.00149638 0.00118968 0) (0.0010523 0.00123329 0) (0.000682845 0.00122739 0) (0.000382408 0.00112222 0) (0.000155799 0.000844425 0) (2.11182e-05 0.000324395 0) (-0.00772412 0.0342613 0) (-0.0245682 0.0328128 0) (-0.0155255 0.0249216 0) (0.000464329 -0.00102806 0) (0.00307894 -0.0179344 0) (0.00467218 -0.0169562 0) (0.00892062 -0.0165121 0) (0.0126601 -0.0168574 0) (0.0158495 -0.0155821 0) (0.0200445 -0.0122426 0) (0.023967 -0.0119316 0) (0.0276508 -0.0075452 0) (0.0339102 0.00547295 0) (0.0527861 0.0296178 0) (0.0688349 0.0502072 0) (0.0306486 0.0472173 0) (0.0383116 0.0297057 0) (0.250012 -0.0450187 0) (0.0984762 0.0234659 0) (0.018804 -0.0103719 0) (-0.00284579 -0.0505798 0) (0.0145755 -0.0542506 0) (0.0352883 -0.0423259 0) (0.0417145 -0.0268584 0) (0.0387331 -0.0117204 0) (0.0340231 -0.0012675 0) (0.0297966 0.00217575 0) (0.0267208 0.00242414 0) (0.0243334 0.00147277 0) (0.0222315 0.000407036 0) (0.0201836 -0.000296947 0) (0.018105 -0.000552969 0) (0.0159993 -0.000433098 0) (0.0139188 -6.75127e-05 0) (0.0119313 0.000391139 0) (0.0100866 0.00083197 0) (0.00841429 0.00119485 0) (0.00693051 0.00145723 0) (0.00563872 0.00162143 0) (0.00453196 0.00170401 0) (0.00359673 0.00172772 0) (0.0028163 0.0017161 0) (0.00217163 0.00168962 0) (0.00164199 0.00166218 0) (0.0012069 0.00163756 0) (0.000848595 0.00160481 0) (0.000553402 0.00153282 0) (0.000313385 0.00136465 0) (0.000130343 0.00101624 0) (1.87548e-05 0.000399831 0) (0.00222315 0.0394887 0) (0.00537656 0.0340553 0) (0.0104323 0.0175251 0) (0.0115789 -0.00373538 0) (0.00810793 -0.0152739 0) (0.00647963 -0.0181304 0) (0.00717487 -0.0188129 0) (0.00856993 -0.0187612 0) (0.00991193 -0.0176754 0) (0.011175 -0.0154361 0) (0.0112574 -0.0126502 0) (0.0101015 -0.00660665 0) (0.00578564 0.00505484 0) (0.00698641 0.0304175 0) (0.0175393 0.0491683 0) (0.0160992 0.0494265 0) (0.00351188 0.0315098 0) (-0.00259826 0.0337562 0) (-0.0123505 0.0521786 0) (0.0490847 0.00139345 0) (0.0413181 -0.0487074 0) (0.043767 -0.0638712 0) (0.0472327 -0.0499449 0) (0.0435912 -0.0210189 0) (0.0323721 -0.00450281 0) (0.0260349 0.00387075 0) (0.0236851 0.00543406 0) (0.0224409 0.00469459 0) (0.0213566 0.00332925 0) (0.0200676 0.00221784 0) (0.0184536 0.00161906 0) (0.016555 0.00148022 0) (0.014497 0.00165046 0) (0.0124179 0.00197122 0) (0.0104324 0.00230839 0) (0.00861606 0.00257797 0) (0.00700842 0.00274362 0) (0.00562222 0.00280166 0) (0.00445258 0.00276708 0) (0.00348348 0.00266441 0) (0.00269306 0.00252162 0) (0.00205767 0.00236518 0) (0.00155326 0.00221626 0) (0.00115561 0.0020881 0) (0.000841737 0.0019826 0) (0.000591769 0.00188585 0) (0.000389933 0.0017621 0) (0.000225799 0.00154765 0) (9.76378e-05 0.00114865 0) (1.55156e-05 0.000460563 0) (0.0167131 0.0408505 0) (0.0171271 0.0321287 0) (0.0181271 0.0161286 0) (0.0151685 -0.000997278 0) (0.0104769 -0.0117626 0) (0.00725623 -0.0166816 0) (0.00549333 -0.0185405 0) (0.00434845 -0.0187407 0) (0.00316435 -0.0175459 0) (0.00164421 -0.0148391 0) (-0.000877454 -0.0102541 0) (-0.0049248 -0.00230208 0) (-0.0111251 0.0100306 0) (-0.0147421 0.0287122 0) (-0.0127286 0.0428023 0) (-0.00902178 0.0495102 0) (-0.0210103 0.041497 0) (-0.0254511 0.0138688 0) (-0.0100544 0.0135989 0) (-0.00696769 0.00918142 0) (0.00509725 -0.0868491 0) (0.0211687 -0.0661024 0) (0.0185986 -0.0466578 0) (0.0122329 -0.0119208 0) (0.00980316 0.0010878 0) (0.0119255 0.00507941 0) (0.0150635 0.00569831 0) (0.0169833 0.00482617 0) (0.0177932 0.00383993 0) (0.0174854 0.0032953 0) (0.0162877 0.00320319 0) (0.0145144 0.00339755 0) (0.0124673 0.00370756 0) (0.0103884 0.00399864 0) (0.00843583 0.00419148 0) (0.00669762 0.00425389 0) (0.00521132 0.00418727 0) (0.00397967 0.0040128 0) (0.00298567 0.0037603 0) (0.00220263 0.00346239 0) (0.00159998 0.00315097 0) (0.00114726 0.00285358 0) (0.000815613 0.00259066 0) (0.000577837 0.00237348 0) (0.000409026 0.0022012 0) (0.000287694 0.00205644 0) (0.000196175 0.0018989 0) (0.000121557 0.00165867 0) (5.83022e-05 0.00123317 0) (1.13911e-05 0.000503038 0) (1.09273e-05 -0.000555345 0) (0.000110994 -0.00130249 0) (0.00030317 -0.00190534 0) (0.00057633 -0.00244583 0) (0.000920921 -0.00296177 0) (0.00133005 -0.00346213 0) (0.00179754 -0.0039411 0) (0.00231729 -0.00438793 0) (0.00288321 -0.00479144 0) (0.00348926 -0.00514163 0) (0.00412944 -0.00542997 0) (0.00479771 -0.0056494 0) (0.0054879 -0.00579417 0) (0.00619365 -0.00585968 0) (0.00690823 -0.0058422 0) (0.00762445 -0.00573872 0) (0.00833455 -0.00554666 0) (0.00903003 -0.00526349 0) (0.00970097 -0.00488654 0) (0.0103354 -0.00441395 0) (0.0109199 -0.00384608 0) (0.0114419 -0.00318491 0) (0.0118913 -0.00243139 0) (0.0122648 -0.00157982 0) (0.012554 -0.000598871 0) (0.0127126 0.000560302 0) (0.0126565 0.00189936 0) (0.012312 0.00336536 0) (0.0116415 0.00489062 0) (0.0106188 0.00641789 0) (0.0092046 0.00789973 0) (0.00734873 0.00929602 0) (0.00502006 0.010293 0) (0.00222759 0.0105085 0) (-0.000925701 0.0092158 0) (-0.00411876 0.00510943 0) (-0.00687 -0.00346796 0) (-0.00935319 -0.0157784 0) (-0.00899636 -0.029938 0) (-0.00226331 -0.0468732 0) (0.00778876 -0.0570623 0) (0.0240753 -0.0342283 0) (0.0497029 -0.0178028 0) (0.0779296 -0.0370453 0) (0.0432389 0.0837438 0) (0.0419971 -0.000224622 0) (0.027506 0.0147214 0) (0.0210082 0.0191559 0) (0.0187391 0.0338958 0) (0.0201747 0.049931 0) (1.12668e-05 -0.000612408 0) (0.000115367 -0.00145649 0) (0.000315986 -0.00214482 0) (0.000601618 -0.00276225 0) (0.000962233 -0.00334789 0) (0.0013905 -0.00391132 0) (0.00187993 -0.00444702 0) (0.00242416 -0.00494442 0) (0.00301702 -0.00539248 0) (0.00365253 -0.00578125 0) (0.00432482 -0.00610222 0) (0.00502817 -0.00634827 0) (0.00575682 -0.00651354 0) (0.00650493 -0.0065932 0) (0.00726646 -0.00658326 0) (0.00803511 -0.00648032 0) (0.00880439 -0.00628127 0) (0.0095675 -0.00598262 0) (0.0103162 -0.00557971 0) (0.0110391 -0.00506864 0) (0.0117231 -0.00444982 0) (0.0123562 -0.0037281 0) (0.0129318 -0.00290998 0) (0.0134642 -0.00199894 0) (0.0139757 -0.000938455 0) (0.0144186 0.000377958 0) (0.0146614 0.00197225 0) (0.014605 0.00374611 0) (0.0142362 0.00559917 0) (0.0135594 0.00748314 0) (0.0125409 0.00937482 0) (0.0111372 0.0112184 0) (0.00928779 0.0127057 0) (0.00689524 0.0134426 0) (0.00390065 0.0125853 0) (0.000318927 0.00866091 0) (-0.00407704 8.52191e-05 0) (-0.00874782 -0.0131338 0) (-0.010892 -0.0328439 0) (-0.00652027 -0.0573435 0) (0.00241105 -0.067898 0) (0.0069032 -0.0448195 0) (0.000690782 -0.015471 0) (-0.0812309 -0.036476 0) (0.0213371 -0.00453861 0) (0.0328316 0.00403864 0) (0.0353781 0.0108723 0) (0.0399315 0.0240867 0) (0.0329337 0.0353908 0) (0.0285772 0.0461103 0) (1.15358e-05 -0.000671449 0) (0.000118972 -0.00161642 0) (0.000326646 -0.00239401 0) (0.000622736 -0.00309185 0) (0.00099678 -0.00375027 0) (0.00144107 -0.00437949 0) (0.00194879 -0.0049744 0) (0.00251344 -0.00552472 0) (0.00312881 -0.00601967 0) (0.00378902 -0.00644951 0) (0.0044885 -0.00680587 0) (0.00522189 -0.00708172 0) (0.00598399 -0.00727121 0) (0.00676965 -0.00736949 0) (0.00757366 -0.00737248 0) (0.00839088 -0.00727667 0) (0.00921643 -0.0070789 0) (0.010046 -0.00677526 0) (0.0108742 -0.00635846 0) (0.0116912 -0.00582122 0) (0.012483 -0.00516323 0) (0.0132357 -0.00439439 0) (0.0139401 -0.00353203 0) (0.0146314 -0.00261767 0) (0.0153935 -0.0015634 0) (0.0161877 -0.000140422 0) (0.0168019 0.00171284 0) (0.0170928 0.00379655 0) (0.0170921 0.00593677 0) (0.016864 0.00810454 0) (0.0164072 0.0103233 0) (0.0156713 0.0125483 0) (0.0145523 0.0145361 0) (0.0129125 0.0159071 0) (0.0105879 0.0158088 0) (0.00734529 0.0127549 0) (0.00289361 0.0052138 0) (-0.00226077 -0.00862423 0) (-0.00664778 -0.0313485 0) (-0.00832197 -0.0619446 0) (-0.00705454 -0.0751499 0) (-0.00174566 -0.0523386 0) (0.0250106 -0.00969596 0) (0.0247211 0.00284967 0) (0.029575 -0.0081493 0) (0.0351848 0.00252463 0) (0.0340516 0.00351572 0) (0.0350915 0.025235 0) (0.0353463 0.0387681 0) (0.0340761 0.0466214 0) (1.17225e-05 -0.000732052 0) (0.000121681 -0.00178112 0) (0.000334786 -0.00265106 0) (0.000638975 -0.00343212 0) (0.00102341 -0.0041658 0) (0.00148003 -0.00486298 0) (0.00200179 -0.00551905 0) (0.00258205 -0.00612417 0) (0.00321462 -0.00666795 0) (0.0038938 -0.00714102 0) (0.00461437 -0.00753532 0) (0.00537148 -0.00784405 0) (0.00616055 -0.00806153 0) (0.00697722 -0.00818306 0) (0.00781728 -0.00820468 0) (0.00867684 -0.0081232 0) (0.00955286 -0.0079361 0) (0.0104445 -0.00764026 0) (0.0113507 -0.00722518 0) (0.0122657 -0.00667859 0) (0.0131756 -0.00599488 0) (0.0140613 -0.0051889 0) (0.0148978 -0.00428796 0) (0.0157257 -0.00342805 0) (0.0167362 -0.00252405 0) (0.0179281 -0.00106876 0) (0.0189488 0.00107296 0) (0.0195968 0.00347562 0) (0.0199989 0.00583203 0) (0.0202966 0.00816871 0) (0.0205026 0.0105793 0) (0.020573 0.0130632 0) (0.0204151 0.0154517 0) (0.0199007 0.017374 0) (0.0188557 0.0180657 0) (0.0169009 0.0162004 0) (0.0136639 0.0100551 0) (0.00888328 -0.00262786 0) (0.00191878 -0.0237823 0) (-0.0111019 -0.051777 0) (-0.0318647 -0.066945 0) (-0.0562278 -0.0559442 0) (-0.0134901 -0.0261302 0) (0.00885987 -0.00329531 0) (0.0403373 -0.0201094 0) (0.042374 -0.00098547 0) (0.0395527 0.0116786 0) (0.0352007 0.0247462 0) (0.0339498 0.0383818 0) (0.0339574 0.0468902 0) (1.18143e-05 -0.000793732 0) (0.000123366 -0.00194923 0) (0.000340052 -0.00291382 0) (0.000649653 -0.00378018 0) (0.00104102 -0.0045909 0) (0.00150579 -0.00535753 0) (0.0020367 -0.00607608 0) (0.00262703 -0.00673729 0) (0.00327065 -0.00733133 0) (0.00396211 -0.00784935 0) (0.00469657 -0.00828374 0) (0.00546974 -0.00862812 0) (0.00627774 -0.00887715 0) (0.00711707 -0.00902645 0) (0.00798451 -0.00907242 0) (0.00887739 -0.00901258 0) (0.00979454 -0.00884605 0) (0.0107395 -0.00857306 0) (0.0117177 -0.00817948 0) (0.01273 -0.00764728 0) (0.0137713 -0.00696203 0) (0.014822 -0.0061317 0) (0.0158301 -0.00517854 0) (0.0167628 -0.00436041 0) (0.0179573 -0.00384384 0) (0.0195304 -0.00245578 0) (0.0209193 6.98296e-05 0) (0.0218649 0.00280737 0) (0.0226695 0.00524138 0) (0.0235615 0.00758937 0) (0.0245084 0.0100513 0) (0.0254475 0.0126324 0) (0.0263335 0.0152164 0) (0.0270812 0.017475 0) (0.0275192 0.0187603 0) (0.0273185 0.0179843 0) (0.0259362 0.0134723 0) (0.0223987 0.00359241 0) (0.0150749 -0.0127038 0) (0.00168368 -0.0330722 0) (-0.0166058 -0.0491902 0) (-0.043111 -0.0590344 0) (-0.00856974 -0.0670549 0) (0.0263038 -0.0772698 0) (0.039258 -0.0441552 0) (0.0388523 -0.00493798 0) (0.0351921 0.0166095 0) (0.0305736 0.0283706 0) (0.0285103 0.0393037 0) (0.0289417 0.0466907 0) (1.17995e-05 -0.000855945 0) (0.000123911 -0.00211926 0) (0.000342128 -0.00317989 0) (0.000654168 -0.00413279 0) (0.00104864 -0.0050215 0) (0.00151692 -0.00585833 0) (0.00205156 -0.00663996 0) (0.00264579 -0.00735787 0) (0.00329357 -0.00800294 0) (0.00398971 -0.00856699 0) (0.00472981 -0.00904308 0) (0.00551015 -0.00942537 0) (0.00632754 -0.009709 0) (0.00717926 -0.00989007 0) (0.00806292 -0.00996547 0) (0.00897662 -0.00993392 0) (0.0099206 -0.00979737 0) (0.0109032 -0.00956394 0) (0.0119402 -0.00921765 0) (0.0130423 -0.00873174 0) (0.0142226 -0.0080919 0) (0.0154855 -0.0072809 0) (0.0167582 -0.0062577 0) (0.017854 -0.00533553 0) (0.0191182 -0.00542213 0) (0.020812 -0.00420534 0) (0.0223492 -0.00117502 0) (0.0235186 0.00185091 0) (0.0247959 0.00409563 0) (0.0263727 0.00629661 0) (0.0280987 0.00868913 0) (0.0299123 0.0112304 0) (0.0318062 0.0138048 0) (0.033772 0.0161426 0) (0.035695 0.0177438 0) (0.0372688 0.0177233 0) (0.0378726 0.0147828 0) (0.0365492 0.00773485 0) (0.0320552 -0.00407002 0) (0.0233809 -0.0198725 0) (0.0130168 -0.0378054 0) (0.00371439 -0.0590859 0) (0.0246956 -0.0901624 0) (0.0274591 -0.0823892 0) (0.0205185 -0.02455 0) (0.0136272 0.00539104 0) (0.0130807 0.0206639 0) (0.0145957 0.0308807 0) (0.0166695 0.0395976 0) (0.0195394 0.0453869 0) (1.16681e-05 -0.00091809 0) (0.000123224 -0.00228953 0) (0.000340763 -0.00344664 0) (0.000652045 -0.0044864 0) (0.00104551 -0.00545321 0) (0.00151231 -0.00636013 0) (0.00204486 -0.00720464 0) (0.00263633 -0.00797906 0) (0.00328079 -0.00867515 0) (0.00397333 -0.00928559 0) (0.00470997 -0.00980423 0) (0.00548757 -0.0102259 0) (0.00630355 -0.0105463 0) (0.00715576 -0.010762 0) (0.008042 -0.0108703 0) (0.00895989 -0.0108713 0) (0.00990975 -0.0107712 0) (0.0109022 -0.0105906 0) (0.0119626 -0.0103204 0) (0.0131237 -0.00992942 0) (0.0144316 -0.00941813 0) (0.0159302 -0.00873498 0) (0.0176238 -0.00773401 0) (0.0192959 -0.00659459 0) (0.0204752 -0.00664123 0) (0.0212832 -0.00553274 0) (0.0224464 -0.00257729 0) (0.0241566 0.00038888 0) (0.0262456 0.0022244 0) (0.0285636 0.00424927 0) (0.0310046 0.00650924 0) (0.0335942 0.00892285 0) (0.0363527 0.0113551 0) (0.0392989 0.0135788 0) (0.0423518 0.015263 0) (0.0452185 0.0157557 0) (0.0473179 0.0141262 0) (0.0477365 0.00937254 0) (0.0452793 0.000825934 0) (0.0389152 -0.0118854 0) (0.0298413 -0.0296399 0) (0.0248575 -0.0533686 0) (0.0390227 -0.110526 0) (0.00408547 -0.053862 0) (-0.00640284 -0.00957513 0) (-0.00803506 0.00367964 0) (-0.00563015 0.0164301 0) (-0.00131748 0.0271025 0) (0.00350635 0.0357984 0) (0.00862723 0.0414761 0) (1.14148e-05 -0.000979529 0) (0.000121248 -0.00245829 0) (0.000335807 -0.00371128 0) (0.000643002 -0.00483725 0) (0.00103119 -0.00588135 0) (0.00149135 -0.00685736 0) (0.00201575 -0.00776367 0) (0.00259754 -0.00859357 0) (0.00323089 -0.00933981 0) (0.00391113 -0.0099961 0) (0.00463472 -0.0105573 0) (0.00539912 -0.011019 0) (0.00620227 -0.0113772 0) (0.00704229 -0.0116287 0) (0.00791622 -0.01177 0) (0.00881817 -0.0118023 0) (0.00974677 -0.0117398 0) (0.0107126 -0.0116139 0) (0.0117457 -0.0114347 0) (0.0128941 -0.0111779 0) (0.0142028 -0.0108473 0) (0.0156977 -0.0103647 0) (0.0175459 -0.00964885 0) (0.0194742 -0.00818794 0) (0.0207754 -0.00743079 0) (0.0215476 -0.006273 0) (0.0226548 -0.00411568 0) (0.0248474 -0.00202926 0) (0.0275662 -0.000271455 0) (0.0302281 0.00161507 0) (0.0331159 0.00368015 0) (0.0362655 0.00589716 0) (0.0396578 0.00811496 0) (0.0433246 0.0101176 0) (0.0471873 0.0117867 0) (0.050947 0.0126948 0) (0.0540927 0.012209 0) (0.0557999 0.00956886 0) (0.0549278 0.0040284 0) (0.0508292 -0.00551271 0) (0.0482055 -0.0213897 0) (0.0448836 -0.0479973 0) (0.0201783 -0.100483 0) (-0.00883921 -0.0253193 0) (-0.0190758 -0.00740098 0) (-0.0180258 0.00186606 0) (-0.0163181 0.0120117 0) (-0.0124336 0.0216369 0) (-0.00719993 0.0299293 0) (-0.00118663 0.0356807 0) (1.10394e-05 -0.0010396 0) (0.000117972 -0.00262372 0) (0.000327229 -0.00397095 0) (0.00062699 -0.0051815 0) (0.00100561 -0.00630114 0) (0.00145397 -0.00734438 0) (0.00196422 -0.00831053 0) (0.00252946 -0.00919395 0) (0.00314395 -0.00998856 0) (0.00380321 -0.0106893 0) (0.00450413 -0.0112921 0) (0.00524481 -0.0117935 0) (0.00602388 -0.0121894 0) (0.00683994 -0.0124763 0) (0.00768879 -0.0126476 0) (0.00855659 -0.0127017 0) (0.00943026 -0.0126654 0) (0.0103237 -0.0125888 0) (0.0112821 -0.0125042 0) (0.012371 -0.0124002 0) (0.0136411 -0.0122551 0) (0.0151284 -0.0119842 0) (0.0167684 -0.0115159 0) (0.0186472 -0.0100421 0) (0.0206524 -0.00884735 0) (0.0224764 -0.00757283 0) (0.0241696 -0.00577827 0) (0.0260105 -0.00449821 0) (0.0283014 -0.00288162 0) (0.0310491 -0.00126533 0) (0.034202 0.000443427 0) (0.0377392 0.00237695 0) (0.0415726 0.00433888 0) (0.0457354 0.0060183 0) (0.0501481 0.0076253 0) (0.0545281 0.00884259 0) (0.0585257 0.00921965 0) (0.0614477 0.00823299 0) (0.0623385 0.00503536 0) (0.061659 -0.00217421 0) (0.0717605 -0.0164584 0) (0.0673012 -0.0409718 0) (-0.00184256 -0.0564164 0) (-0.0112322 -0.00725212 0) (-0.0188964 -0.00263473 0) (-0.0222013 0.00303388 0) (-0.0222484 0.0101234 0) (-0.0195522 0.0174582 0) (-0.0147651 0.0241698 0) (-0.00859694 0.02923 0) (1.05464e-05 -0.00109766 0) (0.000113434 -0.00278405 0) (0.000315127 -0.00422282 0) (0.000604207 -0.00551537 0) (0.00096915 -0.00670792 0) (0.00140078 -0.00781566 0) (0.00189121 -0.00883888 0) (0.0024335 -0.00977304 0) (0.00302188 -0.0106133 0) (0.00365199 -0.011356 0) (0.00432101 -0.0119987 0) (0.00502777 -0.0125387 0) (0.00577206 -0.0129719 0) (0.00655383 -0.0132935 0) (0.00736917 -0.0134895 0) (0.00819029 -0.0135459 0) (0.00897926 -0.0135058 0) (0.00974879 -0.0134617 0) (0.0105691 -0.0134727 0) (0.0115253 -0.0135327 0) (0.0126728 -0.0135835 0) (0.0140282 -0.0135266 0) (0.0155876 -0.0131889 0) (0.0175274 -0.0121398 0) (0.019679 -0.0109088 0) (0.0215933 -0.0094542 0) (0.0234513 -0.00768279 0) (0.0255099 -0.00656555 0) (0.0278761 -0.00543673 0) (0.0307119 -0.00426672 0) (0.0340388 -0.00304231 0) (0.0378227 -0.00150589 0) (0.0420655 7.90472e-05 0) (0.046605 0.00152477 0) (0.051265 0.00304705 0) (0.0559628 0.00444032 0) (0.0604597 0.00536453 0) (0.0640413 0.00570537 0) (0.0654538 0.00483519 0) (0.0641658 0.000708925 0) (0.0707342 -0.00857953 0) (0.0359774 -0.0208016 0) (-0.00958172 -0.0192763 0) (-0.0153631 -0.000915307 0) (-0.0221981 0.00279387 0) (-0.0252717 0.00522544 0) (-0.0258687 0.00929939 0) (-0.0237365 0.0140902 0) (-0.0193087 0.0187737 0) (-0.0131849 0.0226155 0) (9.94414e-06 -0.00115309 0) (0.000107707 -0.00293755 0) (0.000299703 -0.0044642 0) (0.000575059 -0.00583528 0) (0.000922514 -0.00709732 0) (0.00133297 -0.00826614 0) (0.00179858 -0.00934296 0) (0.00231238 -0.0103243 0) (0.00286852 -0.0112068 0) (0.00346245 -0.011988 0) (0.0040913 -0.0126675 0) (0.00475441 -0.0132445 0) (0.00545327 -0.013715 0) (0.00619105 -0.014072 0) (0.00696987 -0.0142891 0) (0.00774262 -0.0143193 0) (0.00842232 -0.0142231 0) (0.00901862 -0.0141718 0) (0.0096418 -0.0142708 0) (0.0104086 -0.0145049 0) (0.0113851 -0.0147703 0) (0.0125936 -0.0149465 0) (0.0140782 -0.0148827 0) (0.0160306 -0.0142918 0) (0.0182467 -0.013031 0) (0.0202234 -0.0113351 0) (0.0219928 -0.00964356 0) (0.023943 -0.00873874 0) (0.0263798 -0.00808648 0) (0.0294187 -0.00748579 0) (0.0329238 -0.00668014 0) (0.0367761 -0.0055713 0) (0.0410037 -0.00440665 0) (0.0455322 -0.00312926 0) (0.0503195 -0.00177737 0) (0.0552454 -0.000280605 0) (0.0601097 0.000998888 0) (0.064267 0.00267382 0) (0.0663879 0.00477146 0) (0.0651893 0.00592708 0) (0.0691042 0.00606582 0) (0.0314889 0.00692651 0) (-0.0104448 0.0107308 0) (-0.0154875 0.00453234 0) (-0.0232566 0.00703401 0) (-0.0263356 0.00738302 0) (-0.0273905 0.00887431 0) (-0.0255104 0.0110415 0) (-0.0212131 0.0135431 0) (-0.0151034 0.015959 0) (9.24293e-06 -0.00120531 0) (0.000100882 -0.00308264 0) (0.000281202 -0.00469258 0) (0.00054005 -0.00613796 0) (0.000866614 -0.00746546 0) (0.00125208 -0.00869145 0) (0.00168879 -0.00981801 0) (0.00216992 -0.0108427 0) (0.00268945 -0.011763 0) (0.00324228 -0.0125784 0) (0.00382459 -0.0132901 0) (0.00443486 -0.0139006 0) (0.00507614 -0.0144084 0) (0.00575753 -0.0148072 0) (0.00649908 -0.0150496 0) (0.00722535 -0.0150093 0) (0.00777219 -0.0147848 0) (0.00815733 -0.0146682 0) (0.00855163 -0.0148452 0) (0.00911041 -0.0152777 0) (0.0098947 -0.0157726 0) (0.0108927 -0.0162093 0) (0.0121809 -0.0165215 0) (0.0140972 -0.0165037 0) (0.0163119 -0.0151546 0) (0.01811 -0.0131167 0) (0.0196337 -0.0113579 0) (0.0215491 -0.0109475 0) (0.0241873 -0.0109039 0) (0.0273069 -0.0108036 0) (0.0307431 -0.0103351 0) (0.034504 -0.00959046 0) (0.0385578 -0.00872994 0) (0.0429046 -0.00775548 0) (0.0475627 -0.00669348 0) (0.0526604 -0.00543701 0) (0.0580153 -0.00389044 0) (0.0628581 -0.00103096 0) (0.0660472 0.00371399 0) (0.0659786 0.0104467 0) (0.0707136 0.0186331 0) (0.0577797 0.0279378 0) (-0.00841058 0.0455577 0) (-0.0117312 0.00866973 0) (-0.0209064 0.0127651 0) (-0.0259044 0.0102928 0) (-0.0272164 0.00873392 0) (-0.0252485 0.00806377 0) (-0.0207908 0.00830471 0) (-0.0145605 0.00925212 0) (8.44976e-06 -0.00125382 0) (9.30286e-05 -0.00321785 0) (0.000259825 -0.00490569 0) (0.000499598 -0.0064205 0) (0.000802239 -0.007809 0) (0.00115949 -0.00908806 0) (0.00156425 -0.0102605 0) (0.00201011 -0.0113247 0) (0.00249111 -0.0122787 0) (0.00300139 -0.0131227 0) (0.00353488 -0.0138594 0) (0.00408565 -0.0144948 0) (0.0046527 -0.0150344 0) (0.00525191 -0.0154871 0) (0.00596315 -0.0158026 0) (0.00667882 -0.015619 0) (0.00704818 -0.0151189 0) (0.00716467 -0.0149234 0) (0.00735928 -0.0151952 0) (0.00777771 -0.0158678 0) (0.00841605 -0.0165564 0) (0.00916845 -0.0171915 0) (0.0100624 -0.0178411 0) (0.0116974 -0.0187188 0) (0.0136272 -0.0169676 0) (0.0148429 -0.0144299 0) (0.0160818 -0.0129613 0) (0.0183409 -0.0135272 0) (0.0213609 -0.0139662 0) (0.0245434 -0.014102 0) (0.0278567 -0.0138854 0) (0.0313867 -0.0134257 0) (0.0351856 -0.0128257 0) (0.0392469 -0.0121568 0) (0.0435576 -0.0113909 0) (0.0481736 -0.0105889 0) (0.0534239 -0.00916781 0) (0.0591877 -0.00547782 0) (0.0636411 0.00223127 0) (0.0634676 0.0155183 0) (0.057318 0.0329279 0) (0.0385071 0.0479075 0) (-0.00115863 0.0871894 0) (-0.00829347 0.0148756 0) (-0.0215937 0.0202079 0) (-0.0255062 0.0134346 0) (-0.0256362 0.00823907 0) (-0.0227868 0.00471469 0) (-0.0177487 0.0027942 0) (-0.0112079 0.00240131 0) (7.56333e-06 -0.0012981 0) (8.41491e-05 -0.00334178 0) (0.000235601 -0.00510138 0) (0.000453808 -0.00668022 0) (0.00072965 -0.00812503 0) (0.00105581 -0.00945324 0) (0.00142621 -0.0106684 0) (0.00183554 -0.0117693 0) (0.00227872 -0.012754 0) (0.0027499 -0.0136217 0) (0.00324087 -0.0143742 0) (0.00373819 -0.0150176 0) (0.00422325 -0.0155621 0) (0.00468501 -0.0160484 0) (0.00531905 -0.0165855 0) (0.00608725 -0.0162173 0) (0.00612085 -0.014893 0) (0.00588538 -0.0150879 0) (0.00615607 -0.0154936 0) (0.00666377 -0.0164253 0) (0.00732975 -0.0171895 0) (0.00796997 -0.0178404 0) (0.00848403 -0.0185012 0) (0.00926366 -0.0203031 0) (0.0104483 -0.0183625 0) (0.0116643 -0.0156647 0) (0.0134957 -0.0150664 0) (0.0160832 -0.0163888 0) (0.0188013 -0.0169794 0) (0.0215509 -0.017196 0) (0.0244113 -0.0171321 0) (0.027474 -0.0168964 0) (0.0307808 -0.0165435 0) (0.0343178 -0.0161118 0) (0.0380814 -0.0156488 0) (0.0422389 -0.0154219 0) (0.0477451 -0.0152582 0) (0.0553815 -0.0122115 0) (0.0639756 -0.00270096 0) (0.0712586 0.0160916 0) (0.0755478 0.0426355 0) (0.113492 0.0671736 0) (0.0402186 0.107711 0) (-0.0147743 0.0498098 0) (-0.0299588 0.0225357 0) (-0.0252465 0.0134982 0) (-0.0220422 0.00609688 0) (-0.0174303 0.000330032 0) (-0.0114643 -0.00332066 0) (-0.00446467 -0.00467466 0) (6.57071e-06 -0.00133763 0) (7.41478e-05 -0.00345298 0) (0.000208312 -0.00527745 0) (0.000402289 -0.00691442 0) (0.000648217 -0.0084107 0) (0.000940068 -0.00978442 0) (0.00127338 -0.0110401 0) (0.00164491 -0.0121771 0) (0.00205206 -0.013193 0) (0.00249158 -0.0140844 0) (0.002957 -0.0148476 0) (0.00343355 -0.0154788 0) (0.00388563 -0.0159722 0) (0.00420003 -0.0163328 0) (0.00434002 -0.0169919 0) (0.00460534 -0.0167541 0) (0.00526802 -0.0150395 0) (0.00567326 -0.0152791 0) (0.00575117 -0.0157842 0) (0.00617615 -0.0170423 0) (0.00689953 -0.0179187 0) (0.0078095 -0.0186393 0) (0.00926863 -0.0195707 0) (0.0103859 -0.0209918 0) (0.0108062 -0.0192019 0) (0.011264 -0.0166494 0) (0.0125089 -0.0173588 0) (0.0144875 -0.0187553 0) (0.0163804 -0.0193608 0) (0.0183592 -0.0196739 0) (0.0205168 -0.0197879 0) (0.0229058 -0.0197837 0) (0.0255661 -0.0196822 0) (0.0284903 -0.019486 0) (0.0315957 -0.0193074 0) (0.0348837 -0.0198489 0) (0.0399575 -0.0225006 0) (0.0485482 -0.0226552 0) (0.0605537 -0.0160486 0) (0.0769481 0.00157168 0) (0.100226 0.0254888 0) (0.205613 0.062142 0) (0.138753 0.147462 0) (0.00406831 0.135399 0) (-0.0158445 0.0173579 0) (-0.0164317 0.0090935 0) (-0.0126401 0.00157808 0) (-0.00760776 -0.00559913 0) (-0.00149832 -0.0102839 0) (0.00544726 -0.012107 0) (5.44611e-06 -0.0013718 0) (6.28439e-05 -0.00354983 0) (0.000177517 -0.00543146 0) (0.000344182 -0.00712002 0) (0.000556378 -0.00866254 0) (0.000809515 -0.0100782 0) (0.00110105 -0.0113732 0) (0.00143057 -0.0125482 0) (0.0017999 -0.0136017 0) (0.00221247 -0.0145295 0) (0.00267167 -0.0153245 0) (0.00318732 -0.0159801 0) (0.00377649 -0.0164752 0) (0.00452307 -0.0167934 0) (0.00515607 -0.017205 0) (0.0053654 -0.016969 0) (0.0055262 -0.0155535 0) (0.0052333 -0.0150176 0) (0.00512356 -0.0162266 0) (0.00580652 -0.0177519 0) (0.00657498 -0.0188277 0) (0.00754149 -0.0197913 0) (0.00873431 -0.0211869 0) (0.00975154 -0.0216973 0) (0.010666 -0.0200146 0) (0.0115765 -0.017202 0) (0.0121514 -0.0184698 0) (0.0127264 -0.0199925 0) (0.0136112 -0.0208079 0) (0.0147668 -0.0213264 0) (0.0161282 -0.0216702 0) (0.0177073 -0.0219277 0) (0.0195737 -0.0221363 0) (0.0217782 -0.0222352 0) (0.0242291 -0.0222538 0) (0.0264544 -0.0229256 0) (0.0296341 -0.0289096 0) (0.0347608 -0.0323523 0) (0.0414583 -0.0306001 0) (0.0554034 -0.0231346 0) (0.0791404 -0.0112965 0) (0.151581 0.021099 0) (0.162492 0.15934 0) (0.0557059 0.260585 0) (0.0240407 0.0488307 0) (0.0147584 0.00893952 0) (0.00828529 -0.00209668 0) (0.00932991 -0.0110578 0) (0.0132482 -0.0167237 0) (0.0185005 -0.0190516 0) (4.15834e-06 -0.00139988 0) (5.00469e-05 -0.00363048 0) (0.00014276 -0.00556053 0) (0.000278549 -0.00729318 0) (0.000452247 -0.00887572 0) (0.000660399 -0.0103288 0) (0.00090185 -0.0116607 0) (0.00117827 -0.0128754 0) (0.00149493 -0.0139744 0) (0.00186133 -0.0149573 0) (0.00229086 -0.0158204 0) (0.00280217 -0.0165659 0) (0.00343243 -0.0171891 0) (0.00432928 -0.0177572 0) (0.00508497 -0.0176599 0) (0.00547456 -0.0171533 0) (0.00598812 -0.0158096 0) (0.00590057 -0.0142674 0) (0.00546512 -0.0165006 0) (0.00561823 -0.0183511 0) (0.00601263 -0.019554 0) (0.006585 -0.020717 0) (0.00710598 -0.0219949 0) (0.00709005 -0.0220527 0) (0.00687447 -0.0206034 0) (0.00769493 -0.0182943 0) (0.00899039 -0.0190655 0) (0.00966378 -0.020515 0) (0.0101213 -0.0215217 0) (0.0106572 -0.0222105 0) (0.0112803 -0.0227192 0) (0.0119745 -0.0231736 0) (0.0128117 -0.0236757 0) (0.0138529 -0.0240757 0) (0.0150059 -0.0242196 0) (0.0165265 -0.0246435 0) (0.0168802 -0.030842 0) (0.0146983 -0.0342681 0) (0.0113469 -0.0344982 0) (0.0103944 -0.0362097 0) (0.0107821 -0.0288212 0) (-0.00728502 0.00638454 0) (-0.0301879 0.132455 0) (0.0537388 0.331939 0) (0.0570764 0.0914086 0) (0.0487215 0.0290334 0) (0.0376273 0.00388215 0) (0.0323227 -0.0112259 0) (0.0324718 -0.0194922 0) (0.0345234 -0.0232422 0) (2.69265e-06 -0.00142107 0) (3.57021e-05 -0.00369289 0) (0.000103947 -0.0056615 0) (0.000205151 -0.00742942 0) (0.000335131 -0.00904403 0) (0.000490852 -0.0105273 0) (0.000671252 -0.0118902 0) (0.000877795 -0.0131399 0) (0.00111518 -0.0142824 0) (0.00139235 -0.0153229 0) (0.00172473 -0.0162641 0) (0.00212764 -0.0171049 0) (0.00261511 -0.0178561 0) (0.00310382 -0.0185483 0) (0.00358649 -0.0182219 0) (0.00414341 -0.0177707 0) (0.00515766 -0.0167254 0) (0.00614152 -0.014073 0) (0.00624581 -0.0162847 0) (0.00564566 -0.0181061 0) (0.00498501 -0.0195113 0) (0.00470642 -0.0208756 0) (0.00440843 -0.0218513 0) (0.00393482 -0.0216911 0) (0.00374621 -0.0206835 0) (0.00437546 -0.0195636 0) (0.00534605 -0.0199457 0) (0.00591802 -0.0209481 0) (0.00616963 -0.021841 0) (0.00629282 -0.0225055 0) (0.00632534 -0.0229733 0) (0.00619922 -0.0233746 0) (0.00589674 -0.0238766 0) (0.00522852 -0.0240908 0) (0.00384687 -0.0239033 0) (0.00360666 -0.0252422 0) (0.00186874 -0.0275916 0) (-0.0051637 -0.0274611 0) (-0.0143062 -0.026036 0) (-0.0312857 -0.0195727 0) (-0.063915 -0.0033922 0) (-0.124627 0.0519411 0) (-0.170776 0.148477 0) (-0.0124556 0.233755 0) (0.0445859 0.0617695 0) (0.0534173 0.0359575 0) (0.0500863 0.012374 0) (0.048535 -0.00843128 0) (0.0495307 -0.019019 0) (0.0492002 -0.0236316 0) (1.07138e-06 -0.0014346 0) (2.00306e-05 -0.00373511 0) (6.16901e-05 -0.00573131 0) (0.000125176 -0.00752433 0) (0.000206969 -0.00916109 0) (0.000303751 -0.0106644 0) (0.000413248 -0.0120469 0) (0.000534441 -0.013318 0) (0.00066754 -0.0144863 0) (0.000813168 -0.0155593 0) (0.000970912 -0.0165412 0) (0.00113873 -0.0174245 0) (0.00129077 -0.0181932 0) (0.00133107 -0.018768 0) (0.00137891 -0.0185789 0) (0.00123799 -0.0180233 0) (0.00133353 -0.0177868 0) (0.0031311 -0.015573 0) (0.00444979 -0.0161151 0) (0.00369652 -0.0171409 0) (0.00283699 -0.0188965 0) (0.00241034 -0.0204837 0) (0.00199647 -0.0213146 0) (0.00147499 -0.0212554 0) (0.00116951 -0.0207539 0) (0.00140551 -0.0202565 0) (0.00188816 -0.0205452 0) (0.00216715 -0.0212209 0) (0.002182 -0.0218906 0) (0.00202041 -0.0224105 0) (0.00173435 -0.0227224 0) (0.00126236 -0.0229238 0) (0.00057472 -0.023241 0) (-0.000434975 -0.0230143 0) (-0.001165 -0.0227946 0) (-0.00177308 -0.0242085 0) (-0.00560995 -0.0209755 0) (-0.014329 -0.015887 0) (-0.0281975 -0.00903081 0) (-0.0460256 0.00643426 0) (-0.0613241 0.022786 0) (-0.0458008 0.0486053 0) (-0.0309364 0.109343 0) (0.0186569 0.066978 0) (0.0250824 0.0135988 0) (0.0369148 0.0176919 0) (0.0461197 0.0130057 0) (0.052794 -0.0101617 0) (0.0570749 -0.0185107 0) (0.0544174 -0.0212808 0) (-6.41657e-07 -0.0014399 0) (3.55177e-06 -0.00375573 0) (1.73661e-05 -0.00576774 0) (4.13401e-05 -0.00757476 0) (7.25347e-05 -0.0092224 0) (0.000107121 -0.0107333 0) (0.000141241 -0.0121206 0) (0.000170837 -0.0133937 0) (0.000190899 -0.0145607 0) (0.00019384 -0.0156262 0) (0.000166491 -0.0165878 0) (8.65458e-05 -0.0174315 0) (-8.32403e-05 -0.0181089 0) (-0.000404243 -0.0185287 0) (-0.000825423 -0.018416 0) (-0.00110437 -0.0178392 0) (-0.000784259 -0.0186179 0) (0.000669735 -0.0176379 0) (0.00120861 -0.0156507 0) (0.000261942 -0.0162909 0) (3.62867e-05 -0.0186998 0) (0.000149653 -0.0202515 0) (-0.000103256 -0.0209166 0) (-0.000641998 -0.0207133 0) (-0.00117128 -0.0205656 0) (-0.00132608 -0.0204178 0) (-0.0012765 -0.0207549 0) (-0.00133339 -0.0212134 0) (-0.00161487 -0.0216753 0) (-0.00205783 -0.0220412 0) (-0.00256801 -0.0222292 0) (-0.00349747 -0.0219216 0) (-0.00507693 -0.0219009 0) (-0.00720861 -0.0212269 0) (-0.00978929 -0.0211914 0) (-0.0126483 -0.0215483 0) (-0.0160059 -0.0151618 0) (-0.0205016 -0.00702699 0) (-0.0264566 0.00350862 0) (-0.0316123 0.0161414 0) (-0.0318779 0.0260525 0) (-0.0301854 0.0273226 0) (-0.0411756 0.106431 0) (-0.0526357 0.0494299 0) (0.0405311 0.0310286 0) (0.0337022 0.00589682 0) (0.0357799 0.00199401 0) (0.0445589 -0.0249902 0) (0.0494304 -0.0180421 0) (0.0441981 -0.0190679 0) (-2.35956e-06 -0.00143671 0) (-1.30389e-05 -0.00375414 0) (-2.7209e-05 -0.00576993 0) (-4.27986e-05 -0.00757965 0) (-6.19694e-05 -0.0092268 0) (-8.87008e-05 -0.010733 0) (-0.00012774 -0.0121107 0) (-0.000184787 -0.0133681 0) (-0.000267201 -0.0145108 0) (-0.000385107 -0.015539 0) (-0.000552435 -0.0164435 0) (-0.000789794 -0.0172026 0) (-0.00111729 -0.0177704 0) (-0.00153273 -0.0180922 0) (-0.00189347 -0.0180863 0) (-0.00188304 -0.0179189 0) (-0.00206302 -0.0187868 0) (-0.00213323 -0.0185945 0) (-0.00103222 -0.016077 0) (0.000290419 -0.0164645 0) (4.02351e-05 -0.0182489 0) (-0.0011869 -0.0197046 0) (-0.00204956 -0.0203856 0) (-0.00274366 -0.0200525 0) (-0.00334494 -0.0201117 0) (-0.00374481 -0.0202081 0) (-0.00403987 -0.0205814 0) (-0.00449015 -0.0208451 0) (-0.00512853 -0.021135 0) (-0.00589355 -0.0213614 0) (-0.00680307 -0.0213779 0) (-0.00805325 -0.0203634 0) (-0.0097795 -0.0198142 0) (-0.0120645 -0.018452 0) (-0.0152606 -0.017839 0) (-0.0183427 -0.0190231 0) (-0.0208168 -0.0122334 0) (-0.0228876 -0.00419654 0) (-0.0243419 0.00601635 0) (-0.0256955 0.016695 0) (-0.0286886 0.0249457 0) (-0.0384006 0.0355978 0) (-0.0131039 0.101894 0) (0.0217515 0.0588638 0) (0.0510781 -0.0952433 0) (0.000113521 0.0276204 0) (0.0264142 -0.00303842 0) (0.0241994 -0.023961 0) (0.0255361 -0.0132212 0) (0.0294321 -0.0261356 0) (-4.00452e-06 -0.00142516 0) (-2.90531e-05 -0.00373066 0) (-7.02413e-05 -0.00573854 0) (-0.000123817 -0.0075402 0) (-0.000190814 -0.00917649 0) (-0.00027473 -0.0106676 0) (-0.000380128 -0.0120245 0) (-0.000512561 -0.0132544 0) (-0.00067887 -0.0143606 0) (-0.000887473 -0.0153406 0) (-0.00114771 -0.0161836 0) (-0.00146723 -0.0168684 0) (-0.00184448 -0.0173675 0) (-0.00226761 -0.0176597 0) (-0.0026458 -0.0178115 0) (-0.00280975 -0.017988 0) (-0.00271059 -0.0185678 0) (-0.00277921 -0.0185901 0) (-0.00252049 -0.0171562 0) (-0.00271119 -0.0163858 0) (-0.00339942 -0.0176671 0) (-0.00372244 -0.0190093 0) (-0.00440994 -0.0196672 0) (-0.00494024 -0.0196449 0) (-0.00531202 -0.0195936 0) (-0.00577191 -0.0198359 0) (-0.00641864 -0.019914 0) (-0.00736094 -0.0200554 0) (-0.00835588 -0.0202418 0) (-0.00944546 -0.0203543 0) (-0.0106822 -0.0201918 0) (-0.0117849 -0.019118 0) (-0.0127359 -0.0182563 0) (-0.0136707 -0.0164838 0) (-0.0150771 -0.0148131 0) (-0.0197705 -0.0146072 0) (-0.024459 -0.0101144 0) (-0.0248034 -0.00446236 0) (-0.0235275 0.00541613 0) (-0.0221875 0.0161618 0) (-0.0231238 0.0277373 0) (-0.0251479 0.0384446 0) (-0.0142626 0.0630849 0) (-0.0083652 0.0494375 0) (-0.035753 -0.034421 0) (-0.0391531 0.0831534 0) (0.0167484 -0.0277266 0) (0.00524827 -0.0214802 0) (0.024284 -0.0224068 0) (0.0288384 -0.0291762 0) (-5.51525e-06 -0.00140573 0) (-4.39339e-05 -0.00368647 0) (-0.000110296 -0.00567545 0) (-0.000199067 -0.00745933 0) (-0.000309825 -0.00907593 0) (-0.000444983 -0.0105437 0) (-0.000607993 -0.0118729 0) (-0.000802869 -0.0130695 0) (-0.00103396 -0.014136 0) (-0.00130539 -0.0150702 0) (-0.00161935 -0.0158634 0) (-0.00197164 -0.0165026 0) (-0.00234675 -0.0169754 0) (-0.0027177 -0.0172721 0) (-0.00306054 -0.0175058 0) (-0.00333418 -0.01786 0) (-0.00334786 -0.0187641 0) (-0.00320339 -0.0185065 0) (-0.00239769 -0.0179603 0) (-0.00189246 -0.0155424 0) (-0.00283464 -0.0169748 0) (-0.00423112 -0.0181241 0) (-0.00568083 -0.0185898 0) (-0.0068918 -0.0190866 0) (-0.00773242 -0.0189746 0) (-0.00853875 -0.0191983 0) (-0.00934333 -0.0190607 0) (-0.0102139 -0.0190597 0) (-0.0112942 -0.0191343 0) (-0.0125233 -0.0191404 0) (-0.0138308 -0.0189284 0) (-0.0149956 -0.018229 0) (-0.0159224 -0.0174212 0) (-0.0163573 -0.0159446 0) (-0.017256 -0.0129034 0) (-0.0198157 -0.00988448 0) (-0.0220802 -0.00864215 0) (-0.0225781 -0.00538955 0) (-0.0212396 0.00367962 0) (-0.0169568 0.0126626 0) (-0.00954129 0.0259766 0) (-0.00789561 0.0398489 0) (-0.0112269 0.0548245 0) (-0.00741788 0.0491211 0) (-0.012368 -0.00305046 0) (-0.0163875 0.018977 0) (-0.0464606 -0.0505149 0) (-0.0176149 -0.0252806 0) (-0.000801599 -0.0381152 0) (0.00201965 -0.027704 0) (-6.8549e-06 -0.0013791 0) (-5.73251e-05 -0.0036233 0) (-0.000146452 -0.00558341 0) (-0.000266922 -0.00734097 0) (-0.000416667 -0.00893065 0) (-0.000596656 -0.0103694 0) (-0.000808712 -0.0116666 0) (-0.00105467 -0.0128285 0) (-0.00133566 -0.0138582 0) (-0.00165099 -0.0147555 0) (-0.00199609 -0.0155171 0) (-0.00235994 -0.0161396 0) (-0.00272194 -0.0166235 0) (-0.00303334 -0.0169813 0) (-0.00323309 -0.0173023 0) (-0.00328574 -0.0177767 0) (-0.00343418 -0.0187646 0) (-0.00356859 -0.0187696 0) (-0.00308237 -0.0190926 0) (-0.00218434 -0.0156424 0) (-0.0026621 -0.0154419 0) (-0.00449749 -0.0164054 0) (-0.00619766 -0.0170038 0) (-0.00774307 -0.0177435 0) (-0.00913923 -0.0179181 0) (-0.0103493 -0.018149 0) (-0.0114485 -0.0181665 0) (-0.0125183 -0.0179991 0) (-0.0137265 -0.0179222 0) (-0.0150746 -0.0178269 0) (-0.0164684 -0.0176503 0) (-0.0177738 -0.0171791 0) (-0.0188935 -0.0166128 0) (-0.0197543 -0.0155703 0) (-0.0207713 -0.0114349 0) (-0.0229729 -0.00720115 0) (-0.0254539 -0.00734501 0) (-0.0262942 -0.00596713 0) (-0.0235268 -0.000684987 0) (-0.0191112 0.00757954 0) (-0.0158755 0.0211591 0) (-0.0133594 0.0402075 0) (-0.00663865 0.050567 0) (0.0106515 0.0389523 0) (0.0227464 0.00824065 0) (0.0305306 -0.00214675 0) (0.0423909 -0.00104213 0) (0.0225112 -0.0414749 0) (0.00588404 -0.0454027 0) (0.00490022 -0.0296724 0) (-8.01069e-06 -0.00134614 0) (-6.90556e-05 -0.00354324 0) (-0.000178263 -0.00546559 0) (-0.000326652 -0.00718944 0) (-0.000510513 -0.00874628 0) (-0.000729298 -0.0101516 0) (-0.00098316 -0.0114148 0) (-0.00127186 -0.0125424 0) (-0.00159388 -0.0135394 0) (-0.00194521 -0.014409 0) (-0.00231778 -0.0151537 0) (-0.00269776 -0.0157782 0) (-0.00306335 -0.0162939 0) (-0.00337977 -0.0167361 0) (-0.00361563 -0.0171673 0) (-0.00378933 -0.0177044 0) (-0.00408001 -0.0184302 0) (-0.00450091 -0.0185934 0) (-0.00568961 -0.0186394 0) (-0.00649838 -0.0159946 0) (-0.00633476 -0.0146553 0) (-0.00675207 -0.0150751 0) (-0.00772782 -0.0156516 0) (-0.00895214 -0.0162523 0) (-0.0102626 -0.0165833 0) (-0.0116055 -0.0168231 0) (-0.0129737 -0.0169545 0) (-0.0142888 -0.0167675 0) (-0.0156471 -0.0165656 0) (-0.0171632 -0.0163422 0) (-0.0187751 -0.0161743 0) (-0.0204355 -0.0157037 0) (-0.02225 -0.0151571 0) (-0.0244692 -0.0139624 0) (-0.026403 -0.0100806 0) (-0.0269062 -0.00597164 0) (-0.0271702 -0.00616895 0) (-0.0281784 -0.00577056 0) (-0.0294137 -0.00290189 0) (-0.0302315 0.00594332 0) (-0.029269 0.0185851 0) (-0.0233829 0.0331963 0) (-0.0111048 0.0361126 0) (0.00314194 0.0219073 0) (0.00992974 0.0014604 0) (0.00846615 -0.0170414 0) (0.0226267 -0.0127827 0) (0.0227734 -0.0144681 0) (0.0358284 -0.0632175 0) (0.0039579 -0.0261296 0) (-8.98421e-06 -0.00130771 0) (-7.90836e-05 -0.00344849 0) (-0.000205605 -0.0053253 0) (-0.000378114 -0.00700905 0) (-0.00059142 -0.00852808 0) (-0.000843621 -0.00989663 0) (-0.0011335 -0.0111239 0) (-0.00145936 -0.0122175 0) (-0.00181819 -0.0131843 0) (-0.00220478 -0.0140306 0) (-0.00261089 -0.0147634 0) (-0.00302484 -0.015392 0) (-0.00343244 -0.0159316 0) (-0.0038252 -0.016412 0) (-0.00421634 -0.0168663 0) (-0.00465463 -0.0173442 0) (-0.00524878 -0.0178474 0) (-0.00609662 -0.0177687 0) (-0.00721234 -0.017134 0) (-0.00802011 -0.0157383 0) (-0.00826762 -0.0146401 0) (-0.00858971 -0.0145018 0) (-0.00927646 -0.0147331 0) (-0.0102611 -0.0150664 0) (-0.0114311 -0.0153104 0) (-0.0127076 -0.015445 0) (-0.0141085 -0.0155277 0) (-0.0155817 -0.015356 0) (-0.0170846 -0.015073 0) (-0.0187033 -0.0146729 0) (-0.0204828 -0.0144073 0) (-0.022382 -0.013786 0) (-0.0244967 -0.0130052 0) (-0.0268742 -0.011536 0) (-0.0288253 -0.00872934 0) (-0.0296792 -0.0059952 0) (-0.0304612 -0.00517515 0) (-0.0322362 -0.00397843 0) (-0.0347209 -0.000543115 0) (-0.0367108 0.00669592 0) (-0.0363814 0.0161118 0) (-0.0317243 0.0244193 0) (-0.0233506 0.0241239 0) (-0.0158101 0.0133927 0) (-0.0127651 -0.00176882 0) (-0.0147942 -0.0169508 0) (-0.0264301 -0.0100136 0) (-0.0509891 -0.00518434 0) (-0.0547328 -0.0631323 0) (0.0117929 0.00312939 0) (-9.78331e-06 -0.00126468 0) (-8.74356e-05 -0.00334124 0) (-0.00022852 -0.00516582 0) (-0.000421426 -0.00680396 0) (-0.000659731 -0.00828086 0) (-0.000940461 -0.00960947 0) (-0.00126146 -0.0107989 0) (-0.00162028 -0.0118574 0) (-0.00201359 -0.0127934 0) (-0.00243674 -0.0136151 0) (-0.00288378 -0.0143315 0) (-0.00334824 -0.0149528 0) (-0.0038255 -0.0154909 0) (-0.00431774 -0.01596 0) (-0.00483862 -0.0163707 0) (-0.00542772 -0.0167367 0) (-0.00621991 -0.0170091 0) (-0.00720092 -0.0167457 0) (-0.00820587 -0.016136 0) (-0.00897827 -0.0151603 0) (-0.00943404 -0.0143445 0) (-0.00987639 -0.014002 0) (-0.0105152 -0.0139637 0) (-0.0113811 -0.0140527 0) (-0.0124454 -0.014129 0) (-0.0136748 -0.0141229 0) (-0.0150644 -0.0140485 0) (-0.0165919 -0.0137975 0) (-0.0182462 -0.0134206 0) (-0.0199801 -0.0129187 0) (-0.0218156 -0.0124983 0) (-0.0236798 -0.0118457 0) (-0.0257044 -0.0107567 0) (-0.0279689 -0.00925233 0) (-0.0299416 -0.00712639 0) (-0.0313277 -0.00503536 0) (-0.0327702 -0.00356799 0) (-0.0349038 -0.00159544 0) (-0.0374691 0.00204761 0) (-0.0394754 0.00789998 0) (-0.0396872 0.0146682 0) (-0.0374219 0.0196954 0) (-0.0341436 0.0192301 0) (-0.0337298 0.0126666 0) (-0.0399795 0.00364877 0) (-0.0568316 -0.00135374 0) (-0.0772149 0.0117335 0) (-0.0887657 0.0019919 0) (-0.0822115 -0.075642 0) (-0.0822751 -0.023381 0) (-1.04153e-05 -0.00121791 0) (-9.41555e-05 -0.00322365 0) (-0.000247103 -0.00499036 0) (-0.000456747 -0.00657818 0) (-0.000715713 -0.00800918 0) (-0.00102024 -0.00929485 0) (-0.0013676 -0.010444 0) (-0.0017551 -0.0114652 0) (-0.00217974 -0.0123674 0) (-0.00263814 -0.0131597 0) (-0.00312692 -0.0138511 0) (-0.00364382 -0.0144499 0) (-0.00418945 -0.0149634 0) (-0.0047699 -0.0153959 0) (-0.00540136 -0.0157451 0) (-0.00612339 -0.0159966 0) (-0.00699126 -0.0160673 0) (-0.00793593 -0.01578 0) (-0.00884536 -0.0152592 0) (-0.00960761 -0.0145119 0) (-0.0101906 -0.0138471 0) (-0.0107509 -0.0134331 0) (-0.0114187 -0.0132242 0) (-0.0122481 -0.0131184 0) (-0.0132546 -0.0130118 0) (-0.0144248 -0.0128417 0) (-0.0157539 -0.0126032 0) (-0.0172231 -0.0122213 0) (-0.018793 -0.0117287 0) (-0.0204462 -0.0111717 0) (-0.0222151 -0.0106096 0) (-0.0241032 -0.0099455 0) (-0.0261109 -0.00861718 0) (-0.0281888 -0.00712763 0) (-0.0301084 -0.00533156 0) (-0.0317732 -0.00346976 0) (-0.0335031 -0.00165 0) (-0.0355649 0.000717059 0) (-0.0377229 0.0042498 0) (-0.0393073 0.00907451 0) (-0.0396322 0.0142612 0) (-0.0386094 0.0181511 0) (-0.0374764 0.0189712 0) (-0.0386347 0.0168001 0) (-0.0439554 0.0141956 0) (-0.0524089 0.0151126 0) (-0.0549347 0.0198 0) (-0.0469846 0.00362986 0) (-0.0640078 -0.0576881 0) (-0.100233 -0.0105118 0) (-1.08842e-05 -0.0011682 0) (-9.92808e-05 -0.00309785 0) (-0.000261435 -0.00480208 0) (-0.000484197 -0.00633569 0) (-0.000759492 -0.00771755 0) (-0.00108299 -0.00895758 0) (-0.00145164 -0.010064 0) (-0.00186272 -0.0110452 0) (-0.0023137 -0.0119101 0) (-0.00280229 -0.0126676 0) (-0.00332694 -0.0133256 0) (-0.00388766 -0.0138902 0) (-0.0044872 -0.0143646 0) (-0.00513248 -0.0147469 0) (-0.00583615 -0.0150272 0) (-0.00661548 -0.0151809 0) (-0.00747801 -0.0151558 0) (-0.0083672 -0.0148918 0) (-0.00921966 -0.0144347 0) (-0.00998608 -0.0138158 0) (-0.0106548 -0.0132266 0) (-0.011306 -0.0127824 0) (-0.0120128 -0.0124723 0) (-0.0128235 -0.0122195 0) (-0.0137771 -0.0119513 0) (-0.0148794 -0.0116321 0) (-0.0161224 -0.0112443 0) (-0.0174831 -0.0107486 0) (-0.0189263 -0.0101699 0) (-0.0204611 -0.00950428 0) (-0.0221585 -0.0087743 0) (-0.0240105 -0.00801286 0) (-0.0258711 -0.00667286 0) (-0.0276908 -0.00520273 0) (-0.0294466 -0.00354055 0) (-0.031096 -0.00174956 0) (-0.0327608 0.000199239 0) (-0.0344998 0.00263829 0) (-0.0360943 0.00587479 0) (-0.0371117 0.00988435 0) (-0.0371909 0.0140572 0) (-0.0364127 0.0174104 0) (-0.0355791 0.0190451 0) (-0.0359159 0.0190239 0) (-0.0379254 0.0184768 0) (-0.0400507 0.0182985 0) (-0.0384101 0.0157792 0) (-0.0354959 0.000165004 0) (-0.0514786 -0.0236384 0) (-0.074351 0.00406884 0) (-1.11929e-05 -0.00111636 0) (-0.000102843 -0.00296592 0) (-0.000271588 -0.00460412 0) (-0.00050388 -0.00608047 0) (-0.000791143 -0.0074106 0) (-0.00112864 -0.00860274 0) (-0.00151309 -0.00966423 0) (-0.00194179 -0.0106031 0) (-0.0024125 -0.0114278 0) (-0.00292357 -0.0121464 0) (-0.0034742 -0.0127656 0) (-0.00406499 -0.0132897 0) (-0.00469831 -0.0137193 0) (-0.00537839 -0.0140499 0) (-0.00611044 -0.0142703 0) (-0.00689802 -0.0143604 0) (-0.00773463 -0.0142915 0) (-0.00858186 -0.0140467 0) (-0.00940557 -0.0136261 0) (-0.0101791 -0.0130792 0) (-0.0108958 -0.0125323 0) (-0.0116032 -0.0120752 0) (-0.0123329 -0.0117148 0) (-0.0131182 -0.0113586 0) (-0.0140178 -0.0109524 0) (-0.0150505 -0.0105008 0) (-0.0161989 -0.0099919 0) (-0.0174402 -0.00940211 0) (-0.0187624 -0.00873962 0) (-0.0201682 -0.00796621 0) (-0.021649 -0.00710613 0) (-0.0232527 -0.00621968 0) (-0.0249173 -0.00494243 0) (-0.0265276 -0.00350413 0) (-0.0280665 -0.00191504 0) (-0.0295191 -0.000182471 0) (-0.0309147 0.00174786 0) (-0.0322177 0.00405897 0) (-0.0332383 0.00689614 0) (-0.033689 0.0101979 0) (-0.0333642 0.013583 0) (-0.0323375 0.01646 0) (-0.0310455 0.0183066 0) (-0.0300485 0.0190215 0) (-0.0294488 0.0188584 0) (-0.0284806 0.0176704 0) (-0.0262115 0.0137821 0) (-0.0255873 0.00427577 0) (-0.0348332 -0.00518483 0) (-0.0437058 0.00883566 0) (-1.13442e-05 -0.00106316 0) (-0.000104883 -0.00282987 0) (-0.00027766 -0.00439957 0) (-0.000515946 -0.0058165 0) (-0.000810829 -0.00709305 0) (-0.00115727 -0.00823569 0) (-0.00155179 -0.00925079 0) (-0.00199164 -0.0101457 0) (-0.00247469 -0.0109283 0) (-0.00299943 -0.0116058 0) (-0.00356512 -0.012184 0) (-0.00417201 -0.0126658 0) (-0.00482124 -0.013051 0) (-0.0055144 -0.0133348 0) (-0.00625215 -0.0135076 0) (-0.00703161 -0.0135556 0) (-0.00784119 -0.0134629 0) (-0.00866118 -0.0132244 0) (-0.00946669 -0.0128283 0) (-0.0102219 -0.0123383 0) (-0.0109174 -0.011826 0) (-0.0116407 -0.0113201 0) (-0.012394 -0.0109652 0) (-0.0131477 -0.0105463 0) (-0.0139909 -0.0100146 0) (-0.0149559 -0.00944632 0) (-0.0160087 -0.00884997 0) (-0.0171263 -0.00818589 0) (-0.0183063 -0.00744859 0) (-0.0195336 -0.00661308 0) (-0.0208144 -0.00568957 0) (-0.0221758 -0.00468642 0) (-0.0235626 -0.00343671 0) (-0.0248975 -0.00205841 0) (-0.0261509 -0.000552596 0) (-0.0273035 0.00108695 0) (-0.0283385 0.00289716 0) (-0.0291859 0.00496982 0) (-0.0296889 0.00736593 0) (-0.0296461 0.0100208 0) (-0.0289211 0.0127064 0) (-0.0275363 0.0150358 0) (-0.0257029 0.0166717 0) (-0.02369 0.0174061 0) (-0.0215681 0.0171374 0) (-0.0191595 0.015561 0) (-0.0165512 0.0119824 0) (-0.0154687 0.00606988 0) (-0.0185049 0.00149739 0) (-0.0195279 0.00619157 0) (-1.13421e-05 -0.00100936 0) (-0.000105461 -0.00269171 0) (-0.000279812 -0.00419145 0) (-0.00052066 -0.00554768 0) (-0.000818901 -0.0067696 0) (-0.00116927 -0.00786187 0) (-0.00156813 -0.00882983 0) (-0.00201261 -0.00968011 0) (-0.00250048 -0.0104199 0) (-0.00303008 -0.0110559 0) (-0.00360035 -0.0115929 0) (-0.00421079 -0.0120334 0) (-0.0048613 -0.0123768 0) (-0.00555145 -0.0126193 0) (-0.0062793 -0.0127537 0) (-0.00703965 -0.0127711 0) (-0.00782235 -0.012663 0) (-0.00861131 -0.0124256 0) (-0.00937759 -0.0120625 0) (-0.0100978 -0.0116254 0) (-0.0107811 -0.0111425 0) (-0.0114618 -0.010581 0) (-0.012183 -0.0102122 0) (-0.0129438 -0.0097637 0) (-0.0137618 -0.00912586 0) (-0.0146522 -0.00847922 0) (-0.0155881 -0.00782733 0) (-0.0165707 -0.00710728 0) (-0.0175954 -0.00632202 0) (-0.0186422 -0.00546246 0) (-0.0197186 -0.00448131 0) (-0.0208378 -0.00343273 0) (-0.0219331 -0.00222915 0) (-0.022951 -0.000920858 0) (-0.0238805 0.000485829 0) (-0.0246905 0.00199862 0) (-0.025343 0.00362988 0) (-0.0257608 0.00541329 0) (-0.0258184 0.00736734 0) (-0.0253762 0.00943468 0) (-0.0243198 0.0114664 0) (-0.0226336 0.0132048 0) (-0.0204225 0.0144199 0) (-0.0178298 0.0148781 0) (-0.0149515 0.0143902 0) (-0.0118572 0.0127147 0) (-0.00883019 0.00962301 0) (-0.00669051 0.00535124 0) (-0.00601768 0.00173951 0) (-0.00367097 0.00133264 0) (-1.11968e-05 -0.000955685 0) (-0.000104665 -0.00255334 0) (-0.00027826 -0.00398268 0) (-0.000518406 -0.00527781 0) (-0.000815936 -0.0064448 0) (-0.00116544 -0.00748658 0) (-0.00156312 -0.00840743 0) (-0.00200597 -0.0092133 0) (-0.00249152 -0.00991078 0) (-0.0030178 -0.0105059 0) (-0.00358324 -0.0110032 0) (-0.00418654 -0.0114048 0) (-0.00482639 -0.0117105 0) (-0.00550088 -0.0119174 0) (-0.00620654 -0.0120207 0) (-0.00693722 -0.0120149 0) (-0.00768291 -0.011896 0) (-0.00842908 -0.0116646 0) (-0.00915887 -0.0113316 0) (-0.00986869 -0.0109221 0) (-0.0105706 -0.0104499 0) (-0.0112415 -0.00990708 0) (-0.0118974 -0.00949324 0) (-0.0126134 -0.00899453 0) (-0.0133804 -0.00830306 0) (-0.0141625 -0.00762495 0) (-0.0149701 -0.00693656 0) (-0.0158076 -0.00617969 0) (-0.0166658 -0.00537011 0) (-0.0175411 -0.00449613 0) (-0.018411 -0.00350819 0) (-0.0192586 -0.00246141 0) (-0.0200656 -0.00132517 0) (-0.020792 -0.00010075 0) (-0.021408 0.00118865 0) (-0.0218818 0.00254749 0) (-0.0221713 0.00396854 0) (-0.0222039 0.00544393 0) (-0.0218841 0.00697971 0) (-0.0211169 0.00852604 0) (-0.0198156 0.00995944 0) (-0.0179567 0.0111319 0) (-0.0155723 0.0118472 0) (-0.0127403 0.0119278 0) (-0.00957806 0.0111848 0) (-0.00622655 0.00944953 0) (-0.00293436 0.00665582 0) (-7.39185e-05 0.00303813 0) (0.00230847 -0.00058593 0) (0.00567181 -0.0035012 0) (-1.09262e-05 -0.00090279 0) (-0.000102616 -0.00241655 0) (-0.00027329 -0.00377598 0) (-0.000509696 -0.00501043 0) (-0.000802727 -0.00612296 0) (-0.0011469 -0.00711482 0) (-0.00153831 -0.00798931 0) (-0.00197375 -0.0087517 0) (-0.00245051 -0.00940811 0) (-0.00296627 -0.00996418 0) (-0.00351893 -0.0104241 0) (-0.00410646 -0.0107902 0) (-0.0047266 -0.0110625 0) (-0.0053764 -0.0112394 0) (-0.00605155 -0.011318 0) (-0.00674572 -0.0112953 0) (-0.0074502 -0.0111699 0) (-0.00815465 -0.0109442 0) (-0.00884957 -0.0106267 0) (-0.00952993 -0.0102295 0) (-0.0101924 -0.00976861 0) (-0.0108196 -0.00927434 0) (-0.0114466 -0.00882846 0) (-0.0121317 -0.00825886 0) (-0.0128243 -0.00758009 0) (-0.013493 -0.00689417 0) (-0.0141766 -0.00617918 0) (-0.0148737 -0.00540922 0) (-0.015571 -0.00459293 0) (-0.0162639 -0.00371598 0) (-0.0169277 -0.00276927 0) (-0.0175434 -0.00176177 0) (-0.0180942 -0.000697626 0) (-0.0185456 0.0004212 0) (-0.0188696 0.00157554 0) (-0.0190365 0.00276089 0) (-0.0190031 0.00395416 0) (-0.018707 0.00512076 0) (-0.0180866 0.00628104 0) (-0.0170758 0.00737082 0) (-0.0156153 0.00829533 0) (-0.0136751 0.0089584 0) (-0.0112625 0.00918868 0) (-0.00843549 0.00888196 0) (-0.00529483 0.00788497 0) (-0.00198323 0.00607313 0) (0.00131096 0.00342072 0) (0.00439488 6.71122e-05 0) (0.0072873 -0.00364958 0) (0.0105691 -0.00756896 0) (-1.05462e-05 -0.00085127 0) (-9.94495e-05 -0.00228294 0) (-0.000265243 -0.00357386 0) (-0.000495151 -0.0047488 0) (-0.000780245 -0.00580801 0) (-0.00111506 -0.00675115 0) (-0.0014956 -0.00758061 0) (-0.00191851 -0.00830108 0) (-0.00238086 -0.00891825 0) (-0.00288 -0.00943754 0) (-0.00341336 -0.00986303 0) (-0.00397834 -0.0101971 0) (-0.00457203 -0.0104405 0) (-0.00519089 -0.0105925 0) (-0.00583025 -0.0106515 0) (-0.0064841 -0.0106163 0) (-0.00714492 -0.010487 0) (-0.00780426 -0.0102662 0) (-0.0084538 -0.00996028 0) (-0.00908661 -0.00957959 0) (-0.00969772 -0.00914007 0) (-0.0102897 -0.00866949 0) (-0.0108981 -0.0081851 0) (-0.0115176 -0.00760169 0) (-0.0121083 -0.00695737 0) (-0.0126847 -0.00627088 0) (-0.0132602 -0.00554865 0) (-0.0138255 -0.00478639 0) (-0.0143723 -0.00398259 0) (-0.0148905 -0.0031302 0) (-0.0153638 -0.00223562 0) (-0.015771 -0.00129571 0) (-0.0160901 -0.000323782 0) (-0.0162977 0.000673487 0) (-0.0163665 0.00167879 0) (-0.0162651 0.00267898 0) (-0.0159593 0.00364258 0) (-0.0154162 0.00452877 0) (-0.0145826 0.00535155 0) (-0.0134055 0.00605099 0) (-0.0118521 0.00655222 0) (-0.00989962 0.0067766 0) (-0.00756261 0.00660308 0) (-0.0048884 0.00595747 0) (-0.00195245 0.00473479 0) (0.00112564 0.00284307 0) (0.00419801 0.000263748 0) (0.00713407 -0.00293414 0) (0.00990866 -0.00661278 0) (0.0126855 -0.0107448 0) (-1.00715e-05 -0.000801635 0) (-9.53081e-05 -0.00215398 0) (-0.000254494 -0.00337857 0) (-0.000475458 -0.00449586 0) (-0.000749563 -0.00550349 0) (-0.00107145 -0.00639963 0) (-0.00143711 -0.00718588 0) (-0.00184309 -0.0078664 0) (-0.0022863 -0.0084466 0) (-0.00276377 -0.0089317 0) (-0.0032726 -0.00932579 0) (-0.00380979 -0.0096315 0) (-0.00437203 -0.00984997 0) (-0.00495542 -0.00998131 0) (-0.00555524 -0.0100251 0) (-0.00616573 -0.00998105 0) (-0.0067802 -0.00985019 0) (-0.00739133 -0.00963545 0) (-0.00799188 -0.00934246 0) (-0.00857584 -0.00898005 0) (-0.00914013 -0.00856063 0) (-0.00968797 -0.008099 0) (-0.0102318 -0.00759817 0) (-0.0107704 -0.00703767 0) (-0.0112917 -0.00641373 0) (-0.0117897 -0.00574071 0) (-0.0122617 -0.00503609 0) (-0.0127063 -0.00429815 0) (-0.0131158 -0.00352694 0) (-0.0134783 -0.00272171 0) (-0.013779 -0.00188968 0) (-0.0140009 -0.00103575 0) (-0.0141248 -0.000169072 0) (-0.0141285 0.000697381 0) (-0.013988 0.00154566 0) (-0.013677 0.0023578 0) (-0.0131689 0.00310348 0) (-0.0124408 0.00374475 0) (-0.011458 0.00426688 0) (-0.0101851 0.00463984 0) (-0.00860522 0.00479437 0) (-0.00671081 0.00466751 0) (-0.00451749 0.00417927 0) (-0.00206788 0.0032702 0) (0.000575236 0.00187234 0) (0.00331501 -7.62214e-05 0) (0.00603061 -0.00258906 0) (0.00861162 -0.00563155 0) (0.0109934 -0.00913991 0) (0.0131632 -0.013096 0) (-9.52233e-06 -0.000754323 0) (-9.03429e-05 -0.00203093 0) (-0.000241427 -0.00319209 0) (-0.000451318 -0.00425418 0) (-0.000711791 -0.00521245 0) (-0.00101769 -0.00606376 0) (-0.00136508 -0.00680898 0) (-0.00175045 -0.00745187 0) (-0.00217059 -0.00799758 0) (-0.00262234 -0.00845122 0) (-0.00310256 -0.00881696 0) (-0.00360801 -0.00909764 0) (-0.00413513 -0.00929486 0) (-0.0046799 -0.00940934 0) (-0.00523764 -0.00944142 0) (-0.00580288 -0.00939168 0) (-0.00636955 -0.00926164 0) (-0.0069312 -0.00905432 0) (-0.00748156 -0.00877479 0) (-0.00801546 -0.00843025 0) (-0.00853016 -0.00802963 0) (-0.00902687 -0.00758163 0) (-0.00951089 -0.00708916 0) (-0.00998212 -0.00654451 0) (-0.0104287 -0.00594355 0) (-0.010841 -0.00530273 0) (-0.0112168 -0.00463119 0) (-0.0115523 -0.00393236 0) (-0.0118396 -0.00320944 0) (-0.0120677 -0.00246619 0) (-0.0122231 -0.00170992 0) (-0.0122914 -0.000949068 0) (-0.0122553 -0.000194857 0) (-0.0120959 0.000537269 0) (-0.0117938 0.00122931 0) (-0.0113282 0.00186114 0) (-0.0106792 0.00240474 0) (-0.00983033 0.00282549 0) (-0.00876442 0.00309764 0) (-0.00746115 0.00320014 0) (-0.00591101 0.0030807 0) (-0.00411939 0.00268575 0) (-0.00210732 0.00196256 0) (8.56994e-05 0.000866643 0) (0.00240305 -0.000645032 0) (0.00476418 -0.00260885 0) (0.00706893 -0.00503183 0) (0.00921781 -0.00789012 0) (0.0111278 -0.011141 0) (0.0127248 -0.0147508 0) (-8.91759e-06 -0.000709714 0) (-8.46919e-05 -0.00191491 0) (-0.000226402 -0.00301611 0) (-0.000423416 -0.00402595 0) (-0.000668034 -0.00493749 0) (-0.000955399 -0.00574648 0) (-0.00128169 -0.00645315 0) (-0.00164346 -0.0070609 0) (-0.0020374 -0.00757471 0) (-0.00246026 -0.00799965 0) (-0.00290878 -0.00833999 0) (-0.00337959 -0.00859878 0) (-0.00386905 -0.008778 0) (-0.00437313 -0.00887885 0) (-0.00488729 -0.00890225 0) (-0.00540644 -0.00884933 0) (-0.00592505 -0.00872196 0) (-0.00643737 -0.00852317 0) (-0.00693788 -0.0082574 0) (-0.0074219 -0.00793055 0) (-0.00788651 -0.00754926 0) (-0.00833123 -0.00711957 0) (-0.00875706 -0.00664442 0) (-0.00916073 -0.0061217 0) (-0.00953313 -0.00555422 0) (-0.00986634 -0.00495203 0) (-0.0101557 -0.0043235 0) (-0.0103958 -0.0036745 0) (-0.010579 -0.00301061 0) (-0.0106951 -0.00233819 0) (-0.0107325 -0.00166568 0) (-0.0106782 -0.00100308 0) (-0.0105179 -0.000363532 0) (-0.0102364 0.00023683 0) (-0.00981832 0.000779509 0) (-0.00924811 0.00124405 0) (-0.00851205 0.00160506 0) (-0.00760084 0.00183256 0) (-0.00650695 0.00190067 0) (-0.00522225 0.00178656 0) (-0.00374566 0.00145391 0) (-0.00208935 0.000862012 0) (-0.000278759 -2.5479e-05 0) (0.00164795 -0.00123923 0) (0.0036388 -0.00280494 0) (0.00562432 -0.00473967 0) (0.00752033 -0.00704199 0) (0.00923904 -0.00968871 0) (0.0106965 -0.0126399 0) (0.0118069 -0.0158477 0) (-8.27068e-06 -0.000668125 0) (-7.84643e-05 -0.00180683 0) (-0.000209739 -0.00285205 0) (-0.000392386 -0.00381297 0) (-0.00061934 -0.00468078 0) (-0.000886107 -0.00545021 0) (-0.00118906 -0.00612097 0) (-0.00152483 -0.00669621 0) (-0.00189015 -0.00718074 0) (-0.00228175 -0.00757968 0) (-0.00269632 -0.0078974 0) (-0.00313047 -0.00813716 0) (-0.00358057 -0.00830122 0) (-0.00404271 -0.00839117 0) (-0.00451255 -0.00840836 0) (-0.00498535 -0.00835428 0) (-0.00545608 -0.00823102 0) (-0.00591956 -0.00804153 0) (-0.00637076 -0.00778981 0) (-0.00680521 -0.00748083 0) (-0.00721957 -0.00711999 0) (-0.00761187 -0.00671226 0) (-0.00798045 -0.00626107 0) (-0.00832102 -0.00576818 0) (-0.00862612 -0.00523838 0) (-0.00888851 -0.0046798 0) (-0.00910243 -0.00410061 0) (-0.00926191 -0.00350807 0) (-0.00935947 -0.00290939 0) (-0.00938599 -0.00231262 0) (-0.00933132 -0.00172724 0) (-0.00918467 -0.00116428 0) (-0.00893439 -0.000637294 0) (-0.00856861 -0.000162476 0) (-0.00807584 0.000241835 0) (-0.00744529 0.000555654 0) (-0.00666882 0.000756417 0) (-0.0057426 0.000819309 0) (-0.00466524 0.000720907 0) (-0.00343668 0.000438895 0) (-0.00206309 -5.34723e-05 0) (-0.000561369 -0.000784054 0) (0.00104051 -0.00177695 0) (0.00270535 -0.00305124 0) (0.00438653 -0.00462044 0) (0.00602419 -0.00648859 0) (0.00754667 -0.00864568 0) (0.00887805 -0.0110653 0) (0.00994287 -0.0137061 0) (0.0106636 -0.0165133 0) (-7.58515e-06 -0.000629822 0) (-7.17437e-05 -0.00170743 0) (-0.000191722 -0.00270106 0) (-0.000358815 -0.00361674 0) (-0.000566674 -0.00444402 0) (-0.000811232 -0.00517683 0) (-0.0010891 -0.00581447 0) (-0.00139707 -0.00635985 0) (-0.00173198 -0.00681774 0) (-0.00209061 -0.00719329 0) (-0.0024697 -0.00749097 0) (-0.00286587 -0.00771424 0) (-0.00327562 -0.00786562 0) (-0.0036952 -0.00794697 0) (-0.00412053 -0.00795995 0) (-0.00454721 -0.00790632 0) (-0.00497062 -0.00778829 0) (-0.00538604 -0.00760876 0) (-0.00578886 -0.00737142 0) (-0.00617471 -0.00708073 0) (-0.00653983 -0.0067415 0) (-0.00688123 -0.00635839 0) (-0.00719586 -0.0059355 0) (-0.00747911 -0.00547669 0) (-0.0077245 -0.00498758 0) (-0.00792532 -0.00447578 0) (-0.00807557 -0.00394944 0) (-0.00816916 -0.00341663 0) (-0.00819908 -0.00288569 0) (-0.00815724 -0.00236573 0) (-0.00803502 -0.00186698 0) (-0.0078236 -0.00140097 0) (-0.00751401 -0.000981104 0) (-0.00709745 -0.00062293 0) (-0.00656578 -0.000343784 0) (-0.00591209 -0.000162379 0) (-0.00513253 -9.861e-05 0) (-0.00422746 -0.000172956 0) (-0.00319988 -0.00040526 0) (-0.0020551 -0.000814784 0) (-0.000804214 -0.00142138 0) (0.000533239 -0.00224331 0) (0.00192886 -0.00329516 0) (0.00334701 -0.00458656 0) (0.00474578 -0.00612161 0) (0.00607423 -0.007896 0) (0.00727209 -0.0098933 0) (0.00827515 -0.0120836 0) (0.00901955 -0.014424 0) (0.00944172 -0.0168581 0) (-6.85526e-06 -0.000595041 0) (-6.45902e-05 -0.00161733 0) (-0.0001726 -0.00256404 0) (-0.000323229 -0.00343836 0) (-0.000510919 -0.00422853 0) (-0.00073207 -0.00492779 0) (-0.00098359 -0.00553513 0) (-0.00126247 -0.00605334 0) (-0.00156571 -0.00648718 0) (-0.00189024 -0.00684181 0) (-0.00223287 -0.00712184 0) (-0.00259033 -0.00733091 0) (-0.00295928 -0.00747172 0) (-0.00333619 -0.00754638 0) (-0.00371725 -0.00755675 0) (-0.0040984 -0.00750479 0) (-0.0044754 -0.0073928 0) (-0.00484393 -0.00722369 0) (-0.00519971 -0.007001 0) (-0.00553853 -0.00672891 0) (-0.00585639 -0.00641203 0) (-0.00614971 -0.00605508 0) (-0.00641486 -0.00566274 0) (-0.00664721 -0.00523998 0) (-0.00684094 -0.00479293 0) (-0.00698988 -0.00432912 0) (-0.00708819 -0.00385673 0) (-0.00713006 -0.00338428 0) (-0.00710916 -0.00292074 0) (-0.00701845 -0.00247585 0) (-0.0068507 -0.00206022 0) (-0.00659892 -0.00168553 0) (-0.00625647 -0.00136476 0) (-0.0058173 -0.00111238 0) (-0.00527618 -0.000944196 0) (-0.00462922 -0.000877043 0) (-0.00387556 -0.000928201 0) (-0.00301855 -0.00111455 0) (-0.0020646 -0.00145203 0) (-0.00102244 -0.00195585 0) (9.4595e-05 -0.00264026 0) (0.00126625 -0.00351677 0) (0.00246496 -0.00459267 0) (0.00365731 -0.00587027 0) (0.00480585 -0.0073465 0) (0.00586753 -0.00901112 0) (0.0067926 -0.0108437 0) (0.00752819 -0.0128124 0) (0.00802221 -0.0148739 0) (0.0082248 -0.0169734 0) (-6.07873e-06 -0.000563989 0) (-5.70636e-05 -0.001537 0) (-0.000152597 -0.00244165 0) (-0.000286112 -0.00327868 0) (-0.000452883 -0.00403524 0) (-0.000649809 -0.00470408 0) (-0.000874129 -0.00528399 0) (-0.00112309 -0.00577771 0) (-0.00139389 -0.00618999 0) (-0.00168364 -0.00652607 0) (-0.0019893 -0.00679067 0) (-0.00230777 -0.00698756 0) (-0.00263589 -0.00711962 0) (-0.00297038 -0.00718913 0) (-0.00330773 -0.00719812 0) (-0.00364424 -0.00714869 0) (-0.00397603 -0.00704326 0) (-0.00429917 -0.00688478 0) (-0.00460969 -0.00667675 0) (-0.00490359 -0.00642325 0) (-0.00517685 -0.00612887 0) (-0.00542568 -0.00579852 0) (-0.00564626 -0.00543731 0) (-0.00583418 -0.00505082 0) (-0.00598421 -0.00464556 0) (-0.00609073 -0.00422908 0) (-0.0061483 -0.00380964 0) (-0.00615161 -0.00339594 0) (-0.00609511 -0.00299724 0) (-0.00597281 -0.00262348 0) (-0.00577879 -0.0022854 0) (-0.00550761 -0.00199451 0) (-0.00515457 -0.00176315 0) (-0.00471587 -0.00160458 0) (-0.00418872 -0.00153286 0) (-0.00357167 -0.00156266 0) (-0.00286586 -0.00170865 0) (-0.0020764 -0.00198453 0) (-0.0012117 -0.0024026 0) (-0.000282578 -0.00297403 0) (0.000696776 -0.00370841 0) (0.00170684 -0.00461207 0) (0.00272192 -0.00568697 0) (0.00371163 -0.00693009 0) (0.00464294 -0.00833313 0) (0.00547964 -0.00988163 0) (0.00618131 -0.0115529 0) (0.00670545 -0.0133144 0) (0.00701067 -0.0151242 0) (0.0070588 -0.0169308 0) (-5.25897e-06 -0.000536843 0) (-4.92495e-05 -0.00146678 0) (-0.00013195 -0.00233435 0) (-0.000247929 -0.00313826 0) (-0.00039333 -0.00386478 0) (-0.000565561 -0.00450636 0) (-0.000762212 -0.00506171 0) (-0.000980808 -0.00553356 0) (-0.00121879 -0.0059267 0) (-0.00147346 -0.00624646 0) (-0.00174201 -0.00649765 0) (-0.00202154 -0.00668416 0) (-0.0023091 -0.00680901 0) (-0.00260169 -0.00687461 0) (-0.00289614 -0.00688313 0) (-0.00318911 -0.00683681 0) (-0.00347712 -0.00673818 0) (-0.0037566 -0.00659025 0) (-0.00402394 -0.00639655 0) (-0.0042754 -0.00616116 0) (-0.00450715 -0.00588875 0) (-0.00471542 -0.00558441 0) (-0.00489646 -0.00525357 0) (-0.00504619 -0.00490219 0) (-0.00515999 -0.004537 0) (-0.00523288 -0.00416563 0) (-0.00525993 -0.00379637 0) (-0.00523643 -0.00343799 0) (-0.00515765 -0.00309977 0) (-0.00501867 -0.00279163 0) (-0.00481473 -0.00252411 0) (-0.00454174 -0.00230832 0) (-0.00419647 -0.00215586 0) (-0.00377682 -0.0020787 0) (-0.00328189 -0.00208916 0) (-0.00271202 -0.00219971 0) (-0.00206963 -0.00242257 0) (-0.00136067 -0.00276867 0) (-0.000594463 -0.0032471 0) (0.000217272 -0.00386531 0) (0.00106035 -0.00462887 0) (0.00191682 -0.00554019 0) (0.00276372 -0.00659735 0) (0.00357421 -0.00779352 0) (0.00431967 -0.00911685 0) (0.00496987 -0.0105501 0) (0.00549231 -0.0120693 0) (0.00585354 -0.0136426 0) (0.0060214 -0.0152304 0) (0.00596705 -0.0167851 0) (-4.39873e-06 -0.000513744 0) (-4.12492e-05 -0.00140687 0) (-0.00011093 -0.00224239 0) (-0.000209181 -0.00301738 0) (-0.000333032 -0.00371749 0) (-0.000480402 -0.004335 0) (-0.000649239 -0.00486861 0) (-0.000837355 -0.00532113 0) (-0.00104244 -0.00569746 0) (-0.00126206 -0.006003 0) (-0.00149363 -0.00624263 0) (-0.0017345 -0.00642035 0) (-0.00198199 -0.0065393 0) (-0.00223339 -0.00660198 0) (-0.00248589 -0.0066107 0) (-0.00273657 -0.0065678 0) (-0.00298234 -0.00647593 0) (-0.00322003 -0.00633817 0) (-0.00344637 -0.0061581 0) (-0.00365803 -0.00593985 0) (-0.00385148 -0.00568816 0) (-0.00402314 -0.00540831 0) (-0.00416949 -0.00510599 0) (-0.00428686 -0.00478741 0) (-0.0043713 -0.00445944 0) (-0.00441847 -0.00412972 0) (-0.00442405 -0.00380653 0) (-0.00438399 -0.00349864 0) (-0.00429437 -0.00321527 0) (-0.00415122 -0.00296607 0) (-0.00395086 -0.00276119 0) (-0.00369029 -0.00261118 0) (-0.00336739 -0.00252682 0) (-0.00298123 -0.00251884 0) (-0.00253223 -0.00259789 0) (-0.00202199 -0.00277443 0) (-0.00145369 -0.00305842 0) (-0.000833361 -0.00345843 0) (-0.000170251 -0.00398085 0) (0.000523899 -0.00462997 0) (0.00123554 -0.00540796 0) (0.0019487 -0.00631407 0) (0.00264361 -0.00734355 0) (0.00329724 -0.00848702 0) (0.0038853 -0.0097303 0) (0.00438285 -0.0110545 0) (0.004764 -0.0124352 0) (0.00500285 -0.013842 0) (0.00507492 -0.0152377 0) (0.00495878 -0.0165794 0) (-3.50695e-06 -0.00049477 0) (-3.31867e-05 -0.00135735 0) (-8.98568e-05 -0.00216586 0) (-0.000170447 -0.00291614 0) (-0.000272842 -0.00359345 0) (-0.000395459 -0.00419004 0) (-0.000536604 -0.00470471 0) (-0.000694389 -0.00514041 0) (-0.00086677 -0.00550216 0) (-0.00105156 -0.00579545 0) (-0.00124648 -0.00602525 0) (-0.00144914 -0.0061956 0) (-0.00165716 -0.00630974 0) (-0.00186819 -0.00637031 0) (-0.00207981 -0.00637968 0) (-0.00228948 -0.00634029 0) (-0.00249457 -0.00625486 0) (-0.0026923 -0.00612655 0) (-0.00287984 -0.005959 0) (-0.00305425 -0.00575642 0) (-0.00321245 -0.0055236 0) (-0.00335121 -0.00526597 0) (-0.00346735 -0.00498943 0) (-0.00355768 -0.00470041 0) (-0.00361883 -0.00440585 0) (-0.00364718 -0.00411338 0) (-0.0036391 -0.0038312 0) (-0.00359123 -0.00356803 0) (-0.00350033 -0.00333289 0) (-0.0033633 -0.00313512 0) (-0.00317737 -0.0029844 0) (-0.00294046 -0.00289061 0) (-0.00265123 -0.00286366 0) (-0.00230948 -0.00291317 0) (-0.00191642 -0.00304832 0) (-0.00147446 -0.00327772 0) (-0.000987133 -0.00360935 0) (-0.000460036 -0.00404976 0) (9.84141e-05 -0.00460323 0) (0.000677275 -0.00527151 0) (0.00126414 -0.00605399 0) (0.00184515 -0.00694734 0) (0.00240378 -0.00794477 0) (0.00292093 -0.00903515 0) (0.00337654 -0.010203 0) (0.00375032 -0.0114285 0) (0.00402183 -0.0126874 0) (0.00417133 -0.0139506 0) (0.0041807 -0.0151838 0) (0.00403429 -0.0163481 0) (-2.60691e-06 -0.00047988 0) (-2.52605e-05 -0.00131812 0) (-6.91531e-05 -0.00210461 0) (-0.000132417 -0.00283439 0) (-0.000213724 -0.0034925 0) (-0.000311959 -0.00407128 0) (-0.000425774 -0.00456975 0) (-0.00055358 -0.00499108 0) (-0.00069361 -0.00534043 0) (-0.000843963 -0.00562338 0) (-0.00100264 -0.00584496 0) (-0.00116763 -0.00600928 0) (-0.00133688 -0.00611963 0) (-0.00150839 -0.00617871 0) (-0.00168015 -0.00618897 0) (-0.00185006 -0.00615292 0) (-0.00201592 -0.00607333 0) (-0.00217541 -0.00595342 0) (-0.00232613 -0.0057969 0) (-0.00246564 -0.00560804 0) (-0.00259134 -0.00539173 0) (-0.00270052 -0.00515348 0) (-0.0027904 -0.00489936 0) (-0.00285829 -0.00463594 0) (-0.00290139 -0.00437025 0) (-0.0029168 -0.00410988 0) (-0.00290161 -0.00386295 0) (-0.00285309 -0.00363797 0) (-0.00276869 -0.00344377 0) (-0.00264603 -0.00328938 0) (-0.00248309 -0.00318398 0) (-0.00227849 -0.00313677 0) (-0.00203148 -0.00315686 0) (-0.00174224 -0.00325294 0) (-0.0014123 -0.00343292 0) (-0.00104438 -0.00370382 0) (-0.000642123 -0.00407182 0) (-0.000210399 -0.0045418 0) (0.000243722 -0.00511633 0) (0.00071079 -0.00579533 0) (0.00117999 -0.00657609 0) (0.00163964 -0.00745327 0) (0.00207633 -0.00841847 0) (0.00247479 -0.00945948 0) (0.00281898 -0.0105601 0) (0.00309289 -0.0117002 0) (0.00328068 -0.0128558 0) (0.00336753 -0.0139991 0) (0.00334033 -0.0150983 0) (0.0031881 -0.016118 0) (-1.73764e-06 -0.000468894 0) (-1.77488e-05 -0.00128874 0) (-4.94114e-05 -0.00205811 0) (-9.59857e-05 -0.00277153 0) (-0.00015684 -0.00341401 0) (-0.000231292 -0.0039781 0) (-0.000318333 -0.00446313 0) (-0.000416675 -0.00487252 0) (-0.000524827 -0.00521163 0) (-0.000641196 -0.00548614 0) (-0.000764138 -0.00570112 0) (-0.000891999 -0.0058607 0) (-0.00102313 -0.00596817 0) (-0.00115592 -0.00602626 0) (-0.00128874 -0.00603745 0) (-0.00141995 -0.0060043 0) (-0.00154783 -0.00592965 0) (-0.00167054 -0.00581676 0) (-0.00178618 -0.00566942 0) (-0.00189281 -0.00549198 0) (-0.00198838 -0.00528941 0) (-0.00207074 -0.00506727 0) (-0.00213764 -0.00483173 0) (-0.00218688 -0.00458948 0) (-0.00221626 -0.0043476 0) (-0.00222353 -0.00411364 0) (-0.00220645 -0.00389558 0) (-0.00216297 -0.00370176 0) (-0.00209117 -0.00354079 0) (-0.00198929 -0.00342139 0) (-0.0018559 -0.00335232 0) (-0.00169018 -0.0033422 0) (-0.00149178 -0.00339943 0) (-0.00126101 -0.00353191 0) (-0.00099925 -0.00374656 0) (-0.000709179 -0.00404912 0) (-0.000394207 -0.00444426 0) (-5.8367e-05 -0.0049353 0) (0.000292845 -0.00552358 0) (0.000651914 -0.00620771 0) (0.00101004 -0.00698349 0) (0.00135783 -0.00784414 0) (0.00168483 -0.00878008 0) (0.00197938 -0.00977836 0) (0.00222935 -0.0108224 0) (0.00242264 -0.0118921 0) (0.0025474 -0.012964 0) (0.00259281 -0.0140111 0) (0.00254967 -0.0150039 0) (0.00241061 -0.0159098 0) (-9.90844e-07 -0.000462068 0) (-1.08947e-05 -0.00126929 0) (-3.13361e-05 -0.00202627 0) (-6.22327e-05 -0.00272737 0) (-0.00010357 -0.00335774 0) (-0.00015508 -0.00391025 0) (-0.000216077 -0.00438462 0) (-0.000285569 -0.00478458 0) (-0.00036238 -0.00511569 0) (-0.000445258 -0.00538371 0) (-0.000532932 -0.00559372 0) (-0.000624155 -0.00574982 0) (-0.000717689 -0.00585524 0) (-0.000812319 -0.00591271 0) (-0.000906887 -0.00592473 0) (-0.00100022 -0.0058939 0) (-0.00109109 -0.0058231 0) (-0.00117817 -0.00571561 0) (-0.0012601 -0.00557531 0) (-0.00133547 -0.00540662 0) (-0.0014028 -0.00521459 0) (-0.0014605 -0.00500484 0) (-0.00150694 -0.00478357 0) (-0.00154047 -0.0045575 0) (-0.00155944 -0.0043337 0) (-0.00156221 -0.00411971 0) (-0.00154722 -0.00392342 0) (-0.00151307 -0.00375308 0) (-0.00145845 -0.00361709 0) (-0.00138215 -0.00352392 0) (-0.00128323 -0.00348196 0) (-0.00116125 -0.00349939 0) (-0.00101611 -0.00358403 0) (-0.000848059 -0.00374319 0) (-0.000658128 -0.00398309 0) (-0.000448473 -0.00430851 0) (-0.000221972 -0.00472285 0) (1.82257e-05 -0.00522814 0) (0.000268243 -0.00582478 0) (0.000522766 -0.0065106 0) (0.000775287 -0.00728053 0) (0.00101883 -0.00812671 0) (0.00124588 -0.00903862 0) (0.00144821 -0.0100028 0) (0.00161736 -0.0110026 0) (0.0017449 -0.0120181 0) (0.00182258 -0.0130264 0) (0.00184287 -0.0140015 0) (0.00179961 -0.0149152 0) (0.00168828 -0.0157369 0) (2.45825e-07 -0.000461034 0) (-4.85054e-06 -0.00126157 0) (-1.56274e-05 -0.00201092 0) (-3.23258e-05 -0.00270364 0) (-5.54355e-05 -0.00332542 0) (-8.50882e-05 -0.00386966 0) (-0.000120924 -0.00433645 0) (-0.000162261 -0.00472979 0) (-0.00020827 -0.00505536 0) (-0.000258092 -0.00531894 0) (-0.000310864 -0.00552553 0) (-0.00036577 -0.00567915 0) (-0.000422027 -0.00578299 0) (-0.000478893 -0.00583972 0) (-0.000535659 -0.0058519 0) (-0.000591625 -0.00582216 0) (-0.000646056 -0.00575344 0) (-0.000698179 -0.00564911 0) (-0.000747209 -0.00551308 0) (-0.000792293 -0.0053498 0) (-0.000832521 -0.00516434 0) (-0.000866908 -0.00496234 0) (-0.000894418 -0.00475002 0) (-0.000913994 -0.0045341 0) (-0.000924618 -0.00432169 0) (-0.000925333 -0.00412035 0) (-0.000915238 -0.00393795 0) (-0.000893498 -0.00378266 0) (-0.00085935 -0.00366275 0) (-0.000812089 -0.00358648 0) (-0.000751174 -0.00356202 0) (-0.000676406 -0.00359721 0) (-0.000587854 -0.00369942 0) (-0.000485662 -0.00387531 0) (-0.000370309 -0.00413058 0) (-0.000243084 -0.00446964 0) (-0.000105937 -0.00489538 0) (3.89186e-05 -0.00540901 0) (0.000189006 -0.00600997 0) (0.000341219 -0.00669539 0) (0.000491735 -0.00745969 0) (0.000636341 -0.00829454 0) (0.000770399 -0.00918901 0) (0.000888876 -0.0101294 0) (0.000986688 -0.0110988 0) (0.00105888 -0.0120778 0) (0.00110064 -0.0130437 0) (0.00110753 -0.0139715 0) (0.00107595 -0.0148338 0) (0.0010034 -0.0156012 0) (6.56734e-07 -0.000455743 0) (-4.82151e-07 -0.001249 0) (-3.20062e-06 -0.00199548 0) (-7.79056e-06 -0.00268444 0) (-1.46819e-05 -0.00330164 0) (-2.40139e-05 -0.00384122 0) (-3.56503e-05 -0.0043037 0) (-4.92991e-05 -0.00469334 0) (-6.46091e-05 -0.005016 0) (-8.1245e-05 -0.00527745 0) (-9.88797e-05 -0.00548264 0) (-0.000117211 -0.0056355 0) (-0.000135961 -0.00573917 0) (-0.000154891 -0.00579635 0) (-0.000173769 -0.00580956 0) (-0.000192371 -0.00578151 0) (-0.000210469 -0.00571514 0) (-0.000227813 -0.00561385 0) (-0.000244146 -0.00548151 0) (-0.000259174 -0.00532253 0) (-0.000272587 -0.00514193 0) (-0.000284041 -0.00494536 0) (-0.000293163 -0.00473906 0) (-0.000299582 -0.00452982 0) (-0.000302954 -0.00432487 0) (-0.000302962 -0.00413179 0) (-0.000299317 -0.00395847 0) (-0.000291768 -0.00381301 0) (-0.000280069 -0.0037036 0) (-0.000263967 -0.00363835 0) (-0.000243283 -0.00362524 0) (-0.000217975 -0.00367193 0) (-0.000188064 -0.00378544 0) (-0.000153561 -0.0039721 0) (-0.000114616 -0.00423737 0) (-7.17243e-05 -0.00458553 0) (-2.5613e-05 -0.00501913 0) (2.29469e-05 -0.00553897 0) (7.31501e-05 -0.00614388 0) (0.000123934 -0.00683056 0) (0.000173955 -0.00759305 0) (0.00022178 -0.00842278 0) (0.000265842 -0.00930863 0) (0.00030446 -0.0102367 0) (0.000335929 -0.0111904 0) (0.000358557 -0.01215 0) (0.000370717 -0.0130934 0) (0.000370921 -0.0139957 0) (0.000358026 -0.0148297 0) (0.000331348 -0.0155668 0) (0.0221509 0.0423963 0) (0.0214449 0.0318718 0) (0.0206606 0.0177046 0) (0.0172084 0.00303106 0) (0.0122464 -0.00754399 0) (0.00791349 -0.0134459 0) (0.00431911 -0.0159601 0) (0.00102421 -0.0162694 0) (-0.00241109 -0.0148637 0) (-0.00621702 -0.0116554 0) (-0.0106094 -0.00604592 0) (-0.0157172 0.00294082 0) (-0.021173 0.0152637 0) (-0.0246983 0.0298312 0) (-0.024948 0.0419105 0) (-0.0218523 0.0504161 0) (-0.0179496 0.048851 0) (-0.016842 0.0152134 0) (-0.0244993 0.0164409 0) (-0.0303045 -0.0152579 0) (-0.0142847 -0.103883 0) (-0.0060054 -0.0721802 0) (-0.0191631 -0.0427946 0) (-0.0197574 -0.0115572 0) (-0.014942 -0.00250652 0) (-0.00395455 -0.00189878 0) (0.00604576 0.000816835 0) (0.0118104 0.00186164 0) (0.0145558 0.00276949 0) (0.0149376 0.00370269 0) (0.0138469 0.00458405 0) (0.0119974 0.0052966 0) (0.00987632 0.0057753 0) (0.00779122 0.00600128 0) (0.00591319 0.00599515 0) (0.00431822 0.00579882 0) (0.003024 0.00546082 0) (0.00201393 0.00502893 0) (0.00125513 0.00454623 0) (0.000709314 0.00405083 0) (0.000337785 0.00357573 0) (0.000104209 0.00314734 0) (-2.42205e-05 0.00278385 0) (-7.69115e-05 0.00249353 0) (-7.98335e-05 0.00227228 0) (-5.53741e-05 0.00209897 0) (-2.25186e-05 0.00192893 0) (3.56812e-06 0.00168679 0) (1.34853e-05 0.00126252 0) (6.5312e-06 0.000524138 0) (0.0288515 0.0433664 0) (0.0269318 0.0338942 0) (0.0242349 0.0210137 0) (0.0199065 0.00771 0) (0.0144041 -0.00257183 0) (0.00905415 -0.00884946 0) (0.00408978 -0.0116679 0) (-0.000732693 -0.011951 0) (-0.00571901 -0.010317 0) (-0.0109912 -0.0068051 0) (-0.0164408 -0.000894646 0) (-0.0217156 0.00803342 0) (-0.0260635 0.0196106 0) (-0.0283614 0.0318475 0) (-0.0282215 0.0412822 0) (-0.0248445 0.0459164 0) (-0.0185698 0.0410381 0) (-0.0183784 0.021626 0) (-0.0186988 0.0170465 0) (-0.0175243 0.0056665 0) (-0.037214 -0.0382931 0) (-0.0903418 -0.0865135 0) (-0.070508 -0.0307325 0) (-0.0563136 -0.0222926 0) (-0.0323909 -0.0177707 0) (-0.0132031 -0.0166605 0) (0.00106598 -0.0105096 0) (0.00983439 -0.00420599 0) (0.0129624 0.00065919 0) (0.0128571 0.00400079 0) (0.0111867 0.00614432 0) (0.0089331 0.00737286 0) (0.00663644 0.00791473 0) (0.00456608 0.00795866 0) (0.0028371 0.00765835 0) (0.00147687 0.00713739 0) (0.000463759 0.00648889 0) (-0.000247083 0.00578165 0) (-0.00070656 0.00506626 0) (-0.000963488 0.0043812 0) (-0.00106268 0.00375654 0) (-0.00104426 0.00321478 0) (-0.000943267 0.00277017 0) (-0.000789995 0.0024273 0) (-0.000610439 0.00217852 0) (-0.000427023 0.00199917 0) (-0.000259346 0.00184071 0) (-0.000124357 0.00162317 0) (-3.52335e-05 0.00123077 0) (1.20047e-06 0.000521342 0) (0.0336894 0.0451975 0) (0.0313601 0.0370181 0) (0.027611 0.0253352 0) (0.022568 0.0131352 0) (0.0166373 0.00321034 0) (0.0106449 -0.00324105 0) (0.00490333 -0.00626543 0) (-0.000693226 -0.00653095 0) (-0.00636068 -0.00473493 0) (-0.0121553 -0.00112586 0) (-0.0178494 0.00454124 0) (-0.0228735 0.0126077 0) (-0.026397 0.0226379 0) (-0.0277491 0.0326446 0) (-0.0269667 0.0395991 0) (-0.0240263 0.0414249 0) (-0.0203196 0.0364783 0) (-0.0227429 0.0251892 0) (-0.0284483 0.01392 0) (-0.0275014 0.00184552 0) (-0.0235785 -0.018477 0) (-0.0420315 -0.0406736 0) (-0.0993773 -0.0350488 0) (-0.064835 -0.0524033 0) (-0.0212629 -0.0445014 0) (0.000647627 -0.0383461 0) (0.0133181 -0.0222377 0) (0.0155951 -0.00872855 0) (0.0141447 0.000309491 0) (0.0112334 0.00568715 0) (0.00803455 0.00858543 0) (0.00507874 0.00987894 0) (0.00259606 0.0101537 0) (0.000644198 0.00980013 0) (-0.000802372 0.00907919 0) (-0.00180196 0.00816784 0) (-0.00242745 0.0071822 0) (-0.0027541 0.0061972 0) (-0.00284904 0.00526129 0) (-0.00276833 0.00440711 0) (-0.00255928 0.0036576 0) (-0.00226244 0.00302864 0) (-0.00191243 0.00252899 0) (-0.00153855 0.00215904 0) (-0.0011656 0.00190771 0) (-0.000815069 0.0017474 0) (-0.00050644 0.0016266 0) (-0.000257848 0.00146199 0) (-8.61068e-05 0.00113389 0) (-4.36145e-06 0.000493003 0) (0.0338276 0.0467504 0) (0.0321012 0.0400364 0) (0.0287443 0.0297613 0) (0.0239892 0.0186896 0) (0.0182906 0.00924674 0) (0.012326 0.00276836 0) (0.00649546 -0.000454036 0) (0.000877474 -0.000826745 0) (-0.0046186 0.000967027 0) (-0.0100221 0.00446772 0) (-0.015106 0.00960215 0) (-0.0192898 0.0164423 0) (-0.0217927 0.0245506 0) (-0.0220936 0.0323499 0) (-0.020337 0.0375289 0) (-0.0170912 0.0385833 0) (-0.0136857 0.035333 0) (-0.0128798 0.0287412 0) (-0.0147983 0.0195889 0) (-0.02042 -0.000388836 0) (-0.0230426 -0.0241772 0) (-0.0268838 -0.0355373 0) (-0.0225062 -0.080951 0) (0.0468249 -0.0782548 0) (0.0572698 -0.0589715 0) (0.0446197 -0.0427843 0) (0.0314495 -0.0194883 0) (0.0218323 -0.00380601 0) (0.0139907 0.00542654 0) (0.00785271 0.0102363 0) (0.00323328 0.0123437 0) (-0.000120685 0.0128209 0) (-0.00246779 0.0123472 0) (-0.00402605 0.0113487 0) (-0.00497327 0.0100958 0) (-0.00545006 0.00875831 0) (-0.00557052 0.00743957 0) (-0.00542922 0.00620042 0) (-0.00510088 0.0050766 0) (-0.00464245 0.00408919 0) (-0.00409868 0.00325094 0) (-0.00350644 0.00256928 0) (-0.00289677 0.00204684 0) (-0.00229579 0.00167962 0) (-0.00172561 0.0014537 0) (-0.00120584 0.00133944 0) (-0.000755143 0.0012836 0) (-0.000392277 0.00120108 0) (-0.000137422 0.000970364 0) (-1.0003e-05 0.000438451 0) (0.0296594 0.0472431 0) (0.0292496 0.0420084 0) (0.0272309 0.0333162 0) (0.0236464 0.0235331 0) (0.0189296 0.0147834 0) (0.0137079 0.00844814 0) (0.00846084 0.00506446 0) (0.00344324 0.00444672 0) (-0.00126182 0.00601062 0) (-0.00560444 0.00917791 0) (-0.00939905 0.0136151 0) (-0.0121864 0.019121 0) (-0.0133259 0.0252595 0) (-0.0123897 0.0309173 0) (-0.00954448 0.0345118 0) (-0.00551352 0.0349965 0) (-0.00140305 0.0324892 0) (0.00159551 0.0280722 0) (0.00287888 0.0228595 0) (0.000859269 0.0124094 0) (-0.0110209 -0.0138829 0) (-0.0291639 -0.0414671 0) (-0.0259401 -0.10254 0) (-0.0300244 -0.113247 0) (0.0358333 -0.0686432 0) (0.0361291 -0.0321369 0) (0.0247204 -0.00668763 0) (0.0138891 0.00720376 0) (0.00557648 0.0136966 0) (-0.000420798 0.0161051 0) (-0.00450873 0.0163807 0) (-0.00711588 0.0154966 0) (-0.00863444 0.0140179 0) (-0.00936984 0.0122798 0) (-0.00954838 0.0104879 0) (-0.0093322 0.00875987 0) (-0.0088397 0.00716099 0) (-0.00816244 0.00572546 0) (-0.00736908 0.00446995 0) (-0.00650881 0.00340115 0) (-0.00561807 0.00252074 0) (-0.00472596 0.00182785 0) (-0.00385693 0.00131936 0) (-0.00303187 0.000987631 0) (-0.00226879 0.000816859 0) (-0.00158448 0.00077659 0) (-0.000996132 0.000813297 0) (-0.000522686 0.000841867 0) (-0.000187356 0.000741141 0) (-1.55613e-05 0.000357947 0) (0.022192 0.0461989 0) (0.0236956 0.0423277 0) (0.0235372 0.0352939 0) (0.0216905 0.0269708 0) (0.0185261 0.0191636 0) (0.0145976 0.0132056 0) (0.0104247 0.00976321 0) (0.00641368 0.00882966 0) (0.00282259 0.00994675 0) (-0.000188656 0.0125411 0) (-0.00243531 0.0161293 0) (-0.0036113 0.0203239 0) (-0.00330003 0.0246675 0) (-0.00121079 0.028405 0) (0.0024822 0.0305465 0) (0.00707722 0.0304562 0) (0.0116407 0.0283431 0) (0.0153526 0.0251857 0) (0.0177758 0.0220049 0) (0.0174135 0.0174772 0) (0.0099451 0.00509441 0) (-0.0097277 -0.0180532 0) (-0.0246446 -0.0718761 0) (-0.0441422 -0.190291 0) (0.00825984 -0.0904892 0) (0.0132117 -0.0285645 0) (0.00474865 0.00185515 0) (-0.00326497 0.0151884 0) (-0.0088186 0.0197973 0) (-0.0123891 0.0202743 0) (-0.0144359 0.0189673 0) (-0.0153556 0.016899 0) (-0.0154736 0.0145731 0) (-0.0150465 0.0122432 0) (-0.0142565 0.0100459 0) (-0.01323 0.00804552 0) (-0.0120589 0.00627076 0) (-0.010813 0.00472964 0) (-0.00954199 0.00341996 0) (-0.00827922 0.00233505 0) (-0.00704805 0.00146718 0) (-0.00586677 0.000809143 0) (-0.00475123 0.00035361 0) (-0.00371552 9.10449e-05 0) (-0.00277252 5.1885e-06 0) (-0.00193551 6.62757e-05 0) (-0.00121971 0.000222078 0) (-0.000643883 0.000389306 0) (-0.000233906 0.000449473 0) (-2.07877e-05 0.000252639 0) (0.0132651 0.0430361 0) (0.0167367 0.0406271 0) (0.0185771 0.0353141 0) (0.0187049 0.0285787 0) (0.0173681 0.0219381 0) (0.0150136 0.0166133 0) (0.0121648 0.0132946 0) (0.00932645 0.0120824 0) (0.00689448 0.0126469 0) (0.00514116 0.0144882 0) (0.00427839 0.0171055 0) (0.00452075 0.0200546 0) (0.0060828 0.0228882 0) (0.00906578 0.0250918 0) (0.0132522 0.0261161 0) (0.0180421 0.02569 0) (0.0226765 0.0240392 0) (0.0265058 0.021826 0) (0.0293969 0.0197275 0) (0.0306867 0.0176671 0) (0.0312587 0.0144617 0) (0.0184673 0.00304777 0) (0.00321753 -0.0344427 0) (-0.0147336 -0.249594 0) (0.0325748 -0.085624 0) (0.00396248 -0.0175776 0) (-0.0123558 0.0113433 0) (-0.0210378 0.0209689 0) (-0.0243116 0.0229389 0) (-0.0251686 0.0217351 0) (-0.0247846 0.0193173 0) (-0.0237156 0.0165066 0) (-0.0222443 0.0136911 0) (-0.0205435 0.011048 0) (-0.0187259 0.00866064 0) (-0.016867 0.00655866 0) (-0.0150199 0.00474516 0) (-0.0132222 0.00320913 0) (-0.0114977 0.00193467 0) (-0.00985987 0.000905771 0) (-0.00831652 0.000108814 0) (-0.00687389 -0.000467042 0) (-0.00553814 -0.000830718 0) (-0.00431589 -0.000991669 0) (-0.00321462 -0.000964721 0) (-0.0022438 -0.000777212 0) (-0.0014164 -0.00047834 0) (-0.000750767 -0.00014775 0) (-0.000275104 0.000101056 0) (-2.54372e-05 0.000124671 0) (0.00476616 0.0380248 0) (0.00983688 0.0369882 0) (0.0134784 0.0333434 0) (0.0154776 0.0282538 0) (0.0159164 0.0229635 0) (0.0151279 0.0185167 0) (0.0136113 0.0155385 0) (0.0119116 0.0141763 0) (0.0105018 0.0142139 0) (0.00973406 0.0152539 0) (0.00986094 0.0168595 0) (0.0110667 0.018628 0) (0.0134568 0.0201943 0) (0.0169968 0.0212379 0) (0.0214234 0.0215122 0) (0.026226 0.0209707 0) (0.0307911 0.019825 0) (0.0345944 0.0184651 0) (0.0374888 0.0172652 0) (0.0391542 0.0161767 0) (0.0401636 0.0155468 0) (0.036546 0.0118476 0) (0.0254799 -0.00689135 0) (-0.00481202 -0.198262 0) (-0.0645618 -0.0918649 0) (-0.0543532 -0.00731029 0) (-0.0412428 0.0180528 0) (-0.0409329 0.0235462 0) (-0.0395346 0.0229171 0) (-0.0370322 0.0204189 0) (-0.0341485 0.0173979 0) (-0.0311712 0.0143059 0) (-0.028209 0.0113731 0) (-0.0253275 0.00870892 0) (-0.0225705 0.00636066 0) (-0.0199621 0.00433737 0) (-0.0175147 0.00262674 0) (-0.0152333 0.0012072 0) (-0.0131169 5.60906e-05 0) (-0.0111596 -0.000846665 0) (-0.00935409 -0.00151684 0) (-0.00769474 -0.00196595 0) (-0.00617831 -0.00220197 0) (-0.00480424 -0.00223224 0) (-0.00357471 -0.00206821 0) (-0.00249556 -0.001733 0) (-0.00157763 -0.00127104 0) (-0.000838785 -0.000756543 0) (-0.000309247 -0.000295853 0) (-2.93396e-05 -2.27995e-05 0) (-0.00196 0.0318414 0) (0.00421776 0.0318202 0) (0.00923568 0.0296704 0) (0.0127319 0.0262173 0) (0.0146357 0.0223996 0) (0.0151799 0.0190238 0) (0.0148144 0.0165927 0) (0.014072 0.0152592 0) (0.0134458 0.0148949 0) (0.013329 0.0152096 0) (0.0140103 0.0158617 0) (0.015684 0.0165384 0) (0.0184343 0.0170007 0) (0.022192 0.0171092 0) (0.0266915 0.0168367 0) (0.0314819 0.0162833 0) (0.0360263 0.0156497 0) (0.0398448 0.0151452 0) (0.0426856 0.0148904 0) (0.044498 0.0147141 0) (0.0454321 0.0148064 0) (0.0468967 0.0141029 0) (0.0403984 0.0147012 0) (0.0207783 -0.11869 0) (-0.0802192 -0.0846567 0) (-0.110462 -0.0138141 0) (-0.0656065 0.0124955 0) (-0.056993 0.0186545 0) (-0.0513136 0.0185057 0) (-0.0461335 0.0162711 0) (-0.0412955 0.0134546 0) (-0.0368541 0.0105625 0) (-0.0327469 0.00784409 0) (-0.0289542 0.00540864 0) (-0.0254683 0.00329507 0) (-0.0222769 0.00150428 0) (-0.0193636 1.7892e-05 0) (-0.0167099 -0.00118922 0) (-0.0142954 -0.00214103 0) (-0.0120988 -0.00285767 0) (-0.0101002 -0.00335388 0) (-0.00828359 -0.00363901 0) (-0.00663767 -0.00371805 0) (-0.00515564 -0.00359425 0) (-0.00383513 -0.00327406 0) (-0.00267891 -0.0027749 0) (-0.00169607 -0.00213486 0) (-0.000904103 -0.00142108 0) (-0.000334925 -0.000730826 0) (-3.23612e-05 -0.000185767 0) (-0.00624728 0.0249963 0) (0.000566909 0.0256505 0) (0.00646046 0.0247934 0) (0.0109557 0.0229119 0) (0.0138912 0.0206084 0) (0.0154134 0.0184211 0) (0.015903 0.0167047 0) (0.0158443 0.0155873 0) (0.0157129 0.0149991 0) (0.0159135 0.0147399 0) (0.0167651 0.0145616 0) (0.0184986 0.0142506 0) (0.0212373 0.0136996 0) (0.024951 0.0129467 0) (0.0294134 0.0121608 0) (0.0342078 0.0115862 0) (0.0387985 0.0114488 0) (0.0426586 0.0118455 0) (0.045402 0.0126799 0) (0.0468996 0.0136122 0) (0.0470177 0.0142391 0) (0.04715 0.0138851 0) (0.0430588 0.0229178 0) (0.0357478 -0.0470727 0) (-0.0319216 -0.052251 0) (-0.11164 -0.01604 0) (-0.0667408 0.00371256 0) (-0.0607098 0.0108523 0) (-0.0558446 0.0120195 0) (-0.0505705 0.0106438 0) (-0.0452204 0.0083473 0) (-0.0401619 0.00585531 0) (-0.0354537 0.00351513 0) (-0.0311289 0.00144986 0) (-0.0271949 -0.000306736 0) (-0.023638 -0.00176049 0) (-0.020433 -0.00293528 0) (-0.0175494 -0.00385906 0) (-0.014955 -0.00455527 0) (-0.0126178 -0.00504187 0) (-0.0105092 -0.00533016 0) (-0.00860558 -0.00542524 0) (-0.00688986 -0.00532727 0) (-0.00535055 -0.00503392 0) (-0.00398189 -0.00454542 0) (-0.00278437 -0.00387231 0) (-0.00176583 -0.00304522 0) (-0.000943612 -0.00212285 0) (-0.000350949 -0.0011918 0) (-3.43614e-05 -0.000359589 0) (-0.00804306 0.0178604 0) (-0.000938776 0.0189669 0) (0.00539334 0.0192311 0) (0.0104282 0.0188271 0) (0.0139603 0.0180184 0) (0.016067 0.0170769 0) (0.0170579 0.0162013 0) (0.0173574 0.0154726 0) (0.0174061 0.0148485 0) (0.0176054 0.01419 0) (0.0183014 0.013319 0) (0.0197819 0.0121027 0) (0.0222474 0.0105546 0) (0.0257456 0.00889555 0) (0.030104 0.00751205 0) (0.0349101 0.0068405 0) (0.0395722 0.00718776 0) (0.0434765 0.0085758 0) (0.0461368 0.0107284 0) (0.0473169 0.0131269 0) (0.0468626 0.0151141 0) (0.0452616 0.0161252 0) (0.040298 0.0226275 0) (0.0361349 -0.00440701 0) (-0.00131424 -0.0146622 0) (-0.0768046 -0.0036976 0) (-0.0544467 0.00453107 0) (-0.0562078 0.00777635 0) (-0.0547824 0.00750569 0) (-0.05099 0.00558893 0) (-0.0461232 0.00319775 0) (-0.0410901 0.000867049 0) (-0.0362428 -0.00115052 0) (-0.0317421 -0.00282843 0) (-0.0276437 -0.00418345 0) (-0.0239529 -0.00524843 0) (-0.0206474 -0.006063 0) (-0.0176922 -0.00666218 0) (-0.015049 -0.00706981 0) (-0.0126805 -0.00730125 0) (-0.0105531 -0.00736312 0) (-0.0086393 -0.00725495 0) (-0.00691853 -0.00697077 0) (-0.00537666 -0.0065017 0) (-0.00400595 -0.00584086 0) (-0.00280564 -0.00499112 0) (-0.00178291 -0.00397488 0) (-0.00095512 -0.00284139 0) (-0.000356438 -0.00166544 0) (-3.52201e-05 -0.000539103 0) (-0.00741097 0.0106143 0) (-0.000223347 0.0120894 0) (0.00621538 0.0133856 0) (0.0114044 0.0143892 0) (0.0151166 0.0150477 0) (0.0173945 0.0153855 0) (0.0184968 0.0154487 0) (0.0187959 0.0152563 0) (0.0186951 0.0147673 0) (0.0185841 0.0138726 0) (0.0188334 0.0124284 0) (0.0197956 0.0103474 0) (0.0217677 0.00774594 0) (0.0248941 0.00504411 0) (0.029049 0.00291191 0) (0.033803 0.00204445 0) (0.038501 0.0028585 0) (0.0424472 0.00531144 0) (0.0450935 0.00893997 0) (0.0461459 0.0130175 0) (0.0454399 0.0167079 0) (0.0431009 0.0191952 0) (0.037776 0.024098 0) (0.035017 0.0214438 0) (0.022771 0.0180983 0) (-0.0422299 0.0188052 0) (-0.0430647 0.0153423 0) (-0.0509109 0.0104806 0) (-0.0518727 0.00577589 0) (-0.0491651 0.00170253 0) (-0.0447861 -0.00153667 0) (-0.0399638 -0.00401806 0) (-0.03523 -0.00581979 0) (-0.0308178 -0.00713756 0) (-0.0268048 -0.00808778 0) (-0.0232011 -0.00874996 0) (-0.019985 -0.0091894 0) (-0.0171188 -0.00945206 0) (-0.0145615 -0.00956255 0) (-0.0122742 -0.00953369 0) (-0.0102223 -0.00936692 0) (-0.00837725 -0.00905561 0) (-0.00671786 -0.00858714 0) (-0.00522942 -0.00794564 0) (-0.00390382 -0.00711674 0) (-0.00274016 -0.0060953 0) (-0.00174557 -0.00489496 0) (-0.00093761 -0.00355496 0) (-0.00035096 -0.00213755 0) (-3.488e-05 -0.000718765 0) (-0.00396033 0.00332956 0) (0.00312142 0.00521077 0) (0.00932805 0.00758698 0) (0.0142489 0.0100011 0) (0.0176738 0.0121263 0) (0.019658 0.0137709 0) (0.0204411 0.0148429 0) (0.020358 0.0152978 0) (0.0197736 0.0150809 0) (0.0190554 0.0140857 0) (0.018585 0.0121618 0) (0.0187719 0.00922568 0) (0.0200034 0.00547572 0) (0.0225075 0.0015538 0) (0.026212 -0.00151176 0) (0.030703 -0.00270478 0) (0.0353042 -0.00147662 0) (0.0392804 0.00202788 0) (0.042033 0.00713952 0) (0.0432501 0.0129108 0) (0.0428074 0.0183035 0) (0.0412608 0.0219371 0) (0.0378071 0.0244384 0) (0.0368496 0.0412857 0) (0.0128625 0.0467399 0) (-0.0548369 0.0442069 0) (-0.0461384 0.0281916 0) (-0.0504503 0.0141509 0) (-0.0496986 0.00442945 0) (-0.0462565 -0.00198522 0) (-0.0416917 -0.00611703 0) (-0.0369866 -0.0087251 0) (-0.0325164 -0.0102971 0) (-0.0284137 -0.0112474 0) (-0.0247157 -0.011794 0) (-0.0214112 -0.0120621 0) (-0.0184685 -0.0121397 0) (-0.0158472 -0.0120813 0) (-0.0135069 -0.0119104 0) (-0.0114104 -0.0116366 0) (-0.0095254 -0.0112559 0) (-0.00782587 -0.0107553 0) (-0.00629242 -0.0101157 0) (-0.00491192 -0.00931442 0) (-0.00367747 -0.00832984 0) (-0.00258905 -0.00714892 0) (-0.00165436 -0.00577651 0) (-0.000891271 -0.00424162 0) (-0.000334541 -0.0025937 0) (-3.33384e-05 -0.000892916 0) (0.00285164 -0.00386721 0) (0.00962945 -0.00133226 0) (0.0152193 0.00226573 0) (0.0193218 0.00616141 0) (0.0218842 0.00976517 0) (0.0230388 0.0127116 0) (0.0230388 0.014807 0) (0.0221909 0.0159597 0) (0.0208125 0.0161007 0) (0.0192268 0.0151068 0) (0.0177959 0.0127847 0) (0.0169491 0.00901428 0) (0.0171287 0.00404915 0) (0.0186325 -0.00123459 0) (0.0214862 -0.00543098 0) (0.0253998 -0.0071722 0) (0.0297339 -0.00573076 0) (0.0337229 -0.0013365 0) (0.0367194 0.00509449 0) (0.0383597 0.012414 0) (0.0383901 0.0194282 0) (0.0374484 0.0242498 0) (0.0330386 0.0245615 0) (0.0284789 0.0738747 0) (-0.0344286 0.0815135 0) (-0.0952689 0.058076 0) (-0.0575351 0.0313899 0) (-0.0518747 0.0123611 0) (-0.0467007 0.000476627 0) (-0.0414923 -0.00665828 0) (-0.0365305 -0.0108535 0) (-0.0320807 -0.0131919 0) (-0.0281174 -0.0143857 0) (-0.0245877 -0.0149266 0) (-0.0214492 -0.0150794 0) (-0.0186544 -0.014988 0) (-0.0161616 -0.014745 0) (-0.0139322 -0.0144078 0) (-0.0119302 -0.0139949 0) (-0.0101249 -0.0135118 0) (-0.00849024 -0.0129481 0) (-0.00700607 -0.0122855 0) (-0.00565756 -0.0114987 0) (-0.00443505 -0.0105593 0) (-0.0033343 -0.00943906 0) (-0.00235707 -0.00811774 0) (-0.00151204 -0.00659178 0) (-0.000817458 -0.00488018 0) (-0.000307637 -0.00301988 0) (-3.06361e-05 -0.00105602 0) (0.0125449 -0.0109784 0) (0.0188583 -0.00728214 0) (0.0235887 -0.00208702 0) (0.0264531 0.00345959 0) (0.0276271 0.00854588 0) (0.0274436 0.0127175 0) (0.02624 0.0157555 0) (0.0243098 0.0175658 0) (0.021909 0.0180806 0) (0.0192857 0.0171533 0) (0.0167367 0.0145236 0) (0.0146571 0.00999638 0) (0.0134958 0.00383859 0) (0.0136127 -0.0028755 0) (0.0151639 -0.00840762 0) (0.0181403 -0.0110617 0) (0.0220846 -0.00979087 0) (0.0260852 -0.00487912 0) (0.0292753 0.00260747 0) (0.0313366 0.0111324 0) (0.032068 0.0194732 0) (0.0322098 0.0258895 0) (0.0264789 0.029858 0) (0.0144783 0.131797 0) (-0.0742439 0.119091 0) (-0.112778 0.0554361 0) (-0.0593504 0.0213163 0) (-0.0466162 0.00346399 0) (-0.0388678 -0.00650401 0) (-0.0331142 -0.0121822 0) (-0.028625 -0.0154019 0) (-0.0250551 -0.0170642 0) (-0.0220536 -0.017757 0) (-0.019447 -0.0178872 0) (-0.0171349 -0.0177123 0) (-0.0150534 -0.0173374 0) (-0.0131737 -0.0168487 0) (-0.011466 -0.0163042 0) (-0.00990606 -0.015712 0) (-0.0084764 -0.0150729 0) (-0.00716223 -0.0143717 0) (-0.00595234 -0.0135854 0) (-0.0048388 -0.0126847 0) (-0.00381721 -0.0116364 0) (-0.00288707 -0.0104072 0) (-0.00205254 -0.00897057 0) (-0.00132356 -0.00731532 0) (-0.000718678 -0.00545109 0) (-0.000271141 -0.00340304 0) (-2.68635e-05 -0.00120289 0) (0.0241955 -0.0176354 0) (0.0293624 -0.0125489 0) (0.0329281 -0.00531665 0) (0.0343992 0.00221136 0) (0.0340039 0.00886574 0) (0.0322672 0.0141642 0) (0.0296673 0.0179822 0) (0.0265259 0.020316 0) (0.0230446 0.0211453 0) (0.0193774 0.0203133 0) (0.0157155 0.0174839 0) (0.0123629 0.0123508 0) (0.00971427 0.00513752 0) (0.00816658 -0.00298429 0) (0.00802938 -0.0100474 0) (0.0097425 -0.0141411 0) (0.0131391 -0.0135774 0) (0.0173155 -0.00847938 0) (0.0203903 4.02934e-05 0) (0.0221447 0.00941094 0) (0.0229993 0.0190416 0) (0.0227368 0.0268477 0) (0.0170608 0.0421311 0) (-0.00756621 0.206632 0) (-0.0568259 0.118805 0) (-0.0699021 0.0363288 0) (-0.0374555 0.00418082 0) (-0.0281973 -0.00759362 0) (-0.0231267 -0.0133549 0) (-0.0199307 -0.0166667 0) (-0.0176924 -0.0186315 0) (-0.0160036 -0.01963 0) (-0.0145615 -0.0199399 0) (-0.0132415 -0.0198073 0) (-0.0119984 -0.0194557 0) (-0.0108117 -0.0189325 0) (-0.00967275 -0.0183198 0) (-0.00857941 -0.0176688 0) (-0.00753599 -0.0169796 0) (-0.00654358 -0.0162523 0) (-0.00560171 -0.0154696 0) (-0.00471035 -0.0146067 0) (-0.00387019 -0.013632 0) (-0.00308315 -0.0125097 0) (-0.00235313 -0.0112031 0) (-0.00168694 -0.00968076 0) (-0.00109588 -0.00792508 0) (-0.00059852 -0.00593723 0) (-0.000226371 -0.00373166 0) (-2.21658e-05 -0.0013289 0) (0.0371372 -0.0222809 0) (0.0397896 -0.0162626 0) (0.0414189 -0.00714949 0) (0.0413132 0.00241261 0) (0.0394848 0.0106891 0) (0.0364117 0.0170465 0) (0.032616 0.0214825 0) (0.0284479 0.0241717 0) (0.0240805 0.0252113 0) (0.0195897 0.0244722 0) (0.0150541 0.0215566 0) (0.0106466 0.0160351 0) (0.00664674 0.00802548 0) (0.00344253 -0.00134158 0) (0.00150059 -0.0101179 0) (0.00174785 -0.0162879 0) (0.00415595 -0.017268 0) (0.00858004 -0.0120095 0) (0.0114089 -0.0016646 0) (0.0126107 0.00820535 0) (0.0115235 0.021817 0) (0.00103582 0.033845 0) (-0.0046831 0.0537652 0) (-0.00434728 0.246114 0) (0.0710442 0.153044 0) (0.0311241 0.0386137 0) (0.0125094 0.00283044 0) (0.00437542 -0.00906695 0) (-0.000115415 -0.0142136 0) (-0.0028933 -0.0171928 0) (-0.00462275 -0.0190489 0) (-0.00566896 -0.0200744 0) (-0.00623598 -0.0204678 0) (-0.00644752 -0.0204207 0) (-0.00641304 -0.0201261 0) (-0.00620708 -0.0196523 0) (-0.0058624 -0.0190781 0) (-0.00542721 -0.018436 0) (-0.00494033 -0.0177439 0) (-0.00441944 -0.0170052 0) (-0.00387989 -0.0162034 0) (-0.00333413 -0.0153154 0) (-0.00279211 -0.0143103 0) (-0.00226239 -0.0131522 0) (-0.00175328 -0.0118028 0) (-0.00127421 -0.0102275 0) (-0.000837533 -0.00840347 0) (-0.000461447 -0.00632464 0) (-0.000175008 -0.0039962 0) (-1.67373e-05 -0.00143022 0) (0.0484618 -0.0233303 0) (0.048184 -0.0171099 0) (0.0473839 -0.00690814 0) (0.0455433 0.00412351 0) (0.042594 0.013718 0) (0.0387297 0.0209632 0) (0.0343005 0.0258769 0) (0.0296091 0.0287903 0) (0.0248102 0.0299458 0) (0.0199394 0.0292831 0) (0.0149909 0.0263848 0) (0.0100076 0.020723 0) (0.00512918 0.0122715 0) (0.000660913 0.00194871 0) (-0.002828 -0.00856296 0) (-0.0042327 -0.0171414 0) (-0.00361284 -0.0207644 0) (0.000165404 -0.0164969 0) (0.00343959 -0.00294197 0) (0.00790165 0.00846302 0) (0.00132536 0.0303381 0) (-0.0111312 0.0460291 0) (-0.0154381 0.0577658 0) (-0.0240718 0.168244 0) (0.0820222 0.131198 0) (0.0657553 0.0583142 0) (0.0481596 0.0188779 0) (0.0328635 0.00193021 0) (0.0215014 -0.00710131 0) (0.0135608 -0.0125419 0) (0.00816119 -0.01597 0) (0.00449641 -0.0180443 0) (0.00200504 -0.0191656 0) (0.000321425 -0.0196363 0) (-0.000800521 -0.0196907 0) (-0.00152197 -0.0194813 0) (-0.00195628 -0.0190949 0) (-0.0021835 -0.0185828 0) (-0.00225231 -0.0179858 0) (-0.00220491 -0.0173127 0) (-0.00207381 -0.0165548 0) (-0.00188231 -0.0156937 0) (-0.00164864 -0.0147026 0) (-0.0013873 -0.0135476 0) (-0.00111052 -0.0121909 0) (-0.000829802 -0.0105965 0) (-0.000558043 -0.00873792 0) (-0.0003125 -0.00660304 0) (-0.000118977 -0.00418953 0) (-1.08034e-05 -0.00150396 0) (0.0522051 -0.0211672 0) (0.051199 -0.0151036 0) (0.0490523 -0.00452553 0) (0.0459985 0.00716563 0) (0.042506 0.0174618 0) (0.0385504 0.0252639 0) (0.0342064 0.0305162 0) (0.0296605 0.0335876 0) (0.0250394 0.0348124 0) (0.020368 0.0342164 0) (0.0155984 0.0314127 0) (0.0106775 0.0258304 0) (0.0056128 0.0173115 0) (0.000612286 0.0065052 0) (-0.00398756 -0.00520259 0) (-0.00742146 -0.0155643 0) (-0.00966803 -0.0217282 0) (-0.00857204 -0.0213492 0) (-0.00596641 -0.0106634 0) (0.00400419 -0.00044719 0) (-0.000450184 0.0447748 0) (-0.0141591 0.057827 0) (-0.00488557 0.0634788 0) (-0.0360225 0.0893308 0) (0.0502861 0.0974912 0) (0.0710556 0.0606355 0) (0.0650597 0.0347978 0) (0.0497984 0.0172816 0) (0.0360624 0.00475687 0) (0.0257072 -0.0041049 0) (0.01828 -0.010113 0) (0.0129925 -0.0139794 0) (0.00919368 -0.0163259 0) (0.0064311 -0.0176424 0) (0.00440318 -0.0182879 0) (0.00290242 -0.0185004 0) (0.0017902 -0.0184188 0) (0.000979123 -0.0181432 0) (0.00040138 -0.0177246 0) (2.19226e-06 -0.0171848 0) (-0.000258879 -0.0165269 0) (-0.000412831 -0.0157406 0) (-0.00048377 -0.0148047 0) (-0.000490562 -0.0136898 0) (-0.000448242 -0.0123604 0) (-0.00036959 -0.0107804 0) (-0.000267303 -0.00892117 0) (-0.000156969 -0.00676613 0) (-6.03136e-05 -0.00430708 0) (-4.6027e-06 -0.00154826 0) (0.0453674 -0.0199888 0) (0.0471242 -0.0131692 0) (0.0455432 -0.0016153 0) (0.0425496 0.0105924 0) (0.0393666 0.0211768 0) (0.0359583 0.0292336 0) (0.032305 0.0347076 0) (0.0285119 0.0379128 0) (0.0246614 0.0391999 0) (0.0207635 0.0386732 0) (0.016745 0.0360128 0) (0.012491 0.0306585 0) (0.00792185 0.0223663 0) (0.00318011 0.0116524 0) (-0.00177418 -0.000142205 0) (-0.00728088 -0.0106175 0) (-0.0137412 -0.016797 0) (-0.0170302 -0.0178498 0) (-0.0296521 -0.00817646 0) (-0.0283577 0.005884 0) (-0.0100216 0.0469277 0) (-0.00233311 0.0355915 0) (0.0440923 0.05625 0) (0.0432125 0.0451615 0) (0.0715997 0.0623366 0) (0.0711837 0.0588856 0) (0.0624325 0.0498056 0) (0.0502896 0.0328992 0) (0.0396448 0.0173133 0) (0.0309891 0.00522459 0) (0.0241591 -0.00333516 0) (0.0188483 -0.00902845 0) (0.0147106 -0.0126561 0) (0.0114583 -0.0148788 0) (0.00888267 -0.0161839 0) (0.00683478 -0.016881 0) (0.00520921 -0.0171782 0) (0.00392463 -0.0171994 0) (0.00291147 -0.0170127 0) (0.00211679 -0.0166554 0) (0.00149831 -0.0161416 0) (0.00102243 -0.0154694 0) (0.000662531 -0.0146247 0) (0.000397677 -0.013583 0) (0.000211568 -0.0123124 0) (9.1262e-05 -0.0107783 0) (2.5097e-05 -0.00895119 0) (-3.94822e-08 -0.00681149 0) (-1.03776e-06 -0.0043469 0) (1.62105e-06 -0.00156237 0) (0.0360109 -0.025509 0) (0.0394473 -0.0137935 0) (0.0387979 0.000275602 0) (0.0367189 0.0132881 0) (0.0342754 0.0241218 0) (0.0316464 0.0323268 0) (0.0289785 0.037944 0) (0.0263238 0.0412417 0) (0.0236824 0.0425764 0) (0.0210063 0.042126 0) (0.0181657 0.0396486 0) (0.0149847 0.0346008 0) (0.0113816 0.0266168 0) (0.00766427 0.0161692 0) (0.00385006 0.0050836 0) (-0.00149905 -0.00421788 0) (-0.0103337 -0.0102392 0) (-0.0046251 -0.0113199 0) (-0.0176438 0.00266952 0) (-0.0163651 -0.0139374 0) (-0.00691302 0.0200707 0) (0.0139848 -0.000835523 0) (0.133013 0.123881 0) (0.0341735 0.0612392 0) (0.0207978 0.05559 0) (0.0134475 0.0580539 0) (0.02159 0.0492129 0) (0.0310557 0.0361357 0) (0.0323401 0.0225456 0) (0.0298306 0.0107796 0) (0.026077 0.00174085 0) (0.0221842 -0.00467789 0) (0.0185654 -0.00901464 0) (0.0153476 -0.0118577 0) (0.0125635 -0.0136982 0) (0.0101996 -0.0148391 0) (0.0082169 -0.015516 0) (0.00656814 -0.0158498 0) (0.00520253 -0.0159212 0) (0.00407445 -0.0157754 0) (0.00314466 -0.015435 0) (0.00238077 -0.0149058 0) (0.00175659 -0.0141802 0) (0.00125144 -0.0132392 0) (0.000849559 -0.0120548 0) (0.000539126 -0.010595 0) (0.000310409 -0.00883069 0) (0.000153451 -0.00674042 0) (5.68931e-05 -0.00430949 0) (7.61902e-06 -0.00154647 0) (0.026629 -0.0281087 0) (0.0299481 -0.0142782 0) (0.0312487 0.00145768 0) (0.0304063 0.0151639 0) (0.0285207 0.0262844 0) (0.0264932 0.0344812 0) (0.0248003 0.0400413 0) (0.0234099 0.0432798 0) (0.0222089 0.0445916 0) (0.0210245 0.0442178 0) (0.0195821 0.0420029 0) (0.0175559 0.0374112 0) (0.0149052 0.0297142 0) (0.0125064 0.0191906 0) (0.0108764 0.00893978 0) (0.00723259 0.00199149 0) (0.000175286 -0.00725498 0) (0.00558072 -0.0271796 0) (0.0148893 0.00492287 0) (0.0173293 -0.00370853 0) (-0.00393008 0.00561085 0) (-0.0307464 -0.150569 0) (0.0245169 0.128329 0) (0.0291681 0.106635 0) (0.0275882 0.0614076 0) (0.0126061 0.0535689 0) (0.0183285 0.0341469 0) (0.0252005 0.027781 0) (0.0288117 0.0202284 0) (0.0289999 0.0119153 0) (0.0271779 0.00442597 0) (0.0244408 -0.00149639 0) (0.0214023 -0.00583421 0) (0.0183849 -0.00889824 0) (0.0155439 -0.0110439 0) (0.0129911 -0.0125446 0) (0.0107755 -0.0135573 0) (0.00886554 -0.0141921 0) (0.00722919 -0.0145247 0) (0.00583192 -0.0146019 0) (0.00464136 -0.0144507 0) (0.00362896 -0.0140826 0) (0.00277103 -0.013496 0) (0.00204899 -0.0126767 0) (0.0014492 -0.0116011 0) (0.000962137 -0.0102403 0) (0.000580862 -0.00856654 0) (0.000299242 -0.00655751 0) (0.00011188 -0.0041976 0) (1.32404e-05 -0.00150169 0) (0.00360138 -0.0293434 0) (0.013107 -0.0186935 0) (0.0207742 0.000477449 0) (0.022997 0.0153508 0) (0.0223139 0.0274601 0) (0.0209713 0.0357534 0) (0.0202479 0.0411071 0) (0.0201086 0.0440082 0) (0.0204069 0.0451316 0) (0.0208368 0.0448109 0) (0.0209204 0.0430464 0) (0.0199334 0.039259 0) (0.0178511 0.0316134 0) (0.0169768 0.0195887 0) (0.018927 0.00838718 0) (0.0197393 0.00260889 0) (0.0303798 -0.00794887 0) (0.0142965 -0.0165249 0) (0.00253012 -0.00337287 0) (0.0288674 0.00338999 0) (0.0680092 0.0428747 0) (0.0222475 -0.0764381 0) (-0.0454073 0.0594082 0) (-0.000254357 0.0978874 0) (0.033443 0.0791957 0) (0.0311138 0.0569816 0) (0.032324 0.032798 0) (0.0312216 0.0246659 0) (0.0311864 0.0188268 0) (0.0305069 0.0124859 0) (0.0288558 0.00632048 0) (0.0264862 0.00109733 0) (0.0237164 -0.00296648 0) (0.0207986 -0.00602002 0) (0.0179364 -0.00831031 0) (0.0152843 -0.0100903 0) (0.0129088 -0.0113937 0) (0.0108115 -0.0123069 0) (0.0089723 -0.0128916 0) (0.00736515 -0.0131912 0) (0.0059635 -0.0132344 0) (0.00474345 -0.0130367 0) (0.00368506 -0.0126011 0) (0.00277309 -0.0119184 0) (0.00199701 -0.0109692 0) (0.00135045 -0.00972799 0) (0.000829953 -0.00816899 0) (0.000433695 -0.00627005 0) (0.000162463 -0.00401594 0) (1.83089e-05 -0.00143005 0) (-0.00222308 -0.0305613 0) (-0.00857102 -0.0250516 0) (-0.00100437 -0.0058753 0) (0.00930678 0.0111949 0) (0.0152879 0.0266016 0) (0.0159875 0.0357396 0) (0.0160399 0.0410569 0) (0.0167588 0.0434149 0) (0.0184137 0.0442001 0) (0.0205063 0.0436558 0) (0.022297 0.0423651 0) (0.0219295 0.0404611 0) (0.0195223 0.0334025 0) (0.0204728 0.0189215 0) (0.025924 0.00384836 0) (0.0302078 0.00161753 0) (0.0311711 -0.00632203 0) (0.023369 0.00142577 0) (0.0213181 -0.0242933 0) (0.094599 -0.0461852 0) (0.158769 0.0136098 0) (0.100199 0.0606404 0) (0.0222008 0.04821 0) (-0.00262948 0.0583411 0) (0.0193076 0.0629139 0) (0.0351928 0.0520727 0) (0.0379643 0.0360683 0) (0.0358706 0.0268676 0) (0.0341095 0.0202205 0) (0.0325484 0.0140331 0) (0.0306595 0.00836663 0) (0.0283205 0.00359863 0) (0.0256167 -0.000178783 0) (0.0227 -0.00313796 0) (0.0197984 -0.00553334 0) (0.0170865 -0.00752733 0) (0.0146168 -0.00909102 0) (0.0124015 -0.010261 0) (0.0104235 -0.0110832 0) (0.00866217 -0.0115967 0) (0.00709696 -0.0118312 0) (0.00570949 -0.0118055 0) (0.00448463 -0.0115267 0) (0.00341131 -0.0109899 0) (0.0024828 -0.0101799 0) (0.00169641 -0.00907469 0) (0.00105254 -0.00765109 0) (0.000553903 -0.00588769 0) (0.000207481 -0.00377085 0) (2.26939e-05 -0.0013342 0) (0.00553538 -0.0283536 0) (-0.0190056 -0.0278726 0) (-0.0318913 -0.0174374 0) (-0.00986164 -0.00322877 0) (0.004091 0.0191677 0) (0.0120828 0.0350205 0) (0.0133887 0.0420614 0) (0.0142129 0.0425766 0) (0.0161235 0.0425978 0) (0.0191167 0.0413686 0) (0.0231744 0.0407214 0) (0.0241591 0.0427471 0) (0.0230129 0.0337018 0) (0.0278485 0.0113307 0) (0.0326848 -0.00112576 0) (0.0445593 -0.00775933 0) (0.0485714 -0.00766193 0) (0.0187089 -0.00862547 0) (-0.0677279 -0.104611 0) (-0.0113122 -0.0938168 0) (0.0670691 -0.033591 0) (0.130112 0.0888609 0) (0.131369 0.109631 0) (0.0884095 0.0797054 0) (0.0602006 0.0588428 0) (0.04739 0.0506368 0) (0.0428045 0.0392015 0) (0.0391348 0.0299372 0) (0.0364949 0.0224855 0) (0.0343891 0.0160644 0) (0.0322486 0.0105876 0) (0.0298326 0.00613439 0) (0.0270932 0.00263525 0) (0.0241008 -0.000188445 0) (0.0211227 -0.00269797 0) (0.0183884 -0.00491638 0) (0.0159076 -0.00672157 0) (0.0136466 -0.00812133 0) (0.0115889 -0.00915733 0) (0.00972317 -0.00986784 0) (0.00803737 -0.0102835 0) (0.00652002 -0.0104255 0) (0.0051616 -0.010304 0) (0.00395571 -0.00991784 0) (0.00289965 -0.00925563 0) (0.00199458 -0.00829916 0) (0.00124486 -0.00702783 0) (0.000657724 -0.0054218 0) (0.000246092 -0.00346989 0) (2.63123e-05 -0.00121728 0) (-0.0609242 0.00182001 0) (-0.148409 0.0054771 0) (-0.149454 -0.00961375 0) (-0.0996137 -0.015058 0) (-0.0469428 0.00803948 0) (-0.0103749 0.0241657 0) (0.0140967 0.0336252 0) (0.0181832 0.0373323 0) (0.015305 0.037822 0) (0.016323 0.0350615 0) (0.0255504 0.032745 0) (0.038119 0.0368884 0) (0.0484975 0.0301708 0) (0.054778 0.00942725 0) (0.059898 -0.00324999 0) (0.0841259 -0.0180174 0) (0.0961001 0.0162123 0) (0.10716 0.108555 0) (0.0787169 -0.071899 0) (0.00562106 -0.0990858 0) (-0.0174408 -0.0913336 0) (0.0382872 0.0513953 0) (0.0774385 0.121264 0) (0.0762282 0.109674 0) (0.0615312 0.0805032 0) (0.049105 0.0595267 0) (0.0432796 0.0442684 0) (0.0399733 0.0332176 0) (0.0376183 0.0248844 0) (0.0355129 0.0182468 0) (0.0333006 0.0129081 0) (0.0308475 0.00872059 0) (0.02803 0.00556241 0) (0.0248749 0.00292368 0) (0.0218887 0.000108451 0) (0.0192819 -0.00234664 0) (0.0168562 -0.00435342 0) (0.0145911 -0.0059429 0) (0.0124918 -0.00716128 0) (0.0105586 -0.00804649 0) (0.00878758 -0.00862898 0) (0.00717358 -0.00893058 0) (0.00571238 -0.00896337 0) (0.00440194 -0.0087291 0) (0.00324338 -0.00821993 0) (0.00224152 -0.00742127 0) (0.00140446 -0.00631554 0) (0.000743743 -0.00488493 0) (0.000277761 -0.00312151 0) (2.91233e-05 -0.00108275 0) (-0.0988171 0.10095 0) (-0.120222 0.0613869 0) (-0.117638 -0.0250748 0) (-0.143095 -0.0695291 0) (-0.171048 -0.0467362 0) (-0.138577 -0.0221523 0) (-0.072136 0.0129708 0) (-0.0259615 0.03538 0) (-0.00484246 0.0383812 0) (0.0161167 0.0312366 0) (0.0541166 0.0194802 0) (0.111596 0.0141799 0) (0.172439 0.00623851 0) (0.178572 0.0126368 0) (0.14795 -0.0251279 0) (0.102356 -0.0672789 0) (0.0377173 0.0480143 0) (0.0246207 0.0864597 0) (0.0546246 -0.0645536 0) (0.0443871 -0.0397016 0) (-0.0464533 -0.0734892 0) (-0.0789701 0.0147491 0) (-0.0310766 0.0874945 0) (0.00934602 0.0982031 0) (0.0291904 0.0818423 0) (0.0364658 0.0612937 0) (0.0386498 0.0458306 0) (0.038551 0.0348362 0) (0.0374308 0.0266647 0) (0.0357194 0.0202846 0) (0.0335947 0.0152348 0) (0.0311351 0.0113598 0) (0.0282489 0.00862199 0) (0.0251882 0.00600589 0) (0.0224198 0.00276889 0) (0.0199143 0.000135628 0) (0.0175314 -0.00201567 0) (0.0152732 -0.00375402 0) (0.0131541 -0.00512502 0) (0.01118 -0.00616385 0) (0.0093526 -0.00689879 0) (0.00767144 -0.00735094 0) (0.0061362 -0.00753328 0) (0.00474828 -0.00744989 0) (0.00351203 -0.00709626 0) (0.00243543 -0.00646149 0) (0.00153 -0.00553132 0) (0.000811201 -0.00429041 0) (0.000302221 -0.00273472 0) (3.11189e-05 -0.000934304 0) (-0.0962974 0.0813985 0) (-0.074011 0.0552444 0) (-0.0686255 -0.0162551 0) (-0.0753838 -0.0513594 0) (-0.064302 -0.0193935 0) (-0.0611898 -0.0630935 0) (-0.0567302 -0.0545017 0) (-0.031353 0.00170304 0) (0.00053129 0.021338 0) (0.0289324 -0.0082504 0) (0.05909 -0.0531672 0) (0.0857534 -0.0507727 0) (0.0949988 -0.00131185 0) (0.128311 0.0644719 0) (0.137205 0.0182918 0) (0.111453 0.018663 0) (0.0873613 0.0825297 0) (0.105017 0.0639387 0) (0.0951472 -0.0430359 0) (0.0603673 0.014815 0) (0.0329694 -0.00659523 0) (-0.00811584 0.0150713 0) (-0.0132479 0.0542576 0) (0.0052016 0.0698484 0) (0.021858 0.0661976 0) (0.0321219 0.0542305 0) (0.0364543 0.0435351 0) (0.0374073 0.0348375 0) (0.0367497 0.0278493 0) (0.0352218 0.0221363 0) (0.0332049 0.0174742 0) (0.0309288 0.0138862 0) (0.0283047 0.0115901 0) (0.0255256 0.00883107 0) (0.0228868 0.00538363 0) (0.0203565 0.00260094 0) (0.0179683 0.000314176 0) (0.0157124 -0.00155809 0) (0.0135867 -0.00306573 0) (0.0115937 -0.00424413 0) (0.00973612 -0.00512029 0) (0.00801559 -0.00571464 0) (0.00643396 -0.00604102 0) (0.00499495 -0.00610583 0) (0.00370539 -0.00590796 0) (0.00257597 -0.00544042 0) (0.00162119 -0.00469253 0) (0.000859924 -0.00365189 0) (0.000319441 -0.00231874 0) (3.23169e-05 -0.000775669 0) (-0.0651655 0.0467345 0) (-0.0388302 0.0277584 0) (-0.0285225 -0.0143662 0) (-0.0294446 -0.0377213 0) (-0.0234074 -0.0365992 0) (-0.0160786 -0.0610761 0) (-0.0145891 -0.0791125 0) (-0.00383989 -0.0578757 0) (0.0205663 -0.0415674 0) (0.0408502 -0.0572414 0) (0.0483347 -0.0871403 0) (0.0467834 -0.0868648 0) (0.0442077 -0.0451211 0) (0.0586308 0.00940943 0) (0.0782243 0.01289 0) (0.0781895 0.0331432 0) (0.0859632 0.0585278 0) (0.100831 0.0383012 0) (0.0885315 -0.00432112 0) (0.0629303 0.0170613 0) (0.0482676 0.0274032 0) (0.0299281 0.0400868 0) (0.019878 0.0530567 0) (0.0224434 0.0587194 0) (0.0290379 0.0561078 0) (0.0337346 0.048865 0) (0.0358435 0.0415435 0) (0.0362714 0.0348546 0) (0.0355082 0.028999 0) (0.0339791 0.0239579 0) (0.0319847 0.0196417 0) (0.0297757 0.0162041 0) (0.0273981 0.0142313 0) (0.0250324 0.0113238 0) (0.0227362 0.00788507 0) (0.0203885 0.00500968 0) (0.0180898 0.00261078 0) (0.0158816 0.000622523 0) (0.0137812 -0.00100751 0) (0.0117986 -0.00231366 0) (0.00993988 -0.00332109 0) (0.00820859 -0.00404941 0) (0.00660815 -0.00451342 0) (0.00514399 -0.00472209 0) (0.00382499 -0.00467803 0) (0.00266417 -0.00437841 0) (0.00167866 -0.00381644 0) (0.000890281 -0.00298297 0) (0.000329602 -0.0018828 0) (3.27579e-05 -0.000610528 0) (-0.0328622 0.0241266 0) (-0.012616 0.00944094 0) (-0.00305074 -0.0188368 0) (-0.00227037 -0.0385606 0) (0.000153028 -0.0449777 0) (0.00442251 -0.0534818 0) (0.00423204 -0.0582706 0) (0.00678765 -0.0494776 0) (0.0184249 -0.0420555 0) (0.0298651 -0.0461047 0) (0.0327836 -0.0549148 0) (0.0275491 -0.0533411 0) (0.0227355 -0.035204 0) (0.0294569 -0.00665542 0) (0.0404627 0.00920679 0) (0.0478818 0.0266181 0) (0.0588124 0.0407106 0) (0.0696527 0.0332876 0) (0.0631418 0.0172919 0) (0.0479475 0.0267131 0) (0.0394463 0.0406725 0) (0.0332894 0.0515988 0) (0.0293759 0.0571267 0) (0.0294479 0.0565697 0) (0.0319483 0.0526047 0) (0.0340993 0.0469987 0) (0.0347993 0.0409679 0) (0.0345483 0.0353448 0) (0.0336418 0.0302395 0) (0.0321693 0.0257871 0) (0.0302495 0.0218012 0) (0.0280159 0.018505 0) (0.0258475 0.0164418 0) (0.0240431 0.0132857 0) (0.022205 0.0100497 0) (0.0200979 0.00724171 0) (0.0179222 0.00481534 0) (0.0157886 0.00275073 0) (0.0137419 0.00101876 0) (0.0117995 -0.00040194 0) (0.00996946 -0.00153008 0) (0.00825613 -0.00238317 0) (0.00666398 -0.00297692 0) (0.00519981 -0.00332322 0) (0.00387425 -0.00342875 0) (0.00270249 -0.00329516 0) (0.00170403 -0.00291975 0) (0.000903185 -0.00229684 0) (0.000333094 -0.00143585 0) (3.25042e-05 -0.000442395 0) (-0.00996088 0.00920238 0) (0.00379965 -0.00303741 0) (0.0109988 -0.023029 0) (0.0116844 -0.0392818 0) (0.0114303 -0.047913 0) (0.0118837 -0.0539614 0) (0.010355 -0.0570853 0) (0.0098442 -0.0536556 0) (0.0138455 -0.0499174 0) (0.0182601 -0.0501938 0) (0.018397 -0.0517694 0) (0.0139331 -0.0475806 0) (0.00969001 -0.0341847 0) (0.0114043 -0.0144403 0) (0.0170873 0.00241986 0) (0.0233759 0.0185865 0) (0.0323724 0.0304545 0) (0.0397027 0.0308934 0) (0.037302 0.0270704 0) (0.0298653 0.0337243 0) (0.0263026 0.0449416 0) (0.0260509 0.0536593 0) (0.027279 0.0572036 0) (0.0292292 0.0552082 0) (0.0311694 0.0507229 0) (0.0323089 0.0462817 0) (0.0324573 0.0410517 0) (0.0320946 0.0359617 0) (0.0313486 0.0313538 0) (0.0302777 0.0273363 0) (0.0289555 0.0236117 0) (0.0271992 0.020661 0) (0.0254069 0.0181838 0) (0.0237017 0.0150538 0) (0.0217067 0.0120764 0) (0.0195923 0.00936996 0) (0.0174834 0.00693941 0) (0.0154337 0.00480969 0) (0.0134697 0.00298517 0) (0.0116012 0.00146032 0) (0.00983249 0.000222778 0) (0.00816688 -0.000743989 0) (0.00660967 -0.00145735 0) (0.00516936 -0.00193272 0) (0.00385864 -0.00218121 0) (0.0026949 -0.00220918 0) (0.00169989 -0.00201814 0) (0.000900086 -0.00160588 0) (0.000330517 -0.000986248 0) (3.16391e-05 -0.000274508 0) (0.00381494 -0.00112632 0) (0.0127337 -0.0114543 0) (0.0175414 -0.0260597 0) (0.0177663 -0.0389615 0) (0.016151 -0.0473391 0) (0.0143282 -0.0526895 0) (0.011672 -0.0553598 0) (0.00943425 -0.0542538 0) (0.00919901 -0.0521239 0) (0.00924823 -0.0508119 0) (0.00728706 -0.0491913 0) (0.00311325 -0.0437417 0) (-0.000798367 -0.03263 0) (-0.00136453 -0.0172822 0) (0.00118312 -0.00200054 0) (0.00564833 0.0125076 0) (0.012033 0.0234798 0) (0.017221 0.0280597 0) (0.0174724 0.0302369 0) (0.0151627 0.0365359 0) (0.0150963 0.0449992 0) (0.0177361 0.0515104 0) (0.0215054 0.0541427 0) (0.0250934 0.0525097 0) (0.0276697 0.0488402 0) (0.0290679 0.0456135 0) (0.0293425 0.0412683 0) (0.0288847 0.0365704 0) (0.0282694 0.032162 0) (0.0280197 0.0279708 0) (0.0275506 0.0248319 0) (0.0262119 0.0224346 0) (0.0245125 0.0198462 0) (0.02267 0.0169833 0) (0.0206889 0.0141371 0) (0.018672 0.0114424 0) (0.0166963 0.00896813 0) (0.0147897 0.00676301 0) (0.0129606 0.00485104 0) (0.0112105 0.00323504 0) (0.00954009 0.001904 0) (0.00795302 0.000839335 0) (0.00645657 2.03179e-05 0) (0.0050622 -0.0005725 0) (0.00378557 -0.000954716 0) (0.00264675 -0.00113731 0) (0.00166974 -0.00112582 0) (0.000882942 -0.000921312 0) (0.000322671 -0.00054153 0) (3.0264e-05 -0.000109733 0) (0.0111993 -0.00812195 0) (0.0168315 -0.0168181 0) (0.0197339 -0.0277862 0) (0.0194209 -0.037857 0) (0.0172206 -0.0451672 0) (0.0143202 -0.0499104 0) (0.0109093 -0.0523585 0) (0.007618 -0.0522519 0) (0.00509441 -0.0507738 0) (0.0026737 -0.0487317 0) (-0.000634082 -0.0456631 0) (-0.00481938 -0.0397259 0) (-0.00854245 -0.0301717 0) (-0.0101958 -0.017665 0) (-0.00942663 -0.00448258 0) (-0.00656222 0.00817287 0) (-0.00213021 0.0183987 0) (0.00189349 0.0250126 0) (0.00368941 0.0299843 0) (0.00439534 0.0361136 0) (0.00646986 0.0426888 0) (0.0103769 0.0476031 0) (0.0150783 0.0497814 0) (0.0189995 0.0492523 0) (0.0214399 0.0467908 0) (0.0231227 0.0443686 0) (0.0241849 0.0410365 0) (0.024488 0.036842 0) (0.0247121 0.0322355 0) (0.0248561 0.0280431 0) (0.0244255 0.0256542 0) (0.0235521 0.0237591 0) (0.0223415 0.0214473 0) (0.0208135 0.018806 0) (0.0190785 0.0160496 0) (0.0173032 0.0133431 0) (0.0155647 0.0108146 0) (0.0138789 0.00854273 0) (0.0122432 0.00656327 0) (0.010655 0.00488034 0) (0.00911635 0.00348001 0) (0.00763438 0.00233943 0) (0.00622063 0.00143333 0) (0.00489079 0.000738061 0) (0.0036644 0.000233907 0) (0.00256466 -9.41333e-05 0) (0.00161789 -0.000255084 0) (0.000854137 -0.000252812 0) (0.000310515 -0.000108175 0) (2.84928e-05 4.95405e-05 0) (0.0145199 -0.0127519 0) (0.0179895 -0.0200607 0) (0.0195155 -0.0285133 0) (0.0187474 -0.0363701 0) (0.0163371 -0.0424275 0) (0.0130608 -0.0464754 0) (0.00929033 -0.0486029 0) (0.00543287 -0.0487929 0) (0.00181371 -0.0475453 0) (-0.00178387 -0.0451927 0) (-0.00578922 -0.0415012 0) (-0.0100241 -0.0356545 0) (-0.0136402 -0.0272974 0) (-0.0157641 -0.0168837 0) (-0.0159707 -0.00568211 0) (-0.0143063 0.00524531 0) (-0.0112514 0.0146611 0) (-0.00799383 0.0219747 0) (-0.0054899 0.0280255 0) (-0.00329337 0.0338989 0) (-0.000251304 0.0392589 0) (0.00385404 0.0432278 0) (0.0082505 0.0453735 0) (0.0121301 0.0459449 0) (0.0150811 0.0445386 0) (0.0171991 0.0426378 0) (0.0188005 0.0399145 0) (0.0200361 0.036191 0) (0.0208606 0.0316707 0) (0.0210495 0.0282274 0) (0.0207708 0.026224 0) (0.0203743 0.0245318 0) (0.0196582 0.0226113 0) (0.0184711 0.0203008 0) (0.017045 0.0176641 0) (0.0155973 0.0149545 0) (0.0141792 0.0123898 0) (0.0127781 0.0100832 0) (0.0113803 0.00807449 0) (0.00998464 0.00636192 0) (0.00859957 0.00492492 0) (0.00723961 0.00373547 0) (0.00592292 0.00276414 0) (0.00467054 0.00198377 0) (0.00350622 0.00137127 0) (0.00245627 0.000908624 0) (0.00154919 0.000584108 0) (0.000816345 0.000391781 0) (0.000295118 0.000308626 0) (2.64488e-05 0.000201436 0) (0.015426 -0.01575 0) (0.0174722 -0.02187 0) (0.0180553 -0.028506 0) (0.016956 -0.0346578 0) (0.0145079 -0.0395449 0) (0.0112 -0.0428789 0) (0.00737494 -0.0446279 0) (0.00333061 -0.0447935 0) (-0.000720042 -0.0435805 0) (-0.00479721 -0.0411137 0) (-0.00897362 -0.0372256 0) (-0.013053 -0.0317345 0) (-0.01651 -0.0243856 0) (-0.0187836 -0.0155404 0) (-0.0195276 -0.00602666 0) (-0.0186929 0.00338635 0) (-0.0165869 0.0118769 0) (-0.0138878 0.0191131 0) (-0.0111785 0.0253964 0) (-0.00842867 0.0310023 0) (-0.00517849 0.0355923 0) (-0.0013589 0.039095 0) (0.00252931 0.0414283 0) (0.00605933 0.0425288 0) (0.00917735 0.0417643 0) (0.0117038 0.0406268 0) (0.0136154 0.0382596 0) (0.0150914 0.0349664 0) (0.0159022 0.0311096 0) (0.0162231 0.0281334 0) (0.0168583 0.0260233 0) (0.0173683 0.024752 0) (0.0169417 0.0234452 0) (0.0159243 0.0215189 0) (0.0147782 0.0189451 0) (0.0137146 0.016206 0) (0.0126753 0.0136317 0) (0.0115949 0.0113416 0) (0.0104534 0.00935695 0) (0.00925975 0.00766151 0) (0.00803416 0.00622566 0) (0.00680121 0.00501674 0) (0.00558698 0.00400289 0) (0.00441825 0.00315507 0) (0.00332277 0.00244827 0) (0.00232951 0.00186253 0) (0.00146863 0.00138437 0) (0.000772284 0.00100658 0) (0.000277569 0.000705018 0) (2.42638e-05 0.00034466 0) (0.0149921 -0.0176251 0) (0.0160914 -0.0227243 0) (0.0160487 -0.0279935 0) (0.0147372 -0.0328236 0) (0.0123398 -0.0366992 0) (0.00916538 -0.0393536 0) (0.0054844 -0.0406969 0) (0.00152815 -0.0407017 0) (-0.00253024 -0.0394352 0) (-0.00661802 -0.0369413 0) (-0.0106427 -0.0331511 0) (-0.0144289 -0.0280515 0) (-0.0176587 -0.0215572 0) (-0.0199236 -0.0139484 0) (-0.0209606 -0.00582332 0) (-0.0206876 0.00225666 0) (-0.0192263 0.00973645 0) (-0.016934 0.0164605 0) (-0.0141645 0.0225266 0) (-0.0111791 0.0279984 0) (-0.00811456 0.0322713 0) (-0.00502984 0.0356643 0) (-0.00211763 0.0381958 0) (0.000871085 0.0393057 0) (0.00386719 0.0388596 0) (0.00662642 0.0381563 0) (0.00900464 0.0363287 0) (0.0106471 0.0336682 0) (0.011529 0.0305261 0) (0.0120086 0.0275635 0) (0.0132688 0.0246762 0) (0.0143624 0.0246225 0) (0.0140212 0.0241484 0) (0.0131626 0.0225342 0) (0.0123993 0.0198458 0) (0.0118198 0.0170319 0) (0.0112043 0.0144999 0) (0.0104489 0.0123029 0) (0.00955038 0.010409 0) (0.00854259 0.00878163 0) (0.00746381 0.00738444 0) (0.00635008 0.00618361 0) (0.00523485 0.00514783 0) (0.00414961 0.0042485 0) (0.00312503 0.00346034 0) (0.00219176 0.00276259 0) (0.00138081 0.00214091 0) (0.000724432 0.00158762 0) (0.000258833 0.00107847 0) (2.20486e-05 0.000478475 0) (0.0138745 -0.0187162 0) (0.0143398 -0.0229464 0) (0.0138944 -0.0271565 0) (0.0124694 -0.030953 0) (0.0101757 -0.0339847 0) (0.00721527 -0.03603 0) (0.00379299 -0.0369793 0) (9.49004e-05 -0.0367825 0) (-0.00372441 -0.0354451 0) (-0.0075491 -0.0329797 0) (-0.011258 -0.0293893 0) (-0.0146949 -0.0246773 0) (-0.0176254 -0.0188967 0) (-0.0197665 -0.0122957 0) (-0.0209116 -0.00530942 0) (-0.0209875 0.00162844 0) (-0.020059 0.00812888 0) (-0.0182618 0.0141088 0) (-0.0157541 0.0196464 0) (-0.0125978 0.0247923 0) (-0.00947643 0.029413 0) (-0.00682218 0.0329692 0) (-0.00425671 0.0355759 0) (-0.00156046 0.0363624 0) (0.0012652 0.036048 0) (0.00385636 0.0355877 0) (0.00595841 0.0343679 0) (0.00748046 0.0324078 0) (0.00830374 0.029923 0) (0.00855589 0.0270345 0) (0.00969575 0.0227398 0) (0.0107472 0.0245804 0) (0.0103397 0.0247718 0) (0.00998002 0.0230164 0) (0.0100868 0.0200393 0) (0.0102041 0.0173096 0) (0.00998959 0.0149893 0) (0.00947845 0.0129962 0) (0.00875594 0.0112648 0) (0.00788647 0.00974977 0) (0.00692343 0.00841989 0) (0.00591008 0.0072471 0) (0.00488342 0.00620439 0) (0.00387678 0.00526567 0) (0.00292165 0.00440667 0) (0.00204895 0.00360673 0) (0.00128949 0.00285126 0) (0.000674812 0.00213275 0) (0.00023967 0.00142761 0) (1.98852e-05 0.000602571 0) (0.012457 -0.0192573 0) (0.0124985 -0.0227553 0) (0.0118051 -0.0261297 0) (0.0103437 -0.0291117 0) (0.00818879 -0.0314533 0) (0.00548054 -0.0329769 0) (0.00237534 -0.0335746 0) (-0.000974009 -0.0331859 0) (-0.00442693 -0.0317919 0) (-0.00785845 -0.0293934 0) (-0.0111515 -0.0260082 0) (-0.0141753 -0.0216655 0) (-0.0167728 -0.0164644 0) (-0.018769 -0.0106555 0) (-0.0200196 -0.0045876 0) (-0.0204066 0.00137619 0) (-0.0198326 0.00693977 0) (-0.0183095 0.0120808 0) (-0.0160256 0.016971 0) (-0.0132884 0.0216598 0) (-0.0104346 0.0266491 0) (-0.0076681 0.0303735 0) (-0.00489769 0.032918 0) (-0.00226603 0.0338019 0) (6.78583e-05 0.0335448 0) (0.00225544 0.0333889 0) (0.00420875 0.0326049 0) (0.00573303 0.0312199 0) (0.00673764 0.0293646 0) (0.00693103 0.0271718 0) (0.00658506 0.0218864 0) (0.0071257 0.0239544 0) (0.00814476 0.0246067 0) (0.00879792 0.0226425 0) (0.0093492 0.0196272 0) (0.00952323 0.017282 0) (0.00929105 0.0153073 0) (0.00879519 0.0135636 0) (0.0081205 0.0120133 0) (0.00731762 0.01062 0) (0.00642927 0.00936411 0) (0.0054929 0.0082256 0) (0.00454184 0.00718248 0) (0.00360702 0.00621127 0) (0.00271828 0.00528887 0) (0.00190519 0.00439484 0) (0.00119735 0.00351459 0) (0.000624878 0.00264107 0) (0.000220617 0.00175196 0) (1.78233e-05 0.000716945 0) (0.0109529 -0.0194153 0) (0.0107169 -0.0223013 0) (0.00988448 -0.0250086 0) (0.00844361 -0.0273449 0) (0.00645007 -0.0291291 0) (0.00400698 -0.0302209 0) (0.00123691 -0.0305241 0) (-0.00173367 -0.0299773 0) (-0.00478041 -0.028552 0) (-0.00778476 -0.0262419 0) (-0.0106362 -0.0230597 0) (-0.0132287 -0.0190464 0) (-0.0154491 -0.0143048 0) (-0.0172081 -0.00907861 0) (-0.0184517 -0.00369695 0) (-0.0190737 0.00143944 0) (-0.0188495 0.00605628 0) (-0.01763 0.0103269 0) (-0.0156833 0.0146636 0) (-0.0134617 0.0191301 0) (-0.0109738 0.0238833 0) (-0.00823105 0.0275999 0) (-0.00543957 0.0301132 0) (-0.0027573 0.0313451 0) (-0.00047206 0.0314374 0) (0.0015116 0.0313931 0) (0.0033711 0.0308728 0) (0.00500083 0.0298418 0) (0.00640919 0.0282976 0) (0.00858532 0.0260533 0) (0.00915528 0.0228061 0) (0.00837331 0.0232297 0) (0.00852333 0.0242212 0) (0.00897543 0.0217903 0) (0.00946613 0.0193224 0) (0.0093052 0.0174266 0) (0.00887057 0.0157278 0) (0.00828361 0.0141674 0) (0.00758773 0.0127463 0) (0.00680882 0.0114444 0) (0.00596969 0.0102468 0) (0.0050951 0.00913601 0) (0.00421068 0.00809145 0) (0.00334262 0.00709021 0) (0.00251757 0.00610922 0) (0.00176282 0.00512776 0) (0.00110607 0.00413104 0) (0.000575579 0.00311255 0) (0.000202001 0.00205159 0) (1.58831e-05 0.00082179 0) (0.00947769 -0.0193128 0) (0.0090679 -0.0216896 0) (0.00817321 -0.0238607 0) (0.00679358 -0.0256833 0) (0.00497383 -0.0270216 0) (0.00279379 -0.0277651 0) (0.000352531 -0.0278326 0) (-0.00224348 -0.0271678 0) (-0.00488439 -0.0257396 0) (-0.00745871 -0.0235371 0) (-0.00985895 -0.0205671 0) (-0.0119861 -0.0168605 0) (-0.0137635 -0.0124987 0) (-0.0151841 -0.00766663 0) (-0.0163339 -0.00268879 0) (-0.0171709 0.00182363 0) (-0.0173026 0.00549739 0) (-0.016319 0.00880407 0) (-0.0145399 0.0126804 0) (-0.0125677 0.0170017 0) (-0.0104261 0.0213747 0) (-0.00803825 0.0249438 0) (-0.00554117 0.02746 0) (-0.00310026 0.0288935 0) (-0.000910972 0.0293981 0) (0.00105326 0.0294663 0) (0.0029185 0.0290696 0) (0.00468726 0.0281782 0) (0.00636407 0.0266829 0) (0.00778309 0.0240895 0) (0.00823807 0.0234333 0) (0.00886117 0.0224019 0) (0.0101078 0.0238517 0) (0.0102963 0.0216945 0) (0.00966134 0.019693 0) (0.00900978 0.0179378 0) (0.00839753 0.0163251 0) (0.00775454 0.0148418 0) (0.00705761 0.0134854 0) (0.00630932 0.0122376 0) (0.00552003 0.0110781 0) (0.00470572 0.0099852 0) (0.00388606 0.00893574 0) (0.00308311 0.00790518 0) (0.00232054 0.00686929 0) (0.00162321 0.00580637 0) (0.00101679 0.0047012 0) (0.000527592 0.0035477 0) (0.000184057 0.002327 0) (1.40745e-05 0.000917405 0) (0.00809034 -0.0190427 0) (0.00758165 -0.0209971 0) (0.0066784 -0.0227354 0) (0.00538721 -0.0241482 0) (0.00374561 -0.0251319 0) (0.00181753 -0.0255995 0) (-0.00031525 -0.0254847 0) (-0.00256174 -0.0247403 0) (-0.0048246 -0.0233382 0) (-0.00699921 -0.0212679 0) (-0.00897846 -0.0185325 0) (-0.0106591 -0.0151466 0) (-0.0119595 -0.011137 0) (-0.0129026 -0.00656241 0) (-0.0137401 -0.00163281 0) (-0.0146485 0.00253385 0) (-0.0151549 0.00527475 0) (-0.0143978 0.00734574 0) (-0.0127362 0.0108638 0) (-0.0110696 0.0151622 0) (-0.00939003 0.0193285 0) (-0.00749385 0.0226935 0) (-0.00540871 0.0251614 0) (-0.00328081 0.026673 0) (-0.00125089 0.0273903 0) (0.000644534 0.0275694 0) (0.00244729 0.0272611 0) (0.00415052 0.0264652 0) (0.00570015 0.0251362 0) (0.00672466 0.0232681 0) (0.00727457 0.0230405 0) (0.00707945 0.0220108 0) (0.00722923 0.0229424 0) (0.00806767 0.0217712 0) (0.00827483 0.0201102 0) (0.00804856 0.018453 0) (0.00762274 0.016906 0) (0.00708437 0.0154842 0) (0.00646478 0.0141814 0) (0.00578511 0.0129777 0) (0.00506325 0.0118489 0) (0.00431697 0.0107698 0) (0.00356522 0.00971446 0) (0.00282839 0.00865631 0) (0.00212821 0.00756959 0) (0.00148768 0.00643141 0) (0.000930642 0.00522592 0) (0.000481623 0.00394742 0) (0.000167047 0.00257901 0) (1.2419e-05 0.00100419 0) (0.00681764 -0.0186728 0) (0.0062644 -0.0202784 0) (0.00539013 -0.0216665 0) (0.00420478 -0.0227518 0) (0.00274001 -0.0234539 0) (0.0010477 -0.0237045 0) (-0.000804699 -0.023451 0) (-0.00274023 -0.0226568 0) (-0.00467488 -0.0213014 0) (-0.00651491 -0.01938 0) (-0.00815835 -0.0169008 0) (-0.00949634 -0.0138761 0) (-0.0104145 -0.0102945 0) (-0.0107667 -0.00613924 0) (-0.0105933 -0.00128921 0) (-0.0108953 0.00345515 0) (-0.0118453 0.0057298 0) (-0.0116599 0.0060302 0) (-0.0104651 0.00942263 0) (-0.00943541 0.013855 0) (-0.00837046 0.0178666 0) (-0.00698866 0.0209369 0) (-0.00527641 0.0232298 0) (-0.00341105 0.0247074 0) (-0.00156054 0.0255095 0) (0.000198938 0.0257851 0) (0.00184245 0.0255938 0) (0.00331764 0.024968 0) (0.00451259 0.0239623 0) (0.00516815 0.0228159 0) (0.00550561 0.022565 0) (0.00576528 0.022305 0) (0.00621119 0.022165 0) (0.00680011 0.0212846 0) (0.00706311 0.0200501 0) (0.00702685 0.0186757 0) (0.00676907 0.017308 0) (0.00635762 0.0160064 0) (0.00583885 0.0147861 0) (0.00524555 0.013639 0) (0.0046025 0.0125461 0) (0.00393076 0.0114834 0) (0.00325019 0.0104247 0) (0.0025807 0.00934266 0) (0.00194289 0.0082103 0) (0.00135829 0.00700371 0) (0.000849207 0.00570645 0) (0.000438659 0.00431314 0) (0.000151376 0.00280885 0) (1.09619e-05 0.00108271 0) (0.00566778 -0.0182524 0) (0.00510989 -0.0195713 0) (0.00429099 -0.0206761 0) (0.00322233 -0.021499 0) (0.00193029 -0.0219768 0) (0.000456349 -0.0220557 0) (-0.00114521 -0.0216946 0) (-0.00281178 -0.0208668 0) (-0.00447558 -0.0195596 0) (-0.00606175 -0.0177751 0) (-0.00749001 -0.0155285 0) (-0.00868302 -0.0128379 0) (-0.00956028 -0.00969206 0) (-0.0100192 -0.00610035 0) (-0.00981467 -0.00183162 0) (-0.00918172 0.00351818 0) (-0.00858909 0.005831 0) (-0.00846324 0.0055767 0) (-0.00872473 0.00902176 0) (-0.00860248 0.0132936 0) (-0.00791 0.0169313 0) (-0.00673758 0.0195513 0) (-0.00521443 0.0215686 0) (-0.00353773 0.0229538 0) (-0.00185037 0.0237917 0) (-0.000245923 0.0241689 0) (0.00121956 0.0241355 0) (0.00248388 0.023747 0) (0.00346251 0.023105 0) (0.00405412 0.0224342 0) (0.00444503 0.0221674 0) (0.0048341 0.02195 0) (0.00530362 0.0216122 0) (0.00578027 0.0208827 0) (0.00604975 0.0198963 0) (0.00609557 0.0187601 0) (0.00594447 0.0175801 0) (0.00563819 0.0164164 0) (0.00521605 0.0152941 0) (0.00471104 0.0142142 0) (0.00414985 0.0131638 0) (0.00355498 0.0121224 0) (0.00294675 0.0110648 0) (0.00234467 0.00996391 0) (0.00176836 0.00879212 0) (0.00123806 0.00752473 0) (0.000774734 0.00614473 0) (0.000400112 0.00464696 0) (0.000137664 0.00301832 0) (9.77929e-06 0.00115376 0) (0.00463834 -0.0178187 0) (0.00410534 -0.0189034 0) (0.0033609 -0.0197792 0) (0.00241616 -0.0203915 0) (0.00129259 -0.0206896 0) (2.23063e-05 -0.0206304 0) (-0.00135266 -0.0201818 0) (-0.00278386 -0.0193239 0) (-0.00422037 -0.0180491 0) (-0.00560863 -0.0163624 0) (-0.00689391 -0.0142796 0) (-0.0080252 -0.0118176 0) (-0.0089481 -0.00897968 0) (-0.00960788 -0.00578148 0) (-0.0099654 -0.00208358 0) (-0.00977806 0.00287459 0) (-0.00954168 0.00557754 0) (-0.0103453 0.00641856 0) (-0.0110828 0.00918075 0) (-0.0102386 0.0123958 0) (-0.00853621 0.0156853 0) (-0.00686881 0.0181044 0) (-0.00526758 0.0199835 0) (-0.00366045 0.0213241 0) (-0.00209495 0.0222162 0) (-0.000634757 0.0227133 0) (0.000672695 0.0228557 0) (0.00177928 0.0227049 0) (0.00263668 0.0223578 0) (0.00321981 0.0219696 0) (0.00366029 0.0217338 0) (0.00408908 0.0215047 0) (0.00453222 0.0211488 0) (0.00493438 0.0205358 0) (0.00519067 0.0197255 0) (0.00527452 0.0187782 0) (0.00519085 0.0177651 0) (0.00496458 0.0167352 0) (0.00462557 0.0157135 0) (0.00420237 0.0147054 0) (0.00372 0.0137024 0) (0.00320029 0.0126867 0) (0.00266293 0.0116353 0) (0.00212655 0.0105212 0) (0.00160959 0.00931683 0) (0.00113094 0.00799688 0) (0.000710171 0.00654368 0) (0.0003679 0.00495195 0) (0.000126812 0.00321002 0) (8.99725e-06 0.00121855 0) (0.00372075 -0.0174004 0) (0.00323501 -0.0182954 0) (0.00257953 -0.018987 0) (0.00176438 -0.0194304 0) (0.000806618 -0.0195838 0) (-0.000269785 -0.0194119 0) (-0.00143386 -0.0188884 0) (-0.00264993 -0.0179976 0) (-0.00388175 -0.0167342 0) (-0.0050934 -0.0151023 0) (-0.00624966 -0.0131136 0) (-0.00732029 -0.0107793 0) (-0.00828709 -0.00809943 0) (-0.00916763 -0.00505527 0) (-0.00999094 -0.00150443 0) (-0.0104299 0.00282642 0) (-0.0105166 0.00583024 0) (-0.0108519 0.00731214 0) (-0.0109574 0.00890527 0) (-0.0100898 0.0108503 0) (-0.00849781 0.0138642 0) (-0.00676027 0.0164175 0) (-0.00515269 0.0183735 0) (-0.00363808 0.0197778 0) (-0.00221027 0.0207661 0) (-0.00089868 0.0214027 0) (0.000261244 0.0217191 0) (0.00124214 0.0217778 0) (0.00202179 0.0216577 0) (0.0026031 0.021462 0) (0.00306475 0.0212837 0) (0.00348968 0.0210708 0) (0.00389515 0.0207437 0) (0.00424223 0.0202299 0) (0.00447469 0.0195564 0) (0.00457052 0.018761 0) (0.00452752 0.0178908 0) (0.00435986 0.0169823 0) (0.00408888 0.0160567 0) (0.00373745 0.0151201 0) (0.00332718 0.0141661 0) (0.00287781 0.0131796 0) (0.00240745 0.0121387 0) (0.00193328 0.0110172 0) (0.0014722 0.0097875 0) (0.00104145 0.00842369 0) (0.000659046 0.00690726 0) (0.000344463 0.00523225 0) (0.000120087 0.00338754 0) (8.82799e-06 0.00127886 0) (0.00290298 -0.0170196 0) (0.00248169 -0.0177631 0) (0.00192678 -0.0183085 0) (0.00124663 -0.0186175 0) (0.000454413 -0.0186548 0) (-0.000432683 -0.0183905 0) (-0.001393 -0.0178018 0) (-0.00240151 -0.0168751 0) (-0.00343325 -0.0156059 0) (-0.00446396 -0.0139976 0) (-0.00546825 -0.012059 0) (-0.00641879 -0.00979836 0) (-0.00728544 -0.00721111 0) (-0.00802899 -0.00426352 0) (-0.00856543 -0.000878667 0) (-0.00859599 0.00283397 0) (-0.00814853 0.00568159 0) (-0.00784969 0.00740786 0) (-0.00785806 0.00867048 0) (-0.00776809 0.0100286 0) (-0.0071336 0.0124587 0) (-0.00596472 0.0149133 0) (-0.00465311 0.0169172 0) (-0.00336089 0.018398 0) (-0.00213558 0.0194826 0) (-0.00100481 0.0202478 0) (4.63429e-06 0.0207158 0) (0.000870306 0.0209447 0) (0.00158007 0.0209979 0) (0.00214273 0.0209459 0) (0.00260369 0.0208415 0) (0.00301046 0.0206682 0) (0.00337594 0.0203865 0) (0.00367847 0.0199593 0) (0.00388599 0.0193977 0) (0.00398213 0.0187264 0) (0.00396344 0.0179765 0) (0.00383819 0.0171743 0) (0.00362138 0.0163363 0) (0.00333062 0.0154673 0) (0.00298376 0.0145619 0) (0.00259775 0.0136062 0) (0.00218859 0.0125794 0) (0.00177156 0.0114558 0) (0.00136168 0.010208 0) (0.000974196 0.00880926 0) (0.000625185 0.00724003 0) (0.000332735 0.00549281 0) (0.000119231 0.0035555 0) (9.58226e-06 0.00133719 0) (0.00217043 -0.0166939 0) (0.00182701 -0.0173199 0) (0.00138236 -0.0177522 0) (0.000842877 -0.0179569 0) (0.00021828 -0.0179031 0) (-0.000479622 -0.0175642 0) (-0.00123674 -0.0169195 0) (-0.00203688 -0.0159564 0) (-0.00286402 -0.0146709 0) (-0.00370282 -0.0130674 0) (-0.00453522 -0.0111586 0) (-0.00533414 -0.00896277 0) (-0.00605216 -0.00649435 0) (-0.00660197 -0.00374582 0) (-0.00689126 -0.000674789 0) (-0.00679811 0.00252362 0) (-0.00640238 0.00518961 0) (-0.00602063 0.00714085 0) (-0.00579366 0.00859671 0) (-0.0056941 0.00990875 0) (-0.00545221 0.0118061 0) (-0.00481844 0.0139123 0) (-0.00390929 0.0157917 0) (-0.00290229 0.0172741 0) (-0.00190863 0.0184163 0) (-0.000969279 0.0192675 0) (-0.000110143 0.0198483 0) (0.000644627 0.020206 0) (0.00128385 0.0203895 0) (0.00181256 0.0204486 0) (0.00225523 0.0204186 0) (0.00263751 0.0202985 0) (0.00296729 0.0200714 0) (0.00323331 0.019721 0) (0.00341744 0.0192531 0) (0.00350862 0.0186841 0) (0.00350408 0.0180349 0) (0.00340905 0.0173242 0) (0.0032342 0.0165636 0) (0.00299298 0.0157565 0) (0.00269969 0.0148974 0) (0.00236852 0.0139727 0) (0.00201317 0.0129624 0) (0.00164683 0.0118415 0) (0.00128243 0.0105823 0) (0.000932977 0.0091576 0) (0.000612147 0.00754647 0) (0.000335987 0.00573891 0) (0.000126661 0.00371941 0) (1.16124e-05 0.00139686 0) (0.00150584 -0.0164344 0) (0.001251 -0.0169746 0) (0.000924995 -0.0173244 0) (0.000532141 -0.0174526 0) (7.91415e-05 -0.017331 0) (-0.000426413 -0.0169351 0) (-0.000976313 -0.0162451 0) (-0.00156156 -0.0152482 0) (-0.0021739 -0.0139403 0) (-0.00280674 -0.0123273 0) (-0.0034529 -0.0104283 0) (-0.00409595 -0.00827978 0) (-0.00468925 -0.0059317 0) (-0.00510888 -0.00341684 0) (-0.00529401 -0.000627314 0) (-0.00522685 0.00228402 0) (-0.00499139 0.00482618 0) (-0.00471645 0.00682685 0) (-0.00450286 0.00840746 0) (-0.00438203 0.00983137 0) (-0.00421176 0.0114928 0) (-0.00380011 0.0132914 0) (-0.00316128 0.0149781 0) (-0.00240415 0.016403 0) (-0.0016171 0.0175548 0) (-0.000844821 0.0184495 0) (-0.000119191 0.0191043 0) (0.000535986 0.0195534 0) (0.0011084 0.0198332 0) (0.00159742 0.0199797 0) (0.00201372 0.0200191 0) (0.00236944 0.0199572 0) (0.00266833 0.0197892 0) (0.00290434 0.0195095 0) (0.00306751 0.0191226 0) (0.00315118 0.0186401 0) (0.00315384 0.0180763 0) (0.00307931 0.0174442 0) (0.00293549 0.016752 0) (0.00273268 0.0160011 0) (0.00248231 0.0151853 0) (0.00219607 0.0142913 0) (0.00188555 0.0132994 0) (0.001562 0.0121849 0) (0.00123635 0.0109202 0) (0.000919349 0.00947786 0) (0.000621964 0.00783567 0) (0.000357211 0.00598044 0) (0.000145746 0.00389035 0) (1.53946e-05 0.001466 0) (0.000888388 -0.0162431 0) (0.000730394 -0.0167282 0) (0.000530136 -0.0170256 0) (0.000289991 -0.0171055 0) (1.37556e-05 -0.016941 0) (-0.000294357 -0.0165083 0) (-0.000630261 -0.0157879 0) (-0.000990205 -0.0147656 0) (-0.0013721 -0.0134356 0) (-0.00177747 -0.0118025 0) (-0.00221312 -0.00988766 0) (-0.00268777 -0.0077401 0) (-0.00318887 -0.00544933 0) (-0.00356705 -0.00312581 0) (-0.00386282 -0.000520034 0) (-0.00393116 0.00225304 0) (-0.0039159 0.00467403 0) (-0.00381349 0.00663856 0) (-0.00368809 0.0082456 0) (-0.00357195 0.0097005 0) (-0.00339791 0.0112264 0) (-0.00306569 0.0128148 0) (-0.00257284 0.0143386 0) (-0.00197728 0.0156854 0) (-0.00133686 0.0168136 0) (-0.000689772 0.0177235 0) (-6.58444e-05 0.0184243 0) (0.000512438 0.0189386 0) (0.0010314 0.0192932 0) (0.00148559 0.0195142 0) (0.00187678 0.0196217 0) (0.00220874 0.0196236 0) (0.00248226 0.0195206 0) (0.00269394 0.019312 0) (0.00283876 0.019002 0) (0.00291347 0.018599 0) (0.00291795 0.0181131 0) (0.0028555 0.0175533 0) (0.00273228 0.0169251 0) (0.00255635 0.0162279 0) (0.00233694 0.015455 0) (0.00208382 0.0145927 0) (0.00180691 0.0136213 0) (0.00151598 0.0125165 0) (0.0012205 0.011251 0) (0.000929469 0.0097975 0) (0.000651484 0.00813308 0) (0.000396103 0.00624195 0) (0.000179849 0.00409313 0) (2.42115e-05 0.00156398 0) (0.000290516 -0.0161772 0) (0.00023538 -0.0166305 0) (0.00016614 -0.0168967 0) (8.3628e-05 -0.016947 0) (-1.07825e-05 -0.016755 0) (-0.000115716 -0.0162971 0) (-0.000230074 -0.0155533 0) (-0.000353178 -0.0145081 0) (-0.000485744 -0.0131518 0) (-0.000631948 -0.0114826 0) (-0.000803776 -0.00951029 0) (-0.00102652 -0.00726687 0) (-0.00134654 -0.00484658 0) (-0.00167089 -0.00250863 0) (-0.00273006 -6.90244e-05 0) (-0.00307926 0.00257483 0) (-0.00331347 0.0047775 0) (-0.00337375 0.00659646 0) (-0.00332352 0.00812177 0) (-0.00320096 0.00950868 0) (-0.00299446 0.0109088 0) (-0.00267026 0.0123411 0) (-0.00223228 0.0137355 0) (-0.00171232 0.0150001 0) (-0.00114607 0.0160905 0) (-0.000565027 0.0169991 0) (4.61689e-06 0.0177292 0) (0.000541437 0.0182949 0) (0.00103075 0.0187145 0) (0.00146425 0.0190068 0) (0.00183895 0.0191865 0) (0.0021544 0.0192608 0) (0.00240998 0.0192319 0) (0.00260398 0.0191004 0) (0.00273441 0.0188702 0) (0.00280037 0.0185474 0) (0.00280287 0.0181394 0) (0.00274501 0.0176525 0) (0.00263185 0.0170896 0) (0.00247003 0.0164485 0) (0.00226739 0.0157212 0) (0.00203254 0.0148934 0) (0.00177444 0.0139452 0) (0.00150211 0.0128524 0) (0.00122433 0.0115881 0) (0.000949445 0.0101256 0) (0.000685142 0.00844241 0) (0.000439083 0.00652128 0) (0.000222259 0.00432422 0) (4.90114e-05 0.00169876 0) ) ; boundaryField { leftWall { type fixedValue; value uniform (0 0 0); } rightWall { type fixedValue; value uniform (0 0 0); } lowerWall { type fixedValue; value uniform (0 0 0); } atmosphere { type pressureInletOutletVelocity; value nonuniform List<vector> 100 ( (0 -0.000455743 0) (0 -0.001249 0) (0 -0.00199548 0) (0 -0.00268444 0) (0 -0.00330164 0) (0 -0.00384122 0) (0 -0.0043037 0) (0 -0.00469334 0) (0 -0.005016 0) (0 -0.00527745 0) (0 -0.00548264 0) (0 -0.0056355 0) (0 -0.00573917 0) (0 -0.00579635 0) (0 -0.00580956 0) (0 -0.00578151 0) (0 -0.00571514 0) (0 -0.00561385 0) (0 -0.00548151 0) (0 -0.00532253 0) (0 -0.00514193 0) (0 -0.00494536 0) (0 -0.00473906 0) (0 -0.00452982 0) (0 -0.00432487 0) (0 -0.00413179 0) (0 -0.00395847 0) (0 -0.00381301 0) (0 -0.0037036 0) (0 -0.00363835 0) (0 -0.00362524 0) (0 -0.00367193 0) (0 -0.00378544 0) (0 -0.0039721 0) (0 -0.00423737 0) (0 -0.00458553 0) (0 -0.00501913 0) (0 -0.00553897 0) (0 -0.00614388 0) (0 -0.00683056 0) (0 -0.00759305 0) (0 -0.00842278 0) (0 -0.00930863 0) (0 -0.0102367 0) (0 -0.0111904 0) (0 -0.01215 0) (0 -0.0130934 0) (0 -0.0139957 0) (0 -0.0148297 0) (0 -0.0155668 0) (0 -0.0161772 0) (0 -0.0166305 0) (0 -0.0168967 0) (0 -0.016947 0) (0 -0.016755 0) (0 -0.0162971 0) (0 -0.0155533 0) (0 -0.0145081 0) (0 -0.0131518 0) (0 -0.0114826 0) (0 -0.00951029 0) (0 -0.00726687 0) (0 -0.00484658 0) (0 -0.00250863 0) (-0.00273006 -6.90244e-05 0) (-0.00307926 0.00257483 0) (-0.00331347 0.0047775 0) (-0.00337375 0.00659646 0) (-0.00332352 0.00812177 0) (-0.00320096 0.00950868 0) (-0.00299446 0.0109088 0) (-0.00267026 0.0123411 0) (-0.00223228 0.0137355 0) (-0.00171232 0.0150001 0) (-0.00114607 0.0160905 0) (-0.000565027 0.0169991 0) (4.61689e-06 0.0177292 0) (0.000541437 0.0182949 0) (0.00103075 0.0187145 0) (0.00146425 0.0190068 0) (0.00183895 0.0191865 0) (0.0021544 0.0192608 0) (0.00240998 0.0192319 0) (0.00260398 0.0191004 0) (0.00273441 0.0188702 0) (0.00280037 0.0185474 0) (0.00280287 0.0181394 0) (0.00274501 0.0176525 0) (0.00263185 0.0170896 0) (0.00247003 0.0164485 0) (0.00226739 0.0157212 0) (0.00203254 0.0148934 0) (0.00177444 0.0139452 0) (0.00150211 0.0128524 0) (0.00122433 0.0115881 0) (0.000949445 0.0101256 0) (0.000685142 0.00844241 0) (0.000439083 0.00652128 0) (0.000222259 0.00432422 0) (4.90114e-05 0.00169876 0) ) ; } defaultFaces { type empty; } } // ************************************************************************* //
[ "stig.m.nilsen@gmail.com" ]
stig.m.nilsen@gmail.com
6ff9b23fb1bde64bafb54f64938032a1f55e82e1
e983940a7ddf741a7d68f5d0fa189ac50310a89a
/examples/RadioHead69_RawDemo_TX/RadioHead69_RawDemo_TX.ino
74023a3ac59aa96fac5af89be6942a930725e2a3
[]
no_license
KaramokoS/T-Sensor
37bc9880830d0d874948b7418761aa5e24b20e1b
f01cd5b327241f5a82a55166fbd6f7f25e4af20a
refs/heads/master
2020-06-18T08:22:22.587839
2019-07-12T20:36:09
2019-07-12T20:36:09
196,230,795
0
0
null
null
null
null
UTF-8
C++
false
false
4,382
ino
// rf69 demo tx rx.pde // -*- mode: C++ -*- // Example sketch showing how to create a simple messageing client // with the RH_RF69 class. RH_RF69 class does not provide for addressing or // reliability, so you should only use RH_RF69 if you do not need the higher // level messaging abilities. // It is designed to work with the other example rf69_server. // Demonstrates the use of AES encryption, setting the frequency and modem // configuration #include <SPI.h> #include <RH_RF69.h> /************ Radio Setup ***************/ // Change to 434.0 or other frequency, must match RX's freq! #define RF69_FREQ 433 #if defined (__AVR_ATmega32U4__) // Feather 32u4 w/Radio #define RFM69_CS 8 #define RFM69_INT 7 #define RFM69_RST 4 #define LED 13 #endif #if defined(ADAFRUIT_FEATHER_M0) // Feather M0 w/Radio #define RFM69_CS 8 #define RFM69_INT 3 #define RFM69_RST 4 #define LED 13 #endif #if defined (__AVR_ATmega328P__) // Feather 328P w/wing #define RFM69_INT 3 // #define RFM69_CS 4 // #define RFM69_RST 2 // "A" #define LED 13 #endif #if defined(ESP8266) // ESP8266 feather w/wing #define RFM69_CS 2 // "E" #define RFM69_IRQ 15 // "B" #define RFM69_RST 16 // "D" #define LED 0 #endif #if defined(ESP32) // ESP32 feather w/wing #define RFM69_RST 13 // same as LED #define RFM69_CS 33 // "B" #define RFM69_INT 27 // "A" #define LED 13 #endif /* Teensy 3.x w/wing #define RFM69_RST 9 // "A" #define RFM69_CS 10 // "B" #define RFM69_IRQ 4 // "C" #define RFM69_IRQN digitalPinToInterrupt(RFM69_IRQ ) */ /* WICED Feather w/wing #define RFM69_RST PA4 // "A" #define RFM69_CS PB4 // "B" #define RFM69_IRQ PA15 // "C" #define RFM69_IRQN RFM69_IRQ */ // Singleton instance of the radio driver RH_RF69 rf69(RFM69_CS, RFM69_INT); int16_t packetnum = 0; // packet counter, we increment per xmission void setup() { Serial.begin(115200); //while (!Serial) { delay(1); } // wait until serial console is open, remove if not tethered to computer pinMode(LED, OUTPUT); pinMode(RFM69_RST, OUTPUT); digitalWrite(RFM69_RST, LOW); Serial.println("Feather RFM69 TX Test!"); Serial.println(); // manual reset digitalWrite(RFM69_RST, HIGH); delay(10); digitalWrite(RFM69_RST, LOW); delay(10); if (!rf69.init()) { Serial.println("RFM69 radio init failed"); while (1); } Serial.println("RFM69 radio init OK!"); // Defaults after init are 434.0MHz, modulation GFSK_Rb250Fd250, +13dbM (for low power module) // No encryption if (!rf69.setFrequency(RF69_FREQ)) { Serial.println("setFrequency failed"); } // If you are using a high power RF69 eg RFM69HW, you *must* set a Tx power with the // ishighpowermodule flag set like this: rf69.setTxPower(20, true); // range from 14-20 for power, 2nd arg must be true for 69HCW // The encryption key has to be the same as the one in the server uint8_t key[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}; rf69.setEncryptionKey(key); pinMode(LED, OUTPUT); Serial.print("RFM69 radio @"); Serial.print((int)RF69_FREQ); Serial.println(" MHz"); } void loop() { delay(1000); // Wait 1 second between transmits, could also 'sleep' here! char radiopacket[20] = "Bonjour! #"; itoa(packetnum++, radiopacket+13, 10); Serial.print("Sending "); Serial.println(radiopacket); // Send a message! rf69.send((uint8_t *)radiopacket, strlen(radiopacket)); rf69.waitPacketSent(); // Now wait for a reply uint8_t buf[RH_RF69_MAX_MESSAGE_LEN]; uint8_t len = sizeof(buf); if (rf69.waitAvailableTimeout(500)) { // Should be a reply message for us now if (rf69.recv(buf, &len)) { Serial.print("Got a reply: "); Serial.println((char*)buf); Blink(LED, 50, 3); //blink LED 3 times, 50ms between blinks } else { Serial.println("Receive failed"); } } else { Serial.println("No reply, is another RFM69 listening?"); } } void Blink(byte PIN, byte DELAY_MS, byte loops) { for (byte i=0; i<loops; i++) { digitalWrite(PIN,HIGH); delay(DELAY_MS); digitalWrite(PIN,LOW); delay(DELAY_MS); } }
[ "samss.kara@gmail.com" ]
samss.kara@gmail.com
362884b2baf5aa6c162e9e330a397655b62a9e3b
d32f4e33f8a0416092ab139f9a4ad8ad471be243
/Source/CEDV_Aero_fighter/Observer.cpp
c0a1406b453fce9edc1fd4cebde610cab450646b
[]
no_license
rickmuca/CEDV_Aero_fighter
491e4a4fc1e79f07d4311ba30ef094f0a8e15c37
5fe9af69517e6a2d42d02e357fa7d6fc249838b2
refs/heads/master
2020-03-15T22:02:49.820543
2018-05-25T13:43:17
2018-05-25T13:43:17
132,366,068
2
0
null
2018-05-13T21:02:50
2018-05-06T18:41:13
C++
UTF-8
C++
false
false
193
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Observer.h" // Add default functionality here for any IObserver functions that are not pure virtual.
[ "jm.munoz.maz@gmail.com" ]
jm.munoz.maz@gmail.com
0d73d83371361af4df51f79e3955a6db3276bcd3
63b15515c81558e856ed47e2b30325d33274962e
/Matrix/pzsfulmat.h
6ed8489707a64916903823bcfdde845cd1e1ea6e
[]
no_license
diogocecilio/neopz-master
eb14d4b6087e9655763440934d67b419f781d1a0
7fb9346f00afa883ccf4d07e3ac0af466dfadce1
refs/heads/master
2022-04-04T21:44:17.897614
2019-10-25T20:34:47
2019-10-25T20:34:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,406
h
/** * @file * @brief Contains TPZSFMatrix class which implements a symmetric full matrix. */ #ifndef _TSFULMATHH_ #define _TSFULMATHH_ #include "pzmatrix.h" #include "pzfmatrix.h" #ifdef OOPARLIB #include "pzsaveable.h" #include "pzmatdefs.h" #endif /** * @brief Implements a symmetric full matrix. \ref matrix "Matrix" * @ingroup matrix */ template<class TVar> class TPZSFMatrix : public TPZMatrix<TVar> { public: TPZSFMatrix () : TPZMatrix<TVar>( 0,0 ) { fElem = NULL; } TPZSFMatrix (const long dim ); TPZSFMatrix (const TPZSFMatrix<TVar> & ); // Usa o maior bloco quadrado possivel, comecado em (0,0). // E inicializa com a parte triangular inferior do bloco. TPZSFMatrix (const TPZMatrix<TVar> & ); CLONEDEF(TPZSFMatrix) ~TPZSFMatrix(); /** @brief Checks if the current matrix is symmetric */ virtual int IsSimetric() const { return 1; } friend class TPZSFMatrix<float>; friend class TPZSFMatrix<double>; /// copy the values from a matrix with a different precision template<class TVar2> void CopyFrom(TPZSFMatrix<TVar2> &orig) { Resize(orig.Rows(), orig.Cols()); TPZMatrix<TVar>::CopyFrom(orig); long nel = (this->Rows()*(this->Rows()+1))/2; for (long el=0; el<nel; el++) { fElem[el] = orig.fElem[el]; } } int PutVal(const long row,const long col,const TVar &value ); const TVar &GetVal(const long row,const long col ) const; /** * @name Operators with Full simmetric matrices. * @{ */ TPZSFMatrix &operator= (const TPZSFMatrix<TVar> &A ); TPZSFMatrix operator+ (const TPZSFMatrix<TVar> &A ) const; TPZSFMatrix operator- (const TPZSFMatrix<TVar> &A ) const; TPZSFMatrix &operator+=(const TPZSFMatrix<TVar> &A ); TPZSFMatrix &operator-=(const TPZSFMatrix<TVar> &A ); /** @} */ /** * @name Operators with generic matrices. * @{ */ TPZSFMatrix &operator= (const TPZMatrix<TVar> &A ); TPZSFMatrix operator+ (const TPZMatrix<TVar> &A ) const; TPZSFMatrix operator- (const TPZMatrix<TVar> &A ) const; TPZSFMatrix &operator+=(const TPZMatrix<TVar> &A ); TPZSFMatrix &operator-=(const TPZMatrix<TVar> &A ); /** @} */ /** * @name Operators with numeric values. * @{ */ TPZSFMatrix &operator= (const TVar val ); TPZSFMatrix operator+ (const TVar val ) const; TPZSFMatrix operator- (const TVar val ) const { return operator+( -val ); } TPZSFMatrix operator* (const TVar val ) const; TPZSFMatrix &operator+=(const TVar val ); TPZSFMatrix &operator-=(const TVar val ) { return operator+=( -val ); } TPZSFMatrix &operator*=(const TVar val ); /** @} */ TPZSFMatrix operator-() const { return operator*( -1.0 ); } /** @brief Resize the array but keeps its entirety. */ int Resize(const long newDim, const long ); /** @brief Resize the array and resets ist entirety. */ int Redim(const long newRows ,const long); int Redim(const long newDim) {return Redim(newDim,newDim);} /** @brief Resets all elements. */ int Zero(); /*** * @name To solve linear systems * @{ */ virtual int Decompose_Cholesky(); virtual int Decompose_LDLt(); virtual int Decompose_Cholesky(std::list<long> &singular); virtual int Decompose_LDLt(std::list<long> &singular); virtual int Subst_Forward ( TPZFMatrix<TVar> *B ) const; virtual int Subst_Backward ( TPZFMatrix<TVar> *B ) const; virtual int Subst_LForward ( TPZFMatrix<TVar> *B ) const; virtual int Subst_LBackward( TPZFMatrix<TVar> *B ) const; virtual int Subst_Diag ( TPZFMatrix<TVar> *B ) const; /** @} */ #ifdef OOPARLIB virtual long GetClassID() const { return TSFMATRIX_ID; } virtual int Unpack( TReceiveStorage *buf ); static TSaveable *Restore(TReceiveStorage *buf); virtual int Pack( TSendStorage *buf ) const; virtual std::string ClassName() const { return( "TPZSFMatrix"); } virtual int DerivedFrom(const long Classid) const; virtual int DerivedFrom(const char *classname) const; #endif private: long Size() const { return (this->Dim() * (this->Dim()+1)) >> 1; } int Clear(); TVar *fElem; }; /**************/ /*** PutVal ***/ template<class TVar> inline int TPZSFMatrix<TVar> ::PutVal(const long row,const long col,const TVar &value ) { long locrow = row, loccol = col; if ( locrow < loccol ) this->Swap( &locrow, &loccol ); this->fDecomposed = 0; this->fElem[ ((locrow*(locrow+1)) >> 1) + loccol ] = value; return( 1 ); } /**************/ /*** GetVal ***/ template<class TVar> inline const TVar & TPZSFMatrix<TVar> ::GetVal(const long row,const long col ) const { long locrow(row),loccol(col); if ( locrow < loccol ) this->Swap( &locrow, &loccol ); return( fElem[ ((locrow*(locrow+1)) >> 1) + loccol ] ); } /**************************/ /*** @name Operadores Globais ***/ /** @{ */ /** @brief Increments value for all entries of the A matrix */ template<class TVar> inline TPZSFMatrix<TVar> operator+( const TVar value, const TPZSFMatrix<TVar> &A ) { return( A + value ); } /** @brief Decrements value for all entries of the A matrix */ template<class TVar> inline TPZSFMatrix<TVar> operator-( const TVar value,const TPZSFMatrix<TVar> &A ) { return( A - value ); } /** @brief Implements the scalar product value*A */ template<class TVar> inline TPZSFMatrix<TVar> operator*( const TVar value, const TPZSFMatrix<TVar> &A ) { return( A * value ); } /** @} */ #endif
[ "cecilio.diogo@gmail.com" ]
cecilio.diogo@gmail.com
a6d41c8c8d1fae36c5c4504dc01311f183f2b213
9ddc81b9f8285b3a384b13fbbbf292f4a473e638
/src/primitives/transaction.cpp
ac0203ad2a84202cd1fa37ac90786556fdcbca1e
[ "MIT" ]
permissive
Al3xxx19/jiyo
80f15e659e80a928823be6e7c6e1b9a16920b78c
363ae3a1f1154c64ddf066a5095973b3cd9b1268
refs/heads/master
2020-04-25T17:34:44.187357
2019-02-27T17:34:37
2019-02-27T17:34:37
172,953,658
0
0
null
null
null
null
UTF-8
C++
false
false
7,870
cpp
// Copyright (c) 2009-2009 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2018-2018 The Jiyo developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "primitives/block.h" #include "primitives/transaction.h" #include "chain.h" #include "hash.h" #include "main.h" #include "tinyformat.h" #include "utilstrencodings.h" #include "transaction.h" #include <boost/foreach.hpp> extern bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock, bool fAllowSlow); std::string COutPoint::ToString() const { return strprintf("COutPoint(%s, %u)", hash.ToString()/*.substr(0,10)*/, n); } std::string COutPoint::ToStringShort() const { return strprintf("%s-%u", hash.ToString().substr(0,64), n); } uint256 COutPoint::GetHash() { return Hash(BEGIN(hash), END(hash), BEGIN(n), END(n)); } CTxIn::CTxIn(COutPoint prevoutIn, CScript scriptSigIn, uint32_t nSequenceIn) { prevout = prevoutIn; scriptSig = scriptSigIn; nSequence = nSequenceIn; } CTxIn::CTxIn(uint256 hashPrevTx, uint32_t nOut, CScript scriptSigIn, uint32_t nSequenceIn) { prevout = COutPoint(hashPrevTx, nOut); scriptSig = scriptSigIn; nSequence = nSequenceIn; } std::string CTxIn::ToString() const { std::string str; str += "CTxIn("; str += prevout.ToString(); if (prevout.IsNull()) if(scriptSig.IsZerocoinSpend()) str += strprintf(", zerocoinspend %s...", HexStr(scriptSig).substr(0, 25)); else str += strprintf(", coinbase %s", HexStr(scriptSig)); else str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24)); if (nSequence != std::numeric_limits<unsigned int>::max()) str += strprintf(", nSequence=%u", nSequence); str += ")"; return str; } CTxOut::CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn) { nValue = nValueIn; scriptPubKey = scriptPubKeyIn; nRounds = -10; } bool COutPoint::IsMasternodeReward(const CTransaction* tx) const { if(!tx->IsCoinStake()) return false; return (n == tx->vout.size() - 1) && (tx->vout[1].scriptPubKey != tx->vout[n].scriptPubKey); } uint256 CTxOut::GetHash() const { return SerializeHash(*this); } std::string CTxOut::ToString() const { return strprintf("CTxOut(nValue=%d.%08d, scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30)); } CMutableTransaction::CMutableTransaction() : nVersion(CTransaction::CURRENT_VERSION), nLockTime(0) {} CMutableTransaction::CMutableTransaction(const CTransaction& tx) : nVersion(tx.nVersion), vin(tx.vin), vout(tx.vout), nLockTime(tx.nLockTime) {} uint256 CMutableTransaction::GetHash() const { return SerializeHash(*this); } std::string CMutableTransaction::ToString() const { std::string str; str += strprintf("CMutableTransaction(ver=%d, vin.size=%u, vout.size=%u, nLockTime=%u)\n", nVersion, vin.size(), vout.size(), nLockTime); for (unsigned int i = 0; i < vin.size(); i++) str += " " + vin[i].ToString() + "\n"; for (unsigned int i = 0; i < vout.size(); i++) str += " " + vout[i].ToString() + "\n"; return str; } void CTransaction::UpdateHash() const { *const_cast<uint256*>(&hash) = SerializeHash(*this); } CTransaction::CTransaction() : hash(), nVersion(CTransaction::CURRENT_VERSION), vin(), vout(), nLockTime(0) { } CTransaction::CTransaction(const CMutableTransaction &tx) : nVersion(tx.nVersion), vin(tx.vin), vout(tx.vout), nLockTime(tx.nLockTime) { UpdateHash(); } CTransaction& CTransaction::operator=(const CTransaction &tx) { *const_cast<int*>(&nVersion) = tx.nVersion; *const_cast<std::vector<CTxIn>*>(&vin) = tx.vin; *const_cast<std::vector<CTxOut>*>(&vout) = tx.vout; *const_cast<unsigned int*>(&nLockTime) = tx.nLockTime; *const_cast<uint256*>(&hash) = tx.hash; return *this; } bool CTransaction::IsCoinStake() const { if (vin.empty()) return false; // ppcoin: the coin stake transaction is marked with the first output empty bool fAllowNull = vin[0].scriptSig.IsZerocoinSpend(); if (vin[0].prevout.IsNull() && !fAllowNull) return false; return (vin.size() > 0 && vout.size() >= 2 && vout[0].IsEmpty()); } CAmount CTransaction::GetValueOut() const { CAmount nValueOut = 0; for (std::vector<CTxOut>::const_iterator it(vout.begin()); it != vout.end(); ++it) { // JIYO: previously MoneyRange() was called here. This has been replaced with negative check and boundary wrap check. if (it->nValue < 0) throw std::runtime_error("CTransaction::GetValueOut() : value out of range : less than 0"); if ((nValueOut + it->nValue) < nValueOut) throw std::runtime_error("CTransaction::GetValueOut() : value out of range : wraps the int64_t boundary"); nValueOut += it->nValue; } return nValueOut; } CAmount CTransaction::GetZerocoinMinted() const { for (const CTxOut& txOut : vout) { if(!txOut.scriptPubKey.IsZerocoinMint()) continue; return txOut.nValue; } return CAmount(0); } bool CTransaction::UsesUTXO(const COutPoint out) { for (const CTxIn& in : vin) { if (in.prevout == out) return true; } return false; } std::list<COutPoint> CTransaction::GetOutPoints() const { std::list<COutPoint> listOutPoints; uint256 txHash = GetHash(); for (unsigned int i = 0; i < vout.size(); i++) listOutPoints.emplace_back(COutPoint(txHash, i)); return listOutPoints; } CAmount CTransaction::GetZerocoinSpent() const { if(!IsZerocoinSpend()) return 0; CAmount nValueOut = 0; for (const CTxIn& txin : vin) { if(!txin.scriptSig.IsZerocoinSpend()) continue; nValueOut += txin.nSequence * COIN; } return nValueOut; } int CTransaction::GetZerocoinMintCount() const { int nCount = 0; for (const CTxOut& out : vout) { if (out.scriptPubKey.IsZerocoinMint()) nCount++; } return nCount; } double CTransaction::ComputePriority(double dPriorityInputs, unsigned int nTxSize) const { nTxSize = CalculateModifiedSize(nTxSize); if (nTxSize == 0) return 0.0; return dPriorityInputs / nTxSize; } unsigned int CTransaction::CalculateModifiedSize(unsigned int nTxSize) const { // In order to avoid disincentivizing cleaning up the UTXO set we don't count // the constant overhead for each txin and up to 110 bytes of scriptSig (which // is enough to cover a compressed pubkey p2sh redemption) for priority. // Providing any more cleanup incentive than making additional inputs free would // risk encouraging people to create junk outputs to redeem later. if (nTxSize == 0) nTxSize = ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION); for (std::vector<CTxIn>::const_iterator it(vin.begin()); it != vin.end(); ++it) { unsigned int offset = 41U + std::min(110U, (unsigned int)it->scriptSig.size()); if (nTxSize > offset) nTxSize -= offset; } return nTxSize; } std::string CTransaction::ToString() const { std::string str; str += strprintf("CTransaction(hash=%s, ver=%d, vin.size=%u, vout.size=%u, nLockTime=%u)\n", GetHash().ToString().substr(0,10), nVersion, vin.size(), vout.size(), nLockTime); for (unsigned int i = 0; i < vin.size(); i++) str += " " + vin[i].ToString() + "\n"; for (unsigned int i = 0; i < vout.size(); i++) str += " " + vout[i].ToString() + "\n"; return str; }
[ "39266190+Al3xxx19@users.noreply.github.com" ]
39266190+Al3xxx19@users.noreply.github.com
b3ffa74db39c024eb89776bdfca1aa6c1a609f18
70326262de14f2c1311db00abd9f4ba63a25e9a6
/src/KinectApp/app_main.cpp
c0ec743fe8b959021fad59bdf0f3e2dd4a7ab75c
[]
no_license
rbackman/PhysicalHuman
954c246ee23f53d5ac285e398732cb78d2d84413
7baf6461aa17cd7cf29d82236664b24506e753d4
refs/heads/main
2023-06-21T13:44:25.383247
2021-07-20T23:50:04
2021-07-20T23:50:04
386,815,342
0
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
#include "kinect_manager.h" #include "kinect_main_win.h" #include "util_server.h" # include <gsim/fl.h> #include "kinect_marker.h" int main ( int argc, char** argv ) { //Server* server = new Server; KinectMainWin* kinectWin = new KinectMainWin; kinectWin->show(); //server->startServer(); while(true) { kinectWin->update(); //kinect->currentKinect()->unlock(); fltk::check(); } return 0; }
[ "rbackman07@gmail.com" ]
rbackman07@gmail.com
733ac296bb8c322038e071af5bcbeb315a515ce5
581a619c86c3507b5f9967622f48bf10bf1399f4
/framework/box.cpp
b7d43cd25170670962219c8fede22c805c6214c0
[ "MIT" ]
permissive
UnholyCreations/programmiersprachen-raytracer
c9a488266e8d7fb45b4eedd6f200c9cd8355d6f0
c0314442425ee42cead7c8c9a35e89e8cc87ad01
refs/heads/master
2021-01-02T23:10:06.946493
2017-09-28T03:21:03
2017-09-28T03:21:03
99,480,637
0
0
null
2017-08-06T10:56:40
2017-08-06T10:56:40
null
UTF-8
C++
false
false
4,564
cpp
#include "box.hpp" #include <string> Box::Box() : Shape{}, m_min{0,0,0},m_max{1,1,1} // default constructor {} Box::Box(std::string const& name,Material const& material,glm::vec3 const& kord1,glm::vec3 const& kord2)://user constructor Shape{name,material,0}, m_min{std::min(kord1.x,kord2.x),std::min(kord1.y,kord2.y),std::min(kord1.z,kord2.z)}, m_max{std::max(kord1.x,kord2.x),std::max(kord1.y,kord2.y),std::max(kord1.z,kord2.z)} { } Box::~Box() {}; //desturctor glm::vec3 Box::get_min() const { glm::vec4 q(m_min,1.0f); glm::vec3 p{m_translate*m_scale*q}; //p.x+=p.x*(float(m_BBOXangle_x)*0.066666667f); //p.y+=p.y*(float(m_BBOXangle_y)*0.066666667f); //p.z+=p.z*(float(m_BBOXangle_z)*0.066666667f); return p; } glm::vec3 Box::get_max() const { glm::vec4 q(m_max,1.0f); glm::vec3 p{m_translate*m_scale*q}; //p.x+=p.x*(float(m_BBOXangle_x)*0.066666667f); //p.y+=p.y*(float(m_BBOXangle_y)*0.066666667f); //p.z+=p.z*(float(m_BBOXangle_z)*0.066666667f); return p; } double Box::area() const { glm::vec3 seiten=m_max-m_min; double x=seiten.x; double y=seiten.y; double z=seiten.z; return (x*y+x*z+z*y)*2; } double Box::volume() const { glm::vec3 seiten=m_max-m_min; double x=seiten.x; double y=seiten.y; double z=seiten.z; return x*y*z; } std::ostream & Box::print(std::ostream & os) const{ Shape::print(os); return os<<"Box: \n"<<"min coordinates:"<<m_min.x<<" "<<m_min.y<<" "<<m_min.z<<"\n" <<"max coordinates:"<<m_max.x<<" "<<m_max.y<<" "<<m_max.z<<"\n"; } //https://people.csail.mit.edu/amy/papers/box-jgt.pdf //https://tavianator.com/fast-branchless-raybounding-box-intersections-part-2-nans/#cite-1 //DID WE MISS SMTH?CONSTRUCTORS KILL BRAINCELLS...Struct/class creations functions more... //bool hit, float distance, glm::vec3 const& intersect,glm::vec3 const& norm (missing), Shape* shape_ptr Hit Box::intersect(Ray const& ray) { Hit box_hit; Ray trans_ray=transformRay(m_worldtrans_inv,ray); float tmin, tmax, tymin, tymax, tzmin, tzmax; if (trans_ray.m_direction.x >= 0) { tmin = (m_min.x - trans_ray.m_origin.x) * trans_ray.m_inverse.x; tmax = (m_max.x - trans_ray.m_origin.x) * trans_ray.m_inverse.x; } else { tmin = (m_max.x - trans_ray.m_origin.x) * trans_ray.m_inverse.x; tmax = (m_min.x - trans_ray.m_origin.x) * trans_ray.m_inverse.x; } if (trans_ray.m_direction.y >= 0) { tymin = (m_min.y - trans_ray.m_origin.y) * trans_ray.m_inverse.y; tymax = (m_max.y - trans_ray.m_origin.y) * trans_ray.m_inverse.y; } else { tymin = (m_max.y - trans_ray.m_origin.y) * trans_ray.m_inverse.y; tymax = (m_min.y - trans_ray.m_origin.y) * trans_ray.m_inverse.y; } if ((tmin > tymax) || (tymin > tmax)) { box_hit.m_hit=false; return box_hit; } if (tymin > tmin) { tmin = tymin; } if (tymax < tmax) { tmax = tymax; } if (trans_ray.m_direction.z >= 0) { tzmin = (m_min.z - trans_ray.m_origin.z) * trans_ray.m_inverse.z; tzmax = (m_max.z - trans_ray.m_origin.z) * trans_ray.m_inverse.z; } else { tzmin = (m_max.z - trans_ray.m_origin.z) * trans_ray.m_inverse.z; tzmax = (m_min.z - trans_ray.m_origin.z) * trans_ray.m_inverse.z; } if ((tmin > tzmax) || (tzmin > tmax)) { box_hit.m_hit=false; return box_hit; } if (tzmin > tmin) { tmin = tzmin; } if (tzmax < tmax) { tmax = tzmax; } if (tmax > std::max(tmin, 0.0f)) { box_hit.m_hit=true; box_hit.m_shape_ptr = this; box_hit.m_intersect=trans_ray.m_origin+glm::normalize(trans_ray.m_direction)*tmin; box_hit.m_distance=glm::length(trans_ray.m_origin-box_hit.m_intersect); if ((box_hit.m_intersect.x)==Approx(m_max.x)) { box_hit.m_norm=glm::vec3(1.0f,0.0f,0.0f); }else if ((box_hit.m_intersect.x)==Approx(m_min.x)) { box_hit.m_norm=glm::vec3(-1.0f,0.0f,0.0f); }else if ((box_hit.m_intersect.y)==Approx(m_max.y)) { box_hit.m_norm=glm::vec3(0.0f,1.0f,0.0f); }else if ((box_hit.m_intersect.y)==Approx(m_min.y)) { box_hit.m_norm=glm::vec3(0.0f,-1.0f,0.0f); }else if ((box_hit.m_intersect.z)==Approx(m_max.z)) { box_hit.m_norm=glm::vec3(0.0f,0.0f,1.0f); }else { box_hit.m_norm=glm::vec3(0.0f,0.0f,-1.0f); } } glm::mat4 M = glm::transpose(m_worldtrans_inv); glm::vec4 n{box_hit.m_norm, 0.0f}; glm::vec3 m(M * n); box_hit.m_norm = glm::normalize(m); glm::vec4 q(box_hit.m_intersect,1.0f); glm::vec3 p{m_worldtrans*q}; box_hit.m_intersect=p; return box_hit; }
[ "UnholyCreations@protonmail.com" ]
UnholyCreations@protonmail.com
b7e66bb05e65450fc92566fcb4142fd11ecccfe2
d24838ab7d05d4a3ba5dfdaf45f92099b6c431b2
/Testing/algorithm.h
272decc9d6f25de3407ee80a3cc3cc0bd87f7b44
[]
no_license
steven810528/Testing
171a77ce1e04ffbebf05ce063f1e4aaf94d3170e
00f351fbd9542b32f0e59fa78c76a8b80efd4709
refs/heads/master
2021-01-17T21:21:17.393954
2017-03-07T08:55:32
2017-03-07T08:55:32
84,017,000
0
0
null
null
null
null
UTF-8
C++
false
false
238
h
// // algorithm.h // Testing // // Created by Steven on 2017/3/7. // Copyright © 2017年 Steven. All rights reserved. // #ifndef algorithm_h #define algorithm_h #include <iostream> public void algDemo(); #endif /* algorithm_h */
[ "steven810528@gmail.com" ]
steven810528@gmail.com
938f6607c166f1521d69cc0651dbbe328fe9e9e9
04b1803adb6653ecb7cb827c4f4aa616afacf629
/services/viz/public/cpp/compositing/compositor_frame_struct_traits.cc
e824df34f73a21ee15fa983e8add9e0029b5c95f
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
877
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/viz/public/cpp/compositing/compositor_frame_struct_traits.h" #include "base/trace_event/trace_event.h" namespace mojo { // static bool StructTraits<viz::mojom::CompositorFrameDataView, viz::CompositorFrame>:: Read(viz::mojom::CompositorFrameDataView data, viz::CompositorFrame* out) { TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("cc.debug.ipc"), "StructTraits::CompositorFrame::Read"); return data.ReadPasses(&out->render_pass_list) && !out->render_pass_list.empty() && !out->render_pass_list.back()->output_rect.size().IsEmpty() && data.ReadMetadata(&out->metadata) && data.ReadResources(&out->resource_list); } } // namespace mojo
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
9d29699a3fe072567ece7260aa6995b8105a909c
1240a7332b986b71caa6fc46ec41a4ac73e89211
/week-03/day-04/03 Sumdigit/main.cpp
f40f98db2537bbfeee7c96bdead6c624108f907d
[]
no_license
green-fox-academy/Bola00
275d7a5f593d7eb69b1d69a769c41f0205b99dd7
8baff593abad52714ed6301de167bcaf3f70920e
refs/heads/master
2020-04-16T19:50:06.844761
2019-04-08T12:16:29
2019-04-08T12:16:29
165,876,255
0
0
null
null
null
null
UTF-8
C++
false
false
570
cpp
#include <iostream> // Given a non-negative int n, return the sum of its digits recursively (no loops). // Note that mod (%) by 10 yields the rightmost digit (126 % 10 is 6), while // divide (/) by 10 removes the rightmost digit (126 / 10 is 12). int sumDigits (int n) { if (n == 0) { return 0; } else { int lastDigit = n % 10; n /= 10; return (lastDigit + sumDigits(n) ); } } int main() { int userInput; std::cout <<"Number: "; std::cin >> userInput; std:: cout << sumDigits(userInput); return 0; }
[ "bogarlaszlo95@gmail.com" ]
bogarlaszlo95@gmail.com
f00094b1238a56842cc2098118e174aed1ba4e17
7a2908d7204750c0ff508e2d462f5d37c87df1f2
/frameworks/cocos2d-x/cocos/network/HttpCookie.cpp
5c53f396576937715fd2f838431aab4bbf00553d
[ "MIT" ]
permissive
atom-chen/M2_CLIENT
7fe097c565c93dfb6e0c27bfd8229fa245c2c494
bfedfa8667916330c092f1f3ceca691d41df9b56
refs/heads/master
2020-06-21T19:05:07.385296
2018-07-25T11:29:51
2018-07-25T11:29:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,814
cpp
/**************************************************************************** Copyright (c) 2013-2017 Chukong Technologies Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "network/HttpCookie.h" #include "platform/CCFileUtils.h" #include <sstream> #include <stdio.h> void HttpCookie::readFile() { std::string inString = cocos2d::FileUtils::getInstance()->getStringFromFile(_cookieFileName); if(!inString.empty()) { std::vector<std::string> cookiesVec; cookiesVec.clear(); std::stringstream stream(inString); std::string item; while(std::getline(stream, item, '\n')) { cookiesVec.push_back(item); } if(cookiesVec.empty()) return; _cookies.clear(); for(auto& cookie : cookiesVec) { if(cookie.length() == 0) continue; if(cookie.find("#HttpOnly_") != std::string::npos) { cookie = cookie.substr(10); } if(cookie.at(0) == '#') continue; CookiesInfo co; std::stringstream streamInfo(cookie); std::vector<std::string> elems; std::string elemsItem; while (std::getline(streamInfo, elemsItem, '\t')) { elems.push_back(elemsItem); } co.domain = elems[0]; if (co.domain.at(0) == '.') { co.domain = co.domain.substr(1); } co.tailmatch = strcmp("TRUE", elems[1].c_str())?true: false; co.path = elems[2]; co.secure = strcmp("TRUE", elems[3].c_str())?true: false; co.expires = elems[4]; co.name = elems[5]; co.value = elems[6]; _cookies.push_back(co); } } } const std::vector<CookiesInfo>* HttpCookie::getCookies() const { return &_cookies; } const CookiesInfo* HttpCookie::getMatchCookie(const std::string& url) const { for(auto& cookie : _cookies) { if(url.find(cookie.domain) != std::string::npos) return &cookie; } return nullptr; } void HttpCookie::updateOrAddCookie(CookiesInfo* cookie) { for(auto& _cookie : _cookies) { if(cookie->domain == _cookie.domain) { _cookie = *cookie; return; } } _cookies.push_back(*cookie); } void HttpCookie::writeFile() { FILE *out; out = fopen(_cookieFileName.c_str(), "w"); fputs("# Netscape HTTP Cookie File\n" "# http://curl.haxx.se/docs/http-cookies.html\n" "# This file was generated by cocos2d-x! Edit at your own risk.\n" "# Test cocos2d-x cookie write.\n\n", out); std::string line; for(auto& cookie : _cookies) { line.clear(); line.append(cookie.domain); line.append(1, '\t'); cookie.tailmatch ? line.append("TRUE") : line.append("FALSE"); line.append(1, '\t'); line.append(cookie.path); line.append(1, '\t'); cookie.secure ? line.append("TRUE") : line.append("FALSE"); line.append(1, '\t'); line.append(cookie.expires); line.append(1, '\t'); line.append(cookie.name); line.append(1, '\t'); line.append(cookie.value); //line.append(1, '\n'); fprintf(out, "%s\n", line.c_str()); } fclose(out); } void HttpCookie::setCookieFileName(const std::string& filename) { _cookieFileName = filename; }
[ "2716332985@qq.com" ]
2716332985@qq.com
84cb19565b4fa8ce720f2baead159ffdacdf774d
d92eae74f04788f978db61fa41d873ccb7df5a93
/Engine/Core/PerspCameraPart.cpp
7bc9621c25612e75080d9808e7e7dd1d2fc0e47c
[]
no_license
Almahmudrony/Inline-Engine
8bd56900e98a04d68d9c1cd894b39e7f00616f0d
c95536624cb2811cb30f6c699ebf8d86e8443b7f
refs/heads/master
2021-01-01T18:58:17.535207
2017-07-22T00:08:56
2017-07-22T00:08:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,203
cpp
#include "PerspCameraPart.hpp" namespace inl::core { PerspCameraPart::PerspCameraPart(gxeng::PerspectiveCamera* cam) :Part(TYPE), cam(cam), aspectRatio(1.f) { cam->SetTargeted(true); } PerspCameraPart::~PerspCameraPart() { delete cam; } void PerspCameraPart::UpdateEntityTransform() { auto pos = GetPos(); auto rot = GetRot(); Vec3 upVec = rot * Vec3(0, 0, 1); Vec3 frontVec = rot * Vec3(0, 1, 0); // Update camera Entity position cam->SetPosition(mathfu::Vector3f(pos.x, pos.y, pos.z)); // Update camera Entity Rotation cam->SetUpVector(mathfu::Vector3f(upVec.x, upVec.y, upVec.z)); cam->SetTarget(cam->GetPosition() + mathfu::Vector3f(frontVec.x, frontVec.y, frontVec.z)); } void PerspCameraPart::SetDirNormed(const Vec3& dir) { // TODO do not change the distance between camera position and camera target, save the length of it and reuse it ! cam->SetTarget(cam->GetTarget() + mathfu::Vector3f(dir.x, dir.y, dir.z)); mathfu::Vector3f frontDir = cam->GetLookDirection(); mathfu::Vector3f upVec = cam->GetUpVector(); mathfu::Vector3f rightVec = mathfu::Vector3f::CrossProduct(frontDir, upVec).Normalized(); // TODO generate camera rotation from front up and right dirs Quat camRot; assert(0); SetRot(camRot); } void PerspCameraPart::SetAspectRatio(float ratio) { aspectRatio = ratio; cam->SetFOVAxis(cam->GetFOVVertical() * ratio, cam->GetFOVVertical()); } void PerspCameraPart::SetFOV(float fov) { cam->SetFOVAxis(fov * aspectRatio, fov); } void PerspCameraPart::SetNearPlane(float val) { cam->SetNearPlane(val); } void PerspCameraPart::SetFarPlane(float val) { cam->SetFarPlane(val); } void PerspCameraPart::SetTarget(const Vec3& p) { cam->SetTarget(mathfu::Vector3f(p.x, p.y, p.z)); } Vec3 PerspCameraPart::GetFrontDir() { return GetRot() * Vec3(0, 1, 0); } Vec3 PerspCameraPart::GetBackDir() { return GetRot() * Vec3(0, -1, 0); } Vec3 PerspCameraPart::GetUpDir() { return GetRot() * Vec3(0, 0, 1); } Vec3 PerspCameraPart::GetDownDir() { return GetRot() * Vec3(0, 0, -1); } Vec3 PerspCameraPart::GetRightDir() { return GetRot() * Vec3(1, 0, 0); } Vec3 PerspCameraPart::GetLeftDir() { return GetRot() * Vec3(-1, 0, 0); } } // namespace inl::core
[ "hsdxpro@gmail.com" ]
hsdxpro@gmail.com
a1836fa704e3ce890d1c5a393aa9b2d8296adeeb
485117bfdfd6bdd4874d528466eaa273ed896570
/include/VOpenNIDeviceManager.h
315663645ec3ed09852febb28418eb414ebef6b8
[]
no_license
chazmatazz/BlockOpenNI
b6ad409caf40524f97bb77a4d4c6fc60ef512d37
d080920db26a8e1405fa8b35c1cb01cb8bb0791c
refs/heads/master
2021-01-24T01:22:12.370887
2011-04-04T22:08:24
2011-04-04T22:08:24
1,569,379
1
1
null
null
null
null
UTF-8
C++
false
false
70
h
#pragma once namespace V { class OpenNIDevice; class OpenNIUser; }
[ "vic@pixelnerve.com" ]
vic@pixelnerve.com
6035f9f5bc67089bbaaa8d5adba80e087d5e5ef7
10628747bc5b24614955c69f74419ae2afd925ae
/SonicProject/Effect_Missile_Bomb.cpp
b02de30e290a7062dfcf1dffaf84c28d4910130e
[]
no_license
snrkgotdj/Sonic_Project
136fb7d96bc545650fd7b2c8235382aa13f85995
031f5c1ad55bdeaf09cb3d7c8cd406bf52f3cfb8
refs/heads/master
2020-04-08T14:05:04.015559
2018-11-28T00:57:24
2018-11-28T00:57:24
159,421,287
0
0
null
null
null
null
UTF-8
C++
false
false
833
cpp
#include "stdafx.h" #include "Effect_Missile_Bomb.h" #include "ResManager.h" #include "Texture.h" #include "Animator.h" #include "Animation.h" Effect_Missile_Bomb::Effect_Missile_Bomb() { } Effect_Missile_Bomb::~Effect_Missile_Bomb() { } void Effect_Missile_Bomb::render(HDC _dc) { Anim->render(_dc, pos); } void Effect_Missile_Bomb::update() { if (true == Anim->GetCurAnimation()->isFin()) { OBJ::Die(); Anim->GetCurAnimation()->SetFin(false); } } void Effect_Missile_Bomb::init(fPOINT _pos) { pos = _pos; ResManager::Manager().LoadTexture(L"\\Boss\\BossExplosion.bmp", L"Boss_Explosion"); Anim = new Animator; Anim->AddAnimation(L"Explosion", ResManager::Manager().FindTexture(L"Boss_Explosion"), fPOINT{ 0,0 }, 1, fPOINT{ 80,82 }, 32, 0.025f, RGB(255, 0, 255), 1); Anim->PlayAnimation(L"Explosion"); }
[ "snrk_gotdj@naver.com" ]
snrk_gotdj@naver.com
497b8d80dde4786dc9aad2e3867d4fa2c77b69b6
5d24c201bc31e8cac61fae466e1c80be5d38b631
/saga/saga/packages/advert/version.cpp
c949d4a27db1d17dfaf4982ee134f52f3b01771e
[ "BSL-1.0" ]
permissive
Fooway/saga-cpp
330196aec55642630eb1853363bc3cf8d53336db
7376c0de0529e7d7b80cf08b94ec484c2e56d38e
refs/heads/master
2020-07-12T02:31:44.485713
2012-12-13T11:39:22
2012-12-13T11:39:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
859
cpp
// Copyright (c) 2005-2009 Hartmut Kaiser // Copyright (c) 2005-2007 Andre Merzky (andre@merzky.net) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include <saga/saga/packages/advert/version.hpp> /////////////////////////////////////////////////////////////////////////////// namespace saga { // Returns the version of the SAGA advert package unsigned long get_advert_package_version (void) { return SAGA_VERSION_PACKAGE_ADVERT_FULL; } // Returns the implemented SAGA file package API version unsigned long get_advert_package_api_version (void) { return SAGA_VERSION_PACKAGE_ADVERT_API; } } // namespace saga ///////////////////////////////////////////////////////////////////////////////
[ "oweidner@cct.lsu.edu" ]
oweidner@cct.lsu.edu
6cf12441734f50cfbb47572f3413285bc5ddb70d
3f12fb9b8e14b0c2324dba4b71865b282868f87e
/averma5-v1712/run/damBreak/constant/polyMesh/points
34a02153a84542178f87b9929dc5f0c521013690
[]
no_license
avankit/openfoam
984c6c28e840d4322c11718152e49b55fb3f611f
4eb63bcba498f7ac93d52a11bbe321127cac0139
refs/heads/master
2020-03-23T00:54:50.139905
2018-08-15T21:01:44
2018-08-15T21:01:44
140,891,844
3
2
null
null
null
null
UTF-8
C++
false
false
149,131
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1712 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class vectorField; location "constant/polyMesh"; object points; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 4746 ( (0 0 0) (0.01269565217 0 0) (0.02539130435 0 0) (0.03808695652 0 0) (0.0507826087 0 0) (0.06347826087 0 0) (0.07617391304 0 0) (0.08886956522 0 0) (0.1015652174 0 0) (0.1142608696 0 0) (0.1269565217 0 0) (0.1396521739 0 0) (0.1523478261 0 0) (0.1650434783 0 0) (0.1777391304 0 0) (0.1904347826 0 0) (0.2031304348 0 0) (0.215826087 0 0) (0.2285217391 0 0) (0.2412173913 0 0) (0.2539130435 0 0) (0.2666086957 0 0) (0.2793043478 0 0) (0.292 0 0) (0 0.00599987 0) (0.01269565217 0.00599987 0) (0.02539130435 0.00599987 0) (0.03808695652 0.00599987 0) (0.0507826087 0.00599987 0) (0.06347826087 0.00599987 0) (0.07617391304 0.00599987 0) (0.08886956522 0.00599987 0) (0.1015652174 0.00599987 0) (0.1142608696 0.00599987 0) (0.1269565217 0.00599987 0) (0.1396521739 0.00599987 0) (0.1523478261 0.00599987 0) (0.1650434783 0.00599987 0) (0.1777391304 0.00599987 0) (0.1904347826 0.00599987 0) (0.2031304348 0.00599987 0) (0.215826087 0.00599987 0) (0.2285217391 0.00599987 0) (0.2412173913 0.00599987 0) (0.2539130435 0.00599987 0) (0.2666086957 0.00599987 0) (0.2793043478 0.00599987 0) (0.292 0.00599987 0) (0 0.01199974 0) (0.01269565217 0.01199974 0) (0.02539130435 0.01199974 0) (0.03808695652 0.01199974 0) (0.0507826087 0.01199974 0) (0.06347826087 0.01199974 0) (0.07617391304 0.01199974 0) (0.08886956522 0.01199974 0) (0.1015652174 0.01199974 0) (0.1142608696 0.01199974 0) (0.1269565217 0.01199974 0) (0.1396521739 0.01199974 0) (0.1523478261 0.01199974 0) (0.1650434783 0.01199974 0) (0.1777391304 0.01199974 0) (0.1904347826 0.01199974 0) (0.2031304348 0.01199974 0) (0.215826087 0.01199974 0) (0.2285217391 0.01199974 0) (0.2412173913 0.01199974 0) (0.2539130435 0.01199974 0) (0.2666086957 0.01199974 0) (0.2793043478 0.01199974 0) (0.292 0.01199974 0) (0 0.01799961 0) (0.01269565217 0.01799961 0) (0.02539130435 0.01799961 0) (0.03808695652 0.01799961 0) (0.0507826087 0.01799961 0) (0.06347826087 0.01799961 0) (0.07617391304 0.01799961 0) (0.08886956522 0.01799961 0) (0.1015652174 0.01799961 0) (0.1142608696 0.01799961 0) (0.1269565217 0.01799961 0) (0.1396521739 0.01799961 0) (0.1523478261 0.01799961 0) (0.1650434783 0.01799961 0) (0.1777391304 0.01799961 0) (0.1904347826 0.01799961 0) (0.2031304348 0.01799961 0) (0.215826087 0.01799961 0) (0.2285217391 0.01799961 0) (0.2412173913 0.01799961 0) (0.2539130435 0.01799961 0) (0.2666086957 0.01799961 0) (0.2793043478 0.01799961 0) (0.292 0.01799961 0) (0 0.02399948 0) (0.01269565217 0.02399948 0) (0.02539130435 0.02399948 0) (0.03808695652 0.02399948 0) (0.0507826087 0.02399948 0) (0.06347826087 0.02399948 0) (0.07617391304 0.02399948 0) (0.08886956522 0.02399948 0) (0.1015652174 0.02399948 0) (0.1142608696 0.02399948 0) (0.1269565217 0.02399948 0) (0.1396521739 0.02399948 0) (0.1523478261 0.02399948 0) (0.1650434783 0.02399948 0) (0.1777391304 0.02399948 0) (0.1904347826 0.02399948 0) (0.2031304348 0.02399948 0) (0.215826087 0.02399948 0) (0.2285217391 0.02399948 0) (0.2412173913 0.02399948 0) (0.2539130435 0.02399948 0) (0.2666086957 0.02399948 0) (0.2793043478 0.02399948 0) (0.292 0.02399948 0) (0 0.02999935 0) (0.01269565217 0.02999935 0) (0.02539130435 0.02999935 0) (0.03808695652 0.02999935 0) (0.0507826087 0.02999935 0) (0.06347826087 0.02999935 0) (0.07617391304 0.02999935 0) (0.08886956522 0.02999935 0) (0.1015652174 0.02999935 0) (0.1142608696 0.02999935 0) (0.1269565217 0.02999935 0) (0.1396521739 0.02999935 0) (0.1523478261 0.02999935 0) (0.1650434783 0.02999935 0) (0.1777391304 0.02999935 0) (0.1904347826 0.02999935 0) (0.2031304348 0.02999935 0) (0.215826087 0.02999935 0) (0.2285217391 0.02999935 0) (0.2412173913 0.02999935 0) (0.2539130435 0.02999935 0) (0.2666086957 0.02999935 0) (0.2793043478 0.02999935 0) (0.292 0.02999935 0) (0 0.03599922 0) (0.01269565217 0.03599922 0) (0.02539130435 0.03599922 0) (0.03808695652 0.03599922 0) (0.0507826087 0.03599922 0) (0.06347826087 0.03599922 0) (0.07617391304 0.03599922 0) (0.08886956522 0.03599922 0) (0.1015652174 0.03599922 0) (0.1142608696 0.03599922 0) (0.1269565217 0.03599922 0) (0.1396521739 0.03599922 0) (0.1523478261 0.03599922 0) (0.1650434783 0.03599922 0) (0.1777391304 0.03599922 0) (0.1904347826 0.03599922 0) (0.2031304348 0.03599922 0) (0.215826087 0.03599922 0) (0.2285217391 0.03599922 0) (0.2412173913 0.03599922 0) (0.2539130435 0.03599922 0) (0.2666086957 0.03599922 0) (0.2793043478 0.03599922 0) (0.292 0.03599922 0) (0 0.04199909 0) (0.01269565217 0.04199909 0) (0.02539130435 0.04199909 0) (0.03808695652 0.04199909 0) (0.0507826087 0.04199909 0) (0.06347826087 0.04199909 0) (0.07617391304 0.04199909 0) (0.08886956522 0.04199909 0) (0.1015652174 0.04199909 0) (0.1142608696 0.04199909 0) (0.1269565217 0.04199909 0) (0.1396521739 0.04199909 0) (0.1523478261 0.04199909 0) (0.1650434783 0.04199909 0) (0.1777391304 0.04199909 0) (0.1904347826 0.04199909 0) (0.2031304348 0.04199909 0) (0.215826087 0.04199909 0) (0.2285217391 0.04199909 0) (0.2412173913 0.04199909 0) (0.2539130435 0.04199909 0) (0.2666086957 0.04199909 0) (0.2793043478 0.04199909 0) (0.292 0.04199909 0) (0 0.04799896 0) (0.01269565217 0.04799896 0) (0.02539130435 0.04799896 0) (0.03808695652 0.04799896 0) (0.0507826087 0.04799896 0) (0.06347826087 0.04799896 0) (0.07617391304 0.04799896 0) (0.08886956522 0.04799896 0) (0.1015652174 0.04799896 0) (0.1142608696 0.04799896 0) (0.1269565217 0.04799896 0) (0.1396521739 0.04799896 0) (0.1523478261 0.04799896 0) (0.1650434783 0.04799896 0) (0.1777391304 0.04799896 0) (0.1904347826 0.04799896 0) (0.2031304348 0.04799896 0) (0.215826087 0.04799896 0) (0.2285217391 0.04799896 0) (0.2412173913 0.04799896 0) (0.2539130435 0.04799896 0) (0.2666086957 0.04799896 0) (0.2793043478 0.04799896 0) (0.292 0.04799896 0) (0 0 0.0146) (0.01269565217 0 0.0146) (0.02539130435 0 0.0146) (0.03808695652 0 0.0146) (0.0507826087 0 0.0146) (0.06347826087 0 0.0146) (0.07617391304 0 0.0146) (0.08886956522 0 0.0146) (0.1015652174 0 0.0146) (0.1142608696 0 0.0146) (0.1269565217 0 0.0146) (0.1396521739 0 0.0146) (0.1523478261 0 0.0146) (0.1650434783 0 0.0146) (0.1777391304 0 0.0146) (0.1904347826 0 0.0146) (0.2031304348 0 0.0146) (0.215826087 0 0.0146) (0.2285217391 0 0.0146) (0.2412173913 0 0.0146) (0.2539130435 0 0.0146) (0.2666086957 0 0.0146) (0.2793043478 0 0.0146) (0.292 0 0.0146) (0 0.00599987 0.0146) (0.01269565217 0.00599987 0.0146) (0.02539130435 0.00599987 0.0146) (0.03808695652 0.00599987 0.0146) (0.0507826087 0.00599987 0.0146) (0.06347826087 0.00599987 0.0146) (0.07617391304 0.00599987 0.0146) (0.08886956522 0.00599987 0.0146) (0.1015652174 0.00599987 0.0146) (0.1142608696 0.00599987 0.0146) (0.1269565217 0.00599987 0.0146) (0.1396521739 0.00599987 0.0146) (0.1523478261 0.00599987 0.0146) (0.1650434783 0.00599987 0.0146) (0.1777391304 0.00599987 0.0146) (0.1904347826 0.00599987 0.0146) (0.2031304348 0.00599987 0.0146) (0.215826087 0.00599987 0.0146) (0.2285217391 0.00599987 0.0146) (0.2412173913 0.00599987 0.0146) (0.2539130435 0.00599987 0.0146) (0.2666086957 0.00599987 0.0146) (0.2793043478 0.00599987 0.0146) (0.292 0.00599987 0.0146) (0 0.01199974 0.0146) (0.01269565217 0.01199974 0.0146) (0.02539130435 0.01199974 0.0146) (0.03808695652 0.01199974 0.0146) (0.0507826087 0.01199974 0.0146) (0.06347826087 0.01199974 0.0146) (0.07617391304 0.01199974 0.0146) (0.08886956522 0.01199974 0.0146) (0.1015652174 0.01199974 0.0146) (0.1142608696 0.01199974 0.0146) (0.1269565217 0.01199974 0.0146) (0.1396521739 0.01199974 0.0146) (0.1523478261 0.01199974 0.0146) (0.1650434783 0.01199974 0.0146) (0.1777391304 0.01199974 0.0146) (0.1904347826 0.01199974 0.0146) (0.2031304348 0.01199974 0.0146) (0.215826087 0.01199974 0.0146) (0.2285217391 0.01199974 0.0146) (0.2412173913 0.01199974 0.0146) (0.2539130435 0.01199974 0.0146) (0.2666086957 0.01199974 0.0146) (0.2793043478 0.01199974 0.0146) (0.292 0.01199974 0.0146) (0 0.01799961 0.0146) (0.01269565217 0.01799961 0.0146) (0.02539130435 0.01799961 0.0146) (0.03808695652 0.01799961 0.0146) (0.0507826087 0.01799961 0.0146) (0.06347826087 0.01799961 0.0146) (0.07617391304 0.01799961 0.0146) (0.08886956522 0.01799961 0.0146) (0.1015652174 0.01799961 0.0146) (0.1142608696 0.01799961 0.0146) (0.1269565217 0.01799961 0.0146) (0.1396521739 0.01799961 0.0146) (0.1523478261 0.01799961 0.0146) (0.1650434783 0.01799961 0.0146) (0.1777391304 0.01799961 0.0146) (0.1904347826 0.01799961 0.0146) (0.2031304348 0.01799961 0.0146) (0.215826087 0.01799961 0.0146) (0.2285217391 0.01799961 0.0146) (0.2412173913 0.01799961 0.0146) (0.2539130435 0.01799961 0.0146) (0.2666086957 0.01799961 0.0146) (0.2793043478 0.01799961 0.0146) (0.292 0.01799961 0.0146) (0 0.02399948 0.0146) (0.01269565217 0.02399948 0.0146) (0.02539130435 0.02399948 0.0146) (0.03808695652 0.02399948 0.0146) (0.0507826087 0.02399948 0.0146) (0.06347826087 0.02399948 0.0146) (0.07617391304 0.02399948 0.0146) (0.08886956522 0.02399948 0.0146) (0.1015652174 0.02399948 0.0146) (0.1142608696 0.02399948 0.0146) (0.1269565217 0.02399948 0.0146) (0.1396521739 0.02399948 0.0146) (0.1523478261 0.02399948 0.0146) (0.1650434783 0.02399948 0.0146) (0.1777391304 0.02399948 0.0146) (0.1904347826 0.02399948 0.0146) (0.2031304348 0.02399948 0.0146) (0.215826087 0.02399948 0.0146) (0.2285217391 0.02399948 0.0146) (0.2412173913 0.02399948 0.0146) (0.2539130435 0.02399948 0.0146) (0.2666086957 0.02399948 0.0146) (0.2793043478 0.02399948 0.0146) (0.292 0.02399948 0.0146) (0 0.02999935 0.0146) (0.01269565217 0.02999935 0.0146) (0.02539130435 0.02999935 0.0146) (0.03808695652 0.02999935 0.0146) (0.0507826087 0.02999935 0.0146) (0.06347826087 0.02999935 0.0146) (0.07617391304 0.02999935 0.0146) (0.08886956522 0.02999935 0.0146) (0.1015652174 0.02999935 0.0146) (0.1142608696 0.02999935 0.0146) (0.1269565217 0.02999935 0.0146) (0.1396521739 0.02999935 0.0146) (0.1523478261 0.02999935 0.0146) (0.1650434783 0.02999935 0.0146) (0.1777391304 0.02999935 0.0146) (0.1904347826 0.02999935 0.0146) (0.2031304348 0.02999935 0.0146) (0.215826087 0.02999935 0.0146) (0.2285217391 0.02999935 0.0146) (0.2412173913 0.02999935 0.0146) (0.2539130435 0.02999935 0.0146) (0.2666086957 0.02999935 0.0146) (0.2793043478 0.02999935 0.0146) (0.292 0.02999935 0.0146) (0 0.03599922 0.0146) (0.01269565217 0.03599922 0.0146) (0.02539130435 0.03599922 0.0146) (0.03808695652 0.03599922 0.0146) (0.0507826087 0.03599922 0.0146) (0.06347826087 0.03599922 0.0146) (0.07617391304 0.03599922 0.0146) (0.08886956522 0.03599922 0.0146) (0.1015652174 0.03599922 0.0146) (0.1142608696 0.03599922 0.0146) (0.1269565217 0.03599922 0.0146) (0.1396521739 0.03599922 0.0146) (0.1523478261 0.03599922 0.0146) (0.1650434783 0.03599922 0.0146) (0.1777391304 0.03599922 0.0146) (0.1904347826 0.03599922 0.0146) (0.2031304348 0.03599922 0.0146) (0.215826087 0.03599922 0.0146) (0.2285217391 0.03599922 0.0146) (0.2412173913 0.03599922 0.0146) (0.2539130435 0.03599922 0.0146) (0.2666086957 0.03599922 0.0146) (0.2793043478 0.03599922 0.0146) (0.292 0.03599922 0.0146) (0 0.04199909 0.0146) (0.01269565217 0.04199909 0.0146) (0.02539130435 0.04199909 0.0146) (0.03808695652 0.04199909 0.0146) (0.0507826087 0.04199909 0.0146) (0.06347826087 0.04199909 0.0146) (0.07617391304 0.04199909 0.0146) (0.08886956522 0.04199909 0.0146) (0.1015652174 0.04199909 0.0146) (0.1142608696 0.04199909 0.0146) (0.1269565217 0.04199909 0.0146) (0.1396521739 0.04199909 0.0146) (0.1523478261 0.04199909 0.0146) (0.1650434783 0.04199909 0.0146) (0.1777391304 0.04199909 0.0146) (0.1904347826 0.04199909 0.0146) (0.2031304348 0.04199909 0.0146) (0.215826087 0.04199909 0.0146) (0.2285217391 0.04199909 0.0146) (0.2412173913 0.04199909 0.0146) (0.2539130435 0.04199909 0.0146) (0.2666086957 0.04199909 0.0146) (0.2793043478 0.04199909 0.0146) (0.292 0.04199909 0.0146) (0 0.04799896 0.0146) (0.01269565217 0.04799896 0.0146) (0.02539130435 0.04799896 0.0146) (0.03808695652 0.04799896 0.0146) (0.0507826087 0.04799896 0.0146) (0.06347826087 0.04799896 0.0146) (0.07617391304 0.04799896 0.0146) (0.08886956522 0.04799896 0.0146) (0.1015652174 0.04799896 0.0146) (0.1142608696 0.04799896 0.0146) (0.1269565217 0.04799896 0.0146) (0.1396521739 0.04799896 0.0146) (0.1523478261 0.04799896 0.0146) (0.1650434783 0.04799896 0.0146) (0.1777391304 0.04799896 0.0146) (0.1904347826 0.04799896 0.0146) (0.2031304348 0.04799896 0.0146) (0.215826087 0.04799896 0.0146) (0.2285217391 0.04799896 0.0146) (0.2412173913 0.04799896 0.0146) (0.2539130435 0.04799896 0.0146) (0.2666086957 0.04799896 0.0146) (0.2793043478 0.04799896 0.0146) (0.292 0.04799896 0.0146) (0.31599948 0 0) (0.3301047705 0 0) (0.3442100611 0 0) (0.3583153516 0 0) (0.3724206421 0 0) (0.3865259326 0 0) (0.4006312232 0 0) (0.4147365137 0 0) (0.4288418042 0 0) (0.4429470947 0 0) (0.4570523853 0 0) (0.4711576758 0 0) (0.4852629663 0 0) (0.4993682568 0 0) (0.5134735474 0 0) (0.5275788379 0 0) (0.5416841284 0 0) (0.5557894189 0 0) (0.5698947095 0 0) (0.584 0 0) (0.31599948 0.00599987 0) (0.3301047705 0.00599987 0) (0.3442100611 0.00599987 0) (0.3583153516 0.00599987 0) (0.3724206421 0.00599987 0) (0.3865259326 0.00599987 0) (0.4006312232 0.00599987 0) (0.4147365137 0.00599987 0) (0.4288418042 0.00599987 0) (0.4429470947 0.00599987 0) (0.4570523853 0.00599987 0) (0.4711576758 0.00599987 0) (0.4852629663 0.00599987 0) (0.4993682568 0.00599987 0) (0.5134735474 0.00599987 0) (0.5275788379 0.00599987 0) (0.5416841284 0.00599987 0) (0.5557894189 0.00599987 0) (0.5698947095 0.00599987 0) (0.584 0.00599987 0) (0.31599948 0.01199974 0) (0.3301047705 0.01199974 0) (0.3442100611 0.01199974 0) (0.3583153516 0.01199974 0) (0.3724206421 0.01199974 0) (0.3865259326 0.01199974 0) (0.4006312232 0.01199974 0) (0.4147365137 0.01199974 0) (0.4288418042 0.01199974 0) (0.4429470947 0.01199974 0) (0.4570523853 0.01199974 0) (0.4711576758 0.01199974 0) (0.4852629663 0.01199974 0) (0.4993682568 0.01199974 0) (0.5134735474 0.01199974 0) (0.5275788379 0.01199974 0) (0.5416841284 0.01199974 0) (0.5557894189 0.01199974 0) (0.5698947095 0.01199974 0) (0.584 0.01199974 0) (0.31599948 0.01799961 0) (0.3301047705 0.01799961 0) (0.3442100611 0.01799961 0) (0.3583153516 0.01799961 0) (0.3724206421 0.01799961 0) (0.3865259326 0.01799961 0) (0.4006312232 0.01799961 0) (0.4147365137 0.01799961 0) (0.4288418042 0.01799961 0) (0.4429470947 0.01799961 0) (0.4570523853 0.01799961 0) (0.4711576758 0.01799961 0) (0.4852629663 0.01799961 0) (0.4993682568 0.01799961 0) (0.5134735474 0.01799961 0) (0.5275788379 0.01799961 0) (0.5416841284 0.01799961 0) (0.5557894189 0.01799961 0) (0.5698947095 0.01799961 0) (0.584 0.01799961 0) (0.31599948 0.02399948 0) (0.3301047705 0.02399948 0) (0.3442100611 0.02399948 0) (0.3583153516 0.02399948 0) (0.3724206421 0.02399948 0) (0.3865259326 0.02399948 0) (0.4006312232 0.02399948 0) (0.4147365137 0.02399948 0) (0.4288418042 0.02399948 0) (0.4429470947 0.02399948 0) (0.4570523853 0.02399948 0) (0.4711576758 0.02399948 0) (0.4852629663 0.02399948 0) (0.4993682568 0.02399948 0) (0.5134735474 0.02399948 0) (0.5275788379 0.02399948 0) (0.5416841284 0.02399948 0) (0.5557894189 0.02399948 0) (0.5698947095 0.02399948 0) (0.584 0.02399948 0) (0.31599948 0.02999935 0) (0.3301047705 0.02999935 0) (0.3442100611 0.02999935 0) (0.3583153516 0.02999935 0) (0.3724206421 0.02999935 0) (0.3865259326 0.02999935 0) (0.4006312232 0.02999935 0) (0.4147365137 0.02999935 0) (0.4288418042 0.02999935 0) (0.4429470947 0.02999935 0) (0.4570523853 0.02999935 0) (0.4711576758 0.02999935 0) (0.4852629663 0.02999935 0) (0.4993682568 0.02999935 0) (0.5134735474 0.02999935 0) (0.5275788379 0.02999935 0) (0.5416841284 0.02999935 0) (0.5557894189 0.02999935 0) (0.5698947095 0.02999935 0) (0.584 0.02999935 0) (0.31599948 0.03599922 0) (0.3301047705 0.03599922 0) (0.3442100611 0.03599922 0) (0.3583153516 0.03599922 0) (0.3724206421 0.03599922 0) (0.3865259326 0.03599922 0) (0.4006312232 0.03599922 0) (0.4147365137 0.03599922 0) (0.4288418042 0.03599922 0) (0.4429470947 0.03599922 0) (0.4570523853 0.03599922 0) (0.4711576758 0.03599922 0) (0.4852629663 0.03599922 0) (0.4993682568 0.03599922 0) (0.5134735474 0.03599922 0) (0.5275788379 0.03599922 0) (0.5416841284 0.03599922 0) (0.5557894189 0.03599922 0) (0.5698947095 0.03599922 0) (0.584 0.03599922 0) (0.31599948 0.04199909 0) (0.3301047705 0.04199909 0) (0.3442100611 0.04199909 0) (0.3583153516 0.04199909 0) (0.3724206421 0.04199909 0) (0.3865259326 0.04199909 0) (0.4006312232 0.04199909 0) (0.4147365137 0.04199909 0) (0.4288418042 0.04199909 0) (0.4429470947 0.04199909 0) (0.4570523853 0.04199909 0) (0.4711576758 0.04199909 0) (0.4852629663 0.04199909 0) (0.4993682568 0.04199909 0) (0.5134735474 0.04199909 0) (0.5275788379 0.04199909 0) (0.5416841284 0.04199909 0) (0.5557894189 0.04199909 0) (0.5698947095 0.04199909 0) (0.584 0.04199909 0) (0.31599948 0.04799896 0) (0.3301047705 0.04799896 0) (0.3442100611 0.04799896 0) (0.3583153516 0.04799896 0) (0.3724206421 0.04799896 0) (0.3865259326 0.04799896 0) (0.4006312232 0.04799896 0) (0.4147365137 0.04799896 0) (0.4288418042 0.04799896 0) (0.4429470947 0.04799896 0) (0.4570523853 0.04799896 0) (0.4711576758 0.04799896 0) (0.4852629663 0.04799896 0) (0.4993682568 0.04799896 0) (0.5134735474 0.04799896 0) (0.5275788379 0.04799896 0) (0.5416841284 0.04799896 0) (0.5557894189 0.04799896 0) (0.5698947095 0.04799896 0) (0.584 0.04799896 0) (0.31599948 0 0.0146) (0.3301047705 0 0.0146) (0.3442100611 0 0.0146) (0.3583153516 0 0.0146) (0.3724206421 0 0.0146) (0.3865259326 0 0.0146) (0.4006312232 0 0.0146) (0.4147365137 0 0.0146) (0.4288418042 0 0.0146) (0.4429470947 0 0.0146) (0.4570523853 0 0.0146) (0.4711576758 0 0.0146) (0.4852629663 0 0.0146) (0.4993682568 0 0.0146) (0.5134735474 0 0.0146) (0.5275788379 0 0.0146) (0.5416841284 0 0.0146) (0.5557894189 0 0.0146) (0.5698947095 0 0.0146) (0.584 0 0.0146) (0.31599948 0.00599987 0.0146) (0.3301047705 0.00599987 0.0146) (0.3442100611 0.00599987 0.0146) (0.3583153516 0.00599987 0.0146) (0.3724206421 0.00599987 0.0146) (0.3865259326 0.00599987 0.0146) (0.4006312232 0.00599987 0.0146) (0.4147365137 0.00599987 0.0146) (0.4288418042 0.00599987 0.0146) (0.4429470947 0.00599987 0.0146) (0.4570523853 0.00599987 0.0146) (0.4711576758 0.00599987 0.0146) (0.4852629663 0.00599987 0.0146) (0.4993682568 0.00599987 0.0146) (0.5134735474 0.00599987 0.0146) (0.5275788379 0.00599987 0.0146) (0.5416841284 0.00599987 0.0146) (0.5557894189 0.00599987 0.0146) (0.5698947095 0.00599987 0.0146) (0.584 0.00599987 0.0146) (0.31599948 0.01199974 0.0146) (0.3301047705 0.01199974 0.0146) (0.3442100611 0.01199974 0.0146) (0.3583153516 0.01199974 0.0146) (0.3724206421 0.01199974 0.0146) (0.3865259326 0.01199974 0.0146) (0.4006312232 0.01199974 0.0146) (0.4147365137 0.01199974 0.0146) (0.4288418042 0.01199974 0.0146) (0.4429470947 0.01199974 0.0146) (0.4570523853 0.01199974 0.0146) (0.4711576758 0.01199974 0.0146) (0.4852629663 0.01199974 0.0146) (0.4993682568 0.01199974 0.0146) (0.5134735474 0.01199974 0.0146) (0.5275788379 0.01199974 0.0146) (0.5416841284 0.01199974 0.0146) (0.5557894189 0.01199974 0.0146) (0.5698947095 0.01199974 0.0146) (0.584 0.01199974 0.0146) (0.31599948 0.01799961 0.0146) (0.3301047705 0.01799961 0.0146) (0.3442100611 0.01799961 0.0146) (0.3583153516 0.01799961 0.0146) (0.3724206421 0.01799961 0.0146) (0.3865259326 0.01799961 0.0146) (0.4006312232 0.01799961 0.0146) (0.4147365137 0.01799961 0.0146) (0.4288418042 0.01799961 0.0146) (0.4429470947 0.01799961 0.0146) (0.4570523853 0.01799961 0.0146) (0.4711576758 0.01799961 0.0146) (0.4852629663 0.01799961 0.0146) (0.4993682568 0.01799961 0.0146) (0.5134735474 0.01799961 0.0146) (0.5275788379 0.01799961 0.0146) (0.5416841284 0.01799961 0.0146) (0.5557894189 0.01799961 0.0146) (0.5698947095 0.01799961 0.0146) (0.584 0.01799961 0.0146) (0.31599948 0.02399948 0.0146) (0.3301047705 0.02399948 0.0146) (0.3442100611 0.02399948 0.0146) (0.3583153516 0.02399948 0.0146) (0.3724206421 0.02399948 0.0146) (0.3865259326 0.02399948 0.0146) (0.4006312232 0.02399948 0.0146) (0.4147365137 0.02399948 0.0146) (0.4288418042 0.02399948 0.0146) (0.4429470947 0.02399948 0.0146) (0.4570523853 0.02399948 0.0146) (0.4711576758 0.02399948 0.0146) (0.4852629663 0.02399948 0.0146) (0.4993682568 0.02399948 0.0146) (0.5134735474 0.02399948 0.0146) (0.5275788379 0.02399948 0.0146) (0.5416841284 0.02399948 0.0146) (0.5557894189 0.02399948 0.0146) (0.5698947095 0.02399948 0.0146) (0.584 0.02399948 0.0146) (0.31599948 0.02999935 0.0146) (0.3301047705 0.02999935 0.0146) (0.3442100611 0.02999935 0.0146) (0.3583153516 0.02999935 0.0146) (0.3724206421 0.02999935 0.0146) (0.3865259326 0.02999935 0.0146) (0.4006312232 0.02999935 0.0146) (0.4147365137 0.02999935 0.0146) (0.4288418042 0.02999935 0.0146) (0.4429470947 0.02999935 0.0146) (0.4570523853 0.02999935 0.0146) (0.4711576758 0.02999935 0.0146) (0.4852629663 0.02999935 0.0146) (0.4993682568 0.02999935 0.0146) (0.5134735474 0.02999935 0.0146) (0.5275788379 0.02999935 0.0146) (0.5416841284 0.02999935 0.0146) (0.5557894189 0.02999935 0.0146) (0.5698947095 0.02999935 0.0146) (0.584 0.02999935 0.0146) (0.31599948 0.03599922 0.0146) (0.3301047705 0.03599922 0.0146) (0.3442100611 0.03599922 0.0146) (0.3583153516 0.03599922 0.0146) (0.3724206421 0.03599922 0.0146) (0.3865259326 0.03599922 0.0146) (0.4006312232 0.03599922 0.0146) (0.4147365137 0.03599922 0.0146) (0.4288418042 0.03599922 0.0146) (0.4429470947 0.03599922 0.0146) (0.4570523853 0.03599922 0.0146) (0.4711576758 0.03599922 0.0146) (0.4852629663 0.03599922 0.0146) (0.4993682568 0.03599922 0.0146) (0.5134735474 0.03599922 0.0146) (0.5275788379 0.03599922 0.0146) (0.5416841284 0.03599922 0.0146) (0.5557894189 0.03599922 0.0146) (0.5698947095 0.03599922 0.0146) (0.584 0.03599922 0.0146) (0.31599948 0.04199909 0.0146) (0.3301047705 0.04199909 0.0146) (0.3442100611 0.04199909 0.0146) (0.3583153516 0.04199909 0.0146) (0.3724206421 0.04199909 0.0146) (0.3865259326 0.04199909 0.0146) (0.4006312232 0.04199909 0.0146) (0.4147365137 0.04199909 0.0146) (0.4288418042 0.04199909 0.0146) (0.4429470947 0.04199909 0.0146) (0.4570523853 0.04199909 0.0146) (0.4711576758 0.04199909 0.0146) (0.4852629663 0.04199909 0.0146) (0.4993682568 0.04199909 0.0146) (0.5134735474 0.04199909 0.0146) (0.5275788379 0.04199909 0.0146) (0.5416841284 0.04199909 0.0146) (0.5557894189 0.04199909 0.0146) (0.5698947095 0.04199909 0.0146) (0.584 0.04199909 0.0146) (0.31599948 0.04799896 0.0146) (0.3301047705 0.04799896 0.0146) (0.3442100611 0.04799896 0.0146) (0.3583153516 0.04799896 0.0146) (0.3724206421 0.04799896 0.0146) (0.3865259326 0.04799896 0.0146) (0.4006312232 0.04799896 0.0146) (0.4147365137 0.04799896 0.0146) (0.4288418042 0.04799896 0.0146) (0.4429470947 0.04799896 0.0146) (0.4570523853 0.04799896 0.0146) (0.4711576758 0.04799896 0.0146) (0.4852629663 0.04799896 0.0146) (0.4993682568 0.04799896 0.0146) (0.5134735474 0.04799896 0.0146) (0.5275788379 0.04799896 0.0146) (0.5416841284 0.04799896 0.0146) (0.5557894189 0.04799896 0.0146) (0.5698947095 0.04799896 0.0146) (0.584 0.04799896 0.0146) (0 0.06076088952 0) (0.01269565217 0.06076088952 0) (0.02539130435 0.06076088952 0) (0.03808695652 0.06076088952 0) (0.0507826087 0.06076088952 0) (0.06347826087 0.06076088952 0) (0.07617391304 0.06076088952 0) (0.08886956522 0.06076088952 0) (0.1015652174 0.06076088952 0) (0.1142608696 0.06076088952 0) (0.1269565217 0.06076088952 0) (0.1396521739 0.06076088952 0) (0.1523478261 0.06076088952 0) (0.1650434783 0.06076088952 0) (0.1777391304 0.06076088952 0) (0.1904347826 0.06076088952 0) (0.2031304348 0.06076088952 0) (0.215826087 0.06076088952 0) (0.2285217391 0.06076088952 0) (0.2412173913 0.06076088952 0) (0.2539130435 0.06076088952 0) (0.2666086957 0.06076088952 0) (0.2793043478 0.06076088952 0) (0.292 0.06076088952 0) (0 0.07352281905 0) (0.01269565217 0.07352281905 0) (0.02539130435 0.07352281905 0) (0.03808695652 0.07352281905 0) (0.0507826087 0.07352281905 0) (0.06347826087 0.07352281905 0) (0.07617391304 0.07352281905 0) (0.08886956522 0.07352281905 0) (0.1015652174 0.07352281905 0) (0.1142608696 0.07352281905 0) (0.1269565217 0.07352281905 0) (0.1396521739 0.07352281905 0) (0.1523478261 0.07352281905 0) (0.1650434783 0.07352281905 0) (0.1777391304 0.07352281905 0) (0.1904347826 0.07352281905 0) (0.2031304348 0.07352281905 0) (0.215826087 0.07352281905 0) (0.2285217391 0.07352281905 0) (0.2412173913 0.07352281905 0) (0.2539130435 0.07352281905 0) (0.2666086957 0.07352281905 0) (0.2793043478 0.07352281905 0) (0.292 0.07352281905 0) (0 0.08628474857 0) (0.01269565217 0.08628474857 0) (0.02539130435 0.08628474857 0) (0.03808695652 0.08628474857 0) (0.0507826087 0.08628474857 0) (0.06347826087 0.08628474857 0) (0.07617391304 0.08628474857 0) (0.08886956522 0.08628474857 0) (0.1015652174 0.08628474857 0) (0.1142608696 0.08628474857 0) (0.1269565217 0.08628474857 0) (0.1396521739 0.08628474857 0) (0.1523478261 0.08628474857 0) (0.1650434783 0.08628474857 0) (0.1777391304 0.08628474857 0) (0.1904347826 0.08628474857 0) (0.2031304348 0.08628474857 0) (0.215826087 0.08628474857 0) (0.2285217391 0.08628474857 0) (0.2412173913 0.08628474857 0) (0.2539130435 0.08628474857 0) (0.2666086957 0.08628474857 0) (0.2793043478 0.08628474857 0) (0.292 0.08628474857 0) (0 0.0990466781 0) (0.01269565217 0.0990466781 0) (0.02539130435 0.0990466781 0) (0.03808695652 0.0990466781 0) (0.0507826087 0.0990466781 0) (0.06347826087 0.0990466781 0) (0.07617391304 0.0990466781 0) (0.08886956522 0.0990466781 0) (0.1015652174 0.0990466781 0) (0.1142608696 0.0990466781 0) (0.1269565217 0.0990466781 0) (0.1396521739 0.0990466781 0) (0.1523478261 0.0990466781 0) (0.1650434783 0.0990466781 0) (0.1777391304 0.0990466781 0) (0.1904347826 0.0990466781 0) (0.2031304348 0.0990466781 0) (0.215826087 0.0990466781 0) (0.2285217391 0.0990466781 0) (0.2412173913 0.0990466781 0) (0.2539130435 0.0990466781 0) (0.2666086957 0.0990466781 0) (0.2793043478 0.0990466781 0) (0.292 0.0990466781 0) (0 0.1118086076 0) (0.01269565217 0.1118086076 0) (0.02539130435 0.1118086076 0) (0.03808695652 0.1118086076 0) (0.0507826087 0.1118086076 0) (0.06347826087 0.1118086076 0) (0.07617391304 0.1118086076 0) (0.08886956522 0.1118086076 0) (0.1015652174 0.1118086076 0) (0.1142608696 0.1118086076 0) (0.1269565217 0.1118086076 0) (0.1396521739 0.1118086076 0) (0.1523478261 0.1118086076 0) (0.1650434783 0.1118086076 0) (0.1777391304 0.1118086076 0) (0.1904347826 0.1118086076 0) (0.2031304348 0.1118086076 0) (0.215826087 0.1118086076 0) (0.2285217391 0.1118086076 0) (0.2412173913 0.1118086076 0) (0.2539130435 0.1118086076 0) (0.2666086957 0.1118086076 0) (0.2793043478 0.1118086076 0) (0.292 0.1118086076 0) (0 0.1245705371 0) (0.01269565217 0.1245705371 0) (0.02539130435 0.1245705371 0) (0.03808695652 0.1245705371 0) (0.0507826087 0.1245705371 0) (0.06347826087 0.1245705371 0) (0.07617391304 0.1245705371 0) (0.08886956522 0.1245705371 0) (0.1015652174 0.1245705371 0) (0.1142608696 0.1245705371 0) (0.1269565217 0.1245705371 0) (0.1396521739 0.1245705371 0) (0.1523478261 0.1245705371 0) (0.1650434783 0.1245705371 0) (0.1777391304 0.1245705371 0) (0.1904347826 0.1245705371 0) (0.2031304348 0.1245705371 0) (0.215826087 0.1245705371 0) (0.2285217391 0.1245705371 0) (0.2412173913 0.1245705371 0) (0.2539130435 0.1245705371 0) (0.2666086957 0.1245705371 0) (0.2793043478 0.1245705371 0) (0.292 0.1245705371 0) (0 0.1373324667 0) (0.01269565217 0.1373324667 0) (0.02539130435 0.1373324667 0) (0.03808695652 0.1373324667 0) (0.0507826087 0.1373324667 0) (0.06347826087 0.1373324667 0) (0.07617391304 0.1373324667 0) (0.08886956522 0.1373324667 0) (0.1015652174 0.1373324667 0) (0.1142608696 0.1373324667 0) (0.1269565217 0.1373324667 0) (0.1396521739 0.1373324667 0) (0.1523478261 0.1373324667 0) (0.1650434783 0.1373324667 0) (0.1777391304 0.1373324667 0) (0.1904347826 0.1373324667 0) (0.2031304348 0.1373324667 0) (0.215826087 0.1373324667 0) (0.2285217391 0.1373324667 0) (0.2412173913 0.1373324667 0) (0.2539130435 0.1373324667 0) (0.2666086957 0.1373324667 0) (0.2793043478 0.1373324667 0) (0.292 0.1373324667 0) (0 0.1500943962 0) (0.01269565217 0.1500943962 0) (0.02539130435 0.1500943962 0) (0.03808695652 0.1500943962 0) (0.0507826087 0.1500943962 0) (0.06347826087 0.1500943962 0) (0.07617391304 0.1500943962 0) (0.08886956522 0.1500943962 0) (0.1015652174 0.1500943962 0) (0.1142608696 0.1500943962 0) (0.1269565217 0.1500943962 0) (0.1396521739 0.1500943962 0) (0.1523478261 0.1500943962 0) (0.1650434783 0.1500943962 0) (0.1777391304 0.1500943962 0) (0.1904347826 0.1500943962 0) (0.2031304348 0.1500943962 0) (0.215826087 0.1500943962 0) (0.2285217391 0.1500943962 0) (0.2412173913 0.1500943962 0) (0.2539130435 0.1500943962 0) (0.2666086957 0.1500943962 0) (0.2793043478 0.1500943962 0) (0.292 0.1500943962 0) (0 0.1628563257 0) (0.01269565217 0.1628563257 0) (0.02539130435 0.1628563257 0) (0.03808695652 0.1628563257 0) (0.0507826087 0.1628563257 0) (0.06347826087 0.1628563257 0) (0.07617391304 0.1628563257 0) (0.08886956522 0.1628563257 0) (0.1015652174 0.1628563257 0) (0.1142608696 0.1628563257 0) (0.1269565217 0.1628563257 0) (0.1396521739 0.1628563257 0) (0.1523478261 0.1628563257 0) (0.1650434783 0.1628563257 0) (0.1777391304 0.1628563257 0) (0.1904347826 0.1628563257 0) (0.2031304348 0.1628563257 0) (0.215826087 0.1628563257 0) (0.2285217391 0.1628563257 0) (0.2412173913 0.1628563257 0) (0.2539130435 0.1628563257 0) (0.2666086957 0.1628563257 0) (0.2793043478 0.1628563257 0) (0.292 0.1628563257 0) (0 0.1756182552 0) (0.01269565217 0.1756182552 0) (0.02539130435 0.1756182552 0) (0.03808695652 0.1756182552 0) (0.0507826087 0.1756182552 0) (0.06347826087 0.1756182552 0) (0.07617391304 0.1756182552 0) (0.08886956522 0.1756182552 0) (0.1015652174 0.1756182552 0) (0.1142608696 0.1756182552 0) (0.1269565217 0.1756182552 0) (0.1396521739 0.1756182552 0) (0.1523478261 0.1756182552 0) (0.1650434783 0.1756182552 0) (0.1777391304 0.1756182552 0) (0.1904347826 0.1756182552 0) (0.2031304348 0.1756182552 0) (0.215826087 0.1756182552 0) (0.2285217391 0.1756182552 0) (0.2412173913 0.1756182552 0) (0.2539130435 0.1756182552 0) (0.2666086957 0.1756182552 0) (0.2793043478 0.1756182552 0) (0.292 0.1756182552 0) (0 0.1883801848 0) (0.01269565217 0.1883801848 0) (0.02539130435 0.1883801848 0) (0.03808695652 0.1883801848 0) (0.0507826087 0.1883801848 0) (0.06347826087 0.1883801848 0) (0.07617391304 0.1883801848 0) (0.08886956522 0.1883801848 0) (0.1015652174 0.1883801848 0) (0.1142608696 0.1883801848 0) (0.1269565217 0.1883801848 0) (0.1396521739 0.1883801848 0) (0.1523478261 0.1883801848 0) (0.1650434783 0.1883801848 0) (0.1777391304 0.1883801848 0) (0.1904347826 0.1883801848 0) (0.2031304348 0.1883801848 0) (0.215826087 0.1883801848 0) (0.2285217391 0.1883801848 0) (0.2412173913 0.1883801848 0) (0.2539130435 0.1883801848 0) (0.2666086957 0.1883801848 0) (0.2793043478 0.1883801848 0) (0.292 0.1883801848 0) (0 0.2011421143 0) (0.01269565217 0.2011421143 0) (0.02539130435 0.2011421143 0) (0.03808695652 0.2011421143 0) (0.0507826087 0.2011421143 0) (0.06347826087 0.2011421143 0) (0.07617391304 0.2011421143 0) (0.08886956522 0.2011421143 0) (0.1015652174 0.2011421143 0) (0.1142608696 0.2011421143 0) (0.1269565217 0.2011421143 0) (0.1396521739 0.2011421143 0) (0.1523478261 0.2011421143 0) (0.1650434783 0.2011421143 0) (0.1777391304 0.2011421143 0) (0.1904347826 0.2011421143 0) (0.2031304348 0.2011421143 0) (0.215826087 0.2011421143 0) (0.2285217391 0.2011421143 0) (0.2412173913 0.2011421143 0) (0.2539130435 0.2011421143 0) (0.2666086957 0.2011421143 0) (0.2793043478 0.2011421143 0) (0.292 0.2011421143 0) (0 0.2139040438 0) (0.01269565217 0.2139040438 0) (0.02539130435 0.2139040438 0) (0.03808695652 0.2139040438 0) (0.0507826087 0.2139040438 0) (0.06347826087 0.2139040438 0) (0.07617391304 0.2139040438 0) (0.08886956522 0.2139040438 0) (0.1015652174 0.2139040438 0) (0.1142608696 0.2139040438 0) (0.1269565217 0.2139040438 0) (0.1396521739 0.2139040438 0) (0.1523478261 0.2139040438 0) (0.1650434783 0.2139040438 0) (0.1777391304 0.2139040438 0) (0.1904347826 0.2139040438 0) (0.2031304348 0.2139040438 0) (0.215826087 0.2139040438 0) (0.2285217391 0.2139040438 0) (0.2412173913 0.2139040438 0) (0.2539130435 0.2139040438 0) (0.2666086957 0.2139040438 0) (0.2793043478 0.2139040438 0) (0.292 0.2139040438 0) (0 0.2266659733 0) (0.01269565217 0.2266659733 0) (0.02539130435 0.2266659733 0) (0.03808695652 0.2266659733 0) (0.0507826087 0.2266659733 0) (0.06347826087 0.2266659733 0) (0.07617391304 0.2266659733 0) (0.08886956522 0.2266659733 0) (0.1015652174 0.2266659733 0) (0.1142608696 0.2266659733 0) (0.1269565217 0.2266659733 0) (0.1396521739 0.2266659733 0) (0.1523478261 0.2266659733 0) (0.1650434783 0.2266659733 0) (0.1777391304 0.2266659733 0) (0.1904347826 0.2266659733 0) (0.2031304348 0.2266659733 0) (0.215826087 0.2266659733 0) (0.2285217391 0.2266659733 0) (0.2412173913 0.2266659733 0) (0.2539130435 0.2266659733 0) (0.2666086957 0.2266659733 0) (0.2793043478 0.2266659733 0) (0.292 0.2266659733 0) (0 0.2394279029 0) (0.01269565217 0.2394279029 0) (0.02539130435 0.2394279029 0) (0.03808695652 0.2394279029 0) (0.0507826087 0.2394279029 0) (0.06347826087 0.2394279029 0) (0.07617391304 0.2394279029 0) (0.08886956522 0.2394279029 0) (0.1015652174 0.2394279029 0) (0.1142608696 0.2394279029 0) (0.1269565217 0.2394279029 0) (0.1396521739 0.2394279029 0) (0.1523478261 0.2394279029 0) (0.1650434783 0.2394279029 0) (0.1777391304 0.2394279029 0) (0.1904347826 0.2394279029 0) (0.2031304348 0.2394279029 0) (0.215826087 0.2394279029 0) (0.2285217391 0.2394279029 0) (0.2412173913 0.2394279029 0) (0.2539130435 0.2394279029 0) (0.2666086957 0.2394279029 0) (0.2793043478 0.2394279029 0) (0.292 0.2394279029 0) (0 0.2521898324 0) (0.01269565217 0.2521898324 0) (0.02539130435 0.2521898324 0) (0.03808695652 0.2521898324 0) (0.0507826087 0.2521898324 0) (0.06347826087 0.2521898324 0) (0.07617391304 0.2521898324 0) (0.08886956522 0.2521898324 0) (0.1015652174 0.2521898324 0) (0.1142608696 0.2521898324 0) (0.1269565217 0.2521898324 0) (0.1396521739 0.2521898324 0) (0.1523478261 0.2521898324 0) (0.1650434783 0.2521898324 0) (0.1777391304 0.2521898324 0) (0.1904347826 0.2521898324 0) (0.2031304348 0.2521898324 0) (0.215826087 0.2521898324 0) (0.2285217391 0.2521898324 0) (0.2412173913 0.2521898324 0) (0.2539130435 0.2521898324 0) (0.2666086957 0.2521898324 0) (0.2793043478 0.2521898324 0) (0.292 0.2521898324 0) (0 0.2649517619 0) (0.01269565217 0.2649517619 0) (0.02539130435 0.2649517619 0) (0.03808695652 0.2649517619 0) (0.0507826087 0.2649517619 0) (0.06347826087 0.2649517619 0) (0.07617391304 0.2649517619 0) (0.08886956522 0.2649517619 0) (0.1015652174 0.2649517619 0) (0.1142608696 0.2649517619 0) (0.1269565217 0.2649517619 0) (0.1396521739 0.2649517619 0) (0.1523478261 0.2649517619 0) (0.1650434783 0.2649517619 0) (0.1777391304 0.2649517619 0) (0.1904347826 0.2649517619 0) (0.2031304348 0.2649517619 0) (0.215826087 0.2649517619 0) (0.2285217391 0.2649517619 0) (0.2412173913 0.2649517619 0) (0.2539130435 0.2649517619 0) (0.2666086957 0.2649517619 0) (0.2793043478 0.2649517619 0) (0.292 0.2649517619 0) (0 0.2777136914 0) (0.01269565217 0.2777136914 0) (0.02539130435 0.2777136914 0) (0.03808695652 0.2777136914 0) (0.0507826087 0.2777136914 0) (0.06347826087 0.2777136914 0) (0.07617391304 0.2777136914 0) (0.08886956522 0.2777136914 0) (0.1015652174 0.2777136914 0) (0.1142608696 0.2777136914 0) (0.1269565217 0.2777136914 0) (0.1396521739 0.2777136914 0) (0.1523478261 0.2777136914 0) (0.1650434783 0.2777136914 0) (0.1777391304 0.2777136914 0) (0.1904347826 0.2777136914 0) (0.2031304348 0.2777136914 0) (0.215826087 0.2777136914 0) (0.2285217391 0.2777136914 0) (0.2412173913 0.2777136914 0) (0.2539130435 0.2777136914 0) (0.2666086957 0.2777136914 0) (0.2793043478 0.2777136914 0) (0.292 0.2777136914 0) (0 0.290475621 0) (0.01269565217 0.290475621 0) (0.02539130435 0.290475621 0) (0.03808695652 0.290475621 0) (0.0507826087 0.290475621 0) (0.06347826087 0.290475621 0) (0.07617391304 0.290475621 0) (0.08886956522 0.290475621 0) (0.1015652174 0.290475621 0) (0.1142608696 0.290475621 0) (0.1269565217 0.290475621 0) (0.1396521739 0.290475621 0) (0.1523478261 0.290475621 0) (0.1650434783 0.290475621 0) (0.1777391304 0.290475621 0) (0.1904347826 0.290475621 0) (0.2031304348 0.290475621 0) (0.215826087 0.290475621 0) (0.2285217391 0.290475621 0) (0.2412173913 0.290475621 0) (0.2539130435 0.290475621 0) (0.2666086957 0.290475621 0) (0.2793043478 0.290475621 0) (0.292 0.290475621 0) (0 0.3032375505 0) (0.01269565217 0.3032375505 0) (0.02539130435 0.3032375505 0) (0.03808695652 0.3032375505 0) (0.0507826087 0.3032375505 0) (0.06347826087 0.3032375505 0) (0.07617391304 0.3032375505 0) (0.08886956522 0.3032375505 0) (0.1015652174 0.3032375505 0) (0.1142608696 0.3032375505 0) (0.1269565217 0.3032375505 0) (0.1396521739 0.3032375505 0) (0.1523478261 0.3032375505 0) (0.1650434783 0.3032375505 0) (0.1777391304 0.3032375505 0) (0.1904347826 0.3032375505 0) (0.2031304348 0.3032375505 0) (0.215826087 0.3032375505 0) (0.2285217391 0.3032375505 0) (0.2412173913 0.3032375505 0) (0.2539130435 0.3032375505 0) (0.2666086957 0.3032375505 0) (0.2793043478 0.3032375505 0) (0.292 0.3032375505 0) (0 0.31599948 0) (0.01269565217 0.31599948 0) (0.02539130435 0.31599948 0) (0.03808695652 0.31599948 0) (0.0507826087 0.31599948 0) (0.06347826087 0.31599948 0) (0.07617391304 0.31599948 0) (0.08886956522 0.31599948 0) (0.1015652174 0.31599948 0) (0.1142608696 0.31599948 0) (0.1269565217 0.31599948 0) (0.1396521739 0.31599948 0) (0.1523478261 0.31599948 0) (0.1650434783 0.31599948 0) (0.1777391304 0.31599948 0) (0.1904347826 0.31599948 0) (0.2031304348 0.31599948 0) (0.215826087 0.31599948 0) (0.2285217391 0.31599948 0) (0.2412173913 0.31599948 0) (0.2539130435 0.31599948 0) (0.2666086957 0.31599948 0) (0.2793043478 0.31599948 0) (0.292 0.31599948 0) (0 0.3287614095 0) (0.01269565217 0.3287614095 0) (0.02539130435 0.3287614095 0) (0.03808695652 0.3287614095 0) (0.0507826087 0.3287614095 0) (0.06347826087 0.3287614095 0) (0.07617391304 0.3287614095 0) (0.08886956522 0.3287614095 0) (0.1015652174 0.3287614095 0) (0.1142608696 0.3287614095 0) (0.1269565217 0.3287614095 0) (0.1396521739 0.3287614095 0) (0.1523478261 0.3287614095 0) (0.1650434783 0.3287614095 0) (0.1777391304 0.3287614095 0) (0.1904347826 0.3287614095 0) (0.2031304348 0.3287614095 0) (0.215826087 0.3287614095 0) (0.2285217391 0.3287614095 0) (0.2412173913 0.3287614095 0) (0.2539130435 0.3287614095 0) (0.2666086957 0.3287614095 0) (0.2793043478 0.3287614095 0) (0.292 0.3287614095 0) (0 0.341523339 0) (0.01269565217 0.341523339 0) (0.02539130435 0.341523339 0) (0.03808695652 0.341523339 0) (0.0507826087 0.341523339 0) (0.06347826087 0.341523339 0) (0.07617391304 0.341523339 0) (0.08886956522 0.341523339 0) (0.1015652174 0.341523339 0) (0.1142608696 0.341523339 0) (0.1269565217 0.341523339 0) (0.1396521739 0.341523339 0) (0.1523478261 0.341523339 0) (0.1650434783 0.341523339 0) (0.1777391304 0.341523339 0) (0.1904347826 0.341523339 0) (0.2031304348 0.341523339 0) (0.215826087 0.341523339 0) (0.2285217391 0.341523339 0) (0.2412173913 0.341523339 0) (0.2539130435 0.341523339 0) (0.2666086957 0.341523339 0) (0.2793043478 0.341523339 0) (0.292 0.341523339 0) (0 0.3542852686 0) (0.01269565217 0.3542852686 0) (0.02539130435 0.3542852686 0) (0.03808695652 0.3542852686 0) (0.0507826087 0.3542852686 0) (0.06347826087 0.3542852686 0) (0.07617391304 0.3542852686 0) (0.08886956522 0.3542852686 0) (0.1015652174 0.3542852686 0) (0.1142608696 0.3542852686 0) (0.1269565217 0.3542852686 0) (0.1396521739 0.3542852686 0) (0.1523478261 0.3542852686 0) (0.1650434783 0.3542852686 0) (0.1777391304 0.3542852686 0) (0.1904347826 0.3542852686 0) (0.2031304348 0.3542852686 0) (0.215826087 0.3542852686 0) (0.2285217391 0.3542852686 0) (0.2412173913 0.3542852686 0) (0.2539130435 0.3542852686 0) (0.2666086957 0.3542852686 0) (0.2793043478 0.3542852686 0) (0.292 0.3542852686 0) (0 0.3670471981 0) (0.01269565217 0.3670471981 0) (0.02539130435 0.3670471981 0) (0.03808695652 0.3670471981 0) (0.0507826087 0.3670471981 0) (0.06347826087 0.3670471981 0) (0.07617391304 0.3670471981 0) (0.08886956522 0.3670471981 0) (0.1015652174 0.3670471981 0) (0.1142608696 0.3670471981 0) (0.1269565217 0.3670471981 0) (0.1396521739 0.3670471981 0) (0.1523478261 0.3670471981 0) (0.1650434783 0.3670471981 0) (0.1777391304 0.3670471981 0) (0.1904347826 0.3670471981 0) (0.2031304348 0.3670471981 0) (0.215826087 0.3670471981 0) (0.2285217391 0.3670471981 0) (0.2412173913 0.3670471981 0) (0.2539130435 0.3670471981 0) (0.2666086957 0.3670471981 0) (0.2793043478 0.3670471981 0) (0.292 0.3670471981 0) (0 0.3798091276 0) (0.01269565217 0.3798091276 0) (0.02539130435 0.3798091276 0) (0.03808695652 0.3798091276 0) (0.0507826087 0.3798091276 0) (0.06347826087 0.3798091276 0) (0.07617391304 0.3798091276 0) (0.08886956522 0.3798091276 0) (0.1015652174 0.3798091276 0) (0.1142608696 0.3798091276 0) (0.1269565217 0.3798091276 0) (0.1396521739 0.3798091276 0) (0.1523478261 0.3798091276 0) (0.1650434783 0.3798091276 0) (0.1777391304 0.3798091276 0) (0.1904347826 0.3798091276 0) (0.2031304348 0.3798091276 0) (0.215826087 0.3798091276 0) (0.2285217391 0.3798091276 0) (0.2412173913 0.3798091276 0) (0.2539130435 0.3798091276 0) (0.2666086957 0.3798091276 0) (0.2793043478 0.3798091276 0) (0.292 0.3798091276 0) (0 0.3925710571 0) (0.01269565217 0.3925710571 0) (0.02539130435 0.3925710571 0) (0.03808695652 0.3925710571 0) (0.0507826087 0.3925710571 0) (0.06347826087 0.3925710571 0) (0.07617391304 0.3925710571 0) (0.08886956522 0.3925710571 0) (0.1015652174 0.3925710571 0) (0.1142608696 0.3925710571 0) (0.1269565217 0.3925710571 0) (0.1396521739 0.3925710571 0) (0.1523478261 0.3925710571 0) (0.1650434783 0.3925710571 0) (0.1777391304 0.3925710571 0) (0.1904347826 0.3925710571 0) (0.2031304348 0.3925710571 0) (0.215826087 0.3925710571 0) (0.2285217391 0.3925710571 0) (0.2412173913 0.3925710571 0) (0.2539130435 0.3925710571 0) (0.2666086957 0.3925710571 0) (0.2793043478 0.3925710571 0) (0.292 0.3925710571 0) (0 0.4053329867 0) (0.01269565217 0.4053329867 0) (0.02539130435 0.4053329867 0) (0.03808695652 0.4053329867 0) (0.0507826087 0.4053329867 0) (0.06347826087 0.4053329867 0) (0.07617391304 0.4053329867 0) (0.08886956522 0.4053329867 0) (0.1015652174 0.4053329867 0) (0.1142608696 0.4053329867 0) (0.1269565217 0.4053329867 0) (0.1396521739 0.4053329867 0) (0.1523478261 0.4053329867 0) (0.1650434783 0.4053329867 0) (0.1777391304 0.4053329867 0) (0.1904347826 0.4053329867 0) (0.2031304348 0.4053329867 0) (0.215826087 0.4053329867 0) (0.2285217391 0.4053329867 0) (0.2412173913 0.4053329867 0) (0.2539130435 0.4053329867 0) (0.2666086957 0.4053329867 0) (0.2793043478 0.4053329867 0) (0.292 0.4053329867 0) (0 0.4180949162 0) (0.01269565217 0.4180949162 0) (0.02539130435 0.4180949162 0) (0.03808695652 0.4180949162 0) (0.0507826087 0.4180949162 0) (0.06347826087 0.4180949162 0) (0.07617391304 0.4180949162 0) (0.08886956522 0.4180949162 0) (0.1015652174 0.4180949162 0) (0.1142608696 0.4180949162 0) (0.1269565217 0.4180949162 0) (0.1396521739 0.4180949162 0) (0.1523478261 0.4180949162 0) (0.1650434783 0.4180949162 0) (0.1777391304 0.4180949162 0) (0.1904347826 0.4180949162 0) (0.2031304348 0.4180949162 0) (0.215826087 0.4180949162 0) (0.2285217391 0.4180949162 0) (0.2412173913 0.4180949162 0) (0.2539130435 0.4180949162 0) (0.2666086957 0.4180949162 0) (0.2793043478 0.4180949162 0) (0.292 0.4180949162 0) (0 0.4308568457 0) (0.01269565217 0.4308568457 0) (0.02539130435 0.4308568457 0) (0.03808695652 0.4308568457 0) (0.0507826087 0.4308568457 0) (0.06347826087 0.4308568457 0) (0.07617391304 0.4308568457 0) (0.08886956522 0.4308568457 0) (0.1015652174 0.4308568457 0) (0.1142608696 0.4308568457 0) (0.1269565217 0.4308568457 0) (0.1396521739 0.4308568457 0) (0.1523478261 0.4308568457 0) (0.1650434783 0.4308568457 0) (0.1777391304 0.4308568457 0) (0.1904347826 0.4308568457 0) (0.2031304348 0.4308568457 0) (0.215826087 0.4308568457 0) (0.2285217391 0.4308568457 0) (0.2412173913 0.4308568457 0) (0.2539130435 0.4308568457 0) (0.2666086957 0.4308568457 0) (0.2793043478 0.4308568457 0) (0.292 0.4308568457 0) (0 0.4436187752 0) (0.01269565217 0.4436187752 0) (0.02539130435 0.4436187752 0) (0.03808695652 0.4436187752 0) (0.0507826087 0.4436187752 0) (0.06347826087 0.4436187752 0) (0.07617391304 0.4436187752 0) (0.08886956522 0.4436187752 0) (0.1015652174 0.4436187752 0) (0.1142608696 0.4436187752 0) (0.1269565217 0.4436187752 0) (0.1396521739 0.4436187752 0) (0.1523478261 0.4436187752 0) (0.1650434783 0.4436187752 0) (0.1777391304 0.4436187752 0) (0.1904347826 0.4436187752 0) (0.2031304348 0.4436187752 0) (0.215826087 0.4436187752 0) (0.2285217391 0.4436187752 0) (0.2412173913 0.4436187752 0) (0.2539130435 0.4436187752 0) (0.2666086957 0.4436187752 0) (0.2793043478 0.4436187752 0) (0.292 0.4436187752 0) (0 0.4563807048 0) (0.01269565217 0.4563807048 0) (0.02539130435 0.4563807048 0) (0.03808695652 0.4563807048 0) (0.0507826087 0.4563807048 0) (0.06347826087 0.4563807048 0) (0.07617391304 0.4563807048 0) (0.08886956522 0.4563807048 0) (0.1015652174 0.4563807048 0) (0.1142608696 0.4563807048 0) (0.1269565217 0.4563807048 0) (0.1396521739 0.4563807048 0) (0.1523478261 0.4563807048 0) (0.1650434783 0.4563807048 0) (0.1777391304 0.4563807048 0) (0.1904347826 0.4563807048 0) (0.2031304348 0.4563807048 0) (0.215826087 0.4563807048 0) (0.2285217391 0.4563807048 0) (0.2412173913 0.4563807048 0) (0.2539130435 0.4563807048 0) (0.2666086957 0.4563807048 0) (0.2793043478 0.4563807048 0) (0.292 0.4563807048 0) (0 0.4691426343 0) (0.01269565217 0.4691426343 0) (0.02539130435 0.4691426343 0) (0.03808695652 0.4691426343 0) (0.0507826087 0.4691426343 0) (0.06347826087 0.4691426343 0) (0.07617391304 0.4691426343 0) (0.08886956522 0.4691426343 0) (0.1015652174 0.4691426343 0) (0.1142608696 0.4691426343 0) (0.1269565217 0.4691426343 0) (0.1396521739 0.4691426343 0) (0.1523478261 0.4691426343 0) (0.1650434783 0.4691426343 0) (0.1777391304 0.4691426343 0) (0.1904347826 0.4691426343 0) (0.2031304348 0.4691426343 0) (0.215826087 0.4691426343 0) (0.2285217391 0.4691426343 0) (0.2412173913 0.4691426343 0) (0.2539130435 0.4691426343 0) (0.2666086957 0.4691426343 0) (0.2793043478 0.4691426343 0) (0.292 0.4691426343 0) (0 0.4819045638 0) (0.01269565217 0.4819045638 0) (0.02539130435 0.4819045638 0) (0.03808695652 0.4819045638 0) (0.0507826087 0.4819045638 0) (0.06347826087 0.4819045638 0) (0.07617391304 0.4819045638 0) (0.08886956522 0.4819045638 0) (0.1015652174 0.4819045638 0) (0.1142608696 0.4819045638 0) (0.1269565217 0.4819045638 0) (0.1396521739 0.4819045638 0) (0.1523478261 0.4819045638 0) (0.1650434783 0.4819045638 0) (0.1777391304 0.4819045638 0) (0.1904347826 0.4819045638 0) (0.2031304348 0.4819045638 0) (0.215826087 0.4819045638 0) (0.2285217391 0.4819045638 0) (0.2412173913 0.4819045638 0) (0.2539130435 0.4819045638 0) (0.2666086957 0.4819045638 0) (0.2793043478 0.4819045638 0) (0.292 0.4819045638 0) (0 0.4946664933 0) (0.01269565217 0.4946664933 0) (0.02539130435 0.4946664933 0) (0.03808695652 0.4946664933 0) (0.0507826087 0.4946664933 0) (0.06347826087 0.4946664933 0) (0.07617391304 0.4946664933 0) (0.08886956522 0.4946664933 0) (0.1015652174 0.4946664933 0) (0.1142608696 0.4946664933 0) (0.1269565217 0.4946664933 0) (0.1396521739 0.4946664933 0) (0.1523478261 0.4946664933 0) (0.1650434783 0.4946664933 0) (0.1777391304 0.4946664933 0) (0.1904347826 0.4946664933 0) (0.2031304348 0.4946664933 0) (0.215826087 0.4946664933 0) (0.2285217391 0.4946664933 0) (0.2412173913 0.4946664933 0) (0.2539130435 0.4946664933 0) (0.2666086957 0.4946664933 0) (0.2793043478 0.4946664933 0) (0.292 0.4946664933 0) (0 0.5074284229 0) (0.01269565217 0.5074284229 0) (0.02539130435 0.5074284229 0) (0.03808695652 0.5074284229 0) (0.0507826087 0.5074284229 0) (0.06347826087 0.5074284229 0) (0.07617391304 0.5074284229 0) (0.08886956522 0.5074284229 0) (0.1015652174 0.5074284229 0) (0.1142608696 0.5074284229 0) (0.1269565217 0.5074284229 0) (0.1396521739 0.5074284229 0) (0.1523478261 0.5074284229 0) (0.1650434783 0.5074284229 0) (0.1777391304 0.5074284229 0) (0.1904347826 0.5074284229 0) (0.2031304348 0.5074284229 0) (0.215826087 0.5074284229 0) (0.2285217391 0.5074284229 0) (0.2412173913 0.5074284229 0) (0.2539130435 0.5074284229 0) (0.2666086957 0.5074284229 0) (0.2793043478 0.5074284229 0) (0.292 0.5074284229 0) (0 0.5201903524 0) (0.01269565217 0.5201903524 0) (0.02539130435 0.5201903524 0) (0.03808695652 0.5201903524 0) (0.0507826087 0.5201903524 0) (0.06347826087 0.5201903524 0) (0.07617391304 0.5201903524 0) (0.08886956522 0.5201903524 0) (0.1015652174 0.5201903524 0) (0.1142608696 0.5201903524 0) (0.1269565217 0.5201903524 0) (0.1396521739 0.5201903524 0) (0.1523478261 0.5201903524 0) (0.1650434783 0.5201903524 0) (0.1777391304 0.5201903524 0) (0.1904347826 0.5201903524 0) (0.2031304348 0.5201903524 0) (0.215826087 0.5201903524 0) (0.2285217391 0.5201903524 0) (0.2412173913 0.5201903524 0) (0.2539130435 0.5201903524 0) (0.2666086957 0.5201903524 0) (0.2793043478 0.5201903524 0) (0.292 0.5201903524 0) (0 0.5329522819 0) (0.01269565217 0.5329522819 0) (0.02539130435 0.5329522819 0) (0.03808695652 0.5329522819 0) (0.0507826087 0.5329522819 0) (0.06347826087 0.5329522819 0) (0.07617391304 0.5329522819 0) (0.08886956522 0.5329522819 0) (0.1015652174 0.5329522819 0) (0.1142608696 0.5329522819 0) (0.1269565217 0.5329522819 0) (0.1396521739 0.5329522819 0) (0.1523478261 0.5329522819 0) (0.1650434783 0.5329522819 0) (0.1777391304 0.5329522819 0) (0.1904347826 0.5329522819 0) (0.2031304348 0.5329522819 0) (0.215826087 0.5329522819 0) (0.2285217391 0.5329522819 0) (0.2412173913 0.5329522819 0) (0.2539130435 0.5329522819 0) (0.2666086957 0.5329522819 0) (0.2793043478 0.5329522819 0) (0.292 0.5329522819 0) (0 0.5457142114 0) (0.01269565217 0.5457142114 0) (0.02539130435 0.5457142114 0) (0.03808695652 0.5457142114 0) (0.0507826087 0.5457142114 0) (0.06347826087 0.5457142114 0) (0.07617391304 0.5457142114 0) (0.08886956522 0.5457142114 0) (0.1015652174 0.5457142114 0) (0.1142608696 0.5457142114 0) (0.1269565217 0.5457142114 0) (0.1396521739 0.5457142114 0) (0.1523478261 0.5457142114 0) (0.1650434783 0.5457142114 0) (0.1777391304 0.5457142114 0) (0.1904347826 0.5457142114 0) (0.2031304348 0.5457142114 0) (0.215826087 0.5457142114 0) (0.2285217391 0.5457142114 0) (0.2412173913 0.5457142114 0) (0.2539130435 0.5457142114 0) (0.2666086957 0.5457142114 0) (0.2793043478 0.5457142114 0) (0.292 0.5457142114 0) (0 0.558476141 0) (0.01269565217 0.558476141 0) (0.02539130435 0.558476141 0) (0.03808695652 0.558476141 0) (0.0507826087 0.558476141 0) (0.06347826087 0.558476141 0) (0.07617391304 0.558476141 0) (0.08886956522 0.558476141 0) (0.1015652174 0.558476141 0) (0.1142608696 0.558476141 0) (0.1269565217 0.558476141 0) (0.1396521739 0.558476141 0) (0.1523478261 0.558476141 0) (0.1650434783 0.558476141 0) (0.1777391304 0.558476141 0) (0.1904347826 0.558476141 0) (0.2031304348 0.558476141 0) (0.215826087 0.558476141 0) (0.2285217391 0.558476141 0) (0.2412173913 0.558476141 0) (0.2539130435 0.558476141 0) (0.2666086957 0.558476141 0) (0.2793043478 0.558476141 0) (0.292 0.558476141 0) (0 0.5712380705 0) (0.01269565217 0.5712380705 0) (0.02539130435 0.5712380705 0) (0.03808695652 0.5712380705 0) (0.0507826087 0.5712380705 0) (0.06347826087 0.5712380705 0) (0.07617391304 0.5712380705 0) (0.08886956522 0.5712380705 0) (0.1015652174 0.5712380705 0) (0.1142608696 0.5712380705 0) (0.1269565217 0.5712380705 0) (0.1396521739 0.5712380705 0) (0.1523478261 0.5712380705 0) (0.1650434783 0.5712380705 0) (0.1777391304 0.5712380705 0) (0.1904347826 0.5712380705 0) (0.2031304348 0.5712380705 0) (0.215826087 0.5712380705 0) (0.2285217391 0.5712380705 0) (0.2412173913 0.5712380705 0) (0.2539130435 0.5712380705 0) (0.2666086957 0.5712380705 0) (0.2793043478 0.5712380705 0) (0.292 0.5712380705 0) (0 0.584 0) (0.01269565217 0.584 0) (0.02539130435 0.584 0) (0.03808695652 0.584 0) (0.0507826087 0.584 0) (0.06347826087 0.584 0) (0.07617391304 0.584 0) (0.08886956522 0.584 0) (0.1015652174 0.584 0) (0.1142608696 0.584 0) (0.1269565217 0.584 0) (0.1396521739 0.584 0) (0.1523478261 0.584 0) (0.1650434783 0.584 0) (0.1777391304 0.584 0) (0.1904347826 0.584 0) (0.2031304348 0.584 0) (0.215826087 0.584 0) (0.2285217391 0.584 0) (0.2412173913 0.584 0) (0.2539130435 0.584 0) (0.2666086957 0.584 0) (0.2793043478 0.584 0) (0.292 0.584 0) (0 0.06076088952 0.0146) (0.01269565217 0.06076088952 0.0146) (0.02539130435 0.06076088952 0.0146) (0.03808695652 0.06076088952 0.0146) (0.0507826087 0.06076088952 0.0146) (0.06347826087 0.06076088952 0.0146) (0.07617391304 0.06076088952 0.0146) (0.08886956522 0.06076088952 0.0146) (0.1015652174 0.06076088952 0.0146) (0.1142608696 0.06076088952 0.0146) (0.1269565217 0.06076088952 0.0146) (0.1396521739 0.06076088952 0.0146) (0.1523478261 0.06076088952 0.0146) (0.1650434783 0.06076088952 0.0146) (0.1777391304 0.06076088952 0.0146) (0.1904347826 0.06076088952 0.0146) (0.2031304348 0.06076088952 0.0146) (0.215826087 0.06076088952 0.0146) (0.2285217391 0.06076088952 0.0146) (0.2412173913 0.06076088952 0.0146) (0.2539130435 0.06076088952 0.0146) (0.2666086957 0.06076088952 0.0146) (0.2793043478 0.06076088952 0.0146) (0.292 0.06076088952 0.0146) (0 0.07352281905 0.0146) (0.01269565217 0.07352281905 0.0146) (0.02539130435 0.07352281905 0.0146) (0.03808695652 0.07352281905 0.0146) (0.0507826087 0.07352281905 0.0146) (0.06347826087 0.07352281905 0.0146) (0.07617391304 0.07352281905 0.0146) (0.08886956522 0.07352281905 0.0146) (0.1015652174 0.07352281905 0.0146) (0.1142608696 0.07352281905 0.0146) (0.1269565217 0.07352281905 0.0146) (0.1396521739 0.07352281905 0.0146) (0.1523478261 0.07352281905 0.0146) (0.1650434783 0.07352281905 0.0146) (0.1777391304 0.07352281905 0.0146) (0.1904347826 0.07352281905 0.0146) (0.2031304348 0.07352281905 0.0146) (0.215826087 0.07352281905 0.0146) (0.2285217391 0.07352281905 0.0146) (0.2412173913 0.07352281905 0.0146) (0.2539130435 0.07352281905 0.0146) (0.2666086957 0.07352281905 0.0146) (0.2793043478 0.07352281905 0.0146) (0.292 0.07352281905 0.0146) (0 0.08628474857 0.0146) (0.01269565217 0.08628474857 0.0146) (0.02539130435 0.08628474857 0.0146) (0.03808695652 0.08628474857 0.0146) (0.0507826087 0.08628474857 0.0146) (0.06347826087 0.08628474857 0.0146) (0.07617391304 0.08628474857 0.0146) (0.08886956522 0.08628474857 0.0146) (0.1015652174 0.08628474857 0.0146) (0.1142608696 0.08628474857 0.0146) (0.1269565217 0.08628474857 0.0146) (0.1396521739 0.08628474857 0.0146) (0.1523478261 0.08628474857 0.0146) (0.1650434783 0.08628474857 0.0146) (0.1777391304 0.08628474857 0.0146) (0.1904347826 0.08628474857 0.0146) (0.2031304348 0.08628474857 0.0146) (0.215826087 0.08628474857 0.0146) (0.2285217391 0.08628474857 0.0146) (0.2412173913 0.08628474857 0.0146) (0.2539130435 0.08628474857 0.0146) (0.2666086957 0.08628474857 0.0146) (0.2793043478 0.08628474857 0.0146) (0.292 0.08628474857 0.0146) (0 0.0990466781 0.0146) (0.01269565217 0.0990466781 0.0146) (0.02539130435 0.0990466781 0.0146) (0.03808695652 0.0990466781 0.0146) (0.0507826087 0.0990466781 0.0146) (0.06347826087 0.0990466781 0.0146) (0.07617391304 0.0990466781 0.0146) (0.08886956522 0.0990466781 0.0146) (0.1015652174 0.0990466781 0.0146) (0.1142608696 0.0990466781 0.0146) (0.1269565217 0.0990466781 0.0146) (0.1396521739 0.0990466781 0.0146) (0.1523478261 0.0990466781 0.0146) (0.1650434783 0.0990466781 0.0146) (0.1777391304 0.0990466781 0.0146) (0.1904347826 0.0990466781 0.0146) (0.2031304348 0.0990466781 0.0146) (0.215826087 0.0990466781 0.0146) (0.2285217391 0.0990466781 0.0146) (0.2412173913 0.0990466781 0.0146) (0.2539130435 0.0990466781 0.0146) (0.2666086957 0.0990466781 0.0146) (0.2793043478 0.0990466781 0.0146) (0.292 0.0990466781 0.0146) (0 0.1118086076 0.0146) (0.01269565217 0.1118086076 0.0146) (0.02539130435 0.1118086076 0.0146) (0.03808695652 0.1118086076 0.0146) (0.0507826087 0.1118086076 0.0146) (0.06347826087 0.1118086076 0.0146) (0.07617391304 0.1118086076 0.0146) (0.08886956522 0.1118086076 0.0146) (0.1015652174 0.1118086076 0.0146) (0.1142608696 0.1118086076 0.0146) (0.1269565217 0.1118086076 0.0146) (0.1396521739 0.1118086076 0.0146) (0.1523478261 0.1118086076 0.0146) (0.1650434783 0.1118086076 0.0146) (0.1777391304 0.1118086076 0.0146) (0.1904347826 0.1118086076 0.0146) (0.2031304348 0.1118086076 0.0146) (0.215826087 0.1118086076 0.0146) (0.2285217391 0.1118086076 0.0146) (0.2412173913 0.1118086076 0.0146) (0.2539130435 0.1118086076 0.0146) (0.2666086957 0.1118086076 0.0146) (0.2793043478 0.1118086076 0.0146) (0.292 0.1118086076 0.0146) (0 0.1245705371 0.0146) (0.01269565217 0.1245705371 0.0146) (0.02539130435 0.1245705371 0.0146) (0.03808695652 0.1245705371 0.0146) (0.0507826087 0.1245705371 0.0146) (0.06347826087 0.1245705371 0.0146) (0.07617391304 0.1245705371 0.0146) (0.08886956522 0.1245705371 0.0146) (0.1015652174 0.1245705371 0.0146) (0.1142608696 0.1245705371 0.0146) (0.1269565217 0.1245705371 0.0146) (0.1396521739 0.1245705371 0.0146) (0.1523478261 0.1245705371 0.0146) (0.1650434783 0.1245705371 0.0146) (0.1777391304 0.1245705371 0.0146) (0.1904347826 0.1245705371 0.0146) (0.2031304348 0.1245705371 0.0146) (0.215826087 0.1245705371 0.0146) (0.2285217391 0.1245705371 0.0146) (0.2412173913 0.1245705371 0.0146) (0.2539130435 0.1245705371 0.0146) (0.2666086957 0.1245705371 0.0146) (0.2793043478 0.1245705371 0.0146) (0.292 0.1245705371 0.0146) (0 0.1373324667 0.0146) (0.01269565217 0.1373324667 0.0146) (0.02539130435 0.1373324667 0.0146) (0.03808695652 0.1373324667 0.0146) (0.0507826087 0.1373324667 0.0146) (0.06347826087 0.1373324667 0.0146) (0.07617391304 0.1373324667 0.0146) (0.08886956522 0.1373324667 0.0146) (0.1015652174 0.1373324667 0.0146) (0.1142608696 0.1373324667 0.0146) (0.1269565217 0.1373324667 0.0146) (0.1396521739 0.1373324667 0.0146) (0.1523478261 0.1373324667 0.0146) (0.1650434783 0.1373324667 0.0146) (0.1777391304 0.1373324667 0.0146) (0.1904347826 0.1373324667 0.0146) (0.2031304348 0.1373324667 0.0146) (0.215826087 0.1373324667 0.0146) (0.2285217391 0.1373324667 0.0146) (0.2412173913 0.1373324667 0.0146) (0.2539130435 0.1373324667 0.0146) (0.2666086957 0.1373324667 0.0146) (0.2793043478 0.1373324667 0.0146) (0.292 0.1373324667 0.0146) (0 0.1500943962 0.0146) (0.01269565217 0.1500943962 0.0146) (0.02539130435 0.1500943962 0.0146) (0.03808695652 0.1500943962 0.0146) (0.0507826087 0.1500943962 0.0146) (0.06347826087 0.1500943962 0.0146) (0.07617391304 0.1500943962 0.0146) (0.08886956522 0.1500943962 0.0146) (0.1015652174 0.1500943962 0.0146) (0.1142608696 0.1500943962 0.0146) (0.1269565217 0.1500943962 0.0146) (0.1396521739 0.1500943962 0.0146) (0.1523478261 0.1500943962 0.0146) (0.1650434783 0.1500943962 0.0146) (0.1777391304 0.1500943962 0.0146) (0.1904347826 0.1500943962 0.0146) (0.2031304348 0.1500943962 0.0146) (0.215826087 0.1500943962 0.0146) (0.2285217391 0.1500943962 0.0146) (0.2412173913 0.1500943962 0.0146) (0.2539130435 0.1500943962 0.0146) (0.2666086957 0.1500943962 0.0146) (0.2793043478 0.1500943962 0.0146) (0.292 0.1500943962 0.0146) (0 0.1628563257 0.0146) (0.01269565217 0.1628563257 0.0146) (0.02539130435 0.1628563257 0.0146) (0.03808695652 0.1628563257 0.0146) (0.0507826087 0.1628563257 0.0146) (0.06347826087 0.1628563257 0.0146) (0.07617391304 0.1628563257 0.0146) (0.08886956522 0.1628563257 0.0146) (0.1015652174 0.1628563257 0.0146) (0.1142608696 0.1628563257 0.0146) (0.1269565217 0.1628563257 0.0146) (0.1396521739 0.1628563257 0.0146) (0.1523478261 0.1628563257 0.0146) (0.1650434783 0.1628563257 0.0146) (0.1777391304 0.1628563257 0.0146) (0.1904347826 0.1628563257 0.0146) (0.2031304348 0.1628563257 0.0146) (0.215826087 0.1628563257 0.0146) (0.2285217391 0.1628563257 0.0146) (0.2412173913 0.1628563257 0.0146) (0.2539130435 0.1628563257 0.0146) (0.2666086957 0.1628563257 0.0146) (0.2793043478 0.1628563257 0.0146) (0.292 0.1628563257 0.0146) (0 0.1756182552 0.0146) (0.01269565217 0.1756182552 0.0146) (0.02539130435 0.1756182552 0.0146) (0.03808695652 0.1756182552 0.0146) (0.0507826087 0.1756182552 0.0146) (0.06347826087 0.1756182552 0.0146) (0.07617391304 0.1756182552 0.0146) (0.08886956522 0.1756182552 0.0146) (0.1015652174 0.1756182552 0.0146) (0.1142608696 0.1756182552 0.0146) (0.1269565217 0.1756182552 0.0146) (0.1396521739 0.1756182552 0.0146) (0.1523478261 0.1756182552 0.0146) (0.1650434783 0.1756182552 0.0146) (0.1777391304 0.1756182552 0.0146) (0.1904347826 0.1756182552 0.0146) (0.2031304348 0.1756182552 0.0146) (0.215826087 0.1756182552 0.0146) (0.2285217391 0.1756182552 0.0146) (0.2412173913 0.1756182552 0.0146) (0.2539130435 0.1756182552 0.0146) (0.2666086957 0.1756182552 0.0146) (0.2793043478 0.1756182552 0.0146) (0.292 0.1756182552 0.0146) (0 0.1883801848 0.0146) (0.01269565217 0.1883801848 0.0146) (0.02539130435 0.1883801848 0.0146) (0.03808695652 0.1883801848 0.0146) (0.0507826087 0.1883801848 0.0146) (0.06347826087 0.1883801848 0.0146) (0.07617391304 0.1883801848 0.0146) (0.08886956522 0.1883801848 0.0146) (0.1015652174 0.1883801848 0.0146) (0.1142608696 0.1883801848 0.0146) (0.1269565217 0.1883801848 0.0146) (0.1396521739 0.1883801848 0.0146) (0.1523478261 0.1883801848 0.0146) (0.1650434783 0.1883801848 0.0146) (0.1777391304 0.1883801848 0.0146) (0.1904347826 0.1883801848 0.0146) (0.2031304348 0.1883801848 0.0146) (0.215826087 0.1883801848 0.0146) (0.2285217391 0.1883801848 0.0146) (0.2412173913 0.1883801848 0.0146) (0.2539130435 0.1883801848 0.0146) (0.2666086957 0.1883801848 0.0146) (0.2793043478 0.1883801848 0.0146) (0.292 0.1883801848 0.0146) (0 0.2011421143 0.0146) (0.01269565217 0.2011421143 0.0146) (0.02539130435 0.2011421143 0.0146) (0.03808695652 0.2011421143 0.0146) (0.0507826087 0.2011421143 0.0146) (0.06347826087 0.2011421143 0.0146) (0.07617391304 0.2011421143 0.0146) (0.08886956522 0.2011421143 0.0146) (0.1015652174 0.2011421143 0.0146) (0.1142608696 0.2011421143 0.0146) (0.1269565217 0.2011421143 0.0146) (0.1396521739 0.2011421143 0.0146) (0.1523478261 0.2011421143 0.0146) (0.1650434783 0.2011421143 0.0146) (0.1777391304 0.2011421143 0.0146) (0.1904347826 0.2011421143 0.0146) (0.2031304348 0.2011421143 0.0146) (0.215826087 0.2011421143 0.0146) (0.2285217391 0.2011421143 0.0146) (0.2412173913 0.2011421143 0.0146) (0.2539130435 0.2011421143 0.0146) (0.2666086957 0.2011421143 0.0146) (0.2793043478 0.2011421143 0.0146) (0.292 0.2011421143 0.0146) (0 0.2139040438 0.0146) (0.01269565217 0.2139040438 0.0146) (0.02539130435 0.2139040438 0.0146) (0.03808695652 0.2139040438 0.0146) (0.0507826087 0.2139040438 0.0146) (0.06347826087 0.2139040438 0.0146) (0.07617391304 0.2139040438 0.0146) (0.08886956522 0.2139040438 0.0146) (0.1015652174 0.2139040438 0.0146) (0.1142608696 0.2139040438 0.0146) (0.1269565217 0.2139040438 0.0146) (0.1396521739 0.2139040438 0.0146) (0.1523478261 0.2139040438 0.0146) (0.1650434783 0.2139040438 0.0146) (0.1777391304 0.2139040438 0.0146) (0.1904347826 0.2139040438 0.0146) (0.2031304348 0.2139040438 0.0146) (0.215826087 0.2139040438 0.0146) (0.2285217391 0.2139040438 0.0146) (0.2412173913 0.2139040438 0.0146) (0.2539130435 0.2139040438 0.0146) (0.2666086957 0.2139040438 0.0146) (0.2793043478 0.2139040438 0.0146) (0.292 0.2139040438 0.0146) (0 0.2266659733 0.0146) (0.01269565217 0.2266659733 0.0146) (0.02539130435 0.2266659733 0.0146) (0.03808695652 0.2266659733 0.0146) (0.0507826087 0.2266659733 0.0146) (0.06347826087 0.2266659733 0.0146) (0.07617391304 0.2266659733 0.0146) (0.08886956522 0.2266659733 0.0146) (0.1015652174 0.2266659733 0.0146) (0.1142608696 0.2266659733 0.0146) (0.1269565217 0.2266659733 0.0146) (0.1396521739 0.2266659733 0.0146) (0.1523478261 0.2266659733 0.0146) (0.1650434783 0.2266659733 0.0146) (0.1777391304 0.2266659733 0.0146) (0.1904347826 0.2266659733 0.0146) (0.2031304348 0.2266659733 0.0146) (0.215826087 0.2266659733 0.0146) (0.2285217391 0.2266659733 0.0146) (0.2412173913 0.2266659733 0.0146) (0.2539130435 0.2266659733 0.0146) (0.2666086957 0.2266659733 0.0146) (0.2793043478 0.2266659733 0.0146) (0.292 0.2266659733 0.0146) (0 0.2394279029 0.0146) (0.01269565217 0.2394279029 0.0146) (0.02539130435 0.2394279029 0.0146) (0.03808695652 0.2394279029 0.0146) (0.0507826087 0.2394279029 0.0146) (0.06347826087 0.2394279029 0.0146) (0.07617391304 0.2394279029 0.0146) (0.08886956522 0.2394279029 0.0146) (0.1015652174 0.2394279029 0.0146) (0.1142608696 0.2394279029 0.0146) (0.1269565217 0.2394279029 0.0146) (0.1396521739 0.2394279029 0.0146) (0.1523478261 0.2394279029 0.0146) (0.1650434783 0.2394279029 0.0146) (0.1777391304 0.2394279029 0.0146) (0.1904347826 0.2394279029 0.0146) (0.2031304348 0.2394279029 0.0146) (0.215826087 0.2394279029 0.0146) (0.2285217391 0.2394279029 0.0146) (0.2412173913 0.2394279029 0.0146) (0.2539130435 0.2394279029 0.0146) (0.2666086957 0.2394279029 0.0146) (0.2793043478 0.2394279029 0.0146) (0.292 0.2394279029 0.0146) (0 0.2521898324 0.0146) (0.01269565217 0.2521898324 0.0146) (0.02539130435 0.2521898324 0.0146) (0.03808695652 0.2521898324 0.0146) (0.0507826087 0.2521898324 0.0146) (0.06347826087 0.2521898324 0.0146) (0.07617391304 0.2521898324 0.0146) (0.08886956522 0.2521898324 0.0146) (0.1015652174 0.2521898324 0.0146) (0.1142608696 0.2521898324 0.0146) (0.1269565217 0.2521898324 0.0146) (0.1396521739 0.2521898324 0.0146) (0.1523478261 0.2521898324 0.0146) (0.1650434783 0.2521898324 0.0146) (0.1777391304 0.2521898324 0.0146) (0.1904347826 0.2521898324 0.0146) (0.2031304348 0.2521898324 0.0146) (0.215826087 0.2521898324 0.0146) (0.2285217391 0.2521898324 0.0146) (0.2412173913 0.2521898324 0.0146) (0.2539130435 0.2521898324 0.0146) (0.2666086957 0.2521898324 0.0146) (0.2793043478 0.2521898324 0.0146) (0.292 0.2521898324 0.0146) (0 0.2649517619 0.0146) (0.01269565217 0.2649517619 0.0146) (0.02539130435 0.2649517619 0.0146) (0.03808695652 0.2649517619 0.0146) (0.0507826087 0.2649517619 0.0146) (0.06347826087 0.2649517619 0.0146) (0.07617391304 0.2649517619 0.0146) (0.08886956522 0.2649517619 0.0146) (0.1015652174 0.2649517619 0.0146) (0.1142608696 0.2649517619 0.0146) (0.1269565217 0.2649517619 0.0146) (0.1396521739 0.2649517619 0.0146) (0.1523478261 0.2649517619 0.0146) (0.1650434783 0.2649517619 0.0146) (0.1777391304 0.2649517619 0.0146) (0.1904347826 0.2649517619 0.0146) (0.2031304348 0.2649517619 0.0146) (0.215826087 0.2649517619 0.0146) (0.2285217391 0.2649517619 0.0146) (0.2412173913 0.2649517619 0.0146) (0.2539130435 0.2649517619 0.0146) (0.2666086957 0.2649517619 0.0146) (0.2793043478 0.2649517619 0.0146) (0.292 0.2649517619 0.0146) (0 0.2777136914 0.0146) (0.01269565217 0.2777136914 0.0146) (0.02539130435 0.2777136914 0.0146) (0.03808695652 0.2777136914 0.0146) (0.0507826087 0.2777136914 0.0146) (0.06347826087 0.2777136914 0.0146) (0.07617391304 0.2777136914 0.0146) (0.08886956522 0.2777136914 0.0146) (0.1015652174 0.2777136914 0.0146) (0.1142608696 0.2777136914 0.0146) (0.1269565217 0.2777136914 0.0146) (0.1396521739 0.2777136914 0.0146) (0.1523478261 0.2777136914 0.0146) (0.1650434783 0.2777136914 0.0146) (0.1777391304 0.2777136914 0.0146) (0.1904347826 0.2777136914 0.0146) (0.2031304348 0.2777136914 0.0146) (0.215826087 0.2777136914 0.0146) (0.2285217391 0.2777136914 0.0146) (0.2412173913 0.2777136914 0.0146) (0.2539130435 0.2777136914 0.0146) (0.2666086957 0.2777136914 0.0146) (0.2793043478 0.2777136914 0.0146) (0.292 0.2777136914 0.0146) (0 0.290475621 0.0146) (0.01269565217 0.290475621 0.0146) (0.02539130435 0.290475621 0.0146) (0.03808695652 0.290475621 0.0146) (0.0507826087 0.290475621 0.0146) (0.06347826087 0.290475621 0.0146) (0.07617391304 0.290475621 0.0146) (0.08886956522 0.290475621 0.0146) (0.1015652174 0.290475621 0.0146) (0.1142608696 0.290475621 0.0146) (0.1269565217 0.290475621 0.0146) (0.1396521739 0.290475621 0.0146) (0.1523478261 0.290475621 0.0146) (0.1650434783 0.290475621 0.0146) (0.1777391304 0.290475621 0.0146) (0.1904347826 0.290475621 0.0146) (0.2031304348 0.290475621 0.0146) (0.215826087 0.290475621 0.0146) (0.2285217391 0.290475621 0.0146) (0.2412173913 0.290475621 0.0146) (0.2539130435 0.290475621 0.0146) (0.2666086957 0.290475621 0.0146) (0.2793043478 0.290475621 0.0146) (0.292 0.290475621 0.0146) (0 0.3032375505 0.0146) (0.01269565217 0.3032375505 0.0146) (0.02539130435 0.3032375505 0.0146) (0.03808695652 0.3032375505 0.0146) (0.0507826087 0.3032375505 0.0146) (0.06347826087 0.3032375505 0.0146) (0.07617391304 0.3032375505 0.0146) (0.08886956522 0.3032375505 0.0146) (0.1015652174 0.3032375505 0.0146) (0.1142608696 0.3032375505 0.0146) (0.1269565217 0.3032375505 0.0146) (0.1396521739 0.3032375505 0.0146) (0.1523478261 0.3032375505 0.0146) (0.1650434783 0.3032375505 0.0146) (0.1777391304 0.3032375505 0.0146) (0.1904347826 0.3032375505 0.0146) (0.2031304348 0.3032375505 0.0146) (0.215826087 0.3032375505 0.0146) (0.2285217391 0.3032375505 0.0146) (0.2412173913 0.3032375505 0.0146) (0.2539130435 0.3032375505 0.0146) (0.2666086957 0.3032375505 0.0146) (0.2793043478 0.3032375505 0.0146) (0.292 0.3032375505 0.0146) (0 0.31599948 0.0146) (0.01269565217 0.31599948 0.0146) (0.02539130435 0.31599948 0.0146) (0.03808695652 0.31599948 0.0146) (0.0507826087 0.31599948 0.0146) (0.06347826087 0.31599948 0.0146) (0.07617391304 0.31599948 0.0146) (0.08886956522 0.31599948 0.0146) (0.1015652174 0.31599948 0.0146) (0.1142608696 0.31599948 0.0146) (0.1269565217 0.31599948 0.0146) (0.1396521739 0.31599948 0.0146) (0.1523478261 0.31599948 0.0146) (0.1650434783 0.31599948 0.0146) (0.1777391304 0.31599948 0.0146) (0.1904347826 0.31599948 0.0146) (0.2031304348 0.31599948 0.0146) (0.215826087 0.31599948 0.0146) (0.2285217391 0.31599948 0.0146) (0.2412173913 0.31599948 0.0146) (0.2539130435 0.31599948 0.0146) (0.2666086957 0.31599948 0.0146) (0.2793043478 0.31599948 0.0146) (0.292 0.31599948 0.0146) (0 0.3287614095 0.0146) (0.01269565217 0.3287614095 0.0146) (0.02539130435 0.3287614095 0.0146) (0.03808695652 0.3287614095 0.0146) (0.0507826087 0.3287614095 0.0146) (0.06347826087 0.3287614095 0.0146) (0.07617391304 0.3287614095 0.0146) (0.08886956522 0.3287614095 0.0146) (0.1015652174 0.3287614095 0.0146) (0.1142608696 0.3287614095 0.0146) (0.1269565217 0.3287614095 0.0146) (0.1396521739 0.3287614095 0.0146) (0.1523478261 0.3287614095 0.0146) (0.1650434783 0.3287614095 0.0146) (0.1777391304 0.3287614095 0.0146) (0.1904347826 0.3287614095 0.0146) (0.2031304348 0.3287614095 0.0146) (0.215826087 0.3287614095 0.0146) (0.2285217391 0.3287614095 0.0146) (0.2412173913 0.3287614095 0.0146) (0.2539130435 0.3287614095 0.0146) (0.2666086957 0.3287614095 0.0146) (0.2793043478 0.3287614095 0.0146) (0.292 0.3287614095 0.0146) (0 0.341523339 0.0146) (0.01269565217 0.341523339 0.0146) (0.02539130435 0.341523339 0.0146) (0.03808695652 0.341523339 0.0146) (0.0507826087 0.341523339 0.0146) (0.06347826087 0.341523339 0.0146) (0.07617391304 0.341523339 0.0146) (0.08886956522 0.341523339 0.0146) (0.1015652174 0.341523339 0.0146) (0.1142608696 0.341523339 0.0146) (0.1269565217 0.341523339 0.0146) (0.1396521739 0.341523339 0.0146) (0.1523478261 0.341523339 0.0146) (0.1650434783 0.341523339 0.0146) (0.1777391304 0.341523339 0.0146) (0.1904347826 0.341523339 0.0146) (0.2031304348 0.341523339 0.0146) (0.215826087 0.341523339 0.0146) (0.2285217391 0.341523339 0.0146) (0.2412173913 0.341523339 0.0146) (0.2539130435 0.341523339 0.0146) (0.2666086957 0.341523339 0.0146) (0.2793043478 0.341523339 0.0146) (0.292 0.341523339 0.0146) (0 0.3542852686 0.0146) (0.01269565217 0.3542852686 0.0146) (0.02539130435 0.3542852686 0.0146) (0.03808695652 0.3542852686 0.0146) (0.0507826087 0.3542852686 0.0146) (0.06347826087 0.3542852686 0.0146) (0.07617391304 0.3542852686 0.0146) (0.08886956522 0.3542852686 0.0146) (0.1015652174 0.3542852686 0.0146) (0.1142608696 0.3542852686 0.0146) (0.1269565217 0.3542852686 0.0146) (0.1396521739 0.3542852686 0.0146) (0.1523478261 0.3542852686 0.0146) (0.1650434783 0.3542852686 0.0146) (0.1777391304 0.3542852686 0.0146) (0.1904347826 0.3542852686 0.0146) (0.2031304348 0.3542852686 0.0146) (0.215826087 0.3542852686 0.0146) (0.2285217391 0.3542852686 0.0146) (0.2412173913 0.3542852686 0.0146) (0.2539130435 0.3542852686 0.0146) (0.2666086957 0.3542852686 0.0146) (0.2793043478 0.3542852686 0.0146) (0.292 0.3542852686 0.0146) (0 0.3670471981 0.0146) (0.01269565217 0.3670471981 0.0146) (0.02539130435 0.3670471981 0.0146) (0.03808695652 0.3670471981 0.0146) (0.0507826087 0.3670471981 0.0146) (0.06347826087 0.3670471981 0.0146) (0.07617391304 0.3670471981 0.0146) (0.08886956522 0.3670471981 0.0146) (0.1015652174 0.3670471981 0.0146) (0.1142608696 0.3670471981 0.0146) (0.1269565217 0.3670471981 0.0146) (0.1396521739 0.3670471981 0.0146) (0.1523478261 0.3670471981 0.0146) (0.1650434783 0.3670471981 0.0146) (0.1777391304 0.3670471981 0.0146) (0.1904347826 0.3670471981 0.0146) (0.2031304348 0.3670471981 0.0146) (0.215826087 0.3670471981 0.0146) (0.2285217391 0.3670471981 0.0146) (0.2412173913 0.3670471981 0.0146) (0.2539130435 0.3670471981 0.0146) (0.2666086957 0.3670471981 0.0146) (0.2793043478 0.3670471981 0.0146) (0.292 0.3670471981 0.0146) (0 0.3798091276 0.0146) (0.01269565217 0.3798091276 0.0146) (0.02539130435 0.3798091276 0.0146) (0.03808695652 0.3798091276 0.0146) (0.0507826087 0.3798091276 0.0146) (0.06347826087 0.3798091276 0.0146) (0.07617391304 0.3798091276 0.0146) (0.08886956522 0.3798091276 0.0146) (0.1015652174 0.3798091276 0.0146) (0.1142608696 0.3798091276 0.0146) (0.1269565217 0.3798091276 0.0146) (0.1396521739 0.3798091276 0.0146) (0.1523478261 0.3798091276 0.0146) (0.1650434783 0.3798091276 0.0146) (0.1777391304 0.3798091276 0.0146) (0.1904347826 0.3798091276 0.0146) (0.2031304348 0.3798091276 0.0146) (0.215826087 0.3798091276 0.0146) (0.2285217391 0.3798091276 0.0146) (0.2412173913 0.3798091276 0.0146) (0.2539130435 0.3798091276 0.0146) (0.2666086957 0.3798091276 0.0146) (0.2793043478 0.3798091276 0.0146) (0.292 0.3798091276 0.0146) (0 0.3925710571 0.0146) (0.01269565217 0.3925710571 0.0146) (0.02539130435 0.3925710571 0.0146) (0.03808695652 0.3925710571 0.0146) (0.0507826087 0.3925710571 0.0146) (0.06347826087 0.3925710571 0.0146) (0.07617391304 0.3925710571 0.0146) (0.08886956522 0.3925710571 0.0146) (0.1015652174 0.3925710571 0.0146) (0.1142608696 0.3925710571 0.0146) (0.1269565217 0.3925710571 0.0146) (0.1396521739 0.3925710571 0.0146) (0.1523478261 0.3925710571 0.0146) (0.1650434783 0.3925710571 0.0146) (0.1777391304 0.3925710571 0.0146) (0.1904347826 0.3925710571 0.0146) (0.2031304348 0.3925710571 0.0146) (0.215826087 0.3925710571 0.0146) (0.2285217391 0.3925710571 0.0146) (0.2412173913 0.3925710571 0.0146) (0.2539130435 0.3925710571 0.0146) (0.2666086957 0.3925710571 0.0146) (0.2793043478 0.3925710571 0.0146) (0.292 0.3925710571 0.0146) (0 0.4053329867 0.0146) (0.01269565217 0.4053329867 0.0146) (0.02539130435 0.4053329867 0.0146) (0.03808695652 0.4053329867 0.0146) (0.0507826087 0.4053329867 0.0146) (0.06347826087 0.4053329867 0.0146) (0.07617391304 0.4053329867 0.0146) (0.08886956522 0.4053329867 0.0146) (0.1015652174 0.4053329867 0.0146) (0.1142608696 0.4053329867 0.0146) (0.1269565217 0.4053329867 0.0146) (0.1396521739 0.4053329867 0.0146) (0.1523478261 0.4053329867 0.0146) (0.1650434783 0.4053329867 0.0146) (0.1777391304 0.4053329867 0.0146) (0.1904347826 0.4053329867 0.0146) (0.2031304348 0.4053329867 0.0146) (0.215826087 0.4053329867 0.0146) (0.2285217391 0.4053329867 0.0146) (0.2412173913 0.4053329867 0.0146) (0.2539130435 0.4053329867 0.0146) (0.2666086957 0.4053329867 0.0146) (0.2793043478 0.4053329867 0.0146) (0.292 0.4053329867 0.0146) (0 0.4180949162 0.0146) (0.01269565217 0.4180949162 0.0146) (0.02539130435 0.4180949162 0.0146) (0.03808695652 0.4180949162 0.0146) (0.0507826087 0.4180949162 0.0146) (0.06347826087 0.4180949162 0.0146) (0.07617391304 0.4180949162 0.0146) (0.08886956522 0.4180949162 0.0146) (0.1015652174 0.4180949162 0.0146) (0.1142608696 0.4180949162 0.0146) (0.1269565217 0.4180949162 0.0146) (0.1396521739 0.4180949162 0.0146) (0.1523478261 0.4180949162 0.0146) (0.1650434783 0.4180949162 0.0146) (0.1777391304 0.4180949162 0.0146) (0.1904347826 0.4180949162 0.0146) (0.2031304348 0.4180949162 0.0146) (0.215826087 0.4180949162 0.0146) (0.2285217391 0.4180949162 0.0146) (0.2412173913 0.4180949162 0.0146) (0.2539130435 0.4180949162 0.0146) (0.2666086957 0.4180949162 0.0146) (0.2793043478 0.4180949162 0.0146) (0.292 0.4180949162 0.0146) (0 0.4308568457 0.0146) (0.01269565217 0.4308568457 0.0146) (0.02539130435 0.4308568457 0.0146) (0.03808695652 0.4308568457 0.0146) (0.0507826087 0.4308568457 0.0146) (0.06347826087 0.4308568457 0.0146) (0.07617391304 0.4308568457 0.0146) (0.08886956522 0.4308568457 0.0146) (0.1015652174 0.4308568457 0.0146) (0.1142608696 0.4308568457 0.0146) (0.1269565217 0.4308568457 0.0146) (0.1396521739 0.4308568457 0.0146) (0.1523478261 0.4308568457 0.0146) (0.1650434783 0.4308568457 0.0146) (0.1777391304 0.4308568457 0.0146) (0.1904347826 0.4308568457 0.0146) (0.2031304348 0.4308568457 0.0146) (0.215826087 0.4308568457 0.0146) (0.2285217391 0.4308568457 0.0146) (0.2412173913 0.4308568457 0.0146) (0.2539130435 0.4308568457 0.0146) (0.2666086957 0.4308568457 0.0146) (0.2793043478 0.4308568457 0.0146) (0.292 0.4308568457 0.0146) (0 0.4436187752 0.0146) (0.01269565217 0.4436187752 0.0146) (0.02539130435 0.4436187752 0.0146) (0.03808695652 0.4436187752 0.0146) (0.0507826087 0.4436187752 0.0146) (0.06347826087 0.4436187752 0.0146) (0.07617391304 0.4436187752 0.0146) (0.08886956522 0.4436187752 0.0146) (0.1015652174 0.4436187752 0.0146) (0.1142608696 0.4436187752 0.0146) (0.1269565217 0.4436187752 0.0146) (0.1396521739 0.4436187752 0.0146) (0.1523478261 0.4436187752 0.0146) (0.1650434783 0.4436187752 0.0146) (0.1777391304 0.4436187752 0.0146) (0.1904347826 0.4436187752 0.0146) (0.2031304348 0.4436187752 0.0146) (0.215826087 0.4436187752 0.0146) (0.2285217391 0.4436187752 0.0146) (0.2412173913 0.4436187752 0.0146) (0.2539130435 0.4436187752 0.0146) (0.2666086957 0.4436187752 0.0146) (0.2793043478 0.4436187752 0.0146) (0.292 0.4436187752 0.0146) (0 0.4563807048 0.0146) (0.01269565217 0.4563807048 0.0146) (0.02539130435 0.4563807048 0.0146) (0.03808695652 0.4563807048 0.0146) (0.0507826087 0.4563807048 0.0146) (0.06347826087 0.4563807048 0.0146) (0.07617391304 0.4563807048 0.0146) (0.08886956522 0.4563807048 0.0146) (0.1015652174 0.4563807048 0.0146) (0.1142608696 0.4563807048 0.0146) (0.1269565217 0.4563807048 0.0146) (0.1396521739 0.4563807048 0.0146) (0.1523478261 0.4563807048 0.0146) (0.1650434783 0.4563807048 0.0146) (0.1777391304 0.4563807048 0.0146) (0.1904347826 0.4563807048 0.0146) (0.2031304348 0.4563807048 0.0146) (0.215826087 0.4563807048 0.0146) (0.2285217391 0.4563807048 0.0146) (0.2412173913 0.4563807048 0.0146) (0.2539130435 0.4563807048 0.0146) (0.2666086957 0.4563807048 0.0146) (0.2793043478 0.4563807048 0.0146) (0.292 0.4563807048 0.0146) (0 0.4691426343 0.0146) (0.01269565217 0.4691426343 0.0146) (0.02539130435 0.4691426343 0.0146) (0.03808695652 0.4691426343 0.0146) (0.0507826087 0.4691426343 0.0146) (0.06347826087 0.4691426343 0.0146) (0.07617391304 0.4691426343 0.0146) (0.08886956522 0.4691426343 0.0146) (0.1015652174 0.4691426343 0.0146) (0.1142608696 0.4691426343 0.0146) (0.1269565217 0.4691426343 0.0146) (0.1396521739 0.4691426343 0.0146) (0.1523478261 0.4691426343 0.0146) (0.1650434783 0.4691426343 0.0146) (0.1777391304 0.4691426343 0.0146) (0.1904347826 0.4691426343 0.0146) (0.2031304348 0.4691426343 0.0146) (0.215826087 0.4691426343 0.0146) (0.2285217391 0.4691426343 0.0146) (0.2412173913 0.4691426343 0.0146) (0.2539130435 0.4691426343 0.0146) (0.2666086957 0.4691426343 0.0146) (0.2793043478 0.4691426343 0.0146) (0.292 0.4691426343 0.0146) (0 0.4819045638 0.0146) (0.01269565217 0.4819045638 0.0146) (0.02539130435 0.4819045638 0.0146) (0.03808695652 0.4819045638 0.0146) (0.0507826087 0.4819045638 0.0146) (0.06347826087 0.4819045638 0.0146) (0.07617391304 0.4819045638 0.0146) (0.08886956522 0.4819045638 0.0146) (0.1015652174 0.4819045638 0.0146) (0.1142608696 0.4819045638 0.0146) (0.1269565217 0.4819045638 0.0146) (0.1396521739 0.4819045638 0.0146) (0.1523478261 0.4819045638 0.0146) (0.1650434783 0.4819045638 0.0146) (0.1777391304 0.4819045638 0.0146) (0.1904347826 0.4819045638 0.0146) (0.2031304348 0.4819045638 0.0146) (0.215826087 0.4819045638 0.0146) (0.2285217391 0.4819045638 0.0146) (0.2412173913 0.4819045638 0.0146) (0.2539130435 0.4819045638 0.0146) (0.2666086957 0.4819045638 0.0146) (0.2793043478 0.4819045638 0.0146) (0.292 0.4819045638 0.0146) (0 0.4946664933 0.0146) (0.01269565217 0.4946664933 0.0146) (0.02539130435 0.4946664933 0.0146) (0.03808695652 0.4946664933 0.0146) (0.0507826087 0.4946664933 0.0146) (0.06347826087 0.4946664933 0.0146) (0.07617391304 0.4946664933 0.0146) (0.08886956522 0.4946664933 0.0146) (0.1015652174 0.4946664933 0.0146) (0.1142608696 0.4946664933 0.0146) (0.1269565217 0.4946664933 0.0146) (0.1396521739 0.4946664933 0.0146) (0.1523478261 0.4946664933 0.0146) (0.1650434783 0.4946664933 0.0146) (0.1777391304 0.4946664933 0.0146) (0.1904347826 0.4946664933 0.0146) (0.2031304348 0.4946664933 0.0146) (0.215826087 0.4946664933 0.0146) (0.2285217391 0.4946664933 0.0146) (0.2412173913 0.4946664933 0.0146) (0.2539130435 0.4946664933 0.0146) (0.2666086957 0.4946664933 0.0146) (0.2793043478 0.4946664933 0.0146) (0.292 0.4946664933 0.0146) (0 0.5074284229 0.0146) (0.01269565217 0.5074284229 0.0146) (0.02539130435 0.5074284229 0.0146) (0.03808695652 0.5074284229 0.0146) (0.0507826087 0.5074284229 0.0146) (0.06347826087 0.5074284229 0.0146) (0.07617391304 0.5074284229 0.0146) (0.08886956522 0.5074284229 0.0146) (0.1015652174 0.5074284229 0.0146) (0.1142608696 0.5074284229 0.0146) (0.1269565217 0.5074284229 0.0146) (0.1396521739 0.5074284229 0.0146) (0.1523478261 0.5074284229 0.0146) (0.1650434783 0.5074284229 0.0146) (0.1777391304 0.5074284229 0.0146) (0.1904347826 0.5074284229 0.0146) (0.2031304348 0.5074284229 0.0146) (0.215826087 0.5074284229 0.0146) (0.2285217391 0.5074284229 0.0146) (0.2412173913 0.5074284229 0.0146) (0.2539130435 0.5074284229 0.0146) (0.2666086957 0.5074284229 0.0146) (0.2793043478 0.5074284229 0.0146) (0.292 0.5074284229 0.0146) (0 0.5201903524 0.0146) (0.01269565217 0.5201903524 0.0146) (0.02539130435 0.5201903524 0.0146) (0.03808695652 0.5201903524 0.0146) (0.0507826087 0.5201903524 0.0146) (0.06347826087 0.5201903524 0.0146) (0.07617391304 0.5201903524 0.0146) (0.08886956522 0.5201903524 0.0146) (0.1015652174 0.5201903524 0.0146) (0.1142608696 0.5201903524 0.0146) (0.1269565217 0.5201903524 0.0146) (0.1396521739 0.5201903524 0.0146) (0.1523478261 0.5201903524 0.0146) (0.1650434783 0.5201903524 0.0146) (0.1777391304 0.5201903524 0.0146) (0.1904347826 0.5201903524 0.0146) (0.2031304348 0.5201903524 0.0146) (0.215826087 0.5201903524 0.0146) (0.2285217391 0.5201903524 0.0146) (0.2412173913 0.5201903524 0.0146) (0.2539130435 0.5201903524 0.0146) (0.2666086957 0.5201903524 0.0146) (0.2793043478 0.5201903524 0.0146) (0.292 0.5201903524 0.0146) (0 0.5329522819 0.0146) (0.01269565217 0.5329522819 0.0146) (0.02539130435 0.5329522819 0.0146) (0.03808695652 0.5329522819 0.0146) (0.0507826087 0.5329522819 0.0146) (0.06347826087 0.5329522819 0.0146) (0.07617391304 0.5329522819 0.0146) (0.08886956522 0.5329522819 0.0146) (0.1015652174 0.5329522819 0.0146) (0.1142608696 0.5329522819 0.0146) (0.1269565217 0.5329522819 0.0146) (0.1396521739 0.5329522819 0.0146) (0.1523478261 0.5329522819 0.0146) (0.1650434783 0.5329522819 0.0146) (0.1777391304 0.5329522819 0.0146) (0.1904347826 0.5329522819 0.0146) (0.2031304348 0.5329522819 0.0146) (0.215826087 0.5329522819 0.0146) (0.2285217391 0.5329522819 0.0146) (0.2412173913 0.5329522819 0.0146) (0.2539130435 0.5329522819 0.0146) (0.2666086957 0.5329522819 0.0146) (0.2793043478 0.5329522819 0.0146) (0.292 0.5329522819 0.0146) (0 0.5457142114 0.0146) (0.01269565217 0.5457142114 0.0146) (0.02539130435 0.5457142114 0.0146) (0.03808695652 0.5457142114 0.0146) (0.0507826087 0.5457142114 0.0146) (0.06347826087 0.5457142114 0.0146) (0.07617391304 0.5457142114 0.0146) (0.08886956522 0.5457142114 0.0146) (0.1015652174 0.5457142114 0.0146) (0.1142608696 0.5457142114 0.0146) (0.1269565217 0.5457142114 0.0146) (0.1396521739 0.5457142114 0.0146) (0.1523478261 0.5457142114 0.0146) (0.1650434783 0.5457142114 0.0146) (0.1777391304 0.5457142114 0.0146) (0.1904347826 0.5457142114 0.0146) (0.2031304348 0.5457142114 0.0146) (0.215826087 0.5457142114 0.0146) (0.2285217391 0.5457142114 0.0146) (0.2412173913 0.5457142114 0.0146) (0.2539130435 0.5457142114 0.0146) (0.2666086957 0.5457142114 0.0146) (0.2793043478 0.5457142114 0.0146) (0.292 0.5457142114 0.0146) (0 0.558476141 0.0146) (0.01269565217 0.558476141 0.0146) (0.02539130435 0.558476141 0.0146) (0.03808695652 0.558476141 0.0146) (0.0507826087 0.558476141 0.0146) (0.06347826087 0.558476141 0.0146) (0.07617391304 0.558476141 0.0146) (0.08886956522 0.558476141 0.0146) (0.1015652174 0.558476141 0.0146) (0.1142608696 0.558476141 0.0146) (0.1269565217 0.558476141 0.0146) (0.1396521739 0.558476141 0.0146) (0.1523478261 0.558476141 0.0146) (0.1650434783 0.558476141 0.0146) (0.1777391304 0.558476141 0.0146) (0.1904347826 0.558476141 0.0146) (0.2031304348 0.558476141 0.0146) (0.215826087 0.558476141 0.0146) (0.2285217391 0.558476141 0.0146) (0.2412173913 0.558476141 0.0146) (0.2539130435 0.558476141 0.0146) (0.2666086957 0.558476141 0.0146) (0.2793043478 0.558476141 0.0146) (0.292 0.558476141 0.0146) (0 0.5712380705 0.0146) (0.01269565217 0.5712380705 0.0146) (0.02539130435 0.5712380705 0.0146) (0.03808695652 0.5712380705 0.0146) (0.0507826087 0.5712380705 0.0146) (0.06347826087 0.5712380705 0.0146) (0.07617391304 0.5712380705 0.0146) (0.08886956522 0.5712380705 0.0146) (0.1015652174 0.5712380705 0.0146) (0.1142608696 0.5712380705 0.0146) (0.1269565217 0.5712380705 0.0146) (0.1396521739 0.5712380705 0.0146) (0.1523478261 0.5712380705 0.0146) (0.1650434783 0.5712380705 0.0146) (0.1777391304 0.5712380705 0.0146) (0.1904347826 0.5712380705 0.0146) (0.2031304348 0.5712380705 0.0146) (0.215826087 0.5712380705 0.0146) (0.2285217391 0.5712380705 0.0146) (0.2412173913 0.5712380705 0.0146) (0.2539130435 0.5712380705 0.0146) (0.2666086957 0.5712380705 0.0146) (0.2793043478 0.5712380705 0.0146) (0.292 0.5712380705 0.0146) (0 0.584 0.0146) (0.01269565217 0.584 0.0146) (0.02539130435 0.584 0.0146) (0.03808695652 0.584 0.0146) (0.0507826087 0.584 0.0146) (0.06347826087 0.584 0.0146) (0.07617391304 0.584 0.0146) (0.08886956522 0.584 0.0146) (0.1015652174 0.584 0.0146) (0.1142608696 0.584 0.0146) (0.1269565217 0.584 0.0146) (0.1396521739 0.584 0.0146) (0.1523478261 0.584 0.0146) (0.1650434783 0.584 0.0146) (0.1777391304 0.584 0.0146) (0.1904347826 0.584 0.0146) (0.2031304348 0.584 0.0146) (0.215826087 0.584 0.0146) (0.2285217391 0.584 0.0146) (0.2412173913 0.584 0.0146) (0.2539130435 0.584 0.0146) (0.2666086957 0.584 0.0146) (0.2793043478 0.584 0.0146) (0.292 0.584 0.0146) (0.29799987 0.04799896 0) (0.30399974 0.04799896 0) (0.30999961 0.04799896 0) (0.29799987 0.06076088952 0) (0.30399974 0.06076088952 0) (0.30999961 0.06076088952 0) (0.31599948 0.06076088952 0) (0.29799987 0.07352281905 0) (0.30399974 0.07352281905 0) (0.30999961 0.07352281905 0) (0.31599948 0.07352281905 0) (0.29799987 0.08628474857 0) (0.30399974 0.08628474857 0) (0.30999961 0.08628474857 0) (0.31599948 0.08628474857 0) (0.29799987 0.0990466781 0) (0.30399974 0.0990466781 0) (0.30999961 0.0990466781 0) (0.31599948 0.0990466781 0) (0.29799987 0.1118086076 0) (0.30399974 0.1118086076 0) (0.30999961 0.1118086076 0) (0.31599948 0.1118086076 0) (0.29799987 0.1245705371 0) (0.30399974 0.1245705371 0) (0.30999961 0.1245705371 0) (0.31599948 0.1245705371 0) (0.29799987 0.1373324667 0) (0.30399974 0.1373324667 0) (0.30999961 0.1373324667 0) (0.31599948 0.1373324667 0) (0.29799987 0.1500943962 0) (0.30399974 0.1500943962 0) (0.30999961 0.1500943962 0) (0.31599948 0.1500943962 0) (0.29799987 0.1628563257 0) (0.30399974 0.1628563257 0) (0.30999961 0.1628563257 0) (0.31599948 0.1628563257 0) (0.29799987 0.1756182552 0) (0.30399974 0.1756182552 0) (0.30999961 0.1756182552 0) (0.31599948 0.1756182552 0) (0.29799987 0.1883801848 0) (0.30399974 0.1883801848 0) (0.30999961 0.1883801848 0) (0.31599948 0.1883801848 0) (0.29799987 0.2011421143 0) (0.30399974 0.2011421143 0) (0.30999961 0.2011421143 0) (0.31599948 0.2011421143 0) (0.29799987 0.2139040438 0) (0.30399974 0.2139040438 0) (0.30999961 0.2139040438 0) (0.31599948 0.2139040438 0) (0.29799987 0.2266659733 0) (0.30399974 0.2266659733 0) (0.30999961 0.2266659733 0) (0.31599948 0.2266659733 0) (0.29799987 0.2394279029 0) (0.30399974 0.2394279029 0) (0.30999961 0.2394279029 0) (0.31599948 0.2394279029 0) (0.29799987 0.2521898324 0) (0.30399974 0.2521898324 0) (0.30999961 0.2521898324 0) (0.31599948 0.2521898324 0) (0.29799987 0.2649517619 0) (0.30399974 0.2649517619 0) (0.30999961 0.2649517619 0) (0.31599948 0.2649517619 0) (0.29799987 0.2777136914 0) (0.30399974 0.2777136914 0) (0.30999961 0.2777136914 0) (0.31599948 0.2777136914 0) (0.29799987 0.290475621 0) (0.30399974 0.290475621 0) (0.30999961 0.290475621 0) (0.31599948 0.290475621 0) (0.29799987 0.3032375505 0) (0.30399974 0.3032375505 0) (0.30999961 0.3032375505 0) (0.31599948 0.3032375505 0) (0.29799987 0.31599948 0) (0.30399974 0.31599948 0) (0.30999961 0.31599948 0) (0.31599948 0.31599948 0) (0.29799987 0.3287614095 0) (0.30399974 0.3287614095 0) (0.30999961 0.3287614095 0) (0.31599948 0.3287614095 0) (0.29799987 0.341523339 0) (0.30399974 0.341523339 0) (0.30999961 0.341523339 0) (0.31599948 0.341523339 0) (0.29799987 0.3542852686 0) (0.30399974 0.3542852686 0) (0.30999961 0.3542852686 0) (0.31599948 0.3542852686 0) (0.29799987 0.3670471981 0) (0.30399974 0.3670471981 0) (0.30999961 0.3670471981 0) (0.31599948 0.3670471981 0) (0.29799987 0.3798091276 0) (0.30399974 0.3798091276 0) (0.30999961 0.3798091276 0) (0.31599948 0.3798091276 0) (0.29799987 0.3925710571 0) (0.30399974 0.3925710571 0) (0.30999961 0.3925710571 0) (0.31599948 0.3925710571 0) (0.29799987 0.4053329867 0) (0.30399974 0.4053329867 0) (0.30999961 0.4053329867 0) (0.31599948 0.4053329867 0) (0.29799987 0.4180949162 0) (0.30399974 0.4180949162 0) (0.30999961 0.4180949162 0) (0.31599948 0.4180949162 0) (0.29799987 0.4308568457 0) (0.30399974 0.4308568457 0) (0.30999961 0.4308568457 0) (0.31599948 0.4308568457 0) (0.29799987 0.4436187752 0) (0.30399974 0.4436187752 0) (0.30999961 0.4436187752 0) (0.31599948 0.4436187752 0) (0.29799987 0.4563807048 0) (0.30399974 0.4563807048 0) (0.30999961 0.4563807048 0) (0.31599948 0.4563807048 0) (0.29799987 0.4691426343 0) (0.30399974 0.4691426343 0) (0.30999961 0.4691426343 0) (0.31599948 0.4691426343 0) (0.29799987 0.4819045638 0) (0.30399974 0.4819045638 0) (0.30999961 0.4819045638 0) (0.31599948 0.4819045638 0) (0.29799987 0.4946664933 0) (0.30399974 0.4946664933 0) (0.30999961 0.4946664933 0) (0.31599948 0.4946664933 0) (0.29799987 0.5074284229 0) (0.30399974 0.5074284229 0) (0.30999961 0.5074284229 0) (0.31599948 0.5074284229 0) (0.29799987 0.5201903524 0) (0.30399974 0.5201903524 0) (0.30999961 0.5201903524 0) (0.31599948 0.5201903524 0) (0.29799987 0.5329522819 0) (0.30399974 0.5329522819 0) (0.30999961 0.5329522819 0) (0.31599948 0.5329522819 0) (0.29799987 0.5457142114 0) (0.30399974 0.5457142114 0) (0.30999961 0.5457142114 0) (0.31599948 0.5457142114 0) (0.29799987 0.558476141 0) (0.30399974 0.558476141 0) (0.30999961 0.558476141 0) (0.31599948 0.558476141 0) (0.29799987 0.5712380705 0) (0.30399974 0.5712380705 0) (0.30999961 0.5712380705 0) (0.31599948 0.5712380705 0) (0.29799987 0.584 0) (0.30399974 0.584 0) (0.30999961 0.584 0) (0.31599948 0.584 0) (0.29799987 0.04799896 0.0146) (0.30399974 0.04799896 0.0146) (0.30999961 0.04799896 0.0146) (0.29799987 0.06076088952 0.0146) (0.30399974 0.06076088952 0.0146) (0.30999961 0.06076088952 0.0146) (0.31599948 0.06076088952 0.0146) (0.29799987 0.07352281905 0.0146) (0.30399974 0.07352281905 0.0146) (0.30999961 0.07352281905 0.0146) (0.31599948 0.07352281905 0.0146) (0.29799987 0.08628474857 0.0146) (0.30399974 0.08628474857 0.0146) (0.30999961 0.08628474857 0.0146) (0.31599948 0.08628474857 0.0146) (0.29799987 0.0990466781 0.0146) (0.30399974 0.0990466781 0.0146) (0.30999961 0.0990466781 0.0146) (0.31599948 0.0990466781 0.0146) (0.29799987 0.1118086076 0.0146) (0.30399974 0.1118086076 0.0146) (0.30999961 0.1118086076 0.0146) (0.31599948 0.1118086076 0.0146) (0.29799987 0.1245705371 0.0146) (0.30399974 0.1245705371 0.0146) (0.30999961 0.1245705371 0.0146) (0.31599948 0.1245705371 0.0146) (0.29799987 0.1373324667 0.0146) (0.30399974 0.1373324667 0.0146) (0.30999961 0.1373324667 0.0146) (0.31599948 0.1373324667 0.0146) (0.29799987 0.1500943962 0.0146) (0.30399974 0.1500943962 0.0146) (0.30999961 0.1500943962 0.0146) (0.31599948 0.1500943962 0.0146) (0.29799987 0.1628563257 0.0146) (0.30399974 0.1628563257 0.0146) (0.30999961 0.1628563257 0.0146) (0.31599948 0.1628563257 0.0146) (0.29799987 0.1756182552 0.0146) (0.30399974 0.1756182552 0.0146) (0.30999961 0.1756182552 0.0146) (0.31599948 0.1756182552 0.0146) (0.29799987 0.1883801848 0.0146) (0.30399974 0.1883801848 0.0146) (0.30999961 0.1883801848 0.0146) (0.31599948 0.1883801848 0.0146) (0.29799987 0.2011421143 0.0146) (0.30399974 0.2011421143 0.0146) (0.30999961 0.2011421143 0.0146) (0.31599948 0.2011421143 0.0146) (0.29799987 0.2139040438 0.0146) (0.30399974 0.2139040438 0.0146) (0.30999961 0.2139040438 0.0146) (0.31599948 0.2139040438 0.0146) (0.29799987 0.2266659733 0.0146) (0.30399974 0.2266659733 0.0146) (0.30999961 0.2266659733 0.0146) (0.31599948 0.2266659733 0.0146) (0.29799987 0.2394279029 0.0146) (0.30399974 0.2394279029 0.0146) (0.30999961 0.2394279029 0.0146) (0.31599948 0.2394279029 0.0146) (0.29799987 0.2521898324 0.0146) (0.30399974 0.2521898324 0.0146) (0.30999961 0.2521898324 0.0146) (0.31599948 0.2521898324 0.0146) (0.29799987 0.2649517619 0.0146) (0.30399974 0.2649517619 0.0146) (0.30999961 0.2649517619 0.0146) (0.31599948 0.2649517619 0.0146) (0.29799987 0.2777136914 0.0146) (0.30399974 0.2777136914 0.0146) (0.30999961 0.2777136914 0.0146) (0.31599948 0.2777136914 0.0146) (0.29799987 0.290475621 0.0146) (0.30399974 0.290475621 0.0146) (0.30999961 0.290475621 0.0146) (0.31599948 0.290475621 0.0146) (0.29799987 0.3032375505 0.0146) (0.30399974 0.3032375505 0.0146) (0.30999961 0.3032375505 0.0146) (0.31599948 0.3032375505 0.0146) (0.29799987 0.31599948 0.0146) (0.30399974 0.31599948 0.0146) (0.30999961 0.31599948 0.0146) (0.31599948 0.31599948 0.0146) (0.29799987 0.3287614095 0.0146) (0.30399974 0.3287614095 0.0146) (0.30999961 0.3287614095 0.0146) (0.31599948 0.3287614095 0.0146) (0.29799987 0.341523339 0.0146) (0.30399974 0.341523339 0.0146) (0.30999961 0.341523339 0.0146) (0.31599948 0.341523339 0.0146) (0.29799987 0.3542852686 0.0146) (0.30399974 0.3542852686 0.0146) (0.30999961 0.3542852686 0.0146) (0.31599948 0.3542852686 0.0146) (0.29799987 0.3670471981 0.0146) (0.30399974 0.3670471981 0.0146) (0.30999961 0.3670471981 0.0146) (0.31599948 0.3670471981 0.0146) (0.29799987 0.3798091276 0.0146) (0.30399974 0.3798091276 0.0146) (0.30999961 0.3798091276 0.0146) (0.31599948 0.3798091276 0.0146) (0.29799987 0.3925710571 0.0146) (0.30399974 0.3925710571 0.0146) (0.30999961 0.3925710571 0.0146) (0.31599948 0.3925710571 0.0146) (0.29799987 0.4053329867 0.0146) (0.30399974 0.4053329867 0.0146) (0.30999961 0.4053329867 0.0146) (0.31599948 0.4053329867 0.0146) (0.29799987 0.4180949162 0.0146) (0.30399974 0.4180949162 0.0146) (0.30999961 0.4180949162 0.0146) (0.31599948 0.4180949162 0.0146) (0.29799987 0.4308568457 0.0146) (0.30399974 0.4308568457 0.0146) (0.30999961 0.4308568457 0.0146) (0.31599948 0.4308568457 0.0146) (0.29799987 0.4436187752 0.0146) (0.30399974 0.4436187752 0.0146) (0.30999961 0.4436187752 0.0146) (0.31599948 0.4436187752 0.0146) (0.29799987 0.4563807048 0.0146) (0.30399974 0.4563807048 0.0146) (0.30999961 0.4563807048 0.0146) (0.31599948 0.4563807048 0.0146) (0.29799987 0.4691426343 0.0146) (0.30399974 0.4691426343 0.0146) (0.30999961 0.4691426343 0.0146) (0.31599948 0.4691426343 0.0146) (0.29799987 0.4819045638 0.0146) (0.30399974 0.4819045638 0.0146) (0.30999961 0.4819045638 0.0146) (0.31599948 0.4819045638 0.0146) (0.29799987 0.4946664933 0.0146) (0.30399974 0.4946664933 0.0146) (0.30999961 0.4946664933 0.0146) (0.31599948 0.4946664933 0.0146) (0.29799987 0.5074284229 0.0146) (0.30399974 0.5074284229 0.0146) (0.30999961 0.5074284229 0.0146) (0.31599948 0.5074284229 0.0146) (0.29799987 0.5201903524 0.0146) (0.30399974 0.5201903524 0.0146) (0.30999961 0.5201903524 0.0146) (0.31599948 0.5201903524 0.0146) (0.29799987 0.5329522819 0.0146) (0.30399974 0.5329522819 0.0146) (0.30999961 0.5329522819 0.0146) (0.31599948 0.5329522819 0.0146) (0.29799987 0.5457142114 0.0146) (0.30399974 0.5457142114 0.0146) (0.30999961 0.5457142114 0.0146) (0.31599948 0.5457142114 0.0146) (0.29799987 0.558476141 0.0146) (0.30399974 0.558476141 0.0146) (0.30999961 0.558476141 0.0146) (0.31599948 0.558476141 0.0146) (0.29799987 0.5712380705 0.0146) (0.30399974 0.5712380705 0.0146) (0.30999961 0.5712380705 0.0146) (0.31599948 0.5712380705 0.0146) (0.29799987 0.584 0.0146) (0.30399974 0.584 0.0146) (0.30999961 0.584 0.0146) (0.31599948 0.584 0.0146) (0.3301047705 0.06076088952 0) (0.3442100611 0.06076088952 0) (0.3583153516 0.06076088952 0) (0.3724206421 0.06076088952 0) (0.3865259326 0.06076088952 0) (0.4006312232 0.06076088952 0) (0.4147365137 0.06076088952 0) (0.4288418042 0.06076088952 0) (0.4429470947 0.06076088952 0) (0.4570523853 0.06076088952 0) (0.4711576758 0.06076088952 0) (0.4852629663 0.06076088952 0) (0.4993682568 0.06076088952 0) (0.5134735474 0.06076088952 0) (0.5275788379 0.06076088952 0) (0.5416841284 0.06076088952 0) (0.5557894189 0.06076088952 0) (0.5698947095 0.06076088952 0) (0.584 0.06076088952 0) (0.3301047705 0.07352281905 0) (0.3442100611 0.07352281905 0) (0.3583153516 0.07352281905 0) (0.3724206421 0.07352281905 0) (0.3865259326 0.07352281905 0) (0.4006312232 0.07352281905 0) (0.4147365137 0.07352281905 0) (0.4288418042 0.07352281905 0) (0.4429470947 0.07352281905 0) (0.4570523853 0.07352281905 0) (0.4711576758 0.07352281905 0) (0.4852629663 0.07352281905 0) (0.4993682568 0.07352281905 0) (0.5134735474 0.07352281905 0) (0.5275788379 0.07352281905 0) (0.5416841284 0.07352281905 0) (0.5557894189 0.07352281905 0) (0.5698947095 0.07352281905 0) (0.584 0.07352281905 0) (0.3301047705 0.08628474857 0) (0.3442100611 0.08628474857 0) (0.3583153516 0.08628474857 0) (0.3724206421 0.08628474857 0) (0.3865259326 0.08628474857 0) (0.4006312232 0.08628474857 0) (0.4147365137 0.08628474857 0) (0.4288418042 0.08628474857 0) (0.4429470947 0.08628474857 0) (0.4570523853 0.08628474857 0) (0.4711576758 0.08628474857 0) (0.4852629663 0.08628474857 0) (0.4993682568 0.08628474857 0) (0.5134735474 0.08628474857 0) (0.5275788379 0.08628474857 0) (0.5416841284 0.08628474857 0) (0.5557894189 0.08628474857 0) (0.5698947095 0.08628474857 0) (0.584 0.08628474857 0) (0.3301047705 0.0990466781 0) (0.3442100611 0.0990466781 0) (0.3583153516 0.0990466781 0) (0.3724206421 0.0990466781 0) (0.3865259326 0.0990466781 0) (0.4006312232 0.0990466781 0) (0.4147365137 0.0990466781 0) (0.4288418042 0.0990466781 0) (0.4429470947 0.0990466781 0) (0.4570523853 0.0990466781 0) (0.4711576758 0.0990466781 0) (0.4852629663 0.0990466781 0) (0.4993682568 0.0990466781 0) (0.5134735474 0.0990466781 0) (0.5275788379 0.0990466781 0) (0.5416841284 0.0990466781 0) (0.5557894189 0.0990466781 0) (0.5698947095 0.0990466781 0) (0.584 0.0990466781 0) (0.3301047705 0.1118086076 0) (0.3442100611 0.1118086076 0) (0.3583153516 0.1118086076 0) (0.3724206421 0.1118086076 0) (0.3865259326 0.1118086076 0) (0.4006312232 0.1118086076 0) (0.4147365137 0.1118086076 0) (0.4288418042 0.1118086076 0) (0.4429470947 0.1118086076 0) (0.4570523853 0.1118086076 0) (0.4711576758 0.1118086076 0) (0.4852629663 0.1118086076 0) (0.4993682568 0.1118086076 0) (0.5134735474 0.1118086076 0) (0.5275788379 0.1118086076 0) (0.5416841284 0.1118086076 0) (0.5557894189 0.1118086076 0) (0.5698947095 0.1118086076 0) (0.584 0.1118086076 0) (0.3301047705 0.1245705371 0) (0.3442100611 0.1245705371 0) (0.3583153516 0.1245705371 0) (0.3724206421 0.1245705371 0) (0.3865259326 0.1245705371 0) (0.4006312232 0.1245705371 0) (0.4147365137 0.1245705371 0) (0.4288418042 0.1245705371 0) (0.4429470947 0.1245705371 0) (0.4570523853 0.1245705371 0) (0.4711576758 0.1245705371 0) (0.4852629663 0.1245705371 0) (0.4993682568 0.1245705371 0) (0.5134735474 0.1245705371 0) (0.5275788379 0.1245705371 0) (0.5416841284 0.1245705371 0) (0.5557894189 0.1245705371 0) (0.5698947095 0.1245705371 0) (0.584 0.1245705371 0) (0.3301047705 0.1373324667 0) (0.3442100611 0.1373324667 0) (0.3583153516 0.1373324667 0) (0.3724206421 0.1373324667 0) (0.3865259326 0.1373324667 0) (0.4006312232 0.1373324667 0) (0.4147365137 0.1373324667 0) (0.4288418042 0.1373324667 0) (0.4429470947 0.1373324667 0) (0.4570523853 0.1373324667 0) (0.4711576758 0.1373324667 0) (0.4852629663 0.1373324667 0) (0.4993682568 0.1373324667 0) (0.5134735474 0.1373324667 0) (0.5275788379 0.1373324667 0) (0.5416841284 0.1373324667 0) (0.5557894189 0.1373324667 0) (0.5698947095 0.1373324667 0) (0.584 0.1373324667 0) (0.3301047705 0.1500943962 0) (0.3442100611 0.1500943962 0) (0.3583153516 0.1500943962 0) (0.3724206421 0.1500943962 0) (0.3865259326 0.1500943962 0) (0.4006312232 0.1500943962 0) (0.4147365137 0.1500943962 0) (0.4288418042 0.1500943962 0) (0.4429470947 0.1500943962 0) (0.4570523853 0.1500943962 0) (0.4711576758 0.1500943962 0) (0.4852629663 0.1500943962 0) (0.4993682568 0.1500943962 0) (0.5134735474 0.1500943962 0) (0.5275788379 0.1500943962 0) (0.5416841284 0.1500943962 0) (0.5557894189 0.1500943962 0) (0.5698947095 0.1500943962 0) (0.584 0.1500943962 0) (0.3301047705 0.1628563257 0) (0.3442100611 0.1628563257 0) (0.3583153516 0.1628563257 0) (0.3724206421 0.1628563257 0) (0.3865259326 0.1628563257 0) (0.4006312232 0.1628563257 0) (0.4147365137 0.1628563257 0) (0.4288418042 0.1628563257 0) (0.4429470947 0.1628563257 0) (0.4570523853 0.1628563257 0) (0.4711576758 0.1628563257 0) (0.4852629663 0.1628563257 0) (0.4993682568 0.1628563257 0) (0.5134735474 0.1628563257 0) (0.5275788379 0.1628563257 0) (0.5416841284 0.1628563257 0) (0.5557894189 0.1628563257 0) (0.5698947095 0.1628563257 0) (0.584 0.1628563257 0) (0.3301047705 0.1756182552 0) (0.3442100611 0.1756182552 0) (0.3583153516 0.1756182552 0) (0.3724206421 0.1756182552 0) (0.3865259326 0.1756182552 0) (0.4006312232 0.1756182552 0) (0.4147365137 0.1756182552 0) (0.4288418042 0.1756182552 0) (0.4429470947 0.1756182552 0) (0.4570523853 0.1756182552 0) (0.4711576758 0.1756182552 0) (0.4852629663 0.1756182552 0) (0.4993682568 0.1756182552 0) (0.5134735474 0.1756182552 0) (0.5275788379 0.1756182552 0) (0.5416841284 0.1756182552 0) (0.5557894189 0.1756182552 0) (0.5698947095 0.1756182552 0) (0.584 0.1756182552 0) (0.3301047705 0.1883801848 0) (0.3442100611 0.1883801848 0) (0.3583153516 0.1883801848 0) (0.3724206421 0.1883801848 0) (0.3865259326 0.1883801848 0) (0.4006312232 0.1883801848 0) (0.4147365137 0.1883801848 0) (0.4288418042 0.1883801848 0) (0.4429470947 0.1883801848 0) (0.4570523853 0.1883801848 0) (0.4711576758 0.1883801848 0) (0.4852629663 0.1883801848 0) (0.4993682568 0.1883801848 0) (0.5134735474 0.1883801848 0) (0.5275788379 0.1883801848 0) (0.5416841284 0.1883801848 0) (0.5557894189 0.1883801848 0) (0.5698947095 0.1883801848 0) (0.584 0.1883801848 0) (0.3301047705 0.2011421143 0) (0.3442100611 0.2011421143 0) (0.3583153516 0.2011421143 0) (0.3724206421 0.2011421143 0) (0.3865259326 0.2011421143 0) (0.4006312232 0.2011421143 0) (0.4147365137 0.2011421143 0) (0.4288418042 0.2011421143 0) (0.4429470947 0.2011421143 0) (0.4570523853 0.2011421143 0) (0.4711576758 0.2011421143 0) (0.4852629663 0.2011421143 0) (0.4993682568 0.2011421143 0) (0.5134735474 0.2011421143 0) (0.5275788379 0.2011421143 0) (0.5416841284 0.2011421143 0) (0.5557894189 0.2011421143 0) (0.5698947095 0.2011421143 0) (0.584 0.2011421143 0) (0.3301047705 0.2139040438 0) (0.3442100611 0.2139040438 0) (0.3583153516 0.2139040438 0) (0.3724206421 0.2139040438 0) (0.3865259326 0.2139040438 0) (0.4006312232 0.2139040438 0) (0.4147365137 0.2139040438 0) (0.4288418042 0.2139040438 0) (0.4429470947 0.2139040438 0) (0.4570523853 0.2139040438 0) (0.4711576758 0.2139040438 0) (0.4852629663 0.2139040438 0) (0.4993682568 0.2139040438 0) (0.5134735474 0.2139040438 0) (0.5275788379 0.2139040438 0) (0.5416841284 0.2139040438 0) (0.5557894189 0.2139040438 0) (0.5698947095 0.2139040438 0) (0.584 0.2139040438 0) (0.3301047705 0.2266659733 0) (0.3442100611 0.2266659733 0) (0.3583153516 0.2266659733 0) (0.3724206421 0.2266659733 0) (0.3865259326 0.2266659733 0) (0.4006312232 0.2266659733 0) (0.4147365137 0.2266659733 0) (0.4288418042 0.2266659733 0) (0.4429470947 0.2266659733 0) (0.4570523853 0.2266659733 0) (0.4711576758 0.2266659733 0) (0.4852629663 0.2266659733 0) (0.4993682568 0.2266659733 0) (0.5134735474 0.2266659733 0) (0.5275788379 0.2266659733 0) (0.5416841284 0.2266659733 0) (0.5557894189 0.2266659733 0) (0.5698947095 0.2266659733 0) (0.584 0.2266659733 0) (0.3301047705 0.2394279029 0) (0.3442100611 0.2394279029 0) (0.3583153516 0.2394279029 0) (0.3724206421 0.2394279029 0) (0.3865259326 0.2394279029 0) (0.4006312232 0.2394279029 0) (0.4147365137 0.2394279029 0) (0.4288418042 0.2394279029 0) (0.4429470947 0.2394279029 0) (0.4570523853 0.2394279029 0) (0.4711576758 0.2394279029 0) (0.4852629663 0.2394279029 0) (0.4993682568 0.2394279029 0) (0.5134735474 0.2394279029 0) (0.5275788379 0.2394279029 0) (0.5416841284 0.2394279029 0) (0.5557894189 0.2394279029 0) (0.5698947095 0.2394279029 0) (0.584 0.2394279029 0) (0.3301047705 0.2521898324 0) (0.3442100611 0.2521898324 0) (0.3583153516 0.2521898324 0) (0.3724206421 0.2521898324 0) (0.3865259326 0.2521898324 0) (0.4006312232 0.2521898324 0) (0.4147365137 0.2521898324 0) (0.4288418042 0.2521898324 0) (0.4429470947 0.2521898324 0) (0.4570523853 0.2521898324 0) (0.4711576758 0.2521898324 0) (0.4852629663 0.2521898324 0) (0.4993682568 0.2521898324 0) (0.5134735474 0.2521898324 0) (0.5275788379 0.2521898324 0) (0.5416841284 0.2521898324 0) (0.5557894189 0.2521898324 0) (0.5698947095 0.2521898324 0) (0.584 0.2521898324 0) (0.3301047705 0.2649517619 0) (0.3442100611 0.2649517619 0) (0.3583153516 0.2649517619 0) (0.3724206421 0.2649517619 0) (0.3865259326 0.2649517619 0) (0.4006312232 0.2649517619 0) (0.4147365137 0.2649517619 0) (0.4288418042 0.2649517619 0) (0.4429470947 0.2649517619 0) (0.4570523853 0.2649517619 0) (0.4711576758 0.2649517619 0) (0.4852629663 0.2649517619 0) (0.4993682568 0.2649517619 0) (0.5134735474 0.2649517619 0) (0.5275788379 0.2649517619 0) (0.5416841284 0.2649517619 0) (0.5557894189 0.2649517619 0) (0.5698947095 0.2649517619 0) (0.584 0.2649517619 0) (0.3301047705 0.2777136914 0) (0.3442100611 0.2777136914 0) (0.3583153516 0.2777136914 0) (0.3724206421 0.2777136914 0) (0.3865259326 0.2777136914 0) (0.4006312232 0.2777136914 0) (0.4147365137 0.2777136914 0) (0.4288418042 0.2777136914 0) (0.4429470947 0.2777136914 0) (0.4570523853 0.2777136914 0) (0.4711576758 0.2777136914 0) (0.4852629663 0.2777136914 0) (0.4993682568 0.2777136914 0) (0.5134735474 0.2777136914 0) (0.5275788379 0.2777136914 0) (0.5416841284 0.2777136914 0) (0.5557894189 0.2777136914 0) (0.5698947095 0.2777136914 0) (0.584 0.2777136914 0) (0.3301047705 0.290475621 0) (0.3442100611 0.290475621 0) (0.3583153516 0.290475621 0) (0.3724206421 0.290475621 0) (0.3865259326 0.290475621 0) (0.4006312232 0.290475621 0) (0.4147365137 0.290475621 0) (0.4288418042 0.290475621 0) (0.4429470947 0.290475621 0) (0.4570523853 0.290475621 0) (0.4711576758 0.290475621 0) (0.4852629663 0.290475621 0) (0.4993682568 0.290475621 0) (0.5134735474 0.290475621 0) (0.5275788379 0.290475621 0) (0.5416841284 0.290475621 0) (0.5557894189 0.290475621 0) (0.5698947095 0.290475621 0) (0.584 0.290475621 0) (0.3301047705 0.3032375505 0) (0.3442100611 0.3032375505 0) (0.3583153516 0.3032375505 0) (0.3724206421 0.3032375505 0) (0.3865259326 0.3032375505 0) (0.4006312232 0.3032375505 0) (0.4147365137 0.3032375505 0) (0.4288418042 0.3032375505 0) (0.4429470947 0.3032375505 0) (0.4570523853 0.3032375505 0) (0.4711576758 0.3032375505 0) (0.4852629663 0.3032375505 0) (0.4993682568 0.3032375505 0) (0.5134735474 0.3032375505 0) (0.5275788379 0.3032375505 0) (0.5416841284 0.3032375505 0) (0.5557894189 0.3032375505 0) (0.5698947095 0.3032375505 0) (0.584 0.3032375505 0) (0.3301047705 0.31599948 0) (0.3442100611 0.31599948 0) (0.3583153516 0.31599948 0) (0.3724206421 0.31599948 0) (0.3865259326 0.31599948 0) (0.4006312232 0.31599948 0) (0.4147365137 0.31599948 0) (0.4288418042 0.31599948 0) (0.4429470947 0.31599948 0) (0.4570523853 0.31599948 0) (0.4711576758 0.31599948 0) (0.4852629663 0.31599948 0) (0.4993682568 0.31599948 0) (0.5134735474 0.31599948 0) (0.5275788379 0.31599948 0) (0.5416841284 0.31599948 0) (0.5557894189 0.31599948 0) (0.5698947095 0.31599948 0) (0.584 0.31599948 0) (0.3301047705 0.3287614095 0) (0.3442100611 0.3287614095 0) (0.3583153516 0.3287614095 0) (0.3724206421 0.3287614095 0) (0.3865259326 0.3287614095 0) (0.4006312232 0.3287614095 0) (0.4147365137 0.3287614095 0) (0.4288418042 0.3287614095 0) (0.4429470947 0.3287614095 0) (0.4570523853 0.3287614095 0) (0.4711576758 0.3287614095 0) (0.4852629663 0.3287614095 0) (0.4993682568 0.3287614095 0) (0.5134735474 0.3287614095 0) (0.5275788379 0.3287614095 0) (0.5416841284 0.3287614095 0) (0.5557894189 0.3287614095 0) (0.5698947095 0.3287614095 0) (0.584 0.3287614095 0) (0.3301047705 0.341523339 0) (0.3442100611 0.341523339 0) (0.3583153516 0.341523339 0) (0.3724206421 0.341523339 0) (0.3865259326 0.341523339 0) (0.4006312232 0.341523339 0) (0.4147365137 0.341523339 0) (0.4288418042 0.341523339 0) (0.4429470947 0.341523339 0) (0.4570523853 0.341523339 0) (0.4711576758 0.341523339 0) (0.4852629663 0.341523339 0) (0.4993682568 0.341523339 0) (0.5134735474 0.341523339 0) (0.5275788379 0.341523339 0) (0.5416841284 0.341523339 0) (0.5557894189 0.341523339 0) (0.5698947095 0.341523339 0) (0.584 0.341523339 0) (0.3301047705 0.3542852686 0) (0.3442100611 0.3542852686 0) (0.3583153516 0.3542852686 0) (0.3724206421 0.3542852686 0) (0.3865259326 0.3542852686 0) (0.4006312232 0.3542852686 0) (0.4147365137 0.3542852686 0) (0.4288418042 0.3542852686 0) (0.4429470947 0.3542852686 0) (0.4570523853 0.3542852686 0) (0.4711576758 0.3542852686 0) (0.4852629663 0.3542852686 0) (0.4993682568 0.3542852686 0) (0.5134735474 0.3542852686 0) (0.5275788379 0.3542852686 0) (0.5416841284 0.3542852686 0) (0.5557894189 0.3542852686 0) (0.5698947095 0.3542852686 0) (0.584 0.3542852686 0) (0.3301047705 0.3670471981 0) (0.3442100611 0.3670471981 0) (0.3583153516 0.3670471981 0) (0.3724206421 0.3670471981 0) (0.3865259326 0.3670471981 0) (0.4006312232 0.3670471981 0) (0.4147365137 0.3670471981 0) (0.4288418042 0.3670471981 0) (0.4429470947 0.3670471981 0) (0.4570523853 0.3670471981 0) (0.4711576758 0.3670471981 0) (0.4852629663 0.3670471981 0) (0.4993682568 0.3670471981 0) (0.5134735474 0.3670471981 0) (0.5275788379 0.3670471981 0) (0.5416841284 0.3670471981 0) (0.5557894189 0.3670471981 0) (0.5698947095 0.3670471981 0) (0.584 0.3670471981 0) (0.3301047705 0.3798091276 0) (0.3442100611 0.3798091276 0) (0.3583153516 0.3798091276 0) (0.3724206421 0.3798091276 0) (0.3865259326 0.3798091276 0) (0.4006312232 0.3798091276 0) (0.4147365137 0.3798091276 0) (0.4288418042 0.3798091276 0) (0.4429470947 0.3798091276 0) (0.4570523853 0.3798091276 0) (0.4711576758 0.3798091276 0) (0.4852629663 0.3798091276 0) (0.4993682568 0.3798091276 0) (0.5134735474 0.3798091276 0) (0.5275788379 0.3798091276 0) (0.5416841284 0.3798091276 0) (0.5557894189 0.3798091276 0) (0.5698947095 0.3798091276 0) (0.584 0.3798091276 0) (0.3301047705 0.3925710571 0) (0.3442100611 0.3925710571 0) (0.3583153516 0.3925710571 0) (0.3724206421 0.3925710571 0) (0.3865259326 0.3925710571 0) (0.4006312232 0.3925710571 0) (0.4147365137 0.3925710571 0) (0.4288418042 0.3925710571 0) (0.4429470947 0.3925710571 0) (0.4570523853 0.3925710571 0) (0.4711576758 0.3925710571 0) (0.4852629663 0.3925710571 0) (0.4993682568 0.3925710571 0) (0.5134735474 0.3925710571 0) (0.5275788379 0.3925710571 0) (0.5416841284 0.3925710571 0) (0.5557894189 0.3925710571 0) (0.5698947095 0.3925710571 0) (0.584 0.3925710571 0) (0.3301047705 0.4053329867 0) (0.3442100611 0.4053329867 0) (0.3583153516 0.4053329867 0) (0.3724206421 0.4053329867 0) (0.3865259326 0.4053329867 0) (0.4006312232 0.4053329867 0) (0.4147365137 0.4053329867 0) (0.4288418042 0.4053329867 0) (0.4429470947 0.4053329867 0) (0.4570523853 0.4053329867 0) (0.4711576758 0.4053329867 0) (0.4852629663 0.4053329867 0) (0.4993682568 0.4053329867 0) (0.5134735474 0.4053329867 0) (0.5275788379 0.4053329867 0) (0.5416841284 0.4053329867 0) (0.5557894189 0.4053329867 0) (0.5698947095 0.4053329867 0) (0.584 0.4053329867 0) (0.3301047705 0.4180949162 0) (0.3442100611 0.4180949162 0) (0.3583153516 0.4180949162 0) (0.3724206421 0.4180949162 0) (0.3865259326 0.4180949162 0) (0.4006312232 0.4180949162 0) (0.4147365137 0.4180949162 0) (0.4288418042 0.4180949162 0) (0.4429470947 0.4180949162 0) (0.4570523853 0.4180949162 0) (0.4711576758 0.4180949162 0) (0.4852629663 0.4180949162 0) (0.4993682568 0.4180949162 0) (0.5134735474 0.4180949162 0) (0.5275788379 0.4180949162 0) (0.5416841284 0.4180949162 0) (0.5557894189 0.4180949162 0) (0.5698947095 0.4180949162 0) (0.584 0.4180949162 0) (0.3301047705 0.4308568457 0) (0.3442100611 0.4308568457 0) (0.3583153516 0.4308568457 0) (0.3724206421 0.4308568457 0) (0.3865259326 0.4308568457 0) (0.4006312232 0.4308568457 0) (0.4147365137 0.4308568457 0) (0.4288418042 0.4308568457 0) (0.4429470947 0.4308568457 0) (0.4570523853 0.4308568457 0) (0.4711576758 0.4308568457 0) (0.4852629663 0.4308568457 0) (0.4993682568 0.4308568457 0) (0.5134735474 0.4308568457 0) (0.5275788379 0.4308568457 0) (0.5416841284 0.4308568457 0) (0.5557894189 0.4308568457 0) (0.5698947095 0.4308568457 0) (0.584 0.4308568457 0) (0.3301047705 0.4436187752 0) (0.3442100611 0.4436187752 0) (0.3583153516 0.4436187752 0) (0.3724206421 0.4436187752 0) (0.3865259326 0.4436187752 0) (0.4006312232 0.4436187752 0) (0.4147365137 0.4436187752 0) (0.4288418042 0.4436187752 0) (0.4429470947 0.4436187752 0) (0.4570523853 0.4436187752 0) (0.4711576758 0.4436187752 0) (0.4852629663 0.4436187752 0) (0.4993682568 0.4436187752 0) (0.5134735474 0.4436187752 0) (0.5275788379 0.4436187752 0) (0.5416841284 0.4436187752 0) (0.5557894189 0.4436187752 0) (0.5698947095 0.4436187752 0) (0.584 0.4436187752 0) (0.3301047705 0.4563807048 0) (0.3442100611 0.4563807048 0) (0.3583153516 0.4563807048 0) (0.3724206421 0.4563807048 0) (0.3865259326 0.4563807048 0) (0.4006312232 0.4563807048 0) (0.4147365137 0.4563807048 0) (0.4288418042 0.4563807048 0) (0.4429470947 0.4563807048 0) (0.4570523853 0.4563807048 0) (0.4711576758 0.4563807048 0) (0.4852629663 0.4563807048 0) (0.4993682568 0.4563807048 0) (0.5134735474 0.4563807048 0) (0.5275788379 0.4563807048 0) (0.5416841284 0.4563807048 0) (0.5557894189 0.4563807048 0) (0.5698947095 0.4563807048 0) (0.584 0.4563807048 0) (0.3301047705 0.4691426343 0) (0.3442100611 0.4691426343 0) (0.3583153516 0.4691426343 0) (0.3724206421 0.4691426343 0) (0.3865259326 0.4691426343 0) (0.4006312232 0.4691426343 0) (0.4147365137 0.4691426343 0) (0.4288418042 0.4691426343 0) (0.4429470947 0.4691426343 0) (0.4570523853 0.4691426343 0) (0.4711576758 0.4691426343 0) (0.4852629663 0.4691426343 0) (0.4993682568 0.4691426343 0) (0.5134735474 0.4691426343 0) (0.5275788379 0.4691426343 0) (0.5416841284 0.4691426343 0) (0.5557894189 0.4691426343 0) (0.5698947095 0.4691426343 0) (0.584 0.4691426343 0) (0.3301047705 0.4819045638 0) (0.3442100611 0.4819045638 0) (0.3583153516 0.4819045638 0) (0.3724206421 0.4819045638 0) (0.3865259326 0.4819045638 0) (0.4006312232 0.4819045638 0) (0.4147365137 0.4819045638 0) (0.4288418042 0.4819045638 0) (0.4429470947 0.4819045638 0) (0.4570523853 0.4819045638 0) (0.4711576758 0.4819045638 0) (0.4852629663 0.4819045638 0) (0.4993682568 0.4819045638 0) (0.5134735474 0.4819045638 0) (0.5275788379 0.4819045638 0) (0.5416841284 0.4819045638 0) (0.5557894189 0.4819045638 0) (0.5698947095 0.4819045638 0) (0.584 0.4819045638 0) (0.3301047705 0.4946664933 0) (0.3442100611 0.4946664933 0) (0.3583153516 0.4946664933 0) (0.3724206421 0.4946664933 0) (0.3865259326 0.4946664933 0) (0.4006312232 0.4946664933 0) (0.4147365137 0.4946664933 0) (0.4288418042 0.4946664933 0) (0.4429470947 0.4946664933 0) (0.4570523853 0.4946664933 0) (0.4711576758 0.4946664933 0) (0.4852629663 0.4946664933 0) (0.4993682568 0.4946664933 0) (0.5134735474 0.4946664933 0) (0.5275788379 0.4946664933 0) (0.5416841284 0.4946664933 0) (0.5557894189 0.4946664933 0) (0.5698947095 0.4946664933 0) (0.584 0.4946664933 0) (0.3301047705 0.5074284229 0) (0.3442100611 0.5074284229 0) (0.3583153516 0.5074284229 0) (0.3724206421 0.5074284229 0) (0.3865259326 0.5074284229 0) (0.4006312232 0.5074284229 0) (0.4147365137 0.5074284229 0) (0.4288418042 0.5074284229 0) (0.4429470947 0.5074284229 0) (0.4570523853 0.5074284229 0) (0.4711576758 0.5074284229 0) (0.4852629663 0.5074284229 0) (0.4993682568 0.5074284229 0) (0.5134735474 0.5074284229 0) (0.5275788379 0.5074284229 0) (0.5416841284 0.5074284229 0) (0.5557894189 0.5074284229 0) (0.5698947095 0.5074284229 0) (0.584 0.5074284229 0) (0.3301047705 0.5201903524 0) (0.3442100611 0.5201903524 0) (0.3583153516 0.5201903524 0) (0.3724206421 0.5201903524 0) (0.3865259326 0.5201903524 0) (0.4006312232 0.5201903524 0) (0.4147365137 0.5201903524 0) (0.4288418042 0.5201903524 0) (0.4429470947 0.5201903524 0) (0.4570523853 0.5201903524 0) (0.4711576758 0.5201903524 0) (0.4852629663 0.5201903524 0) (0.4993682568 0.5201903524 0) (0.5134735474 0.5201903524 0) (0.5275788379 0.5201903524 0) (0.5416841284 0.5201903524 0) (0.5557894189 0.5201903524 0) (0.5698947095 0.5201903524 0) (0.584 0.5201903524 0) (0.3301047705 0.5329522819 0) (0.3442100611 0.5329522819 0) (0.3583153516 0.5329522819 0) (0.3724206421 0.5329522819 0) (0.3865259326 0.5329522819 0) (0.4006312232 0.5329522819 0) (0.4147365137 0.5329522819 0) (0.4288418042 0.5329522819 0) (0.4429470947 0.5329522819 0) (0.4570523853 0.5329522819 0) (0.4711576758 0.5329522819 0) (0.4852629663 0.5329522819 0) (0.4993682568 0.5329522819 0) (0.5134735474 0.5329522819 0) (0.5275788379 0.5329522819 0) (0.5416841284 0.5329522819 0) (0.5557894189 0.5329522819 0) (0.5698947095 0.5329522819 0) (0.584 0.5329522819 0) (0.3301047705 0.5457142114 0) (0.3442100611 0.5457142114 0) (0.3583153516 0.5457142114 0) (0.3724206421 0.5457142114 0) (0.3865259326 0.5457142114 0) (0.4006312232 0.5457142114 0) (0.4147365137 0.5457142114 0) (0.4288418042 0.5457142114 0) (0.4429470947 0.5457142114 0) (0.4570523853 0.5457142114 0) (0.4711576758 0.5457142114 0) (0.4852629663 0.5457142114 0) (0.4993682568 0.5457142114 0) (0.5134735474 0.5457142114 0) (0.5275788379 0.5457142114 0) (0.5416841284 0.5457142114 0) (0.5557894189 0.5457142114 0) (0.5698947095 0.5457142114 0) (0.584 0.5457142114 0) (0.3301047705 0.558476141 0) (0.3442100611 0.558476141 0) (0.3583153516 0.558476141 0) (0.3724206421 0.558476141 0) (0.3865259326 0.558476141 0) (0.4006312232 0.558476141 0) (0.4147365137 0.558476141 0) (0.4288418042 0.558476141 0) (0.4429470947 0.558476141 0) (0.4570523853 0.558476141 0) (0.4711576758 0.558476141 0) (0.4852629663 0.558476141 0) (0.4993682568 0.558476141 0) (0.5134735474 0.558476141 0) (0.5275788379 0.558476141 0) (0.5416841284 0.558476141 0) (0.5557894189 0.558476141 0) (0.5698947095 0.558476141 0) (0.584 0.558476141 0) (0.3301047705 0.5712380705 0) (0.3442100611 0.5712380705 0) (0.3583153516 0.5712380705 0) (0.3724206421 0.5712380705 0) (0.3865259326 0.5712380705 0) (0.4006312232 0.5712380705 0) (0.4147365137 0.5712380705 0) (0.4288418042 0.5712380705 0) (0.4429470947 0.5712380705 0) (0.4570523853 0.5712380705 0) (0.4711576758 0.5712380705 0) (0.4852629663 0.5712380705 0) (0.4993682568 0.5712380705 0) (0.5134735474 0.5712380705 0) (0.5275788379 0.5712380705 0) (0.5416841284 0.5712380705 0) (0.5557894189 0.5712380705 0) (0.5698947095 0.5712380705 0) (0.584 0.5712380705 0) (0.3301047705 0.584 0) (0.3442100611 0.584 0) (0.3583153516 0.584 0) (0.3724206421 0.584 0) (0.3865259326 0.584 0) (0.4006312232 0.584 0) (0.4147365137 0.584 0) (0.4288418042 0.584 0) (0.4429470947 0.584 0) (0.4570523853 0.584 0) (0.4711576758 0.584 0) (0.4852629663 0.584 0) (0.4993682568 0.584 0) (0.5134735474 0.584 0) (0.5275788379 0.584 0) (0.5416841284 0.584 0) (0.5557894189 0.584 0) (0.5698947095 0.584 0) (0.584 0.584 0) (0.3301047705 0.06076088952 0.0146) (0.3442100611 0.06076088952 0.0146) (0.3583153516 0.06076088952 0.0146) (0.3724206421 0.06076088952 0.0146) (0.3865259326 0.06076088952 0.0146) (0.4006312232 0.06076088952 0.0146) (0.4147365137 0.06076088952 0.0146) (0.4288418042 0.06076088952 0.0146) (0.4429470947 0.06076088952 0.0146) (0.4570523853 0.06076088952 0.0146) (0.4711576758 0.06076088952 0.0146) (0.4852629663 0.06076088952 0.0146) (0.4993682568 0.06076088952 0.0146) (0.5134735474 0.06076088952 0.0146) (0.5275788379 0.06076088952 0.0146) (0.5416841284 0.06076088952 0.0146) (0.5557894189 0.06076088952 0.0146) (0.5698947095 0.06076088952 0.0146) (0.584 0.06076088952 0.0146) (0.3301047705 0.07352281905 0.0146) (0.3442100611 0.07352281905 0.0146) (0.3583153516 0.07352281905 0.0146) (0.3724206421 0.07352281905 0.0146) (0.3865259326 0.07352281905 0.0146) (0.4006312232 0.07352281905 0.0146) (0.4147365137 0.07352281905 0.0146) (0.4288418042 0.07352281905 0.0146) (0.4429470947 0.07352281905 0.0146) (0.4570523853 0.07352281905 0.0146) (0.4711576758 0.07352281905 0.0146) (0.4852629663 0.07352281905 0.0146) (0.4993682568 0.07352281905 0.0146) (0.5134735474 0.07352281905 0.0146) (0.5275788379 0.07352281905 0.0146) (0.5416841284 0.07352281905 0.0146) (0.5557894189 0.07352281905 0.0146) (0.5698947095 0.07352281905 0.0146) (0.584 0.07352281905 0.0146) (0.3301047705 0.08628474857 0.0146) (0.3442100611 0.08628474857 0.0146) (0.3583153516 0.08628474857 0.0146) (0.3724206421 0.08628474857 0.0146) (0.3865259326 0.08628474857 0.0146) (0.4006312232 0.08628474857 0.0146) (0.4147365137 0.08628474857 0.0146) (0.4288418042 0.08628474857 0.0146) (0.4429470947 0.08628474857 0.0146) (0.4570523853 0.08628474857 0.0146) (0.4711576758 0.08628474857 0.0146) (0.4852629663 0.08628474857 0.0146) (0.4993682568 0.08628474857 0.0146) (0.5134735474 0.08628474857 0.0146) (0.5275788379 0.08628474857 0.0146) (0.5416841284 0.08628474857 0.0146) (0.5557894189 0.08628474857 0.0146) (0.5698947095 0.08628474857 0.0146) (0.584 0.08628474857 0.0146) (0.3301047705 0.0990466781 0.0146) (0.3442100611 0.0990466781 0.0146) (0.3583153516 0.0990466781 0.0146) (0.3724206421 0.0990466781 0.0146) (0.3865259326 0.0990466781 0.0146) (0.4006312232 0.0990466781 0.0146) (0.4147365137 0.0990466781 0.0146) (0.4288418042 0.0990466781 0.0146) (0.4429470947 0.0990466781 0.0146) (0.4570523853 0.0990466781 0.0146) (0.4711576758 0.0990466781 0.0146) (0.4852629663 0.0990466781 0.0146) (0.4993682568 0.0990466781 0.0146) (0.5134735474 0.0990466781 0.0146) (0.5275788379 0.0990466781 0.0146) (0.5416841284 0.0990466781 0.0146) (0.5557894189 0.0990466781 0.0146) (0.5698947095 0.0990466781 0.0146) (0.584 0.0990466781 0.0146) (0.3301047705 0.1118086076 0.0146) (0.3442100611 0.1118086076 0.0146) (0.3583153516 0.1118086076 0.0146) (0.3724206421 0.1118086076 0.0146) (0.3865259326 0.1118086076 0.0146) (0.4006312232 0.1118086076 0.0146) (0.4147365137 0.1118086076 0.0146) (0.4288418042 0.1118086076 0.0146) (0.4429470947 0.1118086076 0.0146) (0.4570523853 0.1118086076 0.0146) (0.4711576758 0.1118086076 0.0146) (0.4852629663 0.1118086076 0.0146) (0.4993682568 0.1118086076 0.0146) (0.5134735474 0.1118086076 0.0146) (0.5275788379 0.1118086076 0.0146) (0.5416841284 0.1118086076 0.0146) (0.5557894189 0.1118086076 0.0146) (0.5698947095 0.1118086076 0.0146) (0.584 0.1118086076 0.0146) (0.3301047705 0.1245705371 0.0146) (0.3442100611 0.1245705371 0.0146) (0.3583153516 0.1245705371 0.0146) (0.3724206421 0.1245705371 0.0146) (0.3865259326 0.1245705371 0.0146) (0.4006312232 0.1245705371 0.0146) (0.4147365137 0.1245705371 0.0146) (0.4288418042 0.1245705371 0.0146) (0.4429470947 0.1245705371 0.0146) (0.4570523853 0.1245705371 0.0146) (0.4711576758 0.1245705371 0.0146) (0.4852629663 0.1245705371 0.0146) (0.4993682568 0.1245705371 0.0146) (0.5134735474 0.1245705371 0.0146) (0.5275788379 0.1245705371 0.0146) (0.5416841284 0.1245705371 0.0146) (0.5557894189 0.1245705371 0.0146) (0.5698947095 0.1245705371 0.0146) (0.584 0.1245705371 0.0146) (0.3301047705 0.1373324667 0.0146) (0.3442100611 0.1373324667 0.0146) (0.3583153516 0.1373324667 0.0146) (0.3724206421 0.1373324667 0.0146) (0.3865259326 0.1373324667 0.0146) (0.4006312232 0.1373324667 0.0146) (0.4147365137 0.1373324667 0.0146) (0.4288418042 0.1373324667 0.0146) (0.4429470947 0.1373324667 0.0146) (0.4570523853 0.1373324667 0.0146) (0.4711576758 0.1373324667 0.0146) (0.4852629663 0.1373324667 0.0146) (0.4993682568 0.1373324667 0.0146) (0.5134735474 0.1373324667 0.0146) (0.5275788379 0.1373324667 0.0146) (0.5416841284 0.1373324667 0.0146) (0.5557894189 0.1373324667 0.0146) (0.5698947095 0.1373324667 0.0146) (0.584 0.1373324667 0.0146) (0.3301047705 0.1500943962 0.0146) (0.3442100611 0.1500943962 0.0146) (0.3583153516 0.1500943962 0.0146) (0.3724206421 0.1500943962 0.0146) (0.3865259326 0.1500943962 0.0146) (0.4006312232 0.1500943962 0.0146) (0.4147365137 0.1500943962 0.0146) (0.4288418042 0.1500943962 0.0146) (0.4429470947 0.1500943962 0.0146) (0.4570523853 0.1500943962 0.0146) (0.4711576758 0.1500943962 0.0146) (0.4852629663 0.1500943962 0.0146) (0.4993682568 0.1500943962 0.0146) (0.5134735474 0.1500943962 0.0146) (0.5275788379 0.1500943962 0.0146) (0.5416841284 0.1500943962 0.0146) (0.5557894189 0.1500943962 0.0146) (0.5698947095 0.1500943962 0.0146) (0.584 0.1500943962 0.0146) (0.3301047705 0.1628563257 0.0146) (0.3442100611 0.1628563257 0.0146) (0.3583153516 0.1628563257 0.0146) (0.3724206421 0.1628563257 0.0146) (0.3865259326 0.1628563257 0.0146) (0.4006312232 0.1628563257 0.0146) (0.4147365137 0.1628563257 0.0146) (0.4288418042 0.1628563257 0.0146) (0.4429470947 0.1628563257 0.0146) (0.4570523853 0.1628563257 0.0146) (0.4711576758 0.1628563257 0.0146) (0.4852629663 0.1628563257 0.0146) (0.4993682568 0.1628563257 0.0146) (0.5134735474 0.1628563257 0.0146) (0.5275788379 0.1628563257 0.0146) (0.5416841284 0.1628563257 0.0146) (0.5557894189 0.1628563257 0.0146) (0.5698947095 0.1628563257 0.0146) (0.584 0.1628563257 0.0146) (0.3301047705 0.1756182552 0.0146) (0.3442100611 0.1756182552 0.0146) (0.3583153516 0.1756182552 0.0146) (0.3724206421 0.1756182552 0.0146) (0.3865259326 0.1756182552 0.0146) (0.4006312232 0.1756182552 0.0146) (0.4147365137 0.1756182552 0.0146) (0.4288418042 0.1756182552 0.0146) (0.4429470947 0.1756182552 0.0146) (0.4570523853 0.1756182552 0.0146) (0.4711576758 0.1756182552 0.0146) (0.4852629663 0.1756182552 0.0146) (0.4993682568 0.1756182552 0.0146) (0.5134735474 0.1756182552 0.0146) (0.5275788379 0.1756182552 0.0146) (0.5416841284 0.1756182552 0.0146) (0.5557894189 0.1756182552 0.0146) (0.5698947095 0.1756182552 0.0146) (0.584 0.1756182552 0.0146) (0.3301047705 0.1883801848 0.0146) (0.3442100611 0.1883801848 0.0146) (0.3583153516 0.1883801848 0.0146) (0.3724206421 0.1883801848 0.0146) (0.3865259326 0.1883801848 0.0146) (0.4006312232 0.1883801848 0.0146) (0.4147365137 0.1883801848 0.0146) (0.4288418042 0.1883801848 0.0146) (0.4429470947 0.1883801848 0.0146) (0.4570523853 0.1883801848 0.0146) (0.4711576758 0.1883801848 0.0146) (0.4852629663 0.1883801848 0.0146) (0.4993682568 0.1883801848 0.0146) (0.5134735474 0.1883801848 0.0146) (0.5275788379 0.1883801848 0.0146) (0.5416841284 0.1883801848 0.0146) (0.5557894189 0.1883801848 0.0146) (0.5698947095 0.1883801848 0.0146) (0.584 0.1883801848 0.0146) (0.3301047705 0.2011421143 0.0146) (0.3442100611 0.2011421143 0.0146) (0.3583153516 0.2011421143 0.0146) (0.3724206421 0.2011421143 0.0146) (0.3865259326 0.2011421143 0.0146) (0.4006312232 0.2011421143 0.0146) (0.4147365137 0.2011421143 0.0146) (0.4288418042 0.2011421143 0.0146) (0.4429470947 0.2011421143 0.0146) (0.4570523853 0.2011421143 0.0146) (0.4711576758 0.2011421143 0.0146) (0.4852629663 0.2011421143 0.0146) (0.4993682568 0.2011421143 0.0146) (0.5134735474 0.2011421143 0.0146) (0.5275788379 0.2011421143 0.0146) (0.5416841284 0.2011421143 0.0146) (0.5557894189 0.2011421143 0.0146) (0.5698947095 0.2011421143 0.0146) (0.584 0.2011421143 0.0146) (0.3301047705 0.2139040438 0.0146) (0.3442100611 0.2139040438 0.0146) (0.3583153516 0.2139040438 0.0146) (0.3724206421 0.2139040438 0.0146) (0.3865259326 0.2139040438 0.0146) (0.4006312232 0.2139040438 0.0146) (0.4147365137 0.2139040438 0.0146) (0.4288418042 0.2139040438 0.0146) (0.4429470947 0.2139040438 0.0146) (0.4570523853 0.2139040438 0.0146) (0.4711576758 0.2139040438 0.0146) (0.4852629663 0.2139040438 0.0146) (0.4993682568 0.2139040438 0.0146) (0.5134735474 0.2139040438 0.0146) (0.5275788379 0.2139040438 0.0146) (0.5416841284 0.2139040438 0.0146) (0.5557894189 0.2139040438 0.0146) (0.5698947095 0.2139040438 0.0146) (0.584 0.2139040438 0.0146) (0.3301047705 0.2266659733 0.0146) (0.3442100611 0.2266659733 0.0146) (0.3583153516 0.2266659733 0.0146) (0.3724206421 0.2266659733 0.0146) (0.3865259326 0.2266659733 0.0146) (0.4006312232 0.2266659733 0.0146) (0.4147365137 0.2266659733 0.0146) (0.4288418042 0.2266659733 0.0146) (0.4429470947 0.2266659733 0.0146) (0.4570523853 0.2266659733 0.0146) (0.4711576758 0.2266659733 0.0146) (0.4852629663 0.2266659733 0.0146) (0.4993682568 0.2266659733 0.0146) (0.5134735474 0.2266659733 0.0146) (0.5275788379 0.2266659733 0.0146) (0.5416841284 0.2266659733 0.0146) (0.5557894189 0.2266659733 0.0146) (0.5698947095 0.2266659733 0.0146) (0.584 0.2266659733 0.0146) (0.3301047705 0.2394279029 0.0146) (0.3442100611 0.2394279029 0.0146) (0.3583153516 0.2394279029 0.0146) (0.3724206421 0.2394279029 0.0146) (0.3865259326 0.2394279029 0.0146) (0.4006312232 0.2394279029 0.0146) (0.4147365137 0.2394279029 0.0146) (0.4288418042 0.2394279029 0.0146) (0.4429470947 0.2394279029 0.0146) (0.4570523853 0.2394279029 0.0146) (0.4711576758 0.2394279029 0.0146) (0.4852629663 0.2394279029 0.0146) (0.4993682568 0.2394279029 0.0146) (0.5134735474 0.2394279029 0.0146) (0.5275788379 0.2394279029 0.0146) (0.5416841284 0.2394279029 0.0146) (0.5557894189 0.2394279029 0.0146) (0.5698947095 0.2394279029 0.0146) (0.584 0.2394279029 0.0146) (0.3301047705 0.2521898324 0.0146) (0.3442100611 0.2521898324 0.0146) (0.3583153516 0.2521898324 0.0146) (0.3724206421 0.2521898324 0.0146) (0.3865259326 0.2521898324 0.0146) (0.4006312232 0.2521898324 0.0146) (0.4147365137 0.2521898324 0.0146) (0.4288418042 0.2521898324 0.0146) (0.4429470947 0.2521898324 0.0146) (0.4570523853 0.2521898324 0.0146) (0.4711576758 0.2521898324 0.0146) (0.4852629663 0.2521898324 0.0146) (0.4993682568 0.2521898324 0.0146) (0.5134735474 0.2521898324 0.0146) (0.5275788379 0.2521898324 0.0146) (0.5416841284 0.2521898324 0.0146) (0.5557894189 0.2521898324 0.0146) (0.5698947095 0.2521898324 0.0146) (0.584 0.2521898324 0.0146) (0.3301047705 0.2649517619 0.0146) (0.3442100611 0.2649517619 0.0146) (0.3583153516 0.2649517619 0.0146) (0.3724206421 0.2649517619 0.0146) (0.3865259326 0.2649517619 0.0146) (0.4006312232 0.2649517619 0.0146) (0.4147365137 0.2649517619 0.0146) (0.4288418042 0.2649517619 0.0146) (0.4429470947 0.2649517619 0.0146) (0.4570523853 0.2649517619 0.0146) (0.4711576758 0.2649517619 0.0146) (0.4852629663 0.2649517619 0.0146) (0.4993682568 0.2649517619 0.0146) (0.5134735474 0.2649517619 0.0146) (0.5275788379 0.2649517619 0.0146) (0.5416841284 0.2649517619 0.0146) (0.5557894189 0.2649517619 0.0146) (0.5698947095 0.2649517619 0.0146) (0.584 0.2649517619 0.0146) (0.3301047705 0.2777136914 0.0146) (0.3442100611 0.2777136914 0.0146) (0.3583153516 0.2777136914 0.0146) (0.3724206421 0.2777136914 0.0146) (0.3865259326 0.2777136914 0.0146) (0.4006312232 0.2777136914 0.0146) (0.4147365137 0.2777136914 0.0146) (0.4288418042 0.2777136914 0.0146) (0.4429470947 0.2777136914 0.0146) (0.4570523853 0.2777136914 0.0146) (0.4711576758 0.2777136914 0.0146) (0.4852629663 0.2777136914 0.0146) (0.4993682568 0.2777136914 0.0146) (0.5134735474 0.2777136914 0.0146) (0.5275788379 0.2777136914 0.0146) (0.5416841284 0.2777136914 0.0146) (0.5557894189 0.2777136914 0.0146) (0.5698947095 0.2777136914 0.0146) (0.584 0.2777136914 0.0146) (0.3301047705 0.290475621 0.0146) (0.3442100611 0.290475621 0.0146) (0.3583153516 0.290475621 0.0146) (0.3724206421 0.290475621 0.0146) (0.3865259326 0.290475621 0.0146) (0.4006312232 0.290475621 0.0146) (0.4147365137 0.290475621 0.0146) (0.4288418042 0.290475621 0.0146) (0.4429470947 0.290475621 0.0146) (0.4570523853 0.290475621 0.0146) (0.4711576758 0.290475621 0.0146) (0.4852629663 0.290475621 0.0146) (0.4993682568 0.290475621 0.0146) (0.5134735474 0.290475621 0.0146) (0.5275788379 0.290475621 0.0146) (0.5416841284 0.290475621 0.0146) (0.5557894189 0.290475621 0.0146) (0.5698947095 0.290475621 0.0146) (0.584 0.290475621 0.0146) (0.3301047705 0.3032375505 0.0146) (0.3442100611 0.3032375505 0.0146) (0.3583153516 0.3032375505 0.0146) (0.3724206421 0.3032375505 0.0146) (0.3865259326 0.3032375505 0.0146) (0.4006312232 0.3032375505 0.0146) (0.4147365137 0.3032375505 0.0146) (0.4288418042 0.3032375505 0.0146) (0.4429470947 0.3032375505 0.0146) (0.4570523853 0.3032375505 0.0146) (0.4711576758 0.3032375505 0.0146) (0.4852629663 0.3032375505 0.0146) (0.4993682568 0.3032375505 0.0146) (0.5134735474 0.3032375505 0.0146) (0.5275788379 0.3032375505 0.0146) (0.5416841284 0.3032375505 0.0146) (0.5557894189 0.3032375505 0.0146) (0.5698947095 0.3032375505 0.0146) (0.584 0.3032375505 0.0146) (0.3301047705 0.31599948 0.0146) (0.3442100611 0.31599948 0.0146) (0.3583153516 0.31599948 0.0146) (0.3724206421 0.31599948 0.0146) (0.3865259326 0.31599948 0.0146) (0.4006312232 0.31599948 0.0146) (0.4147365137 0.31599948 0.0146) (0.4288418042 0.31599948 0.0146) (0.4429470947 0.31599948 0.0146) (0.4570523853 0.31599948 0.0146) (0.4711576758 0.31599948 0.0146) (0.4852629663 0.31599948 0.0146) (0.4993682568 0.31599948 0.0146) (0.5134735474 0.31599948 0.0146) (0.5275788379 0.31599948 0.0146) (0.5416841284 0.31599948 0.0146) (0.5557894189 0.31599948 0.0146) (0.5698947095 0.31599948 0.0146) (0.584 0.31599948 0.0146) (0.3301047705 0.3287614095 0.0146) (0.3442100611 0.3287614095 0.0146) (0.3583153516 0.3287614095 0.0146) (0.3724206421 0.3287614095 0.0146) (0.3865259326 0.3287614095 0.0146) (0.4006312232 0.3287614095 0.0146) (0.4147365137 0.3287614095 0.0146) (0.4288418042 0.3287614095 0.0146) (0.4429470947 0.3287614095 0.0146) (0.4570523853 0.3287614095 0.0146) (0.4711576758 0.3287614095 0.0146) (0.4852629663 0.3287614095 0.0146) (0.4993682568 0.3287614095 0.0146) (0.5134735474 0.3287614095 0.0146) (0.5275788379 0.3287614095 0.0146) (0.5416841284 0.3287614095 0.0146) (0.5557894189 0.3287614095 0.0146) (0.5698947095 0.3287614095 0.0146) (0.584 0.3287614095 0.0146) (0.3301047705 0.341523339 0.0146) (0.3442100611 0.341523339 0.0146) (0.3583153516 0.341523339 0.0146) (0.3724206421 0.341523339 0.0146) (0.3865259326 0.341523339 0.0146) (0.4006312232 0.341523339 0.0146) (0.4147365137 0.341523339 0.0146) (0.4288418042 0.341523339 0.0146) (0.4429470947 0.341523339 0.0146) (0.4570523853 0.341523339 0.0146) (0.4711576758 0.341523339 0.0146) (0.4852629663 0.341523339 0.0146) (0.4993682568 0.341523339 0.0146) (0.5134735474 0.341523339 0.0146) (0.5275788379 0.341523339 0.0146) (0.5416841284 0.341523339 0.0146) (0.5557894189 0.341523339 0.0146) (0.5698947095 0.341523339 0.0146) (0.584 0.341523339 0.0146) (0.3301047705 0.3542852686 0.0146) (0.3442100611 0.3542852686 0.0146) (0.3583153516 0.3542852686 0.0146) (0.3724206421 0.3542852686 0.0146) (0.3865259326 0.3542852686 0.0146) (0.4006312232 0.3542852686 0.0146) (0.4147365137 0.3542852686 0.0146) (0.4288418042 0.3542852686 0.0146) (0.4429470947 0.3542852686 0.0146) (0.4570523853 0.3542852686 0.0146) (0.4711576758 0.3542852686 0.0146) (0.4852629663 0.3542852686 0.0146) (0.4993682568 0.3542852686 0.0146) (0.5134735474 0.3542852686 0.0146) (0.5275788379 0.3542852686 0.0146) (0.5416841284 0.3542852686 0.0146) (0.5557894189 0.3542852686 0.0146) (0.5698947095 0.3542852686 0.0146) (0.584 0.3542852686 0.0146) (0.3301047705 0.3670471981 0.0146) (0.3442100611 0.3670471981 0.0146) (0.3583153516 0.3670471981 0.0146) (0.3724206421 0.3670471981 0.0146) (0.3865259326 0.3670471981 0.0146) (0.4006312232 0.3670471981 0.0146) (0.4147365137 0.3670471981 0.0146) (0.4288418042 0.3670471981 0.0146) (0.4429470947 0.3670471981 0.0146) (0.4570523853 0.3670471981 0.0146) (0.4711576758 0.3670471981 0.0146) (0.4852629663 0.3670471981 0.0146) (0.4993682568 0.3670471981 0.0146) (0.5134735474 0.3670471981 0.0146) (0.5275788379 0.3670471981 0.0146) (0.5416841284 0.3670471981 0.0146) (0.5557894189 0.3670471981 0.0146) (0.5698947095 0.3670471981 0.0146) (0.584 0.3670471981 0.0146) (0.3301047705 0.3798091276 0.0146) (0.3442100611 0.3798091276 0.0146) (0.3583153516 0.3798091276 0.0146) (0.3724206421 0.3798091276 0.0146) (0.3865259326 0.3798091276 0.0146) (0.4006312232 0.3798091276 0.0146) (0.4147365137 0.3798091276 0.0146) (0.4288418042 0.3798091276 0.0146) (0.4429470947 0.3798091276 0.0146) (0.4570523853 0.3798091276 0.0146) (0.4711576758 0.3798091276 0.0146) (0.4852629663 0.3798091276 0.0146) (0.4993682568 0.3798091276 0.0146) (0.5134735474 0.3798091276 0.0146) (0.5275788379 0.3798091276 0.0146) (0.5416841284 0.3798091276 0.0146) (0.5557894189 0.3798091276 0.0146) (0.5698947095 0.3798091276 0.0146) (0.584 0.3798091276 0.0146) (0.3301047705 0.3925710571 0.0146) (0.3442100611 0.3925710571 0.0146) (0.3583153516 0.3925710571 0.0146) (0.3724206421 0.3925710571 0.0146) (0.3865259326 0.3925710571 0.0146) (0.4006312232 0.3925710571 0.0146) (0.4147365137 0.3925710571 0.0146) (0.4288418042 0.3925710571 0.0146) (0.4429470947 0.3925710571 0.0146) (0.4570523853 0.3925710571 0.0146) (0.4711576758 0.3925710571 0.0146) (0.4852629663 0.3925710571 0.0146) (0.4993682568 0.3925710571 0.0146) (0.5134735474 0.3925710571 0.0146) (0.5275788379 0.3925710571 0.0146) (0.5416841284 0.3925710571 0.0146) (0.5557894189 0.3925710571 0.0146) (0.5698947095 0.3925710571 0.0146) (0.584 0.3925710571 0.0146) (0.3301047705 0.4053329867 0.0146) (0.3442100611 0.4053329867 0.0146) (0.3583153516 0.4053329867 0.0146) (0.3724206421 0.4053329867 0.0146) (0.3865259326 0.4053329867 0.0146) (0.4006312232 0.4053329867 0.0146) (0.4147365137 0.4053329867 0.0146) (0.4288418042 0.4053329867 0.0146) (0.4429470947 0.4053329867 0.0146) (0.4570523853 0.4053329867 0.0146) (0.4711576758 0.4053329867 0.0146) (0.4852629663 0.4053329867 0.0146) (0.4993682568 0.4053329867 0.0146) (0.5134735474 0.4053329867 0.0146) (0.5275788379 0.4053329867 0.0146) (0.5416841284 0.4053329867 0.0146) (0.5557894189 0.4053329867 0.0146) (0.5698947095 0.4053329867 0.0146) (0.584 0.4053329867 0.0146) (0.3301047705 0.4180949162 0.0146) (0.3442100611 0.4180949162 0.0146) (0.3583153516 0.4180949162 0.0146) (0.3724206421 0.4180949162 0.0146) (0.3865259326 0.4180949162 0.0146) (0.4006312232 0.4180949162 0.0146) (0.4147365137 0.4180949162 0.0146) (0.4288418042 0.4180949162 0.0146) (0.4429470947 0.4180949162 0.0146) (0.4570523853 0.4180949162 0.0146) (0.4711576758 0.4180949162 0.0146) (0.4852629663 0.4180949162 0.0146) (0.4993682568 0.4180949162 0.0146) (0.5134735474 0.4180949162 0.0146) (0.5275788379 0.4180949162 0.0146) (0.5416841284 0.4180949162 0.0146) (0.5557894189 0.4180949162 0.0146) (0.5698947095 0.4180949162 0.0146) (0.584 0.4180949162 0.0146) (0.3301047705 0.4308568457 0.0146) (0.3442100611 0.4308568457 0.0146) (0.3583153516 0.4308568457 0.0146) (0.3724206421 0.4308568457 0.0146) (0.3865259326 0.4308568457 0.0146) (0.4006312232 0.4308568457 0.0146) (0.4147365137 0.4308568457 0.0146) (0.4288418042 0.4308568457 0.0146) (0.4429470947 0.4308568457 0.0146) (0.4570523853 0.4308568457 0.0146) (0.4711576758 0.4308568457 0.0146) (0.4852629663 0.4308568457 0.0146) (0.4993682568 0.4308568457 0.0146) (0.5134735474 0.4308568457 0.0146) (0.5275788379 0.4308568457 0.0146) (0.5416841284 0.4308568457 0.0146) (0.5557894189 0.4308568457 0.0146) (0.5698947095 0.4308568457 0.0146) (0.584 0.4308568457 0.0146) (0.3301047705 0.4436187752 0.0146) (0.3442100611 0.4436187752 0.0146) (0.3583153516 0.4436187752 0.0146) (0.3724206421 0.4436187752 0.0146) (0.3865259326 0.4436187752 0.0146) (0.4006312232 0.4436187752 0.0146) (0.4147365137 0.4436187752 0.0146) (0.4288418042 0.4436187752 0.0146) (0.4429470947 0.4436187752 0.0146) (0.4570523853 0.4436187752 0.0146) (0.4711576758 0.4436187752 0.0146) (0.4852629663 0.4436187752 0.0146) (0.4993682568 0.4436187752 0.0146) (0.5134735474 0.4436187752 0.0146) (0.5275788379 0.4436187752 0.0146) (0.5416841284 0.4436187752 0.0146) (0.5557894189 0.4436187752 0.0146) (0.5698947095 0.4436187752 0.0146) (0.584 0.4436187752 0.0146) (0.3301047705 0.4563807048 0.0146) (0.3442100611 0.4563807048 0.0146) (0.3583153516 0.4563807048 0.0146) (0.3724206421 0.4563807048 0.0146) (0.3865259326 0.4563807048 0.0146) (0.4006312232 0.4563807048 0.0146) (0.4147365137 0.4563807048 0.0146) (0.4288418042 0.4563807048 0.0146) (0.4429470947 0.4563807048 0.0146) (0.4570523853 0.4563807048 0.0146) (0.4711576758 0.4563807048 0.0146) (0.4852629663 0.4563807048 0.0146) (0.4993682568 0.4563807048 0.0146) (0.5134735474 0.4563807048 0.0146) (0.5275788379 0.4563807048 0.0146) (0.5416841284 0.4563807048 0.0146) (0.5557894189 0.4563807048 0.0146) (0.5698947095 0.4563807048 0.0146) (0.584 0.4563807048 0.0146) (0.3301047705 0.4691426343 0.0146) (0.3442100611 0.4691426343 0.0146) (0.3583153516 0.4691426343 0.0146) (0.3724206421 0.4691426343 0.0146) (0.3865259326 0.4691426343 0.0146) (0.4006312232 0.4691426343 0.0146) (0.4147365137 0.4691426343 0.0146) (0.4288418042 0.4691426343 0.0146) (0.4429470947 0.4691426343 0.0146) (0.4570523853 0.4691426343 0.0146) (0.4711576758 0.4691426343 0.0146) (0.4852629663 0.4691426343 0.0146) (0.4993682568 0.4691426343 0.0146) (0.5134735474 0.4691426343 0.0146) (0.5275788379 0.4691426343 0.0146) (0.5416841284 0.4691426343 0.0146) (0.5557894189 0.4691426343 0.0146) (0.5698947095 0.4691426343 0.0146) (0.584 0.4691426343 0.0146) (0.3301047705 0.4819045638 0.0146) (0.3442100611 0.4819045638 0.0146) (0.3583153516 0.4819045638 0.0146) (0.3724206421 0.4819045638 0.0146) (0.3865259326 0.4819045638 0.0146) (0.4006312232 0.4819045638 0.0146) (0.4147365137 0.4819045638 0.0146) (0.4288418042 0.4819045638 0.0146) (0.4429470947 0.4819045638 0.0146) (0.4570523853 0.4819045638 0.0146) (0.4711576758 0.4819045638 0.0146) (0.4852629663 0.4819045638 0.0146) (0.4993682568 0.4819045638 0.0146) (0.5134735474 0.4819045638 0.0146) (0.5275788379 0.4819045638 0.0146) (0.5416841284 0.4819045638 0.0146) (0.5557894189 0.4819045638 0.0146) (0.5698947095 0.4819045638 0.0146) (0.584 0.4819045638 0.0146) (0.3301047705 0.4946664933 0.0146) (0.3442100611 0.4946664933 0.0146) (0.3583153516 0.4946664933 0.0146) (0.3724206421 0.4946664933 0.0146) (0.3865259326 0.4946664933 0.0146) (0.4006312232 0.4946664933 0.0146) (0.4147365137 0.4946664933 0.0146) (0.4288418042 0.4946664933 0.0146) (0.4429470947 0.4946664933 0.0146) (0.4570523853 0.4946664933 0.0146) (0.4711576758 0.4946664933 0.0146) (0.4852629663 0.4946664933 0.0146) (0.4993682568 0.4946664933 0.0146) (0.5134735474 0.4946664933 0.0146) (0.5275788379 0.4946664933 0.0146) (0.5416841284 0.4946664933 0.0146) (0.5557894189 0.4946664933 0.0146) (0.5698947095 0.4946664933 0.0146) (0.584 0.4946664933 0.0146) (0.3301047705 0.5074284229 0.0146) (0.3442100611 0.5074284229 0.0146) (0.3583153516 0.5074284229 0.0146) (0.3724206421 0.5074284229 0.0146) (0.3865259326 0.5074284229 0.0146) (0.4006312232 0.5074284229 0.0146) (0.4147365137 0.5074284229 0.0146) (0.4288418042 0.5074284229 0.0146) (0.4429470947 0.5074284229 0.0146) (0.4570523853 0.5074284229 0.0146) (0.4711576758 0.5074284229 0.0146) (0.4852629663 0.5074284229 0.0146) (0.4993682568 0.5074284229 0.0146) (0.5134735474 0.5074284229 0.0146) (0.5275788379 0.5074284229 0.0146) (0.5416841284 0.5074284229 0.0146) (0.5557894189 0.5074284229 0.0146) (0.5698947095 0.5074284229 0.0146) (0.584 0.5074284229 0.0146) (0.3301047705 0.5201903524 0.0146) (0.3442100611 0.5201903524 0.0146) (0.3583153516 0.5201903524 0.0146) (0.3724206421 0.5201903524 0.0146) (0.3865259326 0.5201903524 0.0146) (0.4006312232 0.5201903524 0.0146) (0.4147365137 0.5201903524 0.0146) (0.4288418042 0.5201903524 0.0146) (0.4429470947 0.5201903524 0.0146) (0.4570523853 0.5201903524 0.0146) (0.4711576758 0.5201903524 0.0146) (0.4852629663 0.5201903524 0.0146) (0.4993682568 0.5201903524 0.0146) (0.5134735474 0.5201903524 0.0146) (0.5275788379 0.5201903524 0.0146) (0.5416841284 0.5201903524 0.0146) (0.5557894189 0.5201903524 0.0146) (0.5698947095 0.5201903524 0.0146) (0.584 0.5201903524 0.0146) (0.3301047705 0.5329522819 0.0146) (0.3442100611 0.5329522819 0.0146) (0.3583153516 0.5329522819 0.0146) (0.3724206421 0.5329522819 0.0146) (0.3865259326 0.5329522819 0.0146) (0.4006312232 0.5329522819 0.0146) (0.4147365137 0.5329522819 0.0146) (0.4288418042 0.5329522819 0.0146) (0.4429470947 0.5329522819 0.0146) (0.4570523853 0.5329522819 0.0146) (0.4711576758 0.5329522819 0.0146) (0.4852629663 0.5329522819 0.0146) (0.4993682568 0.5329522819 0.0146) (0.5134735474 0.5329522819 0.0146) (0.5275788379 0.5329522819 0.0146) (0.5416841284 0.5329522819 0.0146) (0.5557894189 0.5329522819 0.0146) (0.5698947095 0.5329522819 0.0146) (0.584 0.5329522819 0.0146) (0.3301047705 0.5457142114 0.0146) (0.3442100611 0.5457142114 0.0146) (0.3583153516 0.5457142114 0.0146) (0.3724206421 0.5457142114 0.0146) (0.3865259326 0.5457142114 0.0146) (0.4006312232 0.5457142114 0.0146) (0.4147365137 0.5457142114 0.0146) (0.4288418042 0.5457142114 0.0146) (0.4429470947 0.5457142114 0.0146) (0.4570523853 0.5457142114 0.0146) (0.4711576758 0.5457142114 0.0146) (0.4852629663 0.5457142114 0.0146) (0.4993682568 0.5457142114 0.0146) (0.5134735474 0.5457142114 0.0146) (0.5275788379 0.5457142114 0.0146) (0.5416841284 0.5457142114 0.0146) (0.5557894189 0.5457142114 0.0146) (0.5698947095 0.5457142114 0.0146) (0.584 0.5457142114 0.0146) (0.3301047705 0.558476141 0.0146) (0.3442100611 0.558476141 0.0146) (0.3583153516 0.558476141 0.0146) (0.3724206421 0.558476141 0.0146) (0.3865259326 0.558476141 0.0146) (0.4006312232 0.558476141 0.0146) (0.4147365137 0.558476141 0.0146) (0.4288418042 0.558476141 0.0146) (0.4429470947 0.558476141 0.0146) (0.4570523853 0.558476141 0.0146) (0.4711576758 0.558476141 0.0146) (0.4852629663 0.558476141 0.0146) (0.4993682568 0.558476141 0.0146) (0.5134735474 0.558476141 0.0146) (0.5275788379 0.558476141 0.0146) (0.5416841284 0.558476141 0.0146) (0.5557894189 0.558476141 0.0146) (0.5698947095 0.558476141 0.0146) (0.584 0.558476141 0.0146) (0.3301047705 0.5712380705 0.0146) (0.3442100611 0.5712380705 0.0146) (0.3583153516 0.5712380705 0.0146) (0.3724206421 0.5712380705 0.0146) (0.3865259326 0.5712380705 0.0146) (0.4006312232 0.5712380705 0.0146) (0.4147365137 0.5712380705 0.0146) (0.4288418042 0.5712380705 0.0146) (0.4429470947 0.5712380705 0.0146) (0.4570523853 0.5712380705 0.0146) (0.4711576758 0.5712380705 0.0146) (0.4852629663 0.5712380705 0.0146) (0.4993682568 0.5712380705 0.0146) (0.5134735474 0.5712380705 0.0146) (0.5275788379 0.5712380705 0.0146) (0.5416841284 0.5712380705 0.0146) (0.5557894189 0.5712380705 0.0146) (0.5698947095 0.5712380705 0.0146) (0.584 0.5712380705 0.0146) (0.3301047705 0.584 0.0146) (0.3442100611 0.584 0.0146) (0.3583153516 0.584 0.0146) (0.3724206421 0.584 0.0146) (0.3865259326 0.584 0.0146) (0.4006312232 0.584 0.0146) (0.4147365137 0.584 0.0146) (0.4288418042 0.584 0.0146) (0.4429470947 0.584 0.0146) (0.4570523853 0.584 0.0146) (0.4711576758 0.584 0.0146) (0.4852629663 0.584 0.0146) (0.4993682568 0.584 0.0146) (0.5134735474 0.584 0.0146) (0.5275788379 0.584 0.0146) (0.5416841284 0.584 0.0146) (0.5557894189 0.584 0.0146) (0.5698947095 0.584 0.0146) (0.584 0.584 0.0146) ) // ************************************************************************* //
[ "averma5@illinois.edu" ]
averma5@illinois.edu
4319d2e407c5c351ac97f64177dba60f0cc9e6ba
d1ba241cefafd8dc220ea7f8690800c619b878b6
/Frameworks/ali.framework/Headers/ali_optional_forward.h
2071eec377e942c9caa5d19bf4cd1a2af215329d
[]
no_license
acrobits/Softphone-SaaS-ObjC
074fe4e714f2fbf1cb548fae757980f49504d62c
f764bf4e9a93c1f1a8b3b51686dc7583c6309570
refs/heads/main
2023-06-04T16:39:57.353744
2021-06-21T12:35:22
2021-06-21T12:35:22
378,051,060
0
0
null
null
null
null
UTF-8
C++
false
false
1,556
h
#pragma once #include "ali/ali_blob_forward.h" #include "ali/ali_tstring_forward.h" namespace ali { // ****************************************************************** template <typename T> class optional_common; // ****************************************************************** // ****************************************************************** template <typename T> class optional; // ****************************************************************** // ****************************************************************** template <> class optional<string>; // ****************************************************************** // ****************************************************************** template <> class optional<wstring>; // ****************************************************************** // ****************************************************************** using opt_string = optional<string>; // ****************************************************************** // ****************************************************************** using opt_wstring = optional<wstring>; // ****************************************************************** // ****************************************************************** using opt_tstring = optional<tstring>; // ****************************************************************** // ****************************************************************** using opt_blob = optional<blob>; // ****************************************************************** } // namespace ali
[ "arehman@acrobits.cz" ]
arehman@acrobits.cz
972f18e3414b4c2899b0aa8c104c525aa0359c2a
d708818eb856774f666ae42f382129a0fcdfc59a
/src/core/Object.h
980b76dac47810b7bdc8c5a2dc0fc3542ee8b109
[]
no_license
olethrosdc/beliefbox
8de9d602155c81c1740be4a1f47d647a41423597
44c0c160732b875f294a3f6d7f27e8f4cdf9602c
refs/heads/master
2021-12-26T02:57:01.307858
2021-12-09T14:33:49
2021-12-09T14:33:49
32,590,901
4
4
null
null
null
null
UTF-8
C++
false
false
878
h
// -*- Mode: c++ -*- // copyright (c) 2006 by Christos Dimitrakakis <christos.dimitrakakis@gmail.com> // $Id: MDP.h,v 1.3 2006/11/06 23:42:32 olethros Exp cdimitrakakis $ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef OBJECT_H #define OBJECT_H class Object { public: virtual ~Object(); }; #endif
[ "christos.dimitrakakis@44875545-593f-0410-a76b-43d55c7074bc" ]
christos.dimitrakakis@44875545-593f-0410-a76b-43d55c7074bc
44220736eed7c0e67394380e45bdc204326ee763
1af49694004c6fbc31deada5618dae37255ce978
/chrome/browser/chromeos/extensions/file_manager/file_stream_string_converter.h
da23cbd04633f05fdb6bbde91a2581d077ca9ec4
[ "BSD-3-Clause" ]
permissive
sadrulhc/chromium
59682b173a00269ed036eee5ebfa317ba3a770cc
a4b950c23db47a0fdd63549cccf9ac8acd8e2c41
refs/heads/master
2023-02-02T07:59:20.295144
2020-12-01T21:32:32
2020-12-01T21:32:32
317,678,056
3
0
BSD-3-Clause
2020-12-01T21:56:26
2020-12-01T21:56:25
null
UTF-8
C++
false
false
2,058
h
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_STREAM_STRING_CONVERTER_H_ #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_STREAM_STRING_CONVERTER_H_ #include <memory> #include "base/callback.h" #include "base/memory/ref_counted.h" #include "base/memory/ref_counted_memory.h" #include "net/base/io_buffer.h" namespace storage { class FileStreamReader; } namespace storage { // Converts a file stream to a std::string. class FileStreamStringConverter { public: using ResultCallback = base::OnceCallback<void(scoped_refptr<base::RefCountedString>)>; FileStreamStringConverter(); ~FileStreamStringConverter(); // Disallow Copy and Assign FileStreamStringConverter(const FileStreamStringConverter&) = delete; FileStreamStringConverter& operator=(const FileStreamStringConverter&) = delete; // Converts a file stream of data read from the given |streamReader| to a // string. The work occurs asynchronously, and the string is returned via the // |callback|. If an error occurs, |callback| is called with an empty string. // Only one stream can be processed at a time by each converter. Do not call // ConvertFileStreamToString before the results of a previous call have been // returned. void ConvertFileStreamToString( std::unique_ptr<storage::FileStreamReader> stream_reader, ResultCallback callback); private: // Kicks off a read of the next chunk from the stream. void ReadNextChunk(); // Handles the incoming chunk of data from a stream read. void OnChunkRead(int bytes_read); // Maximum chunk size for read operations. std::unique_ptr<storage::FileStreamReader> reader_; scoped_refptr<net::IOBuffer> buffer_; ResultCallback callback_; std::string local_buffer_; }; } // namespace storage #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_STREAM_STRING_CONVERTER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
82241705542d1f7386e0bebdbe2d99fff8480c9b
7ff2354c647253c9d63831d6c7b46100c05a7bb3
/win32/tinnysprite/client/TinnySpriteView.cpp
0f1994d05df87576c170ef8e9b7f39b1a71afe54
[]
no_license
Omgan/code4me
d28143c1aac5ff097cc50fab820c1a2706bc1eb7
19b2bd1a06780f29e93745a1dee89932a65b9c76
refs/heads/master
2020-12-28T21:06:36.220571
2013-06-19T02:20:14
2013-06-19T02:20:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,638
cpp
// TinnySpriteView.cpp : implementation of the CTinnySpriteView class // #include "stdafx.h" // SHARED_HANDLERS can be defined in an ATL project implementing preview, thumbnail // and search filter handlers and allows sharing of document code with that project. #ifndef SHARED_HANDLERS #include "TinnySprite.h" #endif #include "TinnySpriteDoc.h" #include "TinnySpriteView.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CTinnySpriteView IMPLEMENT_DYNCREATE(CTinnySpriteView, CView) BEGIN_MESSAGE_MAP(CTinnySpriteView, CView) // Standard printing commands ON_COMMAND(ID_FILE_PRINT, &CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_DIRECT, &CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_PREVIEW, &CTinnySpriteView::OnFilePrintPreview) ON_WM_CONTEXTMENU() ON_WM_RBUTTONUP() END_MESSAGE_MAP() // CTinnySpriteView construction/destruction CTinnySpriteView::CTinnySpriteView() { // TODO: add construction code here } CTinnySpriteView::~CTinnySpriteView() { } BOOL CTinnySpriteView::PreCreateWindow(CREATESTRUCT& cs) { // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs return CView::PreCreateWindow(cs); } // CTinnySpriteView drawing void CTinnySpriteView::OnDraw(CDC* /*pDC*/) { CTinnySpriteDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); if (!pDoc) return; // TODO: add draw code for native data here } // CTinnySpriteView printing void CTinnySpriteView::OnFilePrintPreview() { #ifndef SHARED_HANDLERS AFXPrintPreview(this); #endif } BOOL CTinnySpriteView::OnPreparePrinting(CPrintInfo* pInfo) { // default preparation return DoPreparePrinting(pInfo); } void CTinnySpriteView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add extra initialization before printing } void CTinnySpriteView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add cleanup after printing } void CTinnySpriteView::OnRButtonUp(UINT /* nFlags */, CPoint point) { ClientToScreen(&point); OnContextMenu(this, point); } void CTinnySpriteView::OnContextMenu(CWnd* /* pWnd */, CPoint point) { #ifndef SHARED_HANDLERS theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_EDIT, point.x, point.y, this, TRUE); #endif } // CTinnySpriteView diagnostics #ifdef _DEBUG void CTinnySpriteView::AssertValid() const { CView::AssertValid(); } void CTinnySpriteView::Dump(CDumpContext& dc) const { CView::Dump(dc); } CTinnySpriteDoc* CTinnySpriteView::GetDocument() const // non-debug version is inline { ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTinnySpriteDoc))); return (CTinnySpriteDoc*)m_pDocument; } #endif //_DEBUG // CTinnySpriteView message handlers
[ "hikerlive@gmail.com" ]
hikerlive@gmail.com
c411b988173d55443534676c4a242d7b9d7a90ec
65db8ce2ea9669ddaf14c0a058a09076b8153255
/graphics/flow/flow.hpp
b16dcaa3b06582b3c7ffdf2b7b75a270a2f88f34
[ "BSD-2-Clause" ]
permissive
biotty/rmg
2dbc9fd574eb241a6c13a34990412470df4929ba
61378d105787d97410beeaf5894f7b14f5d5b90b
refs/heads/master
2022-12-06T10:00:09.327085
2022-04-27T02:44:12
2022-04-27T02:44:12
26,030,670
3
0
BSD-2-Clause
2022-04-27T02:44:13
2014-10-31T19:40:58
C++
UTF-8
C++
false
false
2,339
hpp
// © Christian Sommerfeldt Øien // All rights reserved #ifndef FLOW_HPP #define FLOW_HPP #include "cellular.hpp" #include "planar.hpp" template<class T> struct FlowFunction { virtual ~FlowFunction() {} virtual bool operator()(Grid<T> * flow_swap, Grid<T> * flow, double step_t) = 0; }; template<class T> struct Flow { Grid<T> field_a; Grid<T> field_b; Grid<T> * field; Grid<T> * field_swap; Flow(size_t h, size_t w) : field_a(h, w) , field_b(h, w) , field(&field_a) , field_swap(&field_b) {} void lapse(double delta_t, size_t & n_steps, std::vector<FlowFunction<T>*> & functions) { for (size_t step = 0; step < n_steps; ++step) for (size_t i = 0; i < functions.size(); ++i) { re:try { if ((*functions[i])(field_swap, field, delta_t/n_steps)) std::swap(field, field_swap); } catch (double f) { assert(i == 0); //a "guard"-function must be the first one n_steps *= 2; step *= 2; std::cerr << f << " -- augments #steps to " << n_steps << "\n"; goto re; } } } }; template<class T> struct CompositeFunction : FlowFunction<T> { std::vector<FlowFunction<T> *> functions; CompositeFunction(std::vector<FlowFunction<T> *> v) : functions(v) {} bool operator()(Grid<T> * field_swap, Grid<T> * field, double step_t) { Grid<T> * a = field_swap; Grid<T> * b = field; for (size_t k = 0; k < functions.size(); ++k) if ((*functions[k])(a, b, step_t)) std::swap(a, b); return (a == field); } }; template<class T> struct EdgeFunction : FlowFunction<T> { EdgeFunction() {} bool operator()(Grid<T> * /*field_swap*/, Grid<T> * field, double /*step_t*/) { size_t h = field->h; size_t w = field->w; for (size_t i = 0; i < h; ++i) { field->cell(i, 0) = xy::zero; field->cell(i, w - 1) = xy::zero; } for (size_t j = 0; j < w; ++j) { field->cell(0, j) = xy::zero; field->cell(h - 1, j) = xy::zero; } return false; } }; #endif
[ "christian.oien@gmail.com" ]
christian.oien@gmail.com
1ce9d16517dead7fd1335b7601584ccbea199fc8
6e3b59d15607630869f518aee24c762d5dd71d06
/CODES/C_Phone_Numbers.cpp
60a9644a6d2a3257f59b5aa1cf5dbf0de9127d87
[]
no_license
Aman-droid/CP_Essentials
c74ffce2c4acc9fa6b0ebc409f9f6e9640f92c91
40758de037a4b380bd7d921cd3cd7c4f8fc86be1
refs/heads/master
2023-06-05T13:56:29.053495
2021-06-29T18:13:14
2021-06-29T18:13:14
381,141,371
1
0
null
null
null
null
UTF-8
C++
false
false
1,983
cpp
#include<bits/stdc++.h> #define ll long long #define endl '\n' #define rep(i,a,b) for(int i=a;i<=b;i++) #define pll pair<ll,ll> #define pii pair<int,int> #define vpll vector<pll> #define SZ(x) ((int)x.size()) #define FIO ios_base::sync_with_stdio(0);cin.tie(NULL);cout.tie(NULL) #define watch(x)cout<<(#x)<<" is "<<(x)<<"\n" #define watch2(x,y)cout<<(#x)<<" is "<<(x)<<" and "<<(#y)<<" is "<<(y)<<"\n" #define pb push_back #define pf push_front #define ff first #define ss second #define mod 1000000007 #define INF (ll)(1e18) #define all(c) (c).begin(),(c).end() using namespace std; ll power(ll a, ll b){//a^b ll res=1; a=a%mod; while(b>0){ if(b&1){res=(res*a)%mod;b--;} a=(a*a)%mod; b>>=1; } return res; } ll gcd(ll a, ll b){return (b==0)?a:gcd(b,a%b);} //-------------------soln-------------------------------------------// map<string,set<string>>mp; bool chk(string s,string t){ int cnt=0; for(auto it :mp[s]){ if(SZ(it)>SZ(t)){ string tmp= it.substr(SZ(it)-SZ(t)); int fl=0; rep(i,0,SZ(t)){ if(tmp[i]!=t[i]){ fl=1; break; } } if(fl==0)cnt++; } } if(cnt>0)return false; else return true; } void solve(){ int n,m;cin>>n; string s,t; while(n--){ cin>>s>>m; while(m--){ cin>>t; mp[s].insert(t); } } cout<<SZ(mp)<<endl; //it.ff = string for(auto it:mp){ set<string>ans; for(auto j:it.ss){ if(chk(it.ff,j)){ ans.insert(j); } } cout<<it.ff<<" "; cout<<SZ(ans)<<" "; for(auto x:ans){ cout<<x<<" "; } cout<<endl; } } signed main() { //freopen("input.txt","r",stdin); // freopen("output.txt","w",stdout); FIO; int T=1;//cin>>T; while (T--){ solve(); } return 0; }
[ "rjaman330@gmail.com" ]
rjaman330@gmail.com
7af2370b9950e5e1b1b49969584b4cfdc26c7d18
8c8820fb84dea70d31c1e31dd57d295bd08dd644
/UMG/Private/Binding/CheckedStateBinding.cpp
5d04e58f576a0d5003e7676d4485928e5a624818
[]
no_license
redisread/UE-Runtime
e1a56df95a4591e12c0fd0e884ac6e54f69d0a57
48b9e72b1ad04458039c6ddeb7578e4fc68a7bac
refs/heads/master
2022-11-15T08:30:24.570998
2020-06-20T06:37:55
2020-06-20T06:37:55
274,085,558
3
0
null
null
null
null
UTF-8
C++
false
false
1,603
cpp
// Copyright Epic Games, Inc. All Rights Reserved. #include "Binding/CheckedStateBinding.h" #include "Styling/SlateTypes.h" #define LOCTEXT_NAMESPACE "UMG" UCheckedStateBinding::UCheckedStateBinding() { } bool UCheckedStateBinding::IsSupportedSource(FProperty* Property) const { return IsSupportedDestination(Property) || IsConcreteTypeCompatibleWithReflectedType<bool>(Property); } bool UCheckedStateBinding::IsSupportedDestination(FProperty* Property) const { static const FName CheckBoxStateEnum(TEXT("ECheckBoxState")); if ( FEnumProperty* EnumProperty = CastField<FEnumProperty>(Property) ) { return EnumProperty->GetEnum()->GetFName() == CheckBoxStateEnum; } else if ( FByteProperty* ByteProperty = CastField<FByteProperty>(Property) ) { if ( ByteProperty->IsEnum() ) { return ByteProperty->Enum->GetFName() == CheckBoxStateEnum; } } return false; } ECheckBoxState UCheckedStateBinding::GetValue() const { //SCOPE_CYCLE_COUNTER(STAT_UMGBinding); if ( UObject* Source = SourceObject.Get() ) { if ( bConversion.Get(EConversion::None) == EConversion::None ) { uint8 Value = 0; if ( SourcePath.GetValue<uint8>(Source, Value) ) { bConversion = EConversion::None; return static_cast<ECheckBoxState>(Value); } } if ( bConversion.Get(EConversion::Bool) == EConversion::Bool ) { bool Value = false; if ( SourcePath.GetValue<bool>(Source, Value) ) { bConversion = EConversion::Bool; return Value ? ECheckBoxState::Checked : ECheckBoxState::Unchecked; } } } return ECheckBoxState::Unchecked; } #undef LOCTEXT_NAMESPACE
[ "wujiahong19981022@outlook.com" ]
wujiahong19981022@outlook.com
ef762cd007265eae7f6ea69398c6e12c595e3465
3a7322640a619ffe793e88de4807c58f2a645fb6
/cpp/exception_ex1/exception_ex1.hpp
4dc64634d02aab5f42472816e78e5c5219d83aa3
[]
no_license
MiritHadar/Practice
d0e60fce8c9346212fd3e1071cb7395e63bec69a
471e75393e02d61601a235fe65f0121ae1121b5c
refs/heads/master
2020-09-08T01:30:03.102784
2020-04-30T14:03:51
2020-04-30T14:03:51
220,971,061
0
0
null
null
null
null
UTF-8
C++
false
false
765
hpp
/* ******************************************************************************** Developer : Mirit Hadar Reviewer : Last Update : Status : ******************************************************************************** */ #ifndef __OL67_exception_ex1 #define __OL67_exception_ex1 #include <iostream> /* cout, runtime */ #include <string> /* string */ namespace ilrd { struct BadDog: public std::runtime_error { BadDog(const std::string &s_ = "this is a bad dog") : std::runtime_error(s_) { ; } }; void Fifi(); void Foo(); void Bar(); class A { public: A() { std::cout << "Ctor" << std::endl; } ~A() { std::cout << "Dtor" << std::endl; } }; }//namespace ilrd #endif /* __OL67_exception_ex1 */
[ "mirit6873079@gmail.com" ]
mirit6873079@gmail.com
8ceea52f8bc408fc60917487b7fb3e1a4f4a9490
2fba0c8ea5f69b5afe60a9a273eb18ec519059fe
/sprout/range/numeric/fit/adjacent_difference.hpp
3ee03292aceaf34d27dfd2d638a9a2a17ec90236
[ "BSL-1.0" ]
permissive
jwakely/Sprout
683acb3ea214526eedf2b656a70a25a2be6e1b3a
a64938fad0a64608f22d39485bc55a1e0dc07246
refs/heads/master
2021-01-16T17:51:20.841753
2012-07-25T05:27:01
2012-07-25T05:27:01
5,179,121
1
0
null
null
null
null
UTF-8
C++
false
false
1,319
hpp
#ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP #define SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP #include <sprout/config.hpp> #include <sprout/container/traits.hpp> #include <sprout/container/functions.hpp> #include <sprout/algorithm/fit/result_of.hpp> #include <sprout/numeric/fit/adjacent_difference.hpp> namespace sprout { namespace range { namespace fit { // // adjacent_difference // template<typename Input, typename Result> inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type adjacent_difference( Input const& input, Result const& result ) { return sprout::fit::adjacent_difference(sprout::begin(input), sprout::end(input), result); } // // adjacent_difference // template<typename Input, typename Result, typename BinaryOperation> inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type adjacent_difference( Input const& input, Result const& result, BinaryOperation binary_op ) { return sprout::fit::adjacent_difference(sprout::begin(input), sprout::end(input), result, binary_op); } } // namespace fit } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com
d86ea1ae36a48721abb44c4b3fcc923fec402612
6a7ae2330c1e60d6e6e2c6236685f5b8fb953a05
/XenonFramework2/XenonFramework2/XeFramework/Canvas.cpp
950985fb82047e64f1b1d046e716a01e53dfbb69
[]
no_license
PsichiX/XenonCore2
f4a8bb74640c488f535a637583941f1a675bae52
a875c255033ae4f0540e6316fb09711acd44e852
refs/heads/master
2020-12-24T16:50:18.511387
2013-09-29T12:44:28
2013-09-29T12:44:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,442
cpp
#include "Canvas.h" #include "Texture.h" #include "Asset.h" #include "CanvasManager.h" RTTI_CLASS_DERIVATIONS( Canvas, RTTI_DERIVATION( Asset ), RTTI_DERIVATIONS_END ); Canvas::Canvas( int w, int h, Type t ): RTTI_CLASS_DEFINE( Canvas ), m_type( t ), m_clearOnActivate( false ), m_depthTest( false ) { if( XeCore::Photon::XeFrameBufferCreate( &m_fbo, w, h, t == tData ? XeCore::XE_DATA : XeCore::XE_2D ) ) { m_texture = *(XeCore::Photon::XeElmTexture*)XeCore::Photon::XeFrameBufferGet( m_fbo, XeCore::XE_FRAMEBUFFER_TEXTURE ); m_textureDepth = *(XeCore::Photon::XeElmTexture*)XeCore::Photon::XeFrameBufferGet( m_fbo, XeCore::XE_FRAMEBUFFER_TEXTURE_DEPTH ); } } Canvas::~Canvas() { XeCore::Photon::XeFrameBufferDestroy( m_fbo ); m_fbo.Unref(); m_texture.Unref(); m_textureDepth.Unref(); Asset::release( this ); } int Canvas::getWidth() { if( m_fbo.IsEmpty() ) return( -1 ); return( *(int*)XeCore::Photon::XeFrameBufferGet( m_fbo, XeCore::XE_FRAMEBUFFER_WIDTH ) ); } int Canvas::getHeight() { if( m_fbo.IsEmpty() ) return( -1 ); return( *(int*)XeCore::Photon::XeFrameBufferGet( m_fbo, XeCore::XE_FRAMEBUFFER_HEIGHT ) ); } Canvas::Type Canvas::getType() { return( m_type ); } bool Canvas::activate() { if( XeCore::Photon::XeFrameBufferActivate( m_fbo ) ) { if(m_depthTest) XeCore::XeSetState( XeCore::XE_RENDER_DEPTH_TEST, XeCore::XE_TRUE ); if( m_clearOnActivate ) XeCore::Photon::XeRenderScene( XE_FLAG_COLORBUFF | XE_FLAG_DEPTHBUFF ); return( true ); } return( false ); } bool Canvas::unactivate() { XeCore::XeSetState( XeCore::XE_RENDER_DEPTH_TEST, XeCore::XE_FALSE ); return( XeCore::Photon::XeFrameBufferUnactivate( m_fbo ) ); } bool Canvas::activateTexture() { return( XeCore::Photon::XeFrameBufferActivateTexture( m_fbo ) ); } bool Canvas::unactivateTexture() { return( XeCore::Photon::XeFrameBufferUnactivateTexture( m_fbo ) ); } bool Canvas::activateTextureDepth() { return( XeCore::Photon::XeFrameBufferActivateTextureDepth( m_fbo ) ); } bool Canvas::unactivateTextureDepth() { return( XeCore::Photon::XeFrameBufferUnactivateTextureDepth( m_fbo ) ); } const XeCore::Photon::XeElmTexture& Canvas::getTexture() { return( m_texture ); } const XeCore::Photon::XeElmTexture& Canvas::getTextureDepth() { return( m_textureDepth ); } const XeCore::Photon::XeElmFrameBuffer& Canvas::getFBO() { return( m_fbo ); } void Canvas::setClearOnActivate( bool mode ) { m_clearOnActivate = mode; } bool Canvas::getClearOnActivate() { return( m_clearOnActivate ); } void Canvas::setDepthMode( bool m ) { m_depthTest = m; } bool Canvas::getDepthMode() { return( m_depthTest ); } bool Canvas::filtering( int level ) { if( level == 0 ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST ); unactivateTexture(); return( true ); } else if( level == 1 ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTexture(); return( true ); } else if( level == 2 ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST_MIPMAP_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTexture(); return( true ); } else if( level == 3 ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR_MIPMAP_NEAREST ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTexture(); return( true ); } else if( level == 4 ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR_MIPMAP_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTexture(); return( true ); } else return( false ); } void Canvas::repeating( bool mode ) { activateTexture(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_WRAP_S, float( mode ? XeCore::XE_TEXTURE_PARAM_REPEAT : XeCore::XE_TEXTURE_PARAM_CLAMP ) ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_WRAP_T, float( mode ? XeCore::XE_TEXTURE_PARAM_REPEAT : XeCore::XE_TEXTURE_PARAM_CLAMP ) ); unactivateTexture(); } bool Canvas::filteringDepth( int level ) { if( level == 0 ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST ); unactivateTextureDepth(); return( true ); } else if( level == 1 ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTextureDepth(); return( true ); } else if( level == 2 ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_NEAREST_MIPMAP_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTextureDepth(); return( true ); } else if( level == 3 ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR_MIPMAP_NEAREST ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTextureDepth(); return( true ); } else if( level == 4 ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MIN_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR_MIPMAP_LINEAR ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_MAG_FILTER, XeCore::XE_TEXTURE_PARAM_LINEAR ); unactivateTextureDepth(); return( true ); } else return( false ); } void Canvas::repeatingDepth( bool mode ) { activateTextureDepth(); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_WRAP_S, float( mode ? XeCore::XE_TEXTURE_PARAM_REPEAT : XeCore::XE_TEXTURE_PARAM_CLAMP ) ); XeCore::Photon::XeTextureParameter( XeCore::XE_TEXTURE_PARAM_WRAP_T, float( mode ? XeCore::XE_TEXTURE_PARAM_REPEAT : XeCore::XE_TEXTURE_PARAM_CLAMP ) ); unactivateTextureDepth(); } Asset* Canvas::onLoad( AssetManager* manager, XeCore::XeString& name, Params& params, bool keepAlways ) { int w( 0 ), h( 0 ); Canvas::Type type = Canvas::t2d; if( params.Exists( "width" ) ) params[ "width" ].getValue().Convert( &w, 'i' ); if( params.Exists( "height" ) ) params[ "height" ].getValue().Convert( &h, 'i' ); if( params.Exists( "type" ) && params[ "type" ].getValue() == "data" ) type = Canvas::tData; Canvas* t = xnew Canvas( w, h, type ); if( params.Exists( "depthMode" ) ) t->setDepthMode( params[ "depthMode" ].getValue() == "true" ); if( params.Exists( "clearOnActivate" ) ) t->setClearOnActivate( params[ "clearOnActivate" ].getValue() == "true" ); if( params.Exists( "textureColorFilteringLevel" ) ) { int flevel( 0 ); params[ "textureColorFilteringLevel" ].getValue().Convert( &flevel, 'i' ); t->filtering( flevel ); } if( params.Exists( "textureColorRepeating" ) ) t->repeating( params[ "textureColorRepeating" ].getValue() == "true" ); if( params.Exists( "textureDepthFilteringLevel" ) ) { int flevel( 0 ); params[ "textureDepthFilteringLevel" ].getValue().Convert( &flevel, 'i' ); t->filteringDepth( flevel ); } if( params.Exists( "textureDepthRepeating" ) ) t->repeatingDepth( params[ "textureDepthRepeating" ].getValue() == "true" ); if( Global::use().canvases->attach( NameID( name ), t ) ) { ASSET_SET_PURE_POINTER( t ); return( t ); } else { DELETE_OBJECT( t ); return( 0 ); } } void Canvas::onUnload() { Global::use().canvases->detach( NameID( getAssetName() ) ); } Canvas::Canvas(): RTTI_CLASS_DEFINE( Canvas ) { }
[ "pbudzynski@ganymede.eu" ]
pbudzynski@ganymede.eu
00f0cc86386787ec68f3c68919ce9fbf07eaf0c6
9439733c1fa7689ec711b6e71d960e260b30e724
/test_code/test_file_io.cc
1266c597580bf142b43c10db7ae4b66c727a4ddc
[]
no_license
bobstine/lang_C
65a75951b450bee92ca2e411f20be961b660c2e6
dfe3411ffe5aa4389b6c43baced1bb974de7b995
refs/heads/master
2020-05-31T00:09:18.192842
2020-04-20T18:21:03
2020-04-20T18:21:03
190,020,135
0
0
null
null
null
null
UTF-8
C++
false
false
573
cc
#include <iostream> #include <fstream> #include <string> int main() { // first without condensing small POS { std::ifstream fs("/Users/bob/C/text/test_in"); if (!fs) std::cout << "TEST: Could not open file.\n"; else { int counter = 0; while (fs && counter<10) { std::string str; std::cout << " ------------- HERE -------main------" << std::endl; fs >> str; std::cout << " Read the string... " << str << std::endl; ++counter; } std::cout << " ------------- HERE -------main------" << std::endl; } } return 0; }
[ "stine@wharton.upenn.edu" ]
stine@wharton.upenn.edu
62d12246177a1fe235ce5447de668004a0133d67
72102e9f9106dbb1a6cee25f55c8bcf5ac014f36
/Codeforces/EDUCF55/vasya_and_book.cpp
309b1deeb8aac46237d28ba4f09292237e91b650
[]
no_license
harshitdiit/CompetitiveCoding
07ad7b08f596395614fbecfaa68837b56a3be539
c5c35d8d360eff227d572132a16d7d7c36e184bb
refs/heads/master
2021-08-17T08:30:42.594898
2020-04-08T00:50:01
2020-04-08T00:50:01
154,908,713
0
0
null
null
null
null
UTF-8
C++
false
false
575
cpp
#include<bits/stdc++.h> using namespace std; #define foutput ofstream cout;cout.open("out.txt") int main(){ int t; cin>>t; while(t--){ int n,x,y,d; cin>>n>>x>>y>>d; int rem = x%d; int ans = INT_MAX; if(abs(x-y)%d==0){ ans = abs(y-x)/d; } else{ if(y%d==1){ ans = min(ans, (int)(ceil(abs((x-1)/(double)d)) + (y-1)/d)); } if(n%d==y%d){ ans = min(ans, (int)(ceil(abs((n-x)/(double)d)) + (n-y)/d)); } if(ans==INT_MAX){ ans = -1; } } cout<<ans<<endl; } return 0; }
[ "harshitdiit@gmail.com" ]
harshitdiit@gmail.com
e899a88dc89a3d8908e789b657b212cfb3acc3a3
91c027bf2509a600117b207cf16f661ee2bc674b
/api/api_athena/src/modules/minbar_predictor/ma_pred/ma_cal/ma_cal.h
5bcde3c974598a410183a394c35c0941fb9149d4
[]
no_license
xibaomo/athena_new
1b070bdf3f26c389a879dc2bc11ffd8173e81a52
67eb483699f615a8ae3d2925ba3928104908552a
refs/heads/main
2023-07-17T21:18:31.590878
2021-08-26T01:25:14
2021-08-26T01:25:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
h
/* * ===================================================================================== * * Filename: ma_cal.h * * Description: Base of MA calculator * * Version: 1.0 * Created: 04/22/2019 02:11:40 AM * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef _BASE_PREDICT_MA_CALCULATOR_H_ #define _BASE_PREDICT_MA_CALCULATOR_H_ #include <vector> #include "minbar_predictor/mb_base/mb_base_pred.h" enum class MA_TYPE { LWMA, EMA, SMA }; class MACalculator { protected: public: virtual ~MACalculator() {;} virtual void compAllMA(std::vector<real32>& arr, int lookback,std::vector<real32>& out) = 0; virtual real32 compLatestMA(std::vector<real32>& arr, int lookback, size_t idx) = 0; }; MACalculator* createMACalculator(MA_TYPE mt); #endif /* ----- #ifndef _BASE_PREDICT_MA_CALCULATOR_H_ ----- */
[ "fxua@gmail.com" ]
fxua@gmail.com
c79471d05f2aa9794dadc98b5704cd64f3ba735a
dc62e4e26a790c327f3051a7d9726c0c27dd1d60
/first semester/HW4/HW4/4-4/4.cpp
3c97aa1a4b859472be3b8dc5b6bd08361db248ee
[]
no_license
Dasha-Belozerceva/homework
31e94b3d8ac1bdfaa8189c6b3cd68d8ce0d885cd
bb3c998bf3cc38ab5feb8db3af4f64bee58ea319
refs/heads/master
2016-09-05T19:45:37.895976
2015-05-26T15:26:20
2015-05-26T15:26:20
31,025,999
0
0
null
2015-05-29T13:19:10
2015-02-19T17:00:30
C#
WINDOWS-1251
C++
false
false
834
cpp
#include <iostream> using namespace std; void Shell(int arr[100], int length) { int interval = length; interval = interval / 2; while (interval > 0) { for (int i = 0; i < length - interval; ++i) { int j = i; while (j >= 0 && arr[j] > arr[j + interval]) { int count = arr[j]; arr[j] = arr[j + interval]; arr[j + interval] = count; j--; } } interval = interval / 2; } for (int i = 0; i < length; ++i) cout << arr[i] << " "; } void main() { setlocale(LC_ALL, "Rus"); int length = 0; cout << "Размер массива:"; cin >> length; int *arr = new int[length]; cout << "Введите элементы массива: "; for (int i = 0; i < length; ++i) { cin >> arr[i]; } cout << "Отсортированный массив: "; Shell(arr, length); delete [] arr; }
[ "d_belosertseva@mail.ru" ]
d_belosertseva@mail.ru
63aa204bc1c83c1c4447f2834e9f15026a85def6
5ac113c326bef59d8e127b60d5122045bb564241
/src/txdb.h
8c39c3239a60500e045ceb197d56fe7e87b95920
[ "MIT" ]
permissive
warrenween/ticoin
ce09cc4ee85475c82cb8329db143ba71207ffa72
e767f0d80fc8b1788dd259168545bf1d942e472b
refs/heads/master
2021-01-18T15:31:52.622297
2017-06-12T03:55:33
2017-06-12T03:55:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,360
h
/**-5-10Copyright (c) 2009-2010 Satoshi Nakamoto /**-5-10Copyright (c) 2009-2013 The ticoin developers /**-5-10Distributed under the MIT/X11 software license, see the accompanying /**-5-10file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef ticoin_TXDB_LEVELDB_H #define ticoin_TXDB_LEVELDB_H #include "leveldbwrapper.h" #include "main.h" #include <map> #include <string> #include <utility> #include <vector> class CBigNum; class CCoins; class uint256; /**-5-10-dbcache default (MiB) static const int64_t nDefaultDbCache = 100; /**-5-10max. -dbcache in (MiB) static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 4096 : 1024; /**-5-10min. -dbcache in (MiB) static const int64_t nMinDbCache = 4; /** CCoinsView backed by the LevelDB coin database (chainstate/) */ class CCoinsViewDB : public CCoinsView { protected: CLevelDBWrapper db; public: CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false); bool GetCoins(const uint256 &txid, CCoins &coins); bool SetCoins(const uint256 &txid, const CCoins &coins); bool HaveCoins(const uint256 &txid); uint256 GetBestBlock(); bool SetBestBlock(const uint256 &hashBlock); bool BatchWrite(const std::map<uint256, CCoins> &mapCoins, const uint256 &hashBlock); bool GetStats(CCoinsStats &stats); }; /** Access to the block database (blocks/index/) */ class CBlockTreeDB : public CLevelDBWrapper { public: CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false); private: CBlockTreeDB(const CBlockTreeDB&); void operator=(const CBlockTreeDB&); public: bool WriteBlockIndex(const CDiskBlockIndex& blockindex); bool WriteBestInvalidWork(const CBigNum& bnBestInvalidWork); bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo); bool WriteBlockFileInfo(int nFile, const CBlockFileInfo &fileinfo); bool ReadLastBlockFile(int &nFile); bool WriteLastBlockFile(int nFile); bool WriteReindexing(bool fReindex); bool ReadReindexing(bool &fReindex); bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos); bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &list); bool WriteFlag(const std::string &name, bool fValue); bool ReadFlag(const std::string &name, bool &fValue); bool LoadBlockIndexGuts(); }; #endif /**-5-10ticoin_TXDB_LEVELDB_H
[ "evvalue@gmail.com" ]
evvalue@gmail.com
90ff45aa322947d509c0bc18becb8a80827828e7
86fd3ac69854454057be1154f70f6fb47e800072
/Input.h
82402d43705f02c03b7f738efde3d9ba07786cb2
[]
no_license
dotKokott/SuperMarioClone
505dfdf5d0cb6a866e86c81a8df165b466e0c31b
548c24569107aff6ab50194d5771bdc90aa29ffb
refs/heads/master
2016-09-03T06:32:03.566956
2013-11-18T19:22:37
2013-11-18T19:22:37
14,502,528
1
1
null
null
null
null
UTF-8
C++
false
false
1,269
h
#pragma once #include "template.h" #include "InputState.h" #define MOUSE_LEFT 1 #define MOUSE_RIGHT 3 class Input { public: static InputState* PreviousState; static InputState* State; static void NewState(); static bool IsKeyDown(unsigned int code) { return isKeyDown(State, code); } static bool IsKeyUp(unsigned int code) { return IsKeyDownPrevious(code) && !isKeyDown(State, code); } static bool IsKeyJustPressed(unsigned int code) { return !IsKeyDownPrevious(code) && IsKeyDown(code); } static bool IsKeyDownPrevious(unsigned int code) { return isKeyDown(PreviousState, code); } static bool IsMouseJustDown(unsigned int code) { return !IsMouseDownPrevious(code) && IsMouseDown(code); } static bool IsMouseDown(unsigned int code) { return isMouseDown(State, code); } static bool IsMouseUp(unsigned int code) { return IsMouseDownPrevious(code) && !isMouseDown(State, code); } static bool IsMouseDownPrevious(unsigned int code) { return isMouseDown(PreviousState, code); } private: static bool isKeyDown(InputState* state, unsigned int code) { return state->KeyDown[code]; } static bool isMouseDown(InputState* state, unsigned int code) { return state->MouseDown[code]; } };
[ "christian.kokott@online.de" ]
christian.kokott@online.de
bc49a28a5485b1a883d83ec1d9350119ab2e776c
3448a43cf0635866b25e5d513dd60fb003f47e29
/src/xrGame/Script_SchemeSRIdle.h
063da623c3abcb911607c5d0772a929940949870
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
xrLil-Batya/cordisproject
49632acc5e68bea9847d001d82fb049703d223c2
24275a382fec62a4e58d11579bf497b894f220ba
refs/heads/master
2023-03-19T01:17:25.170059
2020-11-17T14:22:06
2020-11-17T14:22:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,759
h
#pragma once namespace Cordis { namespace Scripts { class Script_SchemeSRIdle : public Script_ISchemeEntity { using inherited_scheme = Script_ISchemeEntity; public: Script_SchemeSRIdle(void) = delete; Script_SchemeSRIdle(CScriptGameObject* const p_client_object, DataBase::Script_ComponentScheme_SRIdle* storage); ~Script_SchemeSRIdle(void); virtual void reset_scheme(const bool value, CScriptGameObject* const p_client_object); virtual void update(const float delta); // @ PRIVATE uses, in XR_LOGIC static inline void add_to_binder(CScriptGameObject* const p_client_object, CScriptIniFile* const p_ini, const xr_string& scheme_name, const xr_string& section_name, DataBase::Script_IComponentScheme* storage) { if (!p_client_object) { R_ASSERT2(false, "object is null!"); return; } if (!p_ini) { R_ASSERT2(false, "object is null!"); return; } Msg("added scheme to binder, name=%s scheme=%s section=%s", p_client_object->Name(), scheme_name.c_str(), section_name.c_str()); Script_ISchemeEntity* p_scheme = new Script_SchemeSRIdle(p_client_object, reinterpret_cast<DataBase::Script_ComponentScheme_SRIdle*>(storage)); DataBase::Storage::getInstance().setStorageSchemesActions(p_client_object->ID(), scheme_name, p_scheme); } // @ PRIVATE, uses in XR_LOGIC static void set_scheme(CScriptGameObject* const p_client_object, CScriptIniFile* const p_ini, const xr_string& scheme_name, const xr_string& section_name, const xr_string& gulag_name); private: DataBase::Script_ComponentScheme_SRIdle* m_p_storage; }; } // namespace Scripts } // namespace Cordis
[ "phantom1020@yandex.ru" ]
phantom1020@yandex.ru
b911b62cbec8ce38b70938a4c1fa2331dd4c1813
59c39956294de7fa58fdf688ae45cd2039adb11f
/test/reflection-example.cpp
e2ba0b7009ad422b3ae50a0495e9aa9d4dc800b0
[]
no_license
matijaskala/mlib
c40bc6bfb6debdfbfa889aef0fe668658c1969c0
ce5135fadf6e106f8ffe60d824048d7fbe50dd8a
refs/heads/master
2021-01-14T08:05:32.587797
2019-12-14T11:06:31
2019-12-14T11:06:31
17,192,683
0
0
null
null
null
null
UTF-8
C++
false
false
1,624
cpp
#include <mreflection.h> #include <iostream> class Ukaz { M_REFLECTION public: int stevilo; void izpisi_stevilo ( int stevilo ) { std::cerr << stevilo << std::endl; } void izpisi_stevilo () { std::cerr << stevilo << std::endl; } static void izpisi(const char* s) { std::cerr << s << std::endl; } }; extern "C" MReflection* Ukaz_REFLECTION() { static MReflection refl; refl.M_REFLECT_HELPER(Ukaz,new); refl.M_REFLECT_HELPER(Ukaz,delete); refl.M_REFLECT_METHOD(Ukaz,izpisi_stevilo,()); refl.M_REFLECT_METHOD(Ukaz,izpisi_stevilo,(int)); refl.M_REFLECT_STATIC(Ukaz,izpisi,(const char*)); refl.M_REFLECT_FIELD(Ukaz,stevilo); return &refl; } int main ( int argc, char** argv ) { std::string className = Ukaz::className(); MReflection* reflection = MReflection::get ( className ); void* instance = reflection->newInstance(); reflection->setField ( instance, "stevilo", 4 ); reflection->setField ( instance, "z1", 6 ); std::cerr << reflection->getField<int> ( instance, "stevilo" ) << std::endl; std::cerr << reflection->getField<int> ( instance, "z2" ) << std::endl; reflection->invoke ( instance, "izpisi_stevilo(int)", 2 ); reflection->invoke ( instance, "izpisi_stevilo()" ); reflection->invoke_static ( "izpisi(const char*)", "a" ); static_cast<Ukaz*>(instance)->invoke ( "izpisi_stevilo(int)", 2 ); static_cast<Ukaz*>(instance)->invoke ( "izpisi_stevilo()" ); static_cast<Ukaz*>(instance)->izpisi_stevilo(2); static_cast<Ukaz*>(instance)->izpisi_stevilo(); reflection->deleteInstance(instance); return 0; }
[ "mskala@gmx.com" ]
mskala@gmx.com
4f62aee3fd6c5cbaa73d8a4f443b36ea9eb43bf3
9b7964822100a804450fadfe3cd7ea72180eadcb
/src/chainparamsbase.cpp
76812b6ba752367c92f5a0fc65bc1788009cb7c4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
thnass/adeptio
7415d6300e0aec964e2223c4c7b19ea51b173816
65aad9209588e62a3e58d6187a88253d3d5f04b1
refs/heads/master
2020-08-04T03:40:56.444722
2019-10-01T01:28:09
2019-10-01T01:28:09
211,990,234
0
0
MIT
2019-10-01T01:25:17
2019-10-01T01:25:16
null
UTF-8
C++
false
false
3,006
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017-2019 The Adeptio developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chainparamsbase.h" #include "util.h" #include <assert.h> #include <boost/assign/list_of.hpp> using namespace boost::assign; /** * Main network */ class CBaseMainParams : public CBaseChainParams { public: CBaseMainParams() { networkID = CBaseChainParams::MAIN; nRPCPort = 9078; } }; static CBaseMainParams mainParams; /** * Testnet (v3) */ class CBaseTestNetParams : public CBaseMainParams { public: CBaseTestNetParams() { networkID = CBaseChainParams::TESTNET; nRPCPort = 51475; strDataDir = "testnet4"; } }; static CBaseTestNetParams testNetParams; /* * Regression test */ class CBaseRegTestParams : public CBaseTestNetParams { public: CBaseRegTestParams() { networkID = CBaseChainParams::REGTEST; strDataDir = "regtest"; } }; static CBaseRegTestParams regTestParams; /* * Unit test */ class CBaseUnitTestParams : public CBaseMainParams { public: CBaseUnitTestParams() { networkID = CBaseChainParams::UNITTEST; strDataDir = "unittest"; } }; static CBaseUnitTestParams unitTestParams; static CBaseChainParams* pCurrentBaseParams = 0; const CBaseChainParams& BaseParams() { assert(pCurrentBaseParams); return *pCurrentBaseParams; } void SelectBaseParams(CBaseChainParams::Network network) { switch (network) { case CBaseChainParams::MAIN: pCurrentBaseParams = &mainParams; break; case CBaseChainParams::TESTNET: pCurrentBaseParams = &testNetParams; break; case CBaseChainParams::REGTEST: pCurrentBaseParams = &regTestParams; break; case CBaseChainParams::UNITTEST: pCurrentBaseParams = &unitTestParams; break; default: assert(false && "Unimplemented network"); return; } } CBaseChainParams::Network NetworkIdFromCommandLine() { bool fRegTest = GetBoolArg("-regtest", false); bool fTestNet = GetBoolArg("-testnet", false); if (fTestNet && fRegTest) return CBaseChainParams::MAX_NETWORK_TYPES; if (fRegTest) return CBaseChainParams::REGTEST; if (fTestNet) return CBaseChainParams::TESTNET; return CBaseChainParams::MAIN; } bool SelectBaseParamsFromCommandLine() { CBaseChainParams::Network network = NetworkIdFromCommandLine(); if (network == CBaseChainParams::MAX_NETWORK_TYPES) return false; SelectBaseParams(network); return true; } bool AreBaseParamsConfigured() { return pCurrentBaseParams != NULL; }
[ "38818888+adeptio-project@users.noreply.github.com" ]
38818888+adeptio-project@users.noreply.github.com
031002ca124063794acf0767544dfbc4fa78455e
f4753fda6f8b51e8d66a9c0af0b957e3eac7c47a
/code/36-specify_launch_async/specify_launch_async.cpp
aa54a169751cb9532e546b24c88094c12a7d8108
[]
no_license
helywin/effective-modern-cpp
4fe71f0b568e434fb9d4de1cb8134e022820245a
665c31102fd5fe7f347df6295a96c40122c6eb69
refs/heads/master
2022-12-01T17:22:35.593675
2020-08-09T05:55:04
2020-08-09T05:55:04
279,003,889
0
0
null
null
null
null
UTF-8
C++
false
false
1,388
cpp
// // Created by helywin on 2020/8/8. // #include <future> #include <iostream> #include <chrono> #include <thread> using namespace std::literals; std::mutex printMutex; template<typename T> void printFunc(int start, int interval, T sec) { for (int i = start; i < start + interval; ++i) { printMutex.lock(); std::cout << std::this_thread::get_id() << ": " << i << " time: " << std::chrono::system_clock::now().time_since_epoch().count() << std::endl; printMutex.unlock(); std::this_thread::sleep_for(sec); } } void f() { std::this_thread::sleep_for(1s); } template<typename F, typename ...Ts> inline auto reallyAsyc(F &&f, Ts &&...ts) { return std::async(std::launch::async, std::forward<F>(f), std::forward<Ts>(ts)...); } int main() { auto future = std::async(std::launch::deferred, [start = 0] { printFunc(1, 6, 1s); }); // auto future1 = std::async(std::launch::async, ); auto future1 = reallyAsyc([start = 0] { printFunc(10, 3, 0.5s); }); std::this_thread::sleep_for(0.5s); printFunc(7, 2, 0.3s); future.get(); future1.get(); auto fut = std::async(std::launch::deferred, f); if (fut.wait_for(0s) == std::future_status::deferred) { std::cout << "deferred" << std::endl; } else { while (fut.wait_for(100ms) != std::future_status::ready) { } } }
[ "jiang770882022@hotmail.com" ]
jiang770882022@hotmail.com
7a1cf38fad1de3a007394ce748ad2ab99f2b6740
bdf92580bd0b22cb9c5a0e54326f7ae276880fea
/Project5/Main.cpp
01b5c4789b0f890de77429ce4b8a4a7e8bace00d
[]
no_license
ebehymer/Project5CS
eb230d0b690375e8349f5d4d3fb1857d1cb893d0
87f1926196f0fa6af98787ed2a34c1925cfcdf86
refs/heads/master
2021-08-23T13:28:43.273169
2017-12-05T02:28:43
2017-12-05T02:28:43
113,119,443
0
0
null
2017-12-05T02:39:29
2017-12-05T02:09:00
C++
UTF-8
C++
false
false
29
cpp
//TO DO //literaly everything
[ "ebehymer@mail.bradley.edu" ]
ebehymer@mail.bradley.edu
1fff7ae60b7083d7c0854abba77cb332467fa93f
297497957c531d81ba286bc91253fbbb78b4d8be
/third_party/libwebrtc/modules/rtp_rtcp/include/rtcp_statistics.h
ac5d8086f0e65c85f7700a8056d4c8e31073e2ff
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
marco-c/gecko-dev-comments-removed
7a9dd34045b07e6b22f0c636c0a836b9e639f9d3
61942784fb157763e65608e5a29b3729b0aa66fa
refs/heads/master
2023-08-09T18:55:25.895853
2023-08-01T00:40:39
2023-08-01T00:40:39
211,297,481
0
0
NOASSERTION
2019-09-29T01:27:49
2019-09-27T10:44:24
C++
UTF-8
C++
false
false
1,706
h
#ifndef MODULES_RTP_RTCP_INCLUDE_RTCP_STATISTICS_H_ #define MODULES_RTP_RTCP_INCLUDE_RTCP_STATISTICS_H_ #include <stdint.h> #include "absl/strings/string_view.h" namespace webrtc { struct RtcpPacketTypeCounter { RtcpPacketTypeCounter() : nack_packets(0), fir_packets(0), pli_packets(0), nack_requests(0), unique_nack_requests(0) {} void Add(const RtcpPacketTypeCounter& other) { nack_packets += other.nack_packets; fir_packets += other.fir_packets; pli_packets += other.pli_packets; nack_requests += other.nack_requests; unique_nack_requests += other.unique_nack_requests; } void Subtract(const RtcpPacketTypeCounter& other) { nack_packets -= other.nack_packets; fir_packets -= other.fir_packets; pli_packets -= other.pli_packets; nack_requests -= other.nack_requests; unique_nack_requests -= other.unique_nack_requests; } int UniqueNackRequestsInPercent() const { if (nack_requests == 0) { return 0; } return static_cast<int>((unique_nack_requests * 100.0f / nack_requests) + 0.5f); } uint32_t nack_packets; uint32_t fir_packets; uint32_t pli_packets; uint32_t nack_requests; uint32_t unique_nack_requests; }; class RtcpPacketTypeCounterObserver { public: virtual ~RtcpPacketTypeCounterObserver() {} virtual void RtcpPacketTypesCounterUpdated( uint32_t ssrc, const RtcpPacketTypeCounter& packet_counter) = 0; }; class RtcpCnameCallback { public: virtual ~RtcpCnameCallback() = default; virtual void OnCname(uint32_t ssrc, absl::string_view cname) = 0; }; } #endif
[ "mcastelluccio@mozilla.com" ]
mcastelluccio@mozilla.com
d734a934588b3be0bf4aa45c629a23c2b8ed9518
7d391a176f5b54848ebdedcda271f0bd37206274
/src/ProceduralTexturesLibrary/src/proceduraltextureslibrary/perlinnoise/perlin_noise_procedural_texture.cpp
8df1168429bd422c40f92cf9cb73feb25121fb2c
[ "Apache-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
pthom/BabylonCpp
c37ea256f310d4fedea1a0b44922a1379df77690
52b04a61467ef56f427c2bb7cfbafc21756ea915
refs/heads/master
2021-06-20T21:15:18.007678
2019-08-09T08:23:12
2019-08-09T08:23:12
183,211,708
2
0
Apache-2.0
2019-04-24T11:06:28
2019-04-24T11:06:28
null
UTF-8
C++
false
false
2,299
cpp
#include <babylon/proceduraltextureslibrary/perlinnoise/perlin_noise_procedural_texture.h> #include <nlohmann/json.hpp> #include <babylon/engines/engine.h> #include <babylon/engines/scene.h> #include <babylon/materials/effect.h> #include <babylon/proceduraltextureslibrary/perlinnoise/perlin_noise_procedural_texture_fragment_fx.h> namespace BABYLON { namespace ProceduralTexturesLibrary { PerlinNoiseProceduralTexture::PerlinNoiseProceduralTexture( const std::string& iName, const Size& size, Scene* scene, Texture* fallbackTexture, bool generateMipMaps) : ProceduralTexture{iName, size, "perlinNoiseProceduralTexture", scene, fallbackTexture, generateMipMaps} , time{0.f} , timeScale{1.f} , translationSpeed{1.f} , _currentTranslation{0.f} { // Fragment shader Effect::ShadersStore()["perlinNoiseProceduralTexturePixelShader"] = perlinNoiseProceduralTexturePixelShader; updateShaderUniforms(); } PerlinNoiseProceduralTexture::~PerlinNoiseProceduralTexture() { } void PerlinNoiseProceduralTexture::updateShaderUniforms() { setFloat("size", static_cast<float>(getRenderSize().width)); auto scene = getScene(); if (!scene) { return; } auto deltaTime = scene->getEngine()->getDeltaTime(); time += deltaTime; setFloat("time", time * timeScale / 1000.f); _currentTranslation += deltaTime * translationSpeed / 1000.f; setFloat("translationSpeed", _currentTranslation); } void PerlinNoiseProceduralTexture::render(bool useCameraPostProcess) { updateShaderUniforms(); ProceduralTexture::render(useCameraPostProcess); } void PerlinNoiseProceduralTexture::resize(const Size& size, bool generateMipMaps) { ProceduralTexture::resize(size, generateMipMaps); } json PerlinNoiseProceduralTexture::serialize() const { return nullptr; } std::unique_ptr<PerlinNoiseProceduralTexture> PerlinNoiseProceduralTexture::Parse(const json& /*parsedTexture*/, Scene* /*scene*/, const std::string& /*rootUrl*/) { return nullptr; } } // end of namespace ProceduralTexturesLibrary } // end of namespace BABYLON
[ "sam.dauwe@gmail.com" ]
sam.dauwe@gmail.com
973c823eb1bd941261e39720820a42f974c5c4c9
2cf838b54b556987cfc49f42935f8aa7563ea1f4
/aws-cpp-sdk-route53resolver/include/aws/route53resolver/model/ResourceExistsException.h
89d4e71c8c09f078ff9816d24d58272283a06c7d
[ "MIT", "Apache-2.0", "JSON" ]
permissive
QPC-database/aws-sdk-cpp
d11e9f0ff6958c64e793c87a49f1e034813dac32
9f83105f7e07fe04380232981ab073c247d6fc85
refs/heads/main
2023-06-14T17:41:04.817304
2021-07-09T20:28:20
2021-07-09T20:28:20
384,714,703
1
0
Apache-2.0
2021-07-10T14:16:41
2021-07-10T14:16:41
null
UTF-8
C++
false
false
4,002
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/route53resolver/Route53Resolver_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Route53Resolver { namespace Model { /** * <p>The resource that you tried to create already exists.</p><p><h3>See * Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResourceExistsException">AWS * API Reference</a></p> */ class AWS_ROUTE53RESOLVER_API ResourceExistsException { public: ResourceExistsException(); ResourceExistsException(Aws::Utils::Json::JsonView jsonValue); ResourceExistsException& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; inline const Aws::String& GetMessage() const{ return m_message; } inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } inline ResourceExistsException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} inline ResourceExistsException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} inline ResourceExistsException& WithMessage(const char* value) { SetMessage(value); return *this;} /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline const Aws::String& GetResourceType() const{ return m_resourceType; } /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); } /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline ResourceExistsException& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;} /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline ResourceExistsException& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;} /** * <p>For a <code>ResourceExistsException</code> error, the type of resource that * the error applies to.</p> */ inline ResourceExistsException& WithResourceType(const char* value) { SetResourceType(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet; Aws::String m_resourceType; bool m_resourceTypeHasBeenSet; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
07776745b86dd2f5f12a0a144a760f69b6759106
3f88bff15d295cdf1fecbdd95c4514107ed11bfa
/WebServer/stdafx.h
bec69459fc719d944eb4ff0fa788a06f636a0e74
[]
no_license
Tenebrie/WebServer
e4726bd91521aeaaa75290f3383748c6b1a46e97
8ce2b6b21bfc72e4ee7585f22296429b88a10527
refs/heads/master
2021-06-10T00:28:43.137226
2017-02-02T13:10:46
2017-02-02T13:10:46
null
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
820
h
// stdafx.h: включаемый файл для стандартных системных включаемых файлов // или включаемых файлов для конкретного проекта, которые часто используются, но // не часто изменяются // #pragma once #pragma comment(lib, "Ws2_32.lib") #define _CRT_SECURE_NO_WARNINGS #define _WINSOCK_DEPRECATED_NO_WARNINGS #include "targetver.h" #include <stdio.h> #include <tchar.h> #include <mutex> #ifndef WIN32_LEAN_AND_MEAN //#define WIN32_LEAN_AND_MEAN #endif #include <winsock2.h> #include <ws2tcpip.h> #include <iphlpapi.h> #include <stdio.h> #include <iostream> #include <fstream> #include <string> #include <sstream> #include <vector> #include <thread> #include <windows.h> #include <random>
[ "kos94ok@gmail.com" ]
kos94ok@gmail.com
9617e15d56e8d5bc5da54b6bbc3ca9689dba40b0
56596fb538af0eb9019c68ea88bd9ae32cd09f0d
/src/netaddress.cpp
f188e3da43d474f0dfb49fa6726a025724ea5fb7
[ "MIT" ]
permissive
KazuPay/kazucoin-core
4d336a2391d55b6662b36e33b8f4e59fe4282cdd
1af2c5f9fa6240cffd68e1ab627339fe107a484a
refs/heads/master
2020-04-09T01:36:36.060104
2018-12-23T23:41:32
2018-12-23T23:41:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,725
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2017 The Kazucoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <netaddress.h> #include <hash.h> #include <utilstrencodings.h> #include <tinyformat.h> static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff }; static const unsigned char pchOnionCat[] = {0xFD,0x87,0xD8,0x7E,0xEB,0x43}; // 0xFD + sha256("kazucoin")[0:5] static const unsigned char g_internal_prefix[] = { 0xFD, 0x6B, 0x88, 0xC0, 0x87, 0x24 }; CNetAddr::CNetAddr() { memset(ip, 0, sizeof(ip)); scopeId = 0; } void CNetAddr::SetIP(const CNetAddr& ipIn) { memcpy(ip, ipIn.ip, sizeof(ip)); } void CNetAddr::SetRaw(Network network, const uint8_t *ip_in) { switch(network) { case NET_IPV4: memcpy(ip, pchIPv4, 12); memcpy(ip+12, ip_in, 4); break; case NET_IPV6: memcpy(ip, ip_in, 16); break; default: assert(!"invalid network"); } } bool CNetAddr::SetInternal(const std::string &name) { if (name.empty()) { return false; } unsigned char hash[32] = {}; CSHA256().Write((const unsigned char*)name.data(), name.size()).Finalize(hash); memcpy(ip, g_internal_prefix, sizeof(g_internal_prefix)); memcpy(ip + sizeof(g_internal_prefix), hash, sizeof(ip) - sizeof(g_internal_prefix)); return true; } bool CNetAddr::SetSpecial(const std::string &strName) { if (strName.size()>6 && strName.substr(strName.size() - 6, 6) == ".onion") { std::vector<unsigned char> vchAddr = DecodeBase32(strName.substr(0, strName.size() - 6).c_str()); if (vchAddr.size() != 16-sizeof(pchOnionCat)) return false; memcpy(ip, pchOnionCat, sizeof(pchOnionCat)); for (unsigned int i=0; i<16-sizeof(pchOnionCat); i++) ip[i + sizeof(pchOnionCat)] = vchAddr[i]; return true; } return false; } CNetAddr::CNetAddr(const struct in_addr& ipv4Addr) { SetRaw(NET_IPV4, (const uint8_t*)&ipv4Addr); } CNetAddr::CNetAddr(const struct in6_addr& ipv6Addr, const uint32_t scope) { SetRaw(NET_IPV6, (const uint8_t*)&ipv6Addr); scopeId = scope; } unsigned int CNetAddr::GetByte(int n) const { return ip[15-n]; } bool CNetAddr::IsIPv4() const { return (memcmp(ip, pchIPv4, sizeof(pchIPv4)) == 0); } bool CNetAddr::IsIPv6() const { return (!IsIPv4() && !IsTor() && !IsInternal()); } bool CNetAddr::IsRFC1918() const { return IsIPv4() && ( GetByte(3) == 10 || (GetByte(3) == 192 && GetByte(2) == 168) || (GetByte(3) == 172 && (GetByte(2) >= 16 && GetByte(2) <= 31))); } bool CNetAddr::IsRFC2544() const { return IsIPv4() && GetByte(3) == 198 && (GetByte(2) == 18 || GetByte(2) == 19); } bool CNetAddr::IsRFC3927() const { return IsIPv4() && (GetByte(3) == 169 && GetByte(2) == 254); } bool CNetAddr::IsRFC6598() const { return IsIPv4() && GetByte(3) == 100 && GetByte(2) >= 64 && GetByte(2) <= 127; } bool CNetAddr::IsRFC5737() const { return IsIPv4() && ((GetByte(3) == 192 && GetByte(2) == 0 && GetByte(1) == 2) || (GetByte(3) == 198 && GetByte(2) == 51 && GetByte(1) == 100) || (GetByte(3) == 203 && GetByte(2) == 0 && GetByte(1) == 113)); } bool CNetAddr::IsRFC3849() const { return GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0x0D && GetByte(12) == 0xB8; } bool CNetAddr::IsRFC3964() const { return (GetByte(15) == 0x20 && GetByte(14) == 0x02); } bool CNetAddr::IsRFC6052() const { static const unsigned char pchRFC6052[] = {0,0x64,0xFF,0x9B,0,0,0,0,0,0,0,0}; return (memcmp(ip, pchRFC6052, sizeof(pchRFC6052)) == 0); } bool CNetAddr::IsRFC4380() const { return (GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0 && GetByte(12) == 0); } bool CNetAddr::IsRFC4862() const { static const unsigned char pchRFC4862[] = {0xFE,0x80,0,0,0,0,0,0}; return (memcmp(ip, pchRFC4862, sizeof(pchRFC4862)) == 0); } bool CNetAddr::IsRFC4193() const { return ((GetByte(15) & 0xFE) == 0xFC); } bool CNetAddr::IsRFC6145() const { static const unsigned char pchRFC6145[] = {0,0,0,0,0,0,0,0,0xFF,0xFF,0,0}; return (memcmp(ip, pchRFC6145, sizeof(pchRFC6145)) == 0); } bool CNetAddr::IsRFC4843() const { return (GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0x00 && (GetByte(12) & 0xF0) == 0x10); } bool CNetAddr::IsTor() const { return (memcmp(ip, pchOnionCat, sizeof(pchOnionCat)) == 0); } bool CNetAddr::IsLocal() const { // IPv4 loopback if (IsIPv4() && (GetByte(3) == 127 || GetByte(3) == 0)) return true; // IPv6 loopback (::1/128) static const unsigned char pchLocal[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1}; if (memcmp(ip, pchLocal, 16) == 0) return true; return false; } bool CNetAddr::IsValid() const { // Cleanup 3-byte shifted addresses caused by garbage in size field // of addr messages from versions before 0.2.9 checksum. // Two consecutive addr messages look like this: // header20 vectorlen3 addr26 addr26 addr26 header20 vectorlen3 addr26 addr26 addr26... // so if the first length field is garbled, it reads the second batch // of addr misaligned by 3 bytes. if (memcmp(ip, pchIPv4+3, sizeof(pchIPv4)-3) == 0) return false; // unspecified IPv6 address (::/128) unsigned char ipNone6[16] = {}; if (memcmp(ip, ipNone6, 16) == 0) return false; // documentation IPv6 address if (IsRFC3849()) return false; if (IsInternal()) return false; if (IsIPv4()) { // INADDR_NONE uint32_t ipNone = INADDR_NONE; if (memcmp(ip+12, &ipNone, 4) == 0) return false; // 0 ipNone = 0; if (memcmp(ip+12, &ipNone, 4) == 0) return false; } return true; } bool CNetAddr::IsRoutable() const { return IsValid() && !(IsRFC1918() || IsRFC2544() || IsRFC3927() || IsRFC4862() || IsRFC6598() || IsRFC5737() || (IsRFC4193() && !IsTor()) || IsRFC4843() || IsLocal() || IsInternal()); } bool CNetAddr::IsInternal() const { return memcmp(ip, g_internal_prefix, sizeof(g_internal_prefix)) == 0; } enum Network CNetAddr::GetNetwork() const { if (IsInternal()) return NET_INTERNAL; if (!IsRoutable()) return NET_UNROUTABLE; if (IsIPv4()) return NET_IPV4; if (IsTor()) return NET_ONION; return NET_IPV6; } std::string CNetAddr::ToStringIP() const { if (IsTor()) return EncodeBase32(&ip[6], 10) + ".onion"; if (IsInternal()) return EncodeBase32(ip + sizeof(g_internal_prefix), sizeof(ip) - sizeof(g_internal_prefix)) + ".internal"; CService serv(*this, 0); struct sockaddr_storage sockaddr; socklen_t socklen = sizeof(sockaddr); if (serv.GetSockAddr((struct sockaddr*)&sockaddr, &socklen)) { char name[1025] = ""; if (!getnameinfo((const struct sockaddr*)&sockaddr, socklen, name, sizeof(name), nullptr, 0, NI_NUMERICHOST)) return std::string(name); } if (IsIPv4()) return strprintf("%u.%u.%u.%u", GetByte(3), GetByte(2), GetByte(1), GetByte(0)); else return strprintf("%x:%x:%x:%x:%x:%x:%x:%x", GetByte(15) << 8 | GetByte(14), GetByte(13) << 8 | GetByte(12), GetByte(11) << 8 | GetByte(10), GetByte(9) << 8 | GetByte(8), GetByte(7) << 8 | GetByte(6), GetByte(5) << 8 | GetByte(4), GetByte(3) << 8 | GetByte(2), GetByte(1) << 8 | GetByte(0)); } std::string CNetAddr::ToString() const { return ToStringIP(); } bool operator==(const CNetAddr& a, const CNetAddr& b) { return (memcmp(a.ip, b.ip, 16) == 0); } bool operator<(const CNetAddr& a, const CNetAddr& b) { return (memcmp(a.ip, b.ip, 16) < 0); } bool CNetAddr::GetInAddr(struct in_addr* pipv4Addr) const { if (!IsIPv4()) return false; memcpy(pipv4Addr, ip+12, 4); return true; } bool CNetAddr::GetIn6Addr(struct in6_addr* pipv6Addr) const { if (!IsIPv6()) { return false; } memcpy(pipv6Addr, ip, 16); return true; } // get canonical identifier of an address' group // no two connections will be attempted to addresses with the same group std::vector<unsigned char> CNetAddr::GetGroup() const { std::vector<unsigned char> vchRet; int nClass = NET_IPV6; int nStartByte = 0; int nBits = 16; // all local addresses belong to the same group if (IsLocal()) { nClass = 255; nBits = 0; } // all internal-usage addresses get their own group if (IsInternal()) { nClass = NET_INTERNAL; nStartByte = sizeof(g_internal_prefix); nBits = (sizeof(ip) - sizeof(g_internal_prefix)) * 8; } // all other unroutable addresses belong to the same group else if (!IsRoutable()) { nClass = NET_UNROUTABLE; nBits = 0; } // for IPv4 addresses, '1' + the 16 higher-order bits of the IP // includes mapped IPv4, SIIT translated IPv4, and the well-known prefix else if (IsIPv4() || IsRFC6145() || IsRFC6052()) { nClass = NET_IPV4; nStartByte = 12; } // for 6to4 tunnelled addresses, use the encapsulated IPv4 address else if (IsRFC3964()) { nClass = NET_IPV4; nStartByte = 2; } // for Teredo-tunnelled IPv6 addresses, use the encapsulated IPv4 address else if (IsRFC4380()) { vchRet.push_back(NET_IPV4); vchRet.push_back(GetByte(3) ^ 0xFF); vchRet.push_back(GetByte(2) ^ 0xFF); return vchRet; } else if (IsTor()) { nClass = NET_ONION; nStartByte = 6; nBits = 4; } // for he.net, use /36 groups else if (GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0x04 && GetByte(12) == 0x70) nBits = 36; // for the rest of the IPv6 network, use /32 groups else nBits = 32; vchRet.push_back(nClass); while (nBits >= 8) { vchRet.push_back(GetByte(15 - nStartByte)); nStartByte++; nBits -= 8; } if (nBits > 0) vchRet.push_back(GetByte(15 - nStartByte) | ((1 << (8 - nBits)) - 1)); return vchRet; } uint64_t CNetAddr::GetHash() const { uint256 hash = Hash(&ip[0], &ip[16]); uint64_t nRet; memcpy(&nRet, &hash, sizeof(nRet)); return nRet; } // private extensions to enum Network, only returned by GetExtNetwork, // and only used in GetReachabilityFrom static const int NET_UNKNOWN = NET_MAX + 0; static const int NET_TEREDO = NET_MAX + 1; int static GetExtNetwork(const CNetAddr *addr) { if (addr == nullptr) return NET_UNKNOWN; if (addr->IsRFC4380()) return NET_TEREDO; return addr->GetNetwork(); } /** Calculates a metric for how reachable (*this) is from a given partner */ int CNetAddr::GetReachabilityFrom(const CNetAddr *paddrPartner) const { enum Reachability { REACH_UNREACHABLE, REACH_DEFAULT, REACH_TEREDO, REACH_IPV6_WEAK, REACH_IPV4, REACH_IPV6_STRONG, REACH_PRIVATE }; if (!IsRoutable() || IsInternal()) return REACH_UNREACHABLE; int ourNet = GetExtNetwork(this); int theirNet = GetExtNetwork(paddrPartner); bool fTunnel = IsRFC3964() || IsRFC6052() || IsRFC6145(); switch(theirNet) { case NET_IPV4: switch(ourNet) { default: return REACH_DEFAULT; case NET_IPV4: return REACH_IPV4; } case NET_IPV6: switch(ourNet) { default: return REACH_DEFAULT; case NET_TEREDO: return REACH_TEREDO; case NET_IPV4: return REACH_IPV4; case NET_IPV6: return fTunnel ? REACH_IPV6_WEAK : REACH_IPV6_STRONG; // only prefer giving our IPv6 address if it's not tunnelled } case NET_ONION: switch(ourNet) { default: return REACH_DEFAULT; case NET_IPV4: return REACH_IPV4; // Tor users can connect to IPv4 as well case NET_ONION: return REACH_PRIVATE; } case NET_TEREDO: switch(ourNet) { default: return REACH_DEFAULT; case NET_TEREDO: return REACH_TEREDO; case NET_IPV6: return REACH_IPV6_WEAK; case NET_IPV4: return REACH_IPV4; } case NET_UNKNOWN: case NET_UNROUTABLE: default: switch(ourNet) { default: return REACH_DEFAULT; case NET_TEREDO: return REACH_TEREDO; case NET_IPV6: return REACH_IPV6_WEAK; case NET_IPV4: return REACH_IPV4; case NET_ONION: return REACH_PRIVATE; // either from Tor, or don't care about our address } } } CService::CService() : port(0) { } CService::CService(const CNetAddr& cip, unsigned short portIn) : CNetAddr(cip), port(portIn) { } CService::CService(const struct in_addr& ipv4Addr, unsigned short portIn) : CNetAddr(ipv4Addr), port(portIn) { } CService::CService(const struct in6_addr& ipv6Addr, unsigned short portIn) : CNetAddr(ipv6Addr), port(portIn) { } CService::CService(const struct sockaddr_in& addr) : CNetAddr(addr.sin_addr), port(ntohs(addr.sin_port)) { assert(addr.sin_family == AF_INET); } CService::CService(const struct sockaddr_in6 &addr) : CNetAddr(addr.sin6_addr, addr.sin6_scope_id), port(ntohs(addr.sin6_port)) { assert(addr.sin6_family == AF_INET6); } bool CService::SetSockAddr(const struct sockaddr *paddr) { switch (paddr->sa_family) { case AF_INET: *this = CService(*(const struct sockaddr_in*)paddr); return true; case AF_INET6: *this = CService(*(const struct sockaddr_in6*)paddr); return true; default: return false; } } unsigned short CService::GetPort() const { return port; } bool operator==(const CService& a, const CService& b) { return static_cast<CNetAddr>(a) == static_cast<CNetAddr>(b) && a.port == b.port; } bool operator<(const CService& a, const CService& b) { return static_cast<CNetAddr>(a) < static_cast<CNetAddr>(b) || (static_cast<CNetAddr>(a) == static_cast<CNetAddr>(b) && a.port < b.port); } bool CService::GetSockAddr(struct sockaddr* paddr, socklen_t *addrlen) const { if (IsIPv4()) { if (*addrlen < (socklen_t)sizeof(struct sockaddr_in)) return false; *addrlen = sizeof(struct sockaddr_in); struct sockaddr_in *paddrin = (struct sockaddr_in*)paddr; memset(paddrin, 0, *addrlen); if (!GetInAddr(&paddrin->sin_addr)) return false; paddrin->sin_family = AF_INET; paddrin->sin_port = htons(port); return true; } if (IsIPv6()) { if (*addrlen < (socklen_t)sizeof(struct sockaddr_in6)) return false; *addrlen = sizeof(struct sockaddr_in6); struct sockaddr_in6 *paddrin6 = (struct sockaddr_in6*)paddr; memset(paddrin6, 0, *addrlen); if (!GetIn6Addr(&paddrin6->sin6_addr)) return false; paddrin6->sin6_scope_id = scopeId; paddrin6->sin6_family = AF_INET6; paddrin6->sin6_port = htons(port); return true; } return false; } std::vector<unsigned char> CService::GetKey() const { std::vector<unsigned char> vKey; vKey.resize(18); memcpy(vKey.data(), ip, 16); vKey[16] = port / 0x100; vKey[17] = port & 0x0FF; return vKey; } std::string CService::ToStringPort() const { return strprintf("%u", port); } std::string CService::ToStringIPPort() const { if (IsIPv4() || IsTor() || IsInternal()) { return ToStringIP() + ":" + ToStringPort(); } else { return "[" + ToStringIP() + "]:" + ToStringPort(); } } std::string CService::ToString() const { return ToStringIPPort(); } CSubNet::CSubNet(): valid(false) { memset(netmask, 0, sizeof(netmask)); } CSubNet::CSubNet(const CNetAddr &addr, int32_t mask) { valid = true; network = addr; // Default to /32 (IPv4) or /128 (IPv6), i.e. match single address memset(netmask, 255, sizeof(netmask)); // IPv4 addresses start at offset 12, and first 12 bytes must match, so just offset n const int astartofs = network.IsIPv4() ? 12 : 0; int32_t n = mask; if(n >= 0 && n <= (128 - astartofs*8)) // Only valid if in range of bits of address { n += astartofs*8; // Clear bits [n..127] for (; n < 128; ++n) netmask[n>>3] &= ~(1<<(7-(n&7))); } else valid = false; // Normalize network according to netmask for(int x=0; x<16; ++x) network.ip[x] &= netmask[x]; } CSubNet::CSubNet(const CNetAddr &addr, const CNetAddr &mask) { valid = true; network = addr; // Default to /32 (IPv4) or /128 (IPv6), i.e. match single address memset(netmask, 255, sizeof(netmask)); // IPv4 addresses start at offset 12, and first 12 bytes must match, so just offset n const int astartofs = network.IsIPv4() ? 12 : 0; for(int x=astartofs; x<16; ++x) netmask[x] = mask.ip[x]; // Normalize network according to netmask for(int x=0; x<16; ++x) network.ip[x] &= netmask[x]; } CSubNet::CSubNet(const CNetAddr &addr): valid(addr.IsValid()) { memset(netmask, 255, sizeof(netmask)); network = addr; } bool CSubNet::Match(const CNetAddr &addr) const { if (!valid || !addr.IsValid()) return false; for(int x=0; x<16; ++x) if ((addr.ip[x] & netmask[x]) != network.ip[x]) return false; return true; } static inline int NetmaskBits(uint8_t x) { switch(x) { case 0x00: return 0; case 0x80: return 1; case 0xc0: return 2; case 0xe0: return 3; case 0xf0: return 4; case 0xf8: return 5; case 0xfc: return 6; case 0xfe: return 7; case 0xff: return 8; default: return -1; } } std::string CSubNet::ToString() const { /* Parse binary 1{n}0{N-n} to see if mask can be represented as /n */ int cidr = 0; bool valid_cidr = true; int n = network.IsIPv4() ? 12 : 0; for (; n < 16 && netmask[n] == 0xff; ++n) cidr += 8; if (n < 16) { int bits = NetmaskBits(netmask[n]); if (bits < 0) valid_cidr = false; else cidr += bits; ++n; } for (; n < 16 && valid_cidr; ++n) if (netmask[n] != 0x00) valid_cidr = false; /* Format output */ std::string strNetmask; if (valid_cidr) { strNetmask = strprintf("%u", cidr); } else { if (network.IsIPv4()) strNetmask = strprintf("%u.%u.%u.%u", netmask[12], netmask[13], netmask[14], netmask[15]); else strNetmask = strprintf("%x:%x:%x:%x:%x:%x:%x:%x", netmask[0] << 8 | netmask[1], netmask[2] << 8 | netmask[3], netmask[4] << 8 | netmask[5], netmask[6] << 8 | netmask[7], netmask[8] << 8 | netmask[9], netmask[10] << 8 | netmask[11], netmask[12] << 8 | netmask[13], netmask[14] << 8 | netmask[15]); } return network.ToString() + "/" + strNetmask; } bool CSubNet::IsValid() const { return valid; } bool operator==(const CSubNet& a, const CSubNet& b) { return a.valid == b.valid && a.network == b.network && !memcmp(a.netmask, b.netmask, 16); } bool operator<(const CSubNet& a, const CSubNet& b) { return (a.network < b.network || (a.network == b.network && memcmp(a.netmask, b.netmask, 16) < 0)); }
[ "mike@altilly.com" ]
mike@altilly.com
a254c6ce8e2a9ce6a14ed061eed4bc56b20d6bcd
263608326e0ca260f29ff5e0fab4542cc083a632
/graph-theory/Luogu2966.cpp
1e69e78ac8afa59ccf6ca7fa653271ba3b972be4
[]
no_license
jkxjkx1031/ICPC-solutions
10b0748ee56be299386ce545bf63a0e8c0f27832
5a6079ae288d348f8f9db64daf529752378f2224
refs/heads/master
2021-10-10T10:02:08.287429
2019-01-09T07:34:00
2019-01-09T07:34:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,290
cpp
/* Luogu2966: Floyd 复杂度O(n^3 + qn) 需要了解 Floyd 算法的证明。 把点的编号按 c(i) 重新排序,每次询问时枚举需要使用前几个点作为中间点。 */ #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int INF=0x3f3f3f3f; int n,m,q,c[300],idx[300],rk[300],d[260][260][260]; int main() { freopen("toll.in","r",stdin); freopen("toll.out","w",stdout); scanf("%d%d%d",&n,&m,&q); int i,j,k; for(i=1;i<=n;i++) scanf("%d",&c[i]); for(i=1;i<=n;i++) idx[i]=i; sort(idx+1,idx+n+1,[](int i,int j){return c[i]<c[j];}); for(i=1;i<=n;i++) rk[idx[i]]=i; memset(d,0x3f,sizeof(d)); int u,v,l; for(i=1;i<=m;i++) { scanf("%d%d%d",&u,&v,&l); d[0][rk[u]][rk[v]]=d[0][rk[v]][rk[u]]=min(d[0][rk[u]][rk[v]]=d[0][rk[v]][rk[u]],l); } for(i=1;i<=n;i++) for(j=1;j<=n;j++) for(k=1;k<=n;k++) d[i][j][k]=min(d[i-1][j][k],d[i-1][j][i]+d[i-1][i][k]); int ans; while(q--) { scanf("%d%d",&u,&v); for(ans=INF,i=0;i<=n;i++) ans=min(ans,d[i][rk[u]][rk[v]]+max(c[idx[i]],max(c[u],c[v]))); printf("%d\n",ans); } return 0; }
[ "jkxjkx1031@163.com" ]
jkxjkx1031@163.com
4941f18b7edb131ff2aaeacd419c562ffaf4c4cf
7b5a4ad62efd2b68d5148530b30c848258a09200
/include/DriftDiffusionPoisson.hpp
7a212c197b2ac9923efe8598e193b69cf2572341
[]
no_license
lacrymose/Semiconductor_Device_Simulator
6631b0eb32d6bb158ac7739bc42ebef574f0026f
c6aced575e0c6d0d10355e19ec9ee292ae7b5939
refs/heads/master
2021-06-23T00:52:48.408024
2017-07-16T03:34:01
2017-07-16T03:34:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,746
hpp
/// // Poisson solver using Local Discontinuous Galerkin Method // // #include <deal.II/base/quadrature_lib.h> #include <deal.II/base/logstream.h> #include <deal.II/base/function.h> #include <deal.II/base/tensor_function.h> // Mobility and debeye #include <deal.II/base/timer.h> #include <deal.II/base/parameter_handler.h> #include <deal.II/lac/full_matrix.h> #include <deal.II/lac/sparse_matrix.h> #include <deal.II/lac/block_sparse_matrix.h> // for block structuring #include <deal.II/lac/block_sparsity_pattern.h> #include <deal.II/lac/block_vector.h> // for block structuring #include <deal.II/lac/sparse_direct.h> #include <deal.II/lac/solver_cg.h> #include <deal.II/lac/precondition.h> #include <deal.II/lac/precondition_block.h> #include <deal.II/grid/tria.h> #include <deal.II/grid/grid_generator.h> #include <deal.II/grid/grid_tools.h> #include <deal.II/grid/tria_accessor.h> #include <deal.II/grid/tria_iterator.h> #include <deal.II/dofs/dof_handler.h> #include <deal.II/dofs/dof_renumbering.h> #include <deal.II/dofs/dof_accessor.h> #include <deal.II/dofs/dof_tools.h> //#include <deal.II/fe/fe_dgq.h> // Lagrange dg fe elements #include <deal.II/fe/fe_dgp.h> // Legendre dg fe elements #include <deal.II/fe/fe_raviart_thomas.h> #include <deal.II/fe/fe_system.h> #include <deal.II/fe/fe_values.h> #include <deal.II/numerics/vector_tools.h> #include <deal.II/numerics/matrix_tools.h> #include <deal.II/numerics/data_out.h> #include <fstream> #include <iostream> // Matrix object which acts as the inverse of a matrix by // calling an iterative solver. #include <deal.II/lac/iterative_inverse.h> // Tensor valued functions // multithreading #include<deal.II/base/work_stream.h> #include<deal.II/base/multithread_info.h> #include "../source/Generation.cpp" #include "../source/BiasValues.cpp" #include "../source/DopingProfiles.cpp" #include "../source/Assembly.cpp" #include "../source/MixedFEM.cpp" #include "../source/LDG.cpp" #include "../source/Grid.cpp" #include "ParameterReader.hpp" namespace LDG_MX { using namespace dealii; using namespace ParameterSpace; /////////////////////////////////////////////////////////////////////////////// // LDG POISSON CLASS /////////////////////////////////////////////////////////////////////////////// /** Schockley-Reed-Hall Recombination functional * @param Holds the intrinsic density and recombination times. * @param electron_density \f$\rho_{n}^{k-1}\f$. * @param hole_density \f$\rho_{p}^{k-1}\f$. */ inline double SRH_Recombination(const double & electron_density, const double & hole_density, const Parameters & params) { return ((params.scaled_intrinsic_density * params.scaled_intrinsic_density - electron_density * hole_density) / (params.scaled_electron_recombo_t * (electron_density - params.scaled_intrinsic_density) + (params.scaled_hole_recombo_t * (hole_density - params.scaled_intrinsic_density)) ) ); } /** DriftDiffusionPoisson class used to solve the coupled flow transport problem. * Solves the coupled flow-transport problem discussed on the main page. * Solves Poissons equation using a mixed finite element (LDG_MX::MixedFEM) and the * drift-diffusion equation using a local discontinuous Galerkin (LDG_MX::LDG) method. * This class will call those classes to construct the appropriate matrices and * the members of this class will be used to construct the appropriate right * hand sides for each eqauation. Poisson's equation is used solving implicit * electron and hole values while the drift-diffusion equations use an IMEX * time stepping method on the the non-linearities and coupling to Poisson's * equation. Please see the classe defitions as well as * LDG_MX::DriftDiffusionPoisson.assemble_Poisson_rhs() * and LDG_MX::DriftDiffusionPoisson.assemble_local_LDG_rhs() for more details. */ template <int dim> class DriftDiffusionPoisson { public: /** Class constructor which initializes FEValue objects for all * the equations. It also initializes functions as well as reading * <code>input_file.prm<code/> to read the input variables and then * scales them using singular perturbation scaling. */ DriftDiffusionPoisson(const unsigned int degree, ParameterHandler &); ~DriftDiffusionPoisson(); void run(); private: /** Reads <code>input_file.prm<code/>, reads in the input parameters and * scales appropriete values for singular pertubation scaling. */ void parse_and_scale_parameters(); /** Allocates memory for matrices and vectors, distribute degrees * of freedom for each of the equation. * NOTE: electrons and holes use the same FEValues, DoFHandler, * sparsity pattern, but different system matrices. This implicitly * assumes that we will have all the same simulation features, just * different parameter values. */ void make_dofs_and_allocate_memory(); // Poisson /** The mixed finite element method on Poissons equation (MixedFEM) * imposes and Neumann boundary condtions strongly. This function * therefore constrains the DOFS of freedom to be zero on the Neumann * segments of the boundary. * NOTE: This must be called AFTER GridMaker::make_Neumann_boundaries() has been * called in the Grid object. */ void enforce_Neumann_boundaries_on_Poisson(); /** This function assembles the matrix for the MixedFEM on a global * level. It uses the workstream function from deal.ii to * assemble the matrix in parallel. It needs a MixedFEM object to call * in order to assemble. * It will also call * LDG_MX::DriftDiffusionPoisson.copy_local_to_global_Poisson_matrix() * to assemble the global matrix from the local ones. */ void assemble_Poisson_matrix(); /** Copys the local matrices assembled my and MixedFEM object into * the global matrix. Used for assembly in parallel by workstream. */ void copy_local_to_global_Poisson_matrix( const Assembly::Poisson::CopyData<dim> & data); /** This function assembles the right hand side for the MixedFEM on * a global level. It uses the workstream function from deal.ii to * in order to assemble using the assemble_local_Poisson_rhs()function. * It will also call copy_local_to_global_rhs() to assemble * the global matrix from the local ones. */ void assemble_Poisson_rhs(); /** This assembles the coupled right hand side, * \f[ * = ; \left[ N_{D} - N_{A} - (\rho_{n}^{k-1} -\rho_{p}^{k-1}) \right] * \f] * * NOTE: It needs to be in this class and not in MixedFEM, because we dont want * pass carrier's DoFHandler so we can access a carrier cell. */ void assemble_local_Poisson_rhs( const typename DoFHandler<dim>::active_cell_iterator & cell, Assembly::AssemblyScratch<dim> & scratch, Assembly::Poisson::CopyData<dim> & data); /** Copys the local right hand side vectors assembled my and this * object into the global right hand side vector. * Used for assembly in parallel by workstream. */ void copy_local_to_global_Poisson_rhs( const Assembly::Poisson::CopyData<dim> & data); /** Calls the direct solver */ void solve_Poisson_system(); // LDG /** This function assembles the mass matrix as well * as the electron and hole system matrices for LDG on a global * level. It uses the workstream function from deal.ii * assemble the right hand side in parallel. * It needs a LDG object to call in order to assemble things in parallel. * It will also call * LDG_MX::DriftDiffusionPoisson.copy_local_to_global_LDG_mass_matrix(), * LDG_MX::DriftDiffusionPoisson.copy_local_to_global_electron_LDG_matrix(), * LDG_MX::DriftDiffusionPoisson.copy_local_to_global_hole_LDG_matrix() * to copy the local contributions * to the global matrices. */ void assemble_carrier_matrix(); /** Copies the local mass matrix to the global mass matrix. To be used * by workstream do assemble things in parallel.*/ void copy_local_to_global_LDG_mass_matrix( const Assembly::DriftDiffusion::CopyData<dim> & data); /** Copies the local electron matrix to the global mass matrix. To be used * by workstream do assemble things in parallel.*/ void copy_local_to_global_electron_LDG_matrix( const Assembly::DriftDiffusion::CopyData<dim> & data); /** Copies the local hole matrix to the global mass matrix. To be used * by workstream do assemble things in parallel.*/ void copy_local_to_global_hole_LDG_matrix( const Assembly::DriftDiffusion::CopyData<dim> & data); /** This function assembles the right hand side for the LDG on * a global level. It uses the workstream function from deal.ii * in order to assemble the terms in parallel * using the LDG_MX::DriftDiffusionPoisson.assemble_local_LDG_rhs() function. * It will also call LDG_MX::DriftDiffusionPoisson.copy_local_to_global_LDG_rhs() * to assemble * the global right hand side from the local ones. */ void assemble_carrier_rhs(); /** This function assembles the right hand side for the LDG on * a local cell level. The right hand side corresponds to, * \f[ * = \ \left( v , R(u^{k-1}) + G \right) - * \langle v, K( u^{k}) \rangle_{\Sigma} * + * \langle \textbf{p} , u_{D} \rangle_{ \partial \Omega_{N} } + * \left( s \textbf{P} \cdot \boldsymbol \nabla \Phi , u^{k-1} \right) * \f] * * NOTE: It needs to be in this class and not in LDG, because we dont want * pass Poisson's DoFHandler so we can access a Poisson cell. */ void assemble_local_LDG_rhs( const typename DoFHandler<dim>::active_cell_iterator & cell, Assembly::AssemblyScratch<dim> & scratch, Assembly::DriftDiffusion::CopyData<dim> & data); /** Copies the local right hand side vector into the global one. */ void copy_local_to_global_LDG_rhs( const Assembly::DriftDiffusion::CopyData<dim> & data); /** solves the system of equation for the electron equations. */ void solve_electron_system(); /** solves the system of equation for the hole equations. */ void solve_hole_system(); /** Runs throught values of electrons and holes and if they are * less than zero, sets them to be zero. */ void project_back_densities(); void output_carrier_system() const; /* Prints all the data for this time stamps */ void output_results() const; unsigned int Dirichlet; unsigned int Neumann; unsigned int time_step_number; unsigned int degree; private: Parameters parameters; ParameterHandler &prm; Triangulation<dim> triangulation; // MIXED POSSION DATA STRUCTURES FESystem<dim> Poisson_fe; DoFHandler<dim> Poisson_dof_handler; ConstraintMatrix Poisson_constraints; BlockSparsityPattern Poisson_sparsity_pattern; BlockSparseMatrix<double> Poisson_system_matrix; BlockVector<double> Poisson_system_rhs; BlockVector<double> Poisson_solution; // LDG DRIFT-DIFFUSION DATA STRUCTURES FESystem<dim> carrier_fe; DoFHandler<dim> carrier_dof_handler; BlockSparsityPattern carrier_sparsity_pattern; BlockSparsityPattern carrier_mass_sparsity_pattern; BlockSparseMatrix<double> carrier_mass_matrix; BlockSparseMatrix<double> electron_system_matrix; BlockSparseMatrix<double> hole_system_matrix; BlockVector<double> electron_solution; BlockVector<double> hole_solution; BlockVector<double> old_electron_solution; BlockVector<double> old_hole_solution; BlockVector<double> electron_system_rhs; BlockVector<double> hole_system_rhs; MixedFEM<dim> Assembler_MX; LDG<dim> Assembler_LDG; // PHYSICAL FUNCTIONS const DonorDoping<dim> donor_function; const AcceptorDoping<dim> acceptor_function; // TODO: Maybe allow them to be declared constant in the actual // functions that way we can instaniate them after reading // paramtervalues/ assign them in input_file.prm Generation<dim> generation_function; const Applied_Bias<dim> applied_bias; const Built_In_Bias<dim> built_in_bias; // Direct solvers SparseDirectUMFPACK Poisson_solver; SparseDirectUMFPACK electron_solver; SparseDirectUMFPACK hole_solver; }; }
[ "mdh266@gmail.com" ]
mdh266@gmail.com
62ea2d50797e80285fd20a85d44d2309dbb17105
24af45e1de6dccfded757e59edf83c5c3d7aa755
/phonebook.cpp
ca6d9df3626dcbb12626f20b9ef469b96d894bb7
[]
no_license
rkarkicodes/Phonebook
2e267c35111807cc1faf36d6a2693876821a1202
ce4318d65645bb47500a8dd1e83b5c012db7547e
refs/heads/master
2020-06-03T14:45:57.932200
2015-04-28T20:16:24
2015-04-28T20:16:24
34,592,057
0
0
null
null
null
null
UTF-8
C++
false
false
7,380
cpp
// phonebook.cpp // Phonebook // // Created by Rohit karki on 12/6/14. // Copyright (c) 2014 rohit karki. All rights reserved. // #include "phonebook.h" #include "contact.h" #include <typeinfo> #include <locale> Phonebook::Phonebook(){ getActualPhonebook(); string alpha= "abcdefghijklmnopqrstuvwxyz"; for (int i=0;i < alpha.length();i++){ setPhonebookIndex(alpha[i], i); }; }; bool Phonebook::contactExist(string name){ bool a; int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ a=1; // found break; } } return a; }; list<Contact>::iterator Phonebook:: extractContact(string name){ int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ break; } } return it; }; void Phonebook::addContact(Contact _record){ int index=getPhonebookIndex()[_record.getName()[0]]; setActualPhonebook(_record,index); }; void Phonebook::searchContact(string name){ if (contactExist(name)==1){ cout<<"\t!!!!!FOUND!!!!!"<<endl; Phonebook::printInfo(*extractContact(name)); }else{ cout<<"Contact doesn't exist"<<endl; } }; void Phonebook::deleteContact(string name){ if (contactExist(name)==1){ Phonebook::printInfo(*extractContact(name)); char a; cout<<"Are you sure you want to delete above record?(Y|N)"<<endl; cin>>a; if(a=='y' or a=='Y'){ int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); cout<<listIndex.size()<<endl; for (it;it!=listIndex.end();it++){ if (it->getName()==name){ listIndex.erase(it); break; } } setActualPhonebookList(listIndex,index); cout<<"Deletion Complete!!"<<endl; } }else{ cout<<"Contact doesn't exist"<<endl; } } void Phonebook::editContact(string name){ char command; if (contactExist(name)==1){ Phonebook::printInfo(*extractContact(name)); do{ cout<<"What would you like to edit? N (name)| E (email) | R(relation) | P(phone no.)| Q (quit)"<<endl; cin>>command; if(command=='N' or command=='n'){ //name string newName; cout<<"enter new Name"; cin>>newName; int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ it->setname(newName); name=newName; setActualPhonebookList(listIndex, index); //break; } } }else if (command=='E' or command=='e'){ //email string newEmail; cout<<"enter new email"; cin>>newEmail; int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ it->setemail(newEmail); setActualPhonebookList(listIndex, index); //break; } } }else if (command=='R' or command=='r'){ //rela string newRelation; cout<<"enter new relationship"; cin>>newRelation; int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ it->setRelation(newRelation); setActualPhonebookList(listIndex, index); //break; } } }else if (command=='P' or command=='p'){ //ph.. string newPhone; cout<<"enter new phone no."; cin>>newPhone; int index=getPhonebookIndex()[name[0]];// index of the phonebook list<Contact> listIndex = getActualPhonebook()[index]; list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if (it->getName()==name){ it->setPhoneNumber(newPhone); setActualPhonebookList(listIndex, index); //break; } } }else if (command=='q' or command=='Q'){ break; }else{ cout<<"enter a valid command"<<endl; } }while(command!='q' or command!='Q'); }else{ cout<<"Contact doesn't exist"<<endl; } } void Phonebook::printAll(){ int count=0; for(int i=0; i<getActualPhonebook().size();i++){ list<Contact> listIndex = getActualPhonebook()[i]; if(listIndex.size()>0){ list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ count+=1; printInfo(*it); } } } cout<<"\t[Total Contacts:"<<count<<"]\t"<<endl; } void Phonebook::displayByRelation(string _relation){ Contact::changeCase(_relation); int count=0; for(int i=0; i<getActualPhonebook().size();i++){ list<Contact> listIndex = getActualPhonebook()[i]; if(listIndex.size()>0){ list<Contact>:: iterator it = listIndex.begin(); for (it;it!=listIndex.end();it++){ if(it->getRelation()==_relation){ count+=1; printInfo(*it); } } } } if(count==0){cout<<"You don't have any "<<_relation<<" in your phonebook."<<endl;} else{ cout<<"Number of "<<_relation<<": "<<count<<endl; }; }
[ "rohitkarki64@gmail.com" ]
rohitkarki64@gmail.com
59c4f5b62ae83ad52e51be53a8e23160699b924c
1fb85694bea0cd88b03d2c248edb4fc95a3ba449
/Banker/main.cpp
d913e670ad9f599a33e200b3d6d40da72c30894e
[]
no_license
DevilInChina/OperatingSystemConcepts
a3b2473bb2223e286162d86f5cb7972a141ebb36
d205b38fd2196d6594bd1cd911fc54596f08c978
refs/heads/master
2021-06-20T05:52:46.751951
2021-04-20T01:00:37
2021-04-20T01:00:37
209,681,260
0
0
null
null
null
null
UTF-8
C++
false
false
6,317
cpp
#include <bits/stdc++.h> #include <sys/time.h> #include <zconf.h> using namespace std; const int maxResourceInNeed = 10; #define Need first #define Have second enum ProceStatus{ NOTINUSE,BLOCK,ALLRIGHT }; class RngNumber { public: RngNumber() { timeval t1; gettimeofday(&t1, nullptr); x = t1.tv_usec % 1000; y = t1.tv_sec % 1000; z = (x * x + y * y) / 1000 % 1000; } unsigned rng61() { unsigned t; x ^= x << 16; x ^= x >> 5; x ^= x << 1; t = x; x = y; y = z; z = t ^ x ^ y; return z; } unsigned _get(int n){ return rng61()%n; } private: unsigned x, y, z; }; class Customer{ public: explicit Customer(int ids,const vector<int>&Resourses):Rng(),id(ids){ int n = Rng._get(Resourses.size())+1; for(int i = 0 ; i < n ; ++i){ int R,Q;//// resource R need Q; R = Rng._get(Resourses.size()); Q = Rng._get(Resourses[R])+1; condition[R] = make_pair(Q,0); } cond = NOTINUSE; } Customer(const Customer&Cp):id(Cp.id),condition(Cp.condition),cond(Cp.cond) { Rng = Cp.Rng; } int getRng(int n){ return Rng._get(n)+1; } bool aquire(){/// request some resources resNeed.clear(); int cnt = 0; ///cout<<id<<" is aquir "<<condition.size()<<endl; for(auto it:condition) { int k; if (it.second.first > it.second.second) { k = it.second.first - it.second.second; k = Rng._get(k) + 1; } else { k = 0; } if (k) { resNeed.emplace_back(make_pair(it.first, k)); ++cnt; } } return cnt; } int getId(){ return id; } string showResoures(){ string ret = "["; for(auto it:resNeed){ ret.append ("[" + to_string(it.first)+","+to_string(it.second)+"],"); } ret.pop_back(); ret.push_back(']'); return ret; } private: typedef pair<int,int>pd; ProceStatus cond; map<int,pd>condition; vector<pd>resNeed; RngNumber Rng; int id; friend class Server; }; class Server{ public: explicit Server(char **argv,ostream & fout):Rng(),Infoout(fout){ int R = atoi(argv[0]); for(int i = 1 ; i <= R ; ++i){ resourse.push_back(atoi(argv[i])); ResourceLock.push_back(OutstreamLocker); pthread_mutex_init(&ResourceLock.back(), nullptr); } pthread_mutex_init(&OutstreamLocker, nullptr); pthread_mutex_init(&OuterLocker, nullptr); printInfo("successful init"); }; int resAlloc(Customer&Per){ Lock(Per); map<int ,int>InNeed; for(auto it:Per.condition){ InNeed[it.first] = it.second.Need-it.second.Have; } bool CanAlloc = true; for(auto it :InNeed){ if(resourse[it.first]<it.second){ CanAlloc = false; break; } } if(CanAlloc){ for(auto it :Per.resNeed){ resourse[it.first]-=it.second; Per.condition[it.first].Have+=it.second; } if(Per.cond==BLOCK) { printInfo("user " + to_string(Per.id) + " was Blocked and successfully allocated now." + Per.showResoures()); }else{ printInfo("user " + to_string(Per.id) + " successfully allocated." + Per.showResoures()); } Unlock(Per); Per.cond = ALLRIGHT; return true; } if(Per.cond!=BLOCK)/// only print once printInfo("user "+to_string(Per.id)+" FAILED to allocated."+Per.showResoures()); Unlock(Per); Per.cond = BLOCK; return false; } int resFree(Customer&Per){ Lock(Per); for(auto &it :Per.condition){ resourse[it.first]+=it.second.Have; it.second.Have = 0; } printInfo("user "+to_string(Per.id)+" free all resourses."); Unlock(Per); return true; } const vector<int>&getResourses(){ return resourse; } private: void printInfo(const string &s){ time_t t1; time(&t1); string ct(ctime(&t1)); pthread_mutex_lock(&OutstreamLocker); Infoout<<ct<<"["<<s<<"]\n"; Infoout<<'['; for(auto it:resourse){ Infoout<<it<<' '; } Infoout<<"]\n"; pthread_mutex_unlock(&OutstreamLocker); } bool Lock(const Customer&Per){ // pthread_mutex_lock(&OuterLocker); for(auto it : Per.condition){ pthread_mutex_lock(&ResourceLock[it.first]); } //pthread_mutex_unlock(&OuterLocker); return true; } bool Unlock(const Customer&Per){ for(auto it : Per.condition){ pthread_mutex_unlock(&ResourceLock[it.first]); } // pthread_mutex_unlock(&OuterLocker); return true; } vector<int>resourse; vector<pthread_mutex_t>ResourceLock; pthread_mutex_t OutstreamLocker,OuterLocker; ostream &Infoout; RngNumber Rng; }; struct Parameter{ Customer Per; Server&Ser; explicit Parameter(const Customer &per,Server &ser):Per(per),Ser(ser){}; Parameter(const Parameter&Cp):Per(Cp.Per),Ser(Cp.Ser){}; }; void deal(Parameter *param){ int tot = param->Per.getRng(5);///allocate 1-5 times; for(int i = 0 ; i < tot ; ++i) { if(param->Per.aquire()) { while(!param->Ser.resAlloc(param->Per)){} sleep(1); }else{ } } param->Ser.resFree(param->Per); } int main(int argc,char *argv[]){ int k = atoi(argv[1]); ofstream fou("data.out"); Server ser(argv+2,fou); vector<Parameter>params; vector<thread>Threads; for(int i = 0 ; i < k ; ++i){ params.emplace_back(Parameter(Customer(i,ser.getResourses()),ser)); } for(int i = 0 ; i < k ; ++i){ Threads.emplace_back(thread(deal,&params[i])); } for(int i = 0 ;i < k ; ++i){ Threads[i].join(); } }/* * * * */
[ "905320627@qq.com" ]
905320627@qq.com
10d682beb6ebd232ba417371ef1ed3e6ac050cf7
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_old_hunk_1486.cpp
3fa0847b215d1be8ff3843ce871b6497e31fcdac
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,628
cpp
"UPLOADING\n" "\n" " FTP\n" "\n" " Upload all data on stdin to a specified ftp site:\n" "\n" " curl -t ftp://ftp.upload.com/myfile\n" "\n" " Upload data from a specified file, login with user and password:\n" "\n" ); puts( " curl -T uploadfile -u user:passwd ftp://ftp.upload.com/myfile\n" "\n" " Upload a local file to the remote site, and use the local file name remote\n" " too:\n" " \n" " curl -T uploadfile -u user:passwd ftp://ftp.upload.com/\n" "\n" " Upload a local file to get appended to the remote file using ftp:\n" "\n" " curl -T localfile -a ftp://ftp.upload.com/remotefile\n" "\n" " Curl also supports ftp upload through a proxy, but only if the proxy is\n" ); puts( " configured to allow that kind of tunneling. If it does, you can run curl in\n" " a fashion similar to:\n" "\n" " curl --proxytunnel -x proxy:port -T localfile ftp.upload.com\n" "\n" " HTTP\n" "\n" " Upload all data on stdin to a specified http site:\n" "\n" " curl -t http://www.upload.com/myfile\n" "\n" " Note that the http server must've been configured to accept PUT before this\n" " can be done successfully.\n" "\n" " For other ways to do http data upload, see the POST section below.\n" "\n" "VERBOSE / DEBUG\n" "\n" ); puts( " If curl fails where it isn't supposed to, if the servers don't let you\n" " in, if you can't understand the responses: use the -v flag to get VERBOSE\n" " fetching. Curl will output lots of info and all data it sends and\n" " receives in order to let the user see all client-server interaction.\n" "\n" " curl -v ftp://ftp.upload.com/\n" "\n" "DETAILED INFORMATION\n" "\n" " Different protocols provide different ways of getting detailed information\n" ); puts( " about specific files/documents. To get curl to show detailed information\n" " about a single file, you should use -I/--head option. It displays all\n" " available info on a single file for HTTP and FTP. The HTTP information is a\n" " lot more extensive.\n" "\n" " For HTTP, you can get the header information (the same as -I would show)\n" " shown before the data by using -i/--include. Curl understands the\n" " -D/--dump-header option when getting files from both FTP and HTTP, and it\n" ); puts( " will then store the headers in the specified file.\n" "\n" " Store the HTTP headers in a separate file (headers.txt in the example):\n" "\n" " curl --dump-header headers.txt curl.haxx.se\n" "\n" " Note that headers stored in a separate file can be very useful at a later\n" " time if you want curl to use cookies sent by the server. More about that in\n"
[ "993273596@qq.com" ]
993273596@qq.com
fa7b5950cdf7b6e954b92d8265348e48a8824dd7
e6b96681b393ae335f2f7aa8db84acc65a3e6c8d
/atcoder.jp/diverta2019-2/diverta2019_2_c/Main.cpp
2ac8e87a840cd590dd1ac2fc50a7e0e8475d0fdd
[]
no_license
okuraofvegetable/AtCoder
a2e92f5126d5593d01c2c4d471b1a2c08b5d3a0d
dd535c3c1139ce311503e69938611f1d7311046d
refs/heads/master
2022-02-21T15:19:26.172528
2021-03-27T04:04:55
2021-03-27T04:04:55
249,614,943
0
0
null
null
null
null
UTF-8
C++
false
false
1,643
cpp
#include<bits/stdc++.h> using namespace std; typedef pair<int,int> P; typedef pair<P,int> T; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; #define pb push_back #define mp make_pair #define eps 1e-9 #define INF 2000000000 #define sz(x) ((int)(x).size()) #define fi first #define sec second #define all(x) (x).begin(),(x).end() #define sq(x) ((x)*(x)) #define rep(i,n) for(int (i)=0;(i)<(int)(n);(i)++) #define repn(i,a,n) for(int (i)=(a);(i)<(int)(n);(i)++) #define EQ(a,b) (abs((a)-(b))<eps) template<class T> void chmin(T& a,const T& b){if(a>b)a=b;} template<class T> void chmax(T& a,const T& b){if(a<b)a=b;} int N; int A[100100]; int main(){ cin >> N; for(int i=0;i<N;i++)cin >> A[i]; sort(A,A+N); int k = lower_bound(A,A+N,0)-A; int res; if(k==N){ res = A[N-1]; for(int i=0;i<N-1;i++){ res = res - A[i]; } cout << res << endl; res = A[N-1]; for(int i=0;i<N-1;i++){ cout << res << ' ' << A[i]<< endl; res = res - A[i]; } }else if(k==0){ res = A[0]; for(int i=1;i<N-1;i++){ res -= A[i]; } cout << A[N-1]-res << endl; res = A[0]; for(int i=1;i<N-1;i++){ cout << res << ' ' << A[i] << endl; res -= A[i]; } cout << A[N-1] << ' ' << res << endl; }else{ int p = A[k]; //plus int q = A[k-1]; //minus for(int i=k+1;i<N;i++){ q -= A[i]; } for(int i=0;i<k-1;i++){ p -= A[i]; } cout << p - q << endl; p = A[k]; //plus q = A[k-1]; //minus for(int i=k+1;i<N;i++){ cout << q << ' ' << A[i] << endl; q -= A[i]; } for(int i=0;i<k-1;i++){ cout << p << ' ' << A[i] << endl; p -= A[i]; } cout << p << ' ' << q << endl; } return 0; }
[ "okuraofvegetable@gmail.com" ]
okuraofvegetable@gmail.com
53be8ce929c777f5e84ac36c7841b1c4b63aa74e
391c3971ff196e3c1ae862d50dee460a3faf00f4
/robot/message/lua/send_transaction.cpp
445eed8bf762d6189e03022ec486048ad1482561
[]
no_license
OpenTrader9000/quik
257c954fc219338d9f25ccae9cff52b4ec7b7520
117e9f3439b9e05bfd5a73c837d6921de66bf239
refs/heads/master
2021-09-01T04:30:41.349079
2017-12-24T20:14:52
2017-12-24T20:14:52
110,351,902
3
0
null
null
null
null
UTF-8
C++
false
false
1,323
cpp
#include "send_transaction.hpp" namespace robot { namespace message { namespace lua { char const* to_string(action act) { #define ACTION(NAME) \ case action::NAME: \ return #NAME; switch (act) { ACTION(NEW_ORDER); ACTION(NEW_NEG_DEAL); ACTION(NEW_QUOTE); ACTION(KILL_QUOTE); ACTION(MOVE_ORDERS); ACTION(NEW_REPO_NEG_DEAL); ACTION(NEW_EXT_REPO_NEG_DEAL); ACTION(NEW_STOP_ORDER); ACTION(KILL_ORDER); ACTION(KILL_NEG_DEAL); ACTION(KILL_STOP_ORDER); ACTION(KILL_ALL_ORDERS); ACTION(KILL_ALL_STOP_ORDERS); ACTION(KILL_ALL_NEG_DEALS); ACTION(KILL_ALL_FUTURES_ORDERS); ACTION(KILL_RTS_T4_LONG_LIMIT); ACTION(KILL_RTS_T4_SHORT_LIMIT); ACTION(NEW_REPORT); ACTION(SET_FUT_LIMIT); default: assert(false); }; #undef ACTION return ""; } char const* to_string(operation op) { switch (op) { case operation::BUY: return "B"; case operation::SELL: return "S"; default: assert(false); } return ""; } send_transaction::send_transaction() { } send_transaction::~send_transaction() { } void send_transaction::execute(lua_State* L) { } } // namespace lua } // namespace message } // namespace robot
[ "likhachevae@1488a.ru" ]
likhachevae@1488a.ru
dab04005fa8b8fc84fa184639082be3f9e062031
b9ef22ae35e6f5459fbebeaf99bd5a3c438a99c2
/WS04/utilTemplates.h
f579936017dd937cac15e57452c5d87475f5bab6
[]
no_license
gmtommasini/OOP345-workshops
9bf285b01e8f8ff4cd537a2a0b1318a2609142c9
be17a2fefecf14b8128887a14c2cff0f05efd937
refs/heads/main
2023-01-19T10:50:00.235391
2020-11-29T03:02:06
2020-11-29T03:02:06
311,096,631
0
0
null
null
null
null
UTF-8
C++
false
false
939
h
#pragma once #include "util.h" //#include <typeinfo> namespace util { //template<typename T> //T substring(std::string& src, const char C) { // int pos = src.find(C); // pos = pos > 0 ? pos : src.length(); // T temp = std::stold(src.substr(0, pos) ); // src.erase(0, pos + 1); // return temp; //} int subint(std::string& src, const char C) { int pos = src.find(C); pos = pos > 0 ? pos : src.length(); int temp = std::stoi(src.substr(0, pos)); src.erase(0, pos + 1); return temp; } //template<> //overloading function std::string substring(std::string& src, const char C) { int pos = src.find(C); pos = pos > 0 ? pos : src.length(); std::string temp = src.substr(0, pos); trim(temp); //std::cout << "\n--" << temp << "--\n"; src.erase(0, pos + 1); return temp; } }
[ "gmtommasini@gmail.com" ]
gmtommasini@gmail.com
f94ed48c8595c29c1495377c98ec4a6ffb3a3807
ec997edb8db827efc566dcd20c1b7fbc93cc9125
/src/ui/style/default_style_sheet.cpp
30af7e5a7b70893c57fc7f2f3deb1856879f21dd
[]
no_license
elemel/mortified
0112f91fcf4fc9c27b0628f2cd1290c74a22619f
fce68270238409179b979fd08d1da0013a96ef9f
refs/heads/master
2020-04-11T01:32:18.034490
2011-12-03T21:45:26
2011-12-03T21:45:26
129,930
1
0
null
null
null
null
UTF-8
C++
false
false
3,563
cpp
#include "default_style_sheet.hpp" #include "style_sheet.hpp" #include "widget.hpp" #include <iostream> #include <iterator> #include <sstream> namespace mortified { class DefaultStyleSheet : public StyleSheet { public: void updateStyles(std::string const *names, int nameCount, std::string const *bases, int baseCount, WidgetStyle const *style, StyleMask mask) { WidgetStyle tempStyle; StyleMask tempMask; for (int i = 0; i < baseCount; ++i) { MaskedStyle const &source = styles_[bases[i]]; copy(&source.style, &source.mask, &tempStyle, &tempMask); } copy(style, &mask, &tempStyle, &tempMask); for (int i = 0; i < nameCount; ++i) { MaskedStyle &target = styles_[names[i]]; copy(&tempStyle, &tempMask, &target.style, &target.mask); } } std::auto_ptr<WidgetStyle> applyStyles(std::string const *names, int nameCount) { std::auto_ptr<WidgetStyle> style(new WidgetStyle); for (int i = 0; i < nameCount; ++i) { MaskedStyle const &source = styles_[names[i]]; copy(&source.style, &source.mask, style.get()); } return style; } private: class MaskedStyle { public: WidgetStyle style; StyleMask mask; }; typedef std::map<std::string, MaskedStyle> StyleMap; StyleMap styles_; void copy(WidgetStyle const *sourceStyle, StyleMask const *sourceMask, WidgetStyle *targetStyle, StyleMask *targetMask = 0) { if (sourceMask->weight) { targetStyle->weight = sourceStyle->weight; } if (sourceMask->stretch) { targetStyle->stretch = sourceStyle->stretch; } if (sourceMask->alignment) { targetStyle->alignment = sourceStyle->alignment; } if (sourceMask->padding) { targetStyle->padding = sourceStyle->padding; } if (sourceMask->border) { targetStyle->border = sourceStyle->border; } if (sourceMask->spacing) { targetStyle->spacing = sourceStyle->spacing; } if (sourceMask->color) { targetStyle->color = sourceStyle->color; } if (sourceMask->backgroundColor) { targetStyle->backgroundColor = sourceStyle->backgroundColor; } if (sourceMask->borderColor) { targetStyle->borderColor = sourceStyle->borderColor; } if (targetMask) { targetMask->weight = sourceMask->weight; targetMask->stretch = sourceMask->stretch; targetMask->alignment = sourceMask->alignment; targetMask->padding = sourceMask->padding; targetMask->border = sourceMask->border; targetMask->spacing = sourceMask->spacing; targetMask->color = sourceMask->color; targetMask->backgroundColor = sourceMask->backgroundColor; targetMask->borderColor = sourceMask->borderColor; } } }; std::auto_ptr<StyleSheet> createStyleSheet() { return std::auto_ptr<StyleSheet>(new DefaultStyleSheet); } }
[ "elemel@elemel.se" ]
elemel@elemel.se
d00311a0c8a19b26be73c2d7a47b4244f853b20d
cecf6991e6007ee4bc32a82e438c9120b3826dad
/BrainTest/Source/stdafx.h
0016c2ab0143a2ec954b18c8061ca3425deeb74c
[]
no_license
thinking2535/Rso
172a3499400331439a530cab78934fa4c4433771
35d556463118825a1d5d36f49d46f18a05806169
refs/heads/main
2022-11-30T12:43:50.917063
2022-11-23T10:47:59
2022-11-23T10:47:59
31,525,549
11
0
null
null
null
null
UTF-8
C++
false
false
193
h
#pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> #include <Rso/Brain/Brain.h> #include <iostream> using namespace std; using namespace rso; using namespace brain;
[ "thinking2535@gmail.com" ]
thinking2535@gmail.com
718f1e902fa1f9e52ff20647216d30f6e762d65d
3edceae201b7e29b7ae809b540754726a1ff4eb2
/Camera Registration/main.cpp
d84354c0bdd4369267334efd70947200edd2aff7
[]
no_license
faisalkalim/Camera-Calibration-Algorithms
24596630f9551d01444b2d4704a579654781996b
d0011c7ea0184787a35ddc943a4a4aa6270622d5
refs/heads/master
2020-06-22T01:44:26.695040
2019-07-18T14:32:54
2019-07-18T14:32:54
197,602,791
0
0
null
null
null
null
UTF-8
C++
false
false
9,508
cpp
#include <opencv2/core.hpp> #include <opencv2/opencv.hpp> #include <opencv2/calib3d.hpp> #include <opencv2/imgproc.hpp> #include <Eigen/Geometry> #include <iostream> #include<string> #include "Maxer_NDI_Tracker.h" //using namespace std; using namespace cv; Eigen::MatrixXd m_pointerPositions; Eigen::MatrixXd m_ObjectPositions; std::vector<cv::Point3f> objectPoints; Eigen::MatrixXd WorldToChessboard; //OTS To Chessboard Eigen::MatrixXd chessboardToLapCam; Eigen::MatrixXd trackerToLapCam; Eigen::MatrixXd worldToLapCamTracker; // OTS to Laparoscopic Camera Tracker unsigned int ndiPortPointerTip = 0; unsigned int ndiPortChessboard = 0; unsigned int ndiPortTelescope = 0; cv::VideoCapture lapCam; cv::Mat cameraMatrix, distCoeffs; // Camera Calibration parameters read from file cv::Size boardSize; int boardWidth,boardHeight,squareSize; int numChessboardCorners = 35; ATLASMaxerOTS::NDITracker ndiTracker = ATLASMaxerOTS::NDITracker(); void addPointerPosition(); void readCameraParameters(); void addLapCameraPose(); void calculateTtoChessboard(); Eigen::Matrix4d readTransformFromNDI(int port, bool& markerPresent); int main() { std::cout<<"OTSToChessboard Inverse"<<std::endl<<std::endl; std::cout<<"OTSToChessboard Inverse"<<std::endl<<std::endl; if(!ndiTracker.FindDevices()) { //error = true; std::cout<<"Starting NDI Search Incomplete"<<std::endl; } else { const char* pointerFileName = "/home/faisal/Camera Registration/TrackingArrays/pointer.rom"; const char* chessboardFileName = "/home/faisal/Camera Registration/TrackingArrays/RefCalibGridCharucoboard.rom"; ndiTracker.Init(); //ndiPortTelescope = ndiTracker.AddTool(fileName); // Add Pointer Tool Definition File ndiPortPointerTip = ndiTracker.AddTool(pointerFileName); // Add Chessboard Tool Definition File ndiPortChessboard = ndiTracker.AddTool(chessboardFileName); ndiTracker.StartTracking(); } std::cout<<"OTSToChessboard Inverse"<<std::endl<<std::endl; lapCam = VideoCapture(0); if(!lapCam.isOpened()) std::cout<<"Failed to Open Camera "<<std::endl; readCameraParameters(); for( int i = 0; i < boardSize.height; ++i ) for( int j = 0; j < boardSize.width; ++j ) { objectPoints.push_back(cv::Point3f(j*squareSize, i*squareSize, 0)); } bool shouldQuit = false; cv::Mat currentFrame; lapCam.set(cv::CAP_PROP_FRAME_WIDTH,1920); lapCam.set(cv::CAP_PROP_FRAME_HEIGHT,1080); lapCam>>currentFrame; lapCam>>currentFrame; lapCam>>currentFrame; lapCam>>currentFrame; uchar key = 1; while(!shouldQuit) { lapCam>>currentFrame; imshow("Image ", currentFrame); key = cv::waitKey(10); if(key == 'p') addPointerPosition(); else if(key == 't') calculateTtoChessboard(); else if (key == 'q') shouldQuit = true; } lapCam.release(); ndiTracker.StopTracking(); return 0; } Eigen::Matrix4d readTransformFromNDI(int port, bool& markerPresent) { Eigen::Matrix4d result; double buffer[8]; int status = ndiTracker.GetTrackingData(port, buffer); markerPresent = markerPresent && (status == 0); //the logical and ensures I can use it again and again //retrieve the information from the buffer //First 4 values are the rotation in quaternion, second 3 values are transformation, last value is debug info //as the tracker already delivers a quaternion, this initialization should be ok Eigen::Quaternion<double> rot = Eigen::Quaternion<double>(buffer[0], buffer[1], buffer[2], buffer[3]); Eigen::Affine3d trans(Eigen::Translation3d(Eigen::Vector3d(buffer[4], buffer[5], buffer[6]))); //std::cout<<"Tracking Quality:: "<<buffer[4]<<" "<<buffer[5]<<" "<<buffer[6]<<" " <<std::endl; result = trans.matrix()*Eigen::Affine3d (rot.normalized().toRotationMatrix()).matrix() ; return result; } void addPointerPosition() { Eigen::Matrix4d pointerTransform; bool markerPresent = true; pointerTransform = readTransformFromNDI(ndiPortPointerTip, markerPresent); Eigen::Matrix4d toolTipTransform; Eigen::Matrix4d offsetTransform =Eigen::MatrixXd::Identity(4,4) ; offsetTransform(0,3) = -19.39; offsetTransform(1,3) = 0.29; offsetTransform(2,3) = -157.82; toolTipTransform = pointerTransform*offsetTransform; if(!markerPresent) { std::cout << "Pointer not visible "<<ndiPortPointerTip << std::endl; return; } if(m_pointerPositions.cols() == 0) { std::cout << "Init the matrix" << std::endl; m_pointerPositions.resize(3 , 1); } else { m_pointerPositions.conservativeResize(Eigen::NoChange , m_pointerPositions.cols() + 1); } std::cout <<"Number of Points : "<< m_pointerPositions.cols() << std::endl; //auto devices = m_liveTrackingStream->devices(); //std::cout << " Number of devices" << devices.size() << std::endl; m_pointerPositions.block<3,1>(0,m_pointerPositions.cols() -1 ) = toolTipTransform.block<3,1>(0,3); std::cout << "Pointer Position : " << std::endl << toolTipTransform.block<3,1>(0,3) << std::endl<<std::endl; } void addLapCameraPose() { bool markerPresent = true; Eigen::Matrix4d LapCamTrackerToWorld = readTransformFromNDI(ndiPortTelescope, markerPresent); // mat4 LapCamTrackerToWorld = devices.at(2)->matrix; // to be replaced by our tracker worldToLapCamTracker =LapCamTrackerToWorld.inverse() ; cv::Mat img,imgUndistorted; std::vector<Point2f> imagePoints; if(lapCam.isOpened()) { for(int i = 0;i<5;i++) lapCam >>img; std::cout << "Image saved:: /home/faisal/Downloads/image.jpg\n" ; cv::imwrite("/home/faisal/Downloads/image.jpg",img); } else { std::cout << "Opening Laparoscopy Camera Failed \n"; return; } cv::undistort(img,imgUndistorted,cameraMatrix,distCoeffs); cv::Mat rvec(3,1,cv::DataType<double>::type); cv::Mat tvec(3,1,cv::DataType<double>::type); bool found = findChessboardCorners( img, boardSize, imagePoints,0); if(found) { std::cout<<"Found Points"<<std::endl; std::cout<<objectPoints.size()<<std::endl; std::cout<<imagePoints.size()<<std::endl; cv::solvePnP (objectPoints, imagePoints, cameraMatrix, distCoeffs, rvec, tvec, false, cv::SOLVEPNP_ITERATIVE); //std::cout<<rvec<<std::endl<<tvec<<std::endl; cv::Mat rotation, viewMatrix(4, 4, CV_64F); cv::Rodrigues(rvec, rotation); for(unsigned int row=0; row<3; ++row) { for(unsigned int col=0; col<3; ++col) { viewMatrix.at<double>(row, col) = rotation.at<double>(row, col); } viewMatrix.at<double>(row, 3) = tvec.at<double>(row, 0); } viewMatrix.at<double>(3, 3) = 1.0f; viewMatrix.at<double>(3, 0) = 0.0f; viewMatrix.at<double>(3, 1) = 0.0f; viewMatrix.at<double>(3, 2) = 0.0f; //cv2eigen(viewMatrix,chessboardToLapCam); std::cout<<"View Matrix"<<std::endl<<std::endl; std::cout<<viewMatrix<<std::endl<<std::endl; } else { std::cout<<"not found"<<std::endl; } } void readCameraParameters() { cv::FileStorage fs2("/home/faisal/Camera Registration/Calibration Parameters/out_camera_data.xml", cv::FileStorage::READ); if (!fs2.isOpened()) { std::cout << "Could not open the configuration file: \n" << std::endl; return; } fs2["camera_matrix"] >> cameraMatrix; fs2["distortion_coefficients"] >> distCoeffs; fs2["board_width"] >> boardWidth; fs2["board_height"] >> boardHeight; fs2["square_size"] >> squareSize; fs2.release(); boardSize = cv::Size(boardWidth,boardHeight); std::cout << "camera_matrix: " << cameraMatrix << std::endl << "distortion coeffs: " << distCoeffs << std::endl << "board_size: " << boardSize << std::endl << "square_size: " << squareSize << std::endl; } void calculateTtoChessboard() { std::cout<<"here"<<std::endl; m_ObjectPositions.resize(3 , numChessboardCorners); std::cout<<m_ObjectPositions.cols() << " " << m_pointerPositions.cols()<<std::endl; std::cout<<std::endl<< objectPoints <<std::endl; for(int i = 0; i<numChessboardCorners; i++) { m_ObjectPositions(0,i)= objectPoints.at(i).x; m_ObjectPositions(1,i)= objectPoints.at(i).y; m_ObjectPositions(2,i)= objectPoints.at(i).z; } std::cout<<"here 3"<<std::endl; // cv2eigen(objectPointsCVMat,m_ObjectPositions);*/ bool markerPresent = false; Eigen::Matrix4d OTSToChessboard = Eigen::umeyama( m_pointerPositions,m_ObjectPositions); Eigen::Matrix4d TGridToWorld = readTransformFromNDI(ndiPortChessboard, markerPresent); std::cout<<"TGridToWorld"<<std::endl<<std::endl; std::cout <<TGridToWorld<<std::endl<<std::endl; std::cout<<"here 4"<<std::endl; std::cout<<"OTSToChessboard Inverse"<<std::endl<<std::endl; std::cout <<OTSToChessboard.inverse()<<std::endl<<std::endl; std::cout<<"here 5"<<std::endl; //mat4 GridtoT = TGridToWorld.inverse()*OTSToChessboard.inverse(); /// determination of Grid to T using pointer method; Eigen::Matrix4d TtoGrid = OTSToChessboard * TGridToWorld; std::cout<<"TtoGrid"<<std::endl<<std::endl; std::cout<<TtoGrid<<std::endl<<std::endl; }
[ "fkalimktk@gmail.com" ]
fkalimktk@gmail.com
1b68cc1ffe21bef68521662e54bdf380ee01f25e
e8c9afc70a23d1158a1813d40ae55e5b4896025f
/658_find_closest_elements.cc
96fe9aea4ce6843aa3e560b9c66a8397b78500c4
[]
no_license
diantaowang/cocoding
509dd7a73ac419a823e1dcd88410b40960d6971f
ad47a5eecb7e09326b88182127179174e126732d
refs/heads/master
2023-07-14T14:49:29.808972
2021-09-03T10:14:41
2021-09-03T10:14:41
332,112,883
0
0
null
null
null
null
UTF-8
C++
false
false
982
cc
#include <vector> #include <algorithm> #include <string> #include <map> #include <set> #include <iostream> #include <tuple> #include <queue> #include <stack> using namespace::std; class Solution { public: vector<int> findClosestElements(vector<int>& arr, int k, int x) { auto pos = lower_bound(arr.begin(), arr.end(), x); int n = arr.size(), start = pos - arr.begin(); if (pos == arr.end()) start = n - 1; else if (pos == arr.begin()) start = 0; else if (x - *(pos - 1) <= *pos - x) --start; --k; int l = start - 1, r = start + 1; while (k) { if (r >= n) --l; else if (l < 0) ++r; else if (x - arr[l] <= arr[r] - x) --l; else ++r; --k; } return vector<int> (arr.begin() + l + 1, arr.begin() + r); } }; int main() { return 0; }
[ "wdiantao@gmail.com" ]
wdiantao@gmail.com
c4229ad73b4a911915f109bc99d2260e47d2a5fe
fe166ac399adb89d9091b07c761252e6c5155ab5
/Task3/BufferFrame.cpp
5e0fab6323065178f417e9a3bb1673a13b72102c
[]
no_license
And7s/dbImpl
0adb71646145cd0d4c7049f69057946d787d80a3
6e81e6e0b735a283748e64f9d9ce80961c34f737
refs/heads/master
2021-01-22T03:53:41.939617
2017-05-25T14:11:10
2017-05-25T14:11:10
92,409,650
0
0
null
null
null
null
UTF-8
C++
false
false
450
cpp
#include "BufferFrame.h" using namespace std; BufferFrame::BufferFrame(uint64_t id) { data = malloc(pageSize); pageId = id; } void BufferFrame::show() { cout << "BF: " << pageId << " inUse :" << inUse << " isDirty: " <<isDirty << " exc "<<exclusive<< endl; for (int i = 0; i < pageSize; i++) { cout << ((int *)data)[i] << " "; } cout << endl; } void* BufferFrame::getData() { return data; } BufferFrame::~BufferFrame() { free(data); }
[ "schmelzandreas@gmail.com" ]
schmelzandreas@gmail.com
5cf049a7e8d99019f244030a19259a26fd983756
20d024bd04ace59987ba05f864d6d9dece72fbab
/CQU Summer/西南弱校联萌训练赛(1)/A.cpp
2b9a2d4ab001e892e3d95998d526ede8b3d212af
[]
no_license
Yeluorag/ACM-ICPC-Code-Library
8837688c23bf487d4374a76cf0656cb7adc751b0
77751c79549ea8ab6f790d55fac3738d5b615488
refs/heads/master
2021-01-20T20:18:43.366920
2016-08-12T08:08:38
2016-08-12T08:08:38
64,487,659
0
0
null
null
null
null
UTF-8
C++
false
false
1,361
cpp
// Header. #include <set> #include <map> #include <queue> #include <stack> #include <cmath> #include <cstdio> #include <vector> #include <string> #include <sstream> #include <cstring> #include <iostream> #include <algorithm> using namespace std; // Macro typedef long long LL; #define mem(a, n) memset(a, n, sizeof(a)) #define rep(i, n) for(int i = 0; i < (n); i ++) #define REP(i, t, n) for(int i = (t); i < (n); i ++) #define FOR(i, t, n) for(int i = (t); i <= (n); i ++) #define ALL(v) v.begin(), v.end() #define Min(a, b) a = min(a, b) #define Max(a, b) a = max(a, b) #define put(a) printf("%d\n", a) #define ss(a) scanf("%s", a) #define si(a) scanf("%d", &a) #define sii(a, b) scanf("%d%d", &a, &b) #define siii(a, b, c) scanf("%d%d%d", &a, &b, &c) #define VI vector<int> #define pb push_back const int inf = 0x3f3f3f3f, N = 1e2 + 5, MOD = 1e9 + 7; // Macro end int T, cas = 0; LL n; // Imp LL Pow(LL a, LL n) { if(n == 0) return 1; LL x = Pow(a, n / 2); LL ans = LL(x) * x % MOD; if(n & 1) ans = ans * a %MOD; return (LL) ans; } int main(){ #ifdef LOCAL freopen("/Users/apple/input.txt","r",stdin); // freopen("/Users/apple/out.txt","w",stdout); #endif cin >> n; LL res; res = (((Pow(2, n) + 1) % MOD) * (Pow(2, n - 1) % MOD)) % MOD; if(n == 0) res = 1; cout << res << endl; return 0; }
[ "yeluorag@gmail.com" ]
yeluorag@gmail.com
8214649936224bfdcdff8af32d050293779bac7d
aebe6dd19748411a88d32b46dac1a5fcf21cf5a8
/cpp/30.cpp
768c48ae603589e31552a365e2bbc8b0520b064a
[]
no_license
flpdsc/basic_algorithm
d77a0b3a7ac3e7764fb53f9edd3fa0e5b53e8d0b
a71de479b08bcc072810051116aca397cc07493f
refs/heads/main
2023-08-27T14:25:32.002738
2021-10-18T08:38:46
2021-10-18T08:38:46
383,711,993
0
0
null
null
null
null
UTF-8
C++
false
false
433
cpp
//3의 개수는? (large) #include <iostream> using namespace std; int main() { int n, lt, cur, rt, k=1, res=0; cin >> n; while(lt != 0){ lt = n/(k*10); cur = n/k%10; rt = n%k; if(cur > 3){ res += (lt+1)*k; } else if(cur < 3){ res += lt*k; } else res += (lt*k)+(rt+1); k *= 10; } cout << res << endl; return 0; }
[ "92yjkim@gmail.com" ]
92yjkim@gmail.com
3ff7e2a0bd44985c0075860e0d6c5c9ce2118c64
4c7c50889ff34f6f6376f3b8c24a835fedab7c8a
/topcoder/Autogame.cpp
11c05bbe858734a56fc70c7f893112ba66280262
[]
no_license
kojingharang/algorithm_contest
590d4f2854a1bbed7d70ed16276bcc5e800b57a7
3578334ab590671d8cd9f8d97db6ceb3d7a5d3dc
refs/heads/master
2021-01-16T23:11:50.808394
2020-08-19T03:45:36
2020-08-19T03:45:36
61,990,571
0
0
null
null
null
null
UTF-8
C++
false
false
7,396
cpp
// BEGIN CUT HERE /****************************** // PROBLEM STATEMENT // Hero is playing a game with tokens. There are N places for tokens. The places are numbered 1 through N. There are also N arrows, each pointing from some place to some place. No two arrows start at the same place. It is possible that multiple arrows point to the same place. Also, an arrow may start and end at the same place. You are given the description of the game board: a vector <int> a with N elements. For each i between 1 and N, inclusive, the arrow that starts at the place i points to the place a[i-1]. At the beginning of the game, Hero will take an arbitrary number of tokens between 0 and N, inclusive, and he will place them onto distinct places. He will then play K rounds of the game. In each round each token moves from its current place along the arrow to the new place. After each round, Hero checks whether all tokens are still in distinct places. If two or more tokens are in the same place, Hero loses the game. Hero wins the game if he does not lose it during the K rounds he plays. There may be multiple ways how Hero can win the game. Two ways are different if there is some i such that at the beginning of the game place i did contain a token in one case but not in the other. Count those ways and return their count modulo 1,000,000,007. DEFINITION Class:Autogame Method:wayscnt Parameters:vector <int>, int Returns:int Method signature:int wayscnt(vector <int> a, int K) CONSTRAINTS -a will contain exactly N elements. -N will be between 1 and 50, inclusive. -Each element in a will be between 1 and N, inclusive. -K will be between 1 and 1,000,000,000, inclusive. EXAMPLES 0) {1,2,3} 5 Returns: 8 There are 2^3 = 8 valid ways to place the tokens. In each round each token will stay in the same place. Hence, Hero will win the game for each initial placement of tokens. 1) {1,1,1} 1 Returns: 4 If Hero starts the game with two or three tokens, after the first round there will be multiple tokens in the same place (place 1) and Hero will lose the game. He will only win the game if he starts with 0 tokens (1 possibility) or with 1 token (3 possibilities). 2) {2,1} 42 Returns: 4 3) {2,3,4,3} 3 Returns: 9 4) {4,4,3,2,1} 3 Returns: 18 ******************************/ // END CUT HERE #line 87 "Autogame.cpp" #include <vector> #include <map> #include <set> #include <queue> #include <algorithm> #include <numeric> #include <sstream> #include <iostream> #include <iomanip> #define _USE_MATH_DEFINES #include <cmath> #include <climits> #include <cstdlib> #include <cstring> #include <cfloat> #include <cmath> #include <ctime> #include <cassert> #include <cctype> #include <cstdio> #include <cassert> using namespace std; #define EPS 1e-12 #define ull unsigned long long #define ll long long #define VI vector<ll> #define PII pair<ll, ll> #define VVI vector<vector<ll> > #define REP(i,n) for(int i=0,_n=(n);(i)<(int)_n;++i) #define RANGE(i,a,b) for(int i=(int)a,_b=(int)(b);(i)<_b;++i) #define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i) #define ALL(c) (c).begin(), (c).end() #define ALLR(c) (c).rbegin(), (c).rend() #define PB push_back #define MP(a, b) make_pair(a, b) #define POPCOUNT __builtin_popcount #define POPCOUNTLL __builtin_popcountll #define IN_RANGE(v, a, b) ((a)<=(v) && (v)<(b)) #define CLEAR(table, v) memset(table, v, sizeof(table)); #define PRINT2(table, I, J) REP(i, I) { REP(j, J) cout<<table[i][j]<<" "; cout<<"\n"; } #define PRINT3(table, I, J, K) REP(i, I) { REP(j, J) { REP(k, K) cout<<table[i][j][k]<<" "; cout<<"\n"; } cout<<"\n"; } template <typename T0, typename T1> std::ostream& operator<<(std::ostream& os, const map<T0, T1>& v) { for( typename map<T0, T1>::const_iterator p = v.begin(); p!=v.end(); p++ ){os << p->first << ": " << p->second << " ";} return os; } template <typename T0, typename T1> std::ostream& operator<<(std::ostream& os, const pair<T0, T1>& v) { os << v.first << ": " << v.second << " "; return os; } template <typename T> std::ostream& operator<<(std::ostream& os, const vector<T>& v) { for( int i = 0; i < (int)v.size(); i++ ) { os << v[i] << " "; } return os; } template <typename T> std::ostream& operator<<(std::ostream& os, const set<T>& v) { vector<T> tmp(v.begin(), v.end()); os << tmp; return os; } template <typename T> std::ostream& operator<<(std::ostream& os, const deque<T>& v) { vector<T> tmp(v.begin(), v.end()); os << tmp; return os; } template <typename T> std::ostream& operator<<(std::ostream& os, const vector<vector<T> >& v) { for( int i = 0; i < (int)v.size(); i++ ) { os << v[i] << endl; } return os; } class Autogame { public: int wayscnt(vector <int> a, int K) { int N=a.size(); VI w(N); REP(i, N) w[i]=1; REP(loop, min(K, 1000)) { VI nw(N); REP(i, N) nw[a[i]-1]+=w[i]; w = nw; } // cout<<w<<endl; ll ans=1; REP(i, N) { ans*=w[i]+1; ans %= 1000000007LL; } return ans; } }; // BEGIN CUT HERE #include <ctime> bool allOK=true; double start_time; string timer() { ostringstream os; os << " (" << int((clock()-start_time)/CLOCKS_PER_SEC*1000) << " msec)"; return os.str(); } bool verify_case(const int& Expected, const int& Received, bool noPASSmsg=false) { bool ok = (Expected == Received); allOK = allOK && ok; if(ok) { if(!noPASSmsg) cerr << "PASSED" << timer() << endl; } else { cerr << "FAILED" << timer() << endl; cerr << "\to: \"" << Expected << '\"' << endl << "\tx: \"" << Received << '\"' << endl; } return ok; } #define CASE(N) {cerr << "Test Case #" << N << "..." << flush; start_time=clock(); #define END verify_case(_, Autogame().wayscnt(a, K));} template<class T> void print(const vector<T>& v) {cout<<"{";for(int i=0;i<(int)v.size();i++) {cout<<v[i];if(i<(int)v.size()-1) cout<<",";} cout<<"}"<<endl;} template<class T> void print(const T& v) {cout<<v<<endl;} int main(){ CASE(0) int a_[] = {1,2,3}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 5; int _ = 8; END CASE(1) int a_[] = {1,1,1}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 1; int _ = 4; END CASE(2) int a_[] = {2,1} ; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 42; int _ = 4; END CASE(3) int a_[] = {2,3,4,3}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 3; int _ = 9; END CASE(4) int a_[] = {4,4,3,2,1}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 3; int _ = 18; END CASE(3) int a_[] = {2,3,4,3}; vector <int> a(a_, a_+sizeof(a_)/sizeof(*a_)); int K = 1; int _ = 12; END #if 0 // DO RANDOM TESTS // INIT GLOBAL VARIABLES IN TRIAL CODE !!!!!!!!!!!!!! // 1. Copy my class // 2. Add `Ref` suffix to my original class // 3. Write someone's code into copied class // 4. Run and verify example test case and random tests #define UNIFORM_DOUBLE(a, b) (((b-a)*(double)rand()/RAND_MAX)+a) // [a, b) #define UNIFORM_LL(a, b) (ll)UNIFORM_DOUBLE(a, b) // [a, b) if(!allOK) return 0; srand((unsigned)time(NULL)); cerr<<endl; cerr<<"RANDOM TESTS"<<endl; for(int loop=0;loop<100;loop++) { // param type: int vector <int> a; { int N=UNIFORM_LL(1, 51); a = vector <int>(N); REP(i, N) { a[i] = UNIFORM_LL(0, 1000); } } // param type: int int K = UNIFORM_LL(0, 100); int _0 = Autogame().wayscnt(a, K); int _1 = AutogameRef().wayscnt(a, K); if(!verify_case(_0, _1, true)) { print(a); print(K); } } #endif } // END CUT HERE
[ "kojingharang@gmail.com" ]
kojingharang@gmail.com
3fdb3ad048688ccff7d3abaa6caa503d10fad845
90270b8ab7f00eae5e7ba11097a65133f2b05577
/ProjetEnCours/Fonctiontest.h
00c4f835e6a745c59b17b82282b0714ac502d16c
[]
no_license
ZPoudrier-CSTJ/A2021SolutionLabos101
8dbf1a4ae63a0f92bc6154b65fb2680d8954c747
8530576ef8819d8ad31ead1b66ab8cc735830235
refs/heads/master
2023-08-27T20:38:36.133099
2021-10-28T12:06:54
2021-10-28T12:06:54
408,490,165
0
0
null
null
null
null
UTF-8
C++
false
false
211
h
#pragma once #include <string> double calculerMax(double valeur, double valeur1, double valeur2); int calculerFactoriel(int valeur); void afficherDate(int jour, int mois, int annee); bool modulerPair(int nb);
[ "89398895+ZPoudrier-CSTJ@users.noreply.github.com" ]
89398895+ZPoudrier-CSTJ@users.noreply.github.com
31bd80e981a1c801e1beb94af5a13d792ca1eacd
225b746b76dc23274e4143e404bc9059006aac00
/Algorithm/Algorithm/2210_숫자판 점프.cpp
05076f48df54ac694bf0f22df2a108b37c9d036a
[]
no_license
leejuy1140/Algorithm
bdb73934e62c7434009d1333af10e109982386ab
15711de869289267386afb47e4007337797b5394
refs/heads/master
2020-04-19T16:32:31.449348
2019-06-06T03:05:02
2019-06-06T03:05:02
141,662,861
0
0
null
null
null
null
UHC
C++
false
false
880
cpp
#include <stdio.h> #include <vector> using namespace std; const int MAX = 5; vector<int> answer; int board[MAX][MAX]; int dir[4][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} }; void MakeNumber(int r, int c, int digit, int num) { if (digit == 6) // 6자리가 만들어지면, 중복 체크 후 추가. { for (int i = 0; i < answer.size(); i++) if (answer[i] == num) return; answer.push_back(num); return; } for (int i = 0; i < 4; i++) { int nr = r + dir[i][0]; int nc = c + dir[i][1]; if (nr < 0 || nc < 0 || nr >= MAX || nc >= MAX) continue; MakeNumber(nr, nc, digit + 1, (num * 10) + board[nr][nc]); } } int main() { for (int i = 0; i < MAX; i++) for (int j = 0; j < MAX; j++) scanf("%d", &board[i][j]); for (int i = 0; i < MAX; i++) for (int j = 0; j < MAX; j++) MakeNumber(i, j, 1, board[i][j]); printf("%d", answer.size()); return 0; }
[ "leejuy1140@gmail.com" ]
leejuy1140@gmail.com
3b17c90fdc02018cee19b1312dac5761427780be
38c10c01007624cd2056884f25e0d6ab85442194
/device/bluetooth/bluetooth_gatt_characteristic.h
91d753f4d7dd172a78b96d7185db9d34934f23b7
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
10,034
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_CHARACTERISTIC_H_ #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_CHARACTERISTIC_H_ #include <string> #include <vector> #include "base/basictypes.h" #include "base/callback.h" #include "base/memory/scoped_ptr.h" #include "device/bluetooth/bluetooth_export.h" #include "device/bluetooth/bluetooth_gatt_service.h" #include "device/bluetooth/bluetooth_uuid.h" namespace device { class BluetoothGattDescriptor; class BluetoothGattNotifySession; // BluetoothGattCharacteristic represents a local or remote GATT characteristic. // A GATT characteristic is a basic data element used to construct a GATT // service. Hence, instances of a BluetoothGattCharacteristic are associated // with a BluetoothGattService. There are two ways in which this class is used: // // 1. To represent GATT characteristics that belong to a service hosted by a // remote device. In this case the characteristic will be constructed by // the subsystem. // 2. To represent GATT characteristics that belong to a locally hosted // service. To achieve this, users can construct instances of // BluetoothGattCharacteristic directly and add it to the desired // BluetoothGattService instance that represents a local service. class DEVICE_BLUETOOTH_EXPORT BluetoothGattCharacteristic { public: // Values representing the possible properties of a characteristic, which // define how the characteristic can be used. Each of these properties serve // a role as defined in the Bluetooth Specification. // |PROPERTY_EXTENDED_PROPERTIES| is a special property that, if present, // indicates that there is a characteristic descriptor (namely the // "Characteristic Extended Properties Descriptor" with UUID 0x2900) that // contains additional properties pertaining to the characteristic. // The properties "ReliableWrite| and |WriteAuxiliaries| are retrieved from // that characteristic. enum Property { PROPERTY_NONE = 0, PROPERTY_BROADCAST = 1 << 0, PROPERTY_READ = 1 << 1, PROPERTY_WRITE_WITHOUT_RESPONSE = 1 << 2, PROPERTY_WRITE = 1 << 3, PROPERTY_NOTIFY = 1 << 4, PROPERTY_INDICATE = 1 << 5, PROPERTY_AUTHENTICATED_SIGNED_WRITES = 1 << 6, PROPERTY_EXTENDED_PROPERTIES = 1 << 7, PROPERTY_RELIABLE_WRITE = 1 << 8, PROPERTY_WRITABLE_AUXILIARIES = 1 << 9 }; typedef uint32 Properties; // Values representing read, write, and encryption permissions for a // characteristic's value. While attribute permissions for all GATT // definitions have been set by the Bluetooth specification, characteristic // value permissions are left up to the higher-level profile. // // Attribute permissions are distinct from the characteristic properties. For // example, a characteristic may have the property |PROPERTY_READ| to make // clients know that it is possible to read the characteristic value and have // the permission |PERMISSION_READ_ENCRYPTED| to require a secure connection. // It is up to the application to properly specify the permissions and // properties for a local characteristic. enum Permission { PERMISSION_NONE = 0, PERMISSION_READ = 1 << 0, PERMISSION_WRITE = 1 << 1, PERMISSION_READ_ENCRYPTED = 1 << 2, PERMISSION_WRITE_ENCRYPTED = 1 << 3 }; typedef uint32 Permissions; // The ErrorCallback is used by methods to asynchronously report errors. typedef base::Callback<void(BluetoothGattService::GattErrorCode)> ErrorCallback; // The ValueCallback is used to return the value of a remote characteristic // upon a read request. typedef base::Callback<void(const std::vector<uint8>&)> ValueCallback; // The NotifySessionCallback is used to return sessions after they have // been successfully started. typedef base::Callback<void(scoped_ptr<BluetoothGattNotifySession>)> NotifySessionCallback; // Constructs a BluetoothGattCharacteristic that can be associated with a // local GATT service when the adapter is in the peripheral role. To // associate the returned characteristic with a service, add it to a local // service by calling BluetoothGattService::AddCharacteristic. // // This method constructs a characteristic with UUID |uuid|, initial cached // value |value|, properties |properties|, and permissions |permissions|. // |value| will be cached and returned for read requests and automatically set // for write requests by default, unless an instance of // BluetoothGattService::Delegate has been provided to the associated // BluetoothGattService instance, in which case the delegate will handle read // and write requests. // // NOTE: Don't explicitly set |PROPERTY_EXTENDED_PROPERTIES| in |properties|. // Instead, create and add a BluetoothGattDescriptor that represents the // "Characteristic Extended Properties" descriptor and this will automatically // set the correspoding bit in the characteristic's properties field. If // |properties| has |PROPERTY_EXTENDED_PROPERTIES| set, it will be ignored. static BluetoothGattCharacteristic* Create(const BluetoothUUID& uuid, const std::vector<uint8>& value, Properties properties, Permissions permissions); // Identifier used to uniquely identify a GATT characteristic object. This is // different from the characteristic UUID: while multiple characteristics with // the same UUID can exist on a Bluetooth device, the identifier returned from // this method is unique among all characteristics on the adapter. The // contents of the identifier are platform specific. virtual std::string GetIdentifier() const = 0; // The Bluetooth-specific UUID of the characteristic. virtual BluetoothUUID GetUUID() const = 0; // Returns true, if this characteristic is hosted locally. If false, then this // instance represents a remote GATT characteristic. virtual bool IsLocal() const = 0; // Returns the value of the characteristic. For remote characteristics, this // is the most recently cached value. For local characteristics, this is the // most recently updated value or the value retrieved from the delegate. virtual const std::vector<uint8>& GetValue() const = 0; // Returns a pointer to the GATT service this characteristic belongs to. virtual BluetoothGattService* GetService() const = 0; // Returns the bitmask of characteristic properties. virtual Properties GetProperties() const = 0; // Returns the bitmask of characteristic attribute permissions. virtual Permissions GetPermissions() const = 0; // Returns whether or not this characteristic is currently sending value // updates in the form of a notification or indication. virtual bool IsNotifying() const = 0; // Returns the list of GATT characteristic descriptors that provide more // information about this characteristic. virtual std::vector<BluetoothGattDescriptor*> GetDescriptors() const = 0; // Returns the GATT characteristic descriptor with identifier |identifier| if // it belongs to this GATT characteristic. virtual BluetoothGattDescriptor* GetDescriptor( const std::string& identifier) const = 0; // Adds a characteristic descriptor to the locally hosted characteristic // represented by this instance. This method only makes sense for local // characteristics and won't have an effect if this instance represents a // remote GATT service and will return false. This method takes ownership // of |descriptor|. virtual bool AddDescriptor(BluetoothGattDescriptor* descriptor) = 0; // For locally hosted characteristics, updates the characteristic's value. // This will update the value that is visible to remote devices and send out // any notifications and indications that have been configured. This method // can be used in place of, and in conjunction with, // BluetoothGattService::Delegate methods to send updates to remote devices, // or simply to set update the cached value for read requests without having // to implement the delegate methods. // // This method only makes sense for local characteristics and does nothing and // returns false if this instance represents a remote characteristic. virtual bool UpdateValue(const std::vector<uint8>& value) = 0; // Starts a notify session for the remote characteristic, if it supports // notifications/indications. On success, the characteristic starts sending // value notifications and |callback| is called with a session object whose // ownership belongs to the caller. |error_callback| is called on errors. virtual void StartNotifySession(const NotifySessionCallback& callback, const ErrorCallback& error_callback) = 0; // Sends a read request to a remote characteristic to read its value. // |callback| is called to return the read value on success and // |error_callback| is called for failures. virtual void ReadRemoteCharacteristic( const ValueCallback& callback, const ErrorCallback& error_callback) = 0; // Sends a write request to a remote characteristic, to modify the // characteristic's value with the new value |new_value|. |callback| is // called to signal success and |error_callback| for failures. This method // only applies to remote characteristics and will fail for those that are // locally hosted. virtual void WriteRemoteCharacteristic( const std::vector<uint8>& new_value, const base::Closure& callback, const ErrorCallback& error_callback) = 0; protected: BluetoothGattCharacteristic(); virtual ~BluetoothGattCharacteristic(); private: DISALLOW_COPY_AND_ASSIGN(BluetoothGattCharacteristic); }; } // namespace device #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_CHARACTERISTIC_H_
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
72f16e3a11eddade9c100d5512f9c48a4aa0e299
fcb2be49eabe8d3490b859f20823f9444ed12efd
/correcion3.cpp
00042ef15fd7c57ee98937e88c6546135aa4382a
[]
no_license
Xime1994/ProyLPEquipo9
32245add6df51f72314dee237b179435660ae54d
7798fb5ae485f7990fa3376eb38b160cbb5347eb
refs/heads/master
2016-09-06T06:07:03.730259
2014-07-11T03:38:20
2014-07-11T03:38:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,837
cpp
# include <stdio.h> # include <conio.h> # include <stdlib.h> # include <iostream.h> # include <time.h> // crear el archivo struct fecha{ //STRUCT char anio[5]; char mes[4]; char dia[4]; char hora[4]; char min[4]; }; struct datos{ char evento[20]; char desc[50]; fecha fechai, fechaf; } registro; datos eventos[20]; int main(int argc,char* argv[]) { int anioactual, mesactual, diactual,horactual,minactual; int cr=0; int a,op; time_t tiempo = time(0); struct tm *tlocal = localtime(&tiempo); anioactual = tlocal->tm_year + 1900; mesactual = tlocal->tm_mon + 1; diactual = tlocal->tm_mday; horactual = tlocal->tm_hour; minactual = tlocal->tm_min; do { printf("\n ESCUELA SUPERIOR POLITECNICA DE CHIMBORAZO "); printf("\n MI AGENDA"); printf("\n ESCUELA DE INFORMATICA Y ELECTRONICA "); printf("\n INGENIERIA EN TELECOMUNICACIONES Y REDES "); printf("\n\n\n MENU: "); printf("\n\n 1. INGRESE NUEVO EVENTO "); printf("\n\n 2. VER MIS EVENTOS PARA HOY"); printf("\n\n 3. VER MIS EVENTOS TODA LA SEMANA"); printf("\n\n 4. SALIR"); printf("\n\n INGRESE SU OPCION: "); cin>>a; switch(a) { case 1: { cr++; puts("\n INGRESE EL EVENTO: "); gets(registro.evento); puts("\n INGRESE LA DESCRIPCION: "); gets(registro.desc); puts("\n\n\n INGRESE LA FECHA DE INICIO: "); puts("\n INGRESE EL ANIO: "); gets(registro.fechai.anio); puts("\n INGRESE EL MES: "); gets(registro.fechai.mes); puts("\n INGRESE EL DIA: "); gets(registro.fechai.dia); puts("\n INGRESE LA HORA: "); gets(registro.fechai.hora); puts("\n INGRESE LOS MINUTOS: "); gets(registro.fechai.min); puts("\n\n \n INGRESE LA FECHA DE FINALIZACION: "); puts("\n\ INGRESE EL ANIO: "); gets(registro.fechaf.anio); puts("\n INGRESE EL MES: "); gets(registro.fechai.mes); puts("\n INGRESE EL DIA: "); gets(registro.fechaf.dia); puts("\n INGRESE LA HORA: "); gets(registro.fechaf.hora); puts("\n INGRESE LOS MINUTOS: "); gets(registro.fechaf.min); eventos[cr]=registro; // abri el archivo break; } case 2: { int i; int anioreg = atoi(registro.fechai.anio); int mesreg = atoi(registro.fechai.mes); int diareg = atoi(registro.fechai.dia); int horareg = atoi(registro.fechai.hora); int minreg = atoi(registro.fechai.min); for ( i=1;i<=cr;i++) { if((anioreg == anioactual)&&(mesreg == mesactual)&&(diareg == diactual)) { registro=eventos[i]; puts("\n\n EVENTO: "); puts(registro.evento); puts("\n\n DESCRIPCION: "); puts(registro.desc); puts("\n\n DESDE: "); puts(registro.fechai.anio); puts(registro.fechai.mes); puts(registro.fechai.dia); puts(registro.fechai.hora); puts(registro.fechai.min); puts("\n\n HASTA:"); puts(registro.fechaf.anio); puts(registro.fechaf.mes); puts(registro.fechaf.dia); puts(registro.fechaf.hora); puts(registro.fechaf.min); getch(); } } printf("\n \n QUIERE REGRESAR AL PRIMER MENU: "); scanf("%d",&op); break; } case 3:{ int regular[]={ 0,3,3,6,1,4,6,2,5,0,3,5}; int bisiesto[]={0,3,4,0,2,5,0,3,6,1,4,6}; int result1, result2, result3, result4, result5,d,d1,i,anioreg,mesreg,diareg; int m = mesactual; if((anioactual%4==0)&& ! (anioactual%100==0)) { m=bisiesto[m-1]; } else if (anioactual%400==0) { m=bisiesto[m-1]; } else { m=regular[m-1]; } result1=(anioactual-1)%7; result2=(anioactual-1)/4; result3=(3*(((anioactual-1)/100)+1))/4; result4=(result2-result3)%7; result5=diactual%7; d=((result1+result4+m+result5)%7)+1; d1=diactual-(d-1); for(i= d1; i<=diactual;i++) { if((anioreg == anioactual)&&(mesreg == mesactual)&&(diareg == diactual)) { registro=eventos[i]; puts("\n\n EVENTO"); puts(registro.evento); puts("\n\n DESCRIPCION"); puts(registro.desc); puts("\n\n DESDE"); puts(registro.fechai.anio); puts(registro.fechai.mes); puts(registro.fechai.dia); puts(registro.fechai.hora); puts(registro.fechai.min); puts("\n\n HASTA"); puts(registro.fechaf.anio); puts(registro.fechaf.mes); puts(registro.fechaf.dia); puts(registro.fechaf.hora); puts(registro.fechaf.min); getch(); } } getch(); break; } } } while(a == 1); printf("\n \n QUIERE REGRESAR AL PRIMER MENU: "); scanf("%d",&op); getch(); }
[ "bbarragan95@yhoo.com" ]
bbarragan95@yhoo.com
95410105d414b23b0d1c544f595227415e02d797
03f97c2af0830e5806b652c059b7a5c838c46e58
/cut-the-sticks/cpp/anta0.cpp
407adbdc54813d7167b05825909cd3e9d7b66127
[]
no_license
saketrule/hackerrank_top_solutions_dataset
28f2539bfce14b6f7ddf6364c23cd00ca61681eb
12699befcaf1ebd727c66104b1d5715ef58573b3
refs/heads/master
2020-05-22T18:35:48.609982
2017-03-31T14:38:42
2017-03-31T14:38:42
84,714,263
0
0
null
null
null
null
UTF-8
C++
false
false
1,557
cpp
#define _CRT_SECURE_NO_WARNINGS #include <string> #include <vector> #include <algorithm> #include <numeric> #include <set> #include <map> #include <queue> #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <ctime> #include <cstring> #include <cctype> #include <cassert> #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) #if defined(_MSC_VER) || __cplusplus > 199711L #define aut(r,v) auto r = (v) #else #define aut(r,v) typeof(v) r = (v) #endif #define each(it,o) for(aut(it, (o).begin()); it != (o).end(); ++ it) #define all(o) (o).begin(), (o).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset(m,v,sizeof(m)) #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3fLL using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef vector<pair<int,int> > vpii; typedef long long ll; typedef vector<long long> vl; typedef pair<long long,long long> pll; typedef vector<pair<long long,long long> > vpll; typedef vector<string> vs; typedef long double ld; template<typename T, typename U> inline void amin(T &x, U y) { if(y < x) x = y; } template<typename T, typename U> inline void amax(T &x, U y) { if(x < y) x = y; } int a[1000]; int main() { int N; scanf("%d", &N); rep(i, N) scanf("%d", &a[i]); sort(a, a+N); for(int i = 0; i < N; ) { printf("%d\n", N - i); int j = i+1; while(j < N && a[i] == a[j]) j ++; i = j; } return 0; }
[ "anonymoussaketjoshi@gmail.com" ]
anonymoussaketjoshi@gmail.com
cfa83694ae2d730222bc33445310b0aae838d37b
5fa44295f716c5ef7d8c5ab5eba8ecdb05d689f2
/traj/atom.h
36f9cdb7a59170fc1e7b75bb3bfb0483d8015980
[]
no_license
Xiangyan93/MD_Analysis
aadd1e1766e9486681b2326d31c1ebdb27813f95
1e06a1b5c082372b24b0993893124b45066844b3
refs/heads/master
2023-05-26T05:39:56.382677
2023-05-21T21:52:44
2023-05-21T21:52:44
217,556,812
1
0
null
null
null
null
UTF-8
C++
false
false
537
h
#ifndef Atom_h #define Atom_h #include "elements.h" class Atom{ public: Atom(); Atom(const Vector x_, const Vector v_, const string name_); Vector x; Vector v; double mass; string name; private: unsigned int atomic_number; }; Atom::Atom(){ x[0] = x[1] = x[2] =0.; v[0] = v[1] = v[2] =0.; mass = 0.; } Atom::Atom(const Vector x_, const Vector v_, const string name_){ x = x_; v = v_; name = name_; mass = name2mass(name); atomic_number = name2atomic_number(name); } #endif
[ "hnxxxy123@sjtu.edu.cn" ]
hnxxxy123@sjtu.edu.cn
324471f03ee2b25f788aa7eef71cad26b5185671
fe93ba244d637aa6ae9716c67cc80b0c3b7e7eab
/client/include/systems/NetworkSystem.hpp
cf1217ab6c3f61adf77701b9cf6e0346ecb9624a
[]
no_license
Pywwo/rtype
1d2ad47e2caa950b7f844416b92816644dbab341
d12260798d9889aa189aaae4024f77360a9048ff
refs/heads/master
2021-01-09T14:09:54.871199
2020-02-22T11:38:22
2020-02-22T11:38:22
242,329,815
0
0
null
null
null
null
UTF-8
C++
false
false
5,873
hpp
/* Created by Romain FOUYER on 20/11/2019 at 16:24. */ #ifndef RTYPE_NETWORKSYSTEM_HPP #define RTYPE_NETWORKSYSTEM_HPP #include <SFML/Network.hpp> #include "systems/System.hpp" #include "Datagram.hpp" #include "RtypeException.hpp" #include "RtypeDatagram.hpp" namespace rtype { namespace systems { /*! * @class Network System * @brief System to handle network communication */ class NetworkSystem : public ecs::systems::System { public: explicit NetworkSystem(const std::string &name = "Network System"); NetworkSystem(const NetworkSystem &other) = delete; NetworkSystem &operator=(const NetworkSystem &rhs) = delete; void onInit() override; void onUpdate(float elapsedTime) override; void onClose() override; /*! * Get the current server address * * @return the sf::IpAddress */ sf::IpAddress &getServerAddress(); /*! * Get the udp socket * * @return the udp socket */ sf::UdpSocket &getUdpSocket(); /*! * Set a new ip address to the network system * * @param newIpAddress the new ip address */ void setNewIpAddress(const std::string &newIpAddress); /*! * Set a new port to send to the network system * * @param newPort the new port */ void setSenderPort(unsigned int newPort); /*! * Return the port where datas are send port of the network system * * @return the port where datas are send port */ [[nodiscard]] unsigned int getSenderPort() const; /*! * Return the binded port of the network system * * @return the binded port */ [[nodiscard]] unsigned int getReceivePort() const; /*! * Set a new port to receive datas to the network system * * @param newPort the new port */ void setReceivePort(unsigned int newPort); /*! * Bind the socket to the receivePort port * */ void bind(); /*! * Send a datagram packet to the server * * @param toSend A datagram to send */ void send(const rtype::network::Datagram &toSend); /*! * Receive datas. Return empty datagram if no datas or socket non-ready, otherwise a datagram filled with the received datas * * @return a datagram */ rtype::network::Datagram receive(); /*! * Unbind receivePort. Make the port available */ void unbind(); /*! * Get the user id * @return the user id */ [[nodiscard]] uint64_t getUserId() const; /*! * Set a new user id * @param newUserId */ void setUserId(uint64_t newUserId); /*! * Get the current lobby id * @return the current lobby id */ [[nodiscard]] uint64_t getLobbyId() const; /*! * set a new lobby id * @param newLobbyId */ void setLobbyId(uint64_t newLobbyId); private: /*! * @brief function to handle fetch lobbies * @param datagram contains all informations about fetch lobbies */ void handleFetchLobbies(rtype::network::RtypeDatagram &datagram); /*! * @brief function to get lobby info * @param datagram contains all informations about the lobby info */ void handleLobbyInfo(rtype::network::RtypeDatagram &datagram); /*! * @brief function to handle start game * @param datagram contains all informations for start the game */ void handleStartGame(rtype::network::RtypeDatagram &datagram); /*! * @brief function to update components * @param datagram contains all informations about the components to update */ void handleUpdateComponents(rtype::network::RtypeDatagram &datagram); /*! * @brief function to delete player component * @param datagram contains all informations about the components to delete */ void handleDeletePlayer(rtype::network::RtypeDatagram &datagram); /*! * @brief Function to handle the end of the game * @param datagram contains information about the end of the game */ void handleEndGame(rtype::network::RtypeDatagram &datagram); /*! * @brief function who handles the spawn of enemy * @param datagram contains all information about the monster who just spawned */ void handleSpawnEnemy(rtype::network::RtypeDatagram &datagram); private: sf::IpAddress _serverAddr; /*!< contain all hostInfo about the server */ sf::UdpSocket _socket; /*!< udpSocket to communicate with the server */ unsigned short _receivePort; /*!< port for receive packet */ unsigned short _sendPort; /*!< port for send packet */ uint64_t _uuid; /*!< uid for the userId */ uint64_t _lobbyId; /*!< contain lobbyId */ }; } } #endif //RTYPE_NETWORKSYSTEM_HPP
[ "Pywwo@localhost.localdomain" ]
Pywwo@localhost.localdomain
0f890c378fb85b81fb765e9d9f9eed56fa5bc380
d88ec6e16cfd248b9847f88ee90ae84d2a5e5c39
/orderStatistics5.cpp
28f1732d57a963e1fac51ef8bba673b3bbe01e71
[]
no_license
huuhung99/C-PTIT
6ff388189fcade1d7b871119f849a77596622024
726dee5e7ed7ed58ffe0f86f33d775daaec7f106
refs/heads/master
2023-06-26T21:16:07.036590
2021-07-22T04:16:44
2021-07-22T04:16:44
352,688,920
0
0
null
null
null
null
UTF-8
C++
false
false
295
cpp
#include<bits/stdc++.h> using namespace std; int t; int main(){ cin>>t; while(t--){ int n;cin>>n; int a[n]; int max=-1; for(int i=0;i<n;i++)cin>>a[i]; for(int i=0;i<n-1;i++){ for(int j=i+1;j<n;j++){ if(a[j]-a[i]>max) max=a[j]-a[i]; } } cout<<max<<endl; } return 0; }
[ "bacxuan2005@gmail.com" ]
bacxuan2005@gmail.com
6046bab2d7d1817a82f3b7f31d379e94160059c6
2ef88440b307c35bf85d1baec64be9d7e90c8007
/远控/LDCS/LDCS.h
f8194cc87542b829779bee8c36dafdd27eec07c5
[]
no_license
cr09philip/MyCrThings
5f8e8ca08cbb8e790b96d04bd4777a3c14ede083
7d67c4592f6088ad95de9dd05fb4db48dd58f3bc
refs/heads/master
2020-05-17T21:52:43.246288
2013-04-13T13:09:48
2013-04-13T13:09:48
9,413,674
1
0
null
null
null
null
UTF-8
C++
false
false
1,285
h
// LDCS.h : main header file for the LDCS application // #if !defined(AFX_LDCS_H__1473A1B9_5698_43A2_B9C7_5A26FF8B95D6__INCLUDED_) #define AFX_LDCS_H__1473A1B9_5698_43A2_B9C7_5A26FF8B95D6__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols ///////////////////////////////////////////////////////////////////////////// // CLDCSApp: // See LDCS.cpp for the implementation of this class // class CLDCSApp : public CWinApp { public: CLDCSApp(); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CLDCSApp) public: virtual BOOL InitInstance(); //}}AFX_VIRTUAL // Implementation //{{AFX_MSG(CLDCSApp) afx_msg void OnAppAbout(); // NOTE - the ClassWizard will add and remove member functions here. // DO NOT EDIT what you see in these blocks of generated code ! //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_LDCS_H__1473A1B9_5698_43A2_B9C7_5A26FF8B95D6__INCLUDED_)
[ "xunleifei@126.com" ]
xunleifei@126.com