blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
a93a46f913e8f04be6be50b40adaeb5dcfa644e7
3c9d8787d9dd84b5402097c1331add04bc7a7f94
/16.02.1 Sorting - Quick Sort Pivot in beginning.cpp
9bc7415799892a208ea6639774632be0f6769d9e
[]
no_license
AbhishekPratik1810/my_cpp_dsa_practice
bfc6df01dc2412b39056b5d49791a0ccf105d19a
37e465cf15d162dfaf535fdcf780d5d5225a8575
refs/heads/master
2022-12-09T03:24:24.220974
2020-09-15T17:50:33
2020-09-15T17:50:33
295,805,408
0
0
null
null
null
null
UTF-8
C++
false
false
1,152
cpp
16.02.1 Sorting - Quick Sort Pivot in beginning.cpp
#include<iostream> using namespace std; void quickSort(int* arr, int start, int end){ if(start>=end) return; int left=start+1, right = end, pivot=start; while(left<=right){ if(arr[left]>arr[pivot] && arr[right]<arr[pivot]) swap(arr[left++],arr[right--]); if(arr[left]<=arr[pivot]) left++; if(arr[right]>=arr[pivot]) right--; } swap(arr[pivot],arr[right]); //We want to swap, and the incoming element MUST BE smaller than pivot as, it is swapped in starting position, and partition property has to be maintained //We know, that right>left => right is currently in that part of the array which is smaller than pivot element //Hence swap right with pivot quickSort(arr,start,right-1); quickSort(arr,right+1,end); } int main(){ int n; cin>>n; int* arr = new int[n]; for(int i=0;i<n;i++) cin>>arr[i]; quickSort(arr,0,n-1); for(int i=0;i<n;i++) cout<<arr[i]<<" "; cout<<endl; }
3ed21498a635fdb629997368bb3d6d26bacdc31a
5149c1adcd54bbd67552b9ce8c3beb183056d49d
/mysqlx_node_column_result.cc
7378e83e6fbe93963aeb4180bf3b26a9559ba2c8
[ "PHP-3.01" ]
permissive
tony2001/pecl-database-mysql_xdevapi
9d833e75dd76dcc68e1951987a70f7ddd63e1b41
a3117a72df19e24919cef22029fef9a59caf14c3
refs/heads/master
2021-01-25T11:56:46.517361
2018-01-17T20:41:04
2018-01-17T20:41:04
123,440,450
0
0
null
2018-03-01T13:45:16
2018-03-01T13:45:16
null
UTF-8
C++
false
false
18,651
cc
mysqlx_node_column_result.cc
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 2006-2018 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Filip Janiszewski <fjanisze@php.net> | +----------------------------------------------------------------------+ */ #include "php_api.h" extern "C" { #include <ext/mysqlnd/mysqlnd.h> #include <ext/mysqlnd/mysqlnd_debug.h> #include <ext/mysqlnd/mysqlnd_alloc.h> #include <ext/mysqlnd/mysqlnd_structs.h> } #include "xmysqlnd/xmysqlnd.h" #include "xmysqlnd/xmysqlnd_node_stmt.h" #include "xmysqlnd/xmysqlnd_node_stmt_result.h" #include "xmysqlnd/xmysqlnd_node_stmt_result_meta.h" #include "xmysqlnd/xmysqlnd_rowset.h" #include "xmysqlnd/xmysqlnd_rowset_buffered.h" #include "xmysqlnd/xmysqlnd_rowset_fwd.h" #include "xmysqlnd/xmysqlnd_warning_list.h" #include "xmysqlnd/xmysqlnd_stmt_execution_state.h" #include "php_mysqlx.h" #include "mysqlx_class_properties.h" #include "mysqlx_enum_n_def.h" #include "mysqlx_warning.h" #include "mysqlx_node_row_result_iterator.h" #include "mysqlx_node_row_result.h" #include "mysqlx_node_base_result.h" #include "mysqlx_field_metadata.h" #include "mysqlx_node_column_result.h" #include "mysqlx_exception.h" #include "util/allocator.h" #include "util/object.h" #include <limits> namespace mysqlx { namespace devapi { namespace { using namespace drv; enum column_metadata_content_type { CT_PLAIN = 0x0000, CT_GEOMETRY = 0x0001, CT_JSON = 0x0002, CT_XML = 0x0003 }; enum column_metadata_flags { UINT_ZEROFILL = 0x0001, // UINT zerofill DOUBLE_UNSIGNED = 0x0001, // DOUBLE = 0x0001 unsigned FLOAT_UNSIGNED = 0x0001, // FLOAT = 0x0001 unsigned DECIMAL_UNSIGNED = 0x0001, // DECIMAL = 0x0001 unsigned ALL_UNSIGNED = 0x0001, BYTES_RIGHTPAD = 0x0001, // BYTES = 0x0001 rightpad DATETIME_TIMESTAMP = 0x0001, // DATETIME = 0x0001 timestamp NOT_NULL = 0x0010, PRIMARY_KEY = 0x0020, UNIQUE_KEY = 0x0040, MULTIPLE_KEY = 0x0080, AUTO_INCREMENT = 0x0100 }; static zend_class_entry *mysqlx_node_column_result_class_entry; ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_schema_name, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_table_name, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_table_label, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_column_name, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_column_label, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_length, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_fractional_digits, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_is_number_signed, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_collation_name, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_character_set_name, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_get_type, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mysqlx_node_column_result_is_padded, 0, ZEND_RETURN_VALUE, 0) ZEND_END_ARG_INFO() #define MYSQLX_FETCH_NODE_COLUMN_RESULT_FROM_ZVAL(_to, _from) \ { \ const st_mysqlx_object* const mysqlx_object = Z_MYSQLX_P((_from)); \ (_to) = (st_mysqlx_node_column_result*) mysqlx_object->ptr; \ if (!(_to)) { \ php_error_docref(nullptr, E_WARNING, "invalid object of class %s", ZSTR_VAL(mysqlx_object->zo.ce->name)); \ RETVAL_NULL(); \ DBG_VOID_RETURN; \ } \ } \ /* {{{ mysqlx_node_column_result::__construct */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, __construct) { } /* }}} */ typedef enum { schema_name, table_name, table_label, column_name, column_label, type, length, fractional_digit, is_number_signed, collation_name, characterset_name, is_padded } meta_fields; static uint64_t int_type_mappings[] = { 0,0,0, FIELD_TYPE_TINY, //3 FIELD_TYPE_TINY, //4 FIELD_TYPE_SMALLINT,//5 FIELD_TYPE_SMALLINT,//6 0, FIELD_TYPE_MEDIUMINT,//8 FIELD_TYPE_MEDIUMINT,//9 FIELD_TYPE_INT,//10 FIELD_TYPE_INT//11 }; /* {{{ get_column_meta_field */ static uint64_t get_column_type(const st_xmysqlnd_result_field_meta* const meta) { switch(meta->type) { case XMYSQLND_TYPE_SIGNED_INT: case XMYSQLND_TYPE_UNSIGNED_INT: { if(meta->length <= 11) return int_type_mappings[meta->length]; return FIELD_TYPE_BIGINT; } break; case XMYSQLND_TYPE_FLOAT: return FIELD_TYPE_FLOAT; case XMYSQLND_TYPE_DOUBLE: return FIELD_TYPE_DOUBLE; case XMYSQLND_TYPE_DECIMAL: return FIELD_TYPE_DECIMAL; case XMYSQLND_TYPE_BYTES: { if(meta->content_type == CT_JSON) return FIELD_TYPE_JSON; else if(meta->content_type == CT_GEOMETRY) return FIELD_TYPE_GEOMETRY; const st_mysqlnd_charset * set = mysqlnd_find_charset_nr(meta->collation); if (set == nullptr) { RAISE_EXCEPTION(10001,"Unable to extract metadata"); } else if (std::strcmp(set->collation, "binary")) { return FIELD_TYPE_BYTES; } else { return FIELD_TYPE_STRING; } } break; case XMYSQLND_TYPE_TIME: return FIELD_TYPE_TIME; case XMYSQLND_TYPE_DATETIME: { if(meta->length == 10) return FIELD_TYPE_DATE; else if(meta->length == 19 && !(meta->flags_set && meta->flags & DATETIME_TIMESTAMP)) return FIELD_TYPE_DATETIME; else return FIELD_TYPE_TIMESTAMP; } break; case XMYSQLND_TYPE_SET: return FIELD_TYPE_SET; case XMYSQLND_TYPE_ENUM: return FIELD_TYPE_ENUM; case XMYSQLND_TYPE_BIT: return FIELD_TYPE_BIT; case XMYSQLND_TYPE_NONE: default: RAISE_EXCEPTION(err_msg_meta_fail); break; } } /* }}} */ /* {{{ get_column_meta_field */ static zend_bool is_type_signed(const st_xmysqlnd_result_field_meta* const meta) { zend_bool is_signed{FALSE}; switch(meta->type) { case XMYSQLND_TYPE_SIGNED_INT: is_signed = TRUE; break; case XMYSQLND_TYPE_FLOAT: case XMYSQLND_TYPE_DOUBLE: case XMYSQLND_TYPE_DECIMAL: { if(! (meta->flags_set && meta->flags & ALL_UNSIGNED) ) { is_signed = TRUE; } } break; default: break; } return is_signed; } /* }}} */ namespace { /* {{{ get_column_length */ void get_column_length(zval* return_value, std::uint32_t length) { #if SIZEOF_ZEND_LONG==4 if (std::numeric_limits<zend_long>::max() < length) { ZVAL_DOUBLE(return_value, length); } else #endif /* #if SIZEOF_LONG==4 */ { ZVAL_LONG(return_value, length); } } /* }}} */ } // anonymous namespace /* {{{ get_column_meta_field */ static void get_column_meta_field(INTERNAL_FUNCTION_PARAMETERS, meta_fields selected_meta_field) { zval * object_zv; st_mysqlx_node_column_result* object; DBG_ENTER("get_column_meta_field"); if (FAILURE == zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "O", &object_zv, mysqlx_node_column_result_class_entry)) { DBG_VOID_RETURN; } MYSQLX_FETCH_NODE_COLUMN_RESULT_FROM_ZVAL(object, object_zv); RETVAL_FALSE; if (object->meta) { switch(selected_meta_field) { case schema_name: ZVAL_STRINGL(return_value,object->meta->schema.s, object->meta->schema.l); break; case table_name: ZVAL_STRINGL(return_value,object->meta->original_table.s, object->meta->original_table.l); break; case table_label: ZVAL_STRINGL(return_value,object->meta->table.s, object->meta->table.l); break; case column_name: ZVAL_STRINGL(return_value,object->meta->original_name.s, object->meta->original_name.l); break; case column_label: ZVAL_STRINGL(return_value,object->meta->name.s, object->meta->name.l); break; case type: ZVAL_LONG(return_value,get_column_type(object->meta)); break; case length: get_column_length(return_value, object->meta->length); break; case fractional_digit: ZVAL_LONG(return_value,object->meta->fractional_digits); break; case is_number_signed: ZVAL_LONG(return_value,is_type_signed(object->meta)); break; case collation_name: case characterset_name: { const st_mysqlnd_charset* set = mysqlnd_find_charset_nr(object->meta->collation); if( set != nullptr && set->collation != nullptr ) { if( selected_meta_field == collation_name ) { ZVAL_STRINGL(return_value, set->collation, strlen(set->collation)); } else { ZVAL_STRINGL(return_value, set->name, strlen(set->name)); } } else { ZVAL_NULL(return_value); } } break; case is_padded: { zend_bool is_padded{FALSE}; if( object->meta->type == XMYSQLND_TYPE_BYTES && (object->meta->flags_set && object->meta->flags & BYTES_RIGHTPAD)) { is_padded = TRUE; } ZVAL_LONG(return_value,is_padded); } break; default: RAISE_EXCEPTION(err_msg_meta_fail); break; } } else { RAISE_EXCEPTION(err_msg_meta_fail); } DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getSchemaName */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getSchemaName) { DBG_ENTER("mysqlx_node_column_result::getSchemaName"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, schema_name); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getTableName */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getTableName) { DBG_ENTER("mysqlx_node_column_result::getTableName"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, table_name); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getTableLabel */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getTableLabel) { DBG_ENTER("mysqlx_node_column_result::getTableLabel"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, table_label); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getColumnName */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getColumnName) { DBG_ENTER("mysqlx_node_column_result::getColumnName"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, column_name); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getColumnLabel */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getColumnLabel) { DBG_ENTER("mysqlx_node_column_result::getColumnLabel"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, column_label); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getLength */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getLength) { DBG_ENTER("mysqlx_node_column_result::getLength"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, length); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getFractionalDigits */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getFractionalDigits) { DBG_ENTER("mysqlx_node_column_result::getFractionalDigits"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, fractional_digit); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::isNumberSigned */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, isNumberSigned) { DBG_ENTER("mysqlx_node_column_result::isNumberSigned"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, is_number_signed); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getCollationName */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getCollationName) { DBG_ENTER("mysqlx_node_column_result::getCollationName"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, collation_name); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getCharacterSetName */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getCharacterSetName) { DBG_ENTER("mysqlx_node_column_result::getCharacterSetName"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, characterset_name); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::getType */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, getType) { DBG_ENTER("mysqlx_node_column_result::getType"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, type); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_result::isPadded */ MYSQL_XDEVAPI_PHP_METHOD(mysqlx_node_column_result, isPadded) { DBG_ENTER("mysqlx_node_column_result::isPadded"); get_column_meta_field(INTERNAL_FUNCTION_PARAM_PASSTHRU, is_padded); DBG_VOID_RETURN; } /* }}} */ /* {{{ mysqlx_node_column_methods[] */ static const zend_function_entry mysqlx_node_column_result_methods[] = { PHP_ME(mysqlx_node_column_result, __construct, nullptr, ZEND_ACC_PRIVATE) PHP_ME(mysqlx_node_column_result, getSchemaName, arginfo_mysqlx_node_column_result_get_schema_name, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getTableName, arginfo_mysqlx_node_column_result_get_table_name, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getTableLabel, arginfo_mysqlx_node_column_result_get_table_label, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getColumnName, arginfo_mysqlx_node_column_result_get_column_name, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getColumnLabel, arginfo_mysqlx_node_column_result_get_column_label, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getLength, arginfo_mysqlx_node_column_result_get_length, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getFractionalDigits, arginfo_mysqlx_node_column_result_get_fractional_digits, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, isNumberSigned, arginfo_mysqlx_node_column_result_is_number_signed, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getCollationName, arginfo_mysqlx_node_column_result_get_collation_name, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getCharacterSetName, arginfo_mysqlx_node_column_result_get_character_set_name, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, getType, arginfo_mysqlx_node_column_result_get_type, ZEND_ACC_PUBLIC) PHP_ME(mysqlx_node_column_result, isPadded, arginfo_mysqlx_node_column_result_is_padded, ZEND_ACC_PUBLIC) {nullptr, nullptr, nullptr} }; /* }}} */ static zend_object_handlers mysqlx_object_node_column_result_handlers; static HashTable mysqlx_node_column_result_properties; const struct st_mysqlx_property_entry mysqlx_node_column_result_property_entries[] = { {{nullptr, 0}, nullptr, nullptr} }; } // anonymous namespace /* {{{ mysqlx_new_column_result */ void mysqlx_new_column_result( zval * return_value, const st_xmysqlnd_result_field_meta * meta) { DBG_ENTER("mysqlx_new_column"); if (SUCCESS == object_init_ex(return_value, mysqlx_node_column_result_class_entry) && IS_OBJECT == Z_TYPE_P(return_value)) { const st_mysqlx_object* const mysqlx_object = Z_MYSQLX_P(return_value); st_mysqlx_node_column_result* const object = (st_mysqlx_node_column_result*) mysqlx_object->ptr; if (object) { object->meta = meta; } else { php_error_docref(nullptr, E_WARNING, "invalid object of class %s", ZSTR_VAL(mysqlx_object->zo.ce->name)); zval_ptr_dtor(return_value); ZVAL_NULL(return_value); } } DBG_VOID_RETURN; } /* }}} */ /* {{{ php_mysqlx_column_result_object_allocator */ static zend_object * php_mysqlx_column_result_object_allocator(zend_class_entry * class_type) { DBG_ENTER("php_mysqlx_column_result_object_allocator"); st_mysqlx_object* mysqlx_object = util::alloc_object<st_mysqlx_node_column_result>( class_type, &mysqlx_object_node_column_result_handlers, &mysqlx_node_column_result_properties); DBG_RETURN(&mysqlx_object->zo); } /* }}} */ /* {{{ mysqlx_node_column_result_free_storage */ static void mysqlx_node_column_result_free_storage(zend_object * object) { st_mysqlx_object* mysqlx_object = mysqlx_fetch_object_from_zo(object); st_mysqlx_node_column_result* inner_obj = ( st_mysqlx_node_column_result* ) mysqlx_object->ptr; if (inner_obj) { //Do not delete meta, that's someone else responsability inner_obj->meta = nullptr; mnd_efree(inner_obj); } mysqlx_object_free_storage(object); } /* }}} */ /* {{{ mysqlx_register_column_result_class */ void mysqlx_register_node_column_result_class(INIT_FUNC_ARGS, zend_object_handlers * mysqlx_std_object_handlers) { mysqlx_object_node_column_result_handlers = *mysqlx_std_object_handlers; mysqlx_object_node_column_result_handlers.free_obj = mysqlx_node_column_result_free_storage; { zend_class_entry tmp_ce; INIT_NS_CLASS_ENTRY(tmp_ce, "mysql_xdevapi", "ColumnResult", mysqlx_node_column_result_methods); tmp_ce.create_object = php_mysqlx_column_result_object_allocator; mysqlx_node_column_result_class_entry = zend_register_internal_class(&tmp_ce); } zend_hash_init(&mysqlx_node_column_result_properties, 0, nullptr, mysqlx_free_property_cb, 1); /* Add name + getter + setter to the hash table with the properties for the class */ mysqlx_add_properties(&mysqlx_node_column_result_properties, mysqlx_node_column_result_property_entries); } /* }}} */ /* {{{ mysqlx_unregister_node_column_result_class */ void mysqlx_unregister_node_column_result_class(SHUTDOWN_FUNC_ARGS) { zend_hash_destroy(&mysqlx_node_column_result_properties); } /* }}} */ } // namespace devapi } // namespace mysqlx /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: noet sw=4 ts=4 fdm=marker * vim<600: noet sw=4 ts=4 */
1086e0eef7b16f20dcfc9d869f0cb843130256cd
bd500b1b182c1462b17e620a55e32e6e1d515be2
/range-sum-query-immutable/range-sum-query-immutable.cpp
6dff9001cca0b4f5e5f0375b63a4869490e5c646
[]
no_license
Akshita-5harma/leetcode
5c2dfd339f29dda46d683efaada9d2fce698ce44
80c6badcb191e17677cc9b34a8576bf20a460474
refs/heads/main
2023-08-22T14:58:43.500283
2021-10-03T19:44:07
2021-10-03T19:44:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
497
cpp
range-sum-query-immutable.cpp
class NumArray { public: vector < int > pre; NumArray(vector<int>& nums) { int sum = 0; pre.push_back(0); for(int i=0;i<nums.size();i++){ sum += nums[i]; pre.push_back(sum); } } int sumRange(int left, int right) { return pre[right+1] - pre[left]; } }; /** * Your NumArray object will be instantiated and called as such: * NumArray* obj = new NumArray(nums); * int param_1 = obj->sumRange(left,right); */
c08c27ec5c8808f8e5bb2878191bcd0360cbea9d
ed81c6db6edd53a862d17b444de0580de99fb5c3
/src/test/resources/declarations.cpp
47a93f34d74fdde28313154f93b5c922a900aa05
[ "Apache-2.0" ]
permissive
oxisto/cppparser
d139b0becad9dece5a3f1f3caedf4895de52618e
c3ac83bdd79861e3097052ac64201184872d2ecb
refs/heads/master
2022-11-24T08:48:09.900303
2020-07-25T21:18:37
2020-07-25T21:18:37
281,495,231
0
0
null
null
null
null
UTF-8
C++
false
false
56
cpp
declarations.cpp
int a, *t; void* b; int c(); float d, e; void* f();
c34a8cf5418d2e4f06013f89b445f5ef1316212a
81b8bd4252498e81c66c3fafa1982f643020a9c1
/BankingSystem/BankingSystemVer02/BankingSystemVer02.cpp
42d8c1475e43c2744d6880e8759ced2ba8509d38
[]
no_license
kimgopa/cpp_project
65490bda2dd0dee9267338fd7d77f9b6ea1932f3
59401efc75f9812157a62cdadd6ba9218f9608b2
refs/heads/main
2023-06-22T16:10:08.441053
2021-07-13T14:07:00
2021-07-13T14:07:00
379,623,543
0
0
null
null
null
null
UHC
C++
false
false
3,212
cpp
BankingSystemVer02.cpp
/* * Banking System Ver 0.2.1 */ #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstring> using namespace std; const int NAME_LEN = 20; int ShowMenu(); // 메뉴 출력 void MakeAccount(); // 1. 계좌개설 void DepositMoney(); // 2. 입금 void WithdrawMoney(); // 3. 출금 void ShowAllAccInfo(); // 4. 계좌정보 전체 출력 enum { MAKE = 1, DEPOSIT, WITHDRAW, INQUIRE, EXIT }; class Account { private: int accID; // 계좌번호 int balance; // 잔액 char *cusName; // 고객이름 public: Account(int _accID, int _balance, char *_cusName) : accID(_accID), balance(_balance) { cusName = new char[strlen(_cusName) + 1]; strcpy(cusName, _cusName); } ~Account() { delete[] cusName; } int GetAccID() const { return accID; } void Deposit(int money) { balance += money; } int Withdraw(int money) // 출금액 반환, 부족시 0 반환 { if (balance < money) return 0; balance -= money; return money; } void GetAccInfo() const { cout << "계좌ID : " << accID << endl; cout << "이름 : " << cusName << endl; cout << "입금액 : " << balance << endl << endl; } }; Account *accArr[100]; int acc_cnt = 0; int main(void) { while (1) { switch (ShowMenu()) { case MAKE: MakeAccount(); break; case DEPOSIT: DepositMoney(); break; case WITHDRAW: WithdrawMoney(); break; case INQUIRE: ShowAllAccInfo(); break; case EXIT: for (int i = 0; i < acc_cnt; i++) delete accArr[i]; return 0; default: cout << "Illegal selection." << endl << endl; } } return 0; } int ShowMenu() { int nSelect; cout << "------ Menu -----" << endl; cout << "1. 계좌개설" << endl; cout << "2. 입금" << endl; cout << "3. 출금" << endl; cout << "4. 계좌정보 전체 출력" << endl; cout << "5. 프로그램 종료" << endl; cout << "선택 : "; cin >> nSelect; cout << endl; return nSelect; } void MakeAccount() { int accID; int balance; char cusName[NAME_LEN]; cout << "[계좌개설]" << endl; cout << "계좌ID : "; cin >> accID; cout << "이름 : "; cin >> cusName; cout << "입금액 : "; cin >> balance; cout << endl; accArr[acc_cnt] = new Account(accID, balance, cusName); acc_cnt += 1; } void DepositMoney() { int accID; int money; cout << "[입금]" << endl; cout << "계좌ID : "; cin >> accID; cout << "입금액 : "; cin >> money; for (int i = 0; i < acc_cnt; i++) { if (accArr[i]->GetAccID() == accID) { accArr[i]->Deposit(money); cout << "입금완료" << endl << endl; return; } } cout << "유효하지 않은 ID입니다." << endl << endl; } void WithdrawMoney() { int accID; int money; cout << "[출금]" << endl; cout << "계좌ID : "; cin >> accID; cout << "출금액 : "; cin >> money; for (int i = 0; i < acc_cnt; i++) { if (accArr[i]->GetAccID() == accID) { if (accArr[i]->Withdraw(money) == 0) { cout << "잔액부족" << endl << endl; return; } cout << "출금완료" << endl << endl; return; } } cout << "유효하지 않은 ID입니다." << endl << endl; } void ShowAllAccInfo() { for (int i = 0; i < acc_cnt; i++) { accArr[i]->GetAccInfo(); } }
565d65b5fdffc05be796be067059a950ba33b1ba
1fc9b4abb81612799ce4ba37119c155134f7d016
/AWS12/mqtt.h
dc04f54981a0f2e34cd8df38f6b60d03f8baa1ed
[]
no_license
Raja-Raman/IoT7
94208171edb5e04f818d389302760de4bd2e57a2
37bf5c1583ce3e2361bbfd569c7278baa7dcd76b
refs/heads/master
2020-03-27T14:47:13.823346
2018-10-11T19:21:36
2018-10-11T19:21:36
146,678,919
0
0
null
null
null
null
UTF-8
C++
false
false
1,063
h
mqtt.h
#ifndef MQTT_H #define MQTT_H //mqtt.h /* This uses the AWS IoT MQTT library from https://github.com/odelot/aws-mqtt-websockets and the dependencies mentioned therein */ #include "common.h" #include "myfi.h" #include "config.h" #include <Arduino.h> #include <Stream.h> //AWS MQTT over Websockets : https://github.com/odelot/aws-mqtt-websockets #include "Client.h" #include "AWSWebSocketClient.h" #include "CircularByteBuffer.h" //AWS SDK fork: https://github.com/odelot/aws-sdk-arduino #include "sha256.h" #include "Utils.h" //WEBSockets: https://github.com/Links2004/arduinoWebSockets #include <Hash.h> #include <WebSocketsClient.h> //MQTT client: https://github.com/knolleary/pubsubclient #include <PubSubClient.h> // class MyMqtt { public: MyMqtt(Config* config); void init(); void update (); bool reconnect (); char* generateClientID (); void subscribe (); void sendmessage (char *msg); //void callback(char* topic, byte* payload, unsigned int length); private: Config *pC; }; #endif
f5529a8397d0ee0f3bc4c6c9d18128f1234e2768
785df77400157c058a934069298568e47950e40b
/TnbSectPx/include/SectPx_FieldFunTools.hxx
68a5f81008459abb674e40d2f2dcdb4398951f1b
[]
no_license
amir5200fx/Tonb
cb108de09bf59c5c7e139435e0be008a888d99d5
ed679923dc4b2e69b12ffe621fc5a6c8e3652465
refs/heads/master
2023-08-31T08:59:00.366903
2023-08-31T07:42:24
2023-08-31T07:42:24
230,028,961
9
3
null
2023-07-20T16:53:31
2019-12-25T02:29:32
C++
UTF-8
C++
false
false
665
hxx
SectPx_FieldFunTools.hxx
#pragma once #ifndef _SectPx_FieldFunTools_Header #define _SectPx_FieldFunTools_Header #include <Standard_TypeDef.hxx> #include <SectPx_Module.hxx> #include <memory> namespace tnbLib { // Forward Declarations class SectPx_FieldFun; class SectPx_RegObj; class SectPx_FieldFunTools { public: static TnbSectPx_EXPORT Standard_Boolean IsRemovable(const std::shared_ptr<SectPx_FieldFun>&); static TnbSectPx_EXPORT Standard_Boolean IsFieldFun(const std::shared_ptr<SectPx_RegObj>& theObj); static TnbSectPx_EXPORT std::shared_ptr<SectPx_FieldFun> FieldFun(const std::shared_ptr<SectPx_RegObj>& theObj); }; } #endif // !_SectPx_FieldFunTools_Header
5994523adcca4f73eab4bd437cb9a45c63a2f675
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5690574640250880_1/C++/kenning9/cguess.cpp
bcb4f479eacc5cc116c6e0072a8b6e83250ecf43
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
3,104
cpp
cguess.cpp
#include<cstdio> #include<iostream> using namespace std; int TC, r, c, m, a, b, d, board[5][5]; bool isbomb[5][5]; int main(){ scanf("%d", &TC); for(int tc = 1; tc <= TC; ++tc){ scanf("%d %d %d", &r, &c, &m); m = r*c-m; bool found = false; if(m == 1 && !found){ printf("Case #%d:\n", tc); for(int i = 0; i < r; ++i){ for(int j = 0; j < c; ++j){ if(i == 0 && j == 0) printf("c"); else printf("*"); } printf("\n"); } found = true; } //fill col if(m/r >= 2 && (m%r >= 2 || m%r == 0) && !found){ printf("Case #%d:\n", tc); for(int i = 0; i < r; ++i){ for(int j = 0; j < c; ++j){ if(i == 0 && j == 0) printf("c"); else if(j < m/r || (j == m/r && i < m%r)) printf("."); else printf("*"); } printf("\n"); } found = true; } //fill row if(m/c >= 2 && (m%c >= 2 || m%c == 0) && !found){ printf("Case #%d:\n", tc); for(int i = 0; i < r; ++i){ for(int j = 0; j < c; ++j){ if(i == 0 && j == 0) printf("c"); else if(i < m/c || (i == m/c && j < m%c)) printf("."); else printf("*"); } printf("\n"); } found = true; } for(int i = 2; i < r && !found; ++i){ for(int j = 2; j < c && !found; ++j){ if(m >= (i+1)*(j+1)) continue; if(m < i*j) continue; int overflow = m - (i*j), toi, toj; if(overflow == 0) toi = toj = 0; else if(overflow <= i && overflow > 1){ toi = overflow; toj = 0; } else if(overflow <= j && overflow > 1){ toj = overflow; toi = 0; } else if(overflow >= 4){ toi = min(overflow-2, i); toj = overflow - toi; } else continue; found = true; //printf("i is %d, j is %d, toi toj %d %d\n", i, j, toi, toj); printf("Case #%d:\n", tc); for(int k = 0; k < r; ++k){ for(int l = 0; l < c; ++l){ if(k == 0 && l == 0) printf("c"); else if(k < i && l < j) printf("."); else if(j == l && k < toi) printf("."); else if(i == k && l < toj) printf("."); else printf("*"); } printf("\n"); } } } if(!found){ printf("Case #%d:\nImpossible\n", tc); } } //system("pause"); }
5ef61616ea2b15622de50f11df1f572e17a34bcd
62db6ed00a63f13690901dee01782149ecbba39d
/cpp/string/string_cow_test.cc
e48c8a71af9bc3cc3957f823fc83c70fa2a16c04
[]
no_license
elwin0214/code-demo
dd1af31ab119ef8892e2662da9f9e5f67ababc9f
ecc0272df6bfc24f639f663984e3eee8d17b6f90
refs/heads/master
2021-01-19T15:06:31.499414
2017-10-11T13:51:32
2017-10-11T13:51:32
100,943,912
0
0
null
null
null
null
UTF-8
C++
false
false
551
cc
string_cow_test.cc
#include <string> #include <iostream> #include <unistd.h> using namespace std; //no COW int main() { string s1("abc"); string s2 = s1; fprintf(stdout, "string 1 addr=%x\n", (s1.c_str())); fprintf(stdout, "string 2 addr=%x\n", (s2.c_str())); s1[4] ='d'; fprintf(stdout, "string 1 addr=%x\n", (s1.c_str())); fprintf(stdout, "string 2 addr=%x\n", (s2.c_str())); s1[1] ='d'; fprintf(stdout, "string 1 addr=%x\n", (s1.c_str())); fprintf(stdout, "string 2 addr=%x\n", (s2.c_str())); return 0; }
068f8e307243db80335564a28f81d17c9744cf1f
1077d063f5c2cef9da4391f9b41ba86e1e117fc8
/temp/include/dyn_detail/boost/preprocessor/control/detail/while.hpp
8d3b1ce8a066f46cf0c92552e2283cfccd90afc3
[]
no_license
FeCastle/arum
532fa9a5861e0e9151b59d5ff8a078d5be2e01e7
2f9c6e3a0df8fcb46f0ad35a02b3f896a1eaaf47
refs/heads/master
2016-09-02T04:56:50.858689
2012-12-07T15:48:11
2012-12-07T15:48:11
6,237,912
1
0
null
null
null
null
UTF-8
C++
false
false
96,312
hpp
while.hpp
# /* Copyright (C) 2001 # * Housemarque Oy # * http://www.housemarque.com # * # * 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) # */ # # /* Revised by Paul Mensonides (2002) */ # # /* See http://www.boost.org for most recent version. */ # # ifndef DYN_DETAIL_BOOST_PREPROCESSOR_CONTROL_DETAIL_WHILE_HPP # define DYN_DETAIL_BOOST_PREPROCESSOR_CONTROL_DETAIL_WHILE_HPP # # include <dyn_detail/boost/preprocessor/control/iif.hpp> # include <dyn_detail/boost/preprocessor/logical/bool.hpp> # include <dyn_detail/boost/preprocessor/tuple/eat.hpp> # # define DYN_DETAIL_BOOST_PP_WHILE_1(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_1_C(DYN_DETAIL_BOOST_PP_BOOL(p(2, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_2(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_2_C(DYN_DETAIL_BOOST_PP_BOOL(p(3, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_3(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_3_C(DYN_DETAIL_BOOST_PP_BOOL(p(4, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_4(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_4_C(DYN_DETAIL_BOOST_PP_BOOL(p(5, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_5(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_5_C(DYN_DETAIL_BOOST_PP_BOOL(p(6, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_6(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_6_C(DYN_DETAIL_BOOST_PP_BOOL(p(7, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_7(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_7_C(DYN_DETAIL_BOOST_PP_BOOL(p(8, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_8(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_8_C(DYN_DETAIL_BOOST_PP_BOOL(p(9, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_9(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_9_C(DYN_DETAIL_BOOST_PP_BOOL(p(10, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_10(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_10_C(DYN_DETAIL_BOOST_PP_BOOL(p(11, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_11(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_11_C(DYN_DETAIL_BOOST_PP_BOOL(p(12, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_12(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_12_C(DYN_DETAIL_BOOST_PP_BOOL(p(13, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_13(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_13_C(DYN_DETAIL_BOOST_PP_BOOL(p(14, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_14(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_14_C(DYN_DETAIL_BOOST_PP_BOOL(p(15, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_15(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_15_C(DYN_DETAIL_BOOST_PP_BOOL(p(16, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_16(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_16_C(DYN_DETAIL_BOOST_PP_BOOL(p(17, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_17(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_17_C(DYN_DETAIL_BOOST_PP_BOOL(p(18, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_18(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_18_C(DYN_DETAIL_BOOST_PP_BOOL(p(19, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_19(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_19_C(DYN_DETAIL_BOOST_PP_BOOL(p(20, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_20(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_20_C(DYN_DETAIL_BOOST_PP_BOOL(p(21, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_21(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_21_C(DYN_DETAIL_BOOST_PP_BOOL(p(22, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_22(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_22_C(DYN_DETAIL_BOOST_PP_BOOL(p(23, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_23(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_23_C(DYN_DETAIL_BOOST_PP_BOOL(p(24, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_24(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_24_C(DYN_DETAIL_BOOST_PP_BOOL(p(25, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_25(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_25_C(DYN_DETAIL_BOOST_PP_BOOL(p(26, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_26(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_26_C(DYN_DETAIL_BOOST_PP_BOOL(p(27, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_27(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_27_C(DYN_DETAIL_BOOST_PP_BOOL(p(28, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_28(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_28_C(DYN_DETAIL_BOOST_PP_BOOL(p(29, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_29(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_29_C(DYN_DETAIL_BOOST_PP_BOOL(p(30, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_30(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_30_C(DYN_DETAIL_BOOST_PP_BOOL(p(31, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_31(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_31_C(DYN_DETAIL_BOOST_PP_BOOL(p(32, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_32(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_32_C(DYN_DETAIL_BOOST_PP_BOOL(p(33, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_33(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_33_C(DYN_DETAIL_BOOST_PP_BOOL(p(34, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_34(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_34_C(DYN_DETAIL_BOOST_PP_BOOL(p(35, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_35(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_35_C(DYN_DETAIL_BOOST_PP_BOOL(p(36, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_36(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_36_C(DYN_DETAIL_BOOST_PP_BOOL(p(37, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_37(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_37_C(DYN_DETAIL_BOOST_PP_BOOL(p(38, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_38(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_38_C(DYN_DETAIL_BOOST_PP_BOOL(p(39, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_39(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_39_C(DYN_DETAIL_BOOST_PP_BOOL(p(40, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_40(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_40_C(DYN_DETAIL_BOOST_PP_BOOL(p(41, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_41(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_41_C(DYN_DETAIL_BOOST_PP_BOOL(p(42, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_42(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_42_C(DYN_DETAIL_BOOST_PP_BOOL(p(43, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_43(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_43_C(DYN_DETAIL_BOOST_PP_BOOL(p(44, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_44(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_44_C(DYN_DETAIL_BOOST_PP_BOOL(p(45, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_45(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_45_C(DYN_DETAIL_BOOST_PP_BOOL(p(46, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_46(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_46_C(DYN_DETAIL_BOOST_PP_BOOL(p(47, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_47(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_47_C(DYN_DETAIL_BOOST_PP_BOOL(p(48, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_48(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_48_C(DYN_DETAIL_BOOST_PP_BOOL(p(49, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_49(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_49_C(DYN_DETAIL_BOOST_PP_BOOL(p(50, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_50(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_50_C(DYN_DETAIL_BOOST_PP_BOOL(p(51, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_51(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_51_C(DYN_DETAIL_BOOST_PP_BOOL(p(52, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_52(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_52_C(DYN_DETAIL_BOOST_PP_BOOL(p(53, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_53(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_53_C(DYN_DETAIL_BOOST_PP_BOOL(p(54, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_54(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_54_C(DYN_DETAIL_BOOST_PP_BOOL(p(55, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_55(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_55_C(DYN_DETAIL_BOOST_PP_BOOL(p(56, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_56(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_56_C(DYN_DETAIL_BOOST_PP_BOOL(p(57, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_57(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_57_C(DYN_DETAIL_BOOST_PP_BOOL(p(58, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_58(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_58_C(DYN_DETAIL_BOOST_PP_BOOL(p(59, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_59(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_59_C(DYN_DETAIL_BOOST_PP_BOOL(p(60, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_60(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_60_C(DYN_DETAIL_BOOST_PP_BOOL(p(61, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_61(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_61_C(DYN_DETAIL_BOOST_PP_BOOL(p(62, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_62(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_62_C(DYN_DETAIL_BOOST_PP_BOOL(p(63, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_63(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_63_C(DYN_DETAIL_BOOST_PP_BOOL(p(64, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_64(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_64_C(DYN_DETAIL_BOOST_PP_BOOL(p(65, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_65(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_65_C(DYN_DETAIL_BOOST_PP_BOOL(p(66, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_66(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_66_C(DYN_DETAIL_BOOST_PP_BOOL(p(67, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_67(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_67_C(DYN_DETAIL_BOOST_PP_BOOL(p(68, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_68(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_68_C(DYN_DETAIL_BOOST_PP_BOOL(p(69, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_69(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_69_C(DYN_DETAIL_BOOST_PP_BOOL(p(70, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_70(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_70_C(DYN_DETAIL_BOOST_PP_BOOL(p(71, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_71(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_71_C(DYN_DETAIL_BOOST_PP_BOOL(p(72, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_72(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_72_C(DYN_DETAIL_BOOST_PP_BOOL(p(73, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_73(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_73_C(DYN_DETAIL_BOOST_PP_BOOL(p(74, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_74(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_74_C(DYN_DETAIL_BOOST_PP_BOOL(p(75, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_75(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_75_C(DYN_DETAIL_BOOST_PP_BOOL(p(76, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_76(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_76_C(DYN_DETAIL_BOOST_PP_BOOL(p(77, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_77(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_77_C(DYN_DETAIL_BOOST_PP_BOOL(p(78, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_78(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_78_C(DYN_DETAIL_BOOST_PP_BOOL(p(79, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_79(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_79_C(DYN_DETAIL_BOOST_PP_BOOL(p(80, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_80(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_80_C(DYN_DETAIL_BOOST_PP_BOOL(p(81, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_81(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_81_C(DYN_DETAIL_BOOST_PP_BOOL(p(82, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_82(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_82_C(DYN_DETAIL_BOOST_PP_BOOL(p(83, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_83(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_83_C(DYN_DETAIL_BOOST_PP_BOOL(p(84, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_84(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_84_C(DYN_DETAIL_BOOST_PP_BOOL(p(85, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_85(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_85_C(DYN_DETAIL_BOOST_PP_BOOL(p(86, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_86(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_86_C(DYN_DETAIL_BOOST_PP_BOOL(p(87, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_87(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_87_C(DYN_DETAIL_BOOST_PP_BOOL(p(88, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_88(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_88_C(DYN_DETAIL_BOOST_PP_BOOL(p(89, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_89(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_89_C(DYN_DETAIL_BOOST_PP_BOOL(p(90, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_90(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_90_C(DYN_DETAIL_BOOST_PP_BOOL(p(91, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_91(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_91_C(DYN_DETAIL_BOOST_PP_BOOL(p(92, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_92(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_92_C(DYN_DETAIL_BOOST_PP_BOOL(p(93, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_93(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_93_C(DYN_DETAIL_BOOST_PP_BOOL(p(94, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_94(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_94_C(DYN_DETAIL_BOOST_PP_BOOL(p(95, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_95(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_95_C(DYN_DETAIL_BOOST_PP_BOOL(p(96, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_96(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_96_C(DYN_DETAIL_BOOST_PP_BOOL(p(97, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_97(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_97_C(DYN_DETAIL_BOOST_PP_BOOL(p(98, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_98(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_98_C(DYN_DETAIL_BOOST_PP_BOOL(p(99, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_99(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_99_C(DYN_DETAIL_BOOST_PP_BOOL(p(100, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_100(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_100_C(DYN_DETAIL_BOOST_PP_BOOL(p(101, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_101(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_101_C(DYN_DETAIL_BOOST_PP_BOOL(p(102, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_102(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_102_C(DYN_DETAIL_BOOST_PP_BOOL(p(103, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_103(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_103_C(DYN_DETAIL_BOOST_PP_BOOL(p(104, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_104(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_104_C(DYN_DETAIL_BOOST_PP_BOOL(p(105, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_105(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_105_C(DYN_DETAIL_BOOST_PP_BOOL(p(106, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_106(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_106_C(DYN_DETAIL_BOOST_PP_BOOL(p(107, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_107(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_107_C(DYN_DETAIL_BOOST_PP_BOOL(p(108, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_108(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_108_C(DYN_DETAIL_BOOST_PP_BOOL(p(109, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_109(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_109_C(DYN_DETAIL_BOOST_PP_BOOL(p(110, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_110(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_110_C(DYN_DETAIL_BOOST_PP_BOOL(p(111, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_111(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_111_C(DYN_DETAIL_BOOST_PP_BOOL(p(112, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_112(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_112_C(DYN_DETAIL_BOOST_PP_BOOL(p(113, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_113(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_113_C(DYN_DETAIL_BOOST_PP_BOOL(p(114, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_114(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_114_C(DYN_DETAIL_BOOST_PP_BOOL(p(115, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_115(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_115_C(DYN_DETAIL_BOOST_PP_BOOL(p(116, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_116(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_116_C(DYN_DETAIL_BOOST_PP_BOOL(p(117, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_117(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_117_C(DYN_DETAIL_BOOST_PP_BOOL(p(118, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_118(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_118_C(DYN_DETAIL_BOOST_PP_BOOL(p(119, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_119(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_119_C(DYN_DETAIL_BOOST_PP_BOOL(p(120, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_120(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_120_C(DYN_DETAIL_BOOST_PP_BOOL(p(121, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_121(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_121_C(DYN_DETAIL_BOOST_PP_BOOL(p(122, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_122(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_122_C(DYN_DETAIL_BOOST_PP_BOOL(p(123, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_123(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_123_C(DYN_DETAIL_BOOST_PP_BOOL(p(124, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_124(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_124_C(DYN_DETAIL_BOOST_PP_BOOL(p(125, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_125(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_125_C(DYN_DETAIL_BOOST_PP_BOOL(p(126, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_126(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_126_C(DYN_DETAIL_BOOST_PP_BOOL(p(127, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_127(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_127_C(DYN_DETAIL_BOOST_PP_BOOL(p(128, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_128(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_128_C(DYN_DETAIL_BOOST_PP_BOOL(p(129, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_129(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_129_C(DYN_DETAIL_BOOST_PP_BOOL(p(130, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_130(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_130_C(DYN_DETAIL_BOOST_PP_BOOL(p(131, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_131(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_131_C(DYN_DETAIL_BOOST_PP_BOOL(p(132, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_132(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_132_C(DYN_DETAIL_BOOST_PP_BOOL(p(133, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_133(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_133_C(DYN_DETAIL_BOOST_PP_BOOL(p(134, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_134(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_134_C(DYN_DETAIL_BOOST_PP_BOOL(p(135, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_135(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_135_C(DYN_DETAIL_BOOST_PP_BOOL(p(136, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_136(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_136_C(DYN_DETAIL_BOOST_PP_BOOL(p(137, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_137(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_137_C(DYN_DETAIL_BOOST_PP_BOOL(p(138, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_138(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_138_C(DYN_DETAIL_BOOST_PP_BOOL(p(139, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_139(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_139_C(DYN_DETAIL_BOOST_PP_BOOL(p(140, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_140(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_140_C(DYN_DETAIL_BOOST_PP_BOOL(p(141, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_141(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_141_C(DYN_DETAIL_BOOST_PP_BOOL(p(142, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_142(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_142_C(DYN_DETAIL_BOOST_PP_BOOL(p(143, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_143(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_143_C(DYN_DETAIL_BOOST_PP_BOOL(p(144, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_144(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_144_C(DYN_DETAIL_BOOST_PP_BOOL(p(145, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_145(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_145_C(DYN_DETAIL_BOOST_PP_BOOL(p(146, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_146(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_146_C(DYN_DETAIL_BOOST_PP_BOOL(p(147, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_147(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_147_C(DYN_DETAIL_BOOST_PP_BOOL(p(148, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_148(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_148_C(DYN_DETAIL_BOOST_PP_BOOL(p(149, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_149(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_149_C(DYN_DETAIL_BOOST_PP_BOOL(p(150, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_150(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_150_C(DYN_DETAIL_BOOST_PP_BOOL(p(151, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_151(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_151_C(DYN_DETAIL_BOOST_PP_BOOL(p(152, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_152(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_152_C(DYN_DETAIL_BOOST_PP_BOOL(p(153, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_153(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_153_C(DYN_DETAIL_BOOST_PP_BOOL(p(154, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_154(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_154_C(DYN_DETAIL_BOOST_PP_BOOL(p(155, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_155(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_155_C(DYN_DETAIL_BOOST_PP_BOOL(p(156, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_156(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_156_C(DYN_DETAIL_BOOST_PP_BOOL(p(157, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_157(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_157_C(DYN_DETAIL_BOOST_PP_BOOL(p(158, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_158(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_158_C(DYN_DETAIL_BOOST_PP_BOOL(p(159, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_159(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_159_C(DYN_DETAIL_BOOST_PP_BOOL(p(160, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_160(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_160_C(DYN_DETAIL_BOOST_PP_BOOL(p(161, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_161(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_161_C(DYN_DETAIL_BOOST_PP_BOOL(p(162, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_162(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_162_C(DYN_DETAIL_BOOST_PP_BOOL(p(163, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_163(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_163_C(DYN_DETAIL_BOOST_PP_BOOL(p(164, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_164(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_164_C(DYN_DETAIL_BOOST_PP_BOOL(p(165, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_165(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_165_C(DYN_DETAIL_BOOST_PP_BOOL(p(166, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_166(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_166_C(DYN_DETAIL_BOOST_PP_BOOL(p(167, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_167(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_167_C(DYN_DETAIL_BOOST_PP_BOOL(p(168, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_168(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_168_C(DYN_DETAIL_BOOST_PP_BOOL(p(169, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_169(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_169_C(DYN_DETAIL_BOOST_PP_BOOL(p(170, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_170(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_170_C(DYN_DETAIL_BOOST_PP_BOOL(p(171, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_171(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_171_C(DYN_DETAIL_BOOST_PP_BOOL(p(172, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_172(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_172_C(DYN_DETAIL_BOOST_PP_BOOL(p(173, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_173(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_173_C(DYN_DETAIL_BOOST_PP_BOOL(p(174, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_174(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_174_C(DYN_DETAIL_BOOST_PP_BOOL(p(175, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_175(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_175_C(DYN_DETAIL_BOOST_PP_BOOL(p(176, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_176(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_176_C(DYN_DETAIL_BOOST_PP_BOOL(p(177, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_177(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_177_C(DYN_DETAIL_BOOST_PP_BOOL(p(178, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_178(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_178_C(DYN_DETAIL_BOOST_PP_BOOL(p(179, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_179(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_179_C(DYN_DETAIL_BOOST_PP_BOOL(p(180, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_180(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_180_C(DYN_DETAIL_BOOST_PP_BOOL(p(181, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_181(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_181_C(DYN_DETAIL_BOOST_PP_BOOL(p(182, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_182(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_182_C(DYN_DETAIL_BOOST_PP_BOOL(p(183, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_183(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_183_C(DYN_DETAIL_BOOST_PP_BOOL(p(184, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_184(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_184_C(DYN_DETAIL_BOOST_PP_BOOL(p(185, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_185(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_185_C(DYN_DETAIL_BOOST_PP_BOOL(p(186, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_186(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_186_C(DYN_DETAIL_BOOST_PP_BOOL(p(187, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_187(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_187_C(DYN_DETAIL_BOOST_PP_BOOL(p(188, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_188(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_188_C(DYN_DETAIL_BOOST_PP_BOOL(p(189, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_189(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_189_C(DYN_DETAIL_BOOST_PP_BOOL(p(190, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_190(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_190_C(DYN_DETAIL_BOOST_PP_BOOL(p(191, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_191(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_191_C(DYN_DETAIL_BOOST_PP_BOOL(p(192, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_192(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_192_C(DYN_DETAIL_BOOST_PP_BOOL(p(193, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_193(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_193_C(DYN_DETAIL_BOOST_PP_BOOL(p(194, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_194(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_194_C(DYN_DETAIL_BOOST_PP_BOOL(p(195, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_195(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_195_C(DYN_DETAIL_BOOST_PP_BOOL(p(196, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_196(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_196_C(DYN_DETAIL_BOOST_PP_BOOL(p(197, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_197(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_197_C(DYN_DETAIL_BOOST_PP_BOOL(p(198, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_198(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_198_C(DYN_DETAIL_BOOST_PP_BOOL(p(199, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_199(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_199_C(DYN_DETAIL_BOOST_PP_BOOL(p(200, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_200(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_200_C(DYN_DETAIL_BOOST_PP_BOOL(p(201, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_201(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_201_C(DYN_DETAIL_BOOST_PP_BOOL(p(202, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_202(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_202_C(DYN_DETAIL_BOOST_PP_BOOL(p(203, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_203(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_203_C(DYN_DETAIL_BOOST_PP_BOOL(p(204, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_204(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_204_C(DYN_DETAIL_BOOST_PP_BOOL(p(205, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_205(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_205_C(DYN_DETAIL_BOOST_PP_BOOL(p(206, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_206(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_206_C(DYN_DETAIL_BOOST_PP_BOOL(p(207, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_207(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_207_C(DYN_DETAIL_BOOST_PP_BOOL(p(208, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_208(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_208_C(DYN_DETAIL_BOOST_PP_BOOL(p(209, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_209(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_209_C(DYN_DETAIL_BOOST_PP_BOOL(p(210, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_210(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_210_C(DYN_DETAIL_BOOST_PP_BOOL(p(211, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_211(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_211_C(DYN_DETAIL_BOOST_PP_BOOL(p(212, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_212(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_212_C(DYN_DETAIL_BOOST_PP_BOOL(p(213, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_213(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_213_C(DYN_DETAIL_BOOST_PP_BOOL(p(214, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_214(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_214_C(DYN_DETAIL_BOOST_PP_BOOL(p(215, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_215(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_215_C(DYN_DETAIL_BOOST_PP_BOOL(p(216, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_216(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_216_C(DYN_DETAIL_BOOST_PP_BOOL(p(217, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_217(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_217_C(DYN_DETAIL_BOOST_PP_BOOL(p(218, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_218(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_218_C(DYN_DETAIL_BOOST_PP_BOOL(p(219, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_219(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_219_C(DYN_DETAIL_BOOST_PP_BOOL(p(220, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_220(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_220_C(DYN_DETAIL_BOOST_PP_BOOL(p(221, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_221(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_221_C(DYN_DETAIL_BOOST_PP_BOOL(p(222, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_222(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_222_C(DYN_DETAIL_BOOST_PP_BOOL(p(223, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_223(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_223_C(DYN_DETAIL_BOOST_PP_BOOL(p(224, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_224(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_224_C(DYN_DETAIL_BOOST_PP_BOOL(p(225, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_225(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_225_C(DYN_DETAIL_BOOST_PP_BOOL(p(226, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_226(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_226_C(DYN_DETAIL_BOOST_PP_BOOL(p(227, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_227(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_227_C(DYN_DETAIL_BOOST_PP_BOOL(p(228, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_228(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_228_C(DYN_DETAIL_BOOST_PP_BOOL(p(229, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_229(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_229_C(DYN_DETAIL_BOOST_PP_BOOL(p(230, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_230(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_230_C(DYN_DETAIL_BOOST_PP_BOOL(p(231, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_231(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_231_C(DYN_DETAIL_BOOST_PP_BOOL(p(232, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_232(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_232_C(DYN_DETAIL_BOOST_PP_BOOL(p(233, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_233(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_233_C(DYN_DETAIL_BOOST_PP_BOOL(p(234, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_234(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_234_C(DYN_DETAIL_BOOST_PP_BOOL(p(235, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_235(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_235_C(DYN_DETAIL_BOOST_PP_BOOL(p(236, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_236(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_236_C(DYN_DETAIL_BOOST_PP_BOOL(p(237, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_237(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_237_C(DYN_DETAIL_BOOST_PP_BOOL(p(238, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_238(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_238_C(DYN_DETAIL_BOOST_PP_BOOL(p(239, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_239(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_239_C(DYN_DETAIL_BOOST_PP_BOOL(p(240, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_240(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_240_C(DYN_DETAIL_BOOST_PP_BOOL(p(241, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_241(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_241_C(DYN_DETAIL_BOOST_PP_BOOL(p(242, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_242(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_242_C(DYN_DETAIL_BOOST_PP_BOOL(p(243, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_243(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_243_C(DYN_DETAIL_BOOST_PP_BOOL(p(244, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_244(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_244_C(DYN_DETAIL_BOOST_PP_BOOL(p(245, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_245(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_245_C(DYN_DETAIL_BOOST_PP_BOOL(p(246, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_246(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_246_C(DYN_DETAIL_BOOST_PP_BOOL(p(247, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_247(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_247_C(DYN_DETAIL_BOOST_PP_BOOL(p(248, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_248(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_248_C(DYN_DETAIL_BOOST_PP_BOOL(p(249, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_249(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_249_C(DYN_DETAIL_BOOST_PP_BOOL(p(250, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_250(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_250_C(DYN_DETAIL_BOOST_PP_BOOL(p(251, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_251(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_251_C(DYN_DETAIL_BOOST_PP_BOOL(p(252, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_252(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_252_C(DYN_DETAIL_BOOST_PP_BOOL(p(253, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_253(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_253_C(DYN_DETAIL_BOOST_PP_BOOL(p(254, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_254(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_254_C(DYN_DETAIL_BOOST_PP_BOOL(p(255, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_255(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_255_C(DYN_DETAIL_BOOST_PP_BOOL(p(256, s)), p, o, s) # define DYN_DETAIL_BOOST_PP_WHILE_256(p, o, s) DYN_DETAIL_BOOST_PP_WHILE_256_C(DYN_DETAIL_BOOST_PP_BOOL(p(257, s)), p, o, s) # # define DYN_DETAIL_BOOST_PP_WHILE_1_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_2, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(2, s)) # define DYN_DETAIL_BOOST_PP_WHILE_2_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_3, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(3, s)) # define DYN_DETAIL_BOOST_PP_WHILE_3_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_4, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(4, s)) # define DYN_DETAIL_BOOST_PP_WHILE_4_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_5, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(5, s)) # define DYN_DETAIL_BOOST_PP_WHILE_5_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_6, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(6, s)) # define DYN_DETAIL_BOOST_PP_WHILE_6_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_7, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(7, s)) # define DYN_DETAIL_BOOST_PP_WHILE_7_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_8, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(8, s)) # define DYN_DETAIL_BOOST_PP_WHILE_8_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_9, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(9, s)) # define DYN_DETAIL_BOOST_PP_WHILE_9_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_10, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(10, s)) # define DYN_DETAIL_BOOST_PP_WHILE_10_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_11, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(11, s)) # define DYN_DETAIL_BOOST_PP_WHILE_11_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_12, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(12, s)) # define DYN_DETAIL_BOOST_PP_WHILE_12_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_13, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(13, s)) # define DYN_DETAIL_BOOST_PP_WHILE_13_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_14, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(14, s)) # define DYN_DETAIL_BOOST_PP_WHILE_14_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_15, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(15, s)) # define DYN_DETAIL_BOOST_PP_WHILE_15_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_16, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(16, s)) # define DYN_DETAIL_BOOST_PP_WHILE_16_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_17, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(17, s)) # define DYN_DETAIL_BOOST_PP_WHILE_17_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_18, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(18, s)) # define DYN_DETAIL_BOOST_PP_WHILE_18_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_19, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(19, s)) # define DYN_DETAIL_BOOST_PP_WHILE_19_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_20, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(20, s)) # define DYN_DETAIL_BOOST_PP_WHILE_20_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_21, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(21, s)) # define DYN_DETAIL_BOOST_PP_WHILE_21_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_22, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(22, s)) # define DYN_DETAIL_BOOST_PP_WHILE_22_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_23, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(23, s)) # define DYN_DETAIL_BOOST_PP_WHILE_23_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_24, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(24, s)) # define DYN_DETAIL_BOOST_PP_WHILE_24_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_25, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(25, s)) # define DYN_DETAIL_BOOST_PP_WHILE_25_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_26, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(26, s)) # define DYN_DETAIL_BOOST_PP_WHILE_26_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_27, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(27, s)) # define DYN_DETAIL_BOOST_PP_WHILE_27_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_28, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(28, s)) # define DYN_DETAIL_BOOST_PP_WHILE_28_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_29, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(29, s)) # define DYN_DETAIL_BOOST_PP_WHILE_29_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_30, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(30, s)) # define DYN_DETAIL_BOOST_PP_WHILE_30_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_31, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(31, s)) # define DYN_DETAIL_BOOST_PP_WHILE_31_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_32, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(32, s)) # define DYN_DETAIL_BOOST_PP_WHILE_32_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_33, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(33, s)) # define DYN_DETAIL_BOOST_PP_WHILE_33_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_34, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(34, s)) # define DYN_DETAIL_BOOST_PP_WHILE_34_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_35, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(35, s)) # define DYN_DETAIL_BOOST_PP_WHILE_35_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_36, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(36, s)) # define DYN_DETAIL_BOOST_PP_WHILE_36_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_37, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(37, s)) # define DYN_DETAIL_BOOST_PP_WHILE_37_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_38, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(38, s)) # define DYN_DETAIL_BOOST_PP_WHILE_38_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_39, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(39, s)) # define DYN_DETAIL_BOOST_PP_WHILE_39_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_40, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(40, s)) # define DYN_DETAIL_BOOST_PP_WHILE_40_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_41, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(41, s)) # define DYN_DETAIL_BOOST_PP_WHILE_41_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_42, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(42, s)) # define DYN_DETAIL_BOOST_PP_WHILE_42_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_43, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(43, s)) # define DYN_DETAIL_BOOST_PP_WHILE_43_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_44, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(44, s)) # define DYN_DETAIL_BOOST_PP_WHILE_44_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_45, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(45, s)) # define DYN_DETAIL_BOOST_PP_WHILE_45_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_46, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(46, s)) # define DYN_DETAIL_BOOST_PP_WHILE_46_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_47, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(47, s)) # define DYN_DETAIL_BOOST_PP_WHILE_47_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_48, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(48, s)) # define DYN_DETAIL_BOOST_PP_WHILE_48_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_49, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(49, s)) # define DYN_DETAIL_BOOST_PP_WHILE_49_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_50, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(50, s)) # define DYN_DETAIL_BOOST_PP_WHILE_50_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_51, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(51, s)) # define DYN_DETAIL_BOOST_PP_WHILE_51_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_52, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(52, s)) # define DYN_DETAIL_BOOST_PP_WHILE_52_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_53, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(53, s)) # define DYN_DETAIL_BOOST_PP_WHILE_53_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_54, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(54, s)) # define DYN_DETAIL_BOOST_PP_WHILE_54_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_55, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(55, s)) # define DYN_DETAIL_BOOST_PP_WHILE_55_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_56, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(56, s)) # define DYN_DETAIL_BOOST_PP_WHILE_56_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_57, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(57, s)) # define DYN_DETAIL_BOOST_PP_WHILE_57_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_58, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(58, s)) # define DYN_DETAIL_BOOST_PP_WHILE_58_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_59, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(59, s)) # define DYN_DETAIL_BOOST_PP_WHILE_59_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_60, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(60, s)) # define DYN_DETAIL_BOOST_PP_WHILE_60_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_61, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(61, s)) # define DYN_DETAIL_BOOST_PP_WHILE_61_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_62, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(62, s)) # define DYN_DETAIL_BOOST_PP_WHILE_62_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_63, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(63, s)) # define DYN_DETAIL_BOOST_PP_WHILE_63_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_64, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(64, s)) # define DYN_DETAIL_BOOST_PP_WHILE_64_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_65, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(65, s)) # define DYN_DETAIL_BOOST_PP_WHILE_65_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_66, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(66, s)) # define DYN_DETAIL_BOOST_PP_WHILE_66_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_67, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(67, s)) # define DYN_DETAIL_BOOST_PP_WHILE_67_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_68, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(68, s)) # define DYN_DETAIL_BOOST_PP_WHILE_68_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_69, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(69, s)) # define DYN_DETAIL_BOOST_PP_WHILE_69_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_70, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(70, s)) # define DYN_DETAIL_BOOST_PP_WHILE_70_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_71, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(71, s)) # define DYN_DETAIL_BOOST_PP_WHILE_71_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_72, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(72, s)) # define DYN_DETAIL_BOOST_PP_WHILE_72_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_73, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(73, s)) # define DYN_DETAIL_BOOST_PP_WHILE_73_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_74, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(74, s)) # define DYN_DETAIL_BOOST_PP_WHILE_74_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_75, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(75, s)) # define DYN_DETAIL_BOOST_PP_WHILE_75_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_76, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(76, s)) # define DYN_DETAIL_BOOST_PP_WHILE_76_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_77, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(77, s)) # define DYN_DETAIL_BOOST_PP_WHILE_77_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_78, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(78, s)) # define DYN_DETAIL_BOOST_PP_WHILE_78_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_79, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(79, s)) # define DYN_DETAIL_BOOST_PP_WHILE_79_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_80, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(80, s)) # define DYN_DETAIL_BOOST_PP_WHILE_80_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_81, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(81, s)) # define DYN_DETAIL_BOOST_PP_WHILE_81_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_82, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(82, s)) # define DYN_DETAIL_BOOST_PP_WHILE_82_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_83, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(83, s)) # define DYN_DETAIL_BOOST_PP_WHILE_83_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_84, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(84, s)) # define DYN_DETAIL_BOOST_PP_WHILE_84_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_85, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(85, s)) # define DYN_DETAIL_BOOST_PP_WHILE_85_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_86, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(86, s)) # define DYN_DETAIL_BOOST_PP_WHILE_86_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_87, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(87, s)) # define DYN_DETAIL_BOOST_PP_WHILE_87_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_88, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(88, s)) # define DYN_DETAIL_BOOST_PP_WHILE_88_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_89, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(89, s)) # define DYN_DETAIL_BOOST_PP_WHILE_89_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_90, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(90, s)) # define DYN_DETAIL_BOOST_PP_WHILE_90_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_91, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(91, s)) # define DYN_DETAIL_BOOST_PP_WHILE_91_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_92, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(92, s)) # define DYN_DETAIL_BOOST_PP_WHILE_92_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_93, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(93, s)) # define DYN_DETAIL_BOOST_PP_WHILE_93_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_94, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(94, s)) # define DYN_DETAIL_BOOST_PP_WHILE_94_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_95, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(95, s)) # define DYN_DETAIL_BOOST_PP_WHILE_95_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_96, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(96, s)) # define DYN_DETAIL_BOOST_PP_WHILE_96_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_97, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(97, s)) # define DYN_DETAIL_BOOST_PP_WHILE_97_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_98, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(98, s)) # define DYN_DETAIL_BOOST_PP_WHILE_98_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_99, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(99, s)) # define DYN_DETAIL_BOOST_PP_WHILE_99_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_100, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(100, s)) # define DYN_DETAIL_BOOST_PP_WHILE_100_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_101, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(101, s)) # define DYN_DETAIL_BOOST_PP_WHILE_101_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_102, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(102, s)) # define DYN_DETAIL_BOOST_PP_WHILE_102_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_103, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(103, s)) # define DYN_DETAIL_BOOST_PP_WHILE_103_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_104, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(104, s)) # define DYN_DETAIL_BOOST_PP_WHILE_104_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_105, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(105, s)) # define DYN_DETAIL_BOOST_PP_WHILE_105_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_106, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(106, s)) # define DYN_DETAIL_BOOST_PP_WHILE_106_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_107, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(107, s)) # define DYN_DETAIL_BOOST_PP_WHILE_107_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_108, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(108, s)) # define DYN_DETAIL_BOOST_PP_WHILE_108_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_109, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(109, s)) # define DYN_DETAIL_BOOST_PP_WHILE_109_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_110, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(110, s)) # define DYN_DETAIL_BOOST_PP_WHILE_110_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_111, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(111, s)) # define DYN_DETAIL_BOOST_PP_WHILE_111_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_112, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(112, s)) # define DYN_DETAIL_BOOST_PP_WHILE_112_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_113, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(113, s)) # define DYN_DETAIL_BOOST_PP_WHILE_113_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_114, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(114, s)) # define DYN_DETAIL_BOOST_PP_WHILE_114_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_115, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(115, s)) # define DYN_DETAIL_BOOST_PP_WHILE_115_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_116, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(116, s)) # define DYN_DETAIL_BOOST_PP_WHILE_116_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_117, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(117, s)) # define DYN_DETAIL_BOOST_PP_WHILE_117_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_118, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(118, s)) # define DYN_DETAIL_BOOST_PP_WHILE_118_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_119, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(119, s)) # define DYN_DETAIL_BOOST_PP_WHILE_119_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_120, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(120, s)) # define DYN_DETAIL_BOOST_PP_WHILE_120_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_121, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(121, s)) # define DYN_DETAIL_BOOST_PP_WHILE_121_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_122, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(122, s)) # define DYN_DETAIL_BOOST_PP_WHILE_122_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_123, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(123, s)) # define DYN_DETAIL_BOOST_PP_WHILE_123_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_124, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(124, s)) # define DYN_DETAIL_BOOST_PP_WHILE_124_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_125, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(125, s)) # define DYN_DETAIL_BOOST_PP_WHILE_125_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_126, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(126, s)) # define DYN_DETAIL_BOOST_PP_WHILE_126_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_127, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(127, s)) # define DYN_DETAIL_BOOST_PP_WHILE_127_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_128, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(128, s)) # define DYN_DETAIL_BOOST_PP_WHILE_128_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_129, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(129, s)) # define DYN_DETAIL_BOOST_PP_WHILE_129_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_130, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(130, s)) # define DYN_DETAIL_BOOST_PP_WHILE_130_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_131, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(131, s)) # define DYN_DETAIL_BOOST_PP_WHILE_131_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_132, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(132, s)) # define DYN_DETAIL_BOOST_PP_WHILE_132_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_133, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(133, s)) # define DYN_DETAIL_BOOST_PP_WHILE_133_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_134, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(134, s)) # define DYN_DETAIL_BOOST_PP_WHILE_134_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_135, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(135, s)) # define DYN_DETAIL_BOOST_PP_WHILE_135_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_136, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(136, s)) # define DYN_DETAIL_BOOST_PP_WHILE_136_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_137, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(137, s)) # define DYN_DETAIL_BOOST_PP_WHILE_137_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_138, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(138, s)) # define DYN_DETAIL_BOOST_PP_WHILE_138_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_139, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(139, s)) # define DYN_DETAIL_BOOST_PP_WHILE_139_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_140, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(140, s)) # define DYN_DETAIL_BOOST_PP_WHILE_140_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_141, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(141, s)) # define DYN_DETAIL_BOOST_PP_WHILE_141_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_142, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(142, s)) # define DYN_DETAIL_BOOST_PP_WHILE_142_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_143, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(143, s)) # define DYN_DETAIL_BOOST_PP_WHILE_143_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_144, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(144, s)) # define DYN_DETAIL_BOOST_PP_WHILE_144_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_145, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(145, s)) # define DYN_DETAIL_BOOST_PP_WHILE_145_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_146, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(146, s)) # define DYN_DETAIL_BOOST_PP_WHILE_146_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_147, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(147, s)) # define DYN_DETAIL_BOOST_PP_WHILE_147_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_148, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(148, s)) # define DYN_DETAIL_BOOST_PP_WHILE_148_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_149, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(149, s)) # define DYN_DETAIL_BOOST_PP_WHILE_149_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_150, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(150, s)) # define DYN_DETAIL_BOOST_PP_WHILE_150_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_151, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(151, s)) # define DYN_DETAIL_BOOST_PP_WHILE_151_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_152, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(152, s)) # define DYN_DETAIL_BOOST_PP_WHILE_152_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_153, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(153, s)) # define DYN_DETAIL_BOOST_PP_WHILE_153_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_154, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(154, s)) # define DYN_DETAIL_BOOST_PP_WHILE_154_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_155, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(155, s)) # define DYN_DETAIL_BOOST_PP_WHILE_155_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_156, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(156, s)) # define DYN_DETAIL_BOOST_PP_WHILE_156_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_157, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(157, s)) # define DYN_DETAIL_BOOST_PP_WHILE_157_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_158, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(158, s)) # define DYN_DETAIL_BOOST_PP_WHILE_158_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_159, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(159, s)) # define DYN_DETAIL_BOOST_PP_WHILE_159_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_160, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(160, s)) # define DYN_DETAIL_BOOST_PP_WHILE_160_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_161, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(161, s)) # define DYN_DETAIL_BOOST_PP_WHILE_161_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_162, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(162, s)) # define DYN_DETAIL_BOOST_PP_WHILE_162_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_163, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(163, s)) # define DYN_DETAIL_BOOST_PP_WHILE_163_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_164, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(164, s)) # define DYN_DETAIL_BOOST_PP_WHILE_164_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_165, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(165, s)) # define DYN_DETAIL_BOOST_PP_WHILE_165_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_166, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(166, s)) # define DYN_DETAIL_BOOST_PP_WHILE_166_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_167, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(167, s)) # define DYN_DETAIL_BOOST_PP_WHILE_167_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_168, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(168, s)) # define DYN_DETAIL_BOOST_PP_WHILE_168_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_169, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(169, s)) # define DYN_DETAIL_BOOST_PP_WHILE_169_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_170, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(170, s)) # define DYN_DETAIL_BOOST_PP_WHILE_170_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_171, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(171, s)) # define DYN_DETAIL_BOOST_PP_WHILE_171_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_172, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(172, s)) # define DYN_DETAIL_BOOST_PP_WHILE_172_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_173, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(173, s)) # define DYN_DETAIL_BOOST_PP_WHILE_173_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_174, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(174, s)) # define DYN_DETAIL_BOOST_PP_WHILE_174_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_175, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(175, s)) # define DYN_DETAIL_BOOST_PP_WHILE_175_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_176, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(176, s)) # define DYN_DETAIL_BOOST_PP_WHILE_176_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_177, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(177, s)) # define DYN_DETAIL_BOOST_PP_WHILE_177_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_178, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(178, s)) # define DYN_DETAIL_BOOST_PP_WHILE_178_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_179, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(179, s)) # define DYN_DETAIL_BOOST_PP_WHILE_179_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_180, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(180, s)) # define DYN_DETAIL_BOOST_PP_WHILE_180_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_181, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(181, s)) # define DYN_DETAIL_BOOST_PP_WHILE_181_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_182, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(182, s)) # define DYN_DETAIL_BOOST_PP_WHILE_182_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_183, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(183, s)) # define DYN_DETAIL_BOOST_PP_WHILE_183_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_184, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(184, s)) # define DYN_DETAIL_BOOST_PP_WHILE_184_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_185, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(185, s)) # define DYN_DETAIL_BOOST_PP_WHILE_185_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_186, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(186, s)) # define DYN_DETAIL_BOOST_PP_WHILE_186_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_187, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(187, s)) # define DYN_DETAIL_BOOST_PP_WHILE_187_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_188, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(188, s)) # define DYN_DETAIL_BOOST_PP_WHILE_188_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_189, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(189, s)) # define DYN_DETAIL_BOOST_PP_WHILE_189_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_190, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(190, s)) # define DYN_DETAIL_BOOST_PP_WHILE_190_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_191, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(191, s)) # define DYN_DETAIL_BOOST_PP_WHILE_191_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_192, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(192, s)) # define DYN_DETAIL_BOOST_PP_WHILE_192_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_193, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(193, s)) # define DYN_DETAIL_BOOST_PP_WHILE_193_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_194, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(194, s)) # define DYN_DETAIL_BOOST_PP_WHILE_194_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_195, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(195, s)) # define DYN_DETAIL_BOOST_PP_WHILE_195_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_196, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(196, s)) # define DYN_DETAIL_BOOST_PP_WHILE_196_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_197, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(197, s)) # define DYN_DETAIL_BOOST_PP_WHILE_197_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_198, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(198, s)) # define DYN_DETAIL_BOOST_PP_WHILE_198_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_199, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(199, s)) # define DYN_DETAIL_BOOST_PP_WHILE_199_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_200, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(200, s)) # define DYN_DETAIL_BOOST_PP_WHILE_200_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_201, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(201, s)) # define DYN_DETAIL_BOOST_PP_WHILE_201_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_202, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(202, s)) # define DYN_DETAIL_BOOST_PP_WHILE_202_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_203, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(203, s)) # define DYN_DETAIL_BOOST_PP_WHILE_203_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_204, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(204, s)) # define DYN_DETAIL_BOOST_PP_WHILE_204_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_205, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(205, s)) # define DYN_DETAIL_BOOST_PP_WHILE_205_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_206, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(206, s)) # define DYN_DETAIL_BOOST_PP_WHILE_206_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_207, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(207, s)) # define DYN_DETAIL_BOOST_PP_WHILE_207_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_208, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(208, s)) # define DYN_DETAIL_BOOST_PP_WHILE_208_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_209, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(209, s)) # define DYN_DETAIL_BOOST_PP_WHILE_209_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_210, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(210, s)) # define DYN_DETAIL_BOOST_PP_WHILE_210_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_211, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(211, s)) # define DYN_DETAIL_BOOST_PP_WHILE_211_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_212, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(212, s)) # define DYN_DETAIL_BOOST_PP_WHILE_212_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_213, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(213, s)) # define DYN_DETAIL_BOOST_PP_WHILE_213_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_214, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(214, s)) # define DYN_DETAIL_BOOST_PP_WHILE_214_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_215, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(215, s)) # define DYN_DETAIL_BOOST_PP_WHILE_215_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_216, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(216, s)) # define DYN_DETAIL_BOOST_PP_WHILE_216_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_217, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(217, s)) # define DYN_DETAIL_BOOST_PP_WHILE_217_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_218, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(218, s)) # define DYN_DETAIL_BOOST_PP_WHILE_218_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_219, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(219, s)) # define DYN_DETAIL_BOOST_PP_WHILE_219_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_220, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(220, s)) # define DYN_DETAIL_BOOST_PP_WHILE_220_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_221, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(221, s)) # define DYN_DETAIL_BOOST_PP_WHILE_221_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_222, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(222, s)) # define DYN_DETAIL_BOOST_PP_WHILE_222_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_223, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(223, s)) # define DYN_DETAIL_BOOST_PP_WHILE_223_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_224, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(224, s)) # define DYN_DETAIL_BOOST_PP_WHILE_224_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_225, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(225, s)) # define DYN_DETAIL_BOOST_PP_WHILE_225_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_226, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(226, s)) # define DYN_DETAIL_BOOST_PP_WHILE_226_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_227, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(227, s)) # define DYN_DETAIL_BOOST_PP_WHILE_227_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_228, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(228, s)) # define DYN_DETAIL_BOOST_PP_WHILE_228_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_229, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(229, s)) # define DYN_DETAIL_BOOST_PP_WHILE_229_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_230, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(230, s)) # define DYN_DETAIL_BOOST_PP_WHILE_230_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_231, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(231, s)) # define DYN_DETAIL_BOOST_PP_WHILE_231_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_232, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(232, s)) # define DYN_DETAIL_BOOST_PP_WHILE_232_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_233, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(233, s)) # define DYN_DETAIL_BOOST_PP_WHILE_233_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_234, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(234, s)) # define DYN_DETAIL_BOOST_PP_WHILE_234_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_235, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(235, s)) # define DYN_DETAIL_BOOST_PP_WHILE_235_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_236, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(236, s)) # define DYN_DETAIL_BOOST_PP_WHILE_236_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_237, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(237, s)) # define DYN_DETAIL_BOOST_PP_WHILE_237_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_238, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(238, s)) # define DYN_DETAIL_BOOST_PP_WHILE_238_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_239, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(239, s)) # define DYN_DETAIL_BOOST_PP_WHILE_239_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_240, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(240, s)) # define DYN_DETAIL_BOOST_PP_WHILE_240_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_241, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(241, s)) # define DYN_DETAIL_BOOST_PP_WHILE_241_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_242, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(242, s)) # define DYN_DETAIL_BOOST_PP_WHILE_242_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_243, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(243, s)) # define DYN_DETAIL_BOOST_PP_WHILE_243_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_244, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(244, s)) # define DYN_DETAIL_BOOST_PP_WHILE_244_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_245, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(245, s)) # define DYN_DETAIL_BOOST_PP_WHILE_245_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_246, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(246, s)) # define DYN_DETAIL_BOOST_PP_WHILE_246_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_247, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(247, s)) # define DYN_DETAIL_BOOST_PP_WHILE_247_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_248, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(248, s)) # define DYN_DETAIL_BOOST_PP_WHILE_248_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_249, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(249, s)) # define DYN_DETAIL_BOOST_PP_WHILE_249_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_250, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(250, s)) # define DYN_DETAIL_BOOST_PP_WHILE_250_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_251, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(251, s)) # define DYN_DETAIL_BOOST_PP_WHILE_251_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_252, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(252, s)) # define DYN_DETAIL_BOOST_PP_WHILE_252_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_253, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(253, s)) # define DYN_DETAIL_BOOST_PP_WHILE_253_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_254, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(254, s)) # define DYN_DETAIL_BOOST_PP_WHILE_254_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_255, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(255, s)) # define DYN_DETAIL_BOOST_PP_WHILE_255_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_256, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(256, s)) # define DYN_DETAIL_BOOST_PP_WHILE_256_C(c, p, o, s) DYN_DETAIL_BOOST_PP_IIF(c, DYN_DETAIL_BOOST_PP_WHILE_257, s DYN_DETAIL_BOOST_PP_TUPLE_EAT_3)(p, o, DYN_DETAIL_BOOST_PP_IIF(c, o, DYN_DETAIL_BOOST_PP_NIL DYN_DETAIL_BOOST_PP_TUPLE_EAT_2)(257, s)) # # # endif
3b87049cc11755728014224471506e5f9fa66ccc
49167e3bc90b88f31e6b16266e5ad4ba5edb6a36
/Assignment 6/book.h
a92b2477a54fc1fb9967f5e642a4c4734ad66eac
[]
no_license
iReekHavok/CPSC360Assignments
43a9578d1578b4c8192d86d1996bee5c9db76da5
3be6ff2a3d40960d29a4bbe2eb3c70afd3feafa7
refs/heads/master
2020-12-13T10:14:16.870582
2020-04-30T00:36:02
2020-04-30T00:36:02
234,387,035
0
0
null
null
null
null
UTF-8
C++
false
false
975
h
book.h
#ifndef BOOK_H #define BOOK_H using std::string; class Book { private: int ID; string TITLE; bool CHECKEDOUT; public: //constructors Book(); //default constructor Book(string t, int i, bool co = false); //copy constructor Book(const Book &bookObj); //getters string getTitle() const; int getID() const; //setters void setTitle(string title); void setID(int id); //other functions bool isCheckedOut(); //is the book checked out? void borrowBook(); //book gets borrowed void returnBook(); //book is returned string availability(); //output based on availability //overloads for HW6 Book operator=(const Book &right); //bookLibrary[i] = bookLibrary[j] Book operator+(const Book &right); //book titles are concatenated with a comma Book operator-(Book &right); //Book1 replaces Book2, Book2 = No Title, 0 }; #endif
a1cb15f34e2c7641bc5799ddec99879ded59f8fe
508ca425a965615f67af8fc4f731fb3a29f4665a
/Codeforces/103/A[ Testing Pants for Sadness ].cpp
97022ed9a5e46f27a325f1dab3f8331ebae69969
[]
no_license
knakul853/ProgrammingContests
2a1b216dfc20ef81fb666267d78be355400549e9
3366b6a4447dd4df117217734880199e006db5b4
refs/heads/master
2020-04-14T23:37:02.641774
2015-09-06T09:49:12
2015-09-06T09:49:12
164,209,133
1
0
null
2019-01-05T11:34:11
2019-01-05T11:34:10
null
UTF-8
C++
false
false
944
cpp
A[ Testing Pants for Sadness ].cpp
/* Alfonso2 Peterssen(mukel) Universidad de La Habana Codeforces Round 80 Beta Div. 1 */ #include <cstdio> #include <iostream> #include <sstream> #include <algorithm> #include <numeric> #include <vector> #include <deque> #include <queue> #include <stack> #include <set> #include <map> #include <cstdlib> #include <cstring> #include <cmath> #include <complex> using namespace std; typedef long long int64; #define PB(x) push_back(x) #define SZ(c) ((int)((c).size())) #define MP(x, y) make_pair((x), (y)) #define ALL(c) (c).begin(), (c).end() #define REP(i, n) for (int i = 0; i < (int)(n); ++i) #define FOR(i, b, e) for (int i = (int)b; i <= (int)(e); ++i) #define FOREACH(it, c) for (typeof((c).begin()) it = (c).begin(); it != (c).end(); ++it) #define DBG(x) cout << #x << " = " << x << endl int n; int64 ans; int main() { cin >> n; REP(i, n) { int64 x; cin >> x; ans += i * (x - 1) + x; } cout << ans << endl; return 0; }
93c7b157b89a97475e1496328c3b7f7a59a0e26e
4fa88ea74a43a44d7e9d9b25e927026c4e2a1a56
/structuredCode/OopPrinciples/Polymorphism/classTemplates.cpp
50fff8bffacfaddc2a840b297bd8f29a8a0ed0f8
[]
no_license
testinggrounds221/my-cpp-tutorials
c89b9e09e43eeb7bf965170d139878cd2e454a20
1618e4b4ea645ce4ff428ed16fe20af6b0e46b53
refs/heads/main
2023-05-03T15:42:46.992473
2021-05-23T05:24:52
2021-05-23T05:24:52
366,626,642
0
0
null
null
null
null
UTF-8
C++
false
false
463
cpp
classTemplates.cpp
#include <iostream> using namespace std; template <typename T> class Weight { private: T w; public: Weight(T n = 0) { w = n; } T getWeight() { return w; } void printWeight() { cout << w << endl; } void setData(T n) { w = n; } T setData() { return w; } }; int main() { Weight<int> wInt(5); cout << "Integer Weight : " << wInt.getWeight(); Weight<double> wDouble(4.56666); cout << "Double Weight : " << wDouble.getWeight(); return 0; }
cb811df941acb915c6a49b6690f90e53fa2e2192
ec6d46f3f06bcd303da98aeef53c693c50e2ba5c
/src/SaucyReader.cc
438be9b433a025b020b26ca20ae9f3f8bf584bc7
[]
no_license
hakan-metin/sat_symmetry
2d2cffa52d368f5bd87f18d002bff825c4041944
43d44ad1ff5622d732cb25983666719e39c1d3e8
refs/heads/master
2021-05-10T13:40:51.754933
2020-04-14T09:01:20
2020-04-14T09:01:20
118,484,879
0
0
null
null
null
null
UTF-8
C++
false
false
1,939
cc
SaucyReader.cc
// Copyright 2017 Hakan Metin - LIP6 #include "cosy/SaucyReader.h" namespace { static inline int graphNodeToInt(int node, int num_vars) { if (node <= num_vars) return node; if (node <= 2*num_vars) return num_vars - node; else return 0; // represent clause } } // namespace namespace cosy { bool SaucyReader::load(const std::string& symmetry_filename, unsigned int num_vars, Group *group) { std::unique_ptr<Permutation> generator; StreamBuffer in(symmetry_filename); int parsed, cnf_int; Literal lit; CHECK_EQ(*in, '['); ++in; CHECK_EQ(*in, '\n'); ++in; if (*in == ']') // No generator exists return true; while (*in != '\n') { CHECK_EQ(*in, '('); generator = std::unique_ptr<Permutation>(new Permutation(num_vars)); while (*in == '(') { ++in; parsed = in.readInt(); cnf_int = graphNodeToInt(parsed, num_vars); if (cnf_int != 0) { lit = Literal(cnf_int); generator->addToCurrentCycle(lit); } while (*in != ')') { CHECK_EQ(*in, ','); ++in; parsed = in.readInt(); cnf_int = graphNodeToInt(parsed, num_vars); if (cnf_int != 0) { lit = Literal(cnf_int); generator->addToCurrentCycle(lit); } } CHECK_EQ(*in, ')'); generator->closeCurrentCycle(); ++in; } group->addPermutation(std::move(generator)); /* End of Generator line */ if (*in == ',') { ++in; CHECK_EQ(*in, '\n'); ++in; } } ++in; CHECK_EQ(*in, ']'); return true; } } // namespace cosy /* * Local Variables: * mode: c++ * indent-tabs-mode: nil * End: */
c78767a89ebe57ffc145e6a5cce15b46c0db56d3
d6ab38714f7a5f0dc6d7446ec20626f8f539406a
/backend/collecting/collectedFiles/C++/edited/dolphin-emudolphinblob4c004b6dc978d7585bf0765e22351ef1edd39a3aExternalswxWidgets3includewxprivatefdioeventloopsourcehandler.h
096865d5029157fa2d0773228801b7c3d718c537
[ "BSL-1.0" ]
permissive
haditabatabaei/webproject
8db7178affaca835b5d66daa7d47c28443b53c3d
86b3f253e894f4368a517711bbfbe257be0259fd
refs/heads/master
2020-04-10T09:26:25.819406
2018-12-08T12:21:52
2018-12-08T12:21:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
699
h
dolphin-emudolphinblob4c004b6dc978d7585bf0765e22351ef1edd39a3aExternalswxWidgets3includewxprivatefdioeventloopsourcehandler.h
#ifndef _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H #define _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H #include "wx/evtloopsrc.h" class wxFDIOEventLoopSourceHandler : public wxFDIOHandler { public: wxEXPLICIT wxFDIOEventLoopSourceHandler(wxEventLoopSourceHandler* handler) : m_handler(handler) { } virtual void OnReadWaiting() wxOVERRIDE { m_handler->OnReadWaiting(); } virtual void OnWriteWaiting() wxOVERRIDE { m_handler->OnWriteWaiting(); } virtual void OnExceptionWaiting() wxOVERRIDE { m_handler->OnExceptionWaiting(); } protected: wxEventLoopSourceHandler* const m_handler; wxDECLARE_NO_COPY_CLASS(wxFDIOEventLoopSourceHandler); }; #endif
9d8ecc21b3c81dba33c8f3fb0b2b57bcd97fd162
284913caff5a968d45d2e5a8f12bc6a4c5f011c5
/src/grib_property/src/computed/data_time_property.cpp
9384fb7b2a153dc6e8ea559b62a471509dc73348
[ "MIT" ]
permissive
perillaroc/nwpc-codes-cpp
fa6d4c8631e0ab12b0f70d4234b7d29fa8a25914
a051d027ca7fb251b4bd992a790f1e04bdb5d315
refs/heads/master
2020-06-01T07:55:12.530729
2019-12-01T10:22:02
2019-12-01T10:22:02
190,707,703
1
2
null
null
null
null
UTF-8
C++
false
false
1,716
cpp
data_time_property.cpp
#include "grib_property/computed/data_time_property.h" #include <grib_coder/grib_message_handler.h> #include <fmt/format.h> #include <cmath> namespace grib_coder { void DataTimeProperty::setLong(long value) { hour_ = static_cast<int>(std::floor(value / 100)); minute_ = value % 100; second_ = 0; encodeToComponents(); } long DataTimeProperty::getLong() { if (hour_ == 255) { return 0; } if (minute_ == 255) { return hour_ * 100; } return hour_ * 100 + minute_; } void DataTimeProperty::setDouble(double value) { setLong(static_cast<long>(value)); } double DataTimeProperty::getDouble() { return static_cast<double>(getLong()); } void DataTimeProperty::setString(const std::string& value) { // HH:MM hour_ = std::stoi(value.substr(0, 2)); minute_ = std::stoi(value.substr(3, 2)); second_ = 0; } std::string DataTimeProperty::getString() { if (hour_ == 255) { return "00:00"; } if (minute_ == 255) { return fmt::format("{hour:02}:00", fmt::arg("hour", hour_)); } return fmt::format("{hour:02}:{minute:02}", fmt::arg("hour", hour_), fmt::arg("minute", minute_));; } bool DataTimeProperty::decode(GribMessageHandler* container) { message_handler_ = container; hour_ = container->getLong("hour"); minute_ = container->getLong("minute"); second_ = container->getLong("second"); return true; } void DataTimeProperty::encodeToComponents() { if (message_handler_ == nullptr) { return; } message_handler_->setLong("hour", hour_); message_handler_->setLong("minute", minute_); message_handler_->setLong("second", second_); } } // namespace grib_coder
5537430cf2eb53f1ace72afcd1fc852ae1375e11
4e1b814e2c9de4c8db24158d21e6c87f4307bb7c
/Source/Engine/Render/AnimationInstance.cpp
a3919ac24dea9d29a9fb3e178c6d477d05c866f3
[]
no_license
terryjsmith/grokitgames
03a918d32d088e2608460a7e2b3bdc2a74de7baa
5e73f4910ca0a82875f1e4c105020dba78f21f8b
refs/heads/master
2023-03-22T00:00:37.948703
2021-03-11T01:12:46
2021-03-11T01:12:46
243,649,866
0
0
null
null
null
null
UTF-8
C++
false
false
39
cpp
AnimationInstance.cpp
#include <Render/AnimationInstance.h>
8758f5867a024f13a7dd7d02253d99318bb97cca
6e24136b0e730cbaf52ee2d73dca514d5762620a
/practice/hw1-3_shape/src/rectangle.h
ecd632586f706f70556fa909970faea74d43f98e
[]
no_license
derry95922/POSD
d7f6f22f59ca90c67105a22fde8ccdaaed8a2278
370b41ee15ebb3a24ede3182b22082e8c2b7e632
refs/heads/master
2020-05-20T05:28:17.342543
2019-05-07T13:35:29
2019-05-07T13:35:29
185,405,048
0
0
null
null
null
null
UTF-8
C++
false
false
289
h
rectangle.h
#ifndef RECTANGLE #define RECTANGLE #include "shape.h" class Rectangle:public Shape{ public: Rectangle(double w,double l):_w(w),_l(l){ } double area() { return _w*_l; } double perimeter(){ return 2*(_w+_l); } private: double _w,_l; }; #endif
b8ddd01ae38973c14d885f66b5319c6f2ba7df76
684c9beb8bd972daeabe5278583195b9e652c0c5
/src/net/quic/quic_time_test.cc
99b7fab572e97de7e0c52acb760778809e5cfb24
[ "BSD-3-Clause" ]
permissive
elgamar/cobalt-clone
a7d4e62630218f0d593fa74208456dd376059304
8a7c8792318a721e24f358c0403229570da8402b
refs/heads/master
2022-11-27T11:30:31.314891
2018-10-26T15:54:41
2018-10-26T15:55:22
159,339,577
2
4
null
2022-11-17T01:03:37
2018-11-27T13:27:44
C++
UTF-8
C++
false
false
3,148
cc
quic_time_test.cc
// Copyright (c) 2012 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 "net/quic/quic_time.h" #include "net/quic/test_tools/mock_clock.h" #include "testing/gtest/include/gtest/gtest.h" namespace net { namespace testing { class QuicTimeDeltaTest : public ::testing::Test { protected: }; TEST_F(QuicTimeDeltaTest, Zero) { EXPECT_TRUE(QuicTime::Delta().IsZero()); EXPECT_FALSE(QuicTime::Delta::FromMilliseconds(1).IsZero()); } TEST_F(QuicTimeDeltaTest, Infinite) { EXPECT_TRUE(QuicTime::Delta::Infinite().IsInfinite()); EXPECT_FALSE(QuicTime::Delta().IsInfinite()); EXPECT_FALSE(QuicTime::Delta::FromMilliseconds(1).IsInfinite()); } TEST_F(QuicTimeDeltaTest, FromTo) { EXPECT_EQ(QuicTime::Delta::FromMilliseconds(1), QuicTime::Delta::FromMicroseconds(1000)); EXPECT_EQ(1, QuicTime::Delta::FromMicroseconds(1000).ToMilliseconds()); EXPECT_EQ(1000, QuicTime::Delta::FromMilliseconds(1).ToMicroseconds()); } TEST_F(QuicTimeDeltaTest, Add) { EXPECT_EQ(QuicTime::Delta::FromMicroseconds(2000), QuicTime::Delta().Add(QuicTime::Delta::FromMilliseconds(2))); } TEST_F(QuicTimeDeltaTest, Subtract) { EXPECT_EQ(QuicTime::Delta::FromMicroseconds(1000), QuicTime::Delta::FromMilliseconds(2).Subtract( QuicTime::Delta::FromMilliseconds(1))); } class QuicTimeTest : public ::testing::Test { protected: MockClock clock_; }; TEST_F(QuicTimeTest, Initialized) { EXPECT_FALSE(QuicTime().IsInitialized()); EXPECT_TRUE(QuicTime::FromMilliseconds(1).IsInitialized()); } TEST_F(QuicTimeTest, FromTo) { EXPECT_EQ(QuicTime::FromMilliseconds(1), QuicTime::FromMicroseconds(1000)); EXPECT_EQ(1u, QuicTime::FromMicroseconds(1000).ToMilliseconds()); EXPECT_EQ(1000u, QuicTime::FromMilliseconds(1).ToMicroseconds()); } TEST_F(QuicTimeTest, Add) { QuicTime time_1 = QuicTime::FromMilliseconds(1); QuicTime time_2 = QuicTime::FromMilliseconds(1); time_1 = time_1.Subtract(QuicTime::Delta::FromMilliseconds(1)); QuicTime::Delta diff = time_2.Subtract(time_1); EXPECT_EQ(QuicTime::Delta::FromMilliseconds(1), diff); EXPECT_EQ(1000, diff.ToMicroseconds()); EXPECT_EQ(1, diff.ToMilliseconds()); } TEST_F(QuicTimeTest, Subtract) { QuicTime time_1 = QuicTime::FromMilliseconds(1); QuicTime time_2 = QuicTime::FromMilliseconds(2); EXPECT_EQ(QuicTime::Delta::FromMilliseconds(1), time_2.Subtract(time_1)); } TEST_F(QuicTimeTest, SubtractDelta) { QuicTime time = QuicTime::FromMilliseconds(2); EXPECT_EQ(QuicTime::FromMilliseconds(1), time.Subtract(QuicTime::Delta::FromMilliseconds(1))); } TEST_F(QuicTimeTest, MockClock) { clock_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1)); QuicTime now = clock_.Now(); QuicTime time = QuicTime::FromMicroseconds(1000); EXPECT_EQ(now, time); clock_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1)); now = clock_.Now(); EXPECT_NE(now, time); time = time.Add(QuicTime::Delta::FromMilliseconds(1)); EXPECT_EQ(now, time); } } // namespace testing } // namespace net
b3b47420349de44f4d19f641fdf847dd9dd6b1e2
cbc166f9cd5873ac39f04293f2d996979aa11ee0
/삼성문제/D3_6692_다솔이의월급상자.cpp
e81336c84bd35ecd6714249acb7ee7779aa0fa29
[]
no_license
IMHOSUNG/solveProblem
b7d5f915cd07ac54be517f09623cec5cd9c6f63c
94739fb96d306ac63056ca629b701f3326326d31
refs/heads/master
2020-04-27T19:53:38.032399
2019-04-17T14:55:18
2019-04-17T14:55:18
174,638,384
0
0
null
null
null
null
UTF-8
C++
false
false
396
cpp
D3_6692_다솔이의월급상자.cpp
#define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; int main() { int testCase = 0; scanf("%d", &testCase); for (int t = 1; t <= testCase; t++) { int N = 0; scanf("%d", &N); double answer = 0.0; for (int i = 0; i < N; i++) { double p1 = 0.0; int x1 = 0; scanf("%lf %d", &p1, &x1); answer += p1 * x1; } printf("#%d %lf\n", t, answer); } }
06d0daa1e0be1666c165255c7849daf5aae20e4d
603f67d050fa72f3df712fc4c4f197401e88ee04
/image_manip/include/image_manip/roto_zoom.h
b3c0264ea10278eec5f7a68f672c22c8f8f4e89e
[ "BSD-3-Clause" ]
permissive
lucasw/image_manip
da4caed0e97037f661d38ddbd1df412248d28243
68b82cf48107244eecc431799168d5a4d57e7204
refs/heads/master
2023-06-07T19:18:03.398800
2023-01-20T16:00:10
2023-01-20T16:00:10
95,515,758
4
0
null
null
null
null
UTF-8
C++
false
false
3,157
h
roto_zoom.h
/* * Copyright (c) 2017 Lucas Walter * June 2017 * 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 Willow Garage, Inc. 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. */ #ifndef IMAGE_MANIP_ROTO_ZOOM_H #define IMAGE_MANIP_ROTO_ZOOM_H #include <deque> #include <dynamic_reconfigure/server.h> #include <image_manip/RotoZoomConfig.h> #include <map> #include <nodelet/nodelet.h> #include <ros/ros.h> #include <sensor_msgs/Image.h> #include <std_msgs/Float32.h> #include <string> #include <vector> namespace image_manip { class RotoZoom : public nodelet::Nodelet { // image_transport::ImageTransport it_; ros::Publisher pub_; ros::Subscriber sub_; ros::Subscriber background_sub_; std::map<std::string, ros::Subscriber> param_sub_; std::map<std::string, double*> params_; void paramCallback(std_msgs::Float32::ConstPtr msg, const std::string name); image_manip::RotoZoomConfig config_; typedef dynamic_reconfigure::Server<image_manip::RotoZoomConfig> ReconfigureServer; boost::shared_ptr< ReconfigureServer > server_; void callback(image_manip::RotoZoomConfig& config, uint32_t level); boost::recursive_mutex dr_mutex_; std::deque<sensor_msgs::ImageConstPtr> images_; sensor_msgs::ImageConstPtr background_image_; // this contains no image data, just a reference for the height, width, etc. sensor_msgs::Image output_image_info_; void imageCallback(const sensor_msgs::ImageConstPtr& msg); void backgroundImageCallback(const sensor_msgs::ImageConstPtr& msg); bool dirty_; ros::Timer timer_; void update(const ros::TimerEvent& e); public: virtual void onInit(); RotoZoom(); ~RotoZoom(); }; } // namespace image_manip #endif // IMAGE_MANIP_ROTO_ZOOM_H
5ae2be90664b1d199e5ea06965b800961f58c8e4
d21cf57e0508d734c9b2861219cd1422ded9520a
/cpp_tests/ptr_to_memberfunc.cpp
13b46125e2ccb887bae7399afc55970047fbb7aa
[]
no_license
gomesrod/personal-labs
2dc86f7781b2f3e1a15a36e3b27a4fdfc0833f05
00671b9c7cdc54cd9281ea2a9766e9ff7f3bd6f1
refs/heads/master
2023-01-24T19:28:39.181976
2020-03-18T20:00:35
2020-03-18T20:00:35
193,377,379
0
0
null
2023-01-04T01:01:06
2019-06-23T17:35:35
C
UTF-8
C++
false
false
1,121
cpp
ptr_to_memberfunc.cpp
#include <iostream> #include <vector> class A { public: int mult2(int val) { return val*2; } int mult3(int val) { return val*3; } }; class B { public: int val; B(int v) : val(v) { } int mult2() { return val*2; } int mult3() { return val*3; } }; using namespace std; template<typename ElementType, typename FuncRetType> void operateOnAll(vector<ElementType> items, FuncRetType (ElementType::*function)(void)) { typename vector<ElementType>::iterator iter; for(iter = items.begin(); iter < items.end(); iter++) { ElementType elem = *iter; FuncRetType ret = (elem.*function)(); cout << ret << endl; } } int main() { // A simple example int (A::*f)(int); A a; f = &A::mult2; cout << (a.*f)(100) << endl; f = &A::mult3; cout << (a.*f)(100) << endl; // Now using the template vector<B> vec; vec.push_back(B(1000)); vec.push_back(B(1001)); vec.push_back(B(1002)); vec.push_back(B(1003)); operateOnAll<B, int>(vec, &B::mult2); operateOnAll(vec, &B::mult3); //deduzindo automaticamente return 0; }
3d2ad43e9e6e80cb69385cadf916ec8fe8b81b11
8f100cb7e5d6b2024e923f8a220c96f703c7172b
/costar_planning_interface/cpp/instantiated_skill.cpp
dc1bd9171b95b43cd2759b645409a6ece59f4170
[ "Apache-2.0" ]
permissive
lk-greenbird/costar_plan
c862eab2e5ca34bd93f5364d4baab7138d897194
be5c12f9d0e9d7078e6a5c283d3be059e7f3d040
refs/heads/master
2022-02-09T17:45:46.403376
2019-07-23T14:41:43
2019-07-23T14:41:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,501
cpp
instantiated_skill.cpp
#include <costar_task_plan/instantiated_skill.h> #include <costar_task_plan/visualize.h> //#include <costar_task_plan/utils/params.hpp> #include <math.h> using namespace costar_plan_msgs; using trajectory_msgs::JointTrajectory; using trajectory_msgs::JointTrajectoryPoint; namespace costar { /** * set all variables back to original values * set all children to not done */ void InstantiatedSkill::reset() { model_norm = p.base_model_norm; best_p = LOW_PROBABILITY; cur_iter = 0; good_iter = 0; good_iter = 0; if(dmp_dist and touched) { //dmp_dist->initializePose(*features,*skill); dmp_dist->addNoise(0.0005); } touched = false; best_idx = 0; for (double &d: iter_lls) { d = 0; } for (InstantiatedSkillPtr ptr: next) { ptr->reset(); } //for (unsigned int i = 0; i < T.size(); ++i) { // last_T[i] = 1.0 / T.size(); // T[i] = 1.0 / T.size(); //} } /** * normalize the transition probabilities */ void InstantiatedSkill::updateTransitions() { //if (p.random_transitions) { return; } double last_tsum = 0; double tsum = 0; for (unsigned int i = 0; i < T.size(); ++i) { last_tsum += last_T[i]; tsum += T[i]; } if (tsum < 1e-200 or p.random_transitions) { for (unsigned int i = 0; i < T.size(); ++i) { T[i] = last_T[i]/last_tsum; } return; } else { for(unsigned int i = 0; i < T.size(); ++i) { T[i] = ((1 - p.step_size)*(last_T[i]/last_tsum)) + (p.step_size * (T[i] / tsum)); last_T[i] = T[i]; } } if (p.verbosity > 0) { std::cout << "Transitions: "; for(unsigned int i = 0; i < T.size(); ++i) { std::cout << T[i] << " "; } std::cout << std::endl; } } /* * set prior */ InstantiatedSkill &InstantiatedSkill::setPrior(const double &prior_) { prior = prior_; } // randomly sample an index from the probabilities unsigned int InstantiatedSkill::sampleIndex(unsigned int nsamples) const { // sample a random index from the skill assert(fabs(acc.at(nsamples-1) - 1) < 1e-5); double r = (double)rand() / RAND_MAX; //double r = unif_rand(re); for (unsigned int i = 0; i < nsamples; ++i) { if (r < acc.at(i)) return i; } return 0; } void InstantiatedSkill::accumulateProbs(const std::vector<double> &prev_ps, unsigned int len) { /************* ACCUMULATE PROBABILITIES *************/ for (unsigned int i = 0; i < len; ++i) { if (i > 0) { acc[i] = exp(prev_ps[i]) + acc[i-1] + 0.1; } else { acc[i] = exp(prev_ps[i]) + 0.01; } //acc[i] = i+1; } for (double &d: acc) { d /= acc[len-1]; assert (not std::isnan(d)); } if (p.verbosity > 3) { std::cout << "accumulating for " << id << ": "; for (double &d: acc) { std::cout << d << " "; } std::cout << "\n"; } } void InstantiatedSkill::copyEndPoints(const std::vector<JointTrajectoryPoint> &prev_end_pts, const std::vector<double> &prev_ps, unsigned int len) { for (unsigned int i = 0; i < len; ++ i) { start_ps[i] = prev_ps.at(i); end_pts[i].positions = prev_end_pts.at(i).positions; end_pts[i].velocities = prev_end_pts.at(i).velocities; } } /** * add some noise and refresh norm terms */ void InstantiatedSkill::refresh(int horizon) { //std::cout << "refreshing\n"; //model_norm = p.base_model_norm; good_iter = 0; if(dmp_dist) { dmp_dist->addNoise(0.0001); } if (not p.random_transitions) { for (double &t : T) { t = 1; } } updateTransitions(); model_norm = p.base_model_norm; if (horizon > 0) { for (auto &child: next) { child->refresh(horizon-1); } } } void InstantiatedSkill::updateCurrentAttachedObjectFrame() { if (skill and skill->hasAttachedObject()) { std::cout << "UPDATING: " << skill->getAttachedObject() << "\n"; useCurrentFeatures = true; currentAttachedObjectFrame = features->lookup(AGENT).Inverse() * features->lookup(skill->getAttachedObject()); } for (auto &child: next) { child->updateCurrentAttachedObjectFrame(); } } /** * find best entries */ void InstantiatedSkill::updateBest(unsigned int nsamples) { best_p = 0; for (unsigned int i = 0; i < nsamples; ++i) { if (ps[i] > best_p) { best_p = ps[i]; best_idx = i; } } } /** * print out debug info on child probabilities and current ("my") probabilities */ void InstantiatedSkill::debugPrintCurrentChildProbabilities(unsigned int samples) { for (unsigned int i = 0; i < samples; ++i) { if (skill) { std::cout << "[" << id << "] " << skill->getName() << ": "<<my_ps[i]; } else { std::cout << "[" << id << "] [no skill]" << ": "<<my_ps[i]; } for (unsigned int next = 0; next < T.size(); ++next) { std::cout << " + "<< next_ps[next][i]; } std::cout << " = " << my_ps[i] << " + " << avg_next_ps[i]; std::cout << "\n"; } } /** * run a single iteration of the loop. return a set of trajectories. * this is very similar to code in the demo */ void InstantiatedSkill::step(const std::vector<double> &prev_ps, const std::vector<JointTrajectoryPoint> &prev_end_pts, std::vector<double> &ps_out, double &probability, unsigned int len, int horizon, unsigned int nsamples) { unsigned int next_len = nsamples; last_samples = nsamples; if (len == 0 || horizon < 0 || nsamples == 0) { std::cout << "SKIPPING\n"; probability = 1e-200; return; } else if (horizon == 0 || next.size() == 0) { initializeNextPs(next_ps,0); } else { initializeNextPs(next_ps,LOW_PROBABILITY); } touched = true; initializePs(prev_p_sums,0); initializePs(avg_next_ps,0); initializeCounts(prev_counts,0u); accumulateProbs(prev_ps,len); /************* SAMPLE TRAJECTORIES IF NECESSARY *************/ if (not skill) { copyEndPoints(prev_end_pts, prev_ps, len); next_len = len; } else if (done) { next_len = 1; my_ps[0] = MAX_PROBABILITY; end_pts[0].positions = trajs[best_idx].points.rbegin()->positions; end_pts[0].velocities = trajs[best_idx].points.rbegin()->velocities; } else { // sample start points for (unsigned int i = 0; i < nsamples; ++i) { unsigned int idx = sampleIndex(len); assert (idx < len); // sample an index start_pts[i].positions = prev_end_pts[idx].positions; start_pts[i].velocities = prev_end_pts[idx].velocities; start_ps[i] = prev_ps[idx]; prev_idx[i] = idx; ps_out[idx] = 0; } if (not skill->isStatic()) { // sample trajectories features->setUseDiff(true); next_len = dmp_dist->sample(start_pts,params,trajs,nsamples); } else { features->setUseDiff(false); // just stay put for (unsigned int i = 0; i < nsamples; ++i) { trajs[i].points.resize(1); trajs[i].points[0].positions = start_pts[i].positions; trajs[i].points[0].velocities.resize(start_pts[i].positions.size()); for (double &v : trajs[i].points[0].velocities) { v = 0.; } } } // compute probabilities for (unsigned int j = 0; j < nsamples; ++j) { // TODO: speed this up std::vector<Pose> poses = robot->FkPos(trajs[j]); skill->resetModel(); skill->addModelNormalization(model_norm); if (useCurrentFeatures) { //std::cout << currentAttachedObjectFrame << "\n"; features->getFeaturesForTrajectory( traj_features, skill->getFeatures(), poses, skill->hasAttachedObject(), currentAttachedObjectFrame); } else { features->getFeaturesForTrajectory( traj_features, skill->getFeatures(), poses, dmp_dist->hasAttachedObject(), dmp_dist->getAttachedObjectFrame()); } skill->normalizeData(traj_features); FeatureVector v = skill->logL(traj_features); my_ps[j] = log(v.array().exp().sum() / v.size()); // would add other terms first if (p.verbosity > 1) { std::cout << "[" << id << "] " << j << ": " << skill->getName() << ": "<< my_ps[j]<<" + "<< start_ps[j]<<"\n"; } if (trajs[j].points.size() < 1) { my_ps[j] = LOW_PROBABILITY; continue; } end_pts[j].positions.resize(robot->getDegreesOfFreedom()); end_pts[j].velocities.resize(robot->getDegreesOfFreedom()); // set up all the end points! for (unsigned int ii = 0; ii < robot->getDegreesOfFreedom(); ++ii) { end_pts[j].positions[ii] = trajs[j].points.rbegin()->positions[ii]; end_pts[j].velocities[ii] = trajs[j].points.rbegin()->velocities[ii]; } } } // check to make sure this is a valid path to explore double avg_so_far = 0; for (unsigned int j = 0; j < nsamples; ++j) { ps[j] = my_ps[j] + start_ps[j]; avg_so_far += exp(my_ps[j]); } avg_so_far /= nsamples; // do we want to continue? // if so descend through the tree // descent through the tree if (horizon > 0 && log(avg_so_far) > LOW_PROBABILITY) { unsigned int next_skill_idx = 0; for (auto &ns: next) { unsigned int next_nsamples = floor((T[next_skill_idx]*nsamples)); if (next_nsamples > 0) { ns->step(my_ps, end_pts, next_ps[next_skill_idx], T[next_skill_idx], // outputs next_len, horizon-1, next_nsamples); // params } if (p.verbosity > 0) { std::cout << " >>> probability of " << ns->skill->getName() << " " << ns->id << " = " << T[next_skill_idx] << std::endl; } ++next_skill_idx; } // compute the probabilities for (unsigned int i = 0; i < T.size(); ++i) { //double next_nsamples_ratio = floor((T[i]*nsamples)) / (double)nsamples; for(unsigned int j = 0; j < nsamples; ++j) { avg_next_ps[j] += T[i] * exp(next_ps[i][j]); } } } else { for (unsigned int i = 0; i < nsamples; ++i) { avg_next_ps[i] = 1; } } for (unsigned int i = 0; i < nsamples; ++i) { avg_next_ps[i] = log(avg_next_ps[i]); ps[i] = start_ps[i] + my_ps[i] + avg_next_ps[i]; my_future_ps[i] = my_ps[i] + avg_next_ps[i]; } if (p.verbosity > 1) debugPrintCurrentChildProbabilities(nsamples); // update probabilities for all { // now loop over all the stuff! // go over probabilities and make sure they work // use the start_idx field to match start_idx to double prev_psum_sum = 0; probability = 0; for (unsigned int i = 0; i < nsamples; ++i) { if (p.verbosity > 2) { std::cout << " - propogating p(" << i << ") = " << my_ps[i] + avg_next_ps[i] << " back to " << prev_idx[i] << " ... " << log(probability) << "\n"; } prev_p_sums[prev_idx[i]] += exp(my_ps[i]+avg_next_ps[i]); ++prev_counts[prev_idx[i]]; probability += exp(my_ps[i]+avg_next_ps[i]); } //probability /= nsamples; last_probability = probability; // update transitions based on these results for (unsigned int i = 0; i < len; ++i) { if (prev_counts[i] > 0) { ps_out[i] += log(prev_p_sums[i] / prev_counts[i]); } else { ps_out[i] += 0; } if (p.verbosity > 1) { std::cout << " - future sum for " << i << " = " << ps_out[i] << " (" << prev_counts[i] << " chosen, sum = " << log(prev_p_sums[i]) << ")" << "\n"; } } } double sum = 0; double future_sum = 0; // normalize everything { for (unsigned int i = 0; i < nsamples; ++i) { sum += exp(ps[i]); future_sum += exp(my_future_ps[i]); } // normalize here for (unsigned int i = 0; i < nsamples; ++i) { ps[i] = exp(ps[i]) / sum; my_future_ps[i] = exp(my_future_ps[i]) / future_sum; } } updateBest(nsamples); updateTransitions(); bool skip = false; if (log(sum) < LOW_PROBABILITY) { skip = true; //std::cout << "nothing here \n"; } if(skill and not skill->isStatic() and not skip) { if (p.verbosity > 4) { std::cout << skill->getName() << " probabilities: "; for (double &p: ps) { std::cout << p << " "; } std::cout << std::endl; } if (nsamples > 1) { dmp_dist->update(params,my_future_ps,nsamples,p.noise,p.step_size); if (p.fixed_distribution_noise) { dmp_dist->addNoise(p.distribution_noise); } else { dmp_dist->addNoise(pow(0.1,(good_iter)+4)); } } } // compute ll for this iteration iter_lls[cur_iter] = sum / p.ntrajs; // decrease normalization if (cur_iter > 0 and iter_lls[cur_iter] > 1e-20 and iter_lls[cur_iter] > iter_lls[cur_iter-1]) { model_norm *= p.model_norm_step; ++good_iter; //std::cout << "THAT WAS GOOD\n"; } if (p.verbosity >= 0) { if (skill) { std::cout << "[" << id << "] " << skill->getName() << " >>>> AVG P = " << (sum / len) << std::endl; } else { std::cout << "[" << id << "] [no skill] >>>> AVG P = " << (sum / len) << std::endl; } } ++cur_iter; } /** * descend through the tree * execute as we reach nodes that require it * use gripper tool to send messages */ bool InstantiatedSkill::execute(CostarPlanner &gp, actionlib::SimpleActionClient<costar_plan_msgs::CommandAction> &ac, int horizon, bool replan, int replan_depth) { assert(ros::ok()); ros::spinOnce(); std::cout << "EXECUTING: "; if (skill) { std::cout << skill->getName() << "\n"; } else { std::cout << "n/a\n"; } std::cout << "Replanning? " << replan << ": "; std::cout << "best idx = " << best_idx << ", "; std::cout << "best p = " << best_p << "\n"; if (not touched) { replan = true; } else if (horizon > 0) { for (unsigned int i = 0; i < next.size(); ++i) { if ((not next[i]->touched) and T[i] > 1e-100) { std::cout << "Child " << i << " not touched yet!\n"; replan = true; } } } // trigger action server CommandGoal cmd; if (skill) { cmd.name = skill->getName(); if (not skill->isStatic()) { cmd.traj = trajs[best_idx]; } } if (features) { cmd.keys = features->getClasses(); cmd.values = features->getIds(); } std::cout << "waiting for server... (" << horizon << ")\n"; ac.waitForServer(); std::cout << "sending command...\n"; ac.sendGoal(cmd); std::cout << "waiting for result\n"; ac.waitForResult(); done = true; if (horizon > 0 && next.size() > 0) { // replan if necessary if (replan or (skill and skill->isStatic())) { std::cout << "In main replan loop.\n"; useCurrentFeatures = true; updateCurrentAttachedObjectFrame(); std::cout << ">> " << gp.currentPos()[0] << "\n"; if (robot) { robot->updateHint(gp.currentPos()); robot->updateVelocityHint(gp.currentVel()); } features->updateWorldfromTF(); updateCurrentAttachedObjectFrame(); std::vector<trajectory_msgs::JointTrajectoryPoint> starts(1); std::vector<double> root_next_ps(1); start_ps.resize(1); start_ps[0] = MAX_PROBABILITY; for (auto &pt: starts) { pt.positions = gp.currentPos(); pt.velocities = gp.currentVel(); } reset(); double probability = MAX_PROBABILITY; int my_horizon = horizon; if (replan_depth > 0) { std::cout << "setting replan depth: "; my_horizon = replan_depth; std::cout << "horizon = " << my_horizon << "\n"; } else { std::cout << "horizon = " << my_horizon << "\n"; } for (unsigned int i = 0; i < p.iter; ++i) { assert(ros::ok()); ros::spinOnce(); features->updateWorldfromTF(); step(start_ps,starts, root_next_ps,probability, 1,my_horizon,p.ntrajs); publish(); //replan = false; if (i > 0 and fabs(iter_lls[i] - iter_lls[i-1]) < (p.update_horizon * iter_lls[i])) { if (not replan_depth and my_horizon < horizon) { my_horizon++; refresh(my_horizon); } else { break; } } } } // continue execution double best_t_p = 0; unsigned int idx = 0; for (unsigned int i = 0; i < T.size(); ++i) { if (T[i] > best_t_p) { idx = i; best_t_p = T[i]; } } //replan = replan or (skill and skill->isStatic()); return next[idx]->execute(gp,ac,horizon-1,false,replan_depth); } else { std::cout << "Execution done: " << horizon << ", " << next.size() << "\n"; return true; } } void InstantiatedSkill::publish() { if (not touched) { return; } else if (pub and skill) { pub->publish(toPoseArray(trajs,features->getWorldFrame(),robot)); } double best_t_p = 0; unsigned int idx = 0; if (next.size() > 0) { for (unsigned int i = 0; i < T.size(); ++i) { if (T[i] > best_t_p) { idx = i; best_t_p = T[i]; } } next[idx]->publish(); } } const Pose &InstantiatedSkill::getAttachedObjectFrame() const { return currentAttachedObjectFrame; } }
2b5f7017a0c9f8d5ab07b7a4a859334c989bd305
f772ab10ebfab4ac0175ae267248821a3facb574
/146_LRU_Cache.cpp
9f4793e7e2ac021984b0442806e33e8e32b83180
[]
no_license
cjhgo/leetcode
a9e357423006e82402547c6114bc5f36772cd87f
8217f3b29ed601427f89d121b2fca447c01eeb9b
refs/heads/master
2020-03-20T21:56:18.847107
2019-09-10T14:09:09
2019-09-10T14:09:09
137,769,523
4
0
null
null
null
null
UTF-8
C++
false
false
2,078
cpp
146_LRU_Cache.cpp
#include<iostream> #include<vector> #include<string> #include <list> #include <unordered_map> using namespace std; static const auto x=[](){ std::ios::sync_with_stdio(false); std:cin.tie(nullptr); return nullptr; }(); typedef std::pair<int,int> cache_item_type; typedef std::list<cache_item_type> cache_type; typedef std::unordered_map <int,cache_type::iterator> cache_map_type; class LRUCache { private: int capacity; cache_type cache; cache_map_type cache_map; public: LRUCache(int capacity_):capacity(capacity_){}; int get(int key) { //cache不存在这个key if(not cache_map.count(key)) return -1; auto ele = cache_map[key]; //cache中存在这个key,根据key得到对应的链表节点,插入到front cache.splice(cache.begin(), cache, ele); return (*ele).second; } void put(int key, int value) { if(cache_map.count(key)) {//cache中已经存在这个key了,更新value,然后promote对应的链表节点 auto ele = cache_map[key]; (*ele).second=value; cache.splice(cache.begin(), cache, ele); return; } if( cache.size() == capacity) {//cache已满,把最后一个删掉,既要从map中删,也要从list中删 auto last = cache.back(); int oldkey = last.first; cache_map.erase(oldkey); cache.pop_back(); } //在front创建一个key,value,map保存key和对应的iterator cache.emplace_front(key,value); cache_map[key] = cache.begin(); } }; int main(int argc, char const *argv[]) { LRUCache cache ( 2/* capacity */ ); std::cout<<std::endl<<cache.get(1); // returns 1 cache.put(3, 3); // evicts key 2 std::cout<<std::endl<<cache.get(2); // returns -1 (not found) cache.put(4, 4); // evicts key 1 cache.put(3, 4); // evicts key 1 std::cout<<std::endl<<cache.get(1); // returns -1 (not found) std::cout<<std::endl<<cache.get(3); // returns 4 std::cout<<std::endl<<cache.get(4); // returns 4 return 0; }
0cd269c2c046e36f714c9365cec1b53b47af1115
c2cc84d5e21ac6908177a97c7398ce49325ccce4
/Source/UROSBridge/Public/std_msgs/UInt64.h
b529faaffb6a3804fa5a8f51a05b0eec3c5d8781
[ "BSD-3-Clause" ]
permissive
robcog-iai/UROSBridge
2745d98428fd2156dff84b1a343817a7eff60c7d
4c3e7aedad77fef3d93246d08e1c74397fc7a870
refs/heads/master
2023-08-31T11:27:09.284559
2022-04-18T12:40:18
2022-04-18T12:40:18
99,654,694
46
29
BSD-3-Clause
2023-08-24T09:03:33
2017-08-08T05:45:26
C++
UTF-8
C++
false
false
1,289
h
UInt64.h
#pragma once #include "ROSBridgeMsg.h" namespace std_msgs { class UInt64 : public FROSBridgeMsg { uint64 Data; public: UInt64() { MsgType = "std_msgs/UInt64"; } UInt64(uint64 InData) { MsgType = "std_msgs/UInt64"; Data = InData; } uint64 GetData() { return Data; } ~UInt64() override {} void SetData(uint64 InData) { Data = InData; } virtual void FromJson(TSharedPtr<FJsonObject> JsonObject) override { Data = (uint64)(JsonObject->GetNumberField("data")); } virtual FString ToString() override { char CharData[21]; sprintf(CharData, "%llu", Data); FString StringData(UTF8_TO_TCHAR(CharData)); return TEXT("UInt64 { data = \"" + StringData + "\" }"); } virtual TSharedPtr<FJsonObject> ToJsonObject() const override { TSharedPtr<FJsonObject> Object = MakeShareable<FJsonObject>(new FJsonObject()); Object->SetNumberField(TEXT("data"), Data); return Object; } virtual FString ToYamlString() override { FString OutputString; FJsonObject Object; Object.SetNumberField(TEXT("data"), Data); TSharedRef< TJsonWriter<> > Writer = TJsonWriterFactory<>::Create(&OutputString); FJsonSerializer::Serialize(Object, Writer); return OutputString; } }; } // namespace std_msgs
1a5a02f25d2225e9ffcdc25844092cfd2174ad35
a0967fb856ef54124187716b39523d1206a1c007
/2019-8-26(作业3将一个数字通过指定进制按位逆序(直接覆盖原数))/2019-8-26(作业3将一个数字通过指定进制按位逆序(直接覆盖原数))/main.cpp
1299523ca7be6411de2a32f1102bc394e2af246f
[]
no_license
yyaihh/Cpp
21b4d0da4ef351b9d97f1fb47c11f055b6690622
dbfa2361ae8e1a31ce6c29bb286507d36da5099d
refs/heads/master
2020-09-21T23:22:23.464218
2020-04-20T15:31:30
2020-04-20T15:31:30
224,968,447
0
0
null
null
null
null
GB18030
C++
false
false
970
cpp
main.cpp
#include<iostream> using namespace std; //将一个数字通过指定进制按位逆序(直接覆盖原数) void sysReverse(int &num, int n) { int tmp = 0; while (num) { tmp += num % n; tmp *= n; num /= n; } num = tmp; } void Print_2(int num) { if (num != 1) { Print_2(num / 2); } printf("%d", num % 2); } int main() { int num1, num2, num3, num4; num1 = num2 = num3 = num4 = 25; printf("2进制输出%d为:", num1); Print_2(num1); sysReverse(num1, 2); printf("\n2进制下%d按位逆序为:", num1); Print_2(num1); cout << "\n\n"; printf("8进制下输出%d为:%o\n", num2, num2); sysReverse(num2, 8); printf("8进制下按位逆序为:%o\n\n", num2); printf("10进制下输出%d为:%d\n", num3, num3); sysReverse(num3, 10); printf("10进制下按位逆序为:%d\n\n", num3); printf("16进制下输出%d为:%X\n", num4, num4); sysReverse(num4, 16); printf("16进制下按位逆序为:%X\n\n", num4); system("pause"); return 0; }
c7d19d027bb0d2c8fc3a40f8649e00fc63154130
76144d1dc83b7deb43c6f62d4b24d620236bef85
/ClientDemo/DlgAlarmHostStatus.h
e150173e531892484c2396fd34e7cd5be0fc0605
[ "MIT" ]
permissive
qinzhenyi1314/hkvs
e271b76af392e4753f6c8d064066aa0548ec09a2
569c57b03adf5723ccc1df0de6c96858062d23e1
refs/heads/master
2021-06-23T05:32:54.711238
2017-09-03T05:40:55
2017-09-03T05:40:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,195
h
DlgAlarmHostStatus.h
#if !defined(AFX_DLGALARMHOSTSTATUS_H__77CB60CE_ED7C_48C0_9BB7_5E3B3A4E2B6A__INCLUDED_) #define AFX_DLGALARMHOSTSTATUS_H__77CB60CE_ED7C_48C0_9BB7_5E3B3A4E2B6A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // DlgAlarmHostStatus.h : header file // ///////////////////////////////////////////////////////////////////////////// // CDlgAlarmHostStatus dialog class CDlgAlarmHostStatus : public CDialog { // Construction public: CDlgAlarmHostStatus(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CDlgAlarmHostStatus) enum { IDD = IDD_DLG_ALARM_HOST_STATUS }; CListCtrl m_listMemoryStatus; CListCtrl m_listFaultStatus; CListCtrl m_listSubSystem; CListCtrl m_listBypassStatus; CListCtrl m_listSetupAlarmInStatus; CListCtrl m_listAlarmOutStatus; CListCtrl m_listAlarmInStaus; BOOL m_bSirenStaus; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CDlgAlarmHostStatus) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CDlgAlarmHostStatus) virtual BOOL OnInitDialog(); afx_msg void OnBtnRefresh(); afx_msg void OnBtnBypassAlarmchan(); afx_msg void OnBtnCloseAlarmchan(); afx_msg void OnBtnSetupAlarmchan(); afx_msg void OnBtnUnBypassAlarmchan(); afx_msg void OnRclickListSetupAlarminStatus(NMHDR* pNMHDR, LRESULT* pResult); afx_msg void OnRclickListBypassStatus(NMHDR* pNMHDR, LRESULT* pResult); afx_msg void OnMenuSelectAll(); afx_msg void OnMenuCancelAll(); #if (_MSC_VER >= 1500) //vs2008 afx_msg void OnTimer(UINT_PTR nIDEvent); #else afx_msg void OnTimer(UINT nIDEvent); #endif //}}AFX_MSG DECLARE_MESSAGE_MAP() public: NET_DVR_ALARMHOST_ABILITY m_struAlarmHostAbility; int m_iDevIndex; LONG m_lServerID; LONG m_lStartChan; LONG m_lChannel; int m_iPopMenuType; NET_DVR_ALARMHOST_MAIN_STATUS_V40 m_struAlarmMainStatus; NET_DVR_ALARMHOST_OTHER_STATUS m_struAlarmOtherStatus; NET_DVR_ALARMIN_SETUP m_struAlarmInSetup; public : void InitWnd(); BOOL GetAlarmHostMainStatus(NET_DVR_ALARMHOST_MAIN_STATUS_V40& struAlarmMainStatus); BOOL GetAlarmHostOtherStatus(NET_DVR_ALARMHOST_OTHER_STATUS& struAlarmOtherStatus); void SetAlarmHostMainStatusToWnd(NET_DVR_ALARMHOST_MAIN_STATUS_V40& struAlarmMainStatus); void SetAlarmHostOtherStatusToWnd(NET_DVR_ALARMHOST_OTHER_STATUS& struAlarmOtherStatus); void GetSetupAlarmChanFromWnd(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); void GetBypassAlarmChanFromWnd(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); BOOL AlarmHostSetAlarmChan(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); BOOL AlarmHostCloseAlarmChan(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); BOOL BypassAlarmChan(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); BOOL UnBypassAlarmChan(NET_DVR_ALARMIN_SETUP &struAlarmInSetup); }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_DLGALARMHOSTSTATUS_H__77CB60CE_ED7C_48C0_9BB7_5E3B3A4E2B6A__INCLUDED_)
80e1511b98780326b83f67d1ed693e92a02374aa
53d50ab7e5a6069f869aa8d78486a0878e7c4afb
/Game/main.cpp
6423556b6f39c41fbc9941c168806a02f0218a8e
[]
no_license
adrset/schrod
8e67efb45d17d345d3cff9d09923e1e42a1d0f8b
e0d80a13b392ccd96c6f0acff9d9959e6b7dec27
refs/heads/master
2020-03-19T10:06:19.543846
2018-06-06T14:52:15
2018-06-06T14:52:15
136,343,482
1
0
null
null
null
null
UTF-8
C++
false
false
186
cpp
main.cpp
#include <cstdlib> #include <string> #include "Game.h" int main(int argc, char** argv) { Game* game = new Game(1400, 800, "Potts", 1000); game->start(); delete game; return 0; }
8eadaa9bfa08a75c14a86110bbde95acbdd5e348
72957ce33d84781b18780ebe101951d12e164b72
/WORD.h
17f34a3966d01b5792ae12b1f94618cd10d2f0b6
[]
no_license
Elizarspbspb/Lab2
e901fca7cca10f106c7e85e1f834278f16dec96d
9b7ff481f5f698ce2f5e57677240e28913b4f462
refs/heads/master
2020-08-31T06:37:20.797171
2019-12-07T21:14:28
2019-12-07T21:14:28
218,625,640
0
1
null
null
null
null
UTF-8
C++
false
false
616
h
WORD.h
#pragma once #include <iostream> #include <sstream> #include <fstream> using namespace std; class WORD { private: string word; public: WORD(); WORD(string d); ~WORD(); void setword(string wrd); string getword() const; double find(); // функция определения 1-ой буквы слова friend ostream& operator<<(ostream &cout, WORD obj); // переопределил оператор вывода friend istream& operator>>(istream &cin, WORD obj); // переопределил оператор ввода // friend так как нужно 2 параметра передать };
d8389d0045c070334c96ccaaed852a761452e0bc
a099b9ec16e57a1c38c435bbb3e215d361317009
/wordClock/sensor/sensor.ino
c36ad2612196726d4515f630b5adfb87701ef045
[]
no_license
emcauliffe/Grade-11-Hardware
a05f4d4c3993f74b320096ca836a15ea63548d69
820ad0f62acff09c45eecc3e61d4b674155643cc
refs/heads/master
2020-03-17T02:48:43.959517
2018-05-13T05:03:37
2018-05-13T05:03:37
133,206,915
0
0
null
null
null
null
UTF-8
C++
false
false
2,056
ino
sensor.ino
#include <SPI.h> // for interfacing with the data sensor #include <nRF24L01.h> #include <printf.h> #include <RF24.h> #include <RF24_config.h> #define SENSORSS 10 #define SENSORSPEED 10000000 RF24 radio(7, 8); uint8_t addresses[][6] = {"3g8wM", "0Us9x"}; struct SENSORDATA { float temp; float pressure; float humidity; }; SENSORDATA transmissionData; void setup() { Serial.begin(9600); radio.begin(); SPI.begin(); radio.setPALevel(RF24_PA_MAX); radio.setChannel(99); radio.openWritingPipe(addresses[0]); pinMode(SENSORSS, OUTPUT); } void loop() { Serial.print(SPI.transfer(0xFA),BIN);//MSB Serial.print("/t"); Serial.print(SPI.transfer(0xFB),BIN);//LSB Serial.print("/t"); Serial.print(SPI.transfer(0xFC),BIN);//XLSB Serial.println(); } float temp() {//returns temp in degrees celcius SPI.transfer(0xFA);//TEMP MSB SPI.transfer(0xFB);//TEMP LSB SPI.transfer(0xFC);//TEMP XLSB } float pressure() {//returns pressure in kPa SPI.transfer(0xF7);//PRESSURE MSB SPI.transfer(0xF8);//PRESSURE LSB SPI.transfer(0xF9);//PRESSURE XLSB } float humidity() {//returns percent relative humidity SPI.transfer(0xFD);//HUMIDITY MSB SPI.transfer(0xFE);//HUMIDITY LSB } SENSORDATA getMeasurements() { SENSORDATA currentData; digitalWrite(SENSORSS, LOW); SPI.beginTransaction(SPISettings(SENSORSPEED, MSBFIRST, SPI_MODE0)); // currentData.temp = SPI.transfer( SPI.endTransaction(); digitalWrite(SENSORSS, LOW); } void transmit(SENSORDATA data) { //sends data to the main clock radio.powerUp(); delay(6); radio.write(&data, sizeof(SENSORDATA)); } void sensorConfig() { digitalWrite(SENSORSS, LOW); SPI.beginTransaction(SPISettings(SENSORSPEED, MSBFIRST, SPI_MODE0)); SPI.transfer(0x72);//initiate write to ctrl_hum SPI.transfer(0x01);//set filtering to 1x SPI.transfer(0x74);//initiate write to ctrl_meas SPI.transfer(0x29);//set pressure filter to 1x, temp filter to 2x and mode to forced } void deepSleep() { //powers down peripherals and ATmega328 radio.powerDown(); }
44c7d74c4fbad471769eeb3162dc8440e2ca20e9
39076c5617ba7191a1cfaed626dfea4e59e4ea38
/vmkit/lib/Mvm/CommonThread/Sigsegv.cpp
0ff99f991a56cb0c62c4c4020fd6067c0793a0dc
[ "NCSA" ]
permissive
YodaCoder/JOE
41f85b808fb1c54b80cfd539325fd2ff2ff32120
bbcaf5212911dcd4cf7f3c0e8f6f4dd9a88cd942
refs/heads/master
2021-01-22T06:19:46.761702
2017-01-19T15:23:51
2017-01-19T15:23:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,936
cpp
Sigsegv.cpp
//===----------- Sigsegv.cc - Sigsegv default handling --------------------===// // // The VMKit project // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include "mvm/VirtualMachine.h" #include "mvm/Threads/Thread.h" #include <csignal> #include <cstdio> using namespace mvm; #if defined(__MACH__) && defined(__i386__) #include "ucontext.h" #endif void sigsegvHandler(int n, siginfo_t *_info, void *context) { word_t addr = (word_t)_info->si_addr; #if defined(__i386__) struct frame { struct frame *caller; void *ip; }; /* my frame */ struct frame *fp; /* get it */ asm ("mov %%ebp, %0" : "=&r"(fp)); /* my caller */ struct frame *caller = fp->caller; /* preserve my caller if I return from the handler */ void *caller_ip = caller->ip; #if defined(__MACH__) //.gregs[REG_EIP]; /* just like it's on the stack.. */ caller->ip = (void *)((ucontext_t*)context)->uc_mcontext->__ss.__eip; #else /* just like it's on the stack... */ #endif #endif mvm::Thread* th = mvm::Thread::get(); if (addr > (word_t)th->getThreadID() && addr < (word_t)th->baseSP) { fprintf(stderr, "Stack overflow in VM code or in JNI code. If it is from\n" "the VM, it is either from the JIT, the GC or the runtime." "\nThis has to be fixed in the VM: VMKit makes sure that\n" "the bottom of the stack is always available when entering" "\nthe VM.\n"); } else { fprintf(stderr, "Thread %p received a SIGSEGV: either the VM code or an external\n" "native method is bogus. Aborting...\n", (void*)th); } th->printBacktrace(); abort(); #if defined(__i386__) caller->ip = caller_ip; /* restore the caller ip */ #endif }
e8ae6a709845c6620034b45681714a600185f5d7
5fd0b45b2f6ec6a6c1802fce1b52e0218d189f89
/platform/android/src/bitmap.hpp
9d96405c26d065cb71ee50f990f3246ad2508c54
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "BSD-3-Clause", "curl", "ISC", "BSL-1.0", "JSON", "BSD-2-Clause", "Apache-2.0" ]
permissive
reezer/maplibre-gl-native
ca8e7a87331e39a23e2f3cade3578cfb7be50aa8
d716b5b408900776cbffdc5cffa00c5486e7d1d2
refs/heads/master
2023-04-17T03:24:26.571128
2021-04-07T01:46:21
2021-04-07T01:46:21
357,980,368
0
1
BSD-2-Clause
2021-04-30T12:59:38
2021-04-14T17:00:10
null
UTF-8
C++
false
false
1,249
hpp
bitmap.hpp
#pragma once #include <mbgl/util/image.hpp> #include <jni/jni.hpp> namespace mbgl { namespace android { class Bitmap { public: class Config { public: static constexpr auto Name() { return "android/graphics/Bitmap$Config"; }; enum Value { ALPHA_8, ARGB_4444, ARGB_8888, RGB_565, }; static jni::Local<jni::Object<Config>> Create(jni::JNIEnv&, Value); }; static constexpr auto Name() { return "android/graphics/Bitmap"; }; static void registerNative(jni::JNIEnv&); static jni::Local<jni::Object<Bitmap>> CreateBitmap(jni::JNIEnv&, jni::jint width, jni::jint height, const jni::Object<Config>&); static jni::Local<jni::Object<Bitmap>> CreateBitmap(jni::JNIEnv& env, jni::jint width, jni::jint height, Config::Value config) { return CreateBitmap(env, width, height, Config::Create(env, config)); } static PremultipliedImage GetImage(jni::JNIEnv&, const jni::Object<Bitmap>&); static jni::Local<jni::Object<Bitmap>> CreateBitmap(jni::JNIEnv&, const PremultipliedImage&); static jni::Local<jni::Object<Bitmap>> Copy(jni::JNIEnv&, const jni::Object<Bitmap>&); }; } // namespace android } // namespace mbgl
3c21b784f1b9ebeee2b7878387f34e1b8ad3ffad
f7f0205a050e0fd9ee9a2864da299e8e8629bbb0
/Necromancer/IntegerProperty.cpp
f1ce4a51ce25d8c57a2d5425557954ebb9260134
[ "MIT" ]
permissive
myffx36/RenderingEngine
a5afd083c12a738e3ea6c7b2676fbcc07dd530e9
38df29966b3126744fb40c2a97775ae44cea92f9
refs/heads/master
2021-01-19T14:46:08.095633
2017-04-20T01:34:17
2017-04-20T01:34:17
86,638,385
0
0
null
null
null
null
UTF-8
C++
false
false
192
cpp
IntegerProperty.cpp
#include "stdafx.h" #include "IntegerProperty.h" namespace Necromancer{ IntegerProperty::IntegerProperty(int value){ m_integer_value = value; } IntegerProperty::~IntegerProperty(){ } }
b19488f9660773575512bdf3d7077a3d7e48f356
5137017e6af9405474d478129831bf297978cc7f
/LabPrototype/I2C_ledcontrol.ino
cac1e707766133543298d3dec671db25098bd4ce
[]
no_license
pedromarinho94/light-intensity-regulator
26de11c968bd2812cc453eec34a4076e758a8495
c4b57a8d2e3347d19f96fb2c17e4b8e601511843
refs/heads/master
2020-06-25T16:35:27.877765
2019-07-29T03:43:35
2019-07-29T03:43:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,563
ino
I2C_ledcontrol.ino
#include <Wire.h> const uint8_t adress = 0x70; //temos como ultimo bit 0 para escrever (1 para ler) void setup() { // put your setup code here, to run once: Wire.begin(); Serial.begin(9600); //valor comum para isto delay(100); //dilay por que sim Wire.setClock(100000); Wire.beginTransmission(adress); //começamos por chamar o slave led backpack Wire.write(0x21); //ligamos o oscilador Wire.endTransmission(); Wire.beginTransmission(adress); //começamos por chamar o slave led backpack Wire.write(0xA0); //Row output Wire.endTransmission(); Wire.beginTransmission(adress); //começamos por chamar o slave led backpack Wire.write(0xEF); //dimming set Wire.endTransmission(); Wire.beginTransmission(adress); Wire.write(0x82); //escolha da frequencia e Blinking on Wire.endTransmission(); Wire.beginTransmission(adress); Wire.write(0x00); Wire.write(0x00); //o nosso padrão acaba aqui for (int i = 0;i<15;i++) { Wire.write(0x00); Wire.write(0xFF); } Wire.endTransmission(); Wire.beginTransmission(adress); Wire.write(0x81); //escolha da frequencia e Blinking on Wire.endTransmission(); } void loop() { // put your main code here, to run repeatedly: delay(10000); Serial.print("KEK\n"); }
463b433288f77639b1943b38f1e8673e8a764f45
806d48454cf0d159adf9f402c69fa01fd807b4c5
/Infix to postfix.cpp
e233ff09316219050b6daa14327d70a02b704d2d
[]
no_license
angadjot/Practice_Codes
5e326ddb133fd1e6d47c2205595ba9d2c5ab2d3e
3d49d81a3a77133732dabf7633ca7c40c69ce284
refs/heads/master
2021-05-31T11:23:14.901680
2016-05-25T17:07:21
2016-05-25T17:07:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,764
cpp
Infix to postfix.cpp
//(3+2)*(6-2)/8-2 #include<iostream> #include<string.h> #include<stdio.h> #include <stdlib.h> using namespace std; void printline(); int precedence(char operand); class Stack{ private: char stack_array[50]; int top; public: Stack(){ top=-1; } void push(char val){ if (top==49) { cout<<"Stack Full"<<endl; } else{ stack_array[++top]=val; } } char pop(){ if (top==-1) { cout<<"Stack Underflow"<<endl; return('#'); } else{ return (stack_array[top--]); } } void display(){ if (top==-1) { cout<<"Stack Underflow"<<endl; } else{ cout<<"Postfix : "; for (int i=top-1; i>=0; i--) { cout<<array[i]<<"\t"; } } cout<<endl; } }; class Expression { char infix[50],postfix[50]; public: void read(){ cout<<"Enter the Mathematical Expression to be Evaluated"<<endl; cin>>infix; } void ConvertToPostfix(){ Stack stack; char entry1,entry2; for (int i=0; infix[i] != '\0'; i++) { entry1=infix[i]; switch (entry1) { case '(': stack.push(enrty1); break; case ')': while((entery2=stack.pop())!='('){ postfix[p++]=entry2; } case '+': case '-': case '*': case '/': default: break; } } } }; int main(){ char infix[100],temp,temp1,temp2; Stack stack(100),postfix(100); int len; cout<<"Enter the Mathematical Expression to be Evaluated"<<endl; cin>>infix; len=strlen(infix); infix[len]=')'; infix[++len]='\0'; stack.push('('); cout<<infix<<endl; for (int i=0; infix[i] != '\0'; i++){ if(infix[i] > 47 && infix[i] < 58){ postfix.push(infix[i]); postfix.display(); } else if(infix[i] == '('){ stack.push(infix[i]); stack.display(); } else if(infix[i] ==')'){ while((temp=stack.pop())!='('){ postfix.push(temp); postfix.display(); } } else if(infix[i] == '+' || infix[i] == '-' || infix[i] == '*' || infix[i] == '/' || infix[i] == '^'){ while ( ( temp = stack.pop() ) != '(' ) { if ( precedence(temp) >= precedence(infix[i]) ) { postfix.push(temp); postfix.display(); } else{ postfix.push(infix[i]); postfix.display(); } } } } stack.display(); postfix.display(); return 0; } void printline(){ for (int i=0; i<50; i++) { cout<<"-"; } cout<<endl; } int precedence(char operand){ switch (operand) { case '^': return 5; break; case '/': return 4; break; case '*': return 3; break; case '+': return 2; break; case '-': return 1; break; default: return -1; break; } }
b52ef6b79e037a8f7643de42d610f3cdbb422cd6
b6ff706b297c7e2deab48080b93df9aafb083efe
/src/PacketAnalyzer.cpp
f29e0c8603086967d0985151270f1980f84f17ec
[]
no_license
alimomo/analyzer
1b323a81f1f5f8cf383a0a4bd00b195de9afc5b9
95b1cf44ceda9f9b466a9077cc254805411e7fce
refs/heads/master
2020-04-06T04:21:43.757437
2017-02-26T17:05:23
2017-02-26T17:05:23
82,980,783
0
0
null
2017-02-25T01:25:46
2017-02-23T23:18:04
C++
UTF-8
C++
false
false
83
cpp
PacketAnalyzer.cpp
#include "GUI.h" int main(void) { UserConsole UI; UI.startAnalysis(); }
7d152937a2d6c4d5593142f22ecc289df87dd2c2
673bfa5c8ce5046f340b8adc3176a5981b4acbe4
/c_DERS/recursive/recursive h.ali5.cpp
02d1b6e13e2c642caf1c8ce6b723f3ab929b3165
[]
no_license
ysfkymz/my-c-codes
20f207862327647568733f928931c66088995521
80b13a8f3aa1e0cc18f1bff5a472305f8d142ed5
refs/heads/master
2020-06-03T14:10:18.966307
2019-06-12T15:35:05
2019-06-12T15:35:05
191,598,755
0
0
null
null
null
null
UTF-8
C++
false
false
275
cpp
recursive h.ali5.cpp
/*uslu sayi bulma*/ #include<stdio.h> #include<conio.h> int uslu(int a,int b){ if(b==1) return a; else return uslu(a,b-1)*a; } int main(){ int a,b; printf("sayi gir"); scanf("%d%d",&a,&b); printf("%d",uslu(a,b)); getch(); return 0; }
29be76761e0ca972fe5c148a4b1e19c97210909e
2860e559bd56c6d06b98d1b5a9f571679b136d65
/Components/Core/RunInterface.cpp
579051f00304e0b7d0f599f87e8c6550a504cfe6
[]
no_license
StudentOrganisationForAerospaceResearch/AvionicsSoftware
4c95891f2476e42e85e1fe902452b068d09c37bc
ed98e8808e1c3d2f0a2cd686bafe1c46e2eb00cc
refs/heads/master
2023-08-29T22:54:03.457580
2023-08-20T01:28:48
2023-08-20T01:28:48
149,952,344
16
2
null
2023-08-29T23:40:00
2018-09-23T05:57:36
C
UTF-8
C++
false
false
567
cpp
RunInterface.cpp
/* * RunInterface.cpp * * Created on: Apr 3, 2023 * Author: Chris (cjchanx) */ #include "main_avionics.hpp" #include "UARTDriver.hpp" extern "C" { void run_interface() { run_main(); } void cpp_USART1_IRQHandler() { Driver::uart1.HandleIRQ_UART(); } void cpp_USART2_IRQHandler() { Driver::uart2.HandleIRQ_UART(); } void cpp_USART3_IRQHandler() { Driver::uart3.HandleIRQ_UART(); } void cpp_USART5_IRQHandler() { Driver::uart5.HandleIRQ_UART(); } }
2ddc34c9e01136236f53a613e3fc2715f9cadd04
827c395fdc43bdba70816e850f6d23104e0e06e6
/rooms/0-roompicker.room.c++
a2729905680f411039838017c09db080b6fd30d5
[]
no_license
quietfanatic/rata
0cc08d604bc6146d75e8404c11ce9f0950024fcd
08aa36355e38e63aa41f57751cbe331ed4baaaab
refs/heads/master
2023-04-07T11:40:40.471081
2012-09-03T00:23:33
2012-09-03T00:25:40
2,401,770
1
1
null
null
null
null
UTF-8
C++
false
false
1,746
0-roompicker.room.c++
ROOM_BEGIN ROOM_POS(0, 0) ROOM_WIDTH(20) ROOM_HEIGHT(15) ROOM_TILES( 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 6, 0, 6, 0, 6, 0, 6, 0, 6, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ) ROOM_N_NEIGHBORS(2) ROOM_NEIGHBORS( room::test1, room::test2 ) ROOM_N_WALLS(2) ROOM_WALLS( Circle(Vec(10, 7.5), 0), Circle(Vec(45, 7.5), 0), ) ROOM_INIT( static Tilemap a1 (HERE); static BGColor a2 (HERE, pos, Vec(width, height), 0x7f7f7fff); static Door a3 (HERE, pos+Vec(8.5, 1), room::test2, room::test2->pos+Vec(1.5, 21)); static Item a4 (HERE, pos+Vec(8, 5), item::handgun); static Item a5 (HERE, pos+Vec(12, 5), item::helmet); ) ROOM_END
37001f9feb3024f08f4ab4a56bbc3e0ddaa044c7
e85525cdb4a3241aa7559aacd848c7b0dc5bcc27
/nl/tagger_info.cpp
41e38830c1b626c8f7c3354a2bf3bf9651c3c779
[ "MIT" ]
permissive
pcannon67/server
89125c3c4abe3554db0f5ddf32b1176a7768ef2a
f1e5ec5f4ab6d739e7ee34cfde345ce56fd8667e
refs/heads/master
2020-03-31T11:04:35.787465
2015-06-28T15:27:23
2015-06-28T15:27:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
49,514
cpp
tagger_info.cpp
/* The MIT License (MIT) Copyright (c) 2015 Alberto Cetoli (alberto.cetoli@nlulite.com) 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"tagger_info.hpp" const bool debug = false; template<class T> static void print_vector(std::vector<T> &vs) { typename vector<T>::iterator tags_iter = vs.begin(); while (tags_iter < vs.end()) { std::cout << (*tags_iter) << " "; ++tags_iter; } std::cout << std::endl; } template<class K, class T> static T get_map_element(btree::btree_map<K, T> &map_element, K &key) { T to_return; typename unordered_map<K, T>::iterator miter = map_element.find(key); if (miter != map_element.end()) { to_return = miter->second; } return to_return; } template<class K, class T> static T get_map_element(btree::btree_map<K, T> &map_element, const K &key) { T to_return; //typename unordered_map<K, T>::iterator miter = map_element.find(key); typename btree::btree_map<K, T>::iterator miter = map_element.find(key); if (miter != map_element.end()) { to_return = miter->second; } return to_return; } template<class T> static bool shortfind(const vector<T> &vect, const T &element) { if (find(vect.begin(), vect.end(), element) == vect.end()) return false; return true; } static bool is_verb(const string &tag) { if (tag == "VBP" || tag == "VBZ" || tag == "VBD" || tag == "VB" || tag == "VBN" || tag == "VBG") return true; return false; } static bool is_name(const string &tag) { if (tag == "NN" || tag == "NNS" || tag == "NNP" || tag == "NNPS" || tag == "PRP" || tag == "JJ" || tag == "JJS") return true; return false; } static double guess_word(const string &word, const string &tag) { int size = word.size(); // if(word != "\'s" && word != "as" && word != "his" && word != "its" && word != "this" && word.at(size-1) == 's' // && (tag == "NNS" || tag == "NNPS" || tag == "VBZ") ) // return 1./3; // if(size > 4 && word.at(size-1) == 'g' && word.at(size-2) == 'n' && word.at(size-3) == 'i' && tag == "VBG") // gerundive // return 1; // if(size > 3 && word.at(size-1) == 'y' && word.at(size-2) == 'l' && tag == "RB") // it is an adverb // return 1; // if(word != "family" && size > 3 && word.at(size-1) == 'y' && word.at(size-2) == 'l' && tag == "NN") // it is a name // return 1; // if(size > 3 && word.at(size-1) == 'd' && word.at(size-2) == 'e' && ( tag == "VBD" || tag == "VBN" ) ) // it is a past tense // return 1./2; // if(tag == "NN" || tag == "NNP") /// you should differently check for proper names // return 1; return 0; // default } tagger_info::tagger_info() // initializes the private data structures { //complete_regular_verbs(); // name of the months months_.push_back("january"); months_.push_back("february"); months_.push_back("march"); months_.push_back("april"); months_.push_back("may"); months_.push_back("june"); months_.push_back("july"); months_.push_back("august"); months_.push_back("september"); months_.push_back("october"); months_.push_back("november"); months_.push_back("december"); // names indicating time chrono_.push_back("today"); chrono_.push_back("tomorrow"); chrono_.push_back("yesterday"); chrono_.push_back("last_week"); // sure tags sure_tags_["a"] = "DT"; sure_tags_["to"] = "TO"; sure_tags_["the"] = "DT"; sure_tags_["for"] = "IN"; sure_tags_["in"] = "IN"; sure_tags_["of"] = "IN"; sure_tags_["if"] = "IN"; sure_tags_["into"] = "IN"; sure_tags_["by"] = "IN"; sure_tags_["after"] = "IN"; sure_tags_["about"] = "IN"; sure_tags_["at-what-time"] = "WRB"; sure_tags_["across"] = "IN"; sure_tags_["whether"] = "IN"; sure_tags_["during"] = "IN"; sure_tags_["from"] = "IN"; sure_tags_["who"] = "WP"; sure_tags_["whom"] = "WP"; sure_tags_["he"] = "PRP"; sure_tags_["it"] = "PRP"; sure_tags_["his"] = "PRP$"; sure_tags_["she"] = "PRP"; sure_tags_["you"] = "PRP"; sure_tags_["they"] = "PRP"; sure_tags_["their"] = "PRP$"; sure_tags_["theirs"] = "PRP$"; sure_tags_["thus"] = "RB"; sure_tags_["and"] = "CC"; sure_tags_["or"] = "CC"; sure_tags_["'s"] = "POS"; sure_tags_["its"] = "PRP$"; sure_tags_["as"] = "IN"; sure_tags_["among"] = "IN"; sure_tags_["means"] = "NN"; //irregular singular sure_tags_["politics"] = "NNS"; //only plural sure_tags_["perhaps"] = "RB"; sure_tags_["themselves"] = "PRP"; sure_tags_["born"] = "VBN"; sure_tags_["how"] = "WRB"; sure_tags_["where"] = "WRB"; sure_tags_["while"] = "IN"; sure_tags_["how-far"] = "WRB"; sure_tags_["how-much"] = "WRB"; sure_tags_["how-many"] = "WRB"; sure_tags_["how-many-times"] = "WRB"; sure_tags_["how-big"] = "WRB"; sure_tags_["how-old"] = "WRB"; sure_tags_["should"] = "MD"; sure_tags_["more-than"] = "IN"; sure_tags_["less-than"] = "IN"; sure_tags_["up-to"] = "IN"; sure_tags_["of_course"] = "RB"; sure_tags_["i"] = "PRP"; sure_tags_["people"] = "NNS"; sure_tags_["at"] = "IN"; sure_tags_["also"] = "RB"; sure_tags_["whose"] = "WP$"; sure_tags_["according-to"] = "IN"; sure_tags_["%"] = "NN"; sure_tags_["uk"] = "NN"; sure_tags_["already-made"] = "RB"; sure_tags_["other-than"] = "IN"; sure_tags_["together"] = "RB"; sure_tags_["at_least"] = "RB"; sure_tags_["began"] = "VBD"; sure_tags_["why"] = "WRB"; sure_tags_["this"] = "DT"; sure_tags_["that"] = "DT"; sure_tags_["these"] = "DT"; sure_tags_["those"] = "DT"; sure_tags_["than"] = "IN"; sure_tags_["to"] = "TO"; sure_tags_["sometimes"] = "RB"; sure_tags_["no-more"] = "RB"; sure_tags_["no-longer"] = "RB"; sure_tags_["such_as"] = "IN"; sure_tags_["newly_formed"] = "JJ"; sure_tags_["we"] = "PRP"; sure_tags_["could"] = "MD"; sure_tags_["would"] = "MD"; sure_tags_["a_lot"] = "RB"; sure_tags_["cannot"] = "MD"; sure_tags_["in_and_out"] = "IN"; sure_tags_["instead_of"] = "IN"; sure_tags_["all_the_way"] = "RB"; sure_tags_["all_the_way_around"] = "RB"; // exceptions to regular tags except_.push_back("mars"); except_.push_back("ios"); except_.push_back("as"); except_.push_back("us"); except_.push_back("is"); except_.push_back("need"); except_.push_back("hiss"); except_.push_back("breed"); except_.push_back("red"); except_.push_back("does"); except_.push_back("has"); except_.push_back("was"); except_.push_back("focus"); except_.push_back("miss"); except_.push_back("oppress"); except_.push_back("pass"); except_.push_back("possess"); except_.push_back("progress"); except_.push_back("stress"); except_.push_back("address"); except_.push_back("cross"); except_.push_back("dismiss"); except_.push_back("encompass"); except_.push_back("express"); except_.push_back("tennis"); except_.push_back("ed"); except_.push_back("its"); except_.push_back("ring"); except_.push_back("interesting"); except_.push_back("bring"); except_.push_back("evening"); except_.push_back("sing"); except_.push_back("string"); except_.push_back("sing"); except_.push_back("spring"); except_.push_back("wing"); except_.push_back("timing"); except_.push_back("swing"); except_.push_back("ping"); except_.push_back("king"); except_.push_back("right-wing"); except_.push_back("during"); } double tagger_info::general_tag(const string &tag, const string &tag_prev) // context_free conditional probability for the previous neighbor { TMapPStDouble::iterator gen_iter; gen_iter = tag_freqs.find(make_pair(tag, tag_prev)); if (gen_iter != tag_freqs.end()) return gen_iter->second; return 0; } double tagger_info::general_tag_back(const string &tag, const string &tag_next) // context_free conditional probability for the nn previous neighbor { TMapPStDouble::iterator gen_iter; gen_iter = tag_freqs_back.find(make_pair(tag, tag_next)); if (gen_iter != tag_freqs_back.end()) return gen_iter->second; return 0; } double tagger_info::general_tag_prior(const string &tag, const string &tag_next) // context_free conditional probability for the next neighbor { TMapPStDouble::iterator gen_iter; gen_iter = tag_freqs_prior.find(make_pair(tag, tag_next)); if (gen_iter != tag_freqs_prior.end()) return gen_iter->second; return 0; } bool tagger_info::has_base(const string &word) // returns true if word is present as unconjugated { TMapStVSt::iterator conj_iter; conj_iter = conjug_base.find(word); if (conj_iter != conjug_base.end()) return true; return false; } bool tagger_info::is_valid_general_tag(const string &tag) { vector<string> valid_ones; valid_ones.push_back("NN"); valid_ones.push_back("NNP"); valid_ones.push_back("NNS"); valid_ones.push_back("NNPS"); valid_ones.push_back("JJ"); if (find(valid_ones.begin(), valid_ones.end(), tag) != valid_ones.end()) return true; return false; } bool tagger_info::is_valid_verb_tag(const string &tag) { vector<string> valid_ones; valid_ones.push_back("VB"); //valid_ones.push_back("VBG"); valid_ones.push_back("VBZ"); valid_ones.push_back("VBP"); valid_ones.push_back("VBD"); valid_ones.push_back("VBN"); if (find(valid_ones.begin(), valid_ones.end(), tag) != valid_ones.end()) return true; return false; } double tagger_info::get_freq(const string &word, const string &tag, const string &prev_tag) // return the conditional probability of a word with tag "tag" being preceded by "prev_tag" { string base; TMapPStSt::iterator base_iter; TMapStVSt::iterator conj_iter; conj_iter = conj_tag.find(word); if (conj_iter != conj_tag.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) == conj_iter->second.end()) { return 0; } conj_iter = conjug_base.find(word); if (conj_iter != conjug_base.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) != conj_iter->second.end()) { return 0; } base_iter = conjug.find(std::make_pair(word, tag)); if (base_iter != conjug.end()) { base = base_iter->second; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs.find(std::make_pair(base, std::make_pair(tag, prev_tag))); freq_iter_den = tot_nums.find(base); double freq = 0; if (freq_iter_num != freqs_prior.end() && freq_iter_den != tot_nums_prior.end()) { freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); } return freq; } else base = word; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs.find(std::make_pair(base, std::make_pair(tag, prev_tag))); freq_iter_den = tot_nums.find(base); double to_ret = 0; string base_tmp; to_ret = regular_tag(word, tag, &base_tmp); if (base_tmp == "[wrong_tag]") return 0; if (to_ret != 0 && tag == "NNS" && !is_candidate_name(base_tmp)) { return 0; // avoid verbs like "derive" to be understood as NNS } if (to_ret != 0 && tag == "VBZ" && !is_candidate_verb(base_tmp)) { if (debug) puts("NOVERB"); return 0; // avoid verbs like "academic" to be understood as VBZ } if (freq_iter_den == tot_nums.end()) { if (to_ret != 0 && base_iter == conjug.end() // "has" is in the conjug file as VBZ, must not be adressed as regular ) { freq_iter_num = freqs.find(std::make_pair(base_tmp, std::make_pair(tag, prev_tag))); freq_iter_den = tot_nums.find(base_tmp); if (freq_iter_num == freqs.end()) { return 0; /// NO GUESSWORK BETWEEN VBZ AND NNS!!! } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second); return freq; } } else if (is_valid_general_tag(tag)) { to_ret = general_tag(tag, prev_tag); if (to_ret != 0) return to_ret; } } else if (to_ret != 0 && base_iter == conjug.end() // "has" is in the conjug file as VBZ, must not be adressed as regular ) { freq_iter_num = freqs.find(std::make_pair(base_tmp, std::make_pair(tag, prev_tag))); freq_iter_den = tot_nums.find(base_tmp); if (freq_iter_num == freqs.end()) { if ((!is_candidate_verb(word) && is_valid_general_tag(tag)) || (!is_candidate_name(word) && is_valid_verb_tag(tag))) { if (last_hope_tags_.find(word) != last_hope_tags_.end() && get_map_element(last_hope_tags_, word) == tag) return 0; to_ret = general_tag(tag, prev_tag); //cout << "PGEN::::" << base_tmp << ", " << to_ret << ", " << tag << endl; } else to_ret = 0; return to_ret; } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second); return freq; } } if (freq_iter_num == freqs.end() && !is_candidate_name(word) && !is_candidate_verb(word) ) { if (last_hope_tags_.find(word) != last_hope_tags_.end() && to_ret == 0) { if (get_map_element(last_hope_tags_, word) == tag) { return 1; } } return 0; } if (freq_iter_den == tot_nums.end() || freq_iter_num == freqs.end()) return 0; if (base_iter == conjug.end() && (tag == "VBZ" || tag == "VBD" || tag == "VBN" || tag == "VBG" || tag == "NNS" || tag == "NNPS")) // These are the only tags that modify the word. The only ones incorrect at this point return 0; double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); return freq; } double tagger_info::get_freq_back(const string &word, const string &tag, const string &next_tag) // return the conditional probability of a word with tag "tag" being preceded by the second nearest "next_tag" { string base; TMapPStSt::iterator base_iter; TMapStVSt::iterator conj_iter; conj_iter = conj_tag.find(word); if (conj_iter != conj_tag.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) == conj_iter->second.end()) { // The word is in the conjugation file but is never tagged // as "tag" return 0 return 0; } conj_iter = conjug_base.find(word); if (conj_iter != conjug_base.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) != conj_iter->second.end()) { // The word is in the conjugation file but is declined in another way than "word" return 0; } base_iter = conjug.find(std::make_pair(word, tag)); if (base_iter != conjug.end()) { base = base_iter->second; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs_back.find(std::make_pair(base, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_back.find(base); double freq = 0; if (freq_iter_num != freqs_prior.end() && freq_iter_den != tot_nums_prior.end()) { freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); } return freq; } else base = word; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs_back.find(std::make_pair(base, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_back.find(base); double to_ret; string base_tmp; to_ret = regular_tag(word, tag, &base_tmp); if (base_tmp == "[wrong_tag]") return 0; if (to_ret != 0 && tag == "NNS" && !is_candidate_name(word)) return 0; // avoid verbs like "derive" to be understood as NNS if (to_ret != 0 && tag == "VBZ" && !is_candidate_verb(base_tmp)) { return 0; // avoid verbs like "academic" to be understood as VBZ } if (freq_iter_den == tot_nums_back.end()) { if (to_ret != 0 && base_iter == conjug.end()) { freq_iter_num = freqs_back.find(std::make_pair(base_tmp, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_back.find(base_tmp); if (freq_iter_num == freqs_back.end()) { return 0; /// NO GUESSWORK BETWEEN VBZ AND NNS!!! } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); return freq; } } else if (is_valid_general_tag(tag)) { return general_tag_back(tag, next_tag); } } else if (to_ret != 0 && base_iter == conjug.end() // "has" is in the conjug file as VBZ, must not be adressed as regular ) { freq_iter_num = freqs.find(std::make_pair(base_tmp, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums.find(base_tmp); if (freq_iter_num == freqs.end()) { if ((!is_candidate_verb(word) && is_valid_general_tag(next_tag)) || (!is_candidate_name(word) && is_valid_verb_tag(next_tag))) { if (last_hope_tags_.find(word) != last_hope_tags_.end() && get_map_element(last_hope_tags_, word) == tag) return 0; to_ret = general_tag_back(tag, next_tag); } else to_ret = 0; return to_ret; } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second); // * exp(-1 / sqrt(static_cast<double> (freq_iter_den->second))); return freq; } } if (freq_iter_num == freqs_back.end() || freq_iter_den == tot_nums_back.end()) { return 0; } if (base_iter == conjug.end() && (tag == "VBZ" || tag == "VBD" || tag == "VBN" || tag == "VBG" || tag == "NNS" || tag == "NNPS")) // These are the only tags that modify the word. The only ones non admissable at this point return 0; double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); return freq; } double tagger_info::get_freq_prior(const string &word, const string &tag, const string &next_tag) // return the conditional probability of a word with tag "tag" being followed by "next_tag" { string base; TMapPStSt::iterator base_iter; TMapStVSt::iterator conj_iter; conj_iter = conj_tag.find(word); if (conj_iter != conj_tag.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) == conj_iter->second.end()) { // The word is in the conjugation file but is never tagged // as "tag" return 0 return 0; } conj_iter = conjug_base.find(word); if (conj_iter != conjug_base.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) != conj_iter->second.end()) { // The word is in the conjugation file but is declined in another way than "word" return 0; } base_iter = conjug.find(std::make_pair(word, tag)); if (base_iter != conjug.end()) { base = base_iter->second; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs_prior.find(std::make_pair(base, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_prior.find(base); double freq = 0; if (freq_iter_num != freqs_prior.end() && freq_iter_den != tot_nums_prior.end()) { freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); } return freq; } else base = word; TMapPInt::iterator freq_iter_num; TMapStInt::iterator freq_iter_den; freq_iter_num = freqs_prior.find(std::make_pair(base, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_prior.find(base); double to_ret; string base_tmp; to_ret = regular_tag(word, tag, &base_tmp); if (base_tmp == "[wrong_tag]") return 0; if (to_ret != 0 && tag == "NNS" && !is_candidate_name(word)) return 0; // avoid verbs like "derive" to be understood as NNS if (to_ret != 0 && tag == "VBZ" && !is_candidate_verb(base_tmp)) { return 0; // avoid verbs like "academic" to be understood as VBZ } if (freq_iter_den == tot_nums_prior.end()) { if (to_ret != 0 && base_iter == conjug.end()) { freq_iter_num = freqs_prior.find(std::make_pair(base_tmp, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums_prior.find(base_tmp); if (freq_iter_num == freqs_prior.end()) { return 0; /// NO GUESSWORK BETWEEN VBZ AND NNS!!! } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); return freq; } } else if (is_valid_general_tag(tag)) { return general_tag_prior(tag, next_tag); } } else if (to_ret != 0 && base_iter == conjug.end() // "has" is in the conjug file as VBZ, must not be adressed as regular ) { freq_iter_num = freqs.find(std::make_pair(base_tmp, std::make_pair(tag, next_tag))); freq_iter_den = tot_nums.find(base_tmp); if (freq_iter_num == freqs.end()) { if ((!is_candidate_verb(word) && is_valid_general_tag(next_tag)) || (!is_candidate_name(word) && is_valid_verb_tag(next_tag))) { if (last_hope_tags_.find(word) != last_hope_tags_.end() && get_map_element(last_hope_tags_, word) == tag) return 0; to_ret = general_tag_prior(tag, next_tag); } else to_ret = 0; return to_ret; } else { double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second); return freq; } } if (freq_iter_den == tot_nums_prior.end() || freq_iter_num == freqs_prior.end()) return 0; if (base_iter == conjug.end() && (tag == "VBZ" || tag == "VBD" || tag == "VBN" || tag == "VBG" || tag == "NNS" || tag == "NNPS")) // These are the only tags that modify the word. The only ones non admissable at this point return 0; double freq = freq_iter_num->second / static_cast<double>(freq_iter_den->second) * exp(-1 / sqrt(static_cast<double>(freq_iter_den->second))); return freq; } string tagger_info::get_conj(const string &word, string tag) // return the base form for "word" tagged as "tag" { if (tag == "NNPS") tag = "NNS"; // Some combination just don't exist (although they are in grammatically possible) map<pair<string, string>, string> exceptions; exceptions[make_pair("says", "NNS")] = 1; exceptions[make_pair("ends", "NNS")] = 1; map<pair<string, string>, string>::iterator miter = exceptions.find(make_pair(word, tag)); if (miter != exceptions.end()) return ""; string base = ""; TMapPStSt::iterator base_iter; TMapStVSt::iterator conj_iter; conj_iter = conj_tag.find(word); if (conj_iter == conj_tag.end()) goto regular; if (conj_iter != conj_tag.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) == conj_iter->second.end()) { // The word is in the conjugation file but is never tagged // as "tag" return base; } conj_iter = conjug_base.find(word); if (conj_iter != conjug_base.end() && find(conj_iter->second.begin(), conj_iter->second.end(), tag) != conj_iter->second.end()) { // The word is in the conjugation file but is declined in another way than "word" return base; } base_iter = conjug.find(std::make_pair(word, tag)); if (base_iter != conjug.end()) { base = base_iter->second; return base; } else { base = word; } regular: /// one in a million string base_tmp = ""; double w = this->regular_tag(word, tag, &base_tmp); // Try the regular tag anyway if (w != 0 && base_tmp != "") base = base_tmp; return base; } void tagger_info::load_wikidata_names(const char *f) { std::ifstream file; char article[1024]; vector<string> data; file.open(f); if (!file.bad()) { std::cerr << "Loading WikiData names from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); if(article[0] == '#') continue; boost::split(data, article, boost::is_any_of(" ")); if (data.size() >= 2) { string q_str= data.at(0); q_str = q_str.substr(1,q_str.size() ); int q_id= boost::lexical_cast<int>(q_str); vector<string> key(data.begin()+1,data.end() ); // lowers all the letters string name = ""; for (int n = 0; n < key.size(); ++n) { string wordstr = key.at(n); for (int i = 0; i < wordstr.size(); ++i) { char tmp_char = std::tolower(wordstr.at(i)); wordstr.at(i) = tmp_char; } key.at(n) = wordstr; name += wordstr + " "; } q_names_[q_id] = name; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); } void tagger_info::load_wikidata_qs(const char *f) { std::ifstream file; char article[1024]; vector<string> data; file.open(f); if (!file.bad()) { std::cerr << "Loading WikiData items from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); if(article[0] == '#') continue; boost::split(data, article, boost::is_any_of(" ")); if (data.size() >= 2) { string q_str= data.at(0); q_str = q_str.substr(1,q_str.size() ); int q_id= boost::lexical_cast<int>(q_str); vector<string> key(data.begin()+1,data.end() ); // lowers all the letters string name = ""; for (int n = 0; n < key.size(); ++n) { string wordstr = key.at(n); for (int i = 0; i < wordstr.size(); ++i) { char tmp_char = std::tolower(wordstr.at(i)); wordstr.at(i) = tmp_char; } key.at(n) = wordstr; name += wordstr; if(n != key.size()-1) name += "_"; } q_values_[name].push_back(q_id); } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); } void tagger_info::load_tag_frequencies(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; TMapPStInt tag_freqs_tmp; TMapStInt tot_freqs_tmp; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 3) { value = boost::lexical_cast<int>(data.at(2)); tag_freqs_tmp[std::make_pair(data.at(0), data.at(1))] += value; tot_freqs_tmp[data.at(0)] += value; //std::cout << data.at(0) << " " << data.at(1) << " "<< data.at(2) << std::endl; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); TMapPStInt::iterator tagiter = tag_freqs_tmp.begin(); for (; tagiter != tag_freqs_tmp.end(); ++tagiter) { double tot_tmp = get_map_element(tot_freqs_tmp, tagiter->first.first); tag_freqs[make_pair(tagiter->first.first, tagiter->first.second)] = tagiter->second / tot_tmp * exp(-1 / sqrt(tot_tmp)); } } void tagger_info::load_substitutions(const char *f) { std::ifstream file; char article[1024]; vector<string> data; file.open(f); if (!file.bad()) { std::cerr << "Loading substitutions from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 2) { vector<string> trigger_vect; boost::split(trigger_vect, data.at(0), boost::is_any_of("_")); substitutions_[trigger_vect] = data.at(1); } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); } void tagger_info::load_tag_frequencies_back(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; TMapPStInt tag_freqs_tmp; TMapStInt tot_freqs_tmp; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 3) { value = boost::lexical_cast<int>(data.at(2)); tag_freqs_tmp[std::make_pair(data.at(0), data.at(1))] += value; tot_freqs_tmp[data.at(0)] += value; //std::cout << data.at(0) << " " << data.at(1) << " "<< data.at(2) << std::endl; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); TMapPStInt::iterator tagiter = tag_freqs_tmp.begin(); for (; tagiter != tag_freqs_tmp.end(); ++tagiter) { double tot_tmp = get_map_element(tot_freqs_tmp, tagiter->first.first); tag_freqs_back[make_pair(tagiter->first.first, tagiter->first.second)] = tagiter->second / tot_tmp * exp(-1 / sqrt(tot_tmp)); } } void tagger_info::load_tag_frequencies_prior(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; TMapPStInt tag_freqs_tmp; TMapStInt tot_freqs_tmp; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 3) { value = boost::lexical_cast<int>(data.at(2)); tag_freqs_tmp[std::make_pair(data.at(0), data.at(1))] += value; tot_freqs_tmp[data.at(0)] += value; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); TMapPStInt::iterator tagiter = tag_freqs_tmp.begin(); for (; tagiter != tag_freqs_tmp.end(); ++tagiter) { double tot_tmp = get_map_element(tot_freqs_tmp, tagiter->first.first); tag_freqs_prior[make_pair(tagiter->first.first, tagiter->first.second)] = tagiter->second / tot_tmp * exp(-1 / sqrt(tot_tmp)); } } void tagger_info::load_frequencies(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; string old_name = ""; TMapStInt local_tag_num; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 4) { value = boost::lexical_cast<int>(data.at(3)); freqs[std::make_pair(data.at(0), std::make_pair(data.at(1), data.at(2)))] = value; tot_nums[data.at(0)] += value; if (old_name != data.at(0)) { TMapStInt::iterator liter = local_tag_num.begin(), lend = local_tag_num.end(); pair<string, int> chosen_tag(make_pair("", 0)); for (; liter != lend; ++liter) { if (chosen_tag.second < liter->second) chosen_tag = make_pair(liter->first, liter->second); } last_hope_tags_[old_name] = chosen_tag.first; local_tag_num = TMapStInt(); old_name = data.at(0); } ++local_tag_num[data.at(1)]; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); } void tagger_info::load_frequencies_back(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 4) { value = boost::lexical_cast<int>(data.at(3)); freqs_back[std::make_pair(data.at(0), std::make_pair(data.at(1), data.at(2)))] = value; tot_nums_back[data.at(0)] += value; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); } void tagger_info::load_frequencies_prior(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; file.open(f); if (!file.bad()) { std::cerr << "Loading tagging frequencies from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() == 4) { value = boost::lexical_cast<int>(data.at(3)); freqs_prior[std::make_pair(data.at(0), std::make_pair(data.at(1), data.at(2)))] = value; tot_nums_prior[data.at(0)] += value; } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); file.close(); } void tagger_info::load_conjugations(const char *f) { std::ifstream file; char article[1024]; vector<string> data; int value; file.open(f); if (!file.bad()) { std::cerr << "Loading plurals and tenses from \'" << f << "\'." << std::endl; while (file.good()) { file.getline(article, 1024); boost::split(data, article, boost::is_any_of("\t")); if (data.size() >= 3) { conjug[std::make_pair(data.at(0), data.at(2))] = data.at(1); conjug_base[data.at(1)].push_back(data.at(2)); conj_tag[data.at(0)].push_back(data.at(2)); irregular_conj_[make_pair(data.at(1), data.at(2))] = data.at(0); } } } else throw std::length_error(std::string("File") + f + " finished unexpectedly."); } void tagger_info::complete_regular_verbs() { // Create all the regular conjugations TMapPInt::iterator freqs_iter = freqs.begin(); TMapPInt::iterator freqs_end = freqs.end(); vector<char> vowels; vector<string> existing_tags; vowels.push_back('a'); vowels.push_back('e'); vowels.push_back('i'); vowels.push_back('o'); vowels.push_back('u'); vowels.push_back('y'); string final_string; for (; freqs_iter != freqs_end; ++freqs_iter) { string base_str = freqs_iter->first.first; string tag_str = freqs_iter->first.second.first; ; if (is_verb(tag_str)) { TMapStVSt::iterator base_iter = conjug_base.find(base_str); if (base_iter != conjug_base.end()) existing_tags = base_iter->second; else existing_tags = vector<string>(); if (find(existing_tags.begin(), existing_tags.end(), "VBG") == existing_tags.end()) { // if the gerundive has not been declared final_string = base_str + "ing"; conjug_base[base_str].push_back("VBG"); conjug[std::make_pair(final_string, "VBG")] = base_str; conj_tag[final_string].push_back("VBG"); } if (find(existing_tags.begin(), existing_tags.end(), "VBD") == existing_tags.end()) { // if the simple past has not been declared if (base_str.size() > 2 && base_str.at(base_str.size() - 1) == 'y' && find(vowels.begin(), vowels.end(), base_str.at(base_str.size() - 2)) != vowels.end()) { base_str.erase(base_str.size() - 1); final_string = base_str + "ied"; } else final_string = base_str + "ed"; conjug_base[base_str].push_back("VBD"); conjug[std::make_pair(final_string, "VBD")] = base_str; conj_tag[final_string].push_back("VBD"); } if (find(existing_tags.begin(), existing_tags.end(), "VBN") == existing_tags.end()) { // if the past participle has not been declared if (base_str.size() > 2 && base_str.at(base_str.size() - 1) == 'y' && find(vowels.begin(), vowels.end(), base_str.at(base_str.size() - 2)) != vowels.end()) { base_str.erase(base_str.size() - 1); final_string = base_str + "ied"; } else final_string = base_str + "ed"; conjug_base[base_str].push_back("VBN"); conjug[std::make_pair(final_string, "VBN")] = base_str; conj_tag[final_string].push_back("VBN"); } if (find(existing_tags.begin(), existing_tags.end(), "VBZ") == existing_tags.end()) { // if the past participle has not been declared if (base_str.size() > 2 && base_str.at(base_str.size() - 1) == 'y' && find(vowels.begin(), vowels.end(), base_str.at(base_str.size() - 2)) != vowels.end()) { base_str.erase(base_str.size() - 1); final_string = base_str + "ies"; } else final_string = base_str + "s"; conjug_base[base_str].push_back("VBZ"); conjug[std::make_pair(final_string, "VBZ")] = base_str; conj_tag[final_string].push_back("VBZ"); } } if (is_name(tag_str)) { TMapStVSt::iterator base_iter = conjug_base.find(base_str); if (base_iter != conjug_base.end()) existing_tags = base_iter->second; else existing_tags = vector<string>(); if (find(existing_tags.begin(), existing_tags.end(), "NNS") == existing_tags.end()) { // if the plural has not been declared if (base_str.size() > 2 && base_str.at(base_str.size() - 1) == 'y' && find(vowels.begin(), vowels.end(), base_str.at(base_str.size() - 2)) != vowels.end()) { base_str.erase(base_str.size() - 1); final_string = base_str + "ies"; } else final_string = base_str + "s"; conjug_base[base_str].push_back("NNS"); conjug[std::make_pair(final_string, "NNS")] = base_str; conj_tag[final_string].push_back("NNS"); } if (find(existing_tags.begin(), existing_tags.end(), "NNPS") == existing_tags.end()) { // if the plural has not been declared if (base_str.size() > 2 && base_str.at(base_str.size() - 1) == 'y' && find(vowels.begin(), vowels.end(), base_str.at(base_str.size() - 2)) != vowels.end()) { base_str.erase(base_str.size() - 1); final_string = base_str + "ies"; } else final_string = base_str + "s"; conjug_base[base_str].push_back("NNPS"); conjug[std::make_pair(final_string, "NNPS")] = base_str; conj_tag[final_string].push_back("NNPS"); } } } } static inline bool has_ending(const string &word, const string &ending) { if (word.length() >= ending.length()) if (word.compare(word.length() - ending.length(), ending.length(), ending) == 0) return true; return false; } static inline bool has_ending(const string &word, const vector<string> &endings) { for (int n = 0; n < endings.size(); ++n) { if (word.length() >= endings.at(n).length()) if (word.compare(word.length() - endings.at(n).length(), endings.at(n).length(), endings.at(n)) == 0) return true; } return false; } double tagger_info::regular_tag(const string &word, const string &tag, string *base) { if (word.size() < 2) { if (tag == "NN") return 1; else return 0; // single letters are always names } if (find(except_.begin(), except_.end(), word) != except_.end()) return 0; // Create all the regular conjugations vector<char> vowels; vowels.push_back('a'); vowels.push_back('e'); vowels.push_back('i'); vowels.push_back('o'); vowels.push_back('u'); vowels.push_back('y'); string final_string; int num_candidates = 0; vector<string> candidate_tag; vector<string> bases; // if it is a VBG candidate if (has_ending(word, "ing")) { int size = word.size(); string base = word.substr(0, size - 3); string base2 = base + "e"; if (tot_nums.find(base) != tot_nums.end() //&& this->get_conj(base,"VB") != "" ) { ++num_candidates; candidate_tag.push_back("VBG"); bases.push_back(base); } if (tot_nums.find(base2) != tot_nums.end() //&& this->get_conj(base,"VB") != "" ) { ++num_candidates; candidate_tag.push_back("VBG"); bases.push_back(base2); } } // if it is a VBN candidate if (has_ending(word, "ed")) { int size = word.size(); string base = word.substr(0, size - 2); string base2 = base; string base3 = base; base3 += "e"; size = base2.size() - 1; if (base2.size() && base2.at(size) == 'i' && size > 2) base2.at(size) = 'y'; if (tot_nums.find(base) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBN"); bases.push_back(base); } else if (tot_nums.find(base2) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBN"); bases.push_back(base2); } else if (tot_nums.find(base3) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBN"); bases.push_back(base3); } } // if it is a VBD candidate if (has_ending(word, "ed")) { int size = word.size(); string base = word.substr(0, size - 2); string base2 = base; string base3 = base; base3 += "e"; size = base2.size() - 1; if (base2.at(size) == 'i' && size > 2) base2.at(size) = 'y'; if (tot_nums.find(base) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBD"); bases.push_back(base); } else if (tot_nums.find(base2) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBD"); bases.push_back(base2); } else if (tot_nums.find(base3) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBD"); bases.push_back(base3); } } // if it is a VBZ candidate if (has_ending(word, "s")) { int size = word.size(); string base = word.substr(0, size - 1); string base2 = base; size = base2.size() - 1; if (base2.at(size) == 'i' && size > 2 && find(vowels.begin(), vowels.end(), base2.at(size - 1)) == vowels.end()) base2.at(size) = 'y'; if (tot_nums.find(base) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBZ"); bases.push_back(base); } else if (tot_nums.find(base2) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("VBZ"); bases.push_back(base2); } } // if it is a NNS candidate if (has_ending(word, "s")) { int size = word.size(); string base = word.substr(0, size - 1); string base2 = base; size = base2.size() - 1; if (base2.at(size) == 'i' && size > 2 && find(vowels.begin(), vowels.end(), base2.at(size - 1)) == vowels.end()) base2.at(size) = 'y'; if (tot_nums.find(base) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("NNS"); bases.push_back(base); candidate_tag.push_back("NNPS"); bases.push_back(base); } else if (tot_nums.find(base2) != tot_nums.end()) { ++num_candidates; candidate_tag.push_back("NNS"); bases.push_back(base2); candidate_tag.push_back("NNPS"); bases.push_back(base2); } } vector<string>::iterator citer = find(candidate_tag.begin(), candidate_tag.end(), tag); if (citer != candidate_tag.end()) { int d = distance(candidate_tag.begin(), citer); *base = bases.at(d); return 1. / num_candidates; } if (num_candidates > 0) { *base = "[wrong_tag]"; return 0; } if ((tag == "NN" || tag == "NNP") && this->is_candidate_name(word)) { *base = word; return 1; } if ((tag == "VB" || tag == "VBP") && this->is_candidate_verb(word)) { *base = word; return 1; } return 0; } bool tagger_info::is_auxiliary_verb(const string &word) { vector<string> tags; tags.push_back("VBZ"); tags.push_back("VBP"); tags.push_back("VBD"); tags.push_back("VBN"); for (int n = 0; n < tags.size(); ++n) { string base = this->get_conj(word, tags.at(n)); if (base == "") base = word; if (base == "have" || base == "be" || base == "do") { return true; } } return false; } bool tagger_info::is_modal_verb(const string &word) { string base; base = word; // Modals are also auxiliaries if (base == "can" || base == "could" || base == "may" || base == "might" || base == "shall" || base == "should" || base == "will" || base == "would") { return true; } return false; } bool tagger_info::is_candidate_verb(const string &word) { vector<string> exceptions; exceptions.push_back("still"); metric *d = metric_singleton::get_metric_instance(); if (!shortfind(exceptions,word) && d->has_verb(word)) { return true; } // This is how you can tell if a word can be a verb if (freqs.find(std::make_pair(word, std::make_pair("VB", "TO"))) != freqs.end()) { return true; } return false; } bool tagger_info::is_candidate_name(const string &word) { // This is how you can tell if a word can be a verb if (freqs.find(std::make_pair(word, std::make_pair("NN", "DT"))) != freqs.end()) return true; if (freqs.find(std::make_pair(word, std::make_pair("NNS", "DT"))) != freqs.end()) return true; if (freqs.find(std::make_pair(word, std::make_pair("NNP", "DT"))) != freqs.end()) return true; if (freqs.find(std::make_pair(word, std::make_pair("NNPS", "DT"))) != freqs.end()) return true; return false; } string tagger_info::unique_word(const string &word) { TMapStSt::iterator miter = unique_words_.find(word); if (miter != unique_words_.end()) { return miter->second; } return ""; } vector<string> tagger_info::getCandidateTags(const string &str) { vector<string> to_return; TMapStVSt::iterator citer = candidate_tags_.find(str); if (citer != candidate_tags_.end()) { to_return = citer->second; } return to_return; } string tagger_info::getSureTag(const string &str) const { string to_return; TMapStSt::const_iterator citer = sure_tags_.find(str); if (citer != sure_tags_.end()) { to_return = citer->second; } else to_return = ""; return to_return; } bool tagger_info::isSureTag(const string &str) const { string to_return; TMapStSt::const_iterator citer = sure_tags_.find(str); if (citer != sure_tags_.end()) return true; return false; } string tagger_info::conjugate(string base, const string &tag) // conjugate base according to tag { if (base.size() == 0) return ""; string conj = base; // search for an irregular conjugation TMapPStSt::iterator irr_iter = irregular_conj_.find(make_pair(base, tag)); if (irr_iter != irregular_conj_.end()) { conj = irr_iter->second; return conj; } map<pair<string, string>, string> strange_elements; strange_elements[make_pair("find", "VBD")] = "found"; strange_elements[make_pair("find", "VBN")] = "found"; strange_elements[make_pair("do", "VBP")] = "do"; strange_elements[make_pair("do", "VB")] = "do"; strange_elements[make_pair("have", "VB")] = "have"; strange_elements[make_pair("have", "VBP")] = "have"; strange_elements[make_pair("have", "VBZ")] = "has"; strange_elements[make_pair("be", "VB")] = "be"; strange_elements[make_pair("be", "VBZ")] = "is"; strange_elements[make_pair("be", "VBP")] = "am"; strange_elements[make_pair("be", "VBG")] = "being"; strange_elements[make_pair("see", "VBG")] = "seeing"; strange_elements[make_pair("born", "VBN")] = "born"; strange_elements[make_pair("people", "NNS")] = "people"; strange_elements[make_pair("specie", "NN")] = "species"; strange_elements[make_pair("specie", "NNP")] = "species"; strange_elements[make_pair("specie", "NNS")] = "species"; strange_elements[make_pair("specie", "NNPS")] = "species"; strange_elements[make_pair("star", "NNS")] = "stars"; strange_elements[make_pair("star", "NNPS")] = "stars"; map<pair<string, string>, string>::iterator miter = strange_elements.find(make_pair(base, tag)); if (miter != strange_elements.end()) { conj = miter->second; return conj; } // Create all the regular conjugations vector<string> vowels; vowels.push_back("a"); vowels.push_back("e"); vowels.push_back("i"); vowels.push_back("o"); vowels.push_back("u"); vowels.push_back("y"); bool vow_trigger = false; bool prior_vow_trigger = false; string base2 = base; //puts("LAST:::"); char last_char = base.at(base.size() - 1); //puts("LAST2:::"); if (base == "don" && tag != "NN" && tag != "NNP" && tag != "NNS" && tag != "NNPS") base = "do"; if (base2 == "don" && tag != "NN" && tag != "NNP" && tag != "NNS" && tag != "NNPS") base2 = "do"; metric *d = metric_singleton::get_metric_instance(); if (has_ending(base, vowels) && base.size() > 1) { base2 = base.substr(0, base.size() - 1); vow_trigger = true; } if (has_ending(base2, vowels)) prior_vow_trigger = true; if (tag == "VBG") { if (vow_trigger) conj = base2 + "ing"; else conj = base + "ing"; } if (tag == "VBD") { if (vow_trigger) conj = base2 + "ed"; else conj = base + "ed"; } if (tag == "VBN") { if (vow_trigger) conj = base2 + "ed"; else conj = base + "ed"; } if (tag == "VBZ") { conj = base + "s"; } if (tag == "NNS" || tag == "NNPS") { if (d->has_noun(base + 'e')) { base += "e"; } if (d->has_noun(base2 + 'e')) { base2 += "e"; } if (last_char == 's') conj = base; else if (last_char == 'y' && prior_vow_trigger) { conj = base + "s"; } else if (last_char == 'y' && !prior_vow_trigger) { conj = base2 + "ies"; } else if (vow_trigger && prior_vow_trigger) { conj = base2 + "s"; } else { conj = base + "s"; } } return conj; } string tagger_info::get_base_superlative(string str) { TMapStSt irregulars; irregulars["better"] = "good"; irregulars["worse"] = "bad"; irregulars["greater"] = "big"; TMapStSt::iterator miter = irregulars.find(str); if (miter != irregulars.end()) { return miter->second; } // Create all the regular conjugations vector<string> vowels; vowels.push_back("a"); vowels.push_back("e"); vowels.push_back("i"); vowels.push_back("o"); vowels.push_back("u"); vowels.push_back("y"); string base = str.substr(0, str.size() - 2); string to_return = base; if (has_ending(base, vowels)) { string base2 = base.substr(0, base.size() - 1); if (!has_ending(base2, vowels)) { to_return = base2 + "y"; } } metric *d = metric_singleton::get_metric_instance(); if (d->is_adjective(to_return + 'e')) { to_return = to_return + 'e'; } return to_return; } vector<int> tagger_info::find_wikidata_q(const string &key, const string &tag) { vector<int> to_return; TMapStVInt::iterator miter = q_values_.find(key); if (miter != q_values_.end()) { to_return = miter->second; } if(key.find("the_") == 0) { string new_key = key.substr(4,key.size()); TMapStVInt::iterator miter2 = q_values_.find(new_key); if (miter2 != q_values_.end()) { to_return.insert(to_return.begin(),miter2->second.begin(),miter2->second.end()); } } if(tag == "NNS" || tag == "NNPS") { string new_key = this->get_conj(key,tag); TMapStVInt::iterator miter2 = q_values_.find(new_key); if (miter2 != q_values_.end()) { to_return.insert(to_return.begin(),miter2->second.begin(),miter2->second.end()); } } return to_return; } string tagger_info::get_wikidata_name(int key) { string to_return; TMapIntSt::iterator miter = q_names_.find(key); if (miter != q_names_.end()) { return miter->second; } return to_return; }
4ff616809c06e7f03aa73c5ce28c83a819777ec0
3249d62627813cedfbaa656b49cb47e9fe72696c
/Week 2 [ DP ]/C - Vacation.cpp
f6f90e3db4dc77046f488ab15a459bd456fdc63b
[]
no_license
towhid1zaman/Home-Quarentine-CP-practice
396fc7f7109b10ca2e5762c798fcd9f634aeda75
7cbc6fb3f29b9e0f399f5e34b9b95a8623a1cf74
refs/heads/master
2021-06-12T16:51:21.762392
2020-05-08T19:12:15
2020-05-08T19:12:15
254,362,444
0
0
null
null
null
null
UTF-8
C++
false
false
1,426
cpp
C - Vacation.cpp
// </> : towhid1zaman #include "bits/stdc++.h" using namespace std; typedef long long ll; typedef vector<int> vi;typedef vector<ll> vll; #define fill(a,b) memset(a, b, sizeof (a)) #define all(v) (v).begin(),(v).end() #define sp(k) cout<<setprecision(k)<<fixed; #define rep(i,a) for(int i=0; i<a;i++) #define rep1(i,a,b) for(int i=(a);i<=(b);++i) #define irep(i,b,a) for(int i=(b);i>=(a);--i) #define minv(v) *min_element(all(v)) #define maxv(v) *max_element(all(v)) #define unq(v) sort(all(v)),(v).erase(unique(all(v)),(v).end()) #define _ios ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define endl "\n" #define sqr(a) ((a)*(a)) #define sz(a) int(a.size()) #define ff first #define ss second #define pb push_back const double pi = acos(-1.0); const int mod = 1000000007; // (int)1e9+7 const int maxn = 2000100; int main(){ _ios; int n; cin >> n; vi dp(3); for(int day = 0 ; day < n; day++){ vi abc(3); vi NewDp(3,0); for(int i = 0; i<3; i++){ cin >> abc[i]; } for(int i = 0; i<3; i++){ for(int j = 0; j<3; j++){ if(i!=j){ NewDp[j] = max(NewDp[j], dp[i]+abc[j]); } } } //cout<<maxv(NewDp)<<endl; dp = NewDp; } cout<<maxv(dp)<<endl; return 0; } /* */
9195b097484d14fd6840496295019fb077d9c74b
274e1169a03062140871e4fddaf4836e30cce503
/src/CursATE/Screen/detail/splitIntoLines.ut.cpp
3d158e5b69ee29232750258d3b016d4f6616cc61
[ "BSD-2-Clause" ]
permissive
el-bart/LogATE
38df676a9874c42d9ec862cf3090e0e31bc134f2
88569417c0758318a049205bb69f3ecee4d13a32
refs/heads/master
2023-08-29T14:45:26.924602
2023-07-25T17:55:13
2023-07-25T17:55:13
152,469,962
3
3
null
null
null
null
UTF-8
C++
false
false
5,514
cpp
splitIntoLines.ut.cpp
#include <doctest/doctest.h> #include "CursATE/Screen/detail/splitIntoLines.hpp" using CursATE::Screen::detail::splitIntoLines; using namespace std::literals::string_literals; namespace { TEST_SUITE("CursATE::Screen::detail::splitIntoLines") { TEST_CASE("empty string") { CHECK( splitIntoLines("", 100).empty() ); } TEST_CASE("single line") { const auto out = splitIntoLines("foo bar", 100); REQUIRE( out.size() == 1u ); CHECK( out[0] == "foo bar" ); } TEST_CASE("wrapping lines") { SUBCASE("exactly the column size does not break line") { const auto out = splitIntoLines("foobar", 6); REQUIRE( out.size() == 1u ); CHECK( out[0] == "foobar" ); } SUBCASE("over line lenght break the line") { const auto out = splitIntoLines("foobarX", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foobar" ); CHECK( out[1] == "X" ); } SUBCASE("round multi-lines") { const auto out = splitIntoLines("foobar012345", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foobar" ); CHECK( out[1] == "012345" ); } SUBCASE("non-round multi-lines") { const auto out = splitIntoLines("foobar012345xxx", 6); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foobar" ); CHECK( out[1] == "012345" ); CHECK( out[2] == "xxx" ); } SUBCASE("escape sequence serve as split point") { const auto out = splitIntoLines("foo\\bar", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo\\b" ); CHECK( out[1] == "ar" ); } SUBCASE("when escaped EOL is in the line break place, it is moved to a new line") { const auto out = splitIntoLines("foo\\nbar", 4); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo" ); CHECK( out[1] == "\\n" ); CHECK( out[2] == "bar" ); } SUBCASE("when escaped non-EOL is in the line break place, it is moved to a new line") { const auto out = splitIntoLines("foo\\tx", 4); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo" ); CHECK( out[1] == "\\tx" ); } SUBCASE("when escaped non-printable char is in the line break place, it is moved to a new line (whole sequence)") { const auto out = splitIntoLines("foo\\x42bar", 4); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo" ); CHECK( out[1] == "\\x42" ); CHECK( out[2] == "bar" ); } SUBCASE("when escaped non-printable char is in the line break place, it is moved to a new line (sequence is part of it)") { const auto out = splitIntoLines("foo\\x42bar", 5); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo" ); CHECK( out[1] == "\\x42" ); CHECK( out[2] == "bar" ); } SUBCASE("columns are always at least 4 characters wide") { const auto out = splitIntoLines("foo\\x42bar", 2); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo" ); CHECK( out[1] == "\\x42" ); CHECK( out[2] == "bar" ); } SUBCASE("EOL at the end of last line does not break line") { const auto out = splitIntoLines("foobar012345x\\nok\\n", 6); REQUIRE( out.size() == 4u ); CHECK( out[0] == "foobar" ); CHECK( out[1] == "012345" ); CHECK( out[2] == "x\\n" ); CHECK( out[3] == "ok\\n" ); } } TEST_CASE("wrapping lines around words, when possible") { SUBCASE("wrap aroud space") { const auto out = splitIntoLines("foo bar", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo " ); CHECK( out[1] == "bar" ); } SUBCASE("wrap aroud tab") { const auto out = splitIntoLines("foo\\tbar", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo\\t" ); CHECK( out[1] == "bar" ); } SUBCASE("wrap aroud CR") { const auto out = splitIntoLines("foo\\nbar", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo\\n" ); CHECK( out[1] == "bar" ); } SUBCASE("wrap aroud LF") { const auto out = splitIntoLines("foo\\rbar", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "foo\\r" ); CHECK( out[1] == "bar" ); } SUBCASE("wrap aroud CR+FL is considered single new line") { const auto out = splitIntoLines("foo\\n\\r\\n\\rbar", 7); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo\\n\\r" ); CHECK( out[1] == "\\n\\r" ); CHECK( out[2] == "bar" ); } SUBCASE("wrap aroud FL+CR is considered single new line") { const auto out = splitIntoLines("foo\\r\\n\\r\\nbar", 7); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo\\r\\n" ); CHECK( out[1] == "\\r\\n" ); CHECK( out[2] == "bar" ); } SUBCASE("wrapping multiple CRs are considered separate lines") { const auto out = splitIntoLines("foo\\n\\nbar", 7); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo\\n" ); CHECK( out[1] == "\\n" ); CHECK( out[2] == "bar" ); } SUBCASE("wrapping multiple LFs are considered separate lines") { const auto out = splitIntoLines("foo\\r\\rbar", 7); REQUIRE( out.size() == 3u ); CHECK( out[0] == "foo\\r" ); CHECK( out[1] == "\\r" ); CHECK( out[2] == "bar" ); } SUBCASE("any whitespace is a good split point") { const auto out = splitIntoLines("a z", 6); REQUIRE( out.size() == 2u ); CHECK( out[0] == "a " ); CHECK( out[1] == "z" ); } SUBCASE("more white spaces than column len") { const auto out = splitIntoLines("a z", 6); REQUIRE( out.size() == 3u ); CHECK( out[0] == "a " ); CHECK( out[1] == " " ); CHECK( out[2] == " z" ); } } // TODO: pseudo-random long text + concatenation test } }
9123d4f0f2eeae63963292848e78a02baa4bcdf3
2a9bfce96c2e7894d2d2d82a7b6c4ea7b50835ca
/ArtistImages.hpp
bbefea8f4e9baf751d1a601e8e07529d4e13d4fa
[]
no_license
LeahHeadd/MusicData
89c49f0738884cfac6e693c9b11aeee3b56efb86
9838623d426a5da8858b020b0010163cdb0fd7c2
refs/heads/master
2021-08-22T18:33:44.553093
2017-11-30T23:59:11
2017-11-30T23:59:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
618
hpp
ArtistImages.hpp
#include "JSONArray.hpp" #include "ArtistImage.hpp" class ArtistImages: public JSONArray { public: ArtistImages(){}; ~ArtistImages(); int numArtistImages(); void addArtistImage(ArtistImage *artistImage); ArtistImage *artistImageWithID(unsigned int tID); void loadArtistImagesFromFile(std::string fileName); std::string htmlString(); virtual JSONDataObject *jsonObjectNode() { return new ArtistImage(); } std::vector<ArtistImage *> *listOfArtistImages() { return (std::vector<ArtistImage *> *) _listOfDataObjects; }; void runAsserts(); // used for checking the integrity of this class. };
74d285c14105edc7d06531b8e389d5ea0c225537
a94935bd3855fa6da97265b491dd18930ccbb134
/include/Packets/ShowEffect.h
06939b501973ad015ccba6f62ccee16d4df2dbdc
[ "MIT" ]
permissive
hcoffey1/RealmNet
7531deed1fd80baaeb1fa8b42aa73271d86241e8
76ead08b4a0163a05b65389e512942a620331256
refs/heads/master
2022-04-25T13:37:49.505083
2019-03-05T21:29:56
2019-03-05T21:29:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
589
h
ShowEffect.h
#pragma once #include <Packets/Packet.h> #include <DataObjects/Location.h> #ifdef LIB #define PACKET_API __declspec(dllexport) #else #define PACKET_API __declspec(dllimport) #endif class PACKET_API ShowEffect : public ServerPacket { public: byte effectType; int targetId; Location pos1; Location pos2; int color; float duration; ShowEffect(byte effectType, int targetId, const Location& pos1, const Location& pos2, int color, float duration); ShowEffect(byte* data); void emplace(byte* buffer) const override; int size() const override; String toString() const override; };
eb6a9ab65f25afcb4bf3e59788c80f986c4aefa9
ea8e0a38406aeb3b0560d2d5056743759656a1d7
/ArudinoJoyStick/MotorCode_with_LED_as_on_26final.ino
6a2eaeebd5876d0d9fbbbc66833e4a2b44b09b88
[]
no_license
anmolag10/Miscellenous_Codes
1b67f9e01251f7719db8a4161287b902acee2f31
d44da2b7fb824f4304db304995c746d574a2d5b4
refs/heads/master
2022-12-05T18:16:16.530349
2020-08-10T20:30:41
2020-08-10T20:30:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,581
ino
MotorCode_with_LED_as_on_26final.ino
int sw=2; int xaxis=A0; int yaxis=A1; int FrontR=11; int FrontL=10; int BackR=9; int BackL=6; int xmapped,lval,rval,x,y; const int vmax=255; void setup() { pinMode(sw,OUTPUT); pinMode(xaxis,INPUT); pinMode(yaxis,INPUT); pinMode(FrontR,OUTPUT); pinMode(FrontL,OUTPUT); pinMode(BackR,OUTPUT); pinMode(BackL,OUTPUT); Serial.begin(9600); } void loop() { digitalWrite(sw,HIGH); x=analogRead(xaxis); y=analogRead(yaxis); //calibration for x and y //x=x+K; // constvalue K is x calibration factor: K=512-x //y=y+H //constvalue H is y calibration factor: H=512-y if(y>512) // above origin to move forward { rval=map(y,512,1023,0,255); lval=map(y,512,10230,0,255); } else if(y<512) // below origin to move backward { rval=map(y,512,0,0,-255); lval=map(y,512,0,0,-255); } else { rval=0; lval=0; } // mapping xAxis to get exact analogWrite value if(x>512) { xmapped=map(x,512,1023,0,255); rval=rval+xmapped; lval=lval-xmapped; if(rval>255) { rval=255; } if(lval<-255) { lval=-255; } } else if(x<512) { xmapped=map(x,512,0,0,255); rval=rval+xmapped; lval=lval-xmapped; if(rval>255) { rval=255; } if(lval<-255) { lval=-255; } } if(rval<0) { analogWrite(BackR,abs(rval)); } else { analogWrite(FrontR,rval); } if(lval<0) { analogWrite(BackL,abs(lval)); } else analogWrite(FrontL,lval); Serial.print('The xAxis: '); Serial.print(x); Serial.print('The yAxis: '); Serial.print(y); }
e4163f3b9ab162655ce8ee3eab664a9e1abcaaf5
75b927a693785942d11f9f0e116da864c74ed6ce
/mupen64plus-cascades-ui/src/RiceINI.hpp
ca379c90eaa0cd8459e0e0389043d27f3bb6d24b
[ "Apache-2.0" ]
permissive
tredpath/Mupen64Plus-BB10
a58eb846633a5e323d2a7592f88d5904aa795d83
5e85f50336930ac762095be41844cc9363ac1950
refs/heads/master
2021-01-17T20:13:15.476741
2014-12-10T19:24:53
2014-12-10T19:24:53
18,780,497
3
0
null
null
null
null
UTF-8
C++
false
false
9,712
hpp
RiceINI.hpp
/* * RiceINI.hpp * * Created on: Nov 25, 2014 * Author: Travis */ #ifndef RICEINI_HPP_ #define RICEINI_HPP_ #include <QObject> #include <stdio.h> class INIEntry : public QObject { friend class RiceINI; Q_OBJECT Q_PROPERTY(QString Name READ Name WRITE setName NOTIFY entryUpdated) Q_PROPERTY(quint32 NormalCombiner READ NormalCombiner WRITE setNormalCombiner NOTIFY entryUpdated) Q_PROPERTY(quint32 NormalBlender READ NormalBlender WRITE setNormalBlender NOTIFY entryUpdated) Q_PROPERTY(quint32 FastTextureCRC READ FastTextureCRC WRITE setFastTextureCRC NOTIFY entryUpdated) Q_PROPERTY(quint32 AccurateTextureMapping READ AccurateTextureMapping WRITE setAccurateTextureMapping NOTIFY entryUpdated) Q_PROPERTY(quint32 FrameBufferOption READ FrameBufferOption WRITE setFrameBufferOption NOTIFY entryUpdated) Q_PROPERTY(quint32 RenderToTextureOption READ RenderToTextureOption WRITE setRenderToTextureOption NOTIFY entryUpdated) Q_PROPERTY(quint32 ScreenUpdateSetting READ ScreenUpdateSetting WRITE setScreenUpdateSetting NOTIFY entryUpdated) Q_PROPERTY(quint32 UseCIWidthAndRatio READ UseCIWidthAndRatio WRITE setUseCIWidthAndRatio NOTIFY entryUpdated) Q_PROPERTY(quint32 FullTMEM READ FullTMEM WRITE setFullTMEM NOTIFY entryUpdated) Q_PROPERTY(bool DisableBlender READ DisableBlender WRITE setDisableBlender NOTIFY entryUpdated) Q_PROPERTY(bool ForceScreenClear READ ForceScreenClear WRITE setForceScreenClear NOTIFY entryUpdated) Q_PROPERTY(bool EmulateClear READ EmulateClear WRITE setEmulateClear NOTIFY entryUpdated) Q_PROPERTY(bool ForceDepthBuffer READ ForceDepthBuffer WRITE setForceDepthBuffer NOTIFY entryUpdated) Q_PROPERTY(bool DisableObjBG READ DisableObjBG WRITE setDisableObjBG NOTIFY entryUpdated) Q_PROPERTY(bool DisableTextureCRC READ DisableTextureCRC WRITE setDisableTextureCRC NOTIFY entryUpdated) Q_PROPERTY(bool IncTexRectEdge READ IncTexRectEdge WRITE setIncTexRectEdge NOTIFY entryUpdated) Q_PROPERTY(bool ZHack READ ZHack WRITE setZHack NOTIFY entryUpdated) Q_PROPERTY(bool TextureScaleHack READ TextureScaleHack WRITE setTextureScaleHack NOTIFY entryUpdated) Q_PROPERTY(bool FastLoadTile READ FastLoadTile WRITE setFastLoadTile NOTIFY entryUpdated) Q_PROPERTY(bool UseSmallerTexture READ UseSmallerTexture WRITE setUseSmallerTexture NOTIFY entryUpdated) Q_PROPERTY(bool PrimaryDepthHack READ PrimaryDepthHack WRITE setPrimaryDepthHack NOTIFY entryUpdated) Q_PROPERTY(bool Texture1Hack READ Texture1Hack WRITE setTexture1Hack NOTIFY entryUpdated) Q_PROPERTY(bool DisableCulling READ DisableCulling WRITE setDisableCulling NOTIFY entryUpdated) Q_PROPERTY(bool TxtSizeMethod2 READ TxtSizeMethod2 WRITE setTxtSizeMethod2 NOTIFY entryUpdated) Q_PROPERTY(bool EnableTxtLOD READ EnableTxtLOD WRITE setEnableTxtLOD NOTIFY entryUpdated) Q_PROPERTY(int VIWidth READ VIWidth WRITE setVIWidth NOTIFY entryUpdated) Q_PROPERTY(int VIHeight READ VIHeight WRITE setVIHeight NOTIFY entryUpdated) signals: void entryUpdated(); void entryChanged(); public: enum { NOT_USE_CI_WIDTH_AND_RATIO, USE_CI_WIDTH_AND_RATIO_FOR_NTSC, USE_CI_WIDTH_AND_RATIO_FOR_PAL, }; public: INIEntry(); INIEntry(const INIEntry& toCopy); virtual ~INIEntry() { } INIEntry& operator=(const INIEntry& toCopy); public: inline quint32 NormalCombiner() const { return dwNormalCombiner; } inline quint32 NormalBlender() const { return dwNormalBlender; } inline quint32 FastTextureCRC() const { return dwFastTextureCRC; } inline quint32 AccurateTextureMapping() const { return dwAccurateTextureMapping; } inline quint32 FrameBufferOption() const { return dwFrameBufferOption; } inline quint32 RenderToTextureOption() const { return dwRenderToTextureOption; } inline quint32 ScreenUpdateSetting() const { return dwScreenUpdateSetting; } inline quint32 UseCIWidthAndRatio() const { return dwUseCIWidthAndRatio; } inline quint32 FullTMEM() const { return dwFullTMEM; } inline bool DisableBlender() const { return bDisableBlender; } inline bool ForceScreenClear() const { return bForceScreenClear; } inline bool EmulateClear() const { return bEmulateClear; } inline bool ForceDepthBuffer() const { return bForceDepthBuffer; } inline bool DisableObjBG() const { return bDisableObjBG; } inline bool DisableTextureCRC() const { return bDisableTextureCRC; } inline bool IncTexRectEdge() const { return bIncTexRectEdge; } inline bool ZHack() const { return bZHack; } inline bool TextureScaleHack() const { return bTextureScaleHack; } inline bool FastLoadTile() const { return bFastLoadTile; } inline bool UseSmallerTexture() const { return bUseSmallerTexture; } inline bool PrimaryDepthHack() const { return bPrimaryDepthHack; } inline bool Texture1Hack() const { return bTexture1Hack; } inline bool DisableCulling() const { return bDisableCulling; } inline bool TxtSizeMethod2() const { return bTxtSizeMethod2; } inline bool EnableTxtLOD() const { return bEnableTxtLOD; } inline int VIWidth() const { return dwVIWidth; } inline int VIHeight() const { return dwVIHeight; } inline QString Name() const { return name; } inline void setNormalCombiner(quint32 value) { dwNormalCombiner = value; emit entryChanged(); } inline void setNormalBlender(quint32 value) { dwNormalBlender = value; emit entryChanged(); } inline void setFastTextureCRC(quint32 value) { dwFastTextureCRC = value; emit entryChanged(); } inline void setAccurateTextureMapping(quint32 value) { dwAccurateTextureMapping = value; emit entryChanged(); } inline void setFrameBufferOption(quint32 value) { dwFrameBufferOption = value; emit entryChanged(); } inline void setRenderToTextureOption(quint32 value) { dwRenderToTextureOption = value; emit entryChanged(); } inline void setScreenUpdateSetting(quint32 value) { dwScreenUpdateSetting = value; emit entryChanged(); } inline void setUseCIWidthAndRatio(quint32 value) { dwUseCIWidthAndRatio = value; emit entryChanged(); } inline void setFullTMEM(quint32 value) { dwFullTMEM = value; emit entryChanged(); } inline void setDisableBlender(bool value) { bDisableBlender = value; emit entryChanged(); } inline void setForceScreenClear(bool value) { bForceScreenClear = value; emit entryChanged(); } inline void setEmulateClear(bool value) { bEmulateClear = value; emit entryChanged(); } inline void setForceDepthBuffer(bool value) { bForceDepthBuffer = value; emit entryChanged(); } inline void setDisableObjBG(bool value) { bDisableObjBG = value; emit entryChanged(); } inline void setDisableTextureCRC(bool value) { bDisableTextureCRC = value; emit entryChanged(); } inline void setIncTexRectEdge(bool value) { bIncTexRectEdge = value; emit entryChanged(); } inline void setZHack(bool value) { bZHack = value; emit entryChanged(); } inline void setTextureScaleHack(bool value) { bTextureScaleHack = value; emit entryChanged(); } inline void setFastLoadTile(bool value) { bFastLoadTile = value; emit entryChanged(); } inline void setUseSmallerTexture(bool value) { bUseSmallerTexture = value; emit entryChanged(); } inline void setPrimaryDepthHack(bool value) { bPrimaryDepthHack = value; emit entryChanged(); } inline void setTexture1Hack(bool value) { bTexture1Hack = value; emit entryChanged(); } inline void setDisableCulling(bool value) { bDisableCulling = value; emit entryChanged(); } inline void setTxtSizeMethod2(bool value) { bTxtSizeMethod2 = value; emit entryChanged(); } inline void setEnableTxtLOD(bool value) { bEnableTxtLOD = value; emit entryChanged(); } inline void setVIWidth(int value) { dwVIWidth = value; emit entryChanged(); } inline void setVIHeight(int value) { dwVIHeight = value; emit entryChanged(); } inline void setName(const QString& value) { name = QString(value); } private: bool bOutput; QString crccheck; QString name; quint32 dwNormalCombiner; quint32 dwNormalBlender; quint32 dwFastTextureCRC; quint32 dwAccurateTextureMapping; quint32 dwFrameBufferOption; quint32 dwRenderToTextureOption; quint32 dwScreenUpdateSetting; bool bDisableBlender; bool bForceScreenClear; bool bEmulateClear; bool bForceDepthBuffer; bool bDisableObjBG; bool bDisableTextureCRC; bool bIncTexRectEdge; bool bZHack; bool bTextureScaleHack; bool bFastLoadTile; bool bUseSmallerTexture; bool bPrimaryDepthHack; bool bTexture1Hack; bool bDisableCulling; int dwVIWidth; int dwVIHeight; quint32 dwUseCIWidthAndRatio; quint32 dwFullTMEM; bool bTxtSizeMethod2; bool bEnableTxtLOD; }; class RiceINI : public QObject { Q_OBJECT Q_PROPERTY(INIEntry* CurrentRiceINI READ CurrentRiceINI NOTIFY CurrentFileChanged) public: RiceINI(); RiceINI(const RiceINI& toCopy); virtual ~RiceINI() { } RiceINI& operator=(const RiceINI& toCopy); void ReadIniFile(); int WriteIniFile(); void setCRC(const QString& crc, const QString& name); signals: void CurrentFileChanged(); protected Q_SLOTS: void iniFileChanged() { bIniIsChanged = true; } public: inline INIEntry* CurrentRiceINI() { return &m_entries[m_currentIndex]; } protected: void OutputSectionDetails(qint32 i, FILE* fh); private: QList<INIEntry> m_entries; int m_currentIndex; bool bIniIsChanged; }; Q_DECLARE_METATYPE(INIEntry) Q_DECLARE_METATYPE(RiceINI) #endif /* RICEINI_HPP_ */
c9c3ee91473466a55be29ec9e6bcf94af967d8ac
d99d79fdacab855d7ec084965ca6eba63b85704f
/Homework 13/Homework 13/homework13.cpp
fd6e4d3d455da460aed8c833c3f3bcaa5bbab552
[]
no_license
efair4/CS1400
37d2817d2452f43070211dbe8f06567df69e97c3
2949de4a88f2a8cab1d753d0eb7438dc6ed021e4
refs/heads/master
2020-12-30T16:46:58.010878
2017-05-11T22:53:10
2017-05-11T22:53:10
91,029,316
0
0
null
null
null
null
UTF-8
C++
false
false
2,808
cpp
homework13.cpp
//Ember Fairbanks A02044817 #include <iostream> #include <string> using namespace std; //Defining the Car class class Car { private: int year, speed; string make; public: //This is the default constructor. It calls the set //functions and sets the variables equal to these values. Car(); //This is a non-default constructor. It recieves a year //and make from main and sets the variables to those //values and sets speed to 0. Car(int, string); //This function sets the car year and validates //that it is within the correct parameters. void setYear(int); //This function sets the speed and validates that //is is greater than or equal to 0. void setSpeed(int); //This function sets the make of the car. void setMake(string); //This function increases the speed by 5 each time //it is called. void accelerate(); //This function decreases the speed by 5 each time //it is called. void brake(); //This function returns the year that has been set. int getYear() { return year;} //This function returns the speed that has been set. int getSpeed() { return speed;} //This function returns the make that has been set. string getMake() { return make;} }; void Car::setYear(int newYear) { if (newYear >= 1900 && newYear <= 2030) { year = newYear; } else { year = 2013; } } void Car::setSpeed(int newSpeed) { if (newSpeed >= 0) { speed = newSpeed; } else { speed = 0; } } void Car::setMake(string newMake) { make = newMake; } Car::Car() { setYear(1908); setSpeed(0); setMake("Model T"); } Car::Car(int aYear, string aMake) { setYear(aYear); setSpeed(0); setMake(aMake); } void Car::accelerate() { speed += 5; } void Car::brake() { speed -= 5; if (speed <= 0) { speed = 0; } } //In the main function, we are testing the Car class. //Each function of the Car class is used to make sure //they are working properly. int main() { Car testCar, volkswagen(1827, "Jetta"); for (int count = 0; count < 5; count++) { testCar.accelerate(); cout<<"The speed is "<< testCar.getSpeed()<< " mph" << endl; } for (int count2 = 0; count2 < 7; count2++) { testCar.brake(); cout << "Year: " << testCar.getYear()<<endl; cout << "Make: " << testCar.getMake() << endl; cout << "Speed: " << testCar.getSpeed() << " mph" << endl; } testCar.setYear(2009); testCar.setMake("Jeep"); testCar.setSpeed(75); cout << "Year of Test Car: " << testCar.getYear() << endl; cout << "Make of Test Car: " << testCar.getMake() << endl; cout << "Speed of Test Car: " << testCar.getSpeed() << " mph" << endl; volkswagen.setSpeed(-30); cout << "Year of Volkswagen: " << volkswagen.getYear() << endl; cout << "Make of Volkswagen: " << volkswagen.getMake() << endl; cout << "Speed of Volkswagen: " << volkswagen.getSpeed() <<" mph"<< endl; return 0; }
436d208cb3de04e5e4d8aba49f3378357ab62800
1b33ba7264850680c4b4cb98652e55dd83514251
/G000_ETロボコン・シニア部門作っちゃおうかな/実装コード/TeniboArduino/Parts/TeniboArduinControlller.h
148be07c7fedcb24c829f32c8fed17e9bd0e6a95
[]
no_license
ETrobocon/ETrobo2018Garageneer
a1c3fe2e4a2a6036207e5eb31a85689630bacc66
1dcd69209410dd2d000ae2079939d4999d57236f
refs/heads/master
2020-03-23T21:29:13.190361
2018-11-12T05:27:06
2018-11-12T05:27:06
142,110,503
0
1
null
2018-09-09T02:27:37
2018-07-24T05:48:16
null
SHIFT_JIS
C++
false
false
2,428
h
TeniboArduinControlller.h
/* [NOTE] This file is automatically generated. Please do not hand-coded. Template:C++,CompositionType.h.xsl Generated Date:2018/09/19 14:45:51 Generater Name:BricRoboGen Ver:1.7.10.355 */ #ifndef TeniboArduinControlller_H #define TeniboArduinControlller_H #include "RobotMode.h" #include "../../BricRoboSketch/ValueIF.h" #include "../../BricRoboSketch/HighLowIF.h" #include "../../TeniboCommon/TeniboCommandIF.h" #include "../../TeniboCommon/TeniboNaviIF.h" /* 実装のテンプレートとして利用してください #include "stdafx.h" #include "TeniboArduinControlller.h" void TeniboArduinControlller::Run() { ValueIF accel; Rte_Write_accel(accel); HighLowIF ballPick; Rte_Write_ballPick(ballPick); ValueIF battery; Rte_Read_battery(battery); TeniboCommandIF command; Rte_Receive_command(command); ValueIF frontLed; Rte_Send_frontLed(frontLed); TeniboNaviIF navi; Rte_Write_navi(navi); ValueIF steer1; Rte_Write_steer1(steer1); ValueIF steer2; Rte_Write_steer2(steer2); } TeniboArduinControlller::TeniboArduinControlller() { } */ /** @author ike @version 1.0 */ class TeniboArduinControlller { /* User Defined Attribute */ /** */ private: int _offlineCount = 0; /** */ private: ValueIF _accel; /** */ private: HighLowIF _ballPick; /** */ private: ValueIF _frontLed; /** */ private: ValueIF _steer1; /** */ private: ValueIF _steer2; /** */ private: RobotMode _mode; /* User Defined Method */ /** */ public: TeniboArduinControlller(); /* Auto Generated Attribute */ /* Auto Generated Method */ /* RunnableEntity */ /** */ public: void Run(); /* Port */ /** */ /* Rte_Write_accel(ValueIF) */ BricRoboPortWrite(ValueIF,accel); /** */ /* Rte_Write_ballPick(HighLowIF) */ BricRoboPortWrite(HighLowIF,ballPick); /** */ /* Rte_Read_battery(ValueIF) */ BricRoboPortRead(ValueIF,battery); /** */ /* Rte_Receive_command(TeniboCommandIF) */ BricRoboPortReceive(TeniboCommandIF,command); /** */ /* Rte_Send_frontLed(ValueIF) */ BricRoboPortSend(ValueIF,frontLed); /** */ /* Rte_Write_navi(TeniboNaviIF) */ BricRoboPortWrite(TeniboNaviIF,navi); /** */ /* Rte_Write_steer1(ValueIF) */ BricRoboPortWrite(ValueIF,steer1); /** */ /* Rte_Write_steer2(ValueIF) */ BricRoboPortWrite(ValueIF,steer2); }; /* Procedure Template */ #endif /* TeniboArduinControlller_H */
6bf1d1e5c1c81aa124d54fd9f08f7d2c4bbf14c1
fb5811b90c979908bc42e03cbb7953d408cee9a2
/ID3v2Pic/FlacPic.h
3e583e7d6b8951247d7bf355904bab563d84f9c8
[ "MIT" ]
permissive
ShadowPower/AlbumCoverExtractor
972fa1a251ab1d5efa2c97e2cb8d078a1b1a7ab9
94113db18b91c61df0a02124953462a923365bfa
refs/heads/master
2022-10-31T01:12:21.212471
2022-10-05T05:44:55
2022-10-05T05:44:55
85,451,681
0
0
null
null
null
null
UTF-8
C++
false
false
7,028
h
FlacPic.h
/* FLAC标签图片提取库 Ver 1.0 从FLAC文件中稳定、快捷、高效、便捷地提取出图片数据 支持BMP、JPEG、PNG、GIF图片格式 可将图片数据提取到文件或内存中,并能安全地释放内存 使用方式与ID3v2版本相同 ShadowPower 于2014/8/1 夜间 */ #ifndef _ShadowPower_FLACPIC___ #define _ShadowPower_FLACPIC___ #define _CRT_SECURE_NO_WARNINGS #ifndef NULL #define NULL 0 #endif #include <cstdio> #include <cstdlib> #include <memory.h> #include <cstring> typedef unsigned char byte; namespace spFLAC { //Flac元数据块头部结构体定义 struct FlacMetadataBlockHeader { byte flag; //标志位,高1位:是否为最后一个数据块,低7位:数据块类型 byte length[3]; //数据块长度,不含数据块头部 }; byte *pPicData = 0; //指向图片数据的指针 int picLength = 0; //存放图片数据长度 char picFormat[4] = {}; //存放图片数据的格式(扩展名) //检测图片格式,参数1:数据,返回值:是否成功(不是图片则失败) bool verificationPictureFormat(char *data) { //支持格式:JPEG/PNG/BMP/GIF byte jpeg[2] = { 0xff, 0xd8 }; byte png[8] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a }; byte gif[6] = { 0x47, 0x49, 0x46, 0x38, 0x39, 0x61 }; byte gif2[6] = { 0x47, 0x49, 0x46, 0x38, 0x37, 0x61 }; byte bmp[2] = { 0x42, 0x4d }; memset(&picFormat, 0, 4); if (memcmp(data, &jpeg, 2) == 0) { strcpy(picFormat, "jpg"); } else if (memcmp(data, &png, 8) == 0) { strcpy(picFormat, "png"); } else if (memcmp(data, &gif, 6) == 0 || memcmp(data, &gif2, 6) == 0) { strcpy(picFormat, "gif"); } else if (memcmp(data, &bmp, 2) == 0) { strcpy(picFormat, "bmp"); } else { return false; } return true; } //安全释放内存 void freePictureData() { if (pPicData) { delete pPicData; } pPicData = 0; picLength = 0; memset(&picFormat, 0, 4); } //将图片提取到内存,参数1:文件路径,成功返回true bool loadPictureData(const char *inFilePath) { freePictureData(); FILE *fp = NULL; fp = fopen(inFilePath, "rb"); if (!fp) //如果打开失败 { fp = NULL; return false; } fseek(fp, 0, SEEK_SET); //设文件流指针到文件头部 byte magic[4] = {}; //存放校验数据 memset(&magic, 0, 4); fread(&magic, 4, 1, fp); //读入校验数据 byte fLaC[4] = { 0x66, 0x4c, 0x61, 0x43 }; if (memcmp(&magic, &fLaC, 4) == 0) { //数据校验正确,文件类型为Flac FlacMetadataBlockHeader fmbh; //创建Flac元数据块头部结构体 memset(&fmbh, 0, 4); //清空内存 fread(&fmbh, 4, 1, fp); //读入头部数据 //计算数据块长度,不含头部 int blockLength = fmbh.length[0] * 0x10000 + fmbh.length[1] * 0x100 + fmbh.length[2]; int loopCount = 0; //循环计数,防死 while ((fmbh.flag & 0x7f) != 6) { //如果数据类型不是图片,此处循环执行 loopCount++; if (loopCount > 40) { //循环40次没有遇到末尾就直接停止 fclose(fp); fp = NULL; return false; //可能文件不正常 } fseek(fp, blockLength, SEEK_CUR); //跳过数据块 if ((fmbh.flag & 0x80) == 0x80) { //已经是最后一个数据块了,仍然不是图片 fclose(fp); fp = NULL; return false; //没有找到图片数据 } //取得下一数据块头部 memset(&fmbh, 0, 4); //清空内存 fread(&fmbh, 4, 1, fp); //读入头部数据 blockLength = fmbh.length[0] * 0x10000 + fmbh.length[1] * 0x100 + fmbh.length[2];//计算数据块长度 } //此时已到图片数据块 int nonPicDataLength = 0; //非图片数据长度 fseek(fp, 4, SEEK_CUR); //信仰之跃 nonPicDataLength += 4; char nextJumpLength[4]; //下次要跳的长度 fread(&nextJumpLength, 4, 1, fp); //读取安全跳跃距离 nonPicDataLength += 4; int jumpLength = nextJumpLength[0] * 0x1000000 + nextJumpLength[1] * 0x10000 + nextJumpLength[2] * 0x100 + nextJumpLength[3];//计算数据块长度 fseek(fp, jumpLength, SEEK_CUR); //Let's Jump!! nonPicDataLength += jumpLength; fread(&nextJumpLength, 4, 1, fp); nonPicDataLength += 4; jumpLength = nextJumpLength[0] * 0x1000000 + nextJumpLength[1] * 0x10000 + nextJumpLength[2] * 0x100 + nextJumpLength[3]; fseek(fp, jumpLength, SEEK_CUR); //Let's Jump too!! nonPicDataLength += jumpLength; fseek(fp, 20, SEEK_CUR); //信仰之跃 nonPicDataLength += 20; //非主流情况检测+获得文件格式 char tempData[20] = {}; memset(tempData, 0, 20); fread(&tempData, 8, 1, fp); fseek(fp, -8, SEEK_CUR); //回到原位 //判断40次,一位一位跳到文件头 bool ok = false; //是否正确识别出文件头 for (int i = 0; i < 40; i++) { //校验文件头 if (verificationPictureFormat(tempData)) { ok = true; break; } else { //如果校验失败尝试继续向后校验 fseek(fp, 1, SEEK_CUR); nonPicDataLength++; fread(&tempData, 8, 1, fp); fseek(fp, -8, SEEK_CUR); } } if (!ok) { fclose(fp); fp = NULL; freePictureData(); return false; //无法识别的数据 } //-----抵达图片数据区----- picLength = blockLength - nonPicDataLength; //计算图片数据长度 pPicData = new byte[picLength]; //动态分配图片数据内存空间 memset(pPicData, 0, picLength); //清空图片数据内存 fread(pPicData, picLength, 1, fp); //得到图片数据 //------------------------ fclose(fp); //操作已完成,关闭文件。 } else { //校验失败,不是Flac fclose(fp); fp = NULL; freePictureData(); return false; } return true; } //取得图片数据的长度 int getPictureLength() { return picLength; } //取得指向图片数据的指针 byte *getPictureDataPtr() { return pPicData; } //取得图片数据的扩展名(指针) char *getPictureFormat() { return picFormat; } bool writePictureDataToFile(const char *outFilePath) { FILE *fp = NULL; if (picLength > 0) { fp = fopen(outFilePath, "wb"); //打开目标文件 if (fp) //打开成功 { fwrite(pPicData, picLength, 1, fp); //写入文件 fclose(fp); //关闭 return true; } else { return false; //文件打开失败 } } else { return false; //没有图像数据 } } //提取图片文件,参数1:输入文件,参数2:输出文件,返回值:是否成功 bool extractPicture(const char *inFilePath, const char *outFilePath) { if (loadPictureData(inFilePath)) //如果取得图片数据成功 { if (writePictureDataToFile(outFilePath)) { return true; //文件写出成功 } else { return false; //文件写出失败 } } else { return false; //无图片数据 } freePictureData(); } } #endif
7de1081e0a8853f873ec939f73586d20a4dc8f52
e7875c089f957d8d314162affe27a1cd4e6bee21
/addmultiple.cpp
2964fba4044d6ef6b3566dd709f2eab712c0cfd0
[]
no_license
anzi2001/musicsorter
2e8281f5323207b000d49bb762e6018a88661e98
9b6460b488937fce21bf3cc151613f989c20dec8
refs/heads/master
2021-06-21T07:27:50.256191
2017-07-13T12:33:48
2017-07-13T12:33:48
97,119,756
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
addmultiple.cpp
#include "addmultiple.h" #include "ui_addmultiple.h" #include "mainwindow.h" addmultiple::addmultiple(QWidget *parent) : QWidget(parent), ui(new Ui::addmultiple) { ui->setupUi(this); MainWindow. } addmultiple::~addmultiple() { delete ui; }
04495f384b82aaf524054ea5857a3b9c73d4a3b4
e5eaf7d43110c766a5d7fa8d0db4ff0dcb9f8d35
/Year.h
b6608df8c3768fd264ed8bbc4c14558689c3b360
[]
no_license
chocochipcookiie/ajc-date_arithmetics
d292fbd9a31be98b0e6790a9c50164fd667e3080
8f85c4452692e8d505e3bbf1d8b9c6d12907a0d7
refs/heads/master
2021-01-10T13:40:47.964379
2015-11-24T06:19:07
2015-11-24T06:19:07
46,768,327
0
0
null
null
null
null
UTF-8
C++
false
false
1,134
h
Year.h
#ifndef YEAR_H #define YEAR_H #include <iostream> using namespace std; const int DAYS_IN_YEAR = 365; // Used for conversion from years to days /** Year Class: Represents the actual year or the year as a unit; used in Date.h class **/ class Year { private: int year; // Integer that represents numeric year public: Year(); // Default Constructor Year(int y); // Constructor int getYear() const{ return year; } // Getter method int convertToDays(); // convertToDays() method Year& operator+(const Year &rhs); // Addition Operator void add(int y); // Add operator friend ostream& operator<<(ostream &os, const Year& y); // Output Operator }; Year::Year() { year = 0; } Year::Year(int y) { year = y; } int Year::convertToDays() { return year * DAYS_IN_YEAR; } Year& Year::operator+ (const Year &rhs) { Year *newYear; newYear = new Year(this->getYear() + rhs.getYear()); return *newYear; } void Year::add(int y) { year += y; } ostream& operator<<(ostream &os, const Year& y) { os << y.getYear(); return os; } #endif YEAR_H
561087a92c1d100c2cbf73913c4a4013e9bd9045
d160bb839227b14bb25e6b1b70c8dffb8d270274
/MCMS/Main/Processes/ConfParty/ConfPartyLib/Reception.h
b4a5dbf782d486d0fd967b2d8ff22e67a7f75184
[]
no_license
somesh-ballia/mcms
62a58baffee123a2af427b21fa7979beb1e39dd3
41aaa87d5f3b38bc186749861140fef464ddadd4
refs/heads/master
2020-12-02T22:04:46.442309
2017-07-03T06:02:21
2017-07-03T06:02:21
96,075,113
1
0
null
null
null
null
UTF-8
C++
false
false
5,518
h
Reception.h
#if !defined(_Reception_H__) #define _Reception_H__ #include "TaskApp.h" #include "LobbyApi.h" #include "PartyApi.h" #include "PObject.h" #include "StatusesGeneral.h" #include "ConfParty.h" #include "ConfPartyOpcodes.h" #include "CommConf.h" class CRsrcParams; class CPartyApi; class CLobby; //////////////////////////////////////////////////////////////////////////// // CReception //////////////////////////////////////////////////////////////////////////// class CReception : public CStateMachine { CLASS_TYPE_1(CReception, CStateMachine) public: CReception(CTaskApp* pOwnerTask); ~CReception(); const char* NameOf() const { return "CReception";} // Initializations virtual void Create(DWORD monitorConfId, DWORD monitorPartyId, COsQueue* pConfRcvMbx, COsQueue* pLobbyRcvMbx, CNetSetup* pNetSetUp, CLobby* pLobby, char* pPartyName, const char* confName, WORD identMode, WORD partyType, CConfParty* pConfParty, WORD SubCPtype, WORD isChairEnabled = 1, CConfParty* pBackUpPartyReservation = NULL, WORD BackUpScenario = 0); virtual void Create(CNetSetup* pNetSetUp, COsQueue* pLobbyRcvMbx, CLobby* pLobby); virtual void Create(DWORD monitorConfId, DWORD monitorPartyId, COsQueue* pConfRcvMbx, COsQueue* pLobbyRcvMbx, CIsdnNetSetup* pNetSetUp, CLobby* pLobby, char* pPartyName, const char* confName, CConfParty* pConfParty, CCommConf* pComConf); virtual void CreateSuspendConfExist(CNetSetup* pNetSetUp, COsQueue* pLobbyRcvMbx, CLobby* pLobby, CTaskApp* ListId, DWORD ConfId, char* confName); virtual void CreateSuspendConfExist(CIsdnNetSetup* pNetSetUp, COsQueue* pLobbyRcvMbx, CLobby* pLobby, CTaskApp* ListId, DWORD ConfId, char* confName); virtual void CreateSuspend(CNetSetup* pNetSetUp, COsQueue* pLobbyRcvMbx, CLobby* pLobby, CTaskApp* ListId, DWORD ConfId, char* confName); virtual void CreateMeetingRoom(CNetSetup* pNetSetUp, COsQueue* pLobbyRcvMbx, CLobby* pLobby, CTaskApp* ListId, DWORD confId, char* confName); void Destroy(bool isInTransferList = true); // Operations virtual void* GetMessageMap(); virtual void HandleEvent(CSegment* pMsg, DWORD msgLen, OPCODE opCode); friend bool operator<(const CReception& first, const CReception& second); friend bool operator==(const CReception& first, const CReception& second); // Action functions void OnPartyDisconIdent(CSegment* pParam); void OnPartyDisconTransfer(CSegment* pParam); void OnPartyIdentIdent(CSegment* pParam); void OnPartyTransferTransfer(CSegment* pParam); virtual void OnConfMngrRejectPartySuspend(CSegment* pParam); virtual void OnLobbyReleasePartySuspend(CSegment* pParam); void OnTimerPartySuspend(CSegment* pParam); void OnTimerPartyIdent(CSegment* pParam); void OnTimerPartyTransfer(CSegment* pParam); virtual void GetCallParams(CNetSetup** pNetSetUp); //virtual char* GetCalledNumber(); //virtual char* GetCallingNumber(); void SetParty(CTaskApp* pParty) { m_pParty = pParty; } virtual DWORD GetPartyId() { return ((DWORD)m_pParty); } CConfParty* GetConfParty() { return m_pConfParty; } //void SetConfParty(CConfParty* confParty); CNetSetup* GetNetSetUp() { return m_pSuspended_NetSetUp; } //WORD BackUpPartyReservation(); void SetConfOnAirFlag(BYTE yesNo) { m_confOnAirFlag = yesNo; } BYTE GetConfOnAirFlag() { return m_confOnAirFlag; } void SetTargetConfName(const char* name) { strcpy_safe(m_targetConfName, name); } const char* GetTargetConfName() const { return m_targetConfName; } void SetTargetConfType(ETargetConfType type) { m_targetConfType = type; } ETargetConfType GetTargetConfType() { return m_targetConfType; } virtual void AcceptParty(CNetSetup* pNetSetUp, CCommConf* pCommConf, CConfParty* pConfParty); virtual void ReplayToNet(DWORD opcode, CIsdnNetSetup& netSetup) const; virtual BYTE IsPartyDefined(DWORD confMonitorId); void SetDisconnected() { m_isDisconnected = 1; } WORD IsDisconnected() const { return m_isDisconnected; } DWORD GetConfId() { return m_confMonitorId; } void SetMonitorMRId(DWORD mrID) { m_confMonitorId = mrID; } const char* GetPartyName(); protected: // Operations virtual void OnException(); // Attributes CPartyApi* m_pPartyApi; CTaskApp* m_pParty; CLobby* m_pLobby; CConfParty* m_pConfParty; WORD m_channel; DWORD m_confMonitorId; WORD m_isDisconnected; CNetSetup* m_pSuspended_NetSetUp; CRsrcParams* m_pSuspended_NetDesc; CRsrcParams* m_pNetDesc; CConfParty* m_pBackUpPartyReservation; WORD m_BackUpScenario; WORD m_status; // to set new field BYTE m_confOnAirFlag; // YES NO char m_targetConfName[H243_NAME_LEN]; ETargetConfType m_targetConfType; PDECLAR_MESSAGE_MAP }; #endif // !defined(_Reception_H__)
f84a8d30936a0bcd7f786b7a261b2892aef8428c
0a3e9320b58a032dfbf856b8cdfaad14095948d3
/AVSCommon/AVS/include/AVSCommon/AVS/AVSMessageHeader.h
45e850d3b49254a389a7d2bea940413776f11ec0
[ "LicenseRef-scancode-pml-2020", "Apache-2.0" ]
permissive
anki/avs-device-sdk
1a98f51729bbe2d6b835cba0e74587b0f5eaea38
8f358d9843f13814a56514f74b8fe16ca618c288
refs/heads/master
2020-03-31T19:09:13.404702
2019-03-06T22:14:38
2019-03-06T22:14:38
152,486,975
5
16
Apache-2.0
2019-03-06T22:14:39
2018-10-10T20:39:56
C++
UTF-8
C++
false
false
3,166
h
AVSMessageHeader.h
/* * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" file accompanying this file. This file 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. */ #ifndef ALEXA_CLIENT_SDK_AVSCOMMON_AVS_INCLUDE_AVSCOMMON_AVS_AVSMESSAGEHEADER_H_ #define ALEXA_CLIENT_SDK_AVSCOMMON_AVS_INCLUDE_AVSCOMMON_AVS_AVSMESSAGEHEADER_H_ #include <string> namespace alexaClientSDK { namespace avsCommon { namespace avs { /** * The AVS message header, which contains the common fields required for an AVS message. */ class AVSMessageHeader { public: /** * Constructor. * * @param avsNamespace The namespace of an AVS message. * @param avsName The name within the namespace of an AVS message. * @param avsMessageId The message ID of an AVS message. * @param avsDialogRequestId The dialog request ID of an AVS message, which is optional. */ AVSMessageHeader( const std::string& avsNamespace, const std::string& avsName, const std::string& avsMessageId, const std::string& avsDialogRequestId = "") : m_namespace{avsNamespace}, m_name{avsName}, m_messageId{avsMessageId}, m_dialogRequestId{avsDialogRequestId} { } /** * Returns the namespace in an AVS message. * * @return The namespace. */ std::string getNamespace() const; /** * Returns the name in an AVS message, which describes the intent of the message. * * @return The name. */ std::string getName() const; /** * Returns the message ID in an AVS message. * * @return The message ID, a unique ID used to identify a specific message. */ std::string getMessageId() const; /** * Returns the dialog request ID in an AVS message. * * @return The dialog request ID, a unique ID for the messages that are part of the same dialog. */ std::string getDialogRequestId() const; /** * Return a string representation of this @c AVSMessage's header. * * @return A string representation of this @c AVSMessage's header. */ std::string getAsString() const; private: /// Namespace of the AVSMessage header. const std::string m_namespace; /// Name within the namespace of the AVSMessage, which describes the intent of the message. const std::string m_name; /// A unique ID used to identify a specific message. const std::string m_messageId; /// A unique ID for the messages that are part of the same dialog. const std::string m_dialogRequestId; }; } // namespace avs } // namespace avsCommon } // namespace alexaClientSDK #endif // ALEXA_CLIENT_SDK_AVSCOMMON_AVS_INCLUDE_AVSCOMMON_AVS_AVSMESSAGEHEADER_H_
d4f12f8c2b55268f4894dffa5b5bb25f7cf9a84c
223ae2d6bd586a927d47ec96f6b56297a32c7839
/VisualSort/config/config.cpp
dc09ab62a6e3c37760e6060469bca4a6ec56f4db
[ "MIT" ]
permissive
dawidkawalko/sfml-visualsort
e7bc75e2993b41568a93a206c7b1f9e42acf0ffd
e01be801b0dd6e068123ce9a4f0ba7c4512785cd
refs/heads/master
2020-03-28T16:59:32.871200
2019-03-30T09:50:26
2019-03-30T09:50:26
148,748,245
9
2
MIT
2018-09-14T09:27:01
2018-09-14T06:55:21
C++
UTF-8
C++
false
false
891
cpp
config.cpp
#include "config.hpp" Config::~Config() { if (m_stream.is_open()) { m_stream.close(); } } void Config::setPath(const std::string& path) { m_path = path; } void Config::parse() { openStream(); m_options.clear(); std::string line(""); while (std::getline(m_stream, line)) { size_t pos = line.find("="); std::string key = line.substr(0, pos); std::string value = line.substr(pos + 1); if (key.empty() || value.empty()) // skip empty keys/values { continue; } m_options[key] = Option(value); } } Option Config::get(const std::string& key) const { if (m_options.find(key) == std::end(m_options)) { throw std::exception("No option with that key"); } return m_options.at(key); } void Config::openStream() { if (!m_stream.is_open()) { m_stream.open(m_path.c_str()); if (!m_stream.good()) { throw std::exception("File does not exist"); } } }
6656766e78fc2947eaa68648c6233413070df7e2
c68f791005359cfec81af712aae0276c70b512b0
/Codeforces Round #376/e.cpp
6956b27d10b4760b154691d1037a16dc182009d1
[]
no_license
luqmanarifin/cp
83b3435ba2fdd7e4a9db33ab47c409adb088eb90
08c2d6b6dd8c4eb80278ec34dc64fd4db5878f9f
refs/heads/master
2022-10-16T14:30:09.683632
2022-10-08T20:35:42
2022-10-08T20:35:42
51,346,488
106
46
null
2017-04-16T11:06:18
2016-02-09T04:26:58
C++
UTF-8
C++
false
false
358
cpp
e.cpp
#include <bits/stdc++.h> using namespace std; const int N = 2e5 + 5; long long a[N]; int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%lld", a + i); for (int i = 1; i < n; i++) a[i] += a[i - 1]; long long ans = a[n - 1]; for (int i = n - 2; i >= 1; i--) ans = max(ans, a[i] - ans); cout << ans << endl; return 0; }
0bc032993102e5ee981890f772cbf9844e4baf37
81ff32da6369068533d29c47b1813f114e0d2866
/avida/avida-core/include/public/avida/systematics/Unit.h
e47ce8b36fd93ff6bde64e8a47a8daba84dc4d5f
[ "MIT", "LGPL-3.0-or-later", "GPL-3.0-only", "LGPL-3.0-only", "LicenseRef-scancode-philippe-de-muyter", "BSD-3-Clause", "LicenseRef-scancode-public-domain" ]
permissive
amlalejini/evolutionary-consequences-of-plasticity
c193f1f72b6ef1aa19a1503f9632c57feb54d113
c15f87fe64c89077165329ddc08311b2c5ccd2b5
refs/heads/master
2023-04-17T09:12:30.896127
2022-03-31T19:56:19
2022-03-31T19:56:19
286,621,009
2
0
MIT
2021-05-25T06:27:06
2020-08-11T01:59:52
C++
UTF-8
C++
false
false
2,994
h
Unit.h
/* * systematics/Unit.h * avida-core * * Created by David on 12/14/11. * Copyright 2011 Michigan State University. All rights reserved. * http://avida.devosoft.org/ * * * This file is part of Avida. * * Avida is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * Avida 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with Avida. * If not, see <http://www.gnu.org/licenses/>. * * Authors: David M. Bryson <david@programerror.com> * */ #ifndef AvidaSystematicsUnit_h #define AvidaSystematicsUnit_h #include "apto/platform.h" #include "avida/core/Types.h" #include "avida/systematics/Types.h" namespace Avida { namespace Systematics { // Source // -------------------------------------------------------------------------------------------------------------- struct Source { public: // Bit-fields { TransmissionType transmission_type :4; bool external :1; int unused :27; // } Apto::String arguments; // Methods LIB_EXPORT inline Source() : transmission_type(UNKNOWN), external(false), unused(0) { ; } LIB_EXPORT inline Source(TransmissionType t, const Apto::String& a, bool e = false) : transmission_type(t), external(e), unused(0), arguments(a) { ; } LIB_EXPORT Apto::String AsString() const; }; // Unit // -------------------------------------------------------------------------------------------------------------- class Unit : virtual public Apto::RefCountObject<Apto::ThreadSafe> { protected: mutable GroupMembershipPtr m_groups; public: LIB_EXPORT inline Unit() : m_groups(new GroupMembership) { ; } LIB_EXPORT virtual ~Unit() = 0; LIB_EXPORT virtual Source UnitSource() const = 0; LIB_EXPORT virtual const Genome& UnitGenome() const = 0; LIB_EXPORT virtual const PropertyMap& Properties() const = 0; LIB_EXPORT inline ConstGroupMembershipPtr SystematicsGroupMembership() const { return m_groups; } LIB_EXPORT GroupPtr SystematicsGroup(const RoleID& role) const; LIB_EXPORT bool AddClassification(GroupPtr g); LIB_EXPORT void Reclassify(GroupPtr g); LIB_EXPORT void SelfClassify(ConstConstParentGroupsPtr parent_groups); LIB_EXPORT void HandleGestation(); private: LIB_LOCAL inline UnitPtr thisPtr(); }; }; }; #endif
48a39de73e33264d4c0db14a8d0edd986a242738
726c758cf17f8cb630e97b5faff5cf2aaace0a88
/Workbook_ex1d_oct29a.ino
34fd8def2c9eee961cac7353ceb8a72929dbc1b5
[]
no_license
jlucario/7CC003
58921b4ddd3c78e87db27d4a376c6062f57e1038
cafb638882eabd7609691027e8eab0d893b2d505
refs/heads/master
2021-01-02T08:37:47.392809
2017-08-01T19:29:55
2017-08-01T19:29:55
99,035,822
0
0
null
null
null
null
UTF-8
C++
false
false
439
ino
Workbook_ex1d_oct29a.ino
#define pwmOut 11 int brightness = 0;//Begin with LED off int fadeAmount = 5;//This will be used to alter the pulse width void setup() { pinMode(pwmOut, OUTPUT); } void loop() { analogWrite(pwmOut, brightness); brightness = brightness + fadeAmount; //if brightness is 0, or brightness is max, invert fadeAmount if (brightness == 0 || brightness == 255) { fadeAmount = -fadeAmount ; } // wait a bit delay(100); }
f6b67b5448475f47017b1d78d70fa80287f05f81
902d8f934da44afaddcd0bbe3988b1ed303cd2d4
/lec06/Fibonacci.cpp
d7972b9db70bb05173733051c51c9461ed3b9c47
[]
no_license
samuelzurowski/datastructures
e7f825bfe7b2acf55e7d7e12019de7d8b5cde2f6
b7a0b457f4c1b29e471f756a4b622bce2e042270
refs/heads/master
2020-06-03T05:59:33.377319
2019-06-12T01:23:09
2019-06-12T01:23:09
191,470,160
0
0
null
null
null
null
UTF-8
C++
false
false
588
cpp
Fibonacci.cpp
#include <iostream> #include <vector> int Fibonacci(int n){ if(n == 0) return 0; if(n == 1) return 1; return Fibonacci(n - 1) + Fibonacci(n - 2); } // Dynamic Implementation int FibonacciDyn(int n, int memo[]){ if (n == 0 || n == 1) return n; if(memo[n] == 0) memo[n] = FibonacciDyn(n - 1, memo) + FibonacciDyn(n - 2, memo); return memo[n]; } int FibonacciDyn(int n){ int* memo = new int[n+1]{0}; return FibonacciDyn(n, memo); } int main(void){ int i = 0; while(i < 45) std::cout << Fibonacci(i++) << std::endl; }
4ffee1abc8af43327eae93dac21dffcd5c1ff72d
6776f5bc9bcbc528e43299b98fc59979aa12077f
/src/Model/DBDataStructures.h
70223c47998685ccac95e02519224ee456a3bd17
[]
no_license
golegen/SimCity2013
33b3ae45f99bb9d699adaf8f6fb47a94db2722b9
853e66b69e74fa1f7149407ecb04c76e02d57227
refs/heads/master
2020-08-08T00:51:59.265276
2013-05-17T14:09:03
2013-05-17T14:09:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,395
h
DBDataStructures.h
#ifndef DBDATASTRUCTURES_H #define DBDATASTRUCTURES_H #include <Model/Exceptions.h> #include <Model/ConstrainedNumeric.hpp> #include <pqxx/pqxx> #include <set> #include <vector> #include <memory> namespace SimCity { namespace Model { typedef ConstrainedNumeric<-180, 180> Longitude; typedef ConstrainedNumeric<-90, 90> Latitude; typedef ConstrainedNumeric<-420, 8850> MetersOverSea; struct StreetNode { StreetNode(pqxx::result::tuple tableRow); int nodeId; Longitude lon; Latitude lat; MetersOverSea mos; }; typedef std::shared_ptr<StreetNode> StreetNodePtr; typedef std::vector<StreetNodePtr> StreetNodes; struct Street { Street(pqxx::result::tuple tableRow, const StreetNodes& vertexes); StreetNodePtr first; StreetNodePtr second; }; typedef std::shared_ptr<Street> StreetPtr; typedef std::vector<StreetPtr> Streets; struct Map { Map(const StreetNodes& vertexes, Streets& edges); Streets streetsInVertex(StreetNodePtr vertex); StreetNodes vertexes; Streets edges; double normalizationVector[2]; }; typedef std::shared_ptr<Map> MapPtr; struct Sensor { Sensor(pqxx::result::tuple tableRow); uint sensorId; Longitude lon; Latitude lat; MetersOverSea mos; double range; }; typedef std::shared_ptr<Sensor> SensorPtr; typedef std::vector<SensorPtr> Sensors; }//namespace Model }//namespace SimCity #endif // DBDATASTRUCTURES_H
da1bf1772dfd14df4d0f624b0bd6e3d4e769a01f
299184e2b1638ec8cb60b38b6256b2b678c316b8
/src/GrabCylinderCreatingMode.h
720101329409cb03d3ea0b9e97ef7ffa4141d273
[]
no_license
kvnwinata/airsketcher
57ea70f9afd12381947654283addd44e01396528
f9889a82e5f04875fe1e0c19ebc898cf4f3ebb26
refs/heads/master
2021-01-19T07:56:53.548684
2015-05-12T20:30:11
2015-05-12T20:30:11
32,760,035
0
0
null
null
null
null
UTF-8
C++
false
false
2,358
h
GrabCylinderCreatingMode.h
// // GrabCylinderCreatingMode.h // airsketcher // // Created by Patricia Suriana on 5/1/15. // // #ifndef __airsketcher__GrabCylinderCreatingMode__ #define __airsketcher__GrabCylinderCreatingMode__ #include <math.h> #include "AirController.h" #include "AirCylinder.h" class GrabCylinderCreatingMode : public AirControlMode { public: GrabCylinderCreatingMode(); ~GrabCylinderCreatingMode(); bool tryActivateMode(AirController* controller, HandProcessor &handProcessor, std::string lastCommand, AirObjectManager &objectManager) override; void update(AirController* controller, HandProcessor &handProcessor, SpeechProcessor &speechProcessor, AirObjectManager &objectManager) override; void drawMode() override; std::vector<std::string> getCommands(); std::string getStatusMessage() override; std::string getHelpMessage() override; private: enum DRAWING_MODE { NONE = 0, DRAW, DONE }; DRAWING_MODE drawCylinderMode; std::vector<ofPoint> circleTraces; ofPoint cylinderBaseLoc; AirCylinder* newCylinder; bool createCylinder(AirController* controller, AirObjectManager &objectManager); inline ofPoint computeBaseCircleTraceCentroid() { ofPoint centroid(0.0, 0.0, 0.0); for (const ofPoint& point : circleTraces) { centroid += point; } centroid /= circleTraces.size(); return centroid; } inline float computeBaseCircleTraceRadius(const ofPoint& centroid) { float radius = 0.0; for (const ofPoint& point : circleTraces) { ofPoint delta = point-centroid; float distance = sqrt(delta[0]*delta[0] + delta[1]*delta[1]); radius += distance; } radius /= circleTraces.size(); return radius; } /* If height is negative, the cylinder's centroid should be shifted downwards */ inline ofPoint computeCylinderCentroid(float height) { ofPoint centroid(cylinderBaseLoc); centroid[2] += height/2.0; return centroid; } std::string completeTag = "grab-cylinder"; std::string lostTag = "grab-cylinder-lost"; std::string cancelTag = "grab-cylinder-cancel"; }; #endif /* defined(__airsketcher__GrabCylinderCreatingMode__) */
d5b8bbce0f61778a71669db3cd01f2b4fb4eba44
bddb4f9970149574f160dee2969bb7c0f7fd11e7
/Hotel_booking/Advanced.h
6b04cb910896b0e8111f4e8fc849f628aa0849c2
[]
no_license
kavinda-ravishan/Hotel_booking
d66cec44725ac606aa19448abedfffc0b2a5d9af
d68c11bbc9ecb865d79ff2ef030fd84c674bf351
refs/heads/main
2023-03-03T12:40:48.355274
2021-02-15T17:04:33
2021-02-15T17:04:33
329,951,788
0
0
null
null
null
null
UTF-8
C++
false
false
9,476
h
Advanced.h
#pragma once namespace Hotelbooking { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; using namespace System::IO; /// <summary> /// Summary for Advanced /// </summary> public ref class Advanced : public System::Windows::Forms::Form { public: Advanced(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// <summary> /// Clean up any resources being used. /// </summary> ~Advanced() { if (components) { delete components; } } private: System::Windows::Forms::Label^ label1; private: System::Windows::Forms::Label^ label2; private: System::Windows::Forms::Label^ label3; private: System::Windows::Forms::Label^ label4; private: System::Windows::Forms::Button^ button1; private: System::Windows::Forms::Button^ button2; private: System::Windows::Forms::TextBox^ textBox1; private: System::Windows::Forms::TextBox^ textBox2; private: System::Windows::Forms::TextBox^ textBox3; private: System::Windows::Forms::TextBox^ textBox4; private: System::Windows::Forms::Button^ button3; private: System::Windows::Forms::Button^ button4; private: System::Windows::Forms::Label^ label5; protected: private: /// <summary> /// Required designer variable. /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> void InitializeComponent(void) { this->label1 = (gcnew System::Windows::Forms::Label()); this->label2 = (gcnew System::Windows::Forms::Label()); this->label3 = (gcnew System::Windows::Forms::Label()); this->label4 = (gcnew System::Windows::Forms::Label()); this->button1 = (gcnew System::Windows::Forms::Button()); this->button2 = (gcnew System::Windows::Forms::Button()); this->textBox1 = (gcnew System::Windows::Forms::TextBox()); this->textBox2 = (gcnew System::Windows::Forms::TextBox()); this->textBox3 = (gcnew System::Windows::Forms::TextBox()); this->textBox4 = (gcnew System::Windows::Forms::TextBox()); this->button3 = (gcnew System::Windows::Forms::Button()); this->button4 = (gcnew System::Windows::Forms::Button()); this->label5 = (gcnew System::Windows::Forms::Label()); this->SuspendLayout(); // // label1 // this->label1->AutoSize = true; this->label1->Location = System::Drawing::Point(12, 32); this->label1->Name = L"label1"; this->label1->Size = System::Drawing::Size(73, 13); this->label1->TabIndex = 8; this->label1->Text = L"STD Payment"; // // label2 // this->label2->AutoSize = true; this->label2->Location = System::Drawing::Point(12, 67); this->label2->Name = L"label2"; this->label2->Size = System::Drawing::Size(53, 13); this->label2->TabIndex = 9; this->label2->Text = L"STD Cost"; // // label3 // this->label3->AutoSize = true; this->label3->Location = System::Drawing::Point(193, 32); this->label3->Name = L"label3"; this->label3->Size = System::Drawing::Size(70, 13); this->label3->TabIndex = 10; this->label3->Text = L"Sea Payment"; // // label4 // this->label4->AutoSize = true; this->label4->Location = System::Drawing::Point(193, 67); this->label4->Name = L"label4"; this->label4->Size = System::Drawing::Size(50, 13); this->label4->TabIndex = 11; this->label4->Text = L"Sea Cost"; // // button1 // this->button1->Location = System::Drawing::Point(191, 107); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(75, 23); this->button1->TabIndex = 0; this->button1->Text = L"Refresh"; this->button1->UseVisualStyleBackColor = true; this->button1->Click += gcnew System::EventHandler(this, &Advanced::button1_Click); // // button2 // this->button2->Location = System::Drawing::Point(15, 107); this->button2->Name = L"button2"; this->button2->Size = System::Drawing::Size(75, 23); this->button2->TabIndex = 7; this->button2->Text = L"Update"; this->button2->UseVisualStyleBackColor = true; this->button2->Click += gcnew System::EventHandler(this, &Advanced::button2_Click); // // textBox1 // this->textBox1->Location = System::Drawing::Point(91, 29); this->textBox1->Name = L"textBox1"; this->textBox1->Size = System::Drawing::Size(68, 20); this->textBox1->TabIndex = 3; // // textBox2 // this->textBox2->Location = System::Drawing::Point(91, 64); this->textBox2->Name = L"textBox2"; this->textBox2->Size = System::Drawing::Size(68, 20); this->textBox2->TabIndex = 4; // // textBox3 // this->textBox3->Location = System::Drawing::Point(269, 29); this->textBox3->Name = L"textBox3"; this->textBox3->Size = System::Drawing::Size(68, 20); this->textBox3->TabIndex = 5; // // textBox4 // this->textBox4->Location = System::Drawing::Point(269, 64); this->textBox4->Name = L"textBox4"; this->textBox4->Size = System::Drawing::Size(68, 20); this->textBox4->TabIndex = 6; // // button3 // this->button3->Location = System::Drawing::Point(102, 107); this->button3->Name = L"button3"; this->button3->Size = System::Drawing::Size(75, 23); this->button3->TabIndex = 1; this->button3->Text = L"Reset"; this->button3->UseVisualStyleBackColor = true; this->button3->Click += gcnew System::EventHandler(this, &Advanced::button3_Click); // // button4 // this->button4->Location = System::Drawing::Point(287, 107); this->button4->Name = L"button4"; this->button4->Size = System::Drawing::Size(75, 23); this->button4->TabIndex = 2; this->button4->Text = L"Cancel"; this->button4->UseVisualStyleBackColor = true; this->button4->Click += gcnew System::EventHandler(this, &Advanced::button4_Click); // // label5 // this->label5->AutoSize = true; this->label5->Location = System::Drawing::Point(133, 6); this->label5->Name = L"label5"; this->label5->Size = System::Drawing::Size(130, 13); this->label5->TabIndex = 12; this->label5->Text = L" Per Person and Per Night"; // // Advanced // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(374, 151); this->Controls->Add(this->label5); this->Controls->Add(this->button4); this->Controls->Add(this->button3); this->Controls->Add(this->textBox4); this->Controls->Add(this->textBox3); this->Controls->Add(this->textBox2); this->Controls->Add(this->textBox1); this->Controls->Add(this->button2); this->Controls->Add(this->button1); this->Controls->Add(this->label4); this->Controls->Add(this->label3); this->Controls->Add(this->label2); this->Controls->Add(this->label1); this->MaximizeBox = false; this->MaximumSize = System::Drawing::Size(390, 190); this->MinimumSize = System::Drawing::Size(390, 190); this->Name = L"Advanced"; this->Text = L"Advanced"; this->Load += gcnew System::EventHandler(this, &Advanced::Advanced_Load); this->ResumeLayout(false); this->PerformLayout(); } #pragma endregion private: System::Void Advanced_Load(System::Object^ sender, System::EventArgs^ e) { String ^ Inpath = "data/infor.txt"; if (File::Exists(Inpath)) { StreamReader ^ infor = File::OpenText(Inpath); textBox1->Text = infor->ReadLine(); textBox2->Text = infor->ReadLine(); textBox3->Text = infor->ReadLine(); textBox4->Text = infor->ReadLine(); infor->Close(); } else { textBox1->Text = nullptr; textBox2->Text = nullptr; textBox3->Text = nullptr; textBox4->Text = nullptr; } } private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { String ^ Inpath = "data/infor.txt"; if (File::Exists(Inpath)) { StreamReader ^ infor = File::OpenText(Inpath); textBox1->Text = infor->ReadLine(); textBox2->Text = infor->ReadLine(); textBox3->Text = infor->ReadLine(); textBox4->Text = infor->ReadLine(); infor->Close(); } else { textBox1->Text = nullptr; textBox2->Text = nullptr; textBox3->Text = nullptr; textBox4->Text = nullptr; } } private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e) { textBox1->Text = "50"; textBox2->Text = "40"; textBox3->Text = "75"; textBox4->Text = "60"; } private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { String ^ Inpath = "data/infor.txt"; StreamWriter ^ infor = gcnew StreamWriter(Inpath); infor->WriteLine(textBox1->Text); infor->WriteLine(textBox2->Text); infor->WriteLine(textBox3->Text); infor->WriteLine(textBox4->Text); MessageBox::Show("Updated", "File"); infor->Close(); } private: System::Void button4_Click(System::Object^ sender, System::EventArgs^ e) { this->Close(); } }; }
2c6d64baa3dcf7531caf7f86457733ced59be160
7e1b6fadfbda1df4a0f95cadaa127d7228b4a068
/Assignment2.ino
3b2c9e69cb8ddca256c1f26ee9c943bf1814f0a0
[]
no_license
Zephrineart/iat-320
df63ef973ba21f938e9febd71443643a2fbbbaf7
623854a15e1cac9631fa1a46b933ac108a1030e6
refs/heads/main
2023-09-01T07:12:26.853557
2021-09-27T22:19:15
2021-09-27T22:19:15
406,636,479
0
0
null
null
null
null
UTF-8
C++
false
false
292
ino
Assignment2.ino
#include <Adafruit_NeoPixel.h> #define PIN 6 Adafruit_NeoPixel strip = Adafruit_NeoPixel(2, PIN, NEO_GRB + NEO_KHZ800); void setup() { pinMode(PIN, OUTPUT); // tells the program that this pin is for output } void loop() { digitalWrite(PIN, HIGH); // turn on LED }
6791bba3180ceaeb0501e72bfbec60171b517710
a5c572b13be02f3b41eb4102eefd30e473c90e9b
/mytest01/head/headfile01.h
ac293f17361e8770b80e4432b5aadff03406999a
[]
no_license
dawoniu1991/cppstudyOnLinux
626b6b5cafaf4b4e9cc7323cc2bb8e9ec21f88f1
58b2f9f597d60c85d3af652d34649e8d87a80ec9
refs/heads/main
2023-07-18T07:08:34.322609
2021-08-17T09:25:18
2021-08-17T09:25:18
361,681,700
0
0
null
null
null
null
UTF-8
C++
false
false
242
h
headfile01.h
#ifndef HEAD01_FILE_H_ #define HEAD01_FILE_H_ #include <iostream> #include "headfile02.h" namespace ps { inline void Start(int customer_id=1, const char* argv0 = nullptr) { std::cout<<"=======head file01========"<<std::endl; } } #endif
cfa5fc260a2230f16201bff6d2e79fa7fd47cc36
e32979fa279a4242a6d5402dd1857456e63333d0
/Bridge/PIMPL/Person.h
ea72e1deb6a6b07946b6e41c8119c266ac56df15
[]
no_license
EspressoTrip-v2/cpp-design-patterns
8d9849b8aba90dc6dd269ce40da126f75239261c
f096afe14a9dd9e759d56b4aa908b1213d80af61
refs/heads/master
2023-05-31T19:43:36.296260
2021-06-30T13:18:31
2021-06-30T13:18:31
365,251,423
0
0
null
null
null
null
UTF-8
C++
false
false
309
h
Person.h
// // Created by Juan on 5/13/2021. // #ifndef PIMPL_PERSON_H #define PIMPL_PERSON_H #include <string> #include <iostream> using namespace std; class Person { public: string name; class PersonImpl; PersonImpl *impl; Person(); ~Person(); void greet(); }; #endif //PIMPL_PERSON_H
d5de30bfccdacb5e983bdbaced37b7aa24c61bfb
6b167a083ec7dacbb7ac5e8038f52a7c35c1e0b8
/src/ui/widgets/refrbrowser.cpp
ab7b2f4c3ad0ccf6d03b43380b017bc4be57e669
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause", "MIT", "BSD-3-Clause" ]
permissive
niftools/nifskope
6b706f657f3ebaaa76060bb0f1ae0837e1fded79
3a85ac55e65cc60abc3434cc4aaca2a5cc712eef
refs/heads/develop
2023-09-05T18:23:17.061692
2018-02-23T04:16:15
2018-02-23T04:16:15
10,436,113
542
232
NOASSERTION
2023-09-04T08:11:35
2013-06-02T11:44:24
C++
UTF-8
C++
false
false
3,119
cpp
refrbrowser.cpp
/***** BEGIN LICENSE BLOCK ***** BSD License Copyright (c) 2005-2015, NIF File Format Library and Tools All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. 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. 3. The name of the NIF File Format Library and Tools project may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. ***** END LICENCE BLOCK *****/ #include "refrbrowser.h" #include "model/nifmodel.h" #include <QCoreApplication> #include <QFileInfo> ReferenceBrowser::ReferenceBrowser( QWidget * parent ) : QTextBrowser( parent ) { nif = nullptr; docFolder.setPath( qApp->applicationDirPath() ); docFolderPresent = docFolder.exists( "doc" ); #ifdef Q_OS_LINUX if ( !docFolderPresent ) { docFolder.cd( "/usr/share/nifskope" ); docFolderPresent = docFolder.exists( "doc" ); } #endif if ( docFolderPresent ) { docFolder.cd( "doc" ); } if ( !docFolderPresent || !QFileInfo( docFolder.filePath( "index.html" ) ).exists() ) { setText( tr( "Please install the reference documentation into the 'doc' folder." ) ); return; } setSearchPaths( { docFolder.absolutePath() } ); setStyleSheet( "docsys.css" ); setSourceFile( "index.html" ); } void ReferenceBrowser::setNifModel( NifModel * nifModel ) { nif = nifModel; } // TODO: Read documentation from ZIP files void ReferenceBrowser::setSourceFile( const QString & source ) { if ( QFileInfo( docFolder.filePath( source ) ).exists() ) { setSource( QUrl( source ) ); } } void ReferenceBrowser::browse( const QModelIndex & index ) { if ( !nif || !docFolderPresent ) { return; } QString blockType = nif->getBlockType( index ); if ( blockType == "NiBlock" ) { blockType = nif->getBlockName( index ); } if ( !QFileInfo( docFolder.filePath( "%1.html" ).arg( blockType ) ).exists() ) { setText( tr( "The reference file for '%1' could not be found." ).arg( blockType ) ); return; } setSourceFile( QString( "%1.html" ).arg( blockType ) ); }
495dad5fa8a59ae8ba194e3c34979209c9957d2c
d7d5bc8b514ad50201abaa9bacc8ca662f67ecda
/tile.cpp
31b2beb280fdf1fa644f0b706d1c31e53e6e8043
[]
no_license
autofasurer/Pathfinding
7e8610ccee75c482f1641a89892b9863056a862f
621b4f819384f59cae7e58246f2c02699b4801a3
refs/heads/master
2016-09-16T14:02:38.812635
2015-09-09T19:52:13
2015-09-09T19:52:13
42,138,449
0
0
null
null
null
null
UTF-8
C++
false
false
364
cpp
tile.cpp
// // tile.cpp // Pathfinding // // Created by Brecht Debackere on 08/09/15. // // #include "tile.h" tile::tile(int i){ //constructor pos.set(0, 0, 0); tileSize = 10; wall = 0; start = goal = false; cost = -1; index = i; } void update(){ } void tile::draw(){ ofSetColor(color); ofRect(pos.x, pos.y, tileSize, tileSize); }
786ec41de5424401b81b9bacb95c8be5749ae196
8f934bd1f07105e71f2fb5cdd2875f7fa68c9442
/metaprogramming/library/graph/graphs/edge_list_graph.h
cf0f07fbea08b614d28b2645f842d081318c3842
[ "MIT" ]
permissive
SpeedOfMagic/metaprogramming
4f6a5d3fb3fdcc1d5d0f13fcb522a39967513632
3df465d3437266cb08dc78fbe2e7f3e7be175b4c
refs/heads/master
2023-02-01T22:31:10.637229
2020-12-21T19:29:53
2020-12-21T19:29:53
316,009,595
0
0
null
null
null
null
UTF-8
C++
false
false
1,246
h
edge_list_graph.h
#pragma once #include "graph.h" #include "../../TL/is_type_list.h" #include "../../TL/fill_type_list_with_object.h" #include "../GLib/add_edge.h" #include "../convert/convert_graph.h" /** * Represents graph as a list of edges. * @see Graph * @see Edge * @param vertexes Template parameter, vertexes of a graph * @param edge_list Template parameter, TypeList of Edge * @returns Parameter result, resulting graph */ template<class nodes, class edge_list> struct EdgeListGraph { constexpr static GraphType TYPE = EDGE_LIST; static_assert(TL::IsTypeList<nodes>::value, "Vertexes are not in a TypeList"); static_assert(TL::IsTypeList<edge_list>::value, "Edge list is not a TypeList"); using vertexes_ = nodes; //!< TypeList of vertexes in graph. using edge_list_ = edge_list; //!< TypeList of edges using edges_ = edge_list_; /** * Represents an adapter, which converts one type of a graph into another. * Is used as an element in Visitor pattern. * @param GraphType Template parameter, type of a resulting graph * @returns Parameter result, resulting graph */ template<GraphType type> struct ConvertTo { using result = typename ConvertGraph< TYPE, type, EdgeListGraph<vertexes_, edge_list_> >::result; }; };
b92971622e0678b6a2251385f811c3961357e621
745b42c34ccb2459fce31775cb2afba37ed5644a
/Game/Source/Game/GameObjects/PlayerObject.cpp
1c4df0ab14d10204acc72be2b803fbe6c57fcb89
[]
no_license
kjtherocker/Furi-Lite
cbfcf8c2760f43ae0814c531e4cf05c0fb10b93b
a60d125ef5eebef786b03dbce92fc2504ab693aa
refs/heads/master
2021-06-24T21:29:37.806343
2021-02-07T20:07:20
2021-02-07T20:07:20
186,063,655
0
0
null
null
null
null
UTF-8
C++
false
false
9,513
cpp
PlayerObject.cpp
#include "GamePCH.h" PlayerObject::PlayerObject(Scene* pScene, std::string name, vec3 pos, vec3 rot, vec3 scale, Mesh* pMesh, Material* pMaterial, Game* game) : GameObject(pScene, name, pos, rot, scale, pMesh, pMaterial, game) { m_pController = 0; m_MaxHealth = 300; m_Health = 300; m_HasPhysics = false; m_IsShooting = false; m_IsCollidingWithWall = false; m_FireTimer = 0.0f; m_InvincibleTimeLeft = 0.0f; m_CursorPosition = 0.0f; m_debugtimer = FIRERATE; m_Teleportrange = 6.0f; m_Speed = PLAYERSPEED; m_PlayerState = PlayerState_Normal; m_Category = PhysicsCategory_Player; m_Mask = PhysicsCategory_Default; m_PlayerMovment = PlayerMovement_Standing; m_Invincibility = false; m_DebugInvincibility = false; m_InvincibleTimeLeft = -0.1f; m_PreviousPosition = m_Position; m_Filter.maskBits = m_Mask || PhysicsCategory_Attack || PhysicsCategory_Wall; m_pScoreobject = 0; m_Hits = 0; m_pScene->m_pGameObjects["PlayerHealthbar"] = new HealthBarObject(m_pScene, "Healthbar", vec3(-4, 7.0f, -1.1f), vec3(0, 0, 0), vec3(6, 1, 1), m_pScene->GetResourceManager()->GetMesh("Box"), m_pScene->GetResourceManager()->GetMaterial("HealthMegaman"),m_pGame); } PlayerObject::PlayerObject(Scene* pScene, std::string name, vec3 pos, vec3 rot, vec3 scale, std::string meshname, std::string materialname, Game* game) : GameObject(pScene, name, pos, rot, scale, meshname, materialname, game) { m_pController = 0; m_MaxHealth = 300; m_Health = 300; m_HasPhysics = false; m_IsShooting = false; m_IsCollidingWithWall = false; m_FireTimer = 0.0f; m_InvincibleTimeLeft = 0.0f; m_CursorPosition = 0.0f; m_debugtimer = FIRERATE; m_Teleportrange = 6.0f; m_PlayerState = PlayerState_Normal; m_Category = PhysicsCategory_Player; m_Mask = PhysicsCategory_Default; m_Speed = PLAYERSPEED; m_PreviousPosition = m_Position; m_InvincibleTimeLeft = -0.1f; m_Invincibility = false; m_DebugInvincibility = false; m_PlayerMovment = PlayerMovement_Standing; m_pScoreobject = 0; m_Hits = 0; m_pScene->m_pGameObjects["PlayerHealthbar"] = new HealthBarObject(m_pScene, "Healthbar", vec3(-4, 7.0f, -1.1f), vec3(0, 0, 0), vec3(6, 1, 1), m_pScene->GetResourceManager()->GetMesh("Box"), m_pScene->GetResourceManager()->GetMaterial("HealthMegaman"), m_pGame); } PlayerObject::~PlayerObject() { } void PlayerObject::SetController(PlayerController* pController) { m_pController = pController; } void PlayerObject::Update(float deltatime) { GameObject::Update(deltatime); m_FireTimer -= deltatime; m_TeleportTimer -= deltatime; if (m_pGame->GetUserInterface() == false) { m_pScene->m_pGameObjects["PlayerHealthbar"]->SetMaterial(m_pGame->GetResourceManager()->GetMaterial("TextureInvisible")); } else { m_pScene->m_pGameObjects["PlayerHealthbar"]->SetMaterial(m_pGame->GetResourceManager()->GetMaterial("HealthMegaman")); } if (m_pGame->GetTestMode()) { ImGui::Begin("PlayerWindow", 0, 0); if (ImGui::Button("Immortality")) { m_DebugInvincibility = true; } ImGui::SliderFloat("immortalityTimer", &m_InvincibleTimeLeft, 0, 30); ImGui::SliderInt("Health", &m_Health, 0, m_MaxHealth); ImGui::SliderFloat("FireRate", &m_debugtimer, 0, 3); ImGui::SliderFloat("Teleport Range", &m_Teleportrange, 0, 30); ImGui::SliderFloat("Speed", &m_Speed, 0, 30); ImGui::End(); } if (m_InvincibleTimeLeft >= 0) { m_Invincibility = true; } else if(m_InvincibleTimeLeft < 0) { m_Invincibility = false; } if (m_Position.x >= 8 ) { m_IsCollidingWithWall = true; m_Position = m_Position + vec3(-1,0,0); } if ( m_Position.x <= -8) { m_IsCollidingWithWall = true; m_Position = m_Position + vec3(1.0f, 0, 0); } if ( m_Position.y >= 8) { m_IsCollidingWithWall = true; m_Position = m_Position + vec3(0.0, -1.0, 0); } if ( m_Position.y <= -8) { m_IsCollidingWithWall = true; m_Position = m_Position + vec3(0, 1.0f, 0); } if (m_IsCollidingWithWall != true) { if (m_pController == 0) return; b2Vec2 targetvelocity(0, 0); vec3 dir(0, 0, 0); if (m_pController->IsButtonPressed(PCB_Up)) { m_PlayerMovment = PlayerMovement_Moving; dir.y += 1; targetvelocity.y = m_Speed; } if (m_pController->IsButtonPressed(PCB_Down)) { m_PlayerMovment = PlayerMovement_Moving; dir.y -= 1; targetvelocity.y = -m_Speed; } if (m_pController->IsButtonPressed(PCB_Left)) { m_PlayerMovment = PlayerMovement_Moving; dir.x -= 1; targetvelocity.x = -m_Speed; } if (m_pController->IsButtonPressed(PCB_Right)) { m_PlayerMovment = PlayerMovement_Moving; dir.x += 1; targetvelocity.x = m_Speed; } if (m_pController->IsButtonPressed(PCB_Mouse)) { m_PlayerState = PlayerState_Shooting; } if (m_pController->IsButtonPressed(PCB_MouseR)) { m_PlayerState = PlayerState_Teleporting; } dir.Normalize(); /*if (m_PlayerState == PlayerState_Normal) { m_Position += dir * speed * deltatime; }*/ m_Position += dir * m_Speed * deltatime; if (m_InvincibleTimeLeft > 0) m_InvincibleTimeLeft -= deltatime; if (m_PlayerState == PlayerState_Shooting) { if (m_FireTimer <= 0) { m_IsShooting = true; m_FireTimer = m_debugtimer; m_PlayerState = PlayerState_Normal; } else if (m_FireTimer > 0) { m_IsShooting = false; m_PlayerState = PlayerState_Normal; } } if (m_PlayerState == PlayerState_Teleporting) { if (m_TeleportTimer <= 0) { m_TeleportTimer = TELEPORTTIMER; float distance = ((float)sqrt(pow((m_Position.x - m_CursorPosition.x), 2) + pow((m_Position.y - m_CursorPosition.y), 2))); if (distance <= m_Teleportrange) { m_Position = m_CursorPosition; } else { //vec3 NewPosition = m_Position * (6 / m_Distance) + m_CursorPosition * (abs(6 - m_Distance) / m_Distance); float x = abs(m_Position.x - m_CursorPosition.x); float y = abs(m_Position.y - m_CursorPosition.y); float angle = ((float)asin(y / distance)); float angle1 = ((float)acos(x / distance)); float YPos = ((float)sin(angle) * 6); float XPos = ((float)cos(angle1) * 6); // - - if (m_Position.x > m_CursorPosition.x && m_Position.y > m_CursorPosition.y) { m_Position = vec3(m_Position.x - XPos, m_Position.y - YPos, m_Position.z); } // + + if (m_Position.x < m_CursorPosition.x && m_Position.y < m_CursorPosition.y) { m_Position = vec3(m_Position.x + XPos, m_Position.y + YPos, m_Position.z); } if (m_Position.x > m_CursorPosition.x && m_Position.y < m_CursorPosition.y) { m_Position = vec3(m_Position.x - XPos, m_Position.y + YPos, m_Position.z); } if (m_Position.x < m_CursorPosition.x && m_Position.y > m_CursorPosition.y) { m_Position = vec3(m_Position.x + XPos, m_Position.y - YPos, m_Position.z); } } } m_PlayerState = PlayerState_Normal; } if (m_PlayerState == PlayerState_Cutscene) { } if (m_PreviousPosition == m_Position) { m_PlayerMovment = PlayerMovement_Standing; } m_PreviousPosition = m_Position; } else { m_IsCollidingWithWall = false; } if (m_Health <= 0) { m_pScene->Reset(); } m_pGame->SetPlayerHits(m_Hits); m_pScene->m_pGameObjects["PlayerHealthbar"]->SetHealth(m_Health); m_pScene->m_pGameObjects["PlayerHealthbar"]->SetMaxHealth(m_MaxHealth); } void PlayerObject::BeginContact(b2Fixture * pOtherFixture, vec2 worldPosition, vec2 worldNormal) { GameObject::BeginContact(pOtherFixture, worldPosition, worldNormal); GameObject * collidedwith = (GameObject*)pOtherFixture->GetBody()->GetUserData(); std::string m_name = collidedwith->GetName(); if (m_name.compare(0, 22, "MagicPillarMagicCircle") == 0) { if (m_DebugInvincibility != true) { m_Health -= 10; m_InvincibleTimeLeft = PLAYERINVINCIBILITY; m_Hits++; } } if (m_name.compare(0, 10, "Projectile") == 0) { if (m_Invincibility != true) { if (m_DebugInvincibility != true) { m_Health -= 10; m_InvincibleTimeLeft = PLAYERINVINCIBILITY; m_Hits++; } } } if (m_name.compare(0, 14, "BlueProjectile") == 0) { if (m_Invincibility != true) { if (m_DebugInvincibility != true) { if (m_PlayerMovment != PlayerMovement_Standing) { m_Health -= 10; m_InvincibleTimeLeft = PLAYERINVINCIBILITY; m_Hits++; } } } } if (m_name.compare(0, 12, "BlueBossWall") == 0) { if (m_Invincibility != true) { if (m_DebugInvincibility != true) { m_Health -= 10; m_InvincibleTimeLeft = PLAYERINVINCIBILITY; m_Hits++; } } } if (m_name.compare(0, 5, "Lazer") == 0) { if (m_Invincibility != true) { if (m_DebugInvincibility != true) { m_Health -= 30; m_InvincibleTimeLeft = PLAYERINVINCIBILITY; m_Hits++; } } } } bool PlayerObject::GetIsShooting() { return m_IsShooting; } void PlayerObject::Reset() { m_PlayerState = PlayerState_Normal; m_Health = m_MaxHealth; m_DebugInvincibility = false; m_FireTimer = FIRERATE; m_TeleportTimer = TELEPORTTIMER; SetPosition(vec3(-1.5f, 0, 0)); } void PlayerObject::SetIsShooting(bool isshooting) { m_IsShooting = isshooting; } void PlayerObject::SendCursorPosition(vec3 pos) { m_CursorPosition = pos; }
b974a23aeac435c31cb353333522464e02ace5c3
da9ec184bd608996b15d7959ef861a1d8b96520b
/Amlekan/src/Utils/MyRunable.h
15859ced5100543106b2d1a16ea3ac734e5a752f
[]
no_license
Programmer1234/Amlekan
6de2fecf7e176d9ec66df312ee06ea9f7cd82876
75d24829b1b92ed7a4d8a4828dab7fa39981340f
refs/heads/master
2020-03-15T21:39:50.535793
2018-05-29T01:04:05
2018-05-29T01:04:05
132,359,306
0
0
null
null
null
null
UTF-8
C++
false
false
562
h
MyRunable.h
#pragma once #include <thread> #include <memory> #include "BasicDefs.h" #include "IRunable.h" /* typedef enum RunableState_e { RUNABLE_RUNNING, RUNABLE_STOPPED, } RunableState; */ typedef std::unique_ptr<std::thread> ThreadUPtr; class MyRunable : IRunable { public: explicit MyRunable(FuncVoidNoParams func); virtual ~MyRunable(); void runOnce(); void run(); void runAsync(); void waitUntilStopped(); void stop(); bool isRunning(); private: ThreadUPtr m_threadAsyncRunner; bool m_hasAlreadyRun; FuncVoidNoParams m_func; };
12552958435d937001b7e5d41ecfeb1675dad825
24d7a699d2351fa624db2c2a42e76e922c39c6e6
/hecmw2/src/hecmw/BoundaryFaceMesh.h
867ecb75c97982c5143eb2b2ecd06adac0abd06e
[ "MIT" ]
permissive
foci/FrontISTR
90fd63883ee1725bcbd91872546063c9b3b5a8c8
b89cfd277bccad35b9e016083580e9dbcafe1031
refs/heads/master
2020-06-16T16:22:44.806728
2016-11-14T18:48:43
2016-11-14T18:48:43
75,085,121
0
0
null
2016-11-29T13:42:06
2016-11-29T13:42:06
null
UTF-8
C++
false
false
2,208
h
BoundaryFaceMesh.h
/* ---------------------------------------------------------- | | Software Name :HEC-MW Ver 4.5 beta | | ./src/BoundaryFaceMesh.h | | Written by T.Takeda, 2013/03/26 | Y.Sato, 2013/03/26 | K.Goto, 2010/01/12 | K.Matsubara, 2010/06/01 | | Contact address : IIS, The University of Tokyo CISS | ---------------------------------------------------------- */ #include "TypeDef.h" #include <map> #include <utility> #include "BoundaryFace.h" #include "ShapeQuad.h" #include "ShapeTriangle.h" #include "BoundaryMesh.h" typedef std::pair<pmw::CBoundaryNode*, pmw::CBoundaryNode*> PairBNode; namespace pmw { #ifndef _BOUNDARYFACEMESH_H #define _BOUNDARYFACEMESH_H class CBoundaryFaceMesh:public CBoundaryMesh { public: CBoundaryFaceMesh(); virtual ~CBoundaryFaceMesh(); protected: vector<CBoundaryFace*> mvBFace; map<uiint, uiint, less<uiint> > mmBFaceID2Index; vvuint mvAggregateFace; vector<CBoundaryNode*> mvBEdgeBNode; vector<CBoundaryNode*> mvBFaceBNode; public: void resizeBFace(const uiint& res_size) { mvBFace.resize(res_size); } void setBFace(const uiint& index, CBoundaryFace *pBFace); void addBFace(CBoundaryFace *pBFace); uiint getNumOfBFace() { return mvBFace.size(); } CBoundaryFace* getBFaceIX(const uiint& index) { return mvBFace[index]; } CBoundaryFace* getBFaceID(const uiint& id) { uiint index= mmBFaceID2Index[id]; return mvBFace[index]; } uiint& getBFaceIndex(const uiint& id) { return mmBFaceID2Index[id]; } public: void resizeAggFace(); vuint& getAggFace(const uiint& ibnode) { return mvAggregateFace[ibnode]; } void setupAggFace(); void setAggFace(const uiint& ibnode, const uiint& nFaceID) { mvAggregateFace[ibnode].push_back(nFaceID); } void GeneEdgeBNode(); void GeneFaceBNode(); void refine(CBoundaryFaceMesh *pProgBFaceMesh); void deleteProgData(); protected: virtual void distNeumannValue(); virtual void distDirichletValue(); }; #endif /* _BOUNDARYFACEMESH_H */ }
8a12397fb6d3cff0bc17e5cc6b61f5d03530e330
d0bf618adf06eb88e0a733019935b285acfd93b4
/Reading_Temperature_/Reading_Temperature_.ino
e9f2f335cd2eee7d1f3d6479567053d75d9d970c
[]
no_license
ladroid/Arduinos
f6fd532a4a496d6ec7125fef07b702e311a6224b
03fab14eb4001d45cb2d0932e78d586c6eaeb8d2
refs/heads/master
2021-05-30T07:44:48.277100
2015-12-30T20:45:52
2015-12-30T20:45:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
889
ino
Reading_Temperature_.ino
/* * Dec. 28, 2015 * Project: Reading Temperature * Me and Chris also ended up going the extra mile and converting the temperature from Celsius to Fahrenheit * We also realized that while posting our mini achievement through our Snapchat story that their temperature reader * was actually wrong. */ int lm35pin = A0; void setup() { //set up serial at 9600 baud Serial.begin(9600); } void loop() { int analogValue; float temperature; //read our temperature sensor analogValue = analogRead(lm35pin); //convert the 10bit analog value to celcius temperature = float(analogValue) / 1023; temperature = temperature * 500; temperature = temperature * 9/5 + 32; //print the temperature over serial Serial.print("Temp: "); Serial.print(temperature); Serial.println("F"); //wait 1s before before reading the temperature again delay(1000); }
04ade805c58523cfab8af7e3fafb5fa9dcb7fbd8
98c7cc6e4436c2deb43bd965935f42ed6ab5396f
/Server/IUser.h
32e629d7e2efafe1419b2740b2c02e099857df8a
[]
no_license
AndreiVladescu/Noodle
276c172fe3288bf5da8d49b936b0d327462fc68e
a737a9f196ff44ed2bedc707fb82fa28e4bbbf6e
refs/heads/main
2023-08-28T03:20:11.616796
2021-11-04T16:20:01
2021-11-04T16:20:01
357,468,256
0
0
null
null
null
null
UTF-8
C++
false
false
906
h
IUser.h
#pragma once #include <iostream> using namespace std; class IUser { public: virtual void printUser() = 0; virtual void changePswd() = 0; //set-ere virtual void setUserFirstName(string) = 0; virtual void setUserLastName(string) = 0; virtual void setUserEmail(string) = 0; virtual void setPassword(string) = 0; virtual void setJoinedDate(string) = 0; virtual void setRole(int) = 0; virtual void setUserID(int) = 0; virtual void setConnectionData(string uLastName, string uFirstName, string uEmail, string uJoinedDate, int uID, int uRole) = 0; virtual void setConnectionStatus() = 0; //get-ere virtual string getUserFirstName() = 0; virtual string getUserLastName() = 0; virtual string getUserFullName() = 0; virtual string getUserEmail() = 0; virtual string getUserJoinDate() = 0; virtual int getUserRole() = 0; virtual int getUserID() = 0; virtual bool getConnectionStatus() = 0; };
5560ea4ba9f573d8fadb255b529e0bf05e05c2ba
dfd64f551a3d6a9e6626518a15e28b14e45a3f4f
/leetcode_c/encode_list_with_dups.h
64ae9aa3d5c8362a33dbcf7899c657925e51e233
[]
no_license
shadowwalker2718/data_structure_algorithm
36bce2394be42f527b28a224f4e5cb49a56c08f6
c40ef3212e3f12aee414c7bbd31feb62105853c0
refs/heads/master
2021-05-01T11:52:29.290761
2018-01-23T01:29:25
2018-01-23T01:29:25
74,696,374
0
0
null
null
null
null
UTF-8
C++
false
false
684
h
encode_list_with_dups.h
#pragma once #include "henry.h" namespace bbg_encode_list_with_dups{ // http://www.1point3acres.com/bbs/thread-247535-1-1.html string encode_list_with_dups(const string& s) { string r; char last = 0; int count = 0; for (char c : s) { if (c == last) { count++; } else if(count>0){ r += (count>1?to_string(count):string("")) + last; last = c, count = 1; } else { last = c, count++; } } if(count>0) r += (count>1 ? to_string(count) : string("")) + last; return r; } void test() { string s = "abbbc"; assert(encode_list_with_dups(s)=="a3bc"); } }
e7ae56fdbc9a5c0843ce8834267ff0cc818c22be
926d26dcf938f220bd4dad414998d4adc3d6e979
/mainwindow.h
7d49a105a5f8999248aef07811751668d2833c08
[]
no_license
FantasyChen/MedicalInfoSystem
4a6ba8b0ed75d0316403e0fc7818ea07cdaa4852
b5c650342ae0127f520cf99d363d9df2e0b9f859
refs/heads/master
2021-01-10T17:15:49.825438
2017-01-18T07:50:00
2017-01-18T07:50:00
51,098,047
2
0
null
null
null
null
UTF-8
C++
false
false
3,483
h
mainwindow.h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QtWidgets/QMainWindow> #include "ui_mainwindow.h" #include "DCMReader.h" #include <QFileDialog> #include "qdebug.h" #include "AlgorithmUtils.h" #include "qboxlayout.h" #include <QVBoxLayout> #include <ROISegmentation.h> #include "QMessageBox" #include "volumewindow.h" #include <thread> #include <vtkSmartPointer.h> #include <vtkObjectFactory.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkActor.h> #include <vtkImageViewer2.h> #include <vtkInteractorStyleImage.h> #include <vtkActor2D.h> #include <vtkTextProperty.h> #include <vtkTextMapper.h> #include <vtkImageData.h> #include "vtkResliceImageViewer.h" #include "vtkResliceCursorLineRepresentation.h" #include "vtkResliceCursorThickLineRepresentation.h" #include "vtkResliceCursorWidget.h" #include "vtkResliceCursorActor.h" #include "vtkResliceCursorPolyDataAlgorithm.h" #include "vtkResliceCursor.h" #include "vtkCellPicker.h" #include "vtkProperty.h" #include "vtkPlane.h" #include "vtkImageData.h" #include "vtkCommand.h" #include "vtkPlaneSource.h" #include "vtkLookupTable.h" #include "vtkImageMapToWindowLevelColors.h" #include "vtkInteractorStyleImage.h" #include "vtkImageSlabReslice.h" #include "vtkBoundedPlanePointPlacer.h" #include "vtkDistanceWidget.h" #include "vtkDistanceRepresentation.h" #include "vtkHandleRepresentation.h" #include "vtkResliceImageViewerMeasurements.h" #include "vtkDistanceRepresentation2D.h" #include "vtkPointHandleRepresentation3D.h" #include "vtkPointHandleRepresentation2D.h" #include "vtkImagePlaneWidget.h" #include "vtkImageStencil.h" #include "vtkLassoStencilSource.h" #include "vtkImageAccumulate.h" #include "vtkROIStencilSource.h" #include "vtkSelectPolyData.h" #include "vtkPolyDataToImageStencil.h" #include "vtkCubeSource.h" #include "vtkOutputWindow.h" #include "vtkFileOutputWindow.h" /* This class basically derived from QMainWindow and so once generated, it will provide the basic window for GUI.Not only many basic application and function is implemented in this class, but also many function used to view and display or modify the image is realized here. */ class mainwindow : public QMainWindow { Q_OBJECT public:; mainwindow(QWidget *parent = 0); ~mainwindow(); protected: vtkSmartPointer< vtkResliceImageViewer > riw[3]; vtkSmartPointer< vtkImagePlaneWidget > planeWidget[3]; private slots: void OpenImageDir(); void SaveImageDir(); void ResliceMode(int mode); void ThickMode(int mode); void ResetViews(); void AddSeed(); void RemoveSeed(); void AutoSegmentation(); void MannualSegmentation(); void ChangeToRGBColorMap(int mode); void CalcHeterogeneity(); void ShowAbout(); void ShowVolumeWindow(); void HideVolumeWindow(); private: volumewindow* _vWindow; QString _imageDir; DCMReader *pDCM; bool isFileDisplayed; std::vector<CursorDim> _index; vtkImageData* rawImageData;//The image data before processing vtkImageData* curImageData; //The image data under current processing int imageDims[3]; double imageOrigin[3]; double imageSpacing[3]; double imageCenter[3]; int imageExtent[6]; double imageRange[2]; Ui::mainwindowClass ui; int colorMode; void OutputError(int errorType); void ReadImageDir(); void LassoROIExtract(); void mainwindow::ShowImage(vtkImageData* ImageData, CursorDim cursor); void ShowStatistics(); void StencilROIExtract(int mode, double bounds[6]); }; #endif // MAINWINDOW_H
bea19afdcce55c800e02c9a437305e5f4aed3e1c
c733ed24ba1db1f736f45c2753217ed1dd73200e
/src/SlowClock.cpp
f82d133f4896e55329e11a25f811af10462ab998
[]
no_license
larserli/sodiumsynth
1f9bd742164b287f3ece45473865017d30394c40
5a2a2172ef0a2923d920abd95beb9dd3d08bccbd
refs/heads/main
2023-03-11T09:37:50.519200
2021-03-01T19:04:11
2021-03-01T19:04:11
338,861,797
0
0
null
null
null
null
UTF-8
C++
false
false
706
cpp
SlowClock.cpp
/* * SlowClock.cpp * * Created on: Feb 14, 2021 * Author: lars */ #include "SlowClock.h" SlowClock::SlowClock(IClockSource *clock){ m_master_clock = clock; m_rate = 1; m_ticks = 0; m_master_clock->AddObserver(this); } SlowClock::SlowClock(IClockSource *clock, float rate){ m_master_clock = clock; m_rate = static_cast<int>(static_cast<float>(m_master_clock->GetFrequency()) / rate); m_ticks = 0; m_master_clock->AddObserver(this); } SlowClock::~SlowClock(){ } void SlowClock::setRate(float rate){ m_rate = static_cast<int>(static_cast<float>(m_master_clock->GetFrequency()) / rate); } void SlowClock::tick(){ if(++m_ticks >= m_rate){ updateObservers(); m_ticks = 0; } }
f5603d1a49073b61b4731da6299e791e09320787
61de52cff5712babe55e2b19cc1945ed4824c785
/Source/Ritual_Puzzle/Amazon_Levels.h
8b82048bae2d7504c8eb527fd6f6a05822d31d1d
[]
no_license
ARudiuk/Ritual_Puzzle
0584747bc2ffb23321d5e2f150357522762f44df
783cf5afb7c803eaacc36784c87f1fa5d23b3db9
refs/heads/master
2021-01-13T00:42:18.926171
2016-02-04T01:08:24
2016-02-04T01:08:24
50,710,643
0
0
null
null
null
null
UTF-8
C++
false
false
694
h
Amazon_Levels.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "Kismet/BlueprintFunctionLibrary.h" #include "Amazon_Levels.generated.h" /** * */ UCLASS() class RITUAL_PUZZLE_API UAmazon_Levels : public UBlueprintFunctionLibrary { GENERATED_BODY() UFUNCTION(BlueprintCallable, Category = "AlexSucks") static TArray<int> GetAmazonLevel(int level_number, int &n_count); UFUNCTION(BlueprintCallable, Category = "AlexSucks") static TArray<int> GetAmazonMoves(TArray <int> Grid, int dim, int pawn_index); UFUNCTION(BlueprintCallable, Category = "AlexSucks") static TArray<int> GetAmazonShots(TArray <int> Grid, int dim, int pawn_index); };
56932430ad08607b0df5913842652d9aaa6344ee
33fd403c0d27bd0d6a6fe2add07386c8716560a0
/exercise8.cpp
989c13ac3c7b5105b680be4c1fe2af7577f46368
[]
no_license
AlexM1tra/AP-Module-Monday-Exercises
2d51155869e1026b4fe3907168df459bf9d921b8
e9d5b5e3e2773fa6d5e828afed3fe89d875a49dd
refs/heads/main
2023-02-12T06:09:02.764784
2021-01-11T20:51:49
2021-01-11T20:51:49
328,645,801
0
0
null
null
null
null
UTF-8
C++
false
false
1,524
cpp
exercise8.cpp
#include <iostream> // Takes a string and returns a boolean value denoting whether the string contains only numeric characters. // Used to validate inputs before they are converted to the correct type. bool isNumeric(std::string input) { std::string numericChars = "0123456789.-"; int decimalPointCount = 0; for (int index = 0; index < input.size(); index++) { if (input[index] == '.') { decimalPointCount++; } if (decimalPointCount > 1 || (index != 0 && input[index] == '-') || numericChars.find(input[index]) == std::string::npos) { return false; } } try { stoi(input); } catch (std::out_of_range) { return false; } return true; } int main() { std::cout << "Please enter a valid numeric, or \"Q\" to finish:\n"; double min = INT32_MAX, max = INT32_MIN; double numericalInput = 0; int numValues = 0; std::string input; std::cin >> input; while (input.size() != 1 || toupper(input[0]) != 'Q') { if (!isNumeric(input)) { std::cout << "Invalid value, please try again:\n"; } else { numValues ++; numericalInput = stoi(input); if (numericalInput < min) { min = numericalInput; } if (numericalInput > max) { max = numericalInput; } } std::cin >> input; } std::cout << "Total number of values entered: " << numValues << std::endl << "Lowest Value:\t" << min << std::endl << "Largest Value:\t " << max << std::endl; return 0; }
82ee39af6c4d2bc839f0dcff578a16c0245e9e8b
20c4e9987833b4dffe6d0c6802a1dc43b74ac728
/C and C++/TREE BASED/size_of_a_tree.cpp
f01c2632507e1a1de4a3c58d7a4a1f1f53102a0c
[]
no_license
tg9963/CPP_files
c54aa57e3fdf3e3301b228f42a71a95210e71932
52e6da1e15c70501d290d955abfe8555261e2a34
refs/heads/master
2021-01-19T08:43:15.976534
2015-06-10T11:00:25
2015-06-10T11:00:25
34,978,103
0
0
null
null
null
null
UTF-8
C++
false
false
719
cpp
size_of_a_tree.cpp
#include<iostream> #include<stdlib.h> using namespace std; struct tree { int data; struct tree* left; struct tree* right; }; struct tree* newnode(int data) { struct tree* root=(struct tree*)malloc(sizeof(struct tree)); root->data=data; root->left=NULL; root->right=NULL; return root; } int size_of_tree(struct tree* root) { if(root==NULL)return 0; else return (size_of_tree(root->left)+1+size_of_tree(root->right)); } int main() { struct tree* root=newnode(10); root->left=newnode(20); root->right=newnode(48); root->left->right=newnode(11); root->left->left=newnode(12); root->right->left=newnode(21); root->right->right=newnode(9); cout<<"size : "<<size_of_tree(root); cout<<endl; return 0; }
dfbe8e9996950268a389f5e175f4b0b24edd67ee
4ceb59b914535a614f56d27093ea74da6d0efe3b
/炮弹轨迹模拟/moniDoc.cpp
880e76d2d1b33d2ab32598d1cb9455833fdc644b
[]
no_license
shaohui119/boomshow
ec67acfd80fa80e8c53ba9d69bd47dcdba5e7fcf
2696080b92923c4142d33b4119e34503fff5888f
refs/heads/master
2021-01-01T17:14:16.326293
2017-07-22T13:05:48
2017-07-22T13:05:48
98,030,745
0
0
null
null
null
null
UTF-8
C++
false
false
1,618
cpp
moniDoc.cpp
// moniDoc.cpp : implementation of the CMoniDoc class // #include "stdafx.h" #include "moni.h" #include "moniDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMoniDoc IMPLEMENT_DYNCREATE(CMoniDoc, CDocument) BEGIN_MESSAGE_MAP(CMoniDoc, CDocument) //{{AFX_MSG_MAP(CMoniDoc) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMoniDoc construction/destruction CMoniDoc::CMoniDoc() { // TODO: add one-time construction code here } CMoniDoc::~CMoniDoc() { } BOOL CMoniDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: add reinitialization code here // (SDI documents will reuse this document) return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CMoniDoc serialization void CMoniDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here } } ///////////////////////////////////////////////////////////////////////////// // CMoniDoc diagnostics #ifdef _DEBUG void CMoniDoc::AssertValid() const { CDocument::AssertValid(); } void CMoniDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CMoniDoc commands
e033ee1424039a22ba2f670507d073e536a1dad7
cc86d740260fedb4f90f126e8dde666c988f0849
/cases/airfoil_run/25/nut
4aa547174cf21ae56b1a6b505e23294407afb74c
[]
no_license
chengpengzhao/airfoil_opt
3d5087b0eb92000744c19092cb8442478254bcd7
409e42488e3cdf643c26a2daab76429d00bff95c
refs/heads/master
2020-11-29T04:15:52.648014
2019-12-29T08:59:41
2019-12-29T08:59:41
230,019,931
1
0
null
null
null
null
UTF-8
C++
false
false
360,974
nut
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: dev \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "25"; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 29380 ( 9.1121e-06 9.11132e-06 9.10462e-06 9.11075e-06 9.1043e-06 9.10837e-06 9.11022e-06 9.10415e-06 9.10769e-06 9.10583e-06 9.10974e-06 9.10399e-06 9.10736e-06 9.1053e-06 9.10672e-06 9.10929e-06 9.10382e-06 9.10701e-06 9.10506e-06 9.1061e-06 9.10642e-06 9.10884e-06 9.10365e-06 9.10669e-06 9.10479e-06 9.10581e-06 9.10581e-06 9.10694e-06 9.10841e-06 9.1035e-06 9.10638e-06 9.10454e-06 9.10549e-06 9.10551e-06 9.10628e-06 9.10746e-06 9.108e-06 9.10336e-06 9.10607e-06 9.10431e-06 9.10519e-06 9.10519e-06 9.10599e-06 9.10672e-06 9.10835e-06 9.10763e-06 9.10324e-06 9.10578e-06 9.1041e-06 9.10491e-06 9.10489e-06 9.10564e-06 9.1064e-06 9.10751e-06 9.10942e-06 9.10729e-06 9.10312e-06 9.10551e-06 9.10391e-06 9.10465e-06 9.10461e-06 9.10529e-06 9.10602e-06 9.10713e-06 9.10852e-06 9.1106e-06 9.10696e-06 9.10301e-06 9.10526e-06 9.10374e-06 9.10441e-06 9.10435e-06 9.10497e-06 9.10567e-06 9.10669e-06 9.10806e-06 9.10971e-06 9.11162e-06 9.10664e-06 9.1029e-06 9.10503e-06 9.10359e-06 9.10419e-06 9.10412e-06 9.10468e-06 9.10532e-06 9.10627e-06 9.10754e-06 9.10919e-06 9.1108e-06 9.11265e-06 9.10632e-06 9.10279e-06 9.10481e-06 9.10345e-06 9.10398e-06 9.1039e-06 9.10441e-06 9.10499e-06 9.10589e-06 9.10705e-06 9.10858e-06 9.11035e-06 9.11175e-06 9.11414e-06 9.106e-06 9.1027e-06 9.10461e-06 9.10331e-06 9.1038e-06 9.1037e-06 9.10416e-06 9.10469e-06 9.10553e-06 9.10659e-06 9.108e-06 9.10967e-06 9.11152e-06 9.11231e-06 9.11932e-06 9.10569e-06 9.10261e-06 9.10441e-06 9.10318e-06 9.10363e-06 9.10351e-06 9.10393e-06 9.10441e-06 9.10519e-06 9.10616e-06 9.10746e-06 9.10903e-06 9.1108e-06 9.11233e-06 9.11539e-06 9.12943e-06 9.10541e-06 9.10253e-06 9.10423e-06 9.10305e-06 9.10347e-06 9.10334e-06 9.10372e-06 9.10415e-06 9.10487e-06 9.10577e-06 9.10695e-06 9.10842e-06 9.11011e-06 9.11177e-06 9.1145e-06 9.12355e-06 9.14402e-06 9.10515e-06 9.10245e-06 9.10405e-06 9.10294e-06 9.10333e-06 9.10319e-06 9.10353e-06 9.10392e-06 9.10457e-06 9.10541e-06 9.10647e-06 9.10784e-06 9.1094e-06 9.11121e-06 9.11362e-06 9.12156e-06 9.13582e-06 9.16439e-06 9.10491e-06 9.10238e-06 9.10388e-06 9.10283e-06 9.1032e-06 9.10305e-06 9.10335e-06 9.1037e-06 9.10429e-06 9.10508e-06 9.10603e-06 9.10729e-06 9.10874e-06 9.11053e-06 9.1132e-06 9.1194e-06 9.1328e-06 9.15321e-06 9.19233e-06 9.10469e-06 9.10231e-06 9.10373e-06 9.10273e-06 9.10307e-06 9.10293e-06 9.1032e-06 9.10351e-06 9.10404e-06 9.10476e-06 9.10563e-06 9.10678e-06 9.10812e-06 9.10986e-06 9.11279e-06 9.11798e-06 9.12939e-06 9.14887e-06 9.17735e-06 9.22977e-06 9.10449e-06 9.10225e-06 9.10358e-06 9.10264e-06 9.10296e-06 9.10282e-06 9.10305e-06 9.10333e-06 9.10382e-06 9.10446e-06 9.10527e-06 9.1063e-06 9.10755e-06 9.10923e-06 9.11229e-06 9.11695e-06 9.12681e-06 9.14395e-06 9.17126e-06 9.21007e-06 9.27882e-06 9.10429e-06 9.10219e-06 9.10344e-06 9.10256e-06 9.10285e-06 9.10272e-06 9.10292e-06 9.10318e-06 9.10361e-06 9.10419e-06 9.10494e-06 9.10585e-06 9.10704e-06 9.10866e-06 9.1117e-06 9.11621e-06 9.12466e-06 9.14002e-06 9.16445e-06 9.20167e-06 9.25338e-06 9.34157e-06 9.10411e-06 9.10215e-06 9.10332e-06 9.10249e-06 9.10276e-06 9.10262e-06 9.1028e-06 9.10303e-06 9.10342e-06 9.10395e-06 9.10464e-06 9.10545e-06 9.10659e-06 9.10814e-06 9.11109e-06 9.11558e-06 9.12296e-06 9.13665e-06 9.15885e-06 9.19235e-06 9.24205e-06 9.30933e-06 9.41998e-06 9.10393e-06 9.1021e-06 9.1032e-06 9.10242e-06 9.10267e-06 9.10253e-06 9.1027e-06 9.1029e-06 9.10326e-06 9.10374e-06 9.10436e-06 9.10511e-06 9.10619e-06 9.10769e-06 9.11052e-06 9.11492e-06 9.12163e-06 9.13387e-06 9.1539e-06 9.18457e-06 9.22955e-06 9.29434e-06 9.37983e-06 9.51592e-06 9.10376e-06 9.10207e-06 9.10308e-06 9.10235e-06 9.10258e-06 9.10245e-06 9.1026e-06 9.10279e-06 9.10311e-06 9.10354e-06 9.1041e-06 9.10481e-06 9.10583e-06 9.10729e-06 9.11e-06 9.11422e-06 9.1206e-06 9.13152e-06 9.14962e-06 9.17764e-06 9.21893e-06 9.27793e-06 9.36039e-06 9.46673e-06 9.63098e-06 9.1036e-06 9.10203e-06 9.10298e-06 9.1023e-06 9.1025e-06 9.10238e-06 9.10251e-06 9.10268e-06 9.10298e-06 9.10337e-06 9.10388e-06 9.10456e-06 9.10549e-06 9.10694e-06 9.10953e-06 9.11351e-06 9.11973e-06 9.12948e-06 9.14594e-06 9.17158e-06 9.20939e-06 9.26373e-06 9.33923e-06 9.44199e-06 9.57163e-06 9.76648e-06 9.10342e-06 9.10198e-06 9.10289e-06 9.10224e-06 9.10244e-06 9.10231e-06 9.10243e-06 9.10258e-06 9.10286e-06 9.10322e-06 9.10368e-06 9.10433e-06 9.10519e-06 9.10662e-06 9.10909e-06 9.11283e-06 9.11891e-06 9.12768e-06 9.1428e-06 9.16624e-06 9.20095e-06 9.25088e-06 9.32064e-06 9.41521e-06 9.54067e-06 9.69591e-06 9.92326e-06 9.10322e-06 9.10192e-06 9.1028e-06 9.1022e-06 9.10238e-06 9.10225e-06 9.10235e-06 9.10249e-06 9.10274e-06 9.10308e-06 9.10351e-06 9.10413e-06 9.10493e-06 9.10632e-06 9.10867e-06 9.11221e-06 9.11805e-06 9.12611e-06 9.1401e-06 9.16151e-06 9.19345e-06 9.23939e-06 9.30367e-06 9.39134e-06 9.50733e-06 9.65781e-06 9.8405e-06 1.01017e-05 9.10298e-06 9.10184e-06 9.10269e-06 9.10215e-06 9.10233e-06 9.1022e-06 9.10228e-06 9.1024e-06 9.10263e-06 9.10295e-06 9.10336e-06 9.10395e-06 9.10472e-06 9.10603e-06 9.10827e-06 9.11163e-06 9.11715e-06 9.12479e-06 9.13772e-06 9.15732e-06 9.18677e-06 9.22908e-06 9.28835e-06 9.36937e-06 9.47721e-06 9.61695e-06 9.79431e-06 1.00058e-05 1.03017e-05 9.10272e-06 9.10177e-06 9.10257e-06 9.10209e-06 9.10227e-06 9.10216e-06 9.10223e-06 9.10231e-06 9.10252e-06 9.10282e-06 9.10321e-06 9.10378e-06 9.10453e-06 9.10578e-06 9.1079e-06 9.1111e-06 9.11626e-06 9.12367e-06 9.13551e-06 9.1536e-06 9.18081e-06 9.21984e-06 9.27449e-06 9.34935e-06 9.44929e-06 9.57959e-06 9.74498e-06 9.95057e-06 1.0192e-05 1.0523e-05 9.10249e-06 9.10171e-06 9.10243e-06 9.10201e-06 9.10221e-06 9.10211e-06 9.10218e-06 9.10225e-06 9.10242e-06 9.10269e-06 9.10307e-06 9.10362e-06 9.10436e-06 9.10555e-06 9.10755e-06 9.1106e-06 9.11543e-06 9.12264e-06 9.1334e-06 9.1503e-06 9.17545e-06 9.21152e-06 9.26197e-06 9.3311e-06 9.42361e-06 9.54469e-06 9.69935e-06 9.89181e-06 1.01268e-05 1.03989e-05 1.07648e-05 9.10233e-06 9.10169e-06 9.1023e-06 9.10191e-06 9.10212e-06 9.10206e-06 9.10214e-06 9.1022e-06 9.10234e-06 9.10256e-06 9.10291e-06 9.10345e-06 9.10419e-06 9.10535e-06 9.10723e-06 9.11013e-06 9.11468e-06 9.12159e-06 9.13138e-06 9.14732e-06 9.17061e-06 9.20402e-06 9.25063e-06 9.31448e-06 9.40003e-06 9.51235e-06 9.65644e-06 9.83688e-06 1.00577e-05 1.03227e-05 1.06257e-05 1.10261e-05 9.10222e-06 9.10169e-06 9.10221e-06 9.10183e-06 9.10203e-06 9.10199e-06 9.10209e-06 9.10217e-06 9.10228e-06 9.10246e-06 9.10276e-06 9.10326e-06 9.104e-06 9.10515e-06 9.10692e-06 9.10969e-06 9.114e-06 9.12051e-06 9.12955e-06 9.14456e-06 9.16616e-06 9.1972e-06 9.24035e-06 9.29936e-06 9.37842e-06 9.48243e-06 9.61637e-06 9.78488e-06 9.99242e-06 1.02424e-05 1.05378e-05 1.08718e-05 1.13053e-05 9.10215e-06 9.1017e-06 9.10217e-06 9.10179e-06 9.10196e-06 9.10191e-06 9.10202e-06 9.10212e-06 9.10224e-06 9.10238e-06 9.10264e-06 9.10307e-06 9.10378e-06 9.10493e-06 9.10661e-06 9.10926e-06 9.11337e-06 9.11946e-06 9.12796e-06 9.14197e-06 9.16204e-06 9.19094e-06 9.23098e-06 9.28558e-06 9.35863e-06 9.45483e-06 9.57904e-06 9.73596e-06 9.93026e-06 1.01658e-05 1.04454e-05 1.07713e-05 1.11358e-05 1.1601e-05 9.10206e-06 9.10168e-06 9.10215e-06 9.10177e-06 9.1019e-06 9.10184e-06 9.10194e-06 9.10205e-06 9.10219e-06 9.10234e-06 9.10255e-06 9.10291e-06 9.10355e-06 9.10465e-06 9.10626e-06 9.10881e-06 9.11275e-06 9.11849e-06 9.12661e-06 9.13953e-06 9.15822e-06 9.18513e-06 9.22236e-06 9.27297e-06 9.34051e-06 9.42942e-06 9.54439e-06 9.69012e-06 9.87141e-06 1.00924e-05 1.03565e-05 1.06661e-05 1.1022e-05 1.14163e-05 1.19113e-05 9.10194e-06 9.10166e-06 9.10212e-06 9.10177e-06 9.10188e-06 9.10179e-06 9.10187e-06 9.10196e-06 9.10212e-06 9.10229e-06 9.1025e-06 9.10279e-06 9.10336e-06 9.10434e-06 9.10588e-06 9.10831e-06 9.11211e-06 9.1176e-06 9.12542e-06 9.13727e-06 9.15472e-06 9.17974e-06 9.21436e-06 9.26134e-06 9.32389e-06 9.40605e-06 9.51233e-06 9.64732e-06 9.81592e-06 1.00225e-05 1.02709e-05 1.05639e-05 1.09033e-05 1.12886e-05 1.17117e-05 1.22342e-05 9.10182e-06 9.10162e-06 9.10205e-06 9.10176e-06 9.10187e-06 9.10177e-06 9.10182e-06 9.10188e-06 9.10203e-06 9.10221e-06 9.10246e-06 9.10273e-06 9.10323e-06 9.10406e-06 9.10546e-06 9.10774e-06 9.1114e-06 9.1167e-06 9.12424e-06 9.13518e-06 9.15156e-06 9.1748e-06 9.20694e-06 9.25056e-06 9.30853e-06 9.38452e-06 9.48271e-06 9.60753e-06 9.76385e-06 9.95624e-06 1.01888e-05 1.0465e-05 1.0787e-05 1.11558e-05 1.15696e-05 1.20203e-05 1.25675e-05 9.10172e-06 9.10158e-06 9.10195e-06 9.10173e-06 9.10185e-06 9.10176e-06 9.10179e-06 9.10182e-06 9.10193e-06 9.10211e-06 9.10237e-06 9.10269e-06 9.10317e-06 9.10387e-06 9.10507e-06 9.10712e-06 9.11058e-06 9.11571e-06 9.12297e-06 9.13323e-06 9.14868e-06 9.17035e-06 9.20012e-06 9.24055e-06 9.29428e-06 9.36461e-06 9.45533e-06 9.5706e-06 9.7152e-06 9.89375e-06 1.01107e-05 1.03698e-05 1.0674e-05 1.10247e-05 1.14222e-05 1.18634e-05 1.23401e-05 1.29087e-05 9.10167e-06 9.10155e-06 9.10184e-06 9.10168e-06 9.10181e-06 9.10174e-06 9.10178e-06 9.10179e-06 9.10187e-06 9.102e-06 9.10225e-06 9.1026e-06 9.10313e-06 9.10379e-06 9.1048e-06 9.10657e-06 9.10967e-06 9.11456e-06 9.12154e-06 9.1313e-06 9.14593e-06 9.1663e-06 9.19396e-06 9.23136e-06 9.28106e-06 9.34611e-06 9.42995e-06 9.53636e-06 9.66989e-06 9.83512e-06 1.00366e-05 1.02786e-05 1.05645e-05 1.08965e-05 1.12755e-05 1.17009e-05 1.21678e-05 1.26685e-05 1.32551e-05 9.10164e-06 9.10154e-06 9.10176e-06 9.10163e-06 9.10174e-06 9.1017e-06 9.10175e-06 9.10177e-06 9.10183e-06 9.10192e-06 9.10211e-06 9.10245e-06 9.10303e-06 9.10375e-06 9.10467e-06 9.10618e-06 9.10882e-06 9.11327e-06 9.1199e-06 9.12925e-06 9.14309e-06 9.16246e-06 9.18838e-06 9.22303e-06 9.2689e-06 9.32895e-06 9.40635e-06 9.50455e-06 9.62774e-06 9.7803e-06 9.96688e-06 1.01919e-05 1.04593e-05 1.07719e-05 1.11314e-05 1.1538e-05 1.19902e-05 1.24808e-05 1.30032e-05 1.36042e-05 9.1016e-06 9.10154e-06 9.10173e-06 9.1016e-06 9.10168e-06 9.10165e-06 9.10171e-06 9.10175e-06 9.10181e-06 9.10188e-06 9.10201e-06 9.10229e-06 9.10284e-06 9.10362e-06 9.1046e-06 9.10599e-06 9.10819e-06 9.11204e-06 9.1181e-06 9.12695e-06 9.13994e-06 9.15849e-06 9.18313e-06 9.21547e-06 9.25787e-06 9.31317e-06 9.38446e-06 9.47496e-06 9.58849e-06 9.72917e-06 9.90146e-06 1.011e-05 1.03589e-05 1.06516e-05 1.09907e-05 1.13773e-05 1.18105e-05 1.22877e-05 1.27999e-05 1.33416e-05 1.39528e-05 9.10155e-06 9.10154e-06 9.10172e-06 9.1016e-06 9.10165e-06 9.1016e-06 9.10165e-06 9.10171e-06 9.10179e-06 9.10186e-06 9.10195e-06 9.10217e-06 9.10263e-06 9.10338e-06 9.10444e-06 9.10588e-06 9.10786e-06 9.11109e-06 9.11635e-06 9.12441e-06 9.13637e-06 9.15407e-06 9.17778e-06 9.20842e-06 9.24787e-06 9.29884e-06 9.36434e-06 9.4475e-06 9.55195e-06 9.68146e-06 9.84026e-06 1.00328e-05 1.02636e-05 1.05363e-05 1.08543e-05 1.12196e-05 1.16325e-05 1.20908e-05 1.25912e-05 1.31226e-05 1.36808e-05 1.42973e-05 9.10151e-06 9.10152e-06 9.10171e-06 9.10161e-06 9.10164e-06 9.10158e-06 9.10161e-06 9.10166e-06 9.10175e-06 9.10183e-06 9.10193e-06 9.10211e-06 9.10246e-06 9.10309e-06 9.10414e-06 9.10567e-06 9.10771e-06 9.11056e-06 9.11497e-06 9.12192e-06 9.13252e-06 9.14901e-06 9.17184e-06 9.20134e-06 9.23858e-06 9.28585e-06 9.34604e-06 9.42226e-06 9.51805e-06 9.63699e-06 9.78305e-06 9.9605e-06 1.01737e-05 1.04267e-05 1.07233e-05 1.10663e-05 1.1457e-05 1.18949e-05 1.23767e-05 1.28985e-05 1.34461e-05 1.40169e-05 1.46333e-05 9.10148e-06 9.1015e-06 9.10167e-06 9.1016e-06 9.10164e-06 9.10158e-06 9.10158e-06 9.10162e-06 9.10169e-06 9.10178e-06 9.1019e-06 9.10209e-06 9.10238e-06 9.10286e-06 9.10378e-06 9.10529e-06 9.10747e-06 9.11028e-06 9.11413e-06 9.11992e-06 9.12886e-06 9.14346e-06 9.165e-06 9.19359e-06 9.22938e-06 9.27381e-06 9.32944e-06 9.3993e-06 9.48687e-06 9.59572e-06 9.72965e-06 9.89275e-06 1.00891e-05 1.03229e-05 1.05983e-05 1.09185e-05 1.12858e-05 1.1701e-05 1.21624e-05 1.26661e-05 1.32065e-05 1.37667e-05 1.43457e-05 1.49575e-05 9.10146e-06 9.10148e-06 9.10162e-06 9.10158e-06 9.10164e-06 9.10158e-06 9.10158e-06 9.10159e-06 9.10163e-06 9.10171e-06 9.10185e-06 9.10206e-06 9.10236e-06 9.10275e-06 9.10348e-06 9.10482e-06 9.10699e-06 9.10993e-06 9.11366e-06 9.11869e-06 9.12601e-06 9.13806e-06 9.15739e-06 9.18463e-06 9.21942e-06 9.262e-06 9.31412e-06 9.37848e-06 9.45852e-06 9.55778e-06 9.68008e-06 9.82944e-06 1.00098e-05 1.02252e-05 1.04798e-05 1.07772e-05 1.11204e-05 1.15112e-05 1.19495e-05 1.2433e-05 1.29562e-05 1.35117e-05 1.408e-05 1.4664e-05 1.52659e-05 9.10145e-06 9.10147e-06 9.10157e-06 9.10155e-06 9.10161e-06 9.10158e-06 9.10158e-06 9.10158e-06 9.1016e-06 9.10165e-06 9.10177e-06 9.102e-06 9.10234e-06 9.10272e-06 9.10332e-06 9.1044e-06 9.10636e-06 9.10929e-06 9.11316e-06 9.11802e-06 9.12428e-06 9.13373e-06 9.14985e-06 9.1745e-06 9.20791e-06 9.24939e-06 9.29922e-06 9.3593e-06 9.4328e-06 9.52328e-06 9.63453e-06 9.77065e-06 9.93566e-06 1.01334e-05 1.03679e-05 1.06429e-05 1.09619e-05 1.13273e-05 1.17403e-05 1.22004e-05 1.27038e-05 1.32432e-05 1.38098e-05 1.43831e-05 1.49677e-05 1.55528e-05 9.10143e-06 9.10147e-06 9.10154e-06 9.10152e-06 9.10157e-06 9.10156e-06 9.10158e-06 9.10158e-06 9.10158e-06 9.10161e-06 9.1017e-06 9.1019e-06 9.10226e-06 9.10269e-06 9.10325e-06 9.10414e-06 9.10576e-06 9.10844e-06 9.11232e-06 9.11735e-06 9.1234e-06 9.13108e-06 9.14365e-06 9.16422e-06 9.19475e-06 9.23493e-06 9.28349e-06 9.3408e-06 9.40917e-06 9.49201e-06 9.59313e-06 9.71662e-06 9.86674e-06 1.00475e-05 1.02627e-05 1.0516e-05 1.0811e-05 1.11508e-05 1.15372e-05 1.19713e-05 1.24512e-05 1.29713e-05 1.3523e-05 1.40978e-05 1.46716e-05 1.52509e-05 1.58122e-05 9.10142e-06 9.10147e-06 9.10153e-06 9.1015e-06 9.10154e-06 9.10153e-06 9.10156e-06 9.10157e-06 9.10158e-06 9.10159e-06 9.10165e-06 9.1018e-06 9.10214e-06 9.1026e-06 9.10317e-06 9.10398e-06 9.10533e-06 9.10762e-06 9.1112e-06 9.11625e-06 9.12258e-06 9.12984e-06 9.13976e-06 9.15556e-06 9.18118e-06 9.21835e-06 9.2656e-06 9.3215e-06 9.38653e-06 9.46332e-06 9.55564e-06 9.66754e-06 9.8034e-06 9.96754e-06 1.0164e-05 1.03965e-05 1.06683e-05 1.09825e-05 1.1342e-05 1.17483e-05 1.22016e-05 1.26982e-05 1.32315e-05 1.37928e-05 1.43717e-05 1.49399e-05 1.55078e-05 1.60385e-05 9.10141e-06 9.10147e-06 9.10152e-06 9.10149e-06 9.10152e-06 9.10151e-06 9.10154e-06 9.10155e-06 9.10157e-06 9.10158e-06 9.10162e-06 9.10173e-06 9.10202e-06 9.10245e-06 9.10304e-06 9.10384e-06 9.10504e-06 9.10698e-06 9.11009e-06 9.11478e-06 9.12121e-06 9.12897e-06 9.13794e-06 9.14997e-06 9.16951e-06 9.20096e-06 9.24501e-06 9.29967e-06 9.36313e-06 9.43595e-06 9.52129e-06 9.62316e-06 9.74588e-06 9.89408e-06 1.00723e-05 1.02843e-05 1.05336e-05 1.08231e-05 1.11556e-05 1.15337e-05 1.19582e-05 1.24277e-05 1.29378e-05 1.34816e-05 1.40484e-05 1.46253e-05 1.51822e-05 1.57331e-05 1.62249e-05 9.10141e-06 9.10147e-06 9.10152e-06 9.10149e-06 9.10151e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10156e-06 9.10157e-06 9.1016e-06 9.10169e-06 9.10193e-06 9.1023e-06 9.10287e-06 9.10366e-06 9.10478e-06 9.1065e-06 9.10919e-06 9.1133e-06 9.11933e-06 9.12749e-06 9.13688e-06 9.14738e-06 9.16179e-06 9.18563e-06 9.22314e-06 9.27447e-06 9.33684e-06 9.40789e-06 9.48865e-06 9.58256e-06 9.69393e-06 9.8274e-06 9.98797e-06 1.018e-05 1.04073e-05 1.06726e-05 1.09788e-05 1.13286e-05 1.17237e-05 1.21635e-05 1.26461e-05 1.31671e-05 1.37174e-05 1.42838e-05 1.48531e-05 1.53933e-05 1.59203e-05 1.6366e-05 9.10142e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10151e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10153e-06 9.10156e-06 9.10159e-06 9.10166e-06 9.10186e-06 9.10217e-06 9.1027e-06 9.10346e-06 9.10451e-06 9.10607e-06 9.10844e-06 9.11204e-06 9.11736e-06 9.1252e-06 9.13518e-06 9.14612e-06 9.15815e-06 9.17512e-06 9.20346e-06 9.24742e-06 9.30643e-06 9.3766e-06 9.45539e-06 9.54411e-06 9.64653e-06 9.76725e-06 9.91145e-06 1.00842e-05 1.02897e-05 1.05314e-05 1.08119e-05 1.1134e-05 1.14993e-05 1.19086e-05 1.23608e-05 1.28541e-05 1.33821e-05 1.3933e-05 1.44936e-05 1.505e-05 1.55669e-05 1.60651e-05 1.64633e-05 9.10142e-06 9.10147e-06 9.1015e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10148e-06 9.10151e-06 9.10154e-06 9.10157e-06 9.10164e-06 9.1018e-06 9.10207e-06 9.10254e-06 9.10326e-06 9.10425e-06 9.10565e-06 9.10774e-06 9.11093e-06 9.11561e-06 9.12259e-06 9.13237e-06 9.1442e-06 9.15655e-06 9.16996e-06 9.1896e-06 9.22269e-06 9.27351e-06 9.34047e-06 9.41854e-06 9.50514e-06 9.60178e-06 9.7125e-06 9.84249e-06 9.99719e-06 1.01817e-05 1.04e-05 1.06553e-05 1.09501e-05 1.12863e-05 1.16646e-05 1.20853e-05 1.25476e-05 1.30478e-05 1.35768e-05 1.41231e-05 1.46724e-05 1.52095e-05 1.56988e-05 1.61704e-05 1.6524e-05 9.10143e-06 9.10147e-06 9.1015e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10149e-06 9.10152e-06 9.10155e-06 9.10161e-06 9.10174e-06 9.10196e-06 9.10237e-06 9.10306e-06 9.10402e-06 9.1053e-06 9.10711e-06 9.10987e-06 9.11402e-06 9.12008e-06 9.12894e-06 9.14083e-06 9.15437e-06 9.16783e-06 9.18259e-06 9.20493e-06 9.24303e-06 9.30115e-06 9.3761e-06 9.46218e-06 9.55659e-06 9.66098e-06 9.77985e-06 9.91887e-06 1.00837e-05 1.02793e-05 1.05096e-05 1.07776e-05 1.1085e-05 1.14329e-05 1.18215e-05 1.22514e-05 1.272e-05 1.32213e-05 1.37462e-05 1.42824e-05 1.48141e-05 1.53277e-05 1.57924e-05 1.62461e-05 1.65564e-05 9.10143e-06 9.10147e-06 9.1015e-06 9.10148e-06 9.10149e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.10155e-06 9.1016e-06 9.1017e-06 9.10186e-06 9.10218e-06 9.10281e-06 9.10378e-06 9.10504e-06 9.10664e-06 9.10894e-06 9.11248e-06 9.11775e-06 9.12547e-06 9.13647e-06 9.15039e-06 9.16541e-06 9.17986e-06 9.19578e-06 9.22082e-06 9.26437e-06 9.32975e-06 9.41282e-06 9.507e-06 9.60916e-06 9.7211e-06 9.84785e-06 9.99556e-06 1.01699e-05 1.03759e-05 1.06172e-05 1.08963e-05 1.1214e-05 1.1571e-05 1.19678e-05 1.24032e-05 1.28725e-05 1.33697e-05 1.38851e-05 1.44047e-05 1.49146e-05 1.54085e-05 1.58587e-05 1.63045e-05 1.65743e-05 9.10143e-06 9.10147e-06 9.10151e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.10154e-06 9.10159e-06 9.10168e-06 9.1018e-06 9.10201e-06 9.10251e-06 9.10344e-06 9.10477e-06 9.10634e-06 9.1083e-06 9.11116e-06 9.11556e-06 9.12216e-06 9.13186e-06 9.14502e-06 9.1609e-06 9.1773e-06 9.19242e-06 9.20925e-06 9.23713e-06 9.28604e-06 9.35884e-06 9.45015e-06 9.55248e-06 9.66225e-06 9.78144e-06 9.91575e-06 1.00716e-05 1.02547e-05 1.04701e-05 1.0721e-05 1.10089e-05 1.13345e-05 1.16986e-05 1.20999e-05 1.25353e-05 1.30003e-05 1.3488e-05 1.39873e-05 1.4486e-05 1.49784e-05 1.54636e-05 1.59108e-05 1.63649e-05 1.66011e-05 9.10144e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10152e-06 9.10159e-06 9.10168e-06 9.10178e-06 9.10191e-06 9.10223e-06 9.10298e-06 9.10432e-06 9.10604e-06 9.10798e-06 9.11033e-06 9.11378e-06 9.11914e-06 9.12737e-06 9.13914e-06 9.15454e-06 9.17233e-06 9.18978e-06 9.20521e-06 9.2227e-06 9.25331e-06 9.30767e-06 9.38798e-06 9.48762e-06 9.59807e-06 9.71518e-06 9.84133e-06 9.98269e-06 1.01459e-05 1.0337e-05 1.05603e-05 1.08186e-05 1.11131e-05 1.14445e-05 1.18121e-05 1.22128e-05 1.26433e-05 1.30985e-05 1.35702e-05 1.40487e-05 1.45311e-05 1.50169e-05 1.5507e-05 1.59703e-05 1.64595e-05 1.66802e-05 9.10144e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10157e-06 9.10168e-06 9.10179e-06 9.10188e-06 9.10206e-06 9.10253e-06 9.10365e-06 9.10547e-06 9.10767e-06 9.10998e-06 9.11273e-06 9.11678e-06 9.12324e-06 9.13324e-06 9.14731e-06 9.16493e-06 9.1844e-06 9.20258e-06 9.2178e-06 9.23576e-06 9.26905e-06 9.32889e-06 9.41668e-06 9.52474e-06 9.64314e-06 9.76733e-06 9.9e-06 1.00478e-05 1.02176e-05 1.04152e-05 1.06445e-05 1.09079e-05 1.1207e-05 1.15409e-05 1.19071e-05 1.23022e-05 1.27226e-05 1.31613e-05 1.36121e-05 1.40742e-05 1.45509e-05 1.50444e-05 1.5562e-05 1.60718e-05 1.66455e-05 1.70058e-05 9.10144e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10153e-06 9.10164e-06 9.10178e-06 9.10191e-06 9.10203e-06 9.10226e-06 9.10295e-06 9.10454e-06 9.10696e-06 9.10968e-06 9.11237e-06 9.11548e-06 9.12008e-06 9.12778e-06 9.13987e-06 9.15618e-06 9.17592e-06 9.19684e-06 9.21521e-06 9.22996e-06 9.24817e-06 9.28408e-06 9.34918e-06 9.44454e-06 9.56095e-06 9.68711e-06 9.81801e-06 9.95665e-06 1.01101e-05 1.02853e-05 1.04874e-05 1.07205e-05 1.09872e-05 1.12876e-05 1.16193e-05 1.19794e-05 1.23639e-05 1.27673e-05 1.31847e-05 1.36183e-05 1.40741e-05 1.45594e-05 1.50845e-05 1.5666e-05 1.62769e-05 1.71636e-05 1.8619e-05 9.10145e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10157e-06 9.10173e-06 9.10191e-06 9.10207e-06 9.10222e-06 9.10253e-06 9.10354e-06 9.10569e-06 9.1088e-06 9.11208e-06 9.11515e-06 9.11847e-06 9.12366e-06 9.1329e-06 9.14697e-06 9.16555e-06 9.18722e-06 9.20924e-06 9.22749e-06 9.24141e-06 9.25972e-06 9.29787e-06 9.36817e-06 9.47106e-06 9.59571e-06 9.72933e-06 9.86651e-06 1.00105e-05 1.01685e-05 1.03471e-05 1.05518e-05 1.07869e-05 1.10538e-05 1.1351e-05 1.1676e-05 1.20251e-05 1.23922e-05 1.27736e-05 1.31728e-05 1.35984e-05 1.40616e-05 1.45798e-05 1.51759e-05 1.58839e-05 1.68497e-05 1.937e-05 2.5189e-05 9.10145e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.10162e-06 9.10185e-06 9.10209e-06 9.1023e-06 9.10246e-06 9.10289e-06 9.10428e-06 9.10713e-06 9.11101e-06 9.1149e-06 9.11823e-06 9.12171e-06 9.12763e-06 9.13827e-06 9.15443e-06 9.17509e-06 9.19854e-06 9.22136e-06 9.23911e-06 9.25194e-06 9.26994e-06 9.31009e-06 9.38547e-06 9.4958e-06 9.62841e-06 9.76916e-06 9.91216e-06 1.00606e-05 1.02214e-05 1.04017e-05 1.06071e-05 1.08411e-05 1.11038e-05 1.13938e-05 1.17073e-05 1.20387e-05 1.23835e-05 1.27454e-05 1.31343e-05 1.35646e-05 1.40589e-05 1.46505e-05 1.53831e-05 1.64971e-05 1.93655e-05 2.8618e-05 4.30119e-05 9.10145e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10153e-06 9.1017e-06 9.102e-06 9.10235e-06 9.1026e-06 9.10278e-06 9.10335e-06 9.10522e-06 9.10889e-06 9.11362e-06 9.1181e-06 9.12159e-06 9.12515e-06 9.13172e-06 9.14385e-06 9.1619e-06 9.18458e-06 9.20958e-06 9.23286e-06 9.24978e-06 9.26119e-06 9.27853e-06 9.32041e-06 9.4007e-06 9.5182e-06 9.65848e-06 9.80599e-06 9.95402e-06 1.01055e-05 1.02675e-05 1.04475e-05 1.06508e-05 1.08797e-05 1.11345e-05 1.14126e-05 1.17083e-05 1.20172e-05 1.23412e-05 1.26904e-05 1.30802e-05 1.35377e-05 1.41028e-05 1.48334e-05 1.59908e-05 1.93089e-05 3.05996e-05 5.52159e-05 6.86852e-05 9.10146e-06 9.10148e-06 9.10152e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.1015e-06 9.10155e-06 9.1018e-06 9.10223e-06 9.10268e-06 9.10298e-06 9.10318e-06 9.10394e-06 9.10641e-06 9.11098e-06 9.11662e-06 9.12163e-06 9.12509e-06 9.12869e-06 9.13586e-06 9.14933e-06 9.16919e-06 9.19369e-06 9.21997e-06 9.24341e-06 9.25929e-06 9.26893e-06 9.28522e-06 9.32856e-06 9.41344e-06 9.53776e-06 9.68536e-06 9.83898e-06 9.99096e-06 1.01439e-05 1.03055e-05 1.04827e-05 1.06799e-05 1.09001e-05 1.11425e-05 1.14027e-05 1.16759e-05 1.19631e-05 1.22722e-05 1.26182e-05 1.30296e-05 1.35519e-05 1.42503e-05 1.54088e-05 1.89682e-05 3.28785e-05 6.4477e-05 9.24449e-05 8.53149e-05 9.10146e-06 9.10148e-06 9.10152e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10151e-06 9.1015e-06 9.1016e-06 9.10197e-06 9.10255e-06 9.10312e-06 9.10347e-06 9.10369e-06 9.10471e-06 9.10784e-06 9.11337e-06 9.11994e-06 9.12531e-06 9.1287e-06 9.13217e-06 9.13985e-06 9.15453e-06 9.17603e-06 9.20213e-06 9.22943e-06 9.25286e-06 9.26741e-06 9.27491e-06 9.28982e-06 9.33422e-06 9.42327e-06 9.55398e-06 9.70829e-06 9.86718e-06 1.0022e-05 1.0175e-05 1.03336e-05 1.05043e-05 1.06921e-05 1.08993e-05 1.11237e-05 1.13615e-05 1.16125e-05 1.1884e-05 1.2188e-05 1.25513e-05 1.30201e-05 1.36622e-05 1.47674e-05 1.84723e-05 3.47313e-05 7.59886e-05 0.000109983 0.000114122 8.6919e-05 9.10146e-06 9.10149e-06 9.10152e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.10152e-06 9.10152e-06 9.1017e-06 9.10222e-06 9.10296e-06 9.10369e-06 9.10409e-06 9.10434e-06 9.10566e-06 9.10949e-06 9.11601e-06 9.12343e-06 9.12912e-06 9.13223e-06 9.1355e-06 9.14354e-06 9.15927e-06 9.18219e-06 9.20966e-06 9.23778e-06 9.261e-06 9.27394e-06 9.27897e-06 9.29211e-06 9.33709e-06 9.42977e-06 9.56623e-06 9.72651e-06 9.88977e-06 1.00461e-05 1.01972e-05 1.03495e-05 1.05103e-05 1.06845e-05 1.08739e-05 1.10772e-05 1.12941e-05 1.15305e-05 1.17962e-05 1.21129e-05 1.25254e-05 1.30985e-05 1.40981e-05 1.7811e-05 3.64144e-05 8.80302e-05 0.000131085 0.000134056 0.000115456 7.76216e-05 9.10147e-06 9.10149e-06 9.10152e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10151e-06 9.10154e-06 9.10158e-06 9.10187e-06 9.10254e-06 9.1035e-06 9.10439e-06 9.10483e-06 9.10515e-06 9.10677e-06 9.11131e-06 9.11883e-06 9.12703e-06 9.13287e-06 9.13561e-06 9.13856e-06 9.14683e-06 9.16339e-06 9.1875e-06 9.21606e-06 9.24482e-06 9.26763e-06 9.2787e-06 9.28096e-06 9.29187e-06 9.33684e-06 9.43248e-06 9.57399e-06 9.73933e-06 9.90597e-06 1.00622e-05 1.02082e-05 1.0351e-05 1.04989e-05 1.06565e-05 1.08263e-05 1.10097e-05 1.12115e-05 1.1439e-05 1.17116e-05 1.20673e-05 1.25716e-05 1.34431e-05 1.70213e-05 3.77349e-05 0.000101162 0.000153179 0.000157609 0.00013463 0.000103424 6.59288e-05 9.10148e-06 9.10149e-06 9.10153e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10155e-06 9.1016e-06 9.1017e-06 9.1021e-06 9.10295e-06 9.10416e-06 9.10523e-06 9.10573e-06 9.10611e-06 9.10802e-06 9.11327e-06 9.12172e-06 9.13062e-06 9.13649e-06 9.13877e-06 9.14128e-06 9.14961e-06 9.16678e-06 9.19175e-06 9.22116e-06 9.25036e-06 9.27254e-06 9.28151e-06 9.28073e-06 9.28885e-06 9.33319e-06 9.43123e-06 9.57659e-06 9.74602e-06 9.91463e-06 1.00683e-05 1.02071e-05 1.03389e-05 1.04708e-05 1.06081e-05 1.07564e-05 1.09231e-05 1.11146e-05 1.1346e-05 1.16497e-05 1.20808e-05 1.28345e-05 1.61505e-05 3.85175e-05 0.000114836 0.000176666 0.00018208 0.000157349 0.000120674 8.85717e-05 6.36189e-05 9.10148e-06 9.1015e-06 9.10153e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10152e-06 9.10161e-06 9.1017e-06 9.10187e-06 9.1024e-06 9.10349e-06 9.10496e-06 9.10622e-06 9.10679e-06 9.10721e-06 9.10941e-06 9.1153e-06 9.1246e-06 9.13407e-06 9.13988e-06 9.14159e-06 9.14358e-06 9.15181e-06 9.16929e-06 9.19481e-06 9.22476e-06 9.25419e-06 9.27549e-06 9.28234e-06 9.2781e-06 9.28298e-06 9.32641e-06 9.42535e-06 9.57338e-06 9.74554e-06 9.91458e-06 1.0065e-05 1.01947e-05 1.03106e-05 1.04223e-05 1.0539e-05 1.06754e-05 1.0837e-05 1.10366e-05 1.12977e-05 1.16628e-05 1.22822e-05 1.52505e-05 3.87571e-05 0.000128424 0.000200949 0.000207819 0.000180985 0.000141309 0.000103921 8.59963e-05 7.44864e-05 9.10149e-06 9.1015e-06 9.10153e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10152e-06 9.10158e-06 9.10172e-06 9.10186e-06 9.10211e-06 9.1028e-06 9.10414e-06 9.10591e-06 9.10739e-06 9.10801e-06 9.10845e-06 9.11088e-06 9.11734e-06 9.12737e-06 9.13727e-06 9.1429e-06 9.144e-06 9.14541e-06 9.15336e-06 9.17091e-06 9.19655e-06 9.22679e-06 9.25605e-06 9.27654e-06 9.2811e-06 9.2731e-06 9.27472e-06 9.31586e-06 9.41433e-06 9.56372e-06 9.73821e-06 9.90695e-06 1.00513e-05 1.01695e-05 1.02703e-05 1.03686e-05 1.04836e-05 1.0624e-05 1.08026e-05 1.10366e-05 1.13513e-05 1.18397e-05 1.43465e-05 3.84985e-05 0.000141641 0.000225594 0.000234475 0.000205911 0.000162822 0.0001225 0.000101307 9.98726e-05 8.62613e-05 9.1015e-06 9.10151e-06 9.10154e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10152e-06 9.10158e-06 9.10169e-06 9.10188e-06 9.1021e-06 9.10245e-06 9.10333e-06 9.10494e-06 9.10703e-06 9.10872e-06 9.10938e-06 9.10982e-06 9.1124e-06 9.1193e-06 9.12989e-06 9.14009e-06 9.14543e-06 9.14593e-06 9.14675e-06 9.15434e-06 9.17151e-06 9.19703e-06 9.22714e-06 9.25606e-06 9.27579e-06 9.27779e-06 9.26611e-06 9.26369e-06 9.30129e-06 9.39846e-06 9.54879e-06 9.72482e-06 9.89393e-06 1.00362e-05 1.01487e-05 1.0247e-05 1.03495e-05 1.04713e-05 1.06306e-05 1.08439e-05 1.11281e-05 1.1533e-05 1.35132e-05 3.76218e-05 0.000154209 0.000250359 0.000261882 0.000231851 0.000185643 0.000141948 0.000119775 0.000116922 0.000114538 8.97232e-05 9.10151e-06 9.10151e-06 9.10154e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.1015e-06 9.10152e-06 9.10158e-06 9.10168e-06 9.10185e-06 9.10212e-06 9.10244e-06 9.10292e-06 9.10397e-06 9.10589e-06 9.1083e-06 9.11019e-06 9.11089e-06 9.11128e-06 9.11392e-06 9.12111e-06 9.13214e-06 9.1424e-06 9.14741e-06 9.14737e-06 9.14767e-06 9.15467e-06 9.17132e-06 9.19651e-06 9.2258e-06 9.25449e-06 9.27309e-06 9.2724e-06 9.25701e-06 9.25013e-06 9.2841e-06 9.37984e-06 9.53318e-06 9.71527e-06 9.8907e-06 1.00344e-05 1.01506e-05 1.0256e-05 1.03696e-05 1.05139e-05 1.071e-05 1.09731e-05 1.13207e-05 1.28072e-05 3.63371e-05 0.000165619 0.000274941 0.000289868 0.000258755 0.000209462 0.000162744 0.000139192 0.000137297 0.00013343 0.000118933 7.992e-05 9.10153e-06 9.10152e-06 9.10155e-06 9.10152e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.10151e-06 9.10157e-06 9.10168e-06 9.10185e-06 9.10208e-06 9.10247e-06 9.10291e-06 9.1035e-06 9.10476e-06 9.10698e-06 9.10971e-06 9.1118e-06 9.1125e-06 9.1128e-06 9.11541e-06 9.12283e-06 9.13404e-06 9.14415e-06 9.14881e-06 9.14834e-06 9.14814e-06 9.15455e-06 9.17088e-06 9.1947e-06 9.22314e-06 9.25106e-06 9.26795e-06 9.26528e-06 9.24695e-06 9.23699e-06 9.26944e-06 9.367e-06 9.52548e-06 9.71643e-06 9.89974e-06 1.00537e-05 1.01826e-05 1.03025e-05 1.04392e-05 1.06187e-05 1.08641e-05 1.11818e-05 1.22941e-05 3.44807e-05 0.000175636 0.000299157 0.000318254 0.000286509 0.000234288 0.000184547 0.000159974 0.00015854 0.000155885 0.000138804 0.000106112 5.71115e-05 9.10154e-06 9.10153e-06 9.10156e-06 9.10153e-06 9.10152e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.1015e-06 9.10151e-06 9.10157e-06 9.10167e-06 9.10185e-06 9.10209e-06 9.10243e-06 9.10295e-06 9.10351e-06 9.10423e-06 9.1057e-06 9.10821e-06 9.11124e-06 9.1135e-06 9.11419e-06 9.11436e-06 9.11694e-06 9.12449e-06 9.13549e-06 9.14525e-06 9.14956e-06 9.14881e-06 9.14824e-06 9.15458e-06 9.16976e-06 9.19192e-06 9.21879e-06 9.24521e-06 9.26167e-06 9.25903e-06 9.24121e-06 9.23091e-06 9.26245e-06 9.36232e-06 9.52959e-06 9.73165e-06 9.92796e-06 1.00999e-05 1.02487e-05 1.03942e-05 1.05646e-05 1.07918e-05 1.10845e-05 1.19551e-05 3.23278e-05 0.000183652 0.000322615 0.000346911 0.000314989 0.000260063 0.000207391 0.000181873 0.000181227 0.000179124 0.000162357 0.000124795 7.39613e-05 3.39501e-05 9.10156e-06 9.10154e-06 9.10157e-06 9.10153e-06 9.10153e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10157e-06 9.10167e-06 9.10184e-06 9.10209e-06 9.10244e-06 9.1029e-06 9.10356e-06 9.10426e-06 9.10512e-06 9.10679e-06 9.10957e-06 9.11287e-06 9.11525e-06 9.11591e-06 9.11599e-06 9.11863e-06 9.12591e-06 9.13641e-06 9.14562e-06 9.14965e-06 9.14871e-06 9.14826e-06 9.15438e-06 9.16797e-06 9.18785e-06 9.21318e-06 9.23965e-06 9.25871e-06 9.25919e-06 9.24369e-06 9.2344e-06 9.26802e-06 9.37421e-06 9.55079e-06 9.76476e-06 9.98121e-06 1.01773e-05 1.03541e-05 1.05331e-05 1.07496e-05 1.10198e-05 1.17048e-05 2.99472e-05 0.000189767 0.000344996 0.000375508 0.000344087 0.000286692 0.000231228 0.000204915 0.000205125 0.000203957 0.000186588 0.000147125 8.66168e-05 3.99888e-05 2.20084e-05 9.10158e-06 9.10155e-06 9.10158e-06 9.10154e-06 9.10154e-06 9.10153e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10156e-06 9.10166e-06 9.10183e-06 9.10208e-06 9.10243e-06 9.10292e-06 9.10351e-06 9.10435e-06 9.10518e-06 9.10618e-06 9.10802e-06 9.11105e-06 9.11455e-06 9.11701e-06 9.11762e-06 9.11773e-06 9.12027e-06 9.12709e-06 9.13673e-06 9.14538e-06 9.14901e-06 9.14799e-06 9.14812e-06 9.15366e-06 9.16575e-06 9.18505e-06 9.21033e-06 9.23917e-06 9.262e-06 9.26882e-06 9.26028e-06 9.25612e-06 9.29366e-06 9.40394e-06 9.58719e-06 9.81904e-06 1.00604e-05 1.02871e-05 1.05009e-05 1.07263e-05 1.09821e-05 1.15139e-05 2.75259e-05 0.000193639 0.000366268 0.000403901 0.000373572 0.000314123 0.000256002 0.000228998 0.000230192 0.000230021 0.000212525 0.000170005 0.000102185 4.3993e-05 2.33372e-05 1.80754e-05 9.1016e-06 9.10156e-06 9.10159e-06 9.10155e-06 9.10155e-06 9.10154e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10152e-06 9.10151e-06 9.10151e-06 9.10156e-06 9.10165e-06 9.10182e-06 9.10207e-06 9.10242e-06 9.10291e-06 9.10355e-06 9.1043e-06 9.10531e-06 9.10628e-06 9.10741e-06 9.10939e-06 9.1126e-06 9.11622e-06 9.11869e-06 9.11928e-06 9.11949e-06 9.12194e-06 9.128e-06 9.13679e-06 9.1445e-06 9.1474e-06 9.14684e-06 9.14751e-06 9.15404e-06 9.16782e-06 9.18687e-06 9.21325e-06 9.24548e-06 9.27673e-06 9.29528e-06 9.29544e-06 9.29519e-06 9.33428e-06 9.44746e-06 9.64408e-06 9.89527e-06 1.01658e-05 1.04325e-05 1.06951e-05 1.09609e-05 1.13819e-05 2.51625e-05 0.000195114 0.000386064 0.000431966 0.000403335 0.000342202 0.00028168 0.00025405 0.00025627 0.000257113 0.000239467 0.000194646 0.000118085 4.87845e-05 2.36722e-05 1.82874e-05 1.7029e-05 9.10163e-06 9.10158e-06 9.10161e-06 9.10157e-06 9.10156e-06 9.10155e-06 9.10154e-06 9.10154e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10152e-06 9.10151e-06 9.10155e-06 9.10165e-06 9.10181e-06 9.10206e-06 9.10241e-06 9.1029e-06 9.10353e-06 9.10434e-06 9.10528e-06 9.10645e-06 9.10757e-06 9.10879e-06 9.11089e-06 9.11419e-06 9.11785e-06 9.12021e-06 9.12087e-06 9.12133e-06 9.12368e-06 9.12908e-06 9.13662e-06 9.14281e-06 9.14519e-06 9.14558e-06 9.14991e-06 9.15996e-06 9.17483e-06 9.19524e-06 9.22381e-06 9.26283e-06 9.30481e-06 9.3337e-06 9.34143e-06 9.346e-06 9.39102e-06 9.51475e-06 9.72169e-06 9.99604e-06 1.03044e-05 1.06214e-05 1.09295e-05 1.13064e-05 2.30703e-05 0.000194406 0.000404244 0.000459415 0.000433265 0.000370845 0.000308168 0.000280068 0.000283285 0.000285098 0.000267063 0.000219818 0.000135582 5.30601e-05 2.39753e-05 1.79664e-05 1.69768e-05 1.67417e-05 9.10166e-06 9.1016e-06 9.10162e-06 9.10158e-06 9.10157e-06 9.10156e-06 9.10155e-06 9.10154e-06 9.10154e-06 9.10154e-06 9.10154e-06 9.10154e-06 9.10154e-06 9.10153e-06 9.10152e-06 9.10152e-06 9.10155e-06 9.10164e-06 9.1018e-06 9.10205e-06 9.10239e-06 9.10288e-06 9.10352e-06 9.10432e-06 9.10532e-06 9.10644e-06 9.10779e-06 9.10902e-06 9.11034e-06 9.11248e-06 9.11583e-06 9.11936e-06 9.12159e-06 9.12244e-06 9.12339e-06 9.12578e-06 9.13036e-06 9.13615e-06 9.14088e-06 9.14385e-06 9.14837e-06 9.15664e-06 9.17043e-06 9.18853e-06 9.2104e-06 9.2417e-06 9.28585e-06 9.33668e-06 9.37745e-06 9.39715e-06 9.41774e-06 9.47476e-06 9.60232e-06 9.82507e-06 1.01273e-05 1.04819e-05 1.08512e-05 1.12412e-05 2.11906e-05 0.000191691 0.000421015 0.000486174 0.000463173 0.000399995 0.000335397 0.000306937 0.000311238 0.000313854 0.000295275 0.000245072 0.000153105 5.74824e-05 2.38654e-05 1.76015e-05 1.65805e-05 1.65838e-05 1.66415e-05 9.10169e-06 9.10163e-06 9.10164e-06 9.1016e-06 9.10159e-06 9.10157e-06 9.10156e-06 9.10155e-06 9.10155e-06 9.10155e-06 9.10155e-06 9.10155e-06 9.10154e-06 9.10154e-06 9.10153e-06 9.10152e-06 9.10155e-06 9.10164e-06 9.10179e-06 9.10204e-06 9.10238e-06 9.10286e-06 9.1035e-06 9.10431e-06 9.1053e-06 9.1065e-06 9.10781e-06 9.10931e-06 9.11064e-06 9.1121e-06 9.11422e-06 9.11749e-06 9.12076e-06 9.1228e-06 9.1241e-06 9.12568e-06 9.12821e-06 9.13178e-06 9.13636e-06 9.14101e-06 9.14617e-06 9.15363e-06 9.16718e-06 9.18652e-06 9.2067e-06 9.22819e-06 9.25917e-06 9.30843e-06 9.37148e-06 9.42929e-06 9.47491e-06 9.5133e-06 9.57584e-06 9.71641e-06 9.95468e-06 1.02927e-05 1.07009e-05 1.11386e-05 1.9518e-05 0.000187146 0.000436185 0.000512349 0.000492962 0.00042958 0.000363372 0.000334625 0.00034003 0.000343464 0.000323908 0.000270411 0.000170092 6.12273e-05 2.35489e-05 1.70532e-05 1.6164e-05 1.61799e-05 1.64225e-05 1.65872e-05 9.10174e-06 9.10165e-06 9.10167e-06 9.10162e-06 9.1016e-06 9.10159e-06 9.10157e-06 9.10157e-06 9.10156e-06 9.10156e-06 9.10156e-06 9.10156e-06 9.10155e-06 9.10155e-06 9.10154e-06 9.10153e-06 9.10155e-06 9.10163e-06 9.10178e-06 9.10202e-06 9.10236e-06 9.10284e-06 9.10348e-06 9.10428e-06 9.10529e-06 9.10648e-06 9.10787e-06 9.10937e-06 9.11099e-06 9.11253e-06 9.11404e-06 9.1161e-06 9.1192e-06 9.12199e-06 9.12391e-06 9.12573e-06 9.1281e-06 9.131e-06 9.13489e-06 9.13904e-06 9.1434e-06 9.14983e-06 9.16159e-06 9.18154e-06 9.20477e-06 9.22469e-06 9.24447e-06 9.27659e-06 9.33314e-06 9.41202e-06 9.49731e-06 9.56717e-06 9.62088e-06 9.70145e-06 9.8517e-06 1.01124e-05 1.04951e-05 1.09672e-05 1.80419e-05 0.000181043 0.000450037 0.000537934 0.000522757 0.00045948 0.000392083 0.000363138 0.000369509 0.000373743 0.000353187 0.000295702 0.000186457 6.40145e-05 2.28863e-05 1.6418e-05 1.56352e-05 1.5763e-05 1.60202e-05 1.6331e-05 1.65327e-05 9.10179e-06 9.10169e-06 9.1017e-06 9.10164e-06 9.10162e-06 9.1016e-06 9.10159e-06 9.10158e-06 9.10158e-06 9.10157e-06 9.10157e-06 9.10157e-06 9.10156e-06 9.10156e-06 9.10155e-06 9.10153e-06 9.10154e-06 9.10163e-06 9.10177e-06 9.10201e-06 9.10235e-06 9.10283e-06 9.10346e-06 9.10427e-06 9.10526e-06 9.10646e-06 9.10785e-06 9.10944e-06 9.1111e-06 9.11286e-06 9.11462e-06 9.11616e-06 9.11826e-06 9.12084e-06 9.12304e-06 9.12486e-06 9.12724e-06 9.13102e-06 9.13583e-06 9.14001e-06 9.14285e-06 9.14705e-06 9.15497e-06 9.17159e-06 9.19681e-06 9.22247e-06 9.24346e-06 9.26263e-06 9.2956e-06 9.36118e-06 9.4589e-06 9.56993e-06 9.6666e-06 9.74905e-06 9.84621e-06 1.00106e-05 1.02977e-05 1.07423e-05 1.67794e-05 0.000174536 0.000462869 0.000563155 0.00055262 0.000489898 0.000421461 0.000392424 0.000399635 0.000404339 0.000382665 0.00032111 0.000202272 6.58869e-05 2.19463e-05 1.56896e-05 1.506e-05 1.52604e-05 1.56082e-05 1.59351e-05 1.62548e-05 1.64566e-05 9.10185e-06 9.10173e-06 9.10173e-06 9.10167e-06 9.10165e-06 9.10162e-06 9.10161e-06 9.1016e-06 9.10159e-06 9.10159e-06 9.10158e-06 9.10158e-06 9.10157e-06 9.10157e-06 9.10156e-06 9.10154e-06 9.10154e-06 9.10162e-06 9.10176e-06 9.102e-06 9.10233e-06 9.10281e-06 9.10344e-06 9.10424e-06 9.10523e-06 9.10643e-06 9.10783e-06 9.10942e-06 9.11117e-06 9.11298e-06 9.1149e-06 9.11684e-06 9.1186e-06 9.12048e-06 9.12244e-06 9.12401e-06 9.12565e-06 9.12925e-06 9.13542e-06 9.14196e-06 9.14576e-06 9.148e-06 9.15118e-06 9.16075e-06 9.18203e-06 9.21225e-06 9.24301e-06 9.26518e-06 9.28214e-06 9.31624e-06 9.38785e-06 9.50476e-06 9.64695e-06 9.78127e-06 9.89702e-06 1.00121e-05 1.01868e-05 1.05313e-05 1.56972e-05 0.000168476 0.000476212 0.000588572 0.000582736 0.000520891 0.000451709 0.000422488 0.000430329 0.000435203 0.000411832 0.000345904 0.000217103 6.70509e-05 2.08153e-05 1.4918e-05 1.44447e-05 1.4725e-05 1.51254e-05 1.55325e-05 1.58689e-05 1.61673e-05 1.63486e-05 9.10192e-06 9.10177e-06 9.10177e-06 9.1017e-06 9.10168e-06 9.10165e-06 9.10163e-06 9.10162e-06 9.10161e-06 9.1016e-06 9.1016e-06 9.10159e-06 9.10159e-06 9.10158e-06 9.10157e-06 9.10155e-06 9.10155e-06 9.10161e-06 9.10175e-06 9.10198e-06 9.10232e-06 9.10279e-06 9.10341e-06 9.10421e-06 9.1052e-06 9.1064e-06 9.10779e-06 9.10939e-06 9.11116e-06 9.11306e-06 9.11498e-06 9.117e-06 9.11917e-06 9.12117e-06 9.12285e-06 9.12418e-06 9.12497e-06 9.1269e-06 9.13196e-06 9.14057e-06 9.14854e-06 9.15243e-06 9.15308e-06 9.15509e-06 9.16663e-06 9.19312e-06 9.23047e-06 9.26633e-06 9.2884e-06 9.30238e-06 9.33329e-06 9.41218e-06 9.5533e-06 9.73246e-06 9.91497e-06 1.00647e-05 1.01904e-05 1.04102e-05 1.48002e-05 0.000163235 0.000491067 0.000615479 0.000613721 0.000552686 0.0004829 0.000453447 0.000461608 0.000466284 0.000440722 0.000369467 0.00023036 6.70755e-05 1.96173e-05 1.41414e-05 1.38191e-05 1.41637e-05 1.46168e-05 1.50687e-05 1.54781e-05 1.57932e-05 1.60539e-05 1.62007e-05 9.102e-06 9.10182e-06 9.10181e-06 9.10174e-06 9.10171e-06 9.10168e-06 9.10166e-06 9.10164e-06 9.10163e-06 9.10162e-06 9.10162e-06 9.10161e-06 9.1016e-06 9.1016e-06 9.10158e-06 9.10156e-06 9.10155e-06 9.1016e-06 9.10174e-06 9.10197e-06 9.1023e-06 9.10277e-06 9.10339e-06 9.10418e-06 9.10517e-06 9.10636e-06 9.10776e-06 9.10934e-06 9.11113e-06 9.11304e-06 9.11507e-06 9.11705e-06 9.11915e-06 9.12158e-06 9.12387e-06 9.12542e-06 9.12601e-06 9.1263e-06 9.12815e-06 9.13506e-06 9.14604e-06 9.15537e-06 9.15896e-06 9.15771e-06 9.15872e-06 9.17321e-06 9.20556e-06 9.25062e-06 9.29124e-06 9.31199e-06 9.32108e-06 9.34873e-06 9.43721e-06 9.60317e-06 9.83121e-06 1.0066e-05 1.02466e-05 1.04117e-05 1.41704e-05 0.000159819 0.000508457 0.000645047 0.000646637 0.000585824 0.000515292 0.000485389 0.000493451 0.000497436 0.000469304 0.000392037 0.000241126 6.62423e-05 1.83278e-05 1.34059e-05 1.32182e-05 1.35974e-05 1.40885e-05 1.45826e-05 1.50327e-05 1.54155e-05 1.56929e-05 1.59041e-05 1.60111e-05 9.1021e-06 9.10188e-06 9.10187e-06 9.10179e-06 9.10175e-06 9.10171e-06 9.10169e-06 9.10167e-06 9.10166e-06 9.10165e-06 9.10164e-06 9.10163e-06 9.10162e-06 9.10161e-06 9.1016e-06 9.10158e-06 9.10156e-06 9.1016e-06 9.10173e-06 9.10195e-06 9.10228e-06 9.10274e-06 9.10336e-06 9.10415e-06 9.10514e-06 9.10632e-06 9.10771e-06 9.1093e-06 9.11106e-06 9.113e-06 9.11505e-06 9.11716e-06 9.11916e-06 9.12134e-06 9.12401e-06 9.12663e-06 9.12802e-06 9.12807e-06 9.12737e-06 9.12973e-06 9.13838e-06 9.15141e-06 9.16216e-06 9.16521e-06 9.1619e-06 9.16289e-06 9.17983e-06 9.21886e-06 9.27205e-06 9.3166e-06 9.33704e-06 9.33951e-06 9.36301e-06 9.45853e-06 9.6572e-06 9.94285e-06 1.02356e-05 1.04683e-05 1.3814e-05 0.000159518 0.000530666 0.000678716 0.000682646 0.000621203 0.000549312 0.000518567 0.000526045 0.000528694 0.000497161 0.000413488 0.000249936 6.38168e-05 1.70691e-05 1.27346e-05 1.26643e-05 1.30508e-05 1.35577e-05 1.40804e-05 1.45672e-05 1.49882e-05 1.53287e-05 1.55568e-05 1.57145e-05 1.57834e-05 9.10221e-06 9.10195e-06 9.10193e-06 9.10184e-06 9.10179e-06 9.10175e-06 9.10173e-06 9.1017e-06 9.10169e-06 9.10167e-06 9.10166e-06 9.10165e-06 9.10164e-06 9.10163e-06 9.10162e-06 9.10159e-06 9.10158e-06 9.1016e-06 9.10171e-06 9.10193e-06 9.10226e-06 9.10271e-06 9.10333e-06 9.10412e-06 9.1051e-06 9.10628e-06 9.10766e-06 9.10925e-06 9.11101e-06 9.11293e-06 9.11499e-06 9.11714e-06 9.11928e-06 9.12129e-06 9.1235e-06 9.12648e-06 9.12941e-06 9.13073e-06 9.12998e-06 9.12877e-06 9.13141e-06 9.14157e-06 9.15672e-06 9.16883e-06 9.17112e-06 9.1663e-06 9.16666e-06 9.18645e-06 9.23285e-06 9.29412e-06 9.34475e-06 9.36326e-06 9.35633e-06 9.37247e-06 9.47651e-06 9.71818e-06 1.00742e-05 1.04489e-05 1.3635e-05 0.000163115 0.000559056 0.000718502 0.000723299 0.000659874 0.000585725 0.000553342 0.000559587 0.00056027 0.000524674 0.000433185 0.00025642 6.05376e-05 1.58017e-05 1.21726e-05 1.2149e-05 1.25429e-05 1.30405e-05 1.35767e-05 1.40877e-05 1.45424e-05 1.49194e-05 1.52068e-05 1.53812e-05 1.54882e-05 1.5524e-05 9.10234e-06 9.10203e-06 9.102e-06 9.1019e-06 9.10185e-06 9.1018e-06 9.10177e-06 9.10174e-06 9.10172e-06 9.1017e-06 9.10169e-06 9.10168e-06 9.10167e-06 9.10166e-06 9.10164e-06 9.10161e-06 9.10159e-06 9.1016e-06 9.1017e-06 9.10191e-06 9.10223e-06 9.10268e-06 9.1033e-06 9.10408e-06 9.10506e-06 9.10624e-06 9.10761e-06 9.10919e-06 9.11095e-06 9.11287e-06 9.1149e-06 9.11706e-06 9.11926e-06 9.1214e-06 9.12338e-06 9.1256e-06 9.12891e-06 9.13218e-06 9.13342e-06 9.13204e-06 9.13012e-06 9.13307e-06 9.14464e-06 9.16192e-06 9.17535e-06 9.17689e-06 9.1705e-06 9.17002e-06 9.19313e-06 9.24739e-06 9.31833e-06 9.37509e-06 9.38907e-06 9.37041e-06 9.37589e-06 9.49545e-06 9.79354e-06 1.02524e-05 1.34167e-05 0.000170197 0.000595123 0.000766093 0.000770383 0.000703273 0.000625458 0.000590416 0.000594427 0.000592356 0.00055186 0.000452011 0.000260168 5.64314e-05 1.47111e-05 1.17506e-05 1.17086e-05 1.2075e-05 1.25539e-05 1.30857e-05 1.36072e-05 1.40841e-05 1.44931e-05 1.48157e-05 1.50454e-05 1.51691e-05 1.52315e-05 1.52383e-05 9.10248e-06 9.10213e-06 9.10208e-06 9.10197e-06 9.10191e-06 9.10185e-06 9.10182e-06 9.10178e-06 9.10176e-06 9.10174e-06 9.10173e-06 9.10171e-06 9.1017e-06 9.10168e-06 9.10166e-06 9.10164e-06 9.10161e-06 9.10161e-06 9.10169e-06 9.10189e-06 9.10221e-06 9.10265e-06 9.10326e-06 9.10405e-06 9.10502e-06 9.10619e-06 9.10756e-06 9.10913e-06 9.11088e-06 9.1128e-06 9.11484e-06 9.11696e-06 9.11918e-06 9.12138e-06 9.1235e-06 9.12541e-06 9.12762e-06 9.13123e-06 9.13492e-06 9.13604e-06 9.13402e-06 9.13158e-06 9.13463e-06 9.14753e-06 9.16707e-06 9.18148e-06 9.18264e-06 9.1743e-06 9.17296e-06 9.20003e-06 9.26263e-06 9.34467e-06 9.40662e-06 9.41502e-06 9.3802e-06 9.37612e-06 9.51901e-06 9.9093e-06 1.29231e-05 0.000178238 0.000638725 0.000823282 0.000825735 0.000753024 0.000669796 0.000630691 0.000631334 0.000625273 0.000579023 0.00046957 0.000261967 5.17758e-05 1.38273e-05 1.14596e-05 1.13758e-05 1.1652e-05 1.21088e-05 1.2618e-05 1.31384e-05 1.36248e-05 1.40552e-05 1.4409e-05 1.46725e-05 1.48475e-05 1.4927e-05 1.49494e-05 1.49318e-05 9.10265e-06 9.10223e-06 9.10217e-06 9.10205e-06 9.10198e-06 9.10192e-06 9.10187e-06 9.10184e-06 9.10181e-06 9.10179e-06 9.10177e-06 9.10175e-06 9.10173e-06 9.10171e-06 9.10169e-06 9.10167e-06 9.10163e-06 9.10162e-06 9.10169e-06 9.10187e-06 9.10218e-06 9.10262e-06 9.10323e-06 9.104e-06 9.10497e-06 9.10613e-06 9.1075e-06 9.10907e-06 9.11081e-06 9.11271e-06 9.11475e-06 9.11687e-06 9.11905e-06 9.12128e-06 9.12347e-06 9.12554e-06 9.12736e-06 9.12954e-06 9.13345e-06 9.13751e-06 9.13859e-06 9.13615e-06 9.13306e-06 9.13601e-06 9.15048e-06 9.17183e-06 9.1875e-06 9.18815e-06 9.17746e-06 9.17598e-06 9.20664e-06 9.27903e-06 9.37286e-06 9.43986e-06 9.44022e-06 9.38621e-06 9.37155e-06 9.56749e-06 1.20882e-05 0.00018228 0.000687254 0.000890884 0.000891189 0.000810899 0.000720287 0.000675498 0.000671369 0.000660012 0.000606378 0.000486303 0.000261719 4.67222e-05 1.31501e-05 1.12636e-05 1.11423e-05 1.12985e-05 1.17035e-05 1.21833e-05 1.26905e-05 1.3176e-05 1.36162e-05 1.39917e-05 1.42855e-05 1.44927e-05 1.46193e-05 1.46594e-05 1.46475e-05 1.46099e-05 9.10284e-06 9.10235e-06 9.10227e-06 9.10214e-06 9.10206e-06 9.10199e-06 9.10194e-06 9.1019e-06 9.10186e-06 9.10184e-06 9.10181e-06 9.10179e-06 9.10177e-06 9.10175e-06 9.10173e-06 9.1017e-06 9.10166e-06 9.10164e-06 9.10169e-06 9.10185e-06 9.10216e-06 9.10258e-06 9.10318e-06 9.10396e-06 9.10491e-06 9.10607e-06 9.10744e-06 9.109e-06 9.11074e-06 9.11263e-06 9.11466e-06 9.11677e-06 9.11894e-06 9.12114e-06 9.12334e-06 9.1255e-06 9.12747e-06 9.12919e-06 9.13132e-06 9.13553e-06 9.13999e-06 9.14121e-06 9.13838e-06 9.13444e-06 9.13755e-06 9.15316e-06 9.17628e-06 9.19334e-06 9.19303e-06 9.18085e-06 9.1785e-06 9.21326e-06 9.29665e-06 9.40256e-06 9.47498e-06 9.46465e-06 9.3824e-06 9.37543e-06 1.11077e-05 0.000175987 0.000734898 0.00096815 0.000967972 0.000878588 0.000778586 0.00072646 0.000716055 0.000697918 0.000635357 0.00050229 0.00025958 4.21009e-05 1.26315e-05 1.1127e-05 1.09807e-05 1.10374e-05 1.13376e-05 1.17884e-05 1.22693e-05 1.27458e-05 1.31866e-05 1.3573e-05 1.38888e-05 1.41254e-05 1.42826e-05 1.4366e-05 1.43722e-05 1.4331e-05 1.42762e-05 9.10305e-06 9.10249e-06 9.10239e-06 9.10224e-06 9.10215e-06 9.10207e-06 9.10201e-06 9.10196e-06 9.10193e-06 9.10189e-06 9.10187e-06 9.10184e-06 9.10182e-06 9.1018e-06 9.10177e-06 9.10174e-06 9.10169e-06 9.10167e-06 9.10169e-06 9.10183e-06 9.10213e-06 9.10255e-06 9.10314e-06 9.1039e-06 9.10486e-06 9.10601e-06 9.10736e-06 9.10892e-06 9.11066e-06 9.11254e-06 9.11456e-06 9.11667e-06 9.11881e-06 9.12101e-06 9.12318e-06 9.12534e-06 9.12742e-06 9.12931e-06 9.13087e-06 9.13296e-06 9.13747e-06 9.14235e-06 9.14384e-06 9.1406e-06 9.13595e-06 9.13896e-06 9.15556e-06 9.18048e-06 9.19865e-06 9.19827e-06 9.18397e-06 9.18039e-06 9.21989e-06 9.31465e-06 9.43457e-06 9.51356e-06 9.47971e-06 9.3773e-06 1.0295e-05 0.000154093 0.000771698 0.00105236 0.0010562 0.000957376 0.000846219 0.000785191 0.000767213 0.000740628 0.000667525 0.000519567 0.000255913 3.76829e-05 1.22559e-05 1.10369e-05 1.08691e-05 1.08464e-05 1.10303e-05 1.14299e-05 1.18789e-05 1.23393e-05 1.27735e-05 1.31626e-05 1.34909e-05 1.37495e-05 1.39349e-05 1.40472e-05 1.40929e-05 1.40705e-05 1.40038e-05 1.39341e-05 9.1033e-06 9.10264e-06 9.10252e-06 9.10236e-06 9.10225e-06 9.10216e-06 9.1021e-06 9.10204e-06 9.102e-06 9.10196e-06 9.10193e-06 9.1019e-06 9.10188e-06 9.10185e-06 9.10181e-06 9.10178e-06 9.10173e-06 9.1017e-06 9.1017e-06 9.10182e-06 9.10209e-06 9.10251e-06 9.10309e-06 9.10385e-06 9.10479e-06 9.10594e-06 9.10729e-06 9.10883e-06 9.11056e-06 9.11245e-06 9.11445e-06 9.11655e-06 9.11869e-06 9.12086e-06 9.12303e-06 9.12514e-06 9.12722e-06 9.12924e-06 9.13101e-06 9.13242e-06 9.13444e-06 9.13919e-06 9.14456e-06 9.14645e-06 9.14276e-06 9.1374e-06 9.14037e-06 9.15768e-06 9.18426e-06 9.20409e-06 9.20343e-06 9.18637e-06 9.18125e-06 9.22581e-06 9.33384e-06 9.4725e-06 9.54596e-06 9.49187e-06 9.85764e-06 0.000115948 0.000781651 0.00113788 0.00115454 0.00104774 0.000924381 0.000853138 0.000826469 0.00079016 0.000704327 0.000539513 0.000252644 3.37329e-05 1.19621e-05 1.09797e-05 1.07948e-05 1.07145e-05 1.07991e-05 1.11061e-05 1.1524e-05 1.19596e-05 1.23817e-05 1.27671e-05 1.31004e-05 1.33727e-05 1.35799e-05 1.37192e-05 1.3792e-05 1.38057e-05 1.37582e-05 1.36692e-05 1.35879e-05 9.10357e-06 9.10281e-06 9.10267e-06 9.10249e-06 9.10237e-06 9.10227e-06 9.10219e-06 9.10213e-06 9.10208e-06 9.10204e-06 9.102e-06 9.10197e-06 9.10194e-06 9.10191e-06 9.10187e-06 9.10183e-06 9.10178e-06 9.10174e-06 9.10173e-06 9.10182e-06 9.10206e-06 9.10247e-06 9.10303e-06 9.10379e-06 9.10473e-06 9.10586e-06 9.1072e-06 9.10873e-06 9.11045e-06 9.11233e-06 9.11433e-06 9.11642e-06 9.11855e-06 9.1207e-06 9.12285e-06 9.12494e-06 9.12699e-06 9.12898e-06 9.13092e-06 9.13256e-06 9.13383e-06 9.13576e-06 9.14067e-06 9.14666e-06 9.14889e-06 9.14484e-06 9.13908e-06 9.14158e-06 9.15952e-06 9.18775e-06 9.20962e-06 9.20805e-06 9.18731e-06 9.18082e-06 9.23178e-06 9.35866e-06 9.50602e-06 9.57798e-06 9.76692e-06 7.05725e-05 0.000742767 0.00121305 0.00125942 0.00114904 0.00101359 0.000931356 0.000895186 0.000848035 0.000747984 0.000563104 0.000250849 3.03255e-05 1.17254e-05 1.09456e-05 1.07506e-05 1.06248e-05 1.06301e-05 1.08303e-05 1.12045e-05 1.1608e-05 1.2014e-05 1.23907e-05 1.27234e-05 1.30027e-05 1.32244e-05 1.33853e-05 1.34836e-05 1.35226e-05 1.3508e-05 1.34387e-05 1.33317e-05 1.32412e-05 9.10388e-06 9.103e-06 9.10284e-06 9.10264e-06 9.1025e-06 9.10239e-06 9.1023e-06 9.10223e-06 9.10218e-06 9.10213e-06 9.10209e-06 9.10205e-06 9.10201e-06 9.10198e-06 9.10193e-06 9.10189e-06 9.10183e-06 9.10178e-06 9.10176e-06 9.10182e-06 9.10204e-06 9.10243e-06 9.10298e-06 9.10372e-06 9.10466e-06 9.10578e-06 9.10711e-06 9.10863e-06 9.11033e-06 9.11221e-06 9.1142e-06 9.11627e-06 9.11841e-06 9.12053e-06 9.12265e-06 9.12473e-06 9.12677e-06 9.12872e-06 9.13062e-06 9.13245e-06 9.13396e-06 9.13512e-06 9.13685e-06 9.14196e-06 9.14856e-06 9.15119e-06 9.14713e-06 9.14063e-06 9.14267e-06 9.16089e-06 9.19172e-06 9.21478e-06 9.21136e-06 9.18687e-06 9.18032e-06 9.24173e-06 9.37747e-06 9.54196e-06 9.83142e-06 3.54124e-05 0.000639947 0.00125618 0.00136219 0.00125902 0.00111358 0.00102033 0.000974266 0.000915386 0.000799573 0.000592786 0.000250981 2.75551e-05 1.15007e-05 1.09057e-05 1.07244e-05 1.05711e-05 1.05155e-05 1.06196e-05 1.09166e-05 1.12889e-05 1.16718e-05 1.20362e-05 1.23637e-05 1.26451e-05 1.28754e-05 1.30513e-05 1.31705e-05 1.32338e-05 1.32428e-05 1.32032e-05 1.31163e-05 1.29948e-05 1.28968e-05 9.10423e-06 9.10321e-06 9.10303e-06 9.10281e-06 9.10265e-06 9.10253e-06 9.10243e-06 9.10235e-06 9.10229e-06 9.10223e-06 9.10218e-06 9.10214e-06 9.1021e-06 9.10206e-06 9.10201e-06 9.10196e-06 9.1019e-06 9.10183e-06 9.1018e-06 9.10184e-06 9.10202e-06 9.10238e-06 9.10292e-06 9.10365e-06 9.10458e-06 9.10569e-06 9.10701e-06 9.10852e-06 9.11021e-06 9.11207e-06 9.11405e-06 9.11611e-06 9.11824e-06 9.12035e-06 9.12245e-06 9.12451e-06 9.12651e-06 9.12846e-06 9.1303e-06 9.13209e-06 9.1338e-06 9.13521e-06 9.13622e-06 9.13771e-06 9.14306e-06 9.15024e-06 9.15344e-06 9.1493e-06 9.14218e-06 9.14343e-06 9.16305e-06 9.19533e-06 9.21908e-06 9.21334e-06 9.18689e-06 9.18261e-06 9.2422e-06 9.40353e-06 9.84277e-06 1.91874e-05 0.00049478 0.00124107 0.00144472 0.00137145 0.00122287 0.00111996 0.0010641 0.000992873 0.000859757 0.000628695 0.000254448 2.52806e-05 1.12386e-05 1.08235e-05 1.06902e-05 1.05381e-05 1.0442e-05 1.04687e-05 1.06698e-05 1.10041e-05 1.13569e-05 1.1705e-05 1.20239e-05 1.23032e-05 1.25378e-05 1.27235e-05 1.2858e-05 1.29415e-05 1.29734e-05 1.29559e-05 1.28956e-05 1.27945e-05 1.26614e-05 1.25575e-05 9.10461e-06 9.10344e-06 9.10324e-06 9.10299e-06 9.10282e-06 9.10268e-06 9.10257e-06 9.10248e-06 9.10241e-06 9.10235e-06 9.10229e-06 9.10224e-06 9.1022e-06 9.10215e-06 9.10209e-06 9.10204e-06 9.10197e-06 9.1019e-06 9.10185e-06 9.10187e-06 9.10201e-06 9.10234e-06 9.10286e-06 9.10358e-06 9.10449e-06 9.1056e-06 9.10691e-06 9.10841e-06 9.11008e-06 9.11192e-06 9.11389e-06 9.11594e-06 9.11805e-06 9.12016e-06 9.12225e-06 9.1243e-06 9.12626e-06 9.12817e-06 9.12999e-06 9.13173e-06 9.13339e-06 9.13499e-06 9.13631e-06 9.13712e-06 9.13842e-06 9.14393e-06 9.15168e-06 9.15553e-06 9.1514e-06 9.14358e-06 9.14478e-06 9.16476e-06 9.19853e-06 9.22197e-06 9.21598e-06 9.1898e-06 9.17256e-06 9.26209e-06 9.74659e-06 1.50936e-05 0.000379497 0.00116778 0.00148189 0.0014718 0.0013368 0.00122914 0.00116452 0.0010806 0.000928686 0.00067059 0.000261325 2.33946e-05 1.09455e-05 1.06722e-05 1.06144e-05 1.05031e-05 1.03967e-05 1.03681e-05 1.04788e-05 1.0751e-05 1.10721e-05 1.13989e-05 1.17054e-05 1.19795e-05 1.22146e-05 1.24064e-05 1.25516e-05 1.26504e-05 1.27017e-05 1.27057e-05 1.26659e-05 1.25889e-05 1.24762e-05 1.2334e-05 1.22259e-05 9.10504e-06 9.10369e-06 9.10347e-06 9.1032e-06 9.103e-06 9.10285e-06 9.10273e-06 9.10263e-06 9.10255e-06 9.10248e-06 9.10242e-06 9.10236e-06 9.10231e-06 9.10225e-06 9.10219e-06 9.10213e-06 9.10206e-06 9.10197e-06 9.10192e-06 9.10191e-06 9.10201e-06 9.10231e-06 9.10279e-06 9.10351e-06 9.1044e-06 9.1055e-06 9.10679e-06 9.10828e-06 9.10995e-06 9.11176e-06 9.11371e-06 9.11575e-06 9.11784e-06 9.11996e-06 9.12203e-06 9.12407e-06 9.12601e-06 9.12787e-06 9.12966e-06 9.13137e-06 9.13299e-06 9.13451e-06 9.13604e-06 9.13723e-06 9.13789e-06 9.13892e-06 9.14449e-06 9.15298e-06 9.15743e-06 9.15339e-06 9.14496e-06 9.14558e-06 9.16636e-06 9.20037e-06 9.22491e-06 9.22228e-06 9.17917e-06 9.20362e-06 9.64234e-06 1.59613e-05 0.00036506 0.00110248 0.00146508 0.00153676 0.00144303 0.00134346 0.00127397 0.00117778 0.00100563 0.000717239 0.000270481 2.20268e-05 1.06818e-05 1.04668e-05 1.04755e-05 1.04325e-05 1.03549e-05 1.03014e-05 1.03455e-05 1.05341e-05 1.08208e-05 1.11196e-05 1.14101e-05 1.16754e-05 1.19082e-05 1.21025e-05 1.22552e-05 1.23653e-05 1.24319e-05 1.24544e-05 1.24347e-05 1.23767e-05 1.22857e-05 1.21639e-05 1.20154e-05 1.19046e-05 9.10551e-06 9.10397e-06 9.10373e-06 9.10342e-06 9.10321e-06 9.10304e-06 9.1029e-06 9.1028e-06 9.10271e-06 9.10263e-06 9.10256e-06 9.1025e-06 9.10244e-06 9.10237e-06 9.10231e-06 9.10224e-06 9.10216e-06 9.10206e-06 9.10199e-06 9.10196e-06 9.10203e-06 9.10229e-06 9.10273e-06 9.10342e-06 9.1043e-06 9.10538e-06 9.10666e-06 9.10814e-06 9.1098e-06 9.11159e-06 9.11352e-06 9.11555e-06 9.11763e-06 9.11973e-06 9.12179e-06 9.12381e-06 9.12575e-06 9.12758e-06 9.12934e-06 9.13099e-06 9.13259e-06 9.13408e-06 9.1355e-06 9.13693e-06 9.13799e-06 9.1385e-06 9.1392e-06 9.14491e-06 9.15411e-06 9.1591e-06 9.15492e-06 9.14576e-06 9.14634e-06 9.1672e-06 9.20127e-06 9.23147e-06 9.21549e-06 9.23572e-06 9.64554e-06 1.88904e-05 0.000468671 0.0011462 0.00143771 0.00154981 0.00151894 0.00145022 0.00138634 0.00128113 0.0010881 0.000765572 0.000279232 2.10709e-05 1.05085e-05 1.02667e-05 1.02889e-05 1.03048e-05 1.0286e-05 1.02467e-05 1.02525e-05 1.03639e-05 1.06026e-05 1.08694e-05 1.11397e-05 1.13927e-05 1.16197e-05 1.18141e-05 1.19711e-05 1.20897e-05 1.2168e-05 1.22055e-05 1.22033e-05 1.2164e-05 1.20907e-05 1.19884e-05 1.18601e-05 1.17077e-05 1.15957e-05 9.10602e-06 9.10427e-06 9.10401e-06 9.10367e-06 9.10343e-06 9.10325e-06 9.1031e-06 9.10298e-06 9.10288e-06 9.1028e-06 9.10272e-06 9.10265e-06 9.10258e-06 9.10251e-06 9.10244e-06 9.10236e-06 9.10227e-06 9.10217e-06 9.10208e-06 9.10203e-06 9.10207e-06 9.10228e-06 9.10268e-06 9.10333e-06 9.1042e-06 9.10526e-06 9.10652e-06 9.10798e-06 9.10963e-06 9.11142e-06 9.11333e-06 9.11534e-06 9.1174e-06 9.11949e-06 9.12154e-06 9.12352e-06 9.12546e-06 9.12728e-06 9.12901e-06 9.13062e-06 9.13216e-06 9.13366e-06 9.13501e-06 9.13633e-06 9.13761e-06 9.13856e-06 9.13885e-06 9.13921e-06 9.14513e-06 9.15488e-06 9.16033e-06 9.15594e-06 9.14638e-06 9.14706e-06 9.16658e-06 9.20363e-06 9.22758e-06 9.2977e-06 9.77241e-06 2.20743e-05 0.000625345 0.0013248 0.00148342 0.00153398 0.00154294 0.00152551 0.00148569 0.0013808 0.00116935 0.000808889 0.000283 2.02483e-05 1.04578e-05 1.01444e-05 1.01089e-05 1.01312e-05 1.0165e-05 1.01739e-05 1.01788e-05 1.02423e-05 1.04173e-05 1.06516e-05 1.08963e-05 1.11331e-05 1.1351e-05 1.15422e-05 1.17013e-05 1.18255e-05 1.1913e-05 1.19625e-05 1.19749e-05 1.19521e-05 1.18962e-05 1.18103e-05 1.16994e-05 1.1567e-05 1.14131e-05 1.13012e-05 9.10659e-06 9.10459e-06 9.10431e-06 9.10395e-06 9.10368e-06 9.10348e-06 9.10332e-06 9.10319e-06 9.10308e-06 9.10298e-06 9.1029e-06 9.10282e-06 9.10275e-06 9.10267e-06 9.10259e-06 9.1025e-06 9.10241e-06 9.1023e-06 9.10219e-06 9.10212e-06 9.10213e-06 9.1023e-06 9.10265e-06 9.10324e-06 9.10409e-06 9.10513e-06 9.10638e-06 9.10782e-06 9.10945e-06 9.11123e-06 9.11314e-06 9.11512e-06 9.11716e-06 9.11923e-06 9.12126e-06 9.12322e-06 9.12514e-06 9.12696e-06 9.12866e-06 9.13025e-06 9.13173e-06 9.13318e-06 9.13451e-06 9.13575e-06 9.13689e-06 9.13804e-06 9.13885e-06 9.13895e-06 9.13881e-06 9.14499e-06 9.15535e-06 9.16128e-06 9.15654e-06 9.14722e-06 9.14636e-06 9.16305e-06 9.20148e-06 9.32721e-06 9.93511e-06 2.2341e-05 0.000735454 0.001563 0.00164691 0.00156148 0.00152695 0.00154644 0.00154588 0.00145596 0.00123443 0.000834166 0.000275161 1.91094e-05 1.04793e-05 1.01313e-05 9.99962e-06 9.96059e-06 9.99872e-06 1.00574e-05 1.00954e-05 1.01457e-05 1.02658e-05 1.04661e-05 1.06815e-05 1.08984e-05 1.11035e-05 1.12885e-05 1.14467e-05 1.15745e-05 1.16687e-05 1.17279e-05 1.17523e-05 1.17436e-05 1.17033e-05 1.16335e-05 1.15378e-05 1.1421e-05 1.12865e-05 1.11333e-05 1.10229e-05 9.1072e-06 9.10494e-06 9.10464e-06 9.10424e-06 9.10395e-06 9.10373e-06 9.10355e-06 9.10341e-06 9.10329e-06 9.10319e-06 9.1031e-06 9.10302e-06 9.10294e-06 9.10285e-06 9.10276e-06 9.10266e-06 9.10256e-06 9.10244e-06 9.10232e-06 9.10223e-06 9.10221e-06 9.10233e-06 9.10264e-06 9.10316e-06 9.10397e-06 9.105e-06 9.10622e-06 9.10765e-06 9.10926e-06 9.11103e-06 9.11292e-06 9.11489e-06 9.11691e-06 9.11894e-06 9.12097e-06 9.12291e-06 9.12479e-06 9.1266e-06 9.12828e-06 9.12986e-06 9.13131e-06 9.13267e-06 9.13394e-06 9.13514e-06 9.13623e-06 9.13719e-06 9.13823e-06 9.13892e-06 9.13873e-06 9.13806e-06 9.1445e-06 9.15561e-06 9.16171e-06 9.15719e-06 9.14626e-06 9.13824e-06 9.16418e-06 9.31822e-06 1.00219e-05 1.81228e-05 0.000747506 0.00177065 0.00189154 0.00169705 0.0015384 0.0015266 0.00154942 0.00148081 0.00125909 0.000821269 0.000248498 1.72893e-05 1.04588e-05 1.01814e-05 9.98732e-06 9.85283e-06 9.83077e-06 9.89593e-06 9.9773e-06 1.00484e-05 1.01438e-05 1.03064e-05 1.04957e-05 1.06902e-05 1.08791e-05 1.10543e-05 1.12087e-05 1.13374e-05 1.14366e-05 1.15033e-05 1.15377e-05 1.15409e-05 1.15141e-05 1.14589e-05 1.13781e-05 1.12753e-05 1.11548e-05 1.10204e-05 1.08699e-05 1.07626e-05 9.10786e-06 9.10531e-06 9.105e-06 9.10456e-06 9.10424e-06 9.104e-06 9.10381e-06 9.10366e-06 9.10353e-06 9.10343e-06 9.10333e-06 9.10324e-06 9.10315e-06 9.10305e-06 9.10296e-06 9.10285e-06 9.10273e-06 9.1026e-06 9.10247e-06 9.10235e-06 9.10231e-06 9.10238e-06 9.10264e-06 9.10311e-06 9.10386e-06 9.10486e-06 9.10607e-06 9.10746e-06 9.10905e-06 9.1108e-06 9.11268e-06 9.11463e-06 9.11663e-06 9.11864e-06 9.12065e-06 9.12259e-06 9.12443e-06 9.12621e-06 9.12787e-06 9.12943e-06 9.13087e-06 9.13216e-06 9.13335e-06 9.13448e-06 9.13555e-06 9.13646e-06 9.1373e-06 9.13819e-06 9.13868e-06 9.13812e-06 9.13687e-06 9.14331e-06 9.15532e-06 9.16209e-06 9.15468e-06 9.13576e-06 9.14653e-06 9.31226e-06 9.98485e-06 1.25198e-05 0.000653386 0.00189406 0.00214636 0.00193311 0.00165336 0.00153801 0.00152563 0.00145315 0.00122536 0.000750742 0.000199534 1.4864e-05 1.02902e-05 1.01924e-05 1.00324e-05 9.83573e-06 9.7194e-06 9.72656e-06 9.81864e-06 9.92338e-06 1.00291e-05 1.01653e-05 1.03358e-05 1.05083e-05 1.0679e-05 1.08412e-05 1.09886e-05 1.11156e-05 1.12173e-05 1.129e-05 1.13325e-05 1.13457e-05 1.13305e-05 1.12883e-05 1.12211e-05 1.11321e-05 1.10245e-05 1.09025e-05 1.07701e-05 1.06245e-05 1.05215e-05 9.10857e-06 9.1057e-06 9.10538e-06 9.10491e-06 9.10456e-06 9.1043e-06 9.10409e-06 9.10393e-06 9.1038e-06 9.10368e-06 9.10358e-06 9.10348e-06 9.10338e-06 9.10328e-06 9.10317e-06 9.10305e-06 9.10293e-06 9.10279e-06 9.10264e-06 9.1025e-06 9.10243e-06 9.10246e-06 9.10267e-06 9.10308e-06 9.10375e-06 9.10471e-06 9.1059e-06 9.10727e-06 9.10883e-06 9.11056e-06 9.11241e-06 9.11435e-06 9.11634e-06 9.11833e-06 9.12031e-06 9.12225e-06 9.12407e-06 9.12579e-06 9.12744e-06 9.12897e-06 9.13039e-06 9.13165e-06 9.13279e-06 9.13384e-06 9.13485e-06 9.13577e-06 9.13651e-06 9.13715e-06 9.13787e-06 9.13802e-06 9.13697e-06 9.13477e-06 9.14111e-06 9.15476e-06 9.15769e-06 9.14368e-06 9.15533e-06 9.34836e-06 9.86449e-06 8.73707e-06 0.000483392 0.00190436 0.0023552 0.00220801 0.00187923 0.00165768 0.00155667 0.00142782 0.00115644 0.000629148 0.00013441 1.24273e-05 9.97396e-06 1.00784e-05 1.00474e-05 9.87794e-06 9.69503e-06 9.60629e-06 9.64814e-06 9.76378e-06 9.89495e-06 1.00312e-05 1.01918e-05 1.03493e-05 1.05033e-05 1.06506e-05 1.07878e-05 1.091e-05 1.10118e-05 1.10883e-05 1.11375e-05 1.11592e-05 1.11541e-05 1.11231e-05 1.10683e-05 1.0992e-05 1.08971e-05 1.07869e-05 1.06655e-05 1.0537e-05 1.03981e-05 1.03008e-05 9.10933e-06 9.10612e-06 9.10579e-06 9.10527e-06 9.1049e-06 9.10461e-06 9.1044e-06 9.10423e-06 9.10408e-06 9.10396e-06 9.10385e-06 9.10375e-06 9.10364e-06 9.10354e-06 9.10342e-06 9.10329e-06 9.10315e-06 9.103e-06 9.10284e-06 9.10267e-06 9.10257e-06 9.10256e-06 9.10272e-06 9.10307e-06 9.10368e-06 9.10456e-06 9.10571e-06 9.10707e-06 9.10859e-06 9.11029e-06 9.11213e-06 9.11405e-06 9.11603e-06 9.118e-06 9.11995e-06 9.12188e-06 9.12369e-06 9.12538e-06 9.12699e-06 9.12849e-06 9.12988e-06 9.13114e-06 9.13226e-06 9.13326e-06 9.13418e-06 9.13506e-06 9.13576e-06 9.13627e-06 9.13668e-06 9.13709e-06 9.13684e-06 9.13493e-06 9.13127e-06 9.13838e-06 9.14871e-06 9.14675e-06 9.17895e-06 9.42639e-06 9.73052e-06 6.77047e-06 0.000296607 0.00178606 0.00248103 0.00246015 0.0021584 0.00188823 0.00170538 0.00149035 0.00113128 0.000510489 7.25875e-05 1.06393e-05 9.62455e-06 9.84138e-06 9.95859e-06 9.90344e-06 9.73426e-06 9.57175e-06 9.519e-06 9.59121e-06 9.73015e-06 9.88628e-06 1.00485e-05 1.02053e-05 1.03484e-05 1.04822e-05 1.06076e-05 1.07222e-05 1.08211e-05 1.08993e-05 1.09534e-05 1.09823e-05 1.09858e-05 1.09648e-05 1.09208e-05 1.0856e-05 1.07729e-05 1.06744e-05 1.05639e-05 1.04451e-05 1.03223e-05 1.01916e-05 1.01012e-05 9.11013e-06 9.10655e-06 9.10623e-06 9.10567e-06 9.10526e-06 9.10495e-06 9.10473e-06 9.10454e-06 9.1044e-06 9.10427e-06 9.10415e-06 9.10404e-06 9.10394e-06 9.10382e-06 9.1037e-06 9.10356e-06 9.10341e-06 9.10324e-06 9.10307e-06 9.10289e-06 9.10274e-06 9.1027e-06 9.10281e-06 9.1031e-06 9.10364e-06 9.10443e-06 9.10551e-06 9.10685e-06 9.10835e-06 9.11001e-06 9.11183e-06 9.11374e-06 9.11571e-06 9.11767e-06 9.11959e-06 9.12148e-06 9.12329e-06 9.12496e-06 9.12654e-06 9.12802e-06 9.12936e-06 9.1306e-06 9.13173e-06 9.13271e-06 9.13354e-06 9.13431e-06 9.13495e-06 9.13539e-06 9.13564e-06 9.13576e-06 9.13576e-06 9.13489e-06 9.13177e-06 9.12618e-06 9.12985e-06 9.13732e-06 9.2005e-06 9.51905e-06 9.61167e-06 5.42337e-06 0.000144873 0.00155696 0.00249853 0.00264533 0.00242525 0.00216834 0.00195162 0.00167092 0.0012211 0.000468723 3.59893e-05 9.76797e-06 9.38147e-06 9.57369e-06 9.76602e-06 9.84453e-06 9.77059e-06 9.60784e-06 9.4724e-06 9.45317e-06 9.55419e-06 9.71506e-06 9.89139e-06 1.0063e-05 1.02072e-05 1.03331e-05 1.04477e-05 1.0553e-05 1.06465e-05 1.07236e-05 1.07805e-05 1.08151e-05 1.08262e-05 1.08139e-05 1.07796e-05 1.07252e-05 1.0653e-05 1.05654e-05 1.04654e-05 1.03566e-05 1.02423e-05 1.01266e-05 1.00057e-05 9.92316e-06 9.11099e-06 9.107e-06 9.10668e-06 9.10608e-06 9.10564e-06 9.10532e-06 9.10508e-06 9.10489e-06 9.10473e-06 9.1046e-06 9.10448e-06 9.10437e-06 9.10426e-06 9.10414e-06 9.10401e-06 9.10386e-06 9.10369e-06 9.10352e-06 9.10333e-06 9.10313e-06 9.10294e-06 9.10286e-06 9.10293e-06 9.10316e-06 9.10362e-06 9.10434e-06 9.10533e-06 9.10661e-06 9.1081e-06 9.10973e-06 9.11151e-06 9.11341e-06 9.11536e-06 9.11731e-06 9.11921e-06 9.12106e-06 9.12286e-06 9.12454e-06 9.12608e-06 9.12753e-06 9.12884e-06 9.13005e-06 9.13116e-06 9.13212e-06 9.13289e-06 9.13354e-06 9.13409e-06 9.13446e-06 9.13462e-06 9.13459e-06 9.13425e-06 9.13359e-06 9.13161e-06 9.12567e-06 9.11475e-06 9.11995e-06 9.2157e-06 9.58906e-06 9.44785e-06 4.17596e-06 4.95839e-05 0.00129115 0.00240723 0.00273127 0.0026311 0.00243269 0.00222701 0.0019198 0.00141188 0.000533776 2.46347e-05 9.60816e-06 9.31406e-06 9.38873e-06 9.54627e-06 9.69533e-06 9.74061e-06 9.65447e-06 9.50241e-06 9.39183e-06 9.4097e-06 9.53316e-06 9.71503e-06 9.90602e-06 1.00673e-05 1.01966e-05 1.03055e-05 1.04025e-05 1.04889e-05 1.05625e-05 1.06199e-05 1.06582e-05 1.06755e-05 1.0671e-05 1.06453e-05 1.06004e-05 1.05379e-05 1.04604e-05 1.03705e-05 1.02712e-05 1.01659e-05 1.00577e-05 9.95061e-06 9.84064e-06 9.76665e-06 9.11188e-06 9.10746e-06 9.10717e-06 9.10651e-06 9.10604e-06 9.1057e-06 9.10545e-06 9.10525e-06 9.10509e-06 9.10496e-06 9.10484e-06 9.10473e-06 9.10461e-06 9.10449e-06 9.10435e-06 9.10419e-06 9.10401e-06 9.10383e-06 9.10362e-06 9.10341e-06 9.10319e-06 9.10305e-06 9.10308e-06 9.10325e-06 9.10364e-06 9.10429e-06 9.10519e-06 9.10637e-06 9.10782e-06 9.10944e-06 9.11118e-06 9.11305e-06 9.11498e-06 9.11692e-06 9.11882e-06 9.12063e-06 9.1224e-06 9.12408e-06 9.12561e-06 9.12703e-06 9.12831e-06 9.12949e-06 9.13054e-06 9.13147e-06 9.1322e-06 9.13274e-06 9.13321e-06 9.13352e-06 9.13358e-06 9.13342e-06 9.13294e-06 9.13184e-06 9.13018e-06 9.12535e-06 9.11296e-06 9.10991e-06 9.23293e-06 9.62e-06 9.11519e-06 3.0794e-06 1.87833e-05 0.00108315 0.0022527 0.00270633 0.00273998 0.00263434 0.0024718 0.00216631 0.00162911 0.000665684 2.6118e-05 9.75015e-06 9.38508e-06 9.34374e-06 9.39511e-06 9.51738e-06 9.6315e-06 9.6491e-06 9.55545e-06 9.41049e-06 9.33655e-06 9.38045e-06 9.52984e-06 9.72664e-06 9.9146e-06 1.00617e-05 1.0175e-05 1.02681e-05 1.03483e-05 1.04169e-05 1.04723e-05 1.05122e-05 1.05341e-05 1.05362e-05 1.05184e-05 1.04818e-05 1.04284e-05 1.03601e-05 1.02795e-05 1.01894e-05 1.00928e-05 9.99263e-06 9.89201e-06 9.79453e-06 9.69624e-06 9.63134e-06 9.1128e-06 9.10794e-06 9.10767e-06 9.10697e-06 9.10646e-06 9.1061e-06 9.10584e-06 9.10564e-06 9.10548e-06 9.10534e-06 9.10522e-06 9.10511e-06 9.10499e-06 9.10487e-06 9.10472e-06 9.10456e-06 9.10437e-06 9.10417e-06 9.10395e-06 9.10373e-06 9.10349e-06 9.10329e-06 9.10327e-06 9.10339e-06 9.10369e-06 9.10427e-06 9.10508e-06 9.10616e-06 9.10753e-06 9.10912e-06 9.11084e-06 9.11266e-06 9.11456e-06 9.11649e-06 9.1184e-06 9.1202e-06 9.12193e-06 9.1236e-06 9.12512e-06 9.12649e-06 9.12776e-06 9.1289e-06 9.12989e-06 9.13077e-06 9.13148e-06 9.13197e-06 9.13236e-06 9.1326e-06 9.13257e-06 9.13223e-06 9.1316e-06 9.13036e-06 9.128e-06 9.12367e-06 9.11262e-06 9.11235e-06 9.27336e-06 9.59896e-06 8.45838e-06 2.19496e-06 1.31371e-05 0.000962729 0.00210904 0.00260209 0.0027348 0.00273878 0.00264577 0.00236008 0.00180521 0.00078676 3.34554e-05 9.87274e-06 9.48374e-06 9.4076e-06 9.3605e-06 9.39183e-06 9.49009e-06 9.57272e-06 9.56904e-06 9.46489e-06 9.34134e-06 9.29715e-06 9.36948e-06 9.5388e-06 9.74115e-06 9.91522e-06 1.00462e-05 1.01444e-05 1.02223e-05 1.02866e-05 1.03388e-05 1.03781e-05 1.04025e-05 1.04096e-05 1.03987e-05 1.03699e-05 1.03247e-05 1.0265e-05 1.0193e-05 1.01114e-05 1.00231e-05 9.93062e-06 9.8372e-06 9.7453e-06 9.65819e-06 9.57208e-06 9.51638e-06 9.11377e-06 9.10842e-06 9.10819e-06 9.10744e-06 9.1069e-06 9.10652e-06 9.10625e-06 9.10604e-06 9.10588e-06 9.10575e-06 9.10564e-06 9.10553e-06 9.10541e-06 9.10528e-06 9.10514e-06 9.10497e-06 9.10477e-06 9.10456e-06 9.10432e-06 9.10408e-06 9.10383e-06 9.10358e-06 9.10349e-06 9.10357e-06 9.10379e-06 9.10429e-06 9.10502e-06 9.106e-06 9.10725e-06 9.10878e-06 9.11047e-06 9.11225e-06 9.11412e-06 9.11603e-06 9.11793e-06 9.11976e-06 9.12145e-06 9.12308e-06 9.12459e-06 9.12593e-06 9.12717e-06 9.12827e-06 9.12922e-06 9.13004e-06 9.13074e-06 9.13122e-06 9.13153e-06 9.1317e-06 9.13158e-06 9.13109e-06 9.13025e-06 9.12886e-06 9.12617e-06 9.12022e-06 9.11023e-06 9.09677e-06 9.30503e-06 9.5167e-06 7.43579e-06 1.4516e-06 1.26746e-05 0.000884113 0.00201295 0.00248896 0.00263982 0.00272989 0.00271995 0.0024684 0.00189877 0.000838538 4.14177e-05 9.85193e-06 9.50504e-06 9.4869e-06 9.41446e-06 9.36089e-06 9.38486e-06 9.46106e-06 9.5183e-06 9.49455e-06 9.38921e-06 9.29231e-06 9.27287e-06 9.37513e-06 9.55615e-06 9.74911e-06 9.90704e-06 1.00225e-05 1.01062e-05 1.01696e-05 1.0219e-05 1.02565e-05 1.02815e-05 1.02919e-05 1.02864e-05 1.02646e-05 1.02269e-05 1.01751e-05 1.01111e-05 1.00375e-05 9.95691e-06 9.87188e-06 9.7853e-06 9.69974e-06 9.61739e-06 9.54115e-06 9.46723e-06 9.42049e-06 9.11475e-06 9.10891e-06 9.10873e-06 9.10792e-06 9.10735e-06 9.10696e-06 9.10668e-06 9.10647e-06 9.10631e-06 9.10619e-06 9.10608e-06 9.10597e-06 9.10586e-06 9.10573e-06 9.10559e-06 9.10541e-06 9.10521e-06 9.10498e-06 9.10473e-06 9.10447e-06 9.10421e-06 9.10392e-06 9.10375e-06 9.10379e-06 9.10395e-06 9.10435e-06 9.105e-06 9.10589e-06 9.10703e-06 9.10843e-06 9.11008e-06 9.11184e-06 9.11366e-06 9.11554e-06 9.11743e-06 9.11927e-06 9.12095e-06 9.12254e-06 9.12402e-06 9.12536e-06 9.12656e-06 9.12763e-06 9.12856e-06 9.12933e-06 9.12999e-06 9.13049e-06 9.13072e-06 9.13078e-06 9.13059e-06 9.12999e-06 9.12895e-06 9.12731e-06 9.12424e-06 9.11732e-06 9.10576e-06 9.09146e-06 9.20744e-06 9.37528e-06 6.10136e-06 8.99369e-07 1.67409e-05 0.000812459 0.0019346 0.00241591 0.00252273 0.00263251 0.00268556 0.00246982 0.00188369 0.000794553 4.26156e-05 9.73074e-06 9.42321e-06 9.49338e-06 9.47688e-06 9.40219e-06 9.35489e-06 9.37285e-06 9.43037e-06 9.46778e-06 9.42627e-06 9.33478e-06 9.25487e-06 9.26854e-06 9.38947e-06 9.57129e-06 9.74981e-06 9.89131e-06 9.99182e-06 1.00615e-05 1.01113e-05 1.01474e-05 1.01717e-05 1.01836e-05 1.01819e-05 1.01658e-05 1.0135e-05 1.00905e-05 1.0034e-05 9.96781e-06 9.8945e-06 9.81647e-06 9.73646e-06 9.65689e-06 9.58007e-06 9.50784e-06 9.44249e-06 9.38035e-06 9.34212e-06 9.11577e-06 9.1094e-06 9.10929e-06 9.10842e-06 9.10781e-06 9.10741e-06 9.10712e-06 9.10691e-06 9.10676e-06 9.10664e-06 9.10654e-06 9.10644e-06 9.10634e-06 9.10622e-06 9.10608e-06 9.1059e-06 9.10569e-06 9.10545e-06 9.10519e-06 9.10491e-06 9.10463e-06 9.10433e-06 9.10407e-06 9.10406e-06 9.10416e-06 9.10448e-06 9.10503e-06 9.10582e-06 9.10685e-06 9.10813e-06 9.10967e-06 9.11141e-06 9.11321e-06 9.11504e-06 9.11688e-06 9.11872e-06 9.12042e-06 9.12198e-06 9.12344e-06 9.12477e-06 9.12593e-06 9.12696e-06 9.12788e-06 9.12862e-06 9.12922e-06 9.1297e-06 9.1299e-06 9.12984e-06 9.12957e-06 9.12891e-06 9.12771e-06 9.12573e-06 9.12219e-06 9.11431e-06 9.10181e-06 9.0856e-06 9.1685e-06 9.45278e-06 5.12555e-06 5.61922e-07 3.28333e-05 0.000767063 0.00183959 0.00236333 0.00243873 0.00251403 0.00257607 0.00236881 0.00174932 0.000660705 3.36375e-05 9.62435e-06 9.2992e-06 9.40653e-06 9.47426e-06 9.44894e-06 9.38472e-06 9.34429e-06 9.3565e-06 9.40145e-06 9.41808e-06 9.37395e-06 9.28989e-06 9.23492e-06 9.27666e-06 9.40836e-06 9.58086e-06 9.74334e-06 9.869e-06 9.95513e-06 1.00116e-05 1.0049e-05 1.00731e-05 1.00853e-05 1.00858e-05 1.00739e-05 1.0049e-05 1.00111e-05 9.9616e-06 9.90239e-06 9.8359e-06 9.76445e-06 9.69067e-06 9.61685e-06 9.54521e-06 9.47774e-06 9.41572e-06 9.3609e-06 9.30988e-06 9.2794e-06 9.11681e-06 9.1099e-06 9.10987e-06 9.10893e-06 9.10829e-06 9.10787e-06 9.10758e-06 9.10737e-06 9.10723e-06 9.10712e-06 9.10703e-06 9.10694e-06 9.10685e-06 9.10674e-06 9.1066e-06 9.10643e-06 9.10622e-06 9.10596e-06 9.1057e-06 9.1054e-06 9.10511e-06 9.10479e-06 9.10447e-06 9.10437e-06 9.10443e-06 9.10466e-06 9.10512e-06 9.10581e-06 9.10673e-06 9.10789e-06 9.10929e-06 9.11095e-06 9.11273e-06 9.11453e-06 9.11632e-06 9.11812e-06 9.11984e-06 9.1214e-06 9.12284e-06 9.12416e-06 9.12531e-06 9.12631e-06 9.12718e-06 9.1279e-06 9.12843e-06 9.12884e-06 9.12902e-06 9.12887e-06 9.12851e-06 9.12778e-06 9.12646e-06 9.12415e-06 9.12004e-06 9.11127e-06 9.09749e-06 9.08168e-06 9.13412e-06 9.40465e-06 6.70315e-06 5.18147e-07 7.32325e-05 0.00077355 0.00174703 0.00228676 0.00237441 0.00242905 0.00246086 0.00221365 0.0015228 0.000475344 2.08277e-05 9.62354e-06 9.21744e-06 9.27968e-06 9.39201e-06 9.44018e-06 9.41958e-06 9.36522e-06 9.33012e-06 9.33946e-06 9.37131e-06 9.37519e-06 9.32989e-06 9.2563e-06 9.23291e-06 9.29244e-06 9.424e-06 9.58384e-06 9.73058e-06 9.84102e-06 9.91339e-06 9.95779e-06 9.98395e-06 9.99693e-06 9.99862e-06 9.98944e-06 9.96892e-06 9.9369e-06 9.8938e-06 9.84117e-06 9.78109e-06 9.71582e-06 9.6479e-06 9.57955e-06 9.51288e-06 9.44982e-06 9.39184e-06 9.33975e-06 9.29487e-06 9.25395e-06 9.23027e-06 9.11786e-06 9.1104e-06 9.11046e-06 9.10945e-06 9.10877e-06 9.10834e-06 9.10804e-06 9.10784e-06 9.10771e-06 9.10761e-06 9.10754e-06 9.10747e-06 9.10739e-06 9.1073e-06 9.10717e-06 9.107e-06 9.10679e-06 9.10653e-06 9.10625e-06 9.10593e-06 9.10563e-06 9.1053e-06 9.10494e-06 9.10474e-06 9.10475e-06 9.1049e-06 9.10527e-06 9.10586e-06 9.10668e-06 9.10772e-06 9.109e-06 9.11049e-06 9.1122e-06 9.114e-06 9.11575e-06 9.11748e-06 9.11921e-06 9.12079e-06 9.12223e-06 9.12353e-06 9.12467e-06 9.12564e-06 9.12648e-06 9.12716e-06 9.12764e-06 9.12794e-06 9.12809e-06 9.1279e-06 9.12744e-06 9.12661e-06 9.12515e-06 9.12253e-06 9.11759e-06 9.10824e-06 9.09331e-06 9.07745e-06 9.11024e-06 9.36053e-06 7.35298e-06 9.54163e-07 0.000127889 0.000820542 0.00169567 0.00218176 0.00227751 0.00236483 0.00238679 0.00207453 0.00127915 0.000296099 1.19354e-05 9.71795e-06 9.21486e-06 9.18708e-06 9.27781e-06 9.36472e-06 9.4081e-06 9.39072e-06 9.34449e-06 9.31391e-06 9.32087e-06 9.34063e-06 9.33863e-06 9.2919e-06 9.24153e-06 9.2403e-06 9.30944e-06 9.43442e-06 9.58089e-06 9.71234e-06 9.80808e-06 9.86784e-06 9.90119e-06 9.91695e-06 9.9201e-06 9.91274e-06 9.89533e-06 9.86788e-06 9.83044e-06 9.78392e-06 9.72994e-06 9.6705e-06 9.60811e-06 9.54491e-06 9.48297e-06 9.42415e-06 9.36987e-06 9.32114e-06 9.27845e-06 9.24259e-06 9.21054e-06 9.19276e-06 9.11894e-06 9.11091e-06 9.11107e-06 9.10998e-06 9.10926e-06 9.10881e-06 9.10851e-06 9.10832e-06 9.1082e-06 9.10812e-06 9.10807e-06 9.10802e-06 9.10796e-06 9.10788e-06 9.10777e-06 9.10762e-06 9.10741e-06 9.10714e-06 9.10685e-06 9.10652e-06 9.1062e-06 9.10586e-06 9.1055e-06 9.10519e-06 9.10512e-06 9.1052e-06 9.1055e-06 9.10598e-06 9.10668e-06 9.10761e-06 9.10875e-06 9.1101e-06 9.11167e-06 9.11342e-06 9.11517e-06 9.11685e-06 9.11855e-06 9.12015e-06 9.12158e-06 9.12286e-06 9.124e-06 9.12497e-06 9.12576e-06 9.12639e-06 9.12685e-06 9.12706e-06 9.12716e-06 9.12695e-06 9.12637e-06 9.1254e-06 9.12375e-06 9.12088e-06 9.11506e-06 9.10496e-06 9.08966e-06 9.07194e-06 9.09085e-06 9.31195e-06 7.8846e-06 1.45429e-06 6.74549e-05 0.000901185 0.00168451 0.00206843 0.00212046 0.00226998 0.0023359 0.00198227 0.0010958 0.000161911 7.8878e-06 9.79731e-06 9.26155e-06 9.16407e-06 9.19636e-06 9.26382e-06 9.34061e-06 9.37767e-06 9.36269e-06 9.32241e-06 9.29673e-06 9.2994e-06 9.31396e-06 9.30584e-06 9.26692e-06 9.24022e-06 9.25392e-06 9.32347e-06 9.43961e-06 9.57271e-06 9.68924e-06 9.77129e-06 9.8194e-06 9.8425e-06 9.84896e-06 9.84362e-06 9.82851e-06 9.80444e-06 9.77159e-06 9.73049e-06 9.68221e-06 9.62834e-06 9.57118e-06 9.51285e-06 9.45537e-06 9.40057e-06 9.34984e-06 9.30416e-06 9.26424e-06 9.23009e-06 9.20212e-06 9.17776e-06 9.16477e-06 9.12003e-06 9.11142e-06 9.11171e-06 9.11053e-06 9.10977e-06 9.1093e-06 9.10899e-06 9.1088e-06 9.1087e-06 9.10864e-06 9.10861e-06 9.10859e-06 9.10856e-06 9.1085e-06 9.10841e-06 9.10827e-06 9.10807e-06 9.10781e-06 9.10751e-06 9.10717e-06 9.10683e-06 9.10648e-06 9.10611e-06 9.10574e-06 9.10557e-06 9.10558e-06 9.1058e-06 9.10619e-06 9.10677e-06 9.10757e-06 9.10858e-06 9.10979e-06 9.11118e-06 9.11281e-06 9.11456e-06 9.11625e-06 9.11788e-06 9.11946e-06 9.12089e-06 9.12216e-06 9.12329e-06 9.12425e-06 9.12503e-06 9.12562e-06 9.12606e-06 9.12624e-06 9.12625e-06 9.12601e-06 9.12533e-06 9.12418e-06 9.12231e-06 9.11914e-06 9.11274e-06 9.10148e-06 9.08625e-06 9.06519e-06 9.07453e-06 9.26871e-06 8.22543e-06 1.9997e-06 4.64346e-05 0.000790702 0.00172958 0.00193582 0.00189652 0.00211496 0.00226511 0.00190838 0.000986242 7.94368e-05 6.16575e-06 9.74887e-06 9.30182e-06 9.18862e-06 9.17792e-06 9.19297e-06 9.2523e-06 9.31782e-06 9.3488e-06 9.33516e-06 9.30074e-06 9.27829e-06 9.27985e-06 9.29003e-06 9.2781e-06 9.2583e-06 9.24716e-06 9.26736e-06 9.33334e-06 9.44011e-06 9.55998e-06 9.66218e-06 9.73143e-06 9.76869e-06 9.78253e-06 9.78088e-06 9.76823e-06 9.74682e-06 9.71748e-06 9.68087e-06 9.6377e-06 9.58908e-06 9.53693e-06 9.48322e-06 9.42995e-06 9.37894e-06 9.33158e-06 9.28882e-06 9.25136e-06 9.21944e-06 9.19279e-06 9.17166e-06 9.15357e-06 9.1443e-06 9.12114e-06 9.11195e-06 9.11237e-06 9.11109e-06 9.11028e-06 9.10979e-06 9.10948e-06 9.10929e-06 9.1092e-06 9.10917e-06 9.10917e-06 9.10918e-06 9.10917e-06 9.10914e-06 9.10907e-06 9.10896e-06 9.10878e-06 9.10853e-06 9.10822e-06 9.10788e-06 9.10751e-06 9.10716e-06 9.10678e-06 9.10639e-06 9.10611e-06 9.10603e-06 9.10617e-06 9.10648e-06 9.10695e-06 9.10761e-06 9.10849e-06 9.10955e-06 9.11081e-06 9.11226e-06 9.11392e-06 9.11562e-06 9.11721e-06 9.11874e-06 9.12016e-06 9.12143e-06 9.12254e-06 9.12351e-06 9.12429e-06 9.12483e-06 9.12524e-06 9.12543e-06 9.12534e-06 9.12502e-06 9.12427e-06 9.12296e-06 9.12086e-06 9.11713e-06 9.11028e-06 9.09816e-06 9.08255e-06 9.05847e-06 9.06066e-06 9.23089e-06 8.46243e-06 2.5436e-06 3.23891e-05 0.000736277 0.00167019 0.00181401 0.00158686 0.00189136 0.00216533 0.00182093 0.000908647 4.66766e-05 4.96521e-06 9.5681e-06 9.30861e-06 9.21199e-06 9.20135e-06 9.17799e-06 9.191e-06 9.24126e-06 9.29619e-06 9.3219e-06 9.3096e-06 9.28029e-06 9.2603e-06 9.26205e-06 9.26653e-06 9.26415e-06 9.25896e-06 9.25738e-06 9.278e-06 9.3394e-06 9.43671e-06 9.54323e-06 9.63187e-06 9.68912e-06 9.71646e-06 9.72212e-06 9.71339e-06 9.69477e-06 9.66832e-06 9.63526e-06 9.59639e-06 9.55251e-06 9.5051e-06 9.45582e-06 9.40657e-06 9.35914e-06 9.31495e-06 9.27495e-06 9.23985e-06 9.20988e-06 9.18498e-06 9.16483e-06 9.14922e-06 9.13609e-06 9.12973e-06 9.12226e-06 9.11251e-06 9.11306e-06 9.11167e-06 9.11081e-06 9.11029e-06 9.10997e-06 9.10979e-06 9.10971e-06 9.1097e-06 9.10973e-06 9.10977e-06 9.10981e-06 9.10981e-06 9.10977e-06 9.10968e-06 9.10952e-06 9.10929e-06 9.10898e-06 9.10864e-06 9.10826e-06 9.10789e-06 9.10751e-06 9.10711e-06 9.10676e-06 9.10658e-06 9.10661e-06 9.10685e-06 9.10722e-06 9.10775e-06 9.10848e-06 9.10942e-06 9.11052e-06 9.11181e-06 9.11327e-06 9.11492e-06 9.11651e-06 9.11801e-06 9.11941e-06 9.12068e-06 9.12178e-06 9.12273e-06 9.1235e-06 9.12404e-06 9.12439e-06 9.12457e-06 9.12442e-06 9.12399e-06 9.12317e-06 9.12173e-06 9.11939e-06 9.11497e-06 9.1075e-06 9.09528e-06 9.07842e-06 9.05328e-06 9.04937e-06 9.19846e-06 8.6276e-06 3.04672e-06 2.45821e-05 0.000690618 0.00163992 0.00181197 0.00130171 0.00158274 0.00205224 0.00173584 0.000839381 3.73722e-05 3.81929e-06 9.33531e-06 9.30114e-06 9.20558e-06 9.2205e-06 9.19995e-06 9.17915e-06 9.18902e-06 9.2304e-06 9.27655e-06 9.29762e-06 9.28633e-06 9.25962e-06 9.24336e-06 9.24432e-06 9.24976e-06 9.26121e-06 9.26553e-06 9.26635e-06 9.28587e-06 9.34243e-06 9.42946e-06 9.52314e-06 9.59887e-06 9.645e-06 9.66345e-06 9.66187e-06 9.64731e-06 9.62386e-06 9.59379e-06 9.55842e-06 9.51858e-06 9.47549e-06 9.43043e-06 9.38503e-06 9.34101e-06 9.29981e-06 9.26241e-06 9.22953e-06 9.20143e-06 9.17804e-06 9.15922e-06 9.14428e-06 9.13306e-06 9.12383e-06 9.11946e-06 9.12338e-06 9.11308e-06 9.11379e-06 9.11227e-06 9.11135e-06 9.11081e-06 9.11047e-06 9.11029e-06 9.11022e-06 9.11024e-06 9.1103e-06 9.11038e-06 9.11045e-06 9.11049e-06 9.11049e-06 9.11043e-06 9.1103e-06 9.1101e-06 9.10981e-06 9.10945e-06 9.10907e-06 9.10869e-06 9.1083e-06 9.10789e-06 9.10752e-06 9.10724e-06 9.10714e-06 9.10729e-06 9.10758e-06 9.108e-06 9.10859e-06 9.10936e-06 9.11032e-06 9.11143e-06 9.11271e-06 9.11419e-06 9.11575e-06 9.11725e-06 9.11863e-06 9.11992e-06 9.12101e-06 9.12193e-06 9.12268e-06 9.12322e-06 9.12352e-06 9.12363e-06 9.12345e-06 9.12292e-06 9.12203e-06 9.1205e-06 9.11793e-06 9.11297e-06 9.10446e-06 9.09271e-06 9.07425e-06 9.05018e-06 9.04065e-06 9.17031e-06 8.74423e-06 3.50487e-06 1.98793e-05 0.000655668 0.00161532 0.0017963 0.00139639 0.00192422 0.00130002 0.00168597 0.000799248 3.59033e-05 2.86548e-06 9.11954e-06 9.31371e-06 9.17874e-06 9.20774e-06 9.21782e-06 9.19997e-06 9.18027e-06 9.18629e-06 9.2204e-06 9.25894e-06 9.27504e-06 9.26302e-06 9.23992e-06 9.22774e-06 9.22705e-06 9.24409e-06 9.26442e-06 9.27252e-06 9.27326e-06 9.29145e-06 9.34199e-06 9.4189e-06 9.50018e-06 9.56379e-06 9.59976e-06 9.61022e-06 9.60257e-06 9.58323e-06 9.55625e-06 9.52387e-06 9.48738e-06 9.44802e-06 9.40681e-06 9.36509e-06 9.32437e-06 9.28601e-06 9.25106e-06 9.22027e-06 9.19391e-06 9.17196e-06 9.15425e-06 9.14033e-06 9.12963e-06 9.12182e-06 9.1155e-06 9.11411e-06 9.12449e-06 9.11367e-06 9.11456e-06 9.11291e-06 9.11193e-06 9.11134e-06 9.11098e-06 9.1108e-06 9.11074e-06 9.11078e-06 9.11087e-06 9.11099e-06 9.1111e-06 9.11119e-06 9.11123e-06 9.11121e-06 9.11112e-06 9.11094e-06 9.11068e-06 9.11033e-06 9.10993e-06 9.10955e-06 9.10916e-06 9.10874e-06 9.10836e-06 9.10802e-06 9.10779e-06 9.10783e-06 9.10804e-06 9.10836e-06 9.10881e-06 9.10942e-06 9.1102e-06 9.11115e-06 9.11223e-06 9.11352e-06 9.11496e-06 9.11644e-06 9.11784e-06 9.11911e-06 9.12021e-06 9.1211e-06 9.12183e-06 9.12236e-06 9.12265e-06 9.12268e-06 9.12247e-06 9.12186e-06 9.12087e-06 9.11924e-06 9.11631e-06 9.11093e-06 9.10159e-06 9.0901e-06 9.07081e-06 9.04844e-06 9.03421e-06 9.14693e-06 8.82822e-06 3.90999e-06 1.69233e-05 0.000628289 0.00159644 0.00178825 0.00143924 0.00168034 0.0018074 0.00139528 0.00080973 4.46304e-05 2.14683e-06 8.88155e-06 9.36133e-06 9.15825e-06 9.173e-06 9.20688e-06 9.21654e-06 9.19982e-06 9.18002e-06 9.18304e-06 9.21116e-06 9.2418e-06 9.25303e-06 9.24093e-06 9.22239e-06 9.21089e-06 9.21781e-06 9.24465e-06 9.2704e-06 9.27778e-06 9.27822e-06 9.29408e-06 9.33847e-06 9.40544e-06 9.47489e-06 9.52725e-06 9.55397e-06 9.55753e-06 9.5448e-06 9.52186e-06 9.49256e-06 9.45899e-06 9.42275e-06 9.38491e-06 9.34657e-06 9.30899e-06 9.27338e-06 9.24077e-06 9.21193e-06 9.18721e-06 9.1666e-06 9.14995e-06 9.13694e-06 9.12703e-06 9.11962e-06 9.11458e-06 9.11221e-06 9.11256e-06 9.1256e-06 9.11427e-06 9.11536e-06 9.11359e-06 9.11253e-06 9.1119e-06 9.11151e-06 9.11131e-06 9.11126e-06 9.11132e-06 9.11144e-06 9.11159e-06 9.11176e-06 9.11189e-06 9.11198e-06 9.11201e-06 9.11196e-06 9.11182e-06 9.11159e-06 9.11126e-06 9.11086e-06 9.11047e-06 9.11008e-06 9.10967e-06 9.10926e-06 9.10892e-06 9.10859e-06 9.10847e-06 9.10859e-06 9.10882e-06 9.10916e-06 9.1096e-06 9.11021e-06 9.11097e-06 9.11188e-06 9.11297e-06 9.11421e-06 9.11559e-06 9.117e-06 9.11826e-06 9.11935e-06 9.12024e-06 9.12094e-06 9.12146e-06 9.12177e-06 9.12175e-06 9.12149e-06 9.12085e-06 9.11974e-06 9.11794e-06 9.11453e-06 9.10872e-06 9.09921e-06 9.08719e-06 9.06863e-06 9.0469e-06 9.02932e-06 9.1274e-06 8.88931e-06 4.26686e-06 1.50104e-05 0.000606465 0.00158185 0.00178162 0.00147919 0.000859994 0.00172659 0.0018048 0.00143851 7.24969e-05 1.61253e-06 8.49888e-06 9.42414e-06 9.15925e-06 9.1436e-06 9.17628e-06 9.20596e-06 9.21456e-06 9.19803e-06 9.17841e-06 9.17943e-06 9.20153e-06 9.22554e-06 9.23233e-06 9.22125e-06 9.20553e-06 9.1974e-06 9.21542e-06 9.24997e-06 9.27506e-06 9.28097e-06 9.28076e-06 9.29399e-06 9.33218e-06 9.38953e-06 9.44784e-06 9.48979e-06 9.5083e-06 9.50596e-06 9.48924e-06 9.46384e-06 9.43324e-06 9.39976e-06 9.36476e-06 9.32939e-06 9.29472e-06 9.26174e-06 9.23138e-06 9.20441e-06 9.18122e-06 9.16185e-06 9.14625e-06 9.13413e-06 9.12485e-06 9.11817e-06 9.11366e-06 9.11224e-06 9.11165e-06 9.11155e-06 9.12675e-06 9.1149e-06 9.11619e-06 9.11428e-06 9.11318e-06 9.1125e-06 9.11207e-06 9.11185e-06 9.1118e-06 9.11186e-06 9.11201e-06 9.1122e-06 9.11241e-06 9.1126e-06 9.11274e-06 9.11283e-06 9.11283e-06 9.11273e-06 9.11254e-06 9.11225e-06 9.11186e-06 9.11145e-06 9.11107e-06 9.11067e-06 9.11024e-06 9.10989e-06 9.10954e-06 9.10927e-06 9.10925e-06 9.10938e-06 9.10962e-06 9.10992e-06 9.11035e-06 9.11092e-06 9.11167e-06 9.11254e-06 9.1136e-06 9.11479e-06 9.11611e-06 9.11736e-06 9.11844e-06 9.11933e-06 9.12005e-06 9.12055e-06 9.12086e-06 9.12086e-06 9.12055e-06 9.11987e-06 9.11866e-06 9.1166e-06 9.11277e-06 9.10628e-06 9.09721e-06 9.08413e-06 9.06732e-06 9.04513e-06 9.02507e-06 9.11148e-06 8.93415e-06 4.57821e-06 1.37347e-05 0.000589162 0.00157041 0.00177716 0.00151095 0.000124222 0.000942757 0.00166805 0.0017888 0.00147884 1.24204e-06 7.80944e-06 9.46576e-06 9.17746e-06 9.13422e-06 9.15079e-06 9.17625e-06 9.20365e-06 9.21086e-06 9.19479e-06 9.17596e-06 9.1753e-06 9.19262e-06 9.21037e-06 9.21389e-06 9.20421e-06 9.18867e-06 9.19035e-06 9.21845e-06 9.25512e-06 9.27729e-06 9.28213e-06 9.28095e-06 9.29139e-06 9.32345e-06 9.37159e-06 9.41947e-06 9.45201e-06 9.4633e-06 9.4561e-06 9.43649e-06 9.4096e-06 9.37891e-06 9.34643e-06 9.31359e-06 9.28147e-06 9.25094e-06 9.22274e-06 9.19757e-06 9.17584e-06 9.15763e-06 9.14308e-06 9.13177e-06 9.12313e-06 9.11711e-06 9.11324e-06 9.11169e-06 9.11143e-06 9.11074e-06 9.11049e-06 9.128e-06 9.1156e-06 9.11705e-06 9.115e-06 9.11385e-06 9.11313e-06 9.11266e-06 9.11241e-06 9.11235e-06 9.11242e-06 9.11259e-06 9.11281e-06 9.11306e-06 9.1133e-06 9.11351e-06 9.11365e-06 9.11371e-06 9.11366e-06 9.11352e-06 9.11327e-06 9.11291e-06 9.1125e-06 9.11212e-06 9.11174e-06 9.11131e-06 9.11094e-06 9.1106e-06 9.11023e-06 9.11005e-06 9.11007e-06 9.11019e-06 9.11038e-06 9.11066e-06 9.11103e-06 9.11159e-06 9.11227e-06 9.1131e-06 9.11411e-06 9.11525e-06 9.11641e-06 9.1175e-06 9.1184e-06 9.11913e-06 9.11963e-06 9.11992e-06 9.11993e-06 9.11959e-06 9.11889e-06 9.11758e-06 9.11521e-06 9.111e-06 9.10383e-06 9.09519e-06 9.08139e-06 9.06601e-06 9.04339e-06 9.02127e-06 9.09786e-06 8.96708e-06 4.84875e-06 1.28705e-05 0.000575306 0.00156161 0.00177419 0.00153858 1.11351e-06 0.000180322 0.00083227 0.00163832 0.00178049 0.00151092 6.79561e-06 9.44586e-06 9.19747e-06 9.13947e-06 9.14381e-06 9.15131e-06 9.17446e-06 9.19983e-06 9.20621e-06 9.19084e-06 9.17328e-06 9.17155e-06 9.18422e-06 9.19682e-06 9.19806e-06 9.1863e-06 9.17643e-06 9.18918e-06 9.22362e-06 9.25784e-06 9.27773e-06 9.28128e-06 9.27893e-06 9.28651e-06 9.31259e-06 9.35199e-06 9.39029e-06 9.41437e-06 9.41949e-06 9.40851e-06 9.38697e-06 9.35971e-06 9.32981e-06 9.29923e-06 9.26929e-06 9.24091e-06 9.21472e-06 9.19128e-06 9.17097e-06 9.15389e-06 9.14036e-06 9.12971e-06 9.12178e-06 9.11636e-06 9.11284e-06 9.11116e-06 9.11071e-06 9.11029e-06 9.10962e-06 9.1094e-06 9.12938e-06 9.11645e-06 9.11799e-06 9.11575e-06 9.11455e-06 9.1138e-06 9.11329e-06 9.11301e-06 9.11292e-06 9.11299e-06 9.11317e-06 9.11342e-06 9.11371e-06 9.114e-06 9.11426e-06 9.11447e-06 9.11459e-06 9.11461e-06 9.11452e-06 9.11433e-06 9.11402e-06 9.11362e-06 9.11323e-06 9.11287e-06 9.11246e-06 9.11207e-06 9.11175e-06 9.11135e-06 9.11103e-06 9.1109e-06 9.11088e-06 9.11097e-06 9.11111e-06 9.11131e-06 9.11165e-06 9.11212e-06 9.11273e-06 9.11353e-06 9.11447e-06 9.11548e-06 9.11653e-06 9.11748e-06 9.11819e-06 9.1187e-06 9.11895e-06 9.11895e-06 9.11859e-06 9.11783e-06 9.11642e-06 9.11368e-06 9.10904e-06 9.10175e-06 9.09295e-06 9.07955e-06 9.06442e-06 9.04203e-06 9.01818e-06 9.08579e-06 8.99124e-06 5.08536e-06 1.22781e-05 0.000564286 0.00155484 0.00177245 0.0015626 5.54306e-06 1.30376e-06 0.00011155 0.00077782 0.00161412 0.00177369 0.00153884 9.35475e-06 9.20899e-06 9.14399e-06 9.14975e-06 9.1453e-06 9.14995e-06 9.17189e-06 9.19563e-06 9.20109e-06 9.18694e-06 9.17079e-06 9.16762e-06 9.17646e-06 9.18454e-06 9.18213e-06 9.17095e-06 9.17027e-06 9.1921e-06 9.22733e-06 9.25888e-06 9.27643e-06 9.27848e-06 9.27485e-06 9.27954e-06 9.29989e-06 9.33117e-06 9.36072e-06 9.37737e-06 9.3774e-06 9.36364e-06 9.34122e-06 9.31447e-06 9.2862e-06 9.25823e-06 9.2317e-06 9.20728e-06 9.18545e-06 9.1665e-06 9.15056e-06 9.13796e-06 9.12789e-06 9.12072e-06 9.11571e-06 9.11235e-06 9.1105e-06 9.11002e-06 9.10961e-06 9.10911e-06 9.1085e-06 9.10832e-06 9.13094e-06 9.11754e-06 9.11911e-06 9.11658e-06 9.11528e-06 9.11449e-06 9.11396e-06 9.11365e-06 9.11354e-06 9.11359e-06 9.11377e-06 9.11404e-06 9.11436e-06 9.1147e-06 9.11502e-06 9.11529e-06 9.11548e-06 9.11557e-06 9.11555e-06 9.11542e-06 9.11518e-06 9.11481e-06 9.11441e-06 9.11406e-06 9.11369e-06 9.11329e-06 9.11297e-06 9.1126e-06 9.1122e-06 9.11191e-06 9.11174e-06 9.11169e-06 9.1117e-06 9.11175e-06 9.11187e-06 9.11213e-06 9.11251e-06 9.11308e-06 9.11381e-06 9.11464e-06 9.11556e-06 9.11651e-06 9.11725e-06 9.11774e-06 9.11796e-06 9.11792e-06 9.11753e-06 9.11669e-06 9.11512e-06 9.11205e-06 9.1069e-06 9.1e-06 9.09053e-06 9.0787e-06 9.06308e-06 9.04105e-06 9.01595e-06 9.07504e-06 9.00937e-06 5.28923e-06 1.18689e-05 0.00055549 0.00154979 0.00177165 0.00158401 9.1666e-06 4.68474e-06 1.51878e-06 8.28977e-05 0.000731763 0.00159562 0.00176913 0.00156316 9.21754e-06 9.13689e-06 9.15455e-06 9.15313e-06 9.14433e-06 9.14878e-06 9.1693e-06 9.19112e-06 9.19626e-06 9.18314e-06 9.16763e-06 9.16348e-06 9.16882e-06 9.17294e-06 9.16749e-06 9.16113e-06 9.16878e-06 9.19589e-06 9.22948e-06 9.25841e-06 9.27331e-06 9.27374e-06 9.26885e-06 9.27072e-06 9.28567e-06 9.30948e-06 9.33125e-06 9.34151e-06 9.33749e-06 9.32197e-06 9.29957e-06 9.27414e-06 9.24821e-06 9.22334e-06 9.20045e-06 9.18004e-06 9.16236e-06 9.14756e-06 9.13574e-06 9.1263e-06 9.11985e-06 9.11505e-06 9.11176e-06 9.10983e-06 9.10931e-06 9.10898e-06 9.1085e-06 9.10803e-06 9.10748e-06 9.10742e-06 9.13271e-06 9.11889e-06 9.12045e-06 9.11758e-06 9.1161e-06 9.11522e-06 9.11464e-06 9.11433e-06 9.1142e-06 9.11423e-06 9.1144e-06 9.11467e-06 9.11502e-06 9.11539e-06 9.11576e-06 9.1161e-06 9.11636e-06 9.11652e-06 9.11658e-06 9.11652e-06 9.11635e-06 9.11605e-06 9.11567e-06 9.11531e-06 9.11498e-06 9.11461e-06 9.11427e-06 9.11395e-06 9.11352e-06 9.11312e-06 9.11278e-06 9.11255e-06 9.11241e-06 9.11232e-06 9.11225e-06 9.11229e-06 9.11246e-06 9.11278e-06 9.11328e-06 9.11394e-06 9.11467e-06 9.11551e-06 9.11626e-06 9.11676e-06 9.11695e-06 9.11685e-06 9.11642e-06 9.11549e-06 9.11371e-06 9.11037e-06 9.1048e-06 9.09835e-06 9.08828e-06 9.07817e-06 9.06248e-06 9.04014e-06 9.01422e-06 9.06545e-06 9.02268e-06 5.4664e-06 1.15906e-05 0.000548555 0.00154602 0.00177164 0.00160334 9.23808e-06 8.97621e-06 6.17471e-06 1.93922e-06 6.13396e-05 0.000696402 0.0015813 0.00176606 0.00158481 9.11982e-06 9.14771e-06 9.15984e-06 9.15266e-06 9.14396e-06 9.14759e-06 9.16647e-06 9.18718e-06 9.19133e-06 9.1786e-06 9.16398e-06 9.15917e-06 9.16199e-06 9.16209e-06 9.15713e-06 9.15573e-06 9.17107e-06 9.19835e-06 9.23032e-06 9.25614e-06 9.26825e-06 9.26724e-06 9.26111e-06 9.26032e-06 9.27028e-06 9.28744e-06 9.30234e-06 9.30725e-06 9.30024e-06 9.28389e-06 9.26233e-06 9.2389e-06 9.21577e-06 9.19427e-06 9.17509e-06 9.15851e-06 9.14478e-06 9.13362e-06 9.12495e-06 9.11902e-06 9.11433e-06 9.11115e-06 9.1092e-06 9.10866e-06 9.10836e-06 9.10794e-06 9.10751e-06 9.1071e-06 9.10668e-06 9.10691e-06 9.13463e-06 9.12042e-06 9.12199e-06 9.11882e-06 9.11711e-06 9.11604e-06 9.11537e-06 9.11503e-06 9.11489e-06 9.11491e-06 9.11506e-06 9.11533e-06 9.11569e-06 9.11609e-06 9.11651e-06 9.1169e-06 9.11723e-06 9.11747e-06 9.11761e-06 9.11762e-06 9.11754e-06 9.11732e-06 9.117e-06 9.11664e-06 9.11633e-06 9.116e-06 9.11567e-06 9.11536e-06 9.11496e-06 9.11449e-06 9.11404e-06 9.11361e-06 9.11327e-06 9.11303e-06 9.11279e-06 9.11262e-06 9.11258e-06 9.11265e-06 9.1129e-06 9.11335e-06 9.11394e-06 9.11455e-06 9.11522e-06 9.11574e-06 9.11594e-06 9.11578e-06 9.11531e-06 9.11428e-06 9.11219e-06 9.1085e-06 9.10304e-06 9.0966e-06 9.08674e-06 9.07722e-06 9.06233e-06 9.03964e-06 9.01281e-06 9.0566e-06 9.03141e-06 5.62119e-06 1.14021e-05 0.000543148 0.00154338 0.00177226 0.00162099 9.10807e-06 9.25177e-06 9.18678e-06 6.84608e-06 2.38194e-06 4.78046e-05 0.000668604 0.00157012 0.00176427 0.00160436 9.12899e-06 9.1545e-06 9.15972e-06 9.15255e-06 9.14335e-06 9.14615e-06 9.16434e-06 9.18292e-06 9.18587e-06 9.17368e-06 9.16029e-06 9.15532e-06 9.15556e-06 9.15396e-06 9.15045e-06 9.15557e-06 9.17266e-06 9.19975e-06 9.22947e-06 9.25195e-06 9.2615e-06 9.25915e-06 9.25186e-06 9.24862e-06 9.25422e-06 9.26544e-06 9.27442e-06 9.27515e-06 9.26607e-06 9.24975e-06 9.22969e-06 9.20869e-06 9.18867e-06 9.17061e-06 9.15499e-06 9.14218e-06 9.13159e-06 9.1238e-06 9.11816e-06 9.1136e-06 9.11057e-06 9.10863e-06 9.10805e-06 9.10779e-06 9.10741e-06 9.10702e-06 9.10666e-06 9.10636e-06 9.10625e-06 9.1064e-06 9.1364e-06 9.12197e-06 9.12361e-06 9.12026e-06 9.11837e-06 9.11706e-06 9.11619e-06 9.11576e-06 9.11561e-06 9.11563e-06 9.11578e-06 9.11603e-06 9.11638e-06 9.1168e-06 9.11725e-06 9.11769e-06 9.11809e-06 9.1184e-06 9.11862e-06 9.11873e-06 9.11872e-06 9.11862e-06 9.11838e-06 9.11806e-06 9.11775e-06 9.11746e-06 9.11715e-06 9.11686e-06 9.11649e-06 9.11601e-06 9.11548e-06 9.1149e-06 9.11435e-06 9.1139e-06 9.1135e-06 9.11314e-06 9.11287e-06 9.1127e-06 9.11269e-06 9.11287e-06 9.11325e-06 9.11372e-06 9.11421e-06 9.11467e-06 9.11489e-06 9.11475e-06 9.11423e-06 9.1131e-06 9.11065e-06 9.10656e-06 9.10156e-06 9.09469e-06 9.08609e-06 9.07618e-06 9.0624e-06 9.04e-06 9.01132e-06 9.04797e-06 9.03549e-06 5.75824e-06 1.12767e-05 0.00053896 0.00154163 0.00177337 0.00163729 9.11224e-06 9.10891e-06 9.17465e-06 9.1942e-06 7.4107e-06 2.8404e-06 3.89118e-05 0.000646427 0.00156149 0.00176347 0.00162221 9.13838e-06 9.15528e-06 9.15958e-06 9.15196e-06 9.14239e-06 9.14508e-06 9.16181e-06 9.17832e-06 9.18017e-06 9.16874e-06 9.1566e-06 9.1514e-06 9.15022e-06 9.14849e-06 9.14827e-06 9.15604e-06 9.17351e-06 9.19982e-06 9.22698e-06 9.24612e-06 9.25328e-06 9.24969e-06 9.24135e-06 9.23607e-06 9.23781e-06 9.24384e-06 9.24814e-06 9.24555e-06 9.23534e-06 9.21974e-06 9.20161e-06 9.1834e-06 9.16655e-06 9.15181e-06 9.13973e-06 9.12973e-06 9.12276e-06 9.11726e-06 9.1129e-06 9.11006e-06 9.10813e-06 9.1075e-06 9.10724e-06 9.10691e-06 9.10656e-06 9.10625e-06 9.10599e-06 9.10596e-06 9.10579e-06 9.1067e-06 9.13773e-06 9.12323e-06 9.12512e-06 9.12179e-06 9.11986e-06 9.11833e-06 9.11721e-06 9.1166e-06 9.11636e-06 9.11638e-06 9.11653e-06 9.11678e-06 9.11712e-06 9.11754e-06 9.118e-06 9.11848e-06 9.11894e-06 9.11932e-06 9.11962e-06 9.11982e-06 9.11991e-06 9.1199e-06 9.11978e-06 9.11954e-06 9.11926e-06 9.11899e-06 9.11872e-06 9.11844e-06 9.11811e-06 9.11764e-06 9.11709e-06 9.11642e-06 9.11569e-06 9.11501e-06 9.11439e-06 9.11383e-06 9.11335e-06 9.11295e-06 9.11267e-06 9.11255e-06 9.11266e-06 9.11292e-06 9.11331e-06 9.1136e-06 9.11376e-06 9.11369e-06 9.11314e-06 9.11182e-06 9.10909e-06 9.10482e-06 9.10008e-06 9.09295e-06 9.08582e-06 9.076e-06 9.06285e-06 9.04123e-06 9.00951e-06 9.03916e-06 9.03488e-06 5.8787e-06 1.12099e-05 0.000535782 0.00154061 0.00177486 0.00165248 9.12489e-06 9.10997e-06 9.09127e-06 9.13823e-06 9.19417e-06 7.79069e-06 3.2676e-06 3.29287e-05 0.000628762 0.00155486 0.00176349 0.00163873 9.14135e-06 9.15562e-06 9.15887e-06 9.15086e-06 9.14122e-06 9.14374e-06 9.15908e-06 9.17347e-06 9.17425e-06 9.16348e-06 9.1525e-06 9.14732e-06 9.14638e-06 9.14574e-06 9.14856e-06 9.15603e-06 9.17362e-06 9.19891e-06 9.22296e-06 9.23885e-06 9.24377e-06 9.23906e-06 9.2299e-06 9.22293e-06 9.22132e-06 9.2233e-06 9.22369e-06 9.2188e-06 9.20826e-06 9.19387e-06 9.17805e-06 9.16269e-06 9.14891e-06 9.13746e-06 9.12811e-06 9.12171e-06 9.11637e-06 9.11227e-06 9.10958e-06 9.1077e-06 9.107e-06 9.10673e-06 9.10643e-06 9.10613e-06 9.10587e-06 9.10564e-06 9.10561e-06 9.1055e-06 9.10608e-06 9.10583e-06 9.13822e-06 9.12363e-06 9.12621e-06 9.12323e-06 9.12148e-06 9.11987e-06 9.11851e-06 9.11764e-06 9.11722e-06 9.11716e-06 9.11731e-06 9.11757e-06 9.11791e-06 9.11831e-06 9.11878e-06 9.11928e-06 9.11978e-06 9.12023e-06 9.12061e-06 9.12089e-06 9.12108e-06 9.12118e-06 9.12118e-06 9.12106e-06 9.12085e-06 9.12061e-06 9.12037e-06 9.12011e-06 9.11982e-06 9.11939e-06 9.11882e-06 9.11812e-06 9.11728e-06 9.11637e-06 9.1155e-06 9.11471e-06 9.114e-06 9.11339e-06 9.11287e-06 9.11247e-06 9.11226e-06 9.11227e-06 9.11244e-06 9.11263e-06 9.11264e-06 9.11254e-06 9.11195e-06 9.1104e-06 9.10747e-06 9.10341e-06 9.09842e-06 9.09175e-06 9.08558e-06 9.07704e-06 9.06395e-06 9.04286e-06 9.00797e-06 9.03012e-06 9.03e-06 5.984e-06 1.1188e-05 0.000533528 0.00154019 0.00177669 0.00166675 9.1305e-06 9.12413e-06 9.10923e-06 9.08507e-06 9.10565e-06 9.17502e-06 8.06375e-06 3.66e-06 2.88279e-05 0.000614608 0.00154986 0.00176412 0.00165411 9.14357e-06 9.1554e-06 9.1578e-06 9.14925e-06 9.13992e-06 9.14229e-06 9.15605e-06 9.16828e-06 9.168e-06 9.15781e-06 9.14772e-06 9.14373e-06 9.14414e-06 9.14675e-06 9.1485e-06 9.15581e-06 9.1735e-06 9.19676e-06 9.21753e-06 9.23029e-06 9.23317e-06 9.22748e-06 9.21777e-06 9.20942e-06 9.2053e-06 9.20391e-06 9.2014e-06 9.19513e-06 9.18492e-06 9.17211e-06 9.15871e-06 9.14614e-06 9.13536e-06 9.12674e-06 9.12063e-06 9.11553e-06 9.11169e-06 9.10914e-06 9.10732e-06 9.10657e-06 9.10625e-06 9.106e-06 9.10574e-06 9.10551e-06 9.10529e-06 9.10527e-06 9.10518e-06 9.10579e-06 9.10529e-06 9.10836e-06 9.13735e-06 9.12238e-06 9.12633e-06 9.1242e-06 9.12302e-06 9.12156e-06 9.1201e-06 9.11898e-06 9.11829e-06 9.11804e-06 9.11813e-06 9.11839e-06 9.11874e-06 9.11914e-06 9.1196e-06 9.1201e-06 9.12062e-06 9.12112e-06 9.12157e-06 9.12195e-06 9.12224e-06 9.12245e-06 9.12256e-06 9.12259e-06 9.1225e-06 9.12232e-06 9.12211e-06 9.12187e-06 9.12162e-06 9.12123e-06 9.12067e-06 9.11995e-06 9.11906e-06 9.118e-06 9.11688e-06 9.11581e-06 9.11484e-06 9.114e-06 9.11327e-06 9.11264e-06 9.11213e-06 9.11185e-06 9.11173e-06 9.11171e-06 9.11166e-06 9.11137e-06 9.1106e-06 9.10888e-06 9.10588e-06 9.10207e-06 9.09686e-06 9.09122e-06 9.08551e-06 9.0786e-06 9.06547e-06 9.04422e-06 9.00767e-06 9.02183e-06 9.0212e-06 6.07933e-06 1.12064e-05 0.000531985 0.00154031 0.00177879 0.00168024 9.13422e-06 9.13086e-06 9.12379e-06 9.10699e-06 9.07804e-06 9.08178e-06 9.15314e-06 8.26004e-06 4.01167e-06 2.59431e-05 0.000603307 0.00154617 0.00176527 0.00166862 9.14479e-06 9.15493e-06 9.15632e-06 9.1475e-06 9.13854e-06 9.14059e-06 9.15281e-06 9.16286e-06 9.16149e-06 9.15163e-06 9.14286e-06 9.14162e-06 9.14547e-06 9.1477e-06 9.14837e-06 9.15578e-06 9.17257e-06 9.19333e-06 9.21083e-06 9.22067e-06 9.22164e-06 9.21523e-06 9.20521e-06 9.19592e-06 9.18987e-06 9.18598e-06 9.18153e-06 9.17479e-06 9.16526e-06 9.15429e-06 9.14328e-06 9.13339e-06 9.12553e-06 9.11957e-06 9.11477e-06 9.11115e-06 9.10872e-06 9.10698e-06 9.10617e-06 9.10581e-06 9.10561e-06 9.10538e-06 9.10518e-06 9.10497e-06 9.10495e-06 9.10488e-06 9.10547e-06 9.10505e-06 9.10768e-06 9.10463e-06 9.13451e-06 9.11899e-06 9.12475e-06 9.1241e-06 9.12404e-06 9.12316e-06 9.12187e-06 9.12063e-06 9.11968e-06 9.11915e-06 9.11904e-06 9.11924e-06 9.11961e-06 9.12002e-06 9.12047e-06 9.12096e-06 9.12148e-06 9.12202e-06 9.12253e-06 9.12298e-06 9.12337e-06 9.12369e-06 9.12393e-06 9.1241e-06 9.12418e-06 9.12411e-06 9.12395e-06 9.12374e-06 9.12351e-06 9.12317e-06 9.12263e-06 9.1219e-06 9.12099e-06 9.11984e-06 9.11854e-06 9.11719e-06 9.11592e-06 9.11481e-06 9.11384e-06 9.113e-06 9.11227e-06 9.11169e-06 9.11128e-06 9.11097e-06 9.11073e-06 9.11026e-06 9.10925e-06 9.10734e-06 9.10442e-06 9.10069e-06 9.0957e-06 9.09133e-06 9.08593e-06 9.07953e-06 9.06665e-06 9.04513e-06 9.00929e-06 9.01551e-06 9.00904e-06 6.16147e-06 1.12537e-05 0.000531151 0.00154086 0.00178111 0.00169303 9.1365e-06 9.13427e-06 9.13065e-06 9.12197e-06 9.10272e-06 9.07257e-06 9.06325e-06 9.13081e-06 8.40466e-06 4.32575e-06 2.38882e-05 0.000594298 0.00154354 0.00176681 0.00168231 9.14529e-06 9.15419e-06 9.15457e-06 9.14562e-06 9.13703e-06 9.13899e-06 9.1494e-06 9.15735e-06 9.15482e-06 9.14533e-06 9.13951e-06 9.14175e-06 9.1475e-06 9.14832e-06 9.14825e-06 9.15528e-06 9.17065e-06 9.18876e-06 9.20306e-06 9.21014e-06 9.20949e-06 9.20263e-06 9.19245e-06 9.18269e-06 9.17533e-06 9.16979e-06 9.16447e-06 9.15763e-06 9.14922e-06 9.14011e-06 9.13144e-06 9.12435e-06 9.11859e-06 9.11409e-06 9.11064e-06 9.10831e-06 9.10666e-06 9.10581e-06 9.10541e-06 9.10525e-06 9.10505e-06 9.10485e-06 9.10466e-06 9.10466e-06 9.1046e-06 9.10517e-06 9.10478e-06 9.10734e-06 9.1043e-06 9.11208e-06 9.12942e-06 9.11393e-06 9.12097e-06 9.12218e-06 9.12383e-06 9.12417e-06 9.12354e-06 9.12249e-06 9.12142e-06 9.1206e-06 9.1202e-06 9.1202e-06 9.1205e-06 9.12093e-06 9.1214e-06 9.12188e-06 9.12239e-06 9.12292e-06 9.12347e-06 9.12399e-06 9.12447e-06 9.1249e-06 9.12527e-06 9.12558e-06 9.12583e-06 9.12594e-06 9.1259e-06 9.12574e-06 9.12551e-06 9.12521e-06 9.1247e-06 9.12397e-06 9.12302e-06 9.12185e-06 9.12043e-06 9.11886e-06 9.11729e-06 9.11585e-06 9.11458e-06 9.11351e-06 9.11258e-06 9.11176e-06 9.1111e-06 9.11053e-06 9.10997e-06 9.10923e-06 9.10802e-06 9.10605e-06 9.10321e-06 9.09937e-06 9.09508e-06 9.09174e-06 9.08678e-06 9.07935e-06 9.06714e-06 9.04591e-06 9.01236e-06 9.01099e-06 8.99475e-06 6.23532e-06 1.13329e-05 0.000530889 0.00154179 0.00178353 0.00170539 9.13784e-06 9.13652e-06 9.13417e-06 9.12911e-06 9.11845e-06 9.09859e-06 9.06716e-06 9.0499e-06 9.11116e-06 8.51258e-06 4.60262e-06 2.24019e-05 0.00058718 0.00154176 0.00176866 0.00169533 9.1454e-06 9.15303e-06 9.15261e-06 9.14365e-06 9.1358e-06 9.13722e-06 9.14606e-06 9.15183e-06 9.14816e-06 9.13995e-06 9.13726e-06 9.14365e-06 9.14898e-06 9.14841e-06 9.14774e-06 9.15412e-06 9.16788e-06 9.18319e-06 9.19441e-06 9.199e-06 9.19706e-06 9.18987e-06 9.1799e-06 9.17005e-06 9.16196e-06 9.15575e-06 9.15006e-06 9.14365e-06 9.13652e-06 9.12937e-06 9.12309e-06 9.11769e-06 9.11345e-06 9.11017e-06 9.10794e-06 9.10635e-06 9.10547e-06 9.10507e-06 9.10492e-06 9.10473e-06 9.10455e-06 9.10438e-06 9.10439e-06 9.10435e-06 9.10489e-06 9.10453e-06 9.107e-06 9.10415e-06 9.1113e-06 9.12273e-06 9.10887e-06 9.11549e-06 9.11811e-06 9.12167e-06 9.12383e-06 9.12455e-06 9.12424e-06 9.12338e-06 9.12244e-06 9.12172e-06 9.1214e-06 9.1215e-06 9.12187e-06 9.12236e-06 9.12286e-06 9.12335e-06 9.12387e-06 9.12442e-06 9.12499e-06 9.12555e-06 9.12608e-06 9.12658e-06 9.12703e-06 9.12745e-06 9.12776e-06 9.12791e-06 9.12785e-06 9.12765e-06 9.12735e-06 9.12688e-06 9.12616e-06 9.12518e-06 9.12397e-06 9.1225e-06 9.12079e-06 9.11898e-06 9.1172e-06 9.11556e-06 9.11418e-06 9.11302e-06 9.112e-06 9.11116e-06 9.11036e-06 9.10952e-06 9.10854e-06 9.10712e-06 9.10509e-06 9.10216e-06 9.09839e-06 9.09514e-06 9.09203e-06 9.08746e-06 9.07887e-06 9.06746e-06 9.04708e-06 9.01553e-06 9.00804e-06 8.98044e-06 6.30075e-06 1.14362e-05 0.000531152 0.00154304 0.00178615 0.00171722 9.13866e-06 9.13784e-06 9.13633e-06 9.13283e-06 9.1269e-06 9.11557e-06 9.09397e-06 9.06176e-06 9.04094e-06 9.09544e-06 8.5949e-06 4.84679e-06 2.1322e-05 0.000581557 0.00154075 0.00177082 0.00170777 9.14518e-06 9.15174e-06 9.15053e-06 9.14187e-06 9.13438e-06 9.13564e-06 9.14267e-06 9.14631e-06 9.14167e-06 9.13524e-06 9.1372e-06 9.14522e-06 9.14956e-06 9.14796e-06 9.14679e-06 9.15244e-06 9.16426e-06 9.17679e-06 9.18513e-06 9.18759e-06 9.18462e-06 9.17739e-06 9.16787e-06 9.15823e-06 9.15009e-06 9.14382e-06 9.13822e-06 9.13265e-06 9.12705e-06 9.12165e-06 9.11678e-06 9.11283e-06 9.10972e-06 9.10758e-06 9.10607e-06 9.10518e-06 9.10479e-06 9.10462e-06 9.10444e-06 9.10428e-06 9.10413e-06 9.10415e-06 9.10411e-06 9.10463e-06 9.1043e-06 9.10668e-06 9.10398e-06 9.11074e-06 9.11625e-06 9.10585e-06 9.10995e-06 9.11261e-06 9.11741e-06 9.12143e-06 9.12409e-06 9.12528e-06 9.12523e-06 9.12452e-06 9.12366e-06 9.123e-06 9.12276e-06 9.12292e-06 9.12335e-06 9.12387e-06 9.12438e-06 9.12488e-06 9.12542e-06 9.126e-06 9.12661e-06 9.12723e-06 9.12786e-06 9.12845e-06 9.12901e-06 9.12953e-06 9.12991e-06 9.13005e-06 9.12993e-06 9.12964e-06 9.12919e-06 9.12848e-06 9.12748e-06 9.12621e-06 9.12469e-06 9.12292e-06 9.12094e-06 9.11887e-06 9.11687e-06 9.11511e-06 9.11362e-06 9.11238e-06 9.11134e-06 9.11038e-06 9.10936e-06 9.10821e-06 9.10663e-06 9.10427e-06 9.10122e-06 9.09805e-06 9.09559e-06 9.09212e-06 9.08759e-06 9.07926e-06 9.06852e-06 9.04914e-06 9.0178e-06 9.00746e-06 8.96834e-06 6.35987e-06 1.15567e-05 0.000531875 0.00154452 0.00178891 0.00172859 9.13918e-06 9.13859e-06 9.1377e-06 9.13521e-06 9.13111e-06 9.12508e-06 9.1126e-06 9.08964e-06 9.05664e-06 9.03484e-06 9.08187e-06 8.65865e-06 5.0604e-06 2.05211e-05 0.000577229 0.00154029 0.00177318 0.00171974 9.14479e-06 9.15032e-06 9.14834e-06 9.13992e-06 9.13311e-06 9.1339e-06 9.13916e-06 9.14064e-06 9.13569e-06 9.13239e-06 9.13767e-06 9.14598e-06 9.14943e-06 9.14704e-06 9.14547e-06 9.15012e-06 9.15993e-06 9.16976e-06 9.17552e-06 9.17623e-06 9.17251e-06 9.1655e-06 9.1566e-06 9.14746e-06 9.13987e-06 9.13385e-06 9.12896e-06 9.12451e-06 9.12e-06 9.11579e-06 9.11219e-06 9.10929e-06 9.10725e-06 9.10581e-06 9.10493e-06 9.10454e-06 9.10435e-06 9.10417e-06 9.10403e-06 9.1039e-06 9.10392e-06 9.10389e-06 9.10439e-06 9.10409e-06 9.10637e-06 9.10381e-06 9.1102e-06 9.1124e-06 9.10576e-06 9.10642e-06 9.1075e-06 9.11212e-06 9.11701e-06 9.12149e-06 9.12475e-06 9.12629e-06 9.12645e-06 9.12586e-06 9.12504e-06 9.12444e-06 9.12424e-06 9.12445e-06 9.12491e-06 9.12545e-06 9.12597e-06 9.12648e-06 9.12703e-06 9.12767e-06 9.12836e-06 9.1291e-06 9.12983e-06 9.13054e-06 9.13125e-06 9.13186e-06 9.13226e-06 9.13234e-06 9.13211e-06 9.13167e-06 9.13096e-06 9.12993e-06 9.1286e-06 9.127e-06 9.12517e-06 9.12309e-06 9.12082e-06 9.11853e-06 9.11639e-06 9.1145e-06 9.11293e-06 9.11161e-06 9.11042e-06 9.10932e-06 9.10805e-06 9.10631e-06 9.10364e-06 9.10069e-06 9.09828e-06 9.09597e-06 9.0922e-06 9.08761e-06 9.08094e-06 9.07091e-06 9.05244e-06 9.01937e-06 9.00879e-06 8.95895e-06 6.41134e-06 1.16949e-05 0.000532912 0.00154618 0.00179173 0.00173956 9.13926e-06 9.13892e-06 9.13852e-06 9.13674e-06 9.13371e-06 9.12965e-06 9.12315e-06 9.10966e-06 9.08616e-06 9.05239e-06 9.02999e-06 9.07034e-06 8.70772e-06 5.2471e-06 1.99183e-05 0.000573921 0.00154033 0.00177572 0.00173127 9.14425e-06 9.14859e-06 9.14601e-06 9.13792e-06 9.13169e-06 9.13206e-06 9.13559e-06 9.13537e-06 9.13108e-06 9.13104e-06 9.13774e-06 9.14611e-06 9.1487e-06 9.14568e-06 9.14364e-06 9.14722e-06 9.15502e-06 9.16234e-06 9.16589e-06 9.16517e-06 9.16105e-06 9.15446e-06 9.14619e-06 9.13802e-06 9.13116e-06 9.12608e-06 9.12201e-06 9.11819e-06 9.11463e-06 9.11147e-06 9.10884e-06 9.10694e-06 9.10558e-06 9.10472e-06 9.10433e-06 9.1041e-06 9.10393e-06 9.1038e-06 9.10368e-06 9.10371e-06 9.10369e-06 9.10417e-06 9.1039e-06 9.10606e-06 9.10365e-06 9.10973e-06 9.11281e-06 9.10768e-06 9.10602e-06 9.10471e-06 9.10781e-06 9.11185e-06 9.11691e-06 9.12201e-06 9.12573e-06 9.12757e-06 9.1279e-06 9.12737e-06 9.12661e-06 9.12602e-06 9.12582e-06 9.12605e-06 9.12654e-06 9.12709e-06 9.12762e-06 9.12815e-06 9.12876e-06 9.12948e-06 9.1303e-06 9.13117e-06 9.13204e-06 9.13292e-06 9.13375e-06 9.13442e-06 9.13478e-06 9.13473e-06 9.13434e-06 9.13362e-06 9.13257e-06 9.13117e-06 9.12947e-06 9.12754e-06 9.12537e-06 9.12298e-06 9.1205e-06 9.11806e-06 9.11577e-06 9.11378e-06 9.11206e-06 9.11053e-06 9.10924e-06 9.10784e-06 9.10587e-06 9.10316e-06 9.10058e-06 9.0987e-06 9.09607e-06 9.09259e-06 9.08823e-06 9.08336e-06 9.07452e-06 9.05696e-06 9.02129e-06 9.01067e-06 8.95126e-06 6.45955e-06 1.18446e-05 0.000534153 0.00154795 0.00179457 0.00175026 9.13905e-06 9.13889e-06 9.13888e-06 9.13768e-06 9.1354e-06 9.13242e-06 9.12815e-06 9.12108e-06 9.10664e-06 9.08318e-06 9.04939e-06 9.02543e-06 9.05998e-06 8.74511e-06 5.41089e-06 1.94601e-05 0.000571532 0.00154076 0.00177838 0.00174242 9.14336e-06 9.14671e-06 9.14354e-06 9.13584e-06 9.13028e-06 9.13028e-06 9.13227e-06 9.13098e-06 9.12836e-06 9.12974e-06 9.13758e-06 9.14567e-06 9.14732e-06 9.1438e-06 9.14133e-06 9.14383e-06 9.1497e-06 9.15476e-06 9.15644e-06 9.15472e-06 9.15052e-06 9.1443e-06 9.13696e-06 9.12989e-06 9.12433e-06 9.11999e-06 9.11643e-06 9.11334e-06 9.11065e-06 9.10834e-06 9.10662e-06 9.10538e-06 9.10454e-06 9.10413e-06 9.10387e-06 9.10372e-06 9.1036e-06 9.10349e-06 9.10352e-06 9.10351e-06 9.10397e-06 9.10373e-06 9.10577e-06 9.1035e-06 9.10927e-06 9.11719e-06 9.10965e-06 9.10817e-06 9.10489e-06 9.10618e-06 9.10804e-06 9.1118e-06 9.11733e-06 9.12294e-06 9.12705e-06 9.12913e-06 9.12959e-06 9.12913e-06 9.12835e-06 9.12772e-06 9.12751e-06 9.12773e-06 9.12822e-06 9.12879e-06 9.12934e-06 9.12993e-06 9.13064e-06 9.1315e-06 9.13248e-06 9.13351e-06 9.13456e-06 9.13558e-06 9.13651e-06 9.13718e-06 9.13742e-06 9.13718e-06 9.1365e-06 9.13542e-06 9.13397e-06 9.13216e-06 9.13008e-06 9.12776e-06 9.12527e-06 9.12266e-06 9.12002e-06 9.11743e-06 9.11502e-06 9.11286e-06 9.11089e-06 9.10925e-06 9.10757e-06 9.10538e-06 9.1029e-06 9.10071e-06 9.09896e-06 9.09616e-06 9.09343e-06 9.08969e-06 9.08575e-06 9.07846e-06 9.06212e-06 9.02464e-06 9.01163e-06 8.94315e-06 6.50503e-06 1.2002e-05 0.000535577 0.00154972 0.00179746 0.00176067 9.13863e-06 9.1386e-06 9.13889e-06 9.13812e-06 9.13646e-06 9.13424e-06 9.13112e-06 9.12658e-06 9.11887e-06 9.10323e-06 9.07993e-06 9.04738e-06 9.02108e-06 9.05063e-06 8.77339e-06 5.55569e-06 1.91385e-05 0.000569857 0.00154149 0.00178117 0.00175321 9.14226e-06 9.14463e-06 9.14099e-06 9.13386e-06 9.12901e-06 9.1286e-06 9.12948e-06 9.12808e-06 9.12594e-06 9.12866e-06 9.13714e-06 9.14448e-06 9.14535e-06 9.14146e-06 9.13861e-06 9.14007e-06 9.14412e-06 9.14722e-06 9.1475e-06 9.14517e-06 9.14096e-06 9.13527e-06 9.12902e-06 9.12344e-06 9.11874e-06 9.11504e-06 9.1121e-06 9.10973e-06 9.10776e-06 9.10628e-06 9.10518e-06 9.10437e-06 9.10395e-06 9.10368e-06 9.10353e-06 9.10341e-06 9.10332e-06 9.10335e-06 9.10334e-06 9.10378e-06 9.10358e-06 9.1055e-06 9.10337e-06 9.10883e-06 9.12368e-06 9.11034e-06 9.11103e-06 9.10704e-06 9.10734e-06 9.10709e-06 9.10832e-06 9.11224e-06 9.11822e-06 9.12432e-06 9.12877e-06 9.13108e-06 9.13161e-06 9.1311e-06 9.13025e-06 9.12955e-06 9.12929e-06 9.12949e-06 9.12997e-06 9.13057e-06 9.13119e-06 9.13188e-06 9.13273e-06 9.13377e-06 9.13494e-06 9.13616e-06 9.13737e-06 9.13852e-06 9.13948e-06 9.14006e-06 9.1401e-06 9.13958e-06 9.13853e-06 9.13703e-06 9.13512e-06 9.13285e-06 9.13033e-06 9.12769e-06 9.12493e-06 9.12213e-06 9.11935e-06 9.11662e-06 9.11409e-06 9.11173e-06 9.10964e-06 9.10756e-06 9.10518e-06 9.10295e-06 9.10104e-06 9.09913e-06 9.09666e-06 9.0946e-06 9.09156e-06 9.08757e-06 9.08161e-06 9.06692e-06 9.0297e-06 9.01132e-06 8.9334e-06 6.54654e-06 1.2162e-05 0.0005371 0.00155154 0.00180038 0.00177077 9.13797e-06 9.13809e-06 9.13863e-06 9.13826e-06 9.13702e-06 9.1354e-06 9.13308e-06 9.12979e-06 9.12498e-06 9.11636e-06 9.09957e-06 9.07603e-06 9.04569e-06 9.01741e-06 9.04198e-06 8.79445e-06 5.68175e-06 1.89117e-05 0.000568838 0.00154252 0.00178402 0.00176376 9.14095e-06 9.14243e-06 9.13849e-06 9.13204e-06 9.12767e-06 9.12725e-06 9.12737e-06 9.12563e-06 9.1239e-06 9.12767e-06 9.13609e-06 9.14267e-06 9.14286e-06 9.13869e-06 9.13554e-06 9.13601e-06 9.13847e-06 9.14004e-06 9.13928e-06 9.13659e-06 9.13248e-06 9.12756e-06 9.12262e-06 9.11806e-06 9.11418e-06 9.11114e-06 9.10887e-06 9.10714e-06 9.1059e-06 9.10495e-06 9.1042e-06 9.10378e-06 9.10351e-06 9.10336e-06 9.10324e-06 9.10316e-06 9.10319e-06 9.10319e-06 9.10362e-06 9.10344e-06 9.10525e-06 9.10324e-06 9.1084e-06 9.13026e-06 9.11001e-06 9.11273e-06 9.10927e-06 9.1097e-06 9.10875e-06 9.10785e-06 9.10891e-06 9.11311e-06 9.11965e-06 9.12623e-06 9.13102e-06 9.13341e-06 9.13386e-06 9.13324e-06 9.13227e-06 9.13148e-06 9.13115e-06 9.13131e-06 9.13182e-06 9.13248e-06 9.1332e-06 9.13404e-06 9.13508e-06 9.13635e-06 9.13773e-06 9.13913e-06 9.14048e-06 9.14169e-06 9.14259e-06 9.14299e-06 9.14275e-06 9.14186e-06 9.14038e-06 9.1384e-06 9.13595e-06 9.13321e-06 9.13033e-06 9.12735e-06 9.12434e-06 9.12139e-06 9.11845e-06 9.11567e-06 9.11306e-06 9.11058e-06 9.10813e-06 9.1056e-06 9.10343e-06 9.10161e-06 9.09952e-06 9.09773e-06 9.09582e-06 9.09316e-06 9.08873e-06 9.08343e-06 9.07057e-06 9.03563e-06 9.01025e-06 8.92216e-06 6.5853e-06 1.23327e-05 0.000538749 0.00155332 0.00180318 0.0017807 9.13708e-06 9.13737e-06 9.13813e-06 9.13811e-06 9.1373e-06 9.1361e-06 9.13437e-06 9.13192e-06 9.12847e-06 9.12338e-06 9.11381e-06 9.09614e-06 9.07194e-06 9.0439e-06 9.01477e-06 9.03354e-06 8.81017e-06 5.79561e-06 1.87773e-05 0.000568439 0.00154375 0.00178696 0.00177404 9.13945e-06 9.14009e-06 9.13603e-06 9.13009e-06 9.12657e-06 9.12594e-06 9.12579e-06 9.12336e-06 9.12214e-06 9.12642e-06 9.13454e-06 9.1403e-06 9.13988e-06 9.13557e-06 9.1322e-06 9.13183e-06 9.13304e-06 9.13335e-06 9.13197e-06 9.12904e-06 9.12529e-06 9.12126e-06 9.11739e-06 9.11371e-06 9.1106e-06 9.10823e-06 9.10658e-06 9.10548e-06 9.10467e-06 9.10401e-06 9.10362e-06 9.10336e-06 9.10321e-06 9.10309e-06 9.10302e-06 9.10305e-06 9.10305e-06 9.10346e-06 9.1033e-06 9.10502e-06 9.10312e-06 9.10799e-06 9.13587e-06 9.10998e-06 9.11248e-06 9.11028e-06 9.1113e-06 9.11117e-06 9.10986e-06 9.10867e-06 9.10978e-06 9.11449e-06 9.12165e-06 9.12872e-06 9.1337e-06 9.13602e-06 9.13633e-06 9.13554e-06 9.1344e-06 9.13348e-06 9.13309e-06 9.13325e-06 9.1338e-06 9.13456e-06 9.13544e-06 9.13648e-06 9.13777e-06 9.13927e-06 9.14086e-06 9.14242e-06 9.14386e-06 9.14504e-06 9.14578e-06 9.14591e-06 9.1453e-06 9.14396e-06 9.14199e-06 9.13944e-06 9.13649e-06 9.13332e-06 9.13006e-06 9.12675e-06 9.12354e-06 9.1204e-06 9.11743e-06 9.11467e-06 9.11195e-06 9.10928e-06 9.10664e-06 9.10435e-06 9.10245e-06 9.10038e-06 9.09903e-06 9.09689e-06 9.09405e-06 9.08952e-06 9.0844e-06 9.07309e-06 9.04096e-06 9.00898e-06 8.91055e-06 6.62254e-06 1.25126e-05 0.000540449 0.0015551 0.00180602 0.00179035 9.13599e-06 9.13646e-06 9.13743e-06 9.13768e-06 9.13726e-06 9.13646e-06 9.13522e-06 9.13336e-06 9.13078e-06 9.12717e-06 9.12176e-06 9.1115e-06 9.09334e-06 9.06867e-06 9.04216e-06 9.01295e-06 9.0251e-06 8.8212e-06 5.89679e-06 1.87147e-05 0.000568497 0.00154516 0.00178983 0.00178404 9.1377e-06 9.1376e-06 9.13346e-06 9.1282e-06 9.12525e-06 9.12508e-06 9.12411e-06 9.1213e-06 9.12047e-06 9.12491e-06 9.13254e-06 9.13745e-06 9.13651e-06 9.1322e-06 9.12872e-06 9.12771e-06 9.12786e-06 9.12745e-06 9.12555e-06 9.12267e-06 9.11939e-06 9.1163e-06 9.1132e-06 9.11031e-06 9.1079e-06 9.10618e-06 9.10509e-06 9.10436e-06 9.10379e-06 9.10346e-06 9.10321e-06 9.10307e-06 9.10296e-06 9.10289e-06 9.10292e-06 9.10292e-06 9.10332e-06 9.10317e-06 9.10481e-06 9.103e-06 9.10762e-06 9.14015e-06 9.11125e-06 9.11079e-06 9.10995e-06 9.11124e-06 9.11243e-06 9.11231e-06 9.11087e-06 9.10955e-06 9.11097e-06 9.11633e-06 9.12417e-06 9.13169e-06 9.13673e-06 9.13888e-06 9.13897e-06 9.13794e-06 9.13662e-06 9.13558e-06 9.13515e-06 9.13532e-06 9.13596e-06 9.13688e-06 9.13797e-06 9.13927e-06 9.14083e-06 9.14257e-06 9.14433e-06 9.14599e-06 9.14743e-06 9.14848e-06 9.14897e-06 9.14872e-06 9.14765e-06 9.14581e-06 9.14329e-06 9.14022e-06 9.13679e-06 9.13322e-06 9.12955e-06 9.12596e-06 9.12253e-06 9.11934e-06 9.11638e-06 9.1135e-06 9.1107e-06 9.10799e-06 9.10549e-06 9.10344e-06 9.10153e-06 9.10016e-06 9.0977e-06 9.09445e-06 9.09048e-06 9.08555e-06 9.07513e-06 9.04478e-06 9.00805e-06 8.90038e-06 6.65879e-06 1.26965e-05 0.000542192 0.00155681 0.00180876 0.0017998 9.13466e-06 9.13535e-06 9.13654e-06 9.13705e-06 9.13691e-06 9.1365e-06 9.13566e-06 9.13433e-06 9.13238e-06 9.12967e-06 9.12588e-06 9.1201e-06 9.10906e-06 9.09101e-06 9.06678e-06 9.04071e-06 9.01123e-06 9.01699e-06 8.82846e-06 5.98786e-06 1.87201e-05 0.000569029 0.00154662 0.00179274 0.00179381 9.13573e-06 9.135e-06 9.13081e-06 9.12618e-06 9.12426e-06 9.12408e-06 9.12244e-06 9.11948e-06 9.1188e-06 9.12319e-06 9.1302e-06 9.13423e-06 9.13289e-06 9.1287e-06 9.12519e-06 9.12371e-06 9.12329e-06 9.12223e-06 9.12015e-06 9.11743e-06 9.11483e-06 9.11236e-06 9.10996e-06 9.10774e-06 9.10599e-06 9.10482e-06 9.10408e-06 9.10357e-06 9.10327e-06 9.10307e-06 9.10294e-06 9.10284e-06 9.10277e-06 9.1028e-06 9.10281e-06 9.10318e-06 9.10305e-06 9.1046e-06 9.10289e-06 9.10728e-06 9.14251e-06 9.11368e-06 9.1089e-06 9.10893e-06 9.10991e-06 9.11186e-06 9.11328e-06 9.11335e-06 9.1118e-06 9.11054e-06 9.11241e-06 9.11856e-06 9.12715e-06 9.13505e-06 9.14003e-06 9.14197e-06 9.14175e-06 9.14046e-06 9.13894e-06 9.13777e-06 9.13732e-06 9.13758e-06 9.13837e-06 9.13951e-06 9.14087e-06 9.14246e-06 9.14429e-06 9.14624e-06 9.14812e-06 9.14981e-06 9.15113e-06 9.15193e-06 9.15205e-06 9.15132e-06 9.14975e-06 9.14738e-06 9.14434e-06 9.14078e-06 9.13695e-06 9.13294e-06 9.12892e-06 9.12509e-06 9.12156e-06 9.11827e-06 9.11516e-06 9.11217e-06 9.10935e-06 9.10668e-06 9.10445e-06 9.1027e-06 9.10101e-06 9.09837e-06 9.09503e-06 9.09208e-06 9.08763e-06 9.07742e-06 9.0474e-06 9.0083e-06 8.89355e-06 6.69297e-06 1.28853e-05 0.000543911 0.00155843 0.00181146 0.00180903 9.13318e-06 9.13406e-06 9.13544e-06 9.13622e-06 9.13636e-06 9.13623e-06 9.13575e-06 9.13483e-06 9.13342e-06 9.13139e-06 9.12854e-06 9.12455e-06 9.11837e-06 9.10628e-06 9.08858e-06 9.06575e-06 9.03955e-06 9.00952e-06 9.00987e-06 8.83254e-06 6.06903e-06 1.87813e-05 0.000569832 0.00154816 0.00179563 0.00180341 9.13364e-06 9.13229e-06 9.12813e-06 9.12436e-06 9.12327e-06 9.12295e-06 9.12088e-06 9.11772e-06 9.11711e-06 9.12138e-06 9.12761e-06 9.13074e-06 9.12915e-06 9.12511e-06 9.12173e-06 9.1201e-06 9.11918e-06 9.11781e-06 9.11567e-06 9.11335e-06 9.11125e-06 9.10932e-06 9.10751e-06 9.10588e-06 9.10468e-06 9.10388e-06 9.10337e-06 9.10308e-06 9.10291e-06 9.10281e-06 9.10273e-06 9.10267e-06 9.1027e-06 9.10271e-06 9.10306e-06 9.10293e-06 9.1044e-06 9.10279e-06 9.10695e-06 9.1422e-06 9.11623e-06 9.10792e-06 9.10789e-06 9.1083e-06 9.11014e-06 9.11231e-06 9.11415e-06 9.1143e-06 9.1127e-06 9.11157e-06 9.11412e-06 9.12114e-06 9.13053e-06 9.13871e-06 9.14362e-06 9.14524e-06 9.14468e-06 9.14309e-06 9.14134e-06 9.14009e-06 9.13968e-06 9.14008e-06 9.1411e-06 9.14253e-06 9.1442e-06 9.14608e-06 9.14815e-06 9.15025e-06 9.15218e-06 9.15376e-06 9.15485e-06 9.1553e-06 9.15493e-06 9.15368e-06 9.15159e-06 9.14872e-06 9.14518e-06 9.14121e-06 9.13698e-06 9.13261e-06 9.12834e-06 9.1244e-06 9.12062e-06 9.11712e-06 9.11382e-06 9.11075e-06 9.10794e-06 9.10553e-06 9.10382e-06 9.10184e-06 9.09931e-06 9.09649e-06 9.09446e-06 9.09063e-06 9.08025e-06 9.04991e-06 9.01041e-06 8.89189e-06 6.72651e-06 1.309e-05 0.000545657 0.0015599 0.00181402 0.00181809 9.13156e-06 9.13266e-06 9.13419e-06 9.13521e-06 9.13562e-06 9.13575e-06 9.13558e-06 9.13499e-06 9.13399e-06 9.13248e-06 9.13037e-06 9.12738e-06 9.12319e-06 9.11636e-06 9.10318e-06 9.08561e-06 9.06448e-06 9.03854e-06 9.00783e-06 9.00424e-06 8.83444e-06 6.14293e-06 1.88839e-05 0.000570877 0.00154963 0.00179841 0.00181276 9.13141e-06 9.12952e-06 9.12554e-06 9.12262e-06 9.12221e-06 9.1217e-06 9.11927e-06 9.116e-06 9.11554e-06 9.11952e-06 9.1248e-06 9.12714e-06 9.12535e-06 9.12162e-06 9.11849e-06 9.11679e-06 9.11561e-06 9.11407e-06 9.11209e-06 9.11015e-06 9.10848e-06 9.10703e-06 9.10568e-06 9.1046e-06 9.1038e-06 9.10324e-06 9.10292e-06 9.10277e-06 9.10268e-06 9.10261e-06 9.10257e-06 9.1026e-06 9.10262e-06 9.10295e-06 9.10283e-06 9.10422e-06 9.1027e-06 9.10663e-06 9.13924e-06 9.11804e-06 9.1082e-06 9.10708e-06 9.10709e-06 9.10834e-06 9.11037e-06 9.11291e-06 9.115e-06 9.11525e-06 9.11357e-06 9.11277e-06 9.116e-06 9.12407e-06 9.13426e-06 9.14271e-06 9.14745e-06 9.14868e-06 9.14772e-06 9.14581e-06 9.14388e-06 9.14259e-06 9.14229e-06 9.14291e-06 9.14423e-06 9.146e-06 9.14798e-06 9.15013e-06 9.1524e-06 9.15455e-06 9.1564e-06 9.15777e-06 9.15851e-06 9.15847e-06 9.15757e-06 9.1558e-06 9.1532e-06 9.14984e-06 9.1459e-06 9.14159e-06 9.13703e-06 9.13241e-06 9.12804e-06 9.12376e-06 9.11977e-06 9.11605e-06 9.11258e-06 9.10959e-06 9.10698e-06 9.10517e-06 9.10314e-06 9.10101e-06 9.09904e-06 9.09741e-06 9.09395e-06 9.0835e-06 9.05313e-06 9.01417e-06 8.89038e-06 6.76112e-06 1.3308e-05 0.000547359 0.00156123 0.0018165 0.00182696 9.12976e-06 9.13113e-06 9.13279e-06 9.13404e-06 9.1347e-06 9.13506e-06 9.13517e-06 9.13491e-06 9.13425e-06 9.13314e-06 9.13153e-06 9.12931e-06 9.12619e-06 9.12182e-06 9.11421e-06 9.10027e-06 9.08241e-06 9.0628e-06 9.03763e-06 9.00651e-06 9.00034e-06 8.835e-06 6.20655e-06 1.90107e-05 0.000572006 0.00155107 0.00180111 0.0018219 9.12906e-06 9.12674e-06 9.12297e-06 9.12102e-06 9.12094e-06 9.12029e-06 9.11762e-06 9.11438e-06 9.11403e-06 9.11751e-06 9.12187e-06 9.12352e-06 9.12168e-06 9.11825e-06 9.11549e-06 9.11382e-06 9.11254e-06 9.11097e-06 9.10924e-06 9.10766e-06 9.1064e-06 9.1053e-06 9.10444e-06 9.10374e-06 9.10318e-06 9.10281e-06 9.10264e-06 9.10255e-06 9.10251e-06 9.10248e-06 9.10251e-06 9.10253e-06 9.10284e-06 9.10273e-06 9.10404e-06 9.10261e-06 9.10631e-06 9.13518e-06 9.11918e-06 9.10929e-06 9.10651e-06 9.10647e-06 9.10703e-06 9.10862e-06 9.11075e-06 9.11352e-06 9.11595e-06 9.11617e-06 9.11452e-06 9.11403e-06 9.11812e-06 9.1274e-06 9.13834e-06 9.14702e-06 9.15147e-06 9.15227e-06 9.15089e-06 9.14868e-06 9.1466e-06 9.14535e-06 9.14524e-06 9.14615e-06 9.14782e-06 9.14995e-06 9.15222e-06 9.1546e-06 9.15695e-06 9.15905e-06 9.16071e-06 9.16174e-06 9.16201e-06 9.16144e-06 9.16e-06 9.15768e-06 9.15459e-06 9.15082e-06 9.14658e-06 9.142e-06 9.13719e-06 9.13249e-06 9.12783e-06 9.12339e-06 9.11924e-06 9.11532e-06 9.11204e-06 9.1092e-06 9.10726e-06 9.10536e-06 9.10374e-06 9.10237e-06 9.10057e-06 9.09702e-06 9.08692e-06 9.05704e-06 9.01819e-06 8.88915e-06 6.79501e-06 1.35292e-05 0.000549019 0.00156236 0.00181888 0.00183555 9.12781e-06 9.12942e-06 9.13124e-06 9.13266e-06 9.13361e-06 9.13421e-06 9.13454e-06 9.13458e-06 9.13426e-06 9.13351e-06 9.1323e-06 9.13059e-06 9.12824e-06 9.125e-06 9.12042e-06 9.11224e-06 9.09795e-06 9.07981e-06 9.06145e-06 9.03724e-06 9.00604e-06 8.99845e-06 8.83455e-06 6.26496e-06 1.91514e-05 0.000573229 0.00155245 0.00180374 0.00183083 9.12663e-06 9.12398e-06 9.1206e-06 9.11935e-06 9.1195e-06 9.11875e-06 9.11593e-06 9.11282e-06 9.11249e-06 9.11543e-06 9.11894e-06 9.12001e-06 9.11814e-06 9.11516e-06 9.11277e-06 9.11121e-06 9.10991e-06 9.10848e-06 9.10702e-06 9.1058e-06 9.10483e-06 9.10415e-06 9.10362e-06 9.10314e-06 9.10275e-06 9.10256e-06 9.10245e-06 9.1024e-06 9.10239e-06 9.10243e-06 9.10245e-06 9.10275e-06 9.10264e-06 9.10388e-06 9.10253e-06 9.10599e-06 9.13201e-06 9.12064e-06 9.11063e-06 9.10614e-06 9.10642e-06 9.10632e-06 9.10754e-06 9.10896e-06 9.1111e-06 9.11429e-06 9.11693e-06 9.11713e-06 9.11559e-06 9.11541e-06 9.12069e-06 9.13109e-06 9.14278e-06 9.15157e-06 9.15568e-06 9.15599e-06 9.1542e-06 9.15174e-06 9.14959e-06 9.14845e-06 9.1486e-06 9.14985e-06 9.15193e-06 9.1544e-06 9.15691e-06 9.15941e-06 9.16173e-06 9.16366e-06 9.16499e-06 9.16558e-06 9.16532e-06 9.16419e-06 9.16217e-06 9.15936e-06 9.15583e-06 9.15174e-06 9.14726e-06 9.14244e-06 9.13756e-06 9.1327e-06 9.12794e-06 9.12344e-06 9.11918e-06 9.11552e-06 9.11247e-06 9.11043e-06 9.10861e-06 9.1073e-06 9.10599e-06 9.10368e-06 9.09972e-06 9.09032e-06 9.06113e-06 9.02101e-06 8.88726e-06 6.82973e-06 1.37574e-05 0.000550566 0.00156333 0.00182096 0.0018441 9.12579e-06 9.12757e-06 9.12953e-06 9.13112e-06 9.13229e-06 9.13317e-06 9.13373e-06 9.13402e-06 9.134e-06 9.13359e-06 9.13276e-06 9.13146e-06 9.12967e-06 9.12719e-06 9.12383e-06 9.11898e-06 9.11027e-06 9.09607e-06 9.07829e-06 9.06096e-06 9.0378e-06 9.0066e-06 8.99773e-06 8.83367e-06 6.31742e-06 1.93079e-05 0.000574507 0.00155369 0.00180625 0.00183961 9.12416e-06 9.12127e-06 9.11837e-06 9.11764e-06 9.11796e-06 9.11707e-06 9.11419e-06 9.1113e-06 9.11094e-06 9.11336e-06 9.11609e-06 9.11668e-06 9.11493e-06 9.11241e-06 9.11038e-06 9.10898e-06 9.10778e-06 9.10653e-06 9.10537e-06 9.10441e-06 9.10378e-06 9.10338e-06 9.10304e-06 9.1027e-06 9.10251e-06 9.10238e-06 9.10232e-06 9.1023e-06 9.10235e-06 9.10237e-06 9.10266e-06 9.10256e-06 9.10372e-06 9.10245e-06 9.10569e-06 9.13057e-06 9.12333e-06 9.11236e-06 9.10601e-06 9.10684e-06 9.10619e-06 9.10699e-06 9.108e-06 9.10919e-06 9.1116e-06 9.11516e-06 9.11794e-06 9.11847e-06 9.11674e-06 9.11723e-06 9.12362e-06 9.13512e-06 9.14762e-06 9.15638e-06 9.16005e-06 9.15985e-06 9.15771e-06 9.15507e-06 9.15293e-06 9.15197e-06 9.15244e-06 9.15408e-06 9.15659e-06 9.1593e-06 9.16196e-06 9.16447e-06 9.16665e-06 9.16826e-06 9.16917e-06 9.16922e-06 9.1684e-06 9.16668e-06 9.16416e-06 9.16089e-06 9.15699e-06 9.15263e-06 9.14792e-06 9.14302e-06 9.13809e-06 9.13317e-06 9.12844e-06 9.12396e-06 9.11996e-06 9.11675e-06 9.11461e-06 9.11267e-06 9.11125e-06 9.10955e-06 9.10669e-06 9.10234e-06 9.09358e-06 9.06508e-06 9.02248e-06 8.88481e-06 6.86742e-06 1.39811e-05 0.000552022 0.0015641 0.00182298 0.00185238 9.12367e-06 9.12561e-06 9.12768e-06 9.12942e-06 9.13079e-06 9.13191e-06 9.13272e-06 9.13324e-06 9.13351e-06 9.1334e-06 9.1329e-06 9.13199e-06 9.13063e-06 9.12876e-06 9.12615e-06 9.12266e-06 9.11747e-06 9.10809e-06 9.09415e-06 9.07761e-06 9.06089e-06 9.03925e-06 9.00827e-06 8.99699e-06 8.83235e-06 6.36423e-06 1.94649e-05 0.000575769 0.00155482 0.00180863 0.0018481 9.1217e-06 9.1187e-06 9.11622e-06 9.11595e-06 9.11632e-06 9.11529e-06 9.11251e-06 9.10983e-06 9.10945e-06 9.11137e-06 9.11344e-06 9.11367e-06 9.11212e-06 9.11003e-06 9.10834e-06 9.10715e-06 9.1061e-06 9.10507e-06 9.10415e-06 9.10348e-06 9.10309e-06 9.10285e-06 9.10262e-06 9.10246e-06 9.10233e-06 9.10226e-06 9.10224e-06 9.10228e-06 9.1023e-06 9.10257e-06 9.10249e-06 9.10358e-06 9.10237e-06 9.1054e-06 9.12994e-06 9.12721e-06 9.11519e-06 9.1063e-06 9.10742e-06 9.10663e-06 9.10684e-06 9.10757e-06 9.10827e-06 9.10951e-06 9.11224e-06 9.11607e-06 9.11957e-06 9.11995e-06 9.11824e-06 9.11943e-06 9.12682e-06 9.13981e-06 9.15279e-06 9.16138e-06 9.16455e-06 9.1639e-06 9.16148e-06 9.15875e-06 9.15669e-06 9.15598e-06 9.15681e-06 9.15891e-06 9.16174e-06 9.16462e-06 9.16732e-06 9.1697e-06 9.17158e-06 9.17277e-06 9.17314e-06 9.17264e-06 9.17125e-06 9.16902e-06 9.166e-06 9.1623e-06 9.15809e-06 9.15352e-06 9.14869e-06 9.14375e-06 9.13876e-06 9.13391e-06 9.1293e-06 9.12508e-06 9.12171e-06 9.11943e-06 9.11716e-06 9.11529e-06 9.11312e-06 9.1098e-06 9.10534e-06 9.09671e-06 9.06893e-06 9.02381e-06 8.88305e-06 6.90317e-06 1.42031e-05 0.000553262 0.00156467 0.0018248 0.00186042 9.12149e-06 9.12357e-06 9.12572e-06 9.1276e-06 9.12915e-06 9.13046e-06 9.13153e-06 9.13226e-06 9.13278e-06 9.13298e-06 9.13277e-06 9.13218e-06 9.13119e-06 9.12979e-06 9.12782e-06 9.12511e-06 9.12146e-06 9.11583e-06 9.10559e-06 9.09186e-06 9.07699e-06 9.06064e-06 9.04117e-06 9.01087e-06 8.9977e-06 8.83019e-06 6.41024e-06 1.96305e-05 0.000577035 0.00155581 0.0018108 0.00185642 9.11929e-06 9.11625e-06 9.11433e-06 9.11428e-06 9.11462e-06 9.11353e-06 9.11089e-06 9.10846e-06 9.10806e-06 9.10954e-06 9.11103e-06 9.11106e-06 9.10972e-06 9.10801e-06 9.10667e-06 9.10568e-06 9.10481e-06 9.10399e-06 9.10331e-06 9.10286e-06 9.10263e-06 9.10248e-06 9.10237e-06 9.10228e-06 9.10222e-06 9.10219e-06 9.10223e-06 9.10224e-06 9.1025e-06 9.10242e-06 9.10344e-06 9.10231e-06 9.10515e-06 9.12861e-06 9.13104e-06 9.11953e-06 9.10729e-06 9.10763e-06 9.10738e-06 9.10717e-06 9.10741e-06 9.10793e-06 9.1086e-06 9.10999e-06 9.11293e-06 9.11763e-06 9.12152e-06 9.12163e-06 9.1201e-06 9.1218e-06 9.1309e-06 9.14488e-06 9.15821e-06 9.16656e-06 9.16924e-06 9.16821e-06 9.16562e-06 9.16286e-06 9.16095e-06 9.16054e-06 9.16176e-06 9.16426e-06 9.16734e-06 9.17025e-06 9.17285e-06 9.17496e-06 9.17641e-06 9.17708e-06 9.1769e-06 9.17585e-06 9.17395e-06 9.17121e-06 9.16774e-06 9.1637e-06 9.15927e-06 9.15455e-06 9.1496e-06 9.14458e-06 9.13964e-06 9.13492e-06 9.13055e-06 9.12701e-06 9.12451e-06 9.12183e-06 9.11947e-06 9.11691e-06 9.11329e-06 9.10896e-06 9.09991e-06 9.07291e-06 9.02639e-06 8.88403e-06 6.94574e-06 1.44216e-05 0.000554292 0.00156498 0.00182637 0.00186828 9.1193e-06 9.12146e-06 9.12367e-06 9.12567e-06 9.12739e-06 9.12888e-06 9.13015e-06 9.13114e-06 9.13184e-06 9.13232e-06 9.1324e-06 9.13211e-06 9.13144e-06 9.13039e-06 9.12892e-06 9.12683e-06 9.12404e-06 9.12021e-06 9.11405e-06 9.10303e-06 9.08937e-06 9.07596e-06 9.06058e-06 9.04294e-06 9.01381e-06 9.00023e-06 8.8272e-06 6.45274e-06 1.98129e-05 0.000578327 0.00155659 0.00181284 0.0018645 9.11694e-06 9.11413e-06 9.11256e-06 9.11268e-06 9.11293e-06 9.11183e-06 9.10939e-06 9.10722e-06 9.1068e-06 9.10788e-06 9.10892e-06 9.10884e-06 9.10771e-06 9.10638e-06 9.10534e-06 9.10455e-06 9.10385e-06 9.10323e-06 9.10274e-06 9.10247e-06 9.10232e-06 9.10225e-06 9.1022e-06 9.10218e-06 9.10216e-06 9.10218e-06 9.10219e-06 9.10243e-06 9.10235e-06 9.10331e-06 9.10225e-06 9.10491e-06 9.12589e-06 9.13331e-06 9.1245e-06 9.10927e-06 9.10727e-06 9.10785e-06 9.10788e-06 9.1076e-06 9.10773e-06 9.10833e-06 9.10907e-06 9.11052e-06 9.11401e-06 9.11965e-06 9.1236e-06 9.12363e-06 9.12215e-06 9.12511e-06 9.13535e-06 9.15023e-06 9.16389e-06 9.17194e-06 9.17418e-06 9.17288e-06 9.17019e-06 9.16747e-06 9.16577e-06 9.16568e-06 9.16726e-06 9.17014e-06 9.17326e-06 9.17609e-06 9.17844e-06 9.18013e-06 9.18107e-06 9.1812e-06 9.18049e-06 9.17893e-06 9.1765e-06 9.17332e-06 9.16952e-06 9.16524e-06 9.16063e-06 9.15572e-06 9.15066e-06 9.14563e-06 9.14078e-06 9.13625e-06 9.13247e-06 9.1297e-06 9.12669e-06 9.12395e-06 9.12109e-06 9.11732e-06 9.11314e-06 9.10354e-06 9.07723e-06 9.03053e-06 8.88912e-06 6.99209e-06 1.46295e-05 0.000555067 0.00156499 0.00182774 0.00187596 9.11712e-06 9.11932e-06 9.12157e-06 9.12363e-06 9.1255e-06 9.12716e-06 9.12862e-06 9.12982e-06 9.13075e-06 9.13142e-06 9.13181e-06 9.13179e-06 9.13144e-06 9.1307e-06 9.12959e-06 9.128e-06 9.12581e-06 9.12295e-06 9.11894e-06 9.11229e-06 9.1009e-06 9.08723e-06 9.07481e-06 9.06137e-06 9.04422e-06 9.01638e-06 9.00352e-06 8.82309e-06 6.49439e-06 2.00032e-05 0.000579554 0.00155723 0.00181467 0.00187238 9.1147e-06 9.11216e-06 9.11096e-06 9.11112e-06 9.1113e-06 9.11022e-06 9.10802e-06 9.10612e-06 9.10569e-06 9.10643e-06 9.10716e-06 9.10699e-06 9.10608e-06 9.10508e-06 9.10428e-06 9.10368e-06 9.10316e-06 9.10271e-06 9.10238e-06 9.1022e-06 9.10212e-06 9.1021e-06 9.10211e-06 9.10211e-06 9.10214e-06 9.10215e-06 9.10237e-06 9.10229e-06 9.10319e-06 9.10219e-06 9.10469e-06 9.1224e-06 9.13317e-06 9.1284e-06 9.11202e-06 9.1068e-06 9.10758e-06 9.10835e-06 9.10817e-06 9.10772e-06 9.10808e-06 9.10887e-06 9.10962e-06 9.11111e-06 9.11558e-06 9.12186e-06 9.12585e-06 9.12588e-06 9.12498e-06 9.12873e-06 9.14006e-06 9.15594e-06 9.16982e-06 9.17756e-06 9.17944e-06 9.17799e-06 9.17526e-06 9.17264e-06 9.17116e-06 9.17139e-06 9.17335e-06 9.17642e-06 9.17942e-06 9.18203e-06 9.18397e-06 9.18516e-06 9.18556e-06 9.18516e-06 9.18393e-06 9.18185e-06 9.17902e-06 9.17554e-06 9.17148e-06 9.16701e-06 9.16218e-06 9.15713e-06 9.15201e-06 9.14702e-06 9.14223e-06 9.13815e-06 9.13506e-06 9.13185e-06 9.12881e-06 9.12557e-06 9.12178e-06 9.11758e-06 9.10783e-06 9.08199e-06 9.03547e-06 8.89739e-06 7.04042e-06 1.48353e-05 0.000555526 0.00156469 0.00182888 0.00188333 9.11499e-06 9.11718e-06 9.11942e-06 9.12154e-06 9.1235e-06 9.12531e-06 9.12694e-06 9.12833e-06 9.12949e-06 9.13037e-06 9.13099e-06 9.13125e-06 9.13116e-06 9.13077e-06 9.12998e-06 9.12878e-06 9.12706e-06 9.1248e-06 9.12185e-06 9.11765e-06 9.11065e-06 9.09926e-06 9.08588e-06 9.07457e-06 9.06307e-06 9.04523e-06 9.01837e-06 9.00579e-06 8.81808e-06 6.53642e-06 2.02179e-05 0.000580798 0.00155768 0.00181632 0.0018801 9.11261e-06 9.1104e-06 9.10947e-06 9.10964e-06 9.10975e-06 9.10874e-06 9.10679e-06 9.10516e-06 9.10472e-06 9.10524e-06 9.10571e-06 9.1055e-06 9.1048e-06 9.10405e-06 9.10347e-06 9.10303e-06 9.10267e-06 9.10236e-06 9.10214e-06 9.10202e-06 9.10199e-06 9.10201e-06 9.10204e-06 9.10209e-06 9.10211e-06 9.10232e-06 9.10224e-06 9.10308e-06 9.10214e-06 9.10448e-06 9.11925e-06 9.13131e-06 9.13007e-06 9.11469e-06 9.1069e-06 9.10672e-06 9.10792e-06 9.10865e-06 9.10809e-06 9.10784e-06 9.1086e-06 9.10953e-06 9.11006e-06 9.11204e-06 9.11747e-06 9.12412e-06 9.12843e-06 9.12876e-06 9.12805e-06 9.13254e-06 9.14515e-06 9.16193e-06 9.176e-06 9.18348e-06 9.18518e-06 9.18361e-06 9.18088e-06 9.17838e-06 9.1771e-06 9.17762e-06 9.17995e-06 9.18294e-06 9.18571e-06 9.18792e-06 9.18938e-06 9.19004e-06 9.1899e-06 9.18898e-06 9.18726e-06 9.18483e-06 9.18171e-06 9.17796e-06 9.1737e-06 9.16904e-06 9.16405e-06 9.15889e-06 9.15374e-06 9.14866e-06 9.14421e-06 9.14074e-06 9.13737e-06 9.13394e-06 9.13016e-06 9.12632e-06 9.1219e-06 9.11264e-06 9.08712e-06 9.04019e-06 8.90449e-06 7.08512e-06 1.50399e-05 0.000555727 0.00156406 0.0018297 0.00189044 9.11295e-06 9.11508e-06 9.11728e-06 9.11939e-06 9.12143e-06 9.12334e-06 9.12511e-06 9.12669e-06 9.12804e-06 9.12915e-06 9.12997e-06 9.13051e-06 9.13066e-06 9.13054e-06 9.13009e-06 9.12924e-06 9.12794e-06 9.12614e-06 9.12382e-06 9.12074e-06 9.11633e-06 9.10879e-06 9.09772e-06 9.08537e-06 9.07541e-06 9.06484e-06 9.04646e-06 9.02014e-06 9.00645e-06 8.81262e-06 6.57452e-06 2.04349e-05 0.000581936 0.00155792 0.00181772 0.00188747 9.11071e-06 9.10886e-06 9.10808e-06 9.10826e-06 9.10833e-06 9.1074e-06 9.10573e-06 9.10435e-06 9.10395e-06 9.10429e-06 9.10455e-06 9.10434e-06 9.10381e-06 9.10327e-06 9.10286e-06 9.10258e-06 9.10234e-06 9.10212e-06 9.10197e-06 9.10191e-06 9.10192e-06 9.10196e-06 9.10202e-06 9.10206e-06 9.10227e-06 9.10219e-06 9.10298e-06 9.1021e-06 9.10429e-06 9.11698e-06 9.1289e-06 9.13007e-06 9.11648e-06 9.1076e-06 9.10587e-06 9.10664e-06 9.10829e-06 9.10849e-06 9.10794e-06 9.10815e-06 9.10928e-06 9.11018e-06 9.11063e-06 9.11336e-06 9.11942e-06 9.12666e-06 9.1316e-06 9.13182e-06 9.13124e-06 9.13664e-06 9.15048e-06 9.16818e-06 9.18251e-06 9.1899e-06 9.19141e-06 9.18976e-06 9.18704e-06 9.18463e-06 9.18356e-06 9.18441e-06 9.18691e-06 9.1896e-06 9.19198e-06 9.19371e-06 9.19463e-06 9.19475e-06 9.19412e-06 9.19275e-06 9.19072e-06 9.188e-06 9.18462e-06 9.18067e-06 9.17628e-06 9.17145e-06 9.16633e-06 9.16103e-06 9.15565e-06 9.15082e-06 9.14687e-06 9.14325e-06 9.13922e-06 9.13479e-06 9.13068e-06 9.12586e-06 9.11746e-06 9.09246e-06 9.0441e-06 8.90584e-06 7.11967e-06 1.52434e-05 0.000555714 0.00156308 0.0018302 0.00189735 9.11107e-06 9.11308e-06 9.11517e-06 9.11725e-06 9.1193e-06 9.12128e-06 9.12317e-06 9.12489e-06 9.12642e-06 9.12774e-06 9.1288e-06 9.12954e-06 9.12999e-06 9.13008e-06 9.12993e-06 9.12937e-06 9.12846e-06 9.12708e-06 9.12522e-06 9.12285e-06 9.11964e-06 9.11497e-06 9.10665e-06 9.09596e-06 9.0851e-06 9.07668e-06 9.06581e-06 9.0484e-06 9.02242e-06 9.00606e-06 8.80731e-06 6.61325e-06 2.0661e-05 0.00058295 0.0015579 0.0018188 0.00189458 9.10908e-06 9.10746e-06 9.10683e-06 9.10701e-06 9.10705e-06 9.10624e-06 9.10484e-06 9.1037e-06 9.10336e-06 9.10354e-06 9.10366e-06 9.10347e-06 9.10307e-06 9.10269e-06 9.10244e-06 9.10226e-06 9.10209e-06 9.10196e-06 9.10186e-06 9.10185e-06 9.10188e-06 9.10194e-06 9.10199e-06 9.1022e-06 9.10215e-06 9.10288e-06 9.10206e-06 9.1041e-06 9.1156e-06 9.12707e-06 9.12975e-06 9.1175e-06 9.10849e-06 9.10538e-06 9.1053e-06 9.10693e-06 9.10822e-06 9.10826e-06 9.10794e-06 9.10867e-06 9.11015e-06 9.11081e-06 9.11147e-06 9.11493e-06 9.12154e-06 9.12989e-06 9.13496e-06 9.13501e-06 9.13458e-06 9.14083e-06 9.156e-06 9.17478e-06 9.18944e-06 9.19672e-06 9.19811e-06 9.19639e-06 9.19365e-06 9.19134e-06 9.19049e-06 9.19175e-06 9.19402e-06 9.19627e-06 9.19815e-06 9.19933e-06 9.19974e-06 9.1994e-06 9.19837e-06 9.19672e-06 9.1944e-06 9.19146e-06 9.18792e-06 9.18387e-06 9.17931e-06 9.17434e-06 9.16893e-06 9.1633e-06 9.1581e-06 9.15362e-06 9.14952e-06 9.14477e-06 9.13967e-06 9.13491e-06 9.12953e-06 9.12186e-06 9.09777e-06 9.04711e-06 8.90405e-06 7.13446e-06 1.54327e-05 0.000555406 0.00156181 0.00183042 0.00190402 9.10936e-06 9.11117e-06 9.11315e-06 9.11515e-06 9.11718e-06 9.11918e-06 9.12115e-06 9.12298e-06 9.12465e-06 9.12615e-06 9.12743e-06 9.12841e-06 9.12909e-06 9.12945e-06 9.12952e-06 9.12929e-06 9.12863e-06 9.12765e-06 9.12621e-06 9.12432e-06 9.12186e-06 9.11853e-06 9.11348e-06 9.10443e-06 9.094e-06 9.08445e-06 9.07756e-06 9.06624e-06 9.0514e-06 9.0258e-06 9.00538e-06 8.80387e-06 6.65125e-06 2.08886e-05 0.000583731 0.00155758 0.00181968 0.00190145 9.10761e-06 9.10621e-06 9.10573e-06 9.10591e-06 9.10593e-06 9.10524e-06 9.10409e-06 9.10319e-06 9.1029e-06 9.10296e-06 9.103e-06 9.10283e-06 9.10253e-06 9.10229e-06 9.10214e-06 9.10203e-06 9.10193e-06 9.10184e-06 9.10181e-06 9.10182e-06 9.10187e-06 9.10191e-06 9.10212e-06 9.10208e-06 9.10279e-06 9.10202e-06 9.10393e-06 9.11447e-06 9.12558e-06 9.13024e-06 9.11877e-06 9.10929e-06 9.10528e-06 9.10456e-06 9.10536e-06 9.10697e-06 9.1081e-06 9.10806e-06 9.10816e-06 9.10945e-06 9.11105e-06 9.11146e-06 9.1128e-06 9.11659e-06 9.12431e-06 9.13332e-06 9.13846e-06 9.13826e-06 9.1379e-06 9.14503e-06 9.16185e-06 9.18169e-06 9.19662e-06 9.20387e-06 9.20521e-06 9.2034e-06 9.20063e-06 9.19843e-06 9.19796e-06 9.19942e-06 9.20115e-06 9.20286e-06 9.20416e-06 9.20486e-06 9.20483e-06 9.20415e-06 9.20285e-06 9.20096e-06 9.19849e-06 9.19545e-06 9.19184e-06 9.18765e-06 9.18293e-06 9.17751e-06 9.17171e-06 9.16619e-06 9.16117e-06 9.15642e-06 9.15097e-06 9.14521e-06 9.13946e-06 9.13331e-06 9.12579e-06 9.10284e-06 9.04916e-06 8.90245e-06 7.13614e-06 1.55959e-05 0.000554774 0.00156023 0.00183034 0.00191039 9.10783e-06 9.10942e-06 9.11125e-06 9.11312e-06 9.1151e-06 9.11708e-06 9.11907e-06 9.12099e-06 9.12278e-06 9.12442e-06 9.12587e-06 9.12709e-06 9.12799e-06 9.1286e-06 9.12892e-06 9.12895e-06 9.12861e-06 9.12788e-06 9.12683e-06 9.12534e-06 9.12339e-06 9.12085e-06 9.11741e-06 9.11187e-06 9.10253e-06 9.09215e-06 9.08381e-06 9.07774e-06 9.06713e-06 9.05554e-06 9.03038e-06 9.00492e-06 8.80377e-06 6.68936e-06 2.11003e-05 0.000584222 0.00155696 0.00182023 0.00190806 9.10632e-06 9.10515e-06 9.10479e-06 9.10496e-06 9.10497e-06 9.1044e-06 9.10348e-06 9.10279e-06 9.10254e-06 9.10254e-06 9.10252e-06 9.10236e-06 9.10216e-06 9.10202e-06 9.10193e-06 9.10188e-06 9.10182e-06 9.10179e-06 9.10179e-06 9.10182e-06 9.10184e-06 9.10203e-06 9.102e-06 9.10269e-06 9.10198e-06 9.10376e-06 9.11372e-06 9.1243e-06 9.131e-06 9.12092e-06 9.11059e-06 9.10542e-06 9.10451e-06 9.10455e-06 9.10543e-06 9.10705e-06 9.10795e-06 9.10803e-06 9.10857e-06 9.11047e-06 9.11179e-06 9.11274e-06 9.11426e-06 9.11862e-06 9.12732e-06 9.13684e-06 9.14204e-06 9.14156e-06 9.14104e-06 9.14944e-06 9.16785e-06 9.18863e-06 9.20392e-06 9.2113e-06 9.21256e-06 9.21064e-06 9.20792e-06 9.20589e-06 9.20613e-06 9.20709e-06 9.20818e-06 9.20931e-06 9.21012e-06 9.21039e-06 9.21006e-06 9.20914e-06 9.2077e-06 9.20575e-06 9.20326e-06 9.20018e-06 9.19646e-06 9.19207e-06 9.18681e-06 9.18096e-06 9.1752e-06 9.16974e-06 9.16433e-06 9.15827e-06 9.1518e-06 9.14488e-06 9.13772e-06 9.12961e-06 9.10749e-06 9.05019e-06 8.90065e-06 7.14958e-06 1.57389e-05 0.000553805 0.00155831 0.00182997 0.00191645 9.10649e-06 9.10785e-06 9.10949e-06 9.11123e-06 9.11308e-06 9.11501e-06 9.11699e-06 9.11895e-06 9.12083e-06 9.12258e-06 9.12419e-06 9.12558e-06 9.12671e-06 9.12753e-06 9.12811e-06 9.12838e-06 9.12836e-06 9.12791e-06 9.12715e-06 9.12602e-06 9.12447e-06 9.12245e-06 9.11982e-06 9.11623e-06 9.11024e-06 9.10103e-06 9.09091e-06 9.08392e-06 9.07772e-06 9.06926e-06 9.06047e-06 9.03559e-06 9.00506e-06 8.80578e-06 6.72795e-06 2.12879e-05 0.000584462 0.00155601 0.00182046 0.00191434 9.10521e-06 9.10426e-06 9.10399e-06 9.10415e-06 9.10416e-06 9.1037e-06 9.10299e-06 9.10248e-06 9.10226e-06 9.10223e-06 9.10217e-06 9.10205e-06 9.10193e-06 9.10184e-06 9.1018e-06 9.10177e-06 9.10177e-06 9.10177e-06 9.10179e-06 9.10179e-06 9.10195e-06 9.10191e-06 9.10256e-06 9.10192e-06 9.1036e-06 9.11128e-06 9.12262e-06 9.13162e-06 9.12363e-06 9.11264e-06 9.10614e-06 9.10471e-06 9.10467e-06 9.1046e-06 9.10558e-06 9.10708e-06 9.1079e-06 9.1081e-06 9.10939e-06 9.11138e-06 9.11309e-06 9.11423e-06 9.1157e-06 9.12094e-06 9.13037e-06 9.1405e-06 9.14596e-06 9.1447e-06 9.14424e-06 9.15392e-06 9.17376e-06 9.19547e-06 9.21128e-06 9.21881e-06 9.21997e-06 9.21805e-06 9.21532e-06 9.21416e-06 9.21445e-06 9.21462e-06 9.21513e-06 9.21571e-06 9.21612e-06 9.21611e-06 9.2156e-06 9.21465e-06 9.21323e-06 9.21134e-06 9.20887e-06 9.20574e-06 9.20176e-06 9.1968e-06 9.19108e-06 9.18515e-06 9.17942e-06 9.17349e-06 9.16692e-06 9.15961e-06 9.15153e-06 9.14317e-06 9.13372e-06 9.11151e-06 9.05071e-06 8.90041e-06 7.19338e-06 1.58772e-05 0.000552579 0.00155606 0.00182925 0.00192222 9.10534e-06 9.10648e-06 9.10792e-06 9.10948e-06 9.1112e-06 9.11301e-06 9.11493e-06 9.11688e-06 9.11881e-06 9.12065e-06 9.12238e-06 9.12394e-06 9.12526e-06 9.1263e-06 9.12708e-06 9.12762e-06 9.12783e-06 9.12772e-06 9.12721e-06 9.12643e-06 9.12522e-06 9.12359e-06 9.12151e-06 9.11878e-06 9.11496e-06 9.10843e-06 9.0997e-06 9.09046e-06 9.08497e-06 9.0783e-06 9.07265e-06 9.0654e-06 9.04044e-06 9.00631e-06 8.80669e-06 6.76716e-06 2.14505e-05 0.000584361 0.00155471 0.00182037 0.00192033 9.10429e-06 9.10352e-06 9.10333e-06 9.10349e-06 9.1035e-06 9.10313e-06 9.10261e-06 9.10222e-06 9.10206e-06 9.102e-06 9.10195e-06 9.10186e-06 9.10177e-06 9.10172e-06 9.10171e-06 9.10172e-06 9.10174e-06 9.10178e-06 9.10177e-06 9.10189e-06 9.10183e-06 9.10243e-06 9.10184e-06 9.10342e-06 9.11017e-06 9.11919e-06 9.13082e-06 9.12602e-06 9.11535e-06 9.10745e-06 9.10507e-06 9.10512e-06 9.10481e-06 9.10468e-06 9.10572e-06 9.10719e-06 9.10795e-06 9.1086e-06 9.11034e-06 9.11263e-06 9.11461e-06 9.11546e-06 9.11746e-06 9.12338e-06 9.13354e-06 9.14473e-06 9.15001e-06 9.14782e-06 9.14749e-06 9.15835e-06 9.17946e-06 9.20212e-06 9.21851e-06 9.22614e-06 9.22732e-06 9.22538e-06 9.22321e-06 9.22312e-06 9.22254e-06 9.22207e-06 9.22201e-06 9.22218e-06 9.22231e-06 9.22219e-06 9.22176e-06 9.22092e-06 9.21967e-06 9.21786e-06 9.21542e-06 9.21196e-06 9.20744e-06 9.20201e-06 9.19599e-06 9.19016e-06 9.18393e-06 9.17684e-06 9.16857e-06 9.15942e-06 9.14973e-06 9.13819e-06 9.11481e-06 9.05206e-06 8.90126e-06 7.27529e-06 1.60213e-05 0.000551145 0.00155357 0.00182826 0.00192771 9.10437e-06 9.10531e-06 9.10654e-06 9.1079e-06 9.10946e-06 9.11114e-06 9.11296e-06 9.11484e-06 9.11676e-06 9.11866e-06 9.12047e-06 9.12216e-06 9.12365e-06 9.12491e-06 9.12589e-06 9.12664e-06 9.12711e-06 9.12724e-06 9.12704e-06 9.1265e-06 9.12569e-06 9.1244e-06 9.1227e-06 9.12056e-06 9.1177e-06 9.1136e-06 9.10652e-06 9.09823e-06 9.09041e-06 9.08626e-06 9.07981e-06 9.07656e-06 9.06943e-06 9.04417e-06 9.00881e-06 8.8073e-06 6.80938e-06 2.15917e-05 0.000583982 0.00155311 0.00182001 0.001926 9.10353e-06 9.10293e-06 9.10281e-06 9.10296e-06 9.10296e-06 9.1027e-06 9.10231e-06 9.10202e-06 9.1019e-06 9.10185e-06 9.1018e-06 9.10172e-06 9.10166e-06 9.10165e-06 9.10167e-06 9.1017e-06 9.10175e-06 9.10176e-06 9.10187e-06 9.10178e-06 9.1023e-06 9.10176e-06 9.10322e-06 9.10889e-06 9.11751e-06 9.12914e-06 9.12698e-06 9.11775e-06 9.10942e-06 9.1056e-06 9.10537e-06 9.10556e-06 9.10482e-06 9.10476e-06 9.10599e-06 9.10746e-06 9.10828e-06 9.10939e-06 9.11137e-06 9.11408e-06 9.11597e-06 9.11694e-06 9.11961e-06 9.12586e-06 9.13717e-06 9.14952e-06 9.15417e-06 9.15105e-06 9.15085e-06 9.16261e-06 9.18475e-06 9.20843e-06 9.22532e-06 9.23307e-06 9.23439e-06 9.23263e-06 9.23239e-06 9.23185e-06 9.23045e-06 9.22944e-06 9.22895e-06 9.22886e-06 9.22897e-06 9.22901e-06 9.22878e-06 9.2282e-06 9.22712e-06 9.22544e-06 9.22265e-06 9.21867e-06 9.21364e-06 9.20765e-06 9.20184e-06 9.19545e-06 9.18781e-06 9.17854e-06 9.16837e-06 9.1572e-06 9.14291e-06 9.11775e-06 9.05589e-06 8.90428e-06 7.37596e-06 1.61567e-05 0.000549521 0.0015508 0.00182701 0.0019328 9.10358e-06 9.10432e-06 9.10535e-06 9.10652e-06 9.10789e-06 9.10941e-06 9.11109e-06 9.11288e-06 9.11474e-06 9.11664e-06 9.1185e-06 9.12027e-06 9.1219e-06 9.12334e-06 9.12454e-06 9.12549e-06 9.1262e-06 9.12658e-06 9.12662e-06 9.12636e-06 9.1258e-06 9.12491e-06 9.12355e-06 9.1218e-06 9.11957e-06 9.11659e-06 9.11218e-06 9.10471e-06 9.09661e-06 9.0905e-06 9.08686e-06 9.08187e-06 9.07996e-06 9.07213e-06 9.04679e-06 9.01196e-06 8.8076e-06 6.85432e-06 2.17185e-05 0.000583382 0.00155119 0.0018193 0.00193135 9.10293e-06 9.10247e-06 9.1024e-06 9.10253e-06 9.10256e-06 9.10236e-06 9.10207e-06 9.10188e-06 9.10179e-06 9.10174e-06 9.10169e-06 9.10164e-06 9.10161e-06 9.10162e-06 9.10165e-06 9.10171e-06 9.10174e-06 9.10186e-06 9.10177e-06 9.10221e-06 9.10171e-06 9.10298e-06 9.10796e-06 9.11546e-06 9.12643e-06 9.12855e-06 9.11925e-06 9.11121e-06 9.10663e-06 9.10532e-06 9.10606e-06 9.10566e-06 9.10477e-06 9.10499e-06 9.10643e-06 9.10789e-06 9.10891e-06 9.11011e-06 9.11261e-06 9.11564e-06 9.11743e-06 9.11912e-06 9.12176e-06 9.12843e-06 9.14164e-06 9.1547e-06 9.15844e-06 9.15444e-06 9.15413e-06 9.16635e-06 9.18954e-06 9.21415e-06 9.23141e-06 9.23949e-06 9.2409e-06 9.24124e-06 9.24178e-06 9.24018e-06 9.23826e-06 9.23684e-06 9.23611e-06 9.23608e-06 9.23641e-06 9.23677e-06 9.2369e-06 9.23663e-06 9.23577e-06 9.23378e-06 9.23047e-06 9.22592e-06 9.2201e-06 9.21436e-06 9.20789e-06 9.1997e-06 9.18953e-06 9.1783e-06 9.1654e-06 9.14808e-06 9.12137e-06 9.06309e-06 8.91021e-06 7.4797e-06 1.62723e-05 0.000547615 0.00154782 0.0018254 0.00193766 9.10296e-06 9.10353e-06 9.10436e-06 9.10533e-06 9.1065e-06 9.10784e-06 9.10936e-06 9.11102e-06 9.1128e-06 9.11464e-06 9.11651e-06 9.11832e-06 9.12005e-06 9.12163e-06 9.12302e-06 9.12417e-06 9.12509e-06 9.12572e-06 9.12601e-06 9.12599e-06 9.12569e-06 9.12507e-06 9.12408e-06 9.12266e-06 9.12088e-06 9.11854e-06 9.11543e-06 9.11072e-06 9.10321e-06 9.09523e-06 9.09059e-06 9.08678e-06 9.08393e-06 9.08219e-06 9.07383e-06 9.04901e-06 9.01473e-06 8.80823e-06 6.90265e-06 2.18371e-05 0.000582463 0.00154896 0.0018183 0.0019364 9.10246e-06 9.10211e-06 9.10209e-06 9.10222e-06 9.10224e-06 9.10209e-06 9.1019e-06 9.10177e-06 9.1017e-06 9.10166e-06 9.10162e-06 9.10159e-06 9.10158e-06 9.10161e-06 9.10166e-06 9.1017e-06 9.10184e-06 9.10177e-06 9.10216e-06 9.10168e-06 9.10272e-06 9.1072e-06 9.11368e-06 9.12469e-06 9.12696e-06 9.12178e-06 9.11251e-06 9.10769e-06 9.1055e-06 9.10598e-06 9.10642e-06 9.10553e-06 9.10479e-06 9.10539e-06 9.107e-06 9.10851e-06 9.10945e-06 9.11106e-06 9.1142e-06 9.11731e-06 9.11966e-06 9.12137e-06 9.12374e-06 9.13185e-06 9.14673e-06 9.15992e-06 9.16275e-06 9.15777e-06 9.15692e-06 9.1695e-06 9.19371e-06 9.21903e-06 9.23674e-06 9.24517e-06 9.24822e-06 9.25089e-06 9.2506e-06 9.24828e-06 9.24607e-06 9.24443e-06 9.24383e-06 9.24412e-06 9.24493e-06 9.24578e-06 9.24636e-06 9.24638e-06 9.2453e-06 9.2428e-06 9.23881e-06 9.23337e-06 9.22775e-06 9.22121e-06 9.21258e-06 9.2017e-06 9.18936e-06 9.17445e-06 9.15451e-06 9.127e-06 9.07296e-06 8.92031e-06 7.57852e-06 1.63617e-05 0.000545411 0.00154452 0.00182358 0.0019422 9.10248e-06 9.10291e-06 9.10357e-06 9.10435e-06 9.10532e-06 9.10646e-06 9.1078e-06 9.1093e-06 9.11095e-06 9.11271e-06 9.11454e-06 9.11637e-06 9.11814e-06 9.11983e-06 9.12135e-06 9.12268e-06 9.12379e-06 9.12466e-06 9.12519e-06 9.12541e-06 9.12537e-06 9.12501e-06 9.12432e-06 9.12322e-06 9.12175e-06 9.11992e-06 9.11747e-06 9.11426e-06 9.10928e-06 9.10193e-06 9.0944e-06 9.09077e-06 9.08691e-06 9.08573e-06 9.08341e-06 9.07541e-06 9.05166e-06 9.01661e-06 8.8101e-06 6.95213e-06 2.19357e-05 0.000581236 0.00154641 0.00181694 0.00194115 9.10211e-06 9.10187e-06 9.10187e-06 9.10197e-06 9.10201e-06 9.10191e-06 9.10177e-06 9.10168e-06 9.10163e-06 9.1016e-06 9.10158e-06 9.10157e-06 9.10158e-06 9.10162e-06 9.10165e-06 9.1018e-06 9.10176e-06 9.10215e-06 9.10168e-06 9.10249e-06 9.10658e-06 9.11212e-06 9.12247e-06 9.12718e-06 9.12127e-06 9.11454e-06 9.10859e-06 9.1059e-06 9.10558e-06 9.10668e-06 9.1064e-06 9.10532e-06 9.10499e-06 9.10597e-06 9.10775e-06 9.10917e-06 9.11019e-06 9.11241e-06 9.11619e-06 9.11948e-06 9.12206e-06 9.12361e-06 9.12645e-06 9.13585e-06 9.15176e-06 9.16497e-06 9.1669e-06 9.1607e-06 9.15904e-06 9.17206e-06 9.19713e-06 9.22295e-06 9.24134e-06 9.25087e-06 9.25717e-06 9.26033e-06 9.25891e-06 9.2564e-06 9.25404e-06 9.25257e-06 9.25239e-06 9.25335e-06 9.25482e-06 9.25631e-06 9.25729e-06 9.2572e-06 9.2556e-06 9.2523e-06 9.24746e-06 9.24205e-06 9.23554e-06 9.22667e-06 9.2153e-06 9.20184e-06 9.18475e-06 9.16315e-06 9.13526e-06 9.0837e-06 8.93482e-06 7.67807e-06 1.64262e-05 0.000542908 0.00154095 0.00182146 0.00194642 9.10213e-06 9.10243e-06 9.10294e-06 9.10355e-06 9.10433e-06 9.10528e-06 9.10643e-06 9.10775e-06 9.10924e-06 9.11088e-06 9.11262e-06 9.11443e-06 9.11621e-06 9.11795e-06 9.11959e-06 9.12106e-06 9.12234e-06 9.12339e-06 9.12418e-06 9.12462e-06 9.12481e-06 9.12474e-06 9.1243e-06 9.12353e-06 9.12234e-06 9.12084e-06 9.11893e-06 9.1164e-06 9.11312e-06 9.10768e-06 9.10058e-06 9.09416e-06 9.09117e-06 9.08794e-06 9.08724e-06 9.08443e-06 9.07764e-06 9.05512e-06 9.01802e-06 8.81423e-06 7.00287e-06 2.19923e-05 0.000579693 0.00154358 0.00181535 0.00194552 9.10187e-06 9.1017e-06 9.10171e-06 9.10181e-06 9.10184e-06 9.10177e-06 9.10168e-06 9.10161e-06 9.10158e-06 9.10157e-06 9.10156e-06 9.10157e-06 9.10159e-06 9.1016e-06 9.10174e-06 9.10173e-06 9.10212e-06 9.10169e-06 9.10232e-06 9.10608e-06 9.11076e-06 9.12035e-06 9.12645e-06 9.12271e-06 9.11447e-06 9.10987e-06 9.10655e-06 9.10531e-06 9.10632e-06 9.10691e-06 9.10614e-06 9.10529e-06 9.10545e-06 9.1068e-06 9.1087e-06 9.10993e-06 9.11121e-06 9.11456e-06 9.11832e-06 9.12186e-06 9.12491e-06 9.12647e-06 9.12944e-06 9.13974e-06 9.15651e-06 9.16976e-06 9.17075e-06 9.16297e-06 9.16059e-06 9.174e-06 9.1995e-06 9.22613e-06 9.24542e-06 9.2579e-06 9.26701e-06 9.269e-06 9.26714e-06 9.26469e-06 9.26248e-06 9.26153e-06 9.26223e-06 9.26407e-06 9.26643e-06 9.26849e-06 9.26945e-06 9.26888e-06 9.26639e-06 9.26234e-06 9.2573e-06 9.25098e-06 9.24207e-06 9.23034e-06 9.2158e-06 9.19664e-06 9.17427e-06 9.14545e-06 9.09368e-06 8.95218e-06 7.77949e-06 1.64732e-05 0.000540035 0.00153708 0.00181912 0.00195031 9.10189e-06 9.10209e-06 9.10245e-06 9.10292e-06 9.10353e-06 9.10431e-06 9.10526e-06 9.1064e-06 9.1077e-06 9.10918e-06 9.1108e-06 9.11252e-06 9.11429e-06 9.11604e-06 9.11774e-06 9.11934e-06 9.12075e-06 9.12197e-06 9.12295e-06 9.12366e-06 9.12405e-06 9.12422e-06 9.12408e-06 9.12356e-06 9.1227e-06 9.12145e-06 9.11993e-06 9.11792e-06 9.11536e-06 9.11191e-06 9.10602e-06 9.09924e-06 9.09454e-06 9.09174e-06 9.08973e-06 9.08858e-06 9.08611e-06 9.08074e-06 9.05919e-06 9.01971e-06 8.8204e-06 7.04484e-06 2.2015e-05 0.000577845 0.00154053 0.00181343 0.0019497 9.1017e-06 9.10159e-06 9.10161e-06 9.10169e-06 9.10172e-06 9.10167e-06 9.10161e-06 9.10156e-06 9.10156e-06 9.10156e-06 9.10157e-06 9.10159e-06 9.10157e-06 9.10168e-06 9.10167e-06 9.10205e-06 9.10168e-06 9.10222e-06 9.10566e-06 9.10963e-06 9.11825e-06 9.12548e-06 9.12342e-06 9.11598e-06 9.10984e-06 9.10739e-06 9.10553e-06 9.10581e-06 9.1068e-06 9.10684e-06 9.10601e-06 9.10557e-06 9.10622e-06 9.10792e-06 9.10968e-06 9.11084e-06 9.11319e-06 9.11671e-06 9.12062e-06 9.12504e-06 9.12825e-06 9.12931e-06 9.13235e-06 9.14342e-06 9.16107e-06 9.17434e-06 9.17417e-06 9.16462e-06 9.16149e-06 9.17494e-06 9.20112e-06 9.22871e-06 9.2498e-06 9.26714e-06 9.27647e-06 9.27723e-06 9.27563e-06 9.27337e-06 9.27174e-06 9.27183e-06 9.27366e-06 9.27669e-06 9.27989e-06 9.28207e-06 9.28265e-06 9.28113e-06 9.27795e-06 9.27342e-06 9.26747e-06 9.2586e-06 9.24646e-06 9.23091e-06 9.20995e-06 9.18693e-06 9.15603e-06 9.10248e-06 8.97071e-06 7.88509e-06 1.65015e-05 0.000536922 0.00153295 0.00181651 0.00195394 9.10172e-06 9.10185e-06 9.1021e-06 9.10244e-06 9.10291e-06 9.10351e-06 9.10429e-06 9.10523e-06 9.10636e-06 9.10766e-06 9.10913e-06 9.11072e-06 9.1124e-06 9.11413e-06 9.11584e-06 9.11751e-06 9.11905e-06 9.12042e-06 9.12157e-06 9.12249e-06 9.12313e-06 9.1235e-06 9.12362e-06 9.12336e-06 9.12276e-06 9.12183e-06 9.12057e-06 9.119e-06 9.11688e-06 9.11432e-06 9.11058e-06 9.10445e-06 9.09817e-06 9.09511e-06 9.09248e-06 9.09162e-06 9.08986e-06 9.08874e-06 9.08437e-06 9.06333e-06 9.02197e-06 8.82661e-06 7.06872e-06 2.20036e-05 0.000575792 0.00153727 0.00181128 0.00195343 9.1016e-06 9.10152e-06 9.10155e-06 9.10161e-06 9.10163e-06 9.1016e-06 9.10155e-06 9.10153e-06 9.10154e-06 9.10157e-06 9.10159e-06 9.10157e-06 9.10165e-06 9.10162e-06 9.10194e-06 9.10165e-06 9.10215e-06 9.10531e-06 9.1087e-06 9.11628e-06 9.12422e-06 9.1239e-06 9.11714e-06 9.11085e-06 9.10744e-06 9.10597e-06 9.10558e-06 9.10644e-06 9.10704e-06 9.10676e-06 9.10612e-06 9.10616e-06 9.10726e-06 9.10908e-06 9.1107e-06 9.11243e-06 9.11528e-06 9.11895e-06 9.12367e-06 9.1285e-06 9.13157e-06 9.13214e-06 9.13521e-06 9.14716e-06 9.16547e-06 9.17895e-06 9.17692e-06 9.16539e-06 9.16147e-06 9.1752e-06 9.20224e-06 9.23051e-06 9.25683e-06 9.27755e-06 9.28502e-06 9.28577e-06 9.28458e-06 9.28289e-06 9.28233e-06 9.28377e-06 9.28711e-06 9.29137e-06 9.29495e-06 9.29693e-06 9.29659e-06 9.2943e-06 9.29031e-06 9.28479e-06 9.27591e-06 9.26308e-06 9.24651e-06 9.22415e-06 9.19975e-06 9.16607e-06 9.11104e-06 8.98983e-06 7.98415e-06 1.65192e-05 0.000533634 0.00152863 0.00181373 0.00195729 9.10161e-06 9.10169e-06 9.10186e-06 9.10209e-06 9.10243e-06 9.10289e-06 9.1035e-06 9.10426e-06 9.1052e-06 9.10632e-06 9.10761e-06 9.10906e-06 9.11062e-06 9.11227e-06 9.11395e-06 9.11564e-06 9.11726e-06 9.11874e-06 9.12005e-06 9.12115e-06 9.12202e-06 9.1226e-06 9.12293e-06 9.12296e-06 9.12259e-06 9.12194e-06 9.12095e-06 9.11968e-06 9.11803e-06 9.11585e-06 9.11327e-06 9.10914e-06 9.10314e-06 9.09755e-06 9.09549e-06 9.09341e-06 9.09304e-06 9.09134e-06 9.09191e-06 9.088e-06 9.06709e-06 9.02447e-06 8.82963e-06 7.07857e-06 2.19903e-05 0.00057356 0.00153377 0.0018088 0.00195687 9.10154e-06 9.1015e-06 9.10152e-06 9.10156e-06 9.10158e-06 9.10155e-06 9.10152e-06 9.10152e-06 9.10155e-06 9.10159e-06 9.10158e-06 9.10163e-06 9.1016e-06 9.10183e-06 9.10161e-06 9.10206e-06 9.10501e-06 9.10794e-06 9.11446e-06 9.12277e-06 9.12409e-06 9.11821e-06 9.11178e-06 9.10794e-06 9.10624e-06 9.10553e-06 9.10604e-06 9.1069e-06 9.10715e-06 9.10676e-06 9.10645e-06 9.10698e-06 9.10839e-06 9.11023e-06 9.11193e-06 9.1143e-06 9.11741e-06 9.12159e-06 9.12681e-06 9.13217e-06 9.13492e-06 9.13501e-06 9.13843e-06 9.15076e-06 9.17033e-06 9.18298e-06 9.17856e-06 9.16523e-06 9.16082e-06 9.1749e-06 9.20214e-06 9.23402e-06 9.26731e-06 9.28738e-06 9.2936e-06 9.295e-06 9.29441e-06 9.29372e-06 9.29464e-06 9.29785e-06 9.30282e-06 9.30789e-06 9.31157e-06 9.31276e-06 9.31152e-06 9.30804e-06 9.30276e-06 9.29378e-06 9.27988e-06 9.26224e-06 9.23887e-06 9.21222e-06 9.17618e-06 9.12094e-06 9.01023e-06 8.07652e-06 1.65315e-05 0.000530336 0.00152419 0.00181084 0.00196033 9.10155e-06 9.10159e-06 9.10169e-06 9.10185e-06 9.10209e-06 9.10242e-06 9.10288e-06 9.10348e-06 9.10424e-06 9.10517e-06 9.10628e-06 9.10755e-06 9.10897e-06 9.11051e-06 9.11213e-06 9.11378e-06 9.11543e-06 9.11699e-06 9.11841e-06 9.11967e-06 9.12072e-06 9.12153e-06 9.12205e-06 9.12232e-06 9.12223e-06 9.1218e-06 9.12111e-06 9.12008e-06 9.11878e-06 9.117e-06 9.11486e-06 9.11207e-06 9.10755e-06 9.10206e-06 9.09761e-06 9.09567e-06 9.09454e-06 9.09392e-06 9.0933e-06 9.09507e-06 9.0913e-06 9.07041e-06 9.02693e-06 8.82872e-06 7.09074e-06 2.19632e-05 0.000571038 0.00152999 0.00180616 0.00196009 9.10151e-06 9.1015e-06 9.10151e-06 9.10153e-06 9.10153e-06 9.10151e-06 9.1015e-06 9.10152e-06 9.10157e-06 9.10158e-06 9.10164e-06 9.10159e-06 9.10176e-06 9.10158e-06 9.10194e-06 9.10474e-06 9.10732e-06 9.11281e-06 9.12118e-06 9.124e-06 9.11919e-06 9.11272e-06 9.10851e-06 9.10651e-06 9.1057e-06 9.10579e-06 9.10652e-06 9.10717e-06 9.10721e-06 9.1069e-06 9.10703e-06 9.10798e-06 9.10953e-06 9.11123e-06 9.11348e-06 9.11624e-06 9.11956e-06 9.12431e-06 9.13031e-06 9.13588e-06 9.13828e-06 9.1384e-06 9.14155e-06 9.15491e-06 9.17485e-06 9.18586e-06 9.17908e-06 9.16428e-06 9.15928e-06 9.17353e-06 9.20195e-06 9.24254e-06 9.27942e-06 9.29674e-06 9.30316e-06 9.30536e-06 9.30564e-06 9.3064e-06 9.3092e-06 9.31436e-06 9.32064e-06 9.32626e-06 9.3295e-06 9.3297e-06 9.3269e-06 9.32153e-06 9.31246e-06 9.29734e-06 9.27857e-06 9.25446e-06 9.22539e-06 9.1881e-06 9.13366e-06 9.03259e-06 8.15871e-06 1.65382e-05 0.000527105 0.00151975 0.00180785 0.00196314 9.10151e-06 9.10153e-06 9.10158e-06 9.10168e-06 9.10184e-06 9.10207e-06 9.1024e-06 9.10286e-06 9.10345e-06 9.10421e-06 9.10513e-06 9.10623e-06 9.10749e-06 9.10888e-06 9.1104e-06 9.11198e-06 9.11361e-06 9.1152e-06 9.1167e-06 9.11808e-06 9.11928e-06 9.12027e-06 9.12101e-06 9.12147e-06 9.12164e-06 9.12147e-06 9.12102e-06 9.12027e-06 9.11918e-06 9.11782e-06 9.11597e-06 9.11384e-06 9.11072e-06 9.10614e-06 9.10115e-06 9.09809e-06 9.096e-06 9.09575e-06 9.09466e-06 9.09589e-06 9.09793e-06 9.09437e-06 9.0737e-06 9.02947e-06 8.82959e-06 7.13033e-06 2.19124e-05 0.000568222 0.00152591 0.0018033 0.00196301 9.10151e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10154e-06 9.10156e-06 9.10163e-06 9.1016e-06 9.10173e-06 9.10155e-06 9.10182e-06 9.1045e-06 9.10684e-06 9.11134e-06 9.1195e-06 9.12362e-06 9.12002e-06 9.11369e-06 9.10911e-06 9.10684e-06 9.10579e-06 9.10583e-06 9.10625e-06 9.10687e-06 9.10737e-06 9.10734e-06 9.10727e-06 9.10783e-06 9.10903e-06 9.11043e-06 9.11244e-06 9.11517e-06 9.11804e-06 9.12195e-06 9.12728e-06 9.13389e-06 9.13952e-06 9.14205e-06 9.14186e-06 9.14487e-06 9.15893e-06 9.17852e-06 9.18753e-06 9.17844e-06 9.16189e-06 9.15685e-06 9.17054e-06 9.20621e-06 9.25661e-06 9.29137e-06 9.30705e-06 9.3144e-06 9.31735e-06 9.31892e-06 9.32146e-06 9.32635e-06 9.33322e-06 9.34066e-06 9.34648e-06 9.34879e-06 9.34722e-06 9.34169e-06 9.33268e-06 9.31676e-06 9.29691e-06 9.27202e-06 9.2411e-06 9.20327e-06 9.14992e-06 9.0566e-06 8.23143e-06 1.65196e-05 0.000523997 0.00151533 0.00180486 0.0019657 9.1015e-06 9.1015e-06 9.10152e-06 9.10158e-06 9.10168e-06 9.10183e-06 9.10207e-06 9.10239e-06 9.10284e-06 9.10343e-06 9.10418e-06 9.10509e-06 9.10617e-06 9.10741e-06 9.10878e-06 9.11027e-06 9.11183e-06 9.11342e-06 9.11496e-06 9.11641e-06 9.11773e-06 9.11888e-06 9.11981e-06 9.12046e-06 9.12085e-06 9.12092e-06 9.1207e-06 9.12022e-06 9.11939e-06 9.11826e-06 9.11682e-06 9.11494e-06 9.11269e-06 9.10943e-06 9.10511e-06 9.10063e-06 9.09853e-06 9.09678e-06 9.09689e-06 9.09589e-06 9.09896e-06 9.10069e-06 9.0976e-06 9.07755e-06 9.0322e-06 8.83592e-06 7.20573e-06 2.18332e-05 0.000565025 0.00152157 0.00180021 0.00196558 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10149e-06 9.10148e-06 9.10151e-06 9.10154e-06 9.10161e-06 9.1016e-06 9.10172e-06 9.10154e-06 9.10172e-06 9.10427e-06 9.10646e-06 9.11007e-06 9.11779e-06 9.12298e-06 9.12069e-06 9.11465e-06 9.10977e-06 9.10719e-06 9.10596e-06 9.1058e-06 9.10615e-06 9.10664e-06 9.10715e-06 9.1076e-06 9.10767e-06 9.10784e-06 9.1088e-06 9.10999e-06 9.11143e-06 9.11389e-06 9.11686e-06 9.12022e-06 9.12438e-06 9.13036e-06 9.13741e-06 9.14328e-06 9.14615e-06 9.14497e-06 9.14809e-06 9.16258e-06 9.18122e-06 9.18778e-06 9.17598e-06 9.1585e-06 9.15224e-06 9.1694e-06 9.2195e-06 9.27311e-06 9.30396e-06 9.3198e-06 9.32775e-06 9.33171e-06 9.33478e-06 9.33933e-06 9.34607e-06 9.35478e-06 9.36332e-06 9.36846e-06 9.36905e-06 9.36395e-06 9.35528e-06 9.3396e-06 9.31893e-06 9.29287e-06 9.26059e-06 9.22189e-06 9.16942e-06 9.08162e-06 8.29475e-06 1.64689e-05 0.000520962 0.00151097 0.00180187 0.00196811 9.1015e-06 9.1015e-06 9.10149e-06 9.10152e-06 9.10157e-06 9.10167e-06 9.10182e-06 9.10205e-06 9.10237e-06 9.10282e-06 9.1034e-06 9.10414e-06 9.10504e-06 9.10611e-06 9.10733e-06 9.10868e-06 9.11014e-06 9.11166e-06 9.11321e-06 9.1147e-06 9.1161e-06 9.11737e-06 9.11845e-06 9.11931e-06 9.11988e-06 9.12019e-06 9.12019e-06 9.11993e-06 9.11937e-06 9.11847e-06 9.1173e-06 9.11577e-06 9.11386e-06 9.11149e-06 9.10825e-06 9.10436e-06 9.10053e-06 9.09881e-06 9.09797e-06 9.09789e-06 9.09807e-06 9.10225e-06 9.10374e-06 9.10141e-06 9.0823e-06 9.03463e-06 8.84435e-06 7.30549e-06 2.1711e-05 0.000561488 0.00151703 0.00179702 0.00196796 9.1015e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10148e-06 9.10149e-06 9.10151e-06 9.10157e-06 9.10158e-06 9.1017e-06 9.10154e-06 9.10167e-06 9.10406e-06 9.10615e-06 9.10898e-06 9.11609e-06 9.12211e-06 9.12115e-06 9.11559e-06 9.11048e-06 9.10757e-06 9.10619e-06 9.10578e-06 9.10616e-06 9.10649e-06 9.10696e-06 9.10746e-06 9.10796e-06 9.10813e-06 9.10867e-06 9.10986e-06 9.11095e-06 9.11267e-06 9.11552e-06 9.11893e-06 9.12232e-06 9.1269e-06 9.13353e-06 9.14079e-06 9.14753e-06 9.14956e-06 9.14777e-06 9.15123e-06 9.16574e-06 9.18266e-06 9.18625e-06 9.17219e-06 9.15319e-06 9.1464e-06 9.17737e-06 9.2402e-06 9.29053e-06 9.31924e-06 9.33535e-06 9.34394e-06 9.34902e-06 9.35381e-06 9.36e-06 9.36917e-06 9.37999e-06 9.38829e-06 9.39198e-06 9.38859e-06 9.38074e-06 9.36651e-06 9.34562e-06 9.31802e-06 9.28405e-06 9.24333e-06 9.19121e-06 9.10718e-06 8.35051e-06 1.6414e-05 0.000517829 0.00150664 0.00179897 0.00197036 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10152e-06 9.10157e-06 9.10166e-06 9.10182e-06 9.10204e-06 9.10236e-06 9.1028e-06 9.10338e-06 9.10411e-06 9.10499e-06 9.10604e-06 9.10724e-06 9.10857e-06 9.11e-06 9.11148e-06 9.11297e-06 9.11442e-06 9.11577e-06 9.11699e-06 9.11799e-06 9.11876e-06 9.11927e-06 9.1195e-06 9.11945e-06 9.11913e-06 9.11847e-06 9.11754e-06 9.11629e-06 9.11467e-06 9.1128e-06 9.11036e-06 9.10728e-06 9.10387e-06 9.10067e-06 9.09913e-06 9.09924e-06 9.09891e-06 9.10117e-06 9.10556e-06 9.10738e-06 9.10593e-06 9.08783e-06 9.03608e-06 8.85318e-06 7.41075e-06 2.15554e-05 0.000557698 0.00151238 0.00179383 0.0019703 9.1015e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10154e-06 9.10155e-06 9.10167e-06 9.10154e-06 9.10163e-06 9.10386e-06 9.10591e-06 9.10807e-06 9.11445e-06 9.12105e-06 9.1214e-06 9.11648e-06 9.11124e-06 9.108e-06 9.10645e-06 9.10582e-06 9.10605e-06 9.1066e-06 9.10678e-06 9.10726e-06 9.10788e-06 9.10838e-06 9.10878e-06 9.10969e-06 9.11092e-06 9.11207e-06 9.1141e-06 9.11739e-06 9.12102e-06 9.12448e-06 9.12964e-06 9.13655e-06 9.14457e-06 9.1512e-06 9.15241e-06 9.15038e-06 9.15422e-06 9.16817e-06 9.18286e-06 9.18334e-06 9.16712e-06 9.14479e-06 9.14542e-06 9.19761e-06 9.26426e-06 9.30995e-06 9.33821e-06 9.35443e-06 9.36365e-06 9.36997e-06 9.37592e-06 9.38486e-06 9.39711e-06 9.40826e-06 9.41537e-06 9.41517e-06 9.40892e-06 9.39689e-06 9.37668e-06 9.34788e-06 9.31142e-06 9.26743e-06 9.21477e-06 9.13356e-06 8.39959e-06 1.64061e-05 0.000514723 0.00150232 0.00179618 0.00197247 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.10157e-06 9.10166e-06 9.10181e-06 9.10203e-06 9.10234e-06 9.10278e-06 9.10335e-06 9.10407e-06 9.10494e-06 9.10597e-06 9.10715e-06 9.10845e-06 9.10984e-06 9.11129e-06 9.11272e-06 9.11412e-06 9.11542e-06 9.11656e-06 9.11749e-06 9.11818e-06 9.11862e-06 9.11879e-06 9.11869e-06 9.11827e-06 9.11754e-06 9.11654e-06 9.11524e-06 9.11361e-06 9.11182e-06 9.10933e-06 9.10669e-06 9.10344e-06 9.10094e-06 9.09983e-06 9.10042e-06 9.10037e-06 9.10475e-06 9.10895e-06 9.11159e-06 9.11097e-06 9.09367e-06 9.03691e-06 8.86146e-06 7.51453e-06 2.13838e-05 0.00055372 0.00150767 0.00179058 0.0019723 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10152e-06 9.10152e-06 9.10162e-06 9.10152e-06 9.1016e-06 9.10367e-06 9.10571e-06 9.10732e-06 9.1129e-06 9.11982e-06 9.12143e-06 9.1173e-06 9.11203e-06 9.10848e-06 9.10672e-06 9.10592e-06 9.106e-06 9.10649e-06 9.10695e-06 9.10702e-06 9.10765e-06 9.10835e-06 9.10895e-06 9.10961e-06 9.11076e-06 9.11207e-06 9.11328e-06 9.11564e-06 9.1195e-06 9.12324e-06 9.12687e-06 9.13247e-06 9.1397e-06 9.14819e-06 9.15422e-06 9.15473e-06 9.15278e-06 9.15693e-06 9.17014e-06 9.18224e-06 9.1799e-06 9.1591e-06 9.13536e-06 9.15776e-06 9.22652e-06 9.28969e-06 9.33402e-06 9.36169e-06 9.37786e-06 9.38764e-06 9.39442e-06 9.40305e-06 9.4159e-06 9.42911e-06 9.43909e-06 9.44292e-06 9.43919e-06 9.42945e-06 9.41077e-06 9.3822e-06 9.34321e-06 9.2953e-06 9.24087e-06 9.16176e-06 8.43939e-06 1.64817e-05 0.000511824 0.00149809 0.00179358 0.00197445 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10156e-06 9.10165e-06 9.1018e-06 9.10202e-06 9.10232e-06 9.10275e-06 9.10332e-06 9.10402e-06 9.10488e-06 9.1059e-06 9.10705e-06 9.10832e-06 9.10968e-06 9.11108e-06 9.11246e-06 9.11381e-06 9.11504e-06 9.11609e-06 9.11694e-06 9.11756e-06 9.11794e-06 9.11805e-06 9.11788e-06 9.11736e-06 9.11658e-06 9.11553e-06 9.11423e-06 9.11267e-06 9.11086e-06 9.10862e-06 9.10637e-06 9.10306e-06 9.10137e-06 9.10098e-06 9.10158e-06 9.10278e-06 9.1084e-06 9.11263e-06 9.11616e-06 9.11609e-06 9.0992e-06 9.0388e-06 8.87099e-06 7.61683e-06 2.11924e-05 0.000549719 0.00150304 0.00178731 0.00197427 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10151e-06 9.1015e-06 9.10157e-06 9.1015e-06 9.10155e-06 9.10349e-06 9.10554e-06 9.10672e-06 9.11147e-06 9.11848e-06 9.12125e-06 9.11802e-06 9.11285e-06 9.10902e-06 9.10702e-06 9.10606e-06 9.10597e-06 9.10639e-06 9.10689e-06 9.10722e-06 9.10733e-06 9.10812e-06 9.10892e-06 9.10965e-06 9.11051e-06 9.11196e-06 9.11325e-06 9.1145e-06 9.11748e-06 9.12198e-06 9.12562e-06 9.12955e-06 9.13518e-06 9.14312e-06 9.15138e-06 9.15653e-06 9.15645e-06 9.15493e-06 9.15971e-06 9.17209e-06 9.18174e-06 9.17518e-06 9.14673e-06 9.13502e-06 9.18519e-06 9.25902e-06 9.32081e-06 9.36393e-06 9.39061e-06 9.40635e-06 9.41573e-06 9.42465e-06 9.43775e-06 9.45223e-06 9.464e-06 9.47164e-06 9.47096e-06 9.46325e-06 9.44649e-06 9.42004e-06 9.38018e-06 9.32903e-06 9.27156e-06 9.19251e-06 8.46486e-06 1.66246e-05 0.000509286 0.00149413 0.00179118 0.00197636 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10156e-06 9.10164e-06 9.10179e-06 9.102e-06 9.10231e-06 9.10273e-06 9.10328e-06 9.10398e-06 9.10482e-06 9.10582e-06 9.10694e-06 9.10818e-06 9.1095e-06 9.11085e-06 9.11219e-06 9.11347e-06 9.11462e-06 9.11559e-06 9.11638e-06 9.11693e-06 9.11724e-06 9.11728e-06 9.11701e-06 9.11641e-06 9.11561e-06 9.11459e-06 9.11334e-06 9.1118e-06 9.11005e-06 9.1083e-06 9.10604e-06 9.10291e-06 9.10211e-06 9.10234e-06 9.10302e-06 9.10625e-06 9.11205e-06 9.11677e-06 9.12077e-06 9.12089e-06 9.10389e-06 9.04367e-06 8.8836e-06 7.72459e-06 2.1003e-05 0.000545817 0.00149846 0.00178428 0.00197602 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10149e-06 9.10154e-06 9.10148e-06 9.10151e-06 9.10332e-06 9.10539e-06 9.10625e-06 9.11016e-06 9.11705e-06 9.12084e-06 9.11861e-06 9.11368e-06 9.1096e-06 9.10735e-06 9.10625e-06 9.10597e-06 9.10632e-06 9.10684e-06 9.10722e-06 9.10751e-06 9.10777e-06 9.10865e-06 9.10961e-06 9.11047e-06 9.11163e-06 9.11328e-06 9.11441e-06 9.1159e-06 9.11982e-06 9.12468e-06 9.12828e-06 9.13208e-06 9.13826e-06 9.14649e-06 9.15396e-06 9.1579e-06 9.1576e-06 9.1571e-06 9.16286e-06 9.17451e-06 9.18208e-06 9.16758e-06 9.13675e-06 9.15364e-06 9.22366e-06 9.29847e-06 9.35933e-06 9.40066e-06 9.4256e-06 9.43979e-06 9.45026e-06 9.46382e-06 9.47916e-06 9.4918e-06 9.50214e-06 9.50428e-06 9.49835e-06 9.48334e-06 9.46023e-06 9.42222e-06 9.37021e-06 9.30918e-06 9.22644e-06 8.47251e-06 1.67804e-05 0.000507251 0.00149059 0.00178914 0.00197828 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10156e-06 9.10164e-06 9.10178e-06 9.10199e-06 9.10229e-06 9.1027e-06 9.10324e-06 9.10392e-06 9.10476e-06 9.10573e-06 9.10683e-06 9.10803e-06 9.10931e-06 9.11061e-06 9.1119e-06 9.1131e-06 9.11417e-06 9.11508e-06 9.11581e-06 9.1163e-06 9.11651e-06 9.11645e-06 9.1161e-06 9.1155e-06 9.11472e-06 9.11376e-06 9.11248e-06 9.11108e-06 9.10956e-06 9.10819e-06 9.10564e-06 9.10329e-06 9.10315e-06 9.10373e-06 9.10514e-06 9.11048e-06 9.11594e-06 9.12131e-06 9.12519e-06 9.12517e-06 9.10757e-06 9.05207e-06 8.90012e-06 7.83486e-06 2.08285e-05 0.000542073 0.00149397 0.00178126 0.00197776 9.10148e-06 9.10149e-06 9.1015e-06 9.10149e-06 9.10153e-06 9.10147e-06 9.10148e-06 9.10316e-06 9.10526e-06 9.10589e-06 9.109e-06 9.11557e-06 9.12022e-06 9.11906e-06 9.11449e-06 9.11024e-06 9.10771e-06 9.10647e-06 9.10601e-06 9.10626e-06 9.10679e-06 9.10721e-06 9.10751e-06 9.10792e-06 9.10829e-06 9.10932e-06 9.11042e-06 9.11144e-06 9.11297e-06 9.11465e-06 9.11556e-06 9.11761e-06 9.12255e-06 9.12758e-06 9.13091e-06 9.13477e-06 9.14162e-06 9.14959e-06 9.15564e-06 9.15842e-06 9.15828e-06 9.15927e-06 9.16629e-06 9.17915e-06 9.18407e-06 9.15797e-06 9.14432e-06 9.1942e-06 9.27058e-06 9.34678e-06 9.40623e-06 9.44473e-06 9.46667e-06 9.48031e-06 9.49483e-06 9.51101e-06 9.52419e-06 9.53598e-06 9.54001e-06 9.53567e-06 9.52205e-06 9.50208e-06 9.46795e-06 9.41863e-06 9.35533e-06 9.26454e-06 8.46015e-06 1.68889e-05 0.000505729 0.00148749 0.0017875 0.0019802 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10155e-06 9.10163e-06 9.10176e-06 9.10197e-06 9.10227e-06 9.10266e-06 9.1032e-06 9.10387e-06 9.10468e-06 9.10563e-06 9.1067e-06 9.10786e-06 9.1091e-06 9.11035e-06 9.11158e-06 9.11271e-06 9.1137e-06 9.11456e-06 9.11522e-06 9.11561e-06 9.11574e-06 9.11561e-06 9.11523e-06 9.11468e-06 9.11397e-06 9.11297e-06 9.11178e-06 9.11063e-06 9.10937e-06 9.108e-06 9.1054e-06 9.10427e-06 9.10439e-06 9.10527e-06 9.10826e-06 9.11497e-06 9.12029e-06 9.126e-06 9.1294e-06 9.12905e-06 9.11073e-06 9.0628e-06 8.91958e-06 7.94463e-06 2.06664e-05 0.000538375 0.0014895 0.00177851 0.00197946 9.10148e-06 9.10149e-06 9.10149e-06 9.10152e-06 9.10146e-06 9.10146e-06 9.10301e-06 9.10512e-06 9.10563e-06 9.108e-06 9.11409e-06 9.11939e-06 9.11934e-06 9.11526e-06 9.11092e-06 9.10811e-06 9.10672e-06 9.10609e-06 9.10621e-06 9.10672e-06 9.10719e-06 9.10752e-06 9.10789e-06 9.10843e-06 9.10893e-06 9.11013e-06 9.11137e-06 9.11265e-06 9.11447e-06 9.11598e-06 9.11677e-06 9.11978e-06 9.12557e-06 9.13061e-06 9.13338e-06 9.13775e-06 9.145e-06 9.15213e-06 9.15651e-06 9.15796e-06 9.15821e-06 9.16115e-06 9.1719e-06 9.18906e-06 9.1844e-06 9.15987e-06 9.18113e-06 9.24431e-06 9.32697e-06 9.40481e-06 9.46195e-06 9.49627e-06 9.51551e-06 9.53146e-06 9.54831e-06 9.56211e-06 9.57449e-06 9.57951e-06 9.57631e-06 9.56398e-06 9.54586e-06 9.51571e-06 9.47211e-06 9.41034e-06 9.30843e-06 8.43158e-06 1.69352e-05 0.000504749 0.00148489 0.00178638 0.00198216 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10155e-06 9.10163e-06 9.10175e-06 9.10196e-06 9.10224e-06 9.10263e-06 9.10315e-06 9.10381e-06 9.1046e-06 9.10552e-06 9.10656e-06 9.10769e-06 9.10888e-06 9.11007e-06 9.11123e-06 9.1123e-06 9.11324e-06 9.11403e-06 9.11458e-06 9.11489e-06 9.11495e-06 9.11481e-06 9.11446e-06 9.11399e-06 9.11324e-06 9.11231e-06 9.11133e-06 9.11042e-06 9.10936e-06 9.10768e-06 9.1057e-06 9.10561e-06 9.10578e-06 9.10733e-06 9.11237e-06 9.11945e-06 9.12507e-06 9.13062e-06 9.13363e-06 9.13283e-06 9.11449e-06 9.07388e-06 8.94034e-06 8.04717e-06 2.05002e-05 0.000534649 0.00148511 0.00177596 0.00198117 9.10149e-06 9.10149e-06 9.10152e-06 9.10147e-06 9.10145e-06 9.10287e-06 9.10499e-06 9.10546e-06 9.10717e-06 9.11264e-06 9.1184e-06 9.11943e-06 9.11598e-06 9.11163e-06 9.10856e-06 9.10698e-06 9.10621e-06 9.10619e-06 9.10663e-06 9.10717e-06 9.10756e-06 9.10787e-06 9.10841e-06 9.10903e-06 9.1097e-06 9.11105e-06 9.11248e-06 9.11407e-06 9.11609e-06 9.11721e-06 9.11829e-06 9.12239e-06 9.12897e-06 9.13341e-06 9.13593e-06 9.14085e-06 9.14829e-06 9.15418e-06 9.15621e-06 9.15625e-06 9.1573e-06 9.16393e-06 9.18284e-06 9.20056e-06 9.18876e-06 9.18748e-06 9.22719e-06 9.30297e-06 9.39349e-06 9.4729e-06 9.52663e-06 9.55633e-06 9.57491e-06 9.59175e-06 9.60577e-06 9.61813e-06 9.62379e-06 9.62113e-06 9.61022e-06 9.59262e-06 9.5649e-06 9.52793e-06 9.47315e-06 9.36043e-06 8.39299e-06 1.69419e-05 0.000504331 0.00148281 0.00178575 0.00198424 9.10148e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10155e-06 9.10162e-06 9.10174e-06 9.10194e-06 9.10222e-06 9.10259e-06 9.1031e-06 9.10374e-06 9.10451e-06 9.10541e-06 9.10641e-06 9.1075e-06 9.10863e-06 9.10978e-06 9.11087e-06 9.11188e-06 9.11275e-06 9.11345e-06 9.11391e-06 9.11417e-06 9.11423e-06 9.11413e-06 9.11381e-06 9.11337e-06 9.11265e-06 9.11189e-06 9.11115e-06 9.11045e-06 9.10936e-06 9.10758e-06 9.10668e-06 9.10698e-06 9.10742e-06 9.11033e-06 9.11718e-06 9.124e-06 9.13011e-06 9.13519e-06 9.1383e-06 9.1369e-06 9.12006e-06 9.08385e-06 8.96147e-06 8.14213e-06 2.02885e-05 0.000530939 0.00148094 0.00177377 0.00198289 9.10148e-06 9.10151e-06 9.10147e-06 9.10143e-06 9.10273e-06 9.10484e-06 9.10535e-06 9.10652e-06 9.11129e-06 9.11727e-06 9.11931e-06 9.11661e-06 9.11235e-06 9.10906e-06 9.10727e-06 9.10638e-06 9.10619e-06 9.10656e-06 9.10713e-06 9.10757e-06 9.1079e-06 9.10834e-06 9.109e-06 9.10975e-06 9.11059e-06 9.11205e-06 9.11381e-06 9.11577e-06 9.11765e-06 9.1185e-06 9.12028e-06 9.12553e-06 9.13238e-06 9.13606e-06 9.13852e-06 9.14424e-06 9.15147e-06 9.15522e-06 9.15465e-06 9.1535e-06 9.15578e-06 9.16917e-06 9.19787e-06 9.21088e-06 9.20468e-06 9.22207e-06 9.2793e-06 9.37058e-06 9.47035e-06 9.55109e-06 9.60045e-06 9.62635e-06 9.64308e-06 9.6559e-06 9.667e-06 9.6731e-06 9.67065e-06 9.6611e-06 9.64344e-06 9.61648e-06 9.58458e-06 9.54145e-06 9.42212e-06 8.34423e-06 1.69458e-05 0.000504499 0.00148129 0.00178568 0.0019865 9.10148e-06 9.10148e-06 9.10148e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10155e-06 9.10161e-06 9.10173e-06 9.10192e-06 9.10219e-06 9.10256e-06 9.10305e-06 9.10367e-06 9.10442e-06 9.10529e-06 9.10626e-06 9.10731e-06 9.10839e-06 9.10948e-06 9.1105e-06 9.11144e-06 9.11224e-06 9.11284e-06 9.11326e-06 9.11353e-06 9.11363e-06 9.11354e-06 9.11329e-06 9.11286e-06 9.11228e-06 9.11173e-06 9.1112e-06 9.11053e-06 9.10942e-06 9.10809e-06 9.1081e-06 9.10831e-06 9.10959e-06 9.11443e-06 9.12228e-06 9.12882e-06 9.13525e-06 9.14001e-06 9.14378e-06 9.14169e-06 9.12789e-06 9.09231e-06 8.98308e-06 8.22856e-06 2.00656e-05 0.00052742 0.00147706 0.00177202 0.00198474 9.1015e-06 9.10147e-06 9.10142e-06 9.10261e-06 9.10468e-06 9.10528e-06 9.10603e-06 9.11008e-06 9.11606e-06 9.119e-06 9.11712e-06 9.11307e-06 9.1096e-06 9.10758e-06 9.10658e-06 9.10623e-06 9.10651e-06 9.10707e-06 9.10757e-06 9.10794e-06 9.10834e-06 9.10892e-06 9.1097e-06 9.11061e-06 9.11157e-06 9.1132e-06 9.11541e-06 9.11754e-06 9.11919e-06 9.12011e-06 9.1227e-06 9.12905e-06 9.13572e-06 9.13869e-06 9.14149e-06 9.14771e-06 9.15402e-06 9.15525e-06 9.15215e-06 9.14932e-06 9.15355e-06 9.1784e-06 9.2104e-06 9.21664e-06 9.2242e-06 9.25967e-06 9.33765e-06 9.44715e-06 9.55735e-06 9.63859e-06 9.68335e-06 9.70449e-06 9.71517e-06 9.72256e-06 9.72763e-06 9.72517e-06 9.71648e-06 9.69878e-06 9.67191e-06 9.6425e-06 9.61215e-06 9.49256e-06 8.2876e-06 1.69642e-05 0.000505305 0.00148034 0.00178623 0.00198898 9.1015e-06 9.10148e-06 9.10149e-06 9.10148e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10152e-06 9.10152e-06 9.10153e-06 9.10155e-06 9.1016e-06 9.10172e-06 9.1019e-06 9.10216e-06 9.10252e-06 9.103e-06 9.1036e-06 9.10432e-06 9.10516e-06 9.1061e-06 9.1071e-06 9.10813e-06 9.10915e-06 9.1101e-06 9.11097e-06 9.1117e-06 9.11227e-06 9.11271e-06 9.11301e-06 9.11312e-06 9.11308e-06 9.11291e-06 9.11253e-06 9.11218e-06 9.11183e-06 9.11138e-06 9.11067e-06 9.1098e-06 9.10928e-06 9.10962e-06 9.1099e-06 9.11266e-06 9.11941e-06 9.12742e-06 9.13404e-06 9.14059e-06 9.1456e-06 9.15025e-06 9.14772e-06 9.13734e-06 9.09987e-06 9.00581e-06 8.30758e-06 1.98863e-05 0.000524227 0.00147361 0.00177076 0.00198676 9.10147e-06 9.10141e-06 9.1025e-06 9.10451e-06 9.10523e-06 9.10569e-06 9.10902e-06 9.11483e-06 9.11852e-06 9.1175e-06 9.11378e-06 9.11019e-06 9.10793e-06 9.1068e-06 9.10631e-06 9.10648e-06 9.107e-06 9.10755e-06 9.10798e-06 9.10835e-06 9.1089e-06 9.10958e-06 9.11055e-06 9.11159e-06 9.11263e-06 9.11466e-06 9.11722e-06 9.11935e-06 9.12087e-06 9.12208e-06 9.1257e-06 9.13287e-06 9.13906e-06 9.14147e-06 9.14453e-06 9.15093e-06 9.1558e-06 9.15444e-06 9.1482e-06 9.14293e-06 9.15347e-06 9.18698e-06 9.21076e-06 9.22394e-06 9.24485e-06 9.30046e-06 9.40212e-06 9.53226e-06 9.65292e-06 9.73408e-06 9.77375e-06 9.78709e-06 9.78919e-06 9.78954e-06 9.78548e-06 9.77638e-06 9.75862e-06 9.73201e-06 9.70318e-06 9.68267e-06 9.56779e-06 8.22036e-06 1.69727e-05 0.000506684 0.00148004 0.00178745 0.00199171 9.10147e-06 9.1015e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10153e-06 9.10153e-06 9.10155e-06 9.1016e-06 9.1017e-06 9.10187e-06 9.10213e-06 9.10248e-06 9.10294e-06 9.10352e-06 9.10422e-06 9.10503e-06 9.10592e-06 9.10688e-06 9.10785e-06 9.10881e-06 9.1097e-06 9.11052e-06 9.11122e-06 9.11181e-06 9.11226e-06 9.11259e-06 9.11273e-06 9.11278e-06 9.11268e-06 9.11247e-06 9.11232e-06 9.11207e-06 9.11165e-06 9.11101e-06 9.11071e-06 9.11087e-06 9.11118e-06 9.1122e-06 9.11679e-06 9.12487e-06 9.13262e-06 9.13967e-06 9.14641e-06 9.15238e-06 9.1577e-06 9.15554e-06 9.1471e-06 9.10791e-06 9.03007e-06 8.3799e-06 1.98187e-05 0.000521571 0.00147064 0.00176999 0.00198897 9.10141e-06 9.10241e-06 9.10434e-06 9.10516e-06 9.10546e-06 9.10813e-06 9.11362e-06 9.11789e-06 9.11775e-06 9.11444e-06 9.11081e-06 9.10832e-06 9.10705e-06 9.10643e-06 9.10647e-06 9.10693e-06 9.10752e-06 9.10801e-06 9.1084e-06 9.10889e-06 9.10955e-06 9.11038e-06 9.11154e-06 9.11263e-06 9.11387e-06 9.11651e-06 9.11917e-06 9.12119e-06 9.12283e-06 9.12459e-06 9.12922e-06 9.13697e-06 9.14232e-06 9.14419e-06 9.14755e-06 9.15358e-06 9.15668e-06 9.15244e-06 9.14218e-06 9.13678e-06 9.15554e-06 9.18736e-06 9.21377e-06 9.23291e-06 9.26715e-06 9.34445e-06 9.4722e-06 9.62406e-06 9.75496e-06 9.83643e-06 9.86961e-06 9.87217e-06 9.86461e-06 9.85454e-06 9.84197e-06 9.82305e-06 9.79663e-06 9.76779e-06 9.75257e-06 9.64308e-06 8.14475e-06 1.69377e-05 0.000508575 0.00148035 0.00178937 0.00199473 9.10142e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10153e-06 9.10154e-06 9.10154e-06 9.10155e-06 9.1016e-06 9.1017e-06 9.10185e-06 9.1021e-06 9.10244e-06 9.10287e-06 9.10344e-06 9.10412e-06 9.10488e-06 9.10574e-06 9.10663e-06 9.10756e-06 9.10846e-06 9.10932e-06 9.11012e-06 9.11082e-06 9.11143e-06 9.11191e-06 9.11228e-06 9.11249e-06 9.11264e-06 9.11267e-06 9.11266e-06 9.11262e-06 9.11243e-06 9.11211e-06 9.11182e-06 9.11208e-06 9.11256e-06 9.11305e-06 9.11558e-06 9.12184e-06 9.13048e-06 9.13807e-06 9.14572e-06 9.15306e-06 9.16051e-06 9.16621e-06 9.16547e-06 9.1563e-06 9.1182e-06 9.05557e-06 8.44747e-06 1.98843e-05 0.000519421 0.00146814 0.00176981 0.00199141 9.10232e-06 9.10416e-06 9.10508e-06 9.10529e-06 9.10739e-06 9.11245e-06 9.11714e-06 9.11786e-06 9.11505e-06 9.11144e-06 9.10876e-06 9.10731e-06 9.10659e-06 9.10648e-06 9.10688e-06 9.10748e-06 9.10802e-06 9.10845e-06 9.1089e-06 9.10954e-06 9.1103e-06 9.11133e-06 9.11264e-06 9.11373e-06 9.11545e-06 9.1186e-06 9.12116e-06 9.12325e-06 9.12521e-06 9.12761e-06 9.13325e-06 9.14099e-06 9.14539e-06 9.14694e-06 9.15025e-06 9.15528e-06 9.15649e-06 9.14902e-06 9.13517e-06 9.13436e-06 9.15896e-06 9.19388e-06 9.22147e-06 9.24458e-06 9.29162e-06 9.39144e-06 9.54652e-06 9.7203e-06 9.86272e-06 9.94486e-06 9.96903e-06 9.95942e-06 9.93904e-06 9.91733e-06 9.89362e-06 9.86567e-06 9.8368e-06 9.82418e-06 9.71664e-06 8.05929e-06 1.68037e-05 0.000510773 0.00148125 0.00179204 0.00199807 9.10142e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10155e-06 9.10156e-06 9.1016e-06 9.10169e-06 9.10183e-06 9.10207e-06 9.10239e-06 9.1028e-06 9.10335e-06 9.104e-06 9.10473e-06 9.10554e-06 9.10639e-06 9.10728e-06 9.10815e-06 9.10902e-06 9.1098e-06 9.11051e-06 9.11116e-06 9.11168e-06 9.1121e-06 9.11244e-06 9.1127e-06 9.11288e-06 9.11304e-06 9.11306e-06 9.11296e-06 9.11294e-06 9.11314e-06 9.11371e-06 9.11434e-06 9.11568e-06 9.12004e-06 9.12745e-06 9.13614e-06 9.14397e-06 9.15239e-06 9.16085e-06 9.16986e-06 9.17598e-06 9.17712e-06 9.16538e-06 9.13221e-06 9.08145e-06 8.50602e-06 2.0028e-05 0.000517762 0.00146619 0.00177024 0.00199421 9.10225e-06 9.10399e-06 9.10498e-06 9.10516e-06 9.10677e-06 9.11134e-06 9.11629e-06 9.11783e-06 9.1156e-06 9.11208e-06 9.10923e-06 9.10759e-06 9.10678e-06 9.10653e-06 9.10684e-06 9.10743e-06 9.10802e-06 9.10851e-06 9.10894e-06 9.10953e-06 9.11027e-06 9.11118e-06 9.11244e-06 9.11379e-06 9.11502e-06 9.11741e-06 9.12076e-06 9.12328e-06 9.12571e-06 9.12798e-06 9.13106e-06 9.13746e-06 9.14481e-06 9.14846e-06 9.14959e-06 9.15214e-06 9.15594e-06 9.15517e-06 9.14392e-06 9.13116e-06 9.13953e-06 9.17133e-06 9.20992e-06 9.23512e-06 9.26047e-06 9.31883e-06 9.44109e-06 9.62329e-06 9.82019e-06 9.97574e-06 1.00572e-05 1.00706e-05 1.00462e-05 1.00105e-05 9.97529e-06 9.94103e-06 9.91086e-06 9.90137e-06 9.791e-06 7.96823e-06 1.65661e-05 0.000512946 0.00148261 0.00179544 0.00200172 9.10143e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10156e-06 9.10156e-06 9.10158e-06 9.10161e-06 9.10169e-06 9.10182e-06 9.10204e-06 9.10235e-06 9.10274e-06 9.10326e-06 9.10387e-06 9.10458e-06 9.10535e-06 9.10618e-06 9.10705e-06 9.10791e-06 9.10876e-06 9.10956e-06 9.1103e-06 9.11099e-06 9.11158e-06 9.1121e-06 9.11258e-06 9.11296e-06 9.1133e-06 9.11356e-06 9.11366e-06 9.11381e-06 9.11422e-06 9.1148e-06 9.11548e-06 9.11656e-06 9.11936e-06 9.12533e-06 9.13328e-06 9.14199e-06 9.15055e-06 9.15998e-06 9.16992e-06 9.18024e-06 9.18728e-06 9.18958e-06 9.17593e-06 9.15029e-06 9.10727e-06 8.55302e-06 2.01759e-05 0.000516716 0.00146481 0.00177135 0.0019972 9.10218e-06 9.10383e-06 9.10487e-06 9.10505e-06 9.10624e-06 9.11029e-06 9.11535e-06 9.11764e-06 9.11607e-06 9.11273e-06 9.10974e-06 9.1079e-06 9.10699e-06 9.10661e-06 9.10682e-06 9.10736e-06 9.108e-06 9.10855e-06 9.10901e-06 9.10954e-06 9.11027e-06 9.1111e-06 9.11223e-06 9.11366e-06 9.11498e-06 9.11666e-06 9.11964e-06 9.12295e-06 9.12571e-06 9.12854e-06 9.13112e-06 9.13487e-06 9.14169e-06 9.14857e-06 9.15153e-06 9.15173e-06 9.15303e-06 9.15547e-06 9.15197e-06 9.13932e-06 9.134e-06 9.15393e-06 9.19933e-06 9.23582e-06 9.25732e-06 9.28207e-06 9.34959e-06 9.49267e-06 9.70155e-06 9.92293e-06 1.00911e-05 1.01703e-05 1.01711e-05 1.01294e-05 1.00774e-05 1.00288e-05 9.99261e-06 9.98744e-06 9.87047e-06 7.87879e-06 1.62643e-05 0.000514784 0.00148428 0.00179952 0.00200576 9.10143e-06 9.10147e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10156e-06 9.10157e-06 9.10158e-06 9.10159e-06 9.10162e-06 9.10169e-06 9.10182e-06 9.10203e-06 9.10232e-06 9.10269e-06 9.10318e-06 9.10377e-06 9.10445e-06 9.10521e-06 9.10602e-06 9.10687e-06 9.10773e-06 9.10858e-06 9.10942e-06 9.1102e-06 9.11094e-06 9.11163e-06 9.11228e-06 9.11289e-06 9.1134e-06 9.11387e-06 9.11424e-06 9.11457e-06 9.11509e-06 9.11588e-06 9.11661e-06 9.11757e-06 9.11961e-06 9.12405e-06 9.13107e-06 9.13925e-06 9.14826e-06 9.15799e-06 9.16874e-06 9.18025e-06 9.1917e-06 9.20009e-06 9.20211e-06 9.18961e-06 9.1716e-06 9.13368e-06 8.58105e-06 2.02862e-05 0.000516276 0.00146401 0.00177309 0.0020006 9.10212e-06 9.10367e-06 9.10476e-06 9.10497e-06 9.10581e-06 9.10931e-06 9.11434e-06 9.11729e-06 9.11644e-06 9.11337e-06 9.1103e-06 9.10824e-06 9.10721e-06 9.10673e-06 9.10681e-06 9.10731e-06 9.10797e-06 9.10857e-06 9.10909e-06 9.10959e-06 9.11027e-06 9.11109e-06 9.11208e-06 9.11345e-06 9.1149e-06 9.11638e-06 9.11869e-06 9.12198e-06 9.1253e-06 9.12855e-06 9.13169e-06 9.1347e-06 9.13894e-06 9.14593e-06 9.15236e-06 9.15442e-06 9.15304e-06 9.15285e-06 9.15342e-06 9.14701e-06 9.13714e-06 9.14459e-06 9.19029e-06 9.24009e-06 9.27455e-06 9.29043e-06 9.31115e-06 9.38452e-06 9.54536e-06 9.7801e-06 1.00251e-05 1.02045e-05 1.02807e-05 1.02674e-05 1.02079e-05 1.01396e-05 1.00888e-05 1.00849e-05 9.95815e-06 7.79406e-06 1.5976e-05 0.00051617 0.00148618 0.00180423 0.00201019 9.10143e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.10149e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10157e-06 9.10158e-06 9.10159e-06 9.10161e-06 9.10164e-06 9.10171e-06 9.10183e-06 9.10202e-06 9.1023e-06 9.10266e-06 9.10312e-06 9.10369e-06 9.10436e-06 9.1051e-06 9.10591e-06 9.10675e-06 9.10762e-06 9.10849e-06 9.10936e-06 9.11022e-06 9.11104e-06 9.11185e-06 9.11264e-06 9.11336e-06 9.11402e-06 9.11462e-06 9.11518e-06 9.11586e-06 9.11677e-06 9.11772e-06 9.11857e-06 9.1203e-06 9.12367e-06 9.12952e-06 9.13706e-06 9.14547e-06 9.1552e-06 9.16645e-06 9.17874e-06 9.19178e-06 9.20449e-06 9.21398e-06 9.21495e-06 9.20707e-06 9.19502e-06 9.1619e-06 8.58963e-06 2.03694e-05 0.000516463 0.00146383 0.00177561 0.00200441 9.10207e-06 9.10352e-06 9.10464e-06 9.1049e-06 9.10545e-06 9.10839e-06 9.11327e-06 9.11678e-06 9.11669e-06 9.11399e-06 9.11089e-06 9.10864e-06 9.10745e-06 9.10689e-06 9.10684e-06 9.10727e-06 9.10793e-06 9.10857e-06 9.10915e-06 9.10966e-06 9.11029e-06 9.11109e-06 9.11202e-06 9.11324e-06 9.11478e-06 9.11621e-06 9.11812e-06 9.121e-06 9.12442e-06 9.12806e-06 9.13175e-06 9.13534e-06 9.13864e-06 9.14315e-06 9.15023e-06 9.15623e-06 9.15671e-06 9.15337e-06 9.15167e-06 9.14889e-06 9.14089e-06 9.141e-06 9.18153e-06 9.24051e-06 9.29556e-06 9.32892e-06 9.3366e-06 9.34933e-06 9.42351e-06 9.59807e-06 9.85606e-06 1.01221e-05 1.03125e-05 1.0385e-05 1.03576e-05 1.02812e-05 1.02101e-05 1.01985e-05 1.00556e-05 7.71633e-06 1.57743e-05 0.000517282 0.00148847 0.00180959 0.00201496 9.10144e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10155e-06 9.10156e-06 9.10158e-06 9.1016e-06 9.10161e-06 9.10163e-06 9.10167e-06 9.10173e-06 9.10184e-06 9.10202e-06 9.10229e-06 9.10264e-06 9.10308e-06 9.10365e-06 9.1043e-06 9.10503e-06 9.10584e-06 9.10669e-06 9.10757e-06 9.10849e-06 9.10943e-06 9.11037e-06 9.1113e-06 9.11225e-06 9.11316e-06 9.114e-06 9.11483e-06 9.11562e-06 9.11648e-06 9.11753e-06 9.11868e-06 9.11966e-06 9.12099e-06 9.12391e-06 9.12862e-06 9.13543e-06 9.14329e-06 9.15216e-06 9.16302e-06 9.17599e-06 9.18988e-06 9.20449e-06 9.21875e-06 9.22842e-06 9.22934e-06 9.22767e-06 9.22011e-06 9.19337e-06 8.58154e-06 2.04567e-05 0.000517314 0.00146426 0.00177875 0.00200856 9.10203e-06 9.10338e-06 9.10451e-06 9.10484e-06 9.10518e-06 9.10758e-06 9.11218e-06 9.11612e-06 9.11678e-06 9.11455e-06 9.11151e-06 9.1091e-06 9.10773e-06 9.10708e-06 9.1069e-06 9.10724e-06 9.10787e-06 9.10857e-06 9.1092e-06 9.10976e-06 9.11034e-06 9.11111e-06 9.11201e-06 9.11309e-06 9.11457e-06 9.11614e-06 9.11771e-06 9.12026e-06 9.12347e-06 9.12716e-06 9.13128e-06 9.13548e-06 9.13951e-06 9.14278e-06 9.14746e-06 9.15473e-06 9.15983e-06 9.15808e-06 9.15307e-06 9.14859e-06 9.1422e-06 9.13958e-06 9.17106e-06 9.23177e-06 9.30428e-06 9.36831e-06 9.401e-06 9.39779e-06 9.39744e-06 9.46595e-06 9.64982e-06 9.92628e-06 1.02116e-05 1.04122e-05 1.04809e-05 1.0441e-05 1.03636e-05 1.03375e-05 1.0168e-05 7.65015e-06 1.56575e-05 0.000518433 0.00149146 0.00181565 0.00202006 9.10144e-06 9.10148e-06 9.10151e-06 9.10149e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10156e-06 9.10157e-06 9.1016e-06 9.10162e-06 9.10164e-06 9.10166e-06 9.1017e-06 9.10176e-06 9.10187e-06 9.10203e-06 9.1023e-06 9.10265e-06 9.10308e-06 9.10363e-06 9.10428e-06 9.10501e-06 9.10582e-06 9.10669e-06 9.10762e-06 9.1086e-06 9.10961e-06 9.11067e-06 9.11173e-06 9.1128e-06 9.11384e-06 9.11485e-06 9.11589e-06 9.11695e-06 9.11816e-06 9.11946e-06 9.12067e-06 9.12186e-06 9.12416e-06 9.12838e-06 9.13419e-06 9.14162e-06 9.1499e-06 9.15955e-06 9.17189e-06 9.18658e-06 9.2021e-06 9.21842e-06 9.23425e-06 9.24332e-06 9.24662e-06 9.25035e-06 9.24748e-06 9.22864e-06 8.55915e-06 2.05779e-05 0.000518744 0.00146527 0.00178257 0.00201299 9.10198e-06 9.10324e-06 9.10437e-06 9.10479e-06 9.10499e-06 9.10687e-06 9.11109e-06 9.11532e-06 9.11672e-06 9.11504e-06 9.11214e-06 9.1096e-06 9.10804e-06 9.10729e-06 9.10701e-06 9.10723e-06 9.10783e-06 9.10856e-06 9.10923e-06 9.10985e-06 9.11044e-06 9.11114e-06 9.11204e-06 9.11305e-06 9.11436e-06 9.11601e-06 9.11757e-06 9.11957e-06 9.12267e-06 9.12616e-06 9.13036e-06 9.1349e-06 9.13975e-06 9.14402e-06 9.14698e-06 9.15195e-06 9.15938e-06 9.16264e-06 9.15866e-06 9.15155e-06 9.14367e-06 9.1389e-06 9.15864e-06 9.21289e-06 9.29278e-06 9.38308e-06 9.45994e-06 9.49215e-06 9.47521e-06 9.45518e-06 9.51294e-06 9.6995e-06 9.98889e-06 1.02913e-05 1.05007e-05 1.05672e-05 1.05339e-05 1.05088e-05 1.0307e-05 7.60003e-06 1.55721e-05 0.000519747 0.00149554 0.00182264 0.00202534 9.10144e-06 9.10148e-06 9.10152e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10155e-06 9.10157e-06 9.10159e-06 9.10161e-06 9.10164e-06 9.10166e-06 9.10169e-06 9.10174e-06 9.1018e-06 9.1019e-06 9.10207e-06 9.10233e-06 9.10267e-06 9.1031e-06 9.10365e-06 9.1043e-06 9.10504e-06 9.10587e-06 9.10677e-06 9.10776e-06 9.10882e-06 9.10994e-06 9.11111e-06 9.11231e-06 9.11351e-06 9.11471e-06 9.11595e-06 9.11725e-06 9.11864e-06 9.12012e-06 9.12151e-06 9.12281e-06 9.12465e-06 9.1282e-06 9.13352e-06 9.14014e-06 9.14805e-06 9.15703e-06 9.16784e-06 9.18187e-06 9.19819e-06 9.21543e-06 9.23363e-06 9.2504e-06 9.25935e-06 9.26733e-06 9.27487e-06 9.27845e-06 9.26787e-06 8.52622e-06 2.07234e-05 0.000520672 0.00146667 0.00178707 0.00201767 9.10195e-06 9.10312e-06 9.10423e-06 9.10473e-06 9.10486e-06 9.10628e-06 9.11006e-06 9.11442e-06 9.11648e-06 9.11542e-06 9.11274e-06 9.11014e-06 9.10839e-06 9.10752e-06 9.10715e-06 9.10725e-06 9.10779e-06 9.10853e-06 9.10925e-06 9.10993e-06 9.11055e-06 9.11122e-06 9.11207e-06 9.11307e-06 9.11423e-06 9.1158e-06 9.1175e-06 9.11921e-06 9.12179e-06 9.12531e-06 9.12936e-06 9.1338e-06 9.139e-06 9.14456e-06 9.14854e-06 9.15108e-06 9.15695e-06 9.16363e-06 9.16431e-06 9.15815e-06 9.14832e-06 9.13992e-06 9.14673e-06 9.18776e-06 9.26329e-06 9.36431e-06 9.47769e-06 9.57055e-06 9.60285e-06 9.56811e-06 9.52415e-06 9.56485e-06 9.74491e-06 1.00427e-05 1.03592e-05 1.05778e-05 1.06638e-05 1.0695e-05 1.04822e-05 7.5781e-06 1.54459e-05 0.000520705 0.0015008 0.0018305 0.00203092 9.10145e-06 9.10148e-06 9.10152e-06 9.1015e-06 9.1015e-06 9.1015e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10156e-06 9.10158e-06 9.1016e-06 9.10163e-06 9.10166e-06 9.1017e-06 9.10173e-06 9.10178e-06 9.10185e-06 9.10196e-06 9.10213e-06 9.10238e-06 9.10273e-06 9.10316e-06 9.1037e-06 9.10436e-06 9.10513e-06 9.10598e-06 9.10694e-06 9.10801e-06 9.10916e-06 9.11039e-06 9.11169e-06 9.11303e-06 9.1144e-06 9.11583e-06 9.11735e-06 9.11894e-06 9.12061e-06 9.12223e-06 9.12369e-06 9.12535e-06 9.12825e-06 9.133e-06 9.13913e-06 9.14637e-06 9.15487e-06 9.16481e-06 9.17712e-06 9.19291e-06 9.21083e-06 9.22997e-06 9.24995e-06 9.26684e-06 9.27769e-06 9.29143e-06 9.30244e-06 9.3149e-06 9.31136e-06 8.48598e-06 2.08739e-05 0.000522808 0.00146842 0.00179224 0.00202272 9.10192e-06 9.10301e-06 9.10409e-06 9.10467e-06 9.10479e-06 9.10582e-06 9.1091e-06 9.11345e-06 9.11609e-06 9.11568e-06 9.11331e-06 9.1107e-06 9.10878e-06 9.10777e-06 9.10732e-06 9.1073e-06 9.10776e-06 9.10848e-06 9.10926e-06 9.10998e-06 9.11067e-06 9.11134e-06 9.11213e-06 9.11311e-06 9.11421e-06 9.11561e-06 9.11736e-06 9.11908e-06 9.12117e-06 9.12428e-06 9.12843e-06 9.13284e-06 9.13752e-06 9.14379e-06 9.14968e-06 9.15268e-06 9.1559e-06 9.16212e-06 9.16671e-06 9.16468e-06 9.15569e-06 9.14379e-06 9.13902e-06 9.16339e-06 9.22517e-06 9.32033e-06 9.44612e-06 9.58699e-06 9.69886e-06 9.73112e-06 9.67622e-06 9.60451e-06 9.61827e-06 9.78532e-06 1.00879e-05 1.04173e-05 1.06663e-05 1.08339e-05 1.06745e-05 7.59928e-06 1.52166e-05 0.000520231 0.00150664 0.00183927 0.00203675 9.10145e-06 9.10148e-06 9.10152e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10155e-06 9.10157e-06 9.10159e-06 9.10162e-06 9.10165e-06 9.10169e-06 9.10173e-06 9.10178e-06 9.10183e-06 9.10192e-06 9.10203e-06 9.10221e-06 9.10246e-06 9.10281e-06 9.10325e-06 9.1038e-06 9.10448e-06 9.10528e-06 9.10618e-06 9.10722e-06 9.10836e-06 9.10962e-06 9.11097e-06 9.1124e-06 9.11391e-06 9.11552e-06 9.11723e-06 9.11905e-06 9.12091e-06 9.12276e-06 9.12445e-06 9.12615e-06 9.12858e-06 9.1327e-06 9.13834e-06 9.14506e-06 9.15293e-06 9.16222e-06 9.17335e-06 9.18741e-06 9.20486e-06 9.22455e-06 9.24577e-06 9.26704e-06 9.28397e-06 9.29952e-06 9.31904e-06 9.33523e-06 9.35906e-06 9.35989e-06 8.43651e-06 2.09675e-05 0.000524928 0.00147042 0.00179809 0.00202805 9.10189e-06 9.1029e-06 9.10395e-06 9.1046e-06 9.10474e-06 9.10548e-06 9.10824e-06 9.11246e-06 9.11557e-06 9.11582e-06 9.11383e-06 9.11126e-06 9.10921e-06 9.10803e-06 9.10751e-06 9.10739e-06 9.10775e-06 9.10844e-06 9.10926e-06 9.11002e-06 9.11077e-06 9.11148e-06 9.11224e-06 9.11317e-06 9.11425e-06 9.11551e-06 9.11717e-06 9.11899e-06 9.12088e-06 9.12345e-06 9.12718e-06 9.13203e-06 9.1365e-06 9.1418e-06 9.14933e-06 9.1547e-06 9.15724e-06 9.16127e-06 9.16665e-06 9.16848e-06 9.16301e-06 9.15028e-06 9.13776e-06 9.14628e-06 9.18966e-06 9.26811e-06 9.38273e-06 9.5365e-06 9.70792e-06 9.84131e-06 9.87309e-06 9.79739e-06 9.69148e-06 9.67133e-06 9.82277e-06 1.01291e-05 1.0488e-05 1.08318e-05 1.08142e-05 7.65394e-06 1.47188e-05 0.000516835 0.00151206 0.00184881 0.00204279 9.10145e-06 9.10148e-06 9.10152e-06 9.1015e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10156e-06 9.10158e-06 9.10161e-06 9.10164e-06 9.10168e-06 9.10173e-06 9.10178e-06 9.10183e-06 9.1019e-06 9.10199e-06 9.10212e-06 9.10231e-06 9.10257e-06 9.10293e-06 9.10339e-06 9.10395e-06 9.10466e-06 9.1055e-06 9.10647e-06 9.10759e-06 9.10882e-06 9.11019e-06 9.11168e-06 9.11328e-06 9.11502e-06 9.11691e-06 9.11892e-06 9.121e-06 9.12308e-06 9.12503e-06 9.12688e-06 9.12916e-06 9.13263e-06 9.13782e-06 9.14405e-06 9.15129e-06 9.15992e-06 9.17022e-06 9.18276e-06 9.19861e-06 9.21767e-06 9.23939e-06 9.2627e-06 9.2847e-06 9.30299e-06 9.32548e-06 9.35082e-06 9.37503e-06 9.4127e-06 9.41448e-06 8.37581e-06 2.09438e-05 0.000526752 0.00147292 0.00180459 0.00203349 9.10186e-06 9.10281e-06 9.10381e-06 9.10452e-06 9.10472e-06 9.10523e-06 9.1075e-06 9.11147e-06 9.11492e-06 9.11583e-06 9.11429e-06 9.11183e-06 9.10968e-06 9.10833e-06 9.10772e-06 9.10752e-06 9.10776e-06 9.1084e-06 9.10924e-06 9.11006e-06 9.11085e-06 9.11162e-06 9.11239e-06 9.11327e-06 9.11432e-06 9.11552e-06 9.11702e-06 9.11886e-06 9.12074e-06 9.12295e-06 9.12602e-06 9.13076e-06 9.1358e-06 9.14045e-06 9.14691e-06 9.15523e-06 9.1595e-06 9.1624e-06 9.16669e-06 9.1702e-06 9.16849e-06 9.15805e-06 9.14253e-06 9.13923e-06 9.16488e-06 9.22332e-06 9.31441e-06 9.44886e-06 9.63168e-06 9.83568e-06 9.99088e-06 1.00231e-05 9.92578e-06 9.78065e-06 9.72593e-06 9.86316e-06 1.01835e-05 1.06353e-05 1.08005e-05 7.69604e-06 1.39095e-05 0.000509342 0.00151575 0.00185884 0.00204902 9.10146e-06 9.10149e-06 9.10153e-06 9.10151e-06 9.10151e-06 9.10152e-06 9.10152e-06 9.10154e-06 9.10155e-06 9.10157e-06 9.1016e-06 9.10163e-06 9.10167e-06 9.10171e-06 9.10177e-06 9.10183e-06 9.10189e-06 9.10197e-06 9.10208e-06 9.10223e-06 9.10243e-06 9.1027e-06 9.10309e-06 9.10357e-06 9.10416e-06 9.1049e-06 9.1058e-06 9.10685e-06 9.10805e-06 9.10939e-06 9.11089e-06 9.11254e-06 9.11437e-06 9.11639e-06 9.11859e-06 9.12086e-06 9.12315e-06 9.12537e-06 9.12746e-06 9.12972e-06 9.13288e-06 9.13742e-06 9.14334e-06 9.15002e-06 9.15789e-06 9.16743e-06 9.17895e-06 9.19307e-06 9.21063e-06 9.23137e-06 9.25532e-06 9.2805e-06 9.30324e-06 9.32536e-06 9.35555e-06 9.38743e-06 9.42211e-06 9.47562e-06 9.47531e-06 8.30237e-06 2.07835e-05 0.000528426 0.00147624 0.00181193 0.00203921 9.10184e-06 9.10272e-06 9.10368e-06 9.10442e-06 9.10469e-06 9.10506e-06 9.10688e-06 9.11052e-06 9.11418e-06 9.1157e-06 9.11468e-06 9.11241e-06 9.11019e-06 9.10868e-06 9.10795e-06 9.10768e-06 9.10781e-06 9.10838e-06 9.1092e-06 9.11009e-06 9.11091e-06 9.11174e-06 9.11257e-06 9.11343e-06 9.11443e-06 9.1156e-06 9.11696e-06 9.1187e-06 9.12064e-06 9.12271e-06 9.12525e-06 9.1293e-06 9.13476e-06 9.13969e-06 9.14501e-06 9.15284e-06 9.16094e-06 9.16457e-06 9.16803e-06 9.17168e-06 9.17245e-06 9.16571e-06 9.15097e-06 9.14073e-06 9.1529e-06 9.19418e-06 9.26161e-06 9.36278e-06 9.51568e-06 9.72675e-06 9.96254e-06 1.01391e-05 1.01745e-05 1.00542e-05 9.87099e-06 9.78673e-06 9.91694e-06 1.03104e-05 1.05816e-05 7.66353e-06 1.27978e-05 0.000497372 0.00151675 0.00186896 0.0020554 9.10146e-06 9.10149e-06 9.10153e-06 9.10151e-06 9.10152e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10156e-06 9.10159e-06 9.10162e-06 9.10165e-06 9.1017e-06 9.10175e-06 9.10181e-06 9.10189e-06 9.10197e-06 9.10206e-06 9.10219e-06 9.10235e-06 9.10257e-06 9.10286e-06 9.10327e-06 9.10379e-06 9.10443e-06 9.10521e-06 9.10617e-06 9.1073e-06 9.10859e-06 9.11007e-06 9.11174e-06 9.11361e-06 9.11572e-06 9.11803e-06 9.12049e-06 9.12298e-06 9.12543e-06 9.1278e-06 9.13019e-06 9.13315e-06 9.13728e-06 9.1427e-06 9.14907e-06 9.15626e-06 9.1649e-06 9.1755e-06 9.18841e-06 9.20422e-06 9.22342e-06 9.24605e-06 9.27222e-06 9.29903e-06 9.32355e-06 9.35196e-06 9.38925e-06 9.42868e-06 9.47515e-06 9.5446e-06 9.54205e-06 8.21925e-06 2.05513e-05 0.000530199 0.00148078 0.00182033 0.0020452 9.10182e-06 9.10264e-06 9.10355e-06 9.1043e-06 9.10465e-06 9.10494e-06 9.10638e-06 9.10962e-06 9.11337e-06 9.11544e-06 9.11499e-06 9.11297e-06 9.11074e-06 9.10908e-06 9.10819e-06 9.10787e-06 9.1079e-06 9.10837e-06 9.10916e-06 9.11009e-06 9.11098e-06 9.11185e-06 9.11273e-06 9.11363e-06 9.1146e-06 9.11573e-06 9.11701e-06 9.1186e-06 9.12052e-06 9.12258e-06 9.12488e-06 9.12809e-06 9.13329e-06 9.13893e-06 9.14382e-06 9.15052e-06 9.15919e-06 9.16639e-06 9.17007e-06 9.17372e-06 9.17579e-06 9.17249e-06 9.16055e-06 9.14724e-06 9.15056e-06 9.18026e-06 9.23147e-06 9.30346e-06 9.41178e-06 9.57945e-06 9.81584e-06 1.00799e-05 1.02789e-05 1.03186e-05 1.01772e-05 9.96388e-06 9.861e-06 1.00373e-05 1.02388e-05 7.54056e-06 1.15889e-05 0.000481871 0.00151488 0.00187891 0.00206196 9.10146e-06 9.10149e-06 9.10153e-06 9.10152e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10158e-06 9.1016e-06 9.10164e-06 9.10168e-06 9.10173e-06 9.10179e-06 9.10187e-06 9.10196e-06 9.10205e-06 9.10217e-06 9.10231e-06 9.10249e-06 9.10273e-06 9.10305e-06 9.10349e-06 9.10406e-06 9.10475e-06 9.10558e-06 9.10661e-06 9.10783e-06 9.10925e-06 9.11091e-06 9.11279e-06 9.11492e-06 9.11731e-06 9.1199e-06 9.12255e-06 9.12523e-06 9.12784e-06 9.13045e-06 9.13338e-06 9.1372e-06 9.14221e-06 9.14821e-06 9.15496e-06 9.16282e-06 9.17236e-06 9.18419e-06 9.19859e-06 9.21611e-06 9.23702e-06 9.26175e-06 9.29e-06 9.31843e-06 9.34662e-06 9.38265e-06 9.42598e-06 9.47353e-06 9.53199e-06 9.6147e-06 9.61342e-06 8.13342e-06 2.03923e-05 0.00053237 0.00148642 0.00182949 0.00205129 9.1018e-06 9.10256e-06 9.10342e-06 9.10418e-06 9.1046e-06 9.10486e-06 9.10597e-06 9.10881e-06 9.11251e-06 9.11504e-06 9.11518e-06 9.1135e-06 9.11132e-06 9.10953e-06 9.10848e-06 9.10807e-06 9.10802e-06 9.10839e-06 9.10913e-06 9.11007e-06 9.11104e-06 9.11194e-06 9.11288e-06 9.11383e-06 9.11481e-06 9.11591e-06 9.11715e-06 9.11861e-06 9.12041e-06 9.12247e-06 9.12471e-06 9.12737e-06 9.13171e-06 9.13772e-06 9.14308e-06 9.14858e-06 9.157e-06 9.16546e-06 9.17195e-06 9.17586e-06 9.1789e-06 9.17816e-06 9.16966e-06 9.15588e-06 9.15316e-06 9.17561e-06 9.21967e-06 9.27584e-06 9.34924e-06 9.45973e-06 9.63731e-06 9.89286e-06 1.01811e-05 1.04021e-05 1.04465e-05 1.02927e-05 1.00704e-05 9.99727e-06 9.96959e-06 7.42098e-06 1.06172e-05 0.000464985 0.00151087 0.00188874 0.00206868 9.10147e-06 9.1015e-06 9.10154e-06 9.10152e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10157e-06 9.10159e-06 9.10162e-06 9.10166e-06 9.10171e-06 9.10177e-06 9.10185e-06 9.10193e-06 9.10203e-06 9.10215e-06 9.1023e-06 9.10246e-06 9.10267e-06 9.10294e-06 9.10328e-06 9.10375e-06 9.10436e-06 9.10512e-06 9.10602e-06 9.10713e-06 9.10848e-06 9.11006e-06 9.11192e-06 9.11405e-06 9.11645e-06 9.1191e-06 9.1219e-06 9.12474e-06 9.1276e-06 9.13043e-06 9.13345e-06 9.13713e-06 9.14181e-06 9.14743e-06 9.15386e-06 9.16107e-06 9.16974e-06 9.1803e-06 9.19348e-06 9.20943e-06 9.22867e-06 9.25144e-06 9.27842e-06 9.30867e-06 9.33924e-06 9.37299e-06 9.41641e-06 9.46533e-06 9.52097e-06 9.5907e-06 9.68274e-06 9.68881e-06 8.05159e-06 2.0387e-05 0.000534627 0.00149258 0.00183919 0.00205759 9.10178e-06 9.10249e-06 9.10331e-06 9.10405e-06 9.10452e-06 9.10479e-06 9.10565e-06 9.10807e-06 9.11164e-06 9.11452e-06 9.11524e-06 9.11398e-06 9.11191e-06 9.11004e-06 9.10882e-06 9.1083e-06 9.10819e-06 9.10844e-06 9.10911e-06 9.11004e-06 9.11107e-06 9.11203e-06 9.113e-06 9.11402e-06 9.11506e-06 9.11615e-06 9.11737e-06 9.11873e-06 9.12039e-06 9.12238e-06 9.12461e-06 9.12707e-06 9.13048e-06 9.13608e-06 9.14226e-06 9.14739e-06 9.15447e-06 9.16402e-06 9.17155e-06 9.17776e-06 9.18146e-06 9.18282e-06 9.17766e-06 9.16519e-06 9.15798e-06 9.17432e-06 9.21674e-06 9.27047e-06 9.32906e-06 9.39934e-06 9.5064e-06 9.68671e-06 9.95311e-06 1.02604e-05 1.04999e-05 1.05551e-05 1.04215e-05 1.02374e-05 9.95923e-06 7.44669e-06 1.01256e-05 0.000448199 0.00150583 0.00189878 0.00207556 9.10148e-06 9.1015e-06 9.10154e-06 9.10153e-06 9.10154e-06 9.10155e-06 9.10156e-06 9.10158e-06 9.10161e-06 9.10165e-06 9.10169e-06 9.10175e-06 9.10182e-06 9.10191e-06 9.10201e-06 9.10213e-06 9.10227e-06 9.10244e-06 9.10264e-06 9.10288e-06 9.10319e-06 9.10357e-06 9.10407e-06 9.10473e-06 9.10557e-06 9.10657e-06 9.10778e-06 9.10927e-06 9.11104e-06 9.11313e-06 9.1155e-06 9.11816e-06 9.12103e-06 9.12401e-06 9.12705e-06 9.13014e-06 9.13332e-06 9.13694e-06 9.14141e-06 9.14678e-06 9.15283e-06 9.15964e-06 9.16749e-06 9.17702e-06 9.18874e-06 9.20337e-06 9.22087e-06 9.24188e-06 9.26666e-06 9.29599e-06 9.32852e-06 9.36224e-06 9.40248e-06 9.45216e-06 9.50724e-06 9.57081e-06 9.65035e-06 9.75e-06 9.76791e-06 7.98029e-06 2.05126e-05 0.000536158 0.00149816 0.00184917 0.00206415 9.10176e-06 9.10243e-06 9.1032e-06 9.10393e-06 9.10442e-06 9.10471e-06 9.10539e-06 9.10741e-06 9.11076e-06 9.11388e-06 9.11517e-06 9.11437e-06 9.11249e-06 9.11059e-06 9.10922e-06 9.10855e-06 9.10838e-06 9.10854e-06 9.10911e-06 9.11002e-06 9.11108e-06 9.11212e-06 9.11313e-06 9.11418e-06 9.11529e-06 9.11643e-06 9.11764e-06 9.11897e-06 9.12049e-06 9.12236e-06 9.12452e-06 9.12697e-06 9.12983e-06 9.13439e-06 9.14095e-06 9.14669e-06 9.15246e-06 9.16153e-06 9.17098e-06 9.1777e-06 9.18357e-06 9.18641e-06 9.18445e-06 9.17443e-06 9.16429e-06 9.17393e-06 9.21469e-06 9.27343e-06 9.33482e-06 9.39278e-06 9.45514e-06 9.55212e-06 9.72604e-06 9.99391e-06 1.03121e-05 1.0572e-05 1.06766e-05 1.06129e-05 1.024e-05 7.71494e-06 1.00315e-05 0.000429948 0.0014992 0.00190936 0.00208257 9.10148e-06 9.10151e-06 9.10155e-06 9.10153e-06 9.10155e-06 9.10156e-06 9.10157e-06 9.1016e-06 9.10163e-06 9.10167e-06 9.10173e-06 9.10179e-06 9.10187e-06 9.10197e-06 9.10209e-06 9.10223e-06 9.1024e-06 9.1026e-06 9.10284e-06 9.10313e-06 9.10348e-06 9.10392e-06 9.10446e-06 9.10519e-06 9.10611e-06 9.10723e-06 9.10858e-06 9.11023e-06 9.11221e-06 9.1145e-06 9.11711e-06 9.12e-06 9.12307e-06 9.12624e-06 9.12952e-06 9.13292e-06 9.13663e-06 9.14094e-06 9.1461e-06 9.15195e-06 9.15836e-06 9.16565e-06 9.17425e-06 9.18469e-06 9.19768e-06 9.21379e-06 9.2329e-06 9.25573e-06 9.28267e-06 9.31453e-06 9.35003e-06 9.38799e-06 9.4345e-06 9.48951e-06 9.55198e-06 9.62367e-06 9.71144e-06 9.82134e-06 9.85049e-06 7.91616e-06 2.06401e-05 0.000535627 0.00150216 0.00185913 0.00207073 9.10175e-06 9.10237e-06 9.1031e-06 9.10381e-06 9.10432e-06 9.10463e-06 9.10517e-06 9.10682e-06 9.10989e-06 9.11315e-06 9.11494e-06 9.11466e-06 9.11304e-06 9.11116e-06 9.10966e-06 9.10884e-06 9.10859e-06 9.10868e-06 9.10915e-06 9.10999e-06 9.11106e-06 9.11219e-06 9.11325e-06 9.11433e-06 9.11549e-06 9.1167e-06 9.11796e-06 9.11929e-06 9.12074e-06 9.12246e-06 9.12451e-06 9.12692e-06 9.12963e-06 9.13318e-06 9.13914e-06 9.14588e-06 9.15129e-06 9.15883e-06 9.16911e-06 9.17787e-06 9.18383e-06 9.18929e-06 9.18993e-06 9.18296e-06 9.17167e-06 9.17445e-06 9.21003e-06 9.27398e-06 9.34691e-06 9.41452e-06 9.46898e-06 9.51828e-06 9.59788e-06 9.75504e-06 1.00136e-05 1.03411e-05 1.06585e-05 1.08664e-05 1.06416e-05 8.18422e-06 9.87615e-06 0.000405188 0.0014871 0.0019204 0.00208949 9.10149e-06 9.10151e-06 9.10156e-06 9.10154e-06 9.10156e-06 9.10157e-06 9.10159e-06 9.10162e-06 9.10166e-06 9.1017e-06 9.10177e-06 9.10184e-06 9.10194e-06 9.10205e-06 9.10219e-06 9.10236e-06 9.10256e-06 9.10279e-06 9.10307e-06 9.10341e-06 9.10382e-06 9.10433e-06 9.10494e-06 9.10574e-06 9.10676e-06 9.10802e-06 9.10953e-06 9.11136e-06 9.11353e-06 9.11602e-06 9.11885e-06 9.12194e-06 9.12522e-06 9.12862e-06 9.13221e-06 9.13605e-06 9.14038e-06 9.14536e-06 9.15103e-06 9.15721e-06 9.16404e-06 9.17192e-06 9.18131e-06 9.19274e-06 9.2071e-06 9.22467e-06 9.24548e-06 9.27024e-06 9.29951e-06 9.33425e-06 9.37355e-06 9.41644e-06 9.46853e-06 9.52894e-06 9.59993e-06 9.68037e-06 9.77554e-06 9.90141e-06 9.9366e-06 7.8572e-06 2.05936e-05 0.000531976 0.00150405 0.00186904 0.00207733 9.10173e-06 9.10232e-06 9.103e-06 9.10369e-06 9.10421e-06 9.10455e-06 9.10498e-06 9.10631e-06 9.10903e-06 9.11232e-06 9.11455e-06 9.11482e-06 9.11354e-06 9.11173e-06 9.11015e-06 9.10917e-06 9.10882e-06 9.10885e-06 9.10922e-06 9.10999e-06 9.11104e-06 9.11222e-06 9.11337e-06 9.11449e-06 9.11568e-06 9.11695e-06 9.11828e-06 9.11966e-06 9.12111e-06 9.12273e-06 9.12465e-06 9.12693e-06 9.12962e-06 9.13266e-06 9.13738e-06 9.14446e-06 9.15068e-06 9.15677e-06 9.16636e-06 9.17683e-06 9.18457e-06 9.19022e-06 9.19445e-06 9.19046e-06 9.17936e-06 9.17602e-06 9.20303e-06 9.267e-06 9.35156e-06 9.4381e-06 9.51116e-06 9.55908e-06 9.59065e-06 9.64462e-06 9.77464e-06 1.00211e-05 1.03901e-05 1.08223e-05 1.08913e-05 8.65901e-06 9.13394e-06 0.000369136 0.0014631 0.00193044 0.0020959 9.1015e-06 9.10152e-06 9.10157e-06 9.10155e-06 9.10157e-06 9.10159e-06 9.10161e-06 9.10164e-06 9.10169e-06 9.10174e-06 9.10181e-06 9.1019e-06 9.10201e-06 9.10215e-06 9.1023e-06 9.1025e-06 9.10273e-06 9.103e-06 9.10333e-06 9.10373e-06 9.1042e-06 9.10479e-06 9.10549e-06 9.10638e-06 9.10752e-06 9.10892e-06 9.1106e-06 9.11261e-06 9.11496e-06 9.11766e-06 9.12069e-06 9.124e-06 9.12751e-06 9.1312e-06 9.13518e-06 9.13957e-06 9.14452e-06 9.15003e-06 9.15605e-06 9.16257e-06 9.1699e-06 9.17844e-06 9.18865e-06 9.20118e-06 9.21695e-06 9.23597e-06 9.25862e-06 9.28543e-06 9.31732e-06 9.35532e-06 9.39895e-06 9.44694e-06 9.50443e-06 9.57148e-06 9.65161e-06 9.7414e-06 9.84461e-06 9.99181e-06 1.00294e-05 7.81129e-06 2.02697e-05 0.000524636 0.00150416 0.00187933 0.00208376 9.10172e-06 9.10227e-06 9.1029e-06 9.10358e-06 9.1041e-06 9.10446e-06 9.10483e-06 9.10586e-06 9.10822e-06 9.11142e-06 9.11401e-06 9.11483e-06 9.11395e-06 9.11229e-06 9.11068e-06 9.10955e-06 9.10907e-06 9.10904e-06 9.10933e-06 9.11001e-06 9.11102e-06 9.11222e-06 9.11347e-06 9.11466e-06 9.11586e-06 9.11717e-06 9.11858e-06 9.12004e-06 9.12154e-06 9.12313e-06 9.12494e-06 9.12709e-06 9.12967e-06 9.1326e-06 9.13625e-06 9.14255e-06 9.14987e-06 9.15574e-06 9.16364e-06 9.17449e-06 9.18453e-06 9.19135e-06 9.19703e-06 9.1972e-06 9.18726e-06 9.17878e-06 9.19518e-06 9.2527e-06 9.34285e-06 9.44681e-06 9.54737e-06 9.62491e-06 9.66372e-06 9.67256e-06 9.69353e-06 9.79488e-06 1.00571e-05 1.05267e-05 1.08277e-05 8.91339e-06 7.75559e-06 0.000322711 0.00142347 0.00193743 0.00210121 9.10151e-06 9.10153e-06 9.10158e-06 9.10157e-06 9.10159e-06 9.1016e-06 9.10163e-06 9.10167e-06 9.10172e-06 9.10178e-06 9.10187e-06 9.10197e-06 9.1021e-06 9.10225e-06 9.10244e-06 9.10266e-06 9.10293e-06 9.10324e-06 9.10362e-06 9.10408e-06 9.10463e-06 9.1053e-06 9.10611e-06 9.1071e-06 9.10836e-06 9.10989e-06 9.11176e-06 9.11394e-06 9.11649e-06 9.1194e-06 9.12265e-06 9.12618e-06 9.12996e-06 9.13401e-06 9.13848e-06 9.14345e-06 9.1489e-06 9.15479e-06 9.16111e-06 9.16804e-06 9.17593e-06 9.18517e-06 9.19626e-06 9.21e-06 9.22715e-06 9.2477e-06 9.2723e-06 9.30133e-06 9.33617e-06 9.37763e-06 9.42552e-06 9.4788e-06 9.54265e-06 9.61817e-06 9.70761e-06 9.80688e-06 9.92042e-06 1.00931e-05 1.01385e-05 7.78734e-06 1.95277e-05 0.000514024 0.00150325 0.00189017 0.00208972 9.10171e-06 9.10222e-06 9.10281e-06 9.10347e-06 9.10399e-06 9.10436e-06 9.1047e-06 9.1055e-06 9.10747e-06 9.11049e-06 9.11331e-06 9.11466e-06 9.11427e-06 9.11283e-06 9.11124e-06 9.10999e-06 9.10935e-06 9.10926e-06 9.10948e-06 9.11006e-06 9.11101e-06 9.11221e-06 9.11353e-06 9.11482e-06 9.11607e-06 9.11739e-06 9.11884e-06 9.12039e-06 9.12199e-06 9.12363e-06 9.1254e-06 9.12742e-06 9.12982e-06 9.13269e-06 9.13588e-06 9.14078e-06 9.14837e-06 9.15523e-06 9.16184e-06 9.17143e-06 9.18314e-06 9.19209e-06 9.19873e-06 9.20296e-06 9.19586e-06 9.18374e-06 9.18888e-06 9.23424e-06 9.32165e-06 9.43506e-06 9.55835e-06 9.67325e-06 9.7537e-06 9.78068e-06 9.76322e-06 9.75279e-06 9.85062e-06 1.01867e-05 1.05276e-05 8.88995e-06 6.27539e-06 0.000274105 0.00137326 0.00194042 0.00210472 9.10153e-06 9.10154e-06 9.10159e-06 9.10158e-06 9.1016e-06 9.10162e-06 9.10166e-06 9.1017e-06 9.10176e-06 9.10184e-06 9.10193e-06 9.10205e-06 9.1022e-06 9.10237e-06 9.10259e-06 9.10284e-06 9.10315e-06 9.10352e-06 9.10395e-06 9.10447e-06 9.1051e-06 9.10586e-06 9.10678e-06 9.10788e-06 9.10926e-06 9.11094e-06 9.11298e-06 9.11536e-06 9.11811e-06 9.12124e-06 9.12471e-06 9.1285e-06 9.1326e-06 9.1371e-06 9.1421e-06 9.14755e-06 9.15337e-06 9.15957e-06 9.16624e-06 9.17365e-06 9.18212e-06 9.19209e-06 9.20416e-06 9.21915e-06 9.23768e-06 9.25988e-06 9.28652e-06 9.31794e-06 9.35587e-06 9.40073e-06 9.45259e-06 9.5121e-06 9.58419e-06 9.66972e-06 9.76845e-06 9.87728e-06 1.00058e-05 1.02106e-05 1.02788e-05 7.794e-06 1.8396e-05 0.000501138 0.0015014 0.00190133 0.0020946 9.1017e-06 9.10218e-06 9.10272e-06 9.10336e-06 9.10388e-06 9.10427e-06 9.1046e-06 9.10521e-06 9.10681e-06 9.10956e-06 9.1125e-06 9.11432e-06 9.11445e-06 9.11332e-06 9.11181e-06 9.11049e-06 9.1097e-06 9.10949e-06 9.10967e-06 9.11015e-06 9.11102e-06 9.1122e-06 9.11355e-06 9.11495e-06 9.11628e-06 9.11763e-06 9.1191e-06 9.12071e-06 9.12241e-06 9.12415e-06 9.12595e-06 9.12791e-06 9.13015e-06 9.13285e-06 9.13596e-06 9.13976e-06 9.14639e-06 9.1544e-06 9.16103e-06 9.16884e-06 9.1803e-06 9.19191e-06 9.19988e-06 9.20642e-06 9.20583e-06 9.19226e-06 9.18702e-06 9.21663e-06 9.29293e-06 9.40572e-06 9.54034e-06 9.68318e-06 9.81086e-06 9.8917e-06 9.90568e-06 9.86767e-06 9.84982e-06 9.9978e-06 1.02162e-05 8.76674e-06 5.30477e-06 0.000233403 0.00132678 0.00194152 0.00210599 9.10154e-06 9.10155e-06 9.10161e-06 9.1016e-06 9.10162e-06 9.10165e-06 9.10169e-06 9.10174e-06 9.10181e-06 9.10189e-06 9.102e-06 9.10214e-06 9.10231e-06 9.10251e-06 9.10276e-06 9.10305e-06 9.10341e-06 9.10382e-06 9.10431e-06 9.10491e-06 9.10562e-06 9.10647e-06 9.1075e-06 9.10873e-06 9.11024e-06 9.11207e-06 9.11427e-06 9.11686e-06 9.11982e-06 9.12318e-06 9.12689e-06 9.13098e-06 9.13548e-06 9.14047e-06 9.14595e-06 9.15176e-06 9.15785e-06 9.16438e-06 9.17146e-06 9.17939e-06 9.18846e-06 9.19923e-06 9.21234e-06 9.22859e-06 9.24853e-06 9.2725e-06 9.30121e-06 9.33511e-06 9.37597e-06 9.42414e-06 9.48033e-06 9.54803e-06 9.63033e-06 9.72643e-06 9.83465e-06 9.95523e-06 1.01077e-05 1.03558e-05 1.04562e-05 7.81625e-06 1.70057e-05 0.000486725 0.00149648 0.00191153 0.00209773 9.10169e-06 9.10214e-06 9.10264e-06 9.10326e-06 9.10377e-06 9.10417e-06 9.10451e-06 9.105e-06 9.10625e-06 9.10867e-06 9.11162e-06 9.11382e-06 9.11448e-06 9.11374e-06 9.11237e-06 9.11104e-06 9.1101e-06 9.10976e-06 9.10988e-06 9.11029e-06 9.11106e-06 9.11219e-06 9.11355e-06 9.11503e-06 9.11647e-06 9.11789e-06 9.11937e-06 9.121e-06 9.12278e-06 9.12464e-06 9.12654e-06 9.12851e-06 9.13067e-06 9.13316e-06 9.13619e-06 9.13955e-06 9.14466e-06 9.15279e-06 9.16054e-06 9.16746e-06 9.17702e-06 9.19e-06 9.2006e-06 9.20837e-06 9.21286e-06 9.20537e-06 9.19223e-06 9.20504e-06 9.26389e-06 9.3665e-06 9.49995e-06 9.65463e-06 9.81472e-06 9.95115e-06 1.0031e-05 1.00415e-05 1.00078e-05 1.00285e-05 1.00793e-05 8.78441e-06 5.19387e-06 0.000204633 0.0012976 0.00194555 0.00210528 9.10156e-06 9.10156e-06 9.10162e-06 9.10162e-06 9.10165e-06 9.10168e-06 9.10173e-06 9.10178e-06 9.10186e-06 9.10196e-06 9.10209e-06 9.10224e-06 9.10244e-06 9.10267e-06 9.10295e-06 9.10329e-06 9.10369e-06 9.10417e-06 9.10473e-06 9.10539e-06 9.10619e-06 9.10715e-06 9.10829e-06 9.10966e-06 9.1113e-06 9.11329e-06 9.11566e-06 9.11844e-06 9.12162e-06 9.12521e-06 9.12921e-06 9.13366e-06 9.13861e-06 9.14406e-06 9.14989e-06 9.15596e-06 9.16235e-06 9.16925e-06 9.1768e-06 9.18524e-06 9.19497e-06 9.20658e-06 9.2208e-06 9.23829e-06 9.25971e-06 9.28552e-06 9.31614e-06 9.35247e-06 9.39606e-06 9.44799e-06 9.51005e-06 9.58825e-06 9.68187e-06 9.78845e-06 9.90808e-06 1.00479e-05 1.02374e-05 1.05344e-05 1.06419e-05 7.81385e-06 1.56122e-05 0.00046997 0.00148353 0.00191889 0.00209872 9.10167e-06 9.10211e-06 9.10256e-06 9.10315e-06 9.10367e-06 9.10406e-06 9.10441e-06 9.10483e-06 9.10581e-06 9.10787e-06 9.1107e-06 9.11318e-06 9.11435e-06 9.11405e-06 9.11291e-06 9.11162e-06 9.11058e-06 9.11008e-06 9.11011e-06 9.11047e-06 9.11114e-06 9.11219e-06 9.11354e-06 9.11507e-06 9.11663e-06 9.11814e-06 9.11966e-06 9.1213e-06 9.12312e-06 9.12508e-06 9.12711e-06 9.12917e-06 9.13134e-06 9.1337e-06 9.13653e-06 9.13982e-06 9.14379e-06 9.15073e-06 9.15957e-06 9.16707e-06 9.17466e-06 9.18663e-06 9.19999e-06 9.20977e-06 9.21702e-06 9.21658e-06 9.20468e-06 9.20366e-06 9.24184e-06 9.32687e-06 9.44904e-06 9.5998e-06 9.7711e-06 9.94234e-06 1.00838e-05 1.01743e-05 1.02105e-05 1.0219e-05 1.01615e-05 9.01813e-06 6.05689e-06 0.000183449 0.00128404 0.00195596 0.00210366 9.10158e-06 9.10158e-06 9.10165e-06 9.10164e-06 9.10168e-06 9.10171e-06 9.10177e-06 9.10184e-06 9.10192e-06 9.10204e-06 9.10218e-06 9.10236e-06 9.10258e-06 9.10285e-06 9.10317e-06 9.10355e-06 9.10401e-06 9.10455e-06 9.10518e-06 9.10593e-06 9.10682e-06 9.10789e-06 9.10915e-06 9.11066e-06 9.11245e-06 9.1146e-06 9.11714e-06 9.1201e-06 9.12351e-06 9.12736e-06 9.1317e-06 9.13656e-06 9.14196e-06 9.14776e-06 9.15383e-06 9.16014e-06 9.1669e-06 9.1742e-06 9.18221e-06 9.19119e-06 9.20166e-06 9.21417e-06 9.2295e-06 9.24823e-06 9.27117e-06 9.29872e-06 9.33102e-06 9.36963e-06 9.41628e-06 9.4733e-06 9.5437e-06 9.63386e-06 9.73885e-06 9.85692e-06 9.99444e-06 1.01666e-05 1.03998e-05 1.07212e-05 1.0758e-05 7.7498e-06 1.44653e-05 0.00044765 0.00145711 0.00192221 0.00209733 9.10166e-06 9.10208e-06 9.10249e-06 9.10305e-06 9.10357e-06 9.10395e-06 9.10431e-06 9.10469e-06 9.10545e-06 9.10715e-06 9.10978e-06 9.11243e-06 9.11405e-06 9.11424e-06 9.11339e-06 9.1122e-06 9.11112e-06 9.11047e-06 9.11037e-06 9.11068e-06 9.11127e-06 9.11223e-06 9.11353e-06 9.11507e-06 9.11674e-06 9.11837e-06 9.11997e-06 9.12164e-06 9.12346e-06 9.12548e-06 9.12763e-06 9.12983e-06 9.13208e-06 9.13445e-06 9.13708e-06 9.14028e-06 9.1438e-06 9.14907e-06 9.15782e-06 9.16679e-06 9.17383e-06 9.18321e-06 9.19749e-06 9.21031e-06 9.21966e-06 9.22423e-06 9.21819e-06 9.21017e-06 9.23242e-06 9.29606e-06 9.40004e-06 9.53578e-06 9.69905e-06 9.87933e-06 1.0055e-05 1.02137e-05 1.03534e-05 1.04494e-05 1.03821e-05 9.343e-06 7.60463e-06 0.000159911 0.00126542 0.00197091 0.00210221 9.1016e-06 9.1016e-06 9.10167e-06 9.10167e-06 9.10171e-06 9.10175e-06 9.10182e-06 9.1019e-06 9.102e-06 9.10213e-06 9.10229e-06 9.1025e-06 9.10275e-06 9.10305e-06 9.10342e-06 9.10385e-06 9.10437e-06 9.10498e-06 9.10569e-06 9.10652e-06 9.1075e-06 9.10868e-06 9.11007e-06 9.11173e-06 9.11367e-06 9.11599e-06 9.11871e-06 9.12186e-06 9.12551e-06 9.12966e-06 9.13438e-06 9.13966e-06 9.14539e-06 9.15144e-06 9.15772e-06 9.16435e-06 9.1715e-06 9.17922e-06 9.18769e-06 9.19727e-06 9.20852e-06 9.22199e-06 9.23842e-06 9.25837e-06 9.28279e-06 9.31183e-06 9.34559e-06 9.3866e-06 9.43752e-06 9.50176e-06 9.58283e-06 9.68494e-06 9.80174e-06 9.9365e-06 1.01039e-05 1.03171e-05 1.05719e-05 1.08432e-05 1.07105e-05 7.62549e-06 1.3595e-05 0.000416229 0.00141628 0.00192282 0.00209459 9.10165e-06 9.10206e-06 9.10242e-06 9.10295e-06 9.10346e-06 9.10384e-06 9.1042e-06 9.10457e-06 9.10516e-06 9.10653e-06 9.10889e-06 9.11159e-06 9.11359e-06 9.11428e-06 9.11379e-06 9.11276e-06 9.1117e-06 9.11093e-06 9.11069e-06 9.11091e-06 9.11145e-06 9.11231e-06 9.11355e-06 9.11508e-06 9.11679e-06 9.11855e-06 9.12027e-06 9.12199e-06 9.12383e-06 9.12587e-06 9.12809e-06 9.13044e-06 9.13284e-06 9.13531e-06 9.13789e-06 9.14089e-06 9.14434e-06 9.14845e-06 9.15583e-06 9.16583e-06 9.17403e-06 9.18125e-06 9.1937e-06 9.20924e-06 9.22125e-06 9.22921e-06 9.2293e-06 9.22137e-06 9.22913e-06 9.28015e-06 9.36362e-06 9.4785e-06 9.62132e-06 9.78881e-06 9.96885e-06 1.0161e-05 1.03888e-05 1.06176e-05 1.0617e-05 9.56679e-06 8.78346e-06 0.000126244 0.00121606 0.00198325 0.00210199 9.10163e-06 9.10163e-06 9.1017e-06 9.1017e-06 9.10175e-06 9.1018e-06 9.10187e-06 9.10196e-06 9.10208e-06 9.10223e-06 9.10242e-06 9.10265e-06 9.10293e-06 9.10328e-06 9.10369e-06 9.10419e-06 9.10476e-06 9.10544e-06 9.10624e-06 9.10716e-06 9.10825e-06 9.10954e-06 9.11106e-06 9.11285e-06 9.11496e-06 9.11744e-06 9.12035e-06 9.12373e-06 9.12765e-06 9.13214e-06 9.13723e-06 9.14283e-06 9.14881e-06 9.15505e-06 9.16159e-06 9.16859e-06 9.17615e-06 9.18428e-06 9.19326e-06 9.20351e-06 9.21557e-06 9.22999e-06 9.2475e-06 9.26866e-06 9.29442e-06 9.32468e-06 9.35996e-06 9.40404e-06 9.46126e-06 9.53493e-06 9.62798e-06 9.74174e-06 9.87408e-06 1.00362e-05 1.02429e-05 1.04796e-05 1.0687e-05 1.08078e-05 1.04721e-05 7.52607e-06 1.27338e-05 0.000375381 0.00136919 0.00192514 0.00209178 9.10164e-06 9.10203e-06 9.10236e-06 9.10284e-06 9.10336e-06 9.10373e-06 9.10408e-06 9.10445e-06 9.10493e-06 9.106e-06 9.10805e-06 9.11069e-06 9.11299e-06 9.11415e-06 9.11409e-06 9.11328e-06 9.1123e-06 9.11147e-06 9.11106e-06 9.11118e-06 9.11166e-06 9.11244e-06 9.11359e-06 9.11508e-06 9.11681e-06 9.11868e-06 9.12053e-06 9.12235e-06 9.12424e-06 9.12628e-06 9.12854e-06 9.131e-06 9.13356e-06 9.13618e-06 9.13887e-06 9.14174e-06 9.14511e-06 9.14883e-06 9.15446e-06 9.16407e-06 9.17409e-06 9.18121e-06 9.19035e-06 9.20614e-06 9.2217e-06 9.23236e-06 9.23754e-06 9.23366e-06 9.23277e-06 9.2667e-06 9.34462e-06 9.43956e-06 9.55747e-06 9.69877e-06 9.86021e-06 1.00509e-05 1.03254e-05 1.06807e-05 1.07733e-05 9.57695e-06 8.54983e-06 8.47874e-05 0.00112727 0.00198503 0.00210313 9.10166e-06 9.10166e-06 9.10173e-06 9.10174e-06 9.1018e-06 9.10185e-06 9.10194e-06 9.10204e-06 9.10218e-06 9.10235e-06 9.10256e-06 9.10282e-06 9.10314e-06 9.10353e-06 9.104e-06 9.10456e-06 9.1052e-06 9.10596e-06 9.10684e-06 9.10787e-06 9.10905e-06 9.11045e-06 9.1121e-06 9.11404e-06 9.11631e-06 9.11897e-06 9.12209e-06 9.12573e-06 9.12995e-06 9.13477e-06 9.14015e-06 9.14598e-06 9.15214e-06 9.15861e-06 9.16548e-06 9.17289e-06 9.18082e-06 9.18941e-06 9.19895e-06 9.20993e-06 9.22279e-06 9.23815e-06 9.25671e-06 9.27904e-06 9.306e-06 9.33742e-06 9.37476e-06 9.42324e-06 9.48895e-06 9.57364e-06 9.67942e-06 9.80709e-06 9.96373e-06 1.01628e-05 1.03957e-05 1.05928e-05 1.06579e-05 1.05818e-05 1.0147e-05 7.56617e-06 1.1537e-05 0.00033075 0.00133036 0.00193303 0.00209064 9.10163e-06 9.10201e-06 9.1023e-06 9.10274e-06 9.10326e-06 9.10363e-06 9.10395e-06 9.10431e-06 9.10473e-06 9.10556e-06 9.10727e-06 9.10976e-06 9.11224e-06 9.11385e-06 9.11425e-06 9.11374e-06 9.11288e-06 9.11205e-06 9.11152e-06 9.11149e-06 9.11189e-06 9.11261e-06 9.11367e-06 9.11509e-06 9.11682e-06 9.11874e-06 9.12073e-06 9.12269e-06 9.12466e-06 9.12673e-06 9.12901e-06 9.13152e-06 9.13422e-06 9.13702e-06 9.13989e-06 9.14281e-06 9.14606e-06 9.14977e-06 9.15421e-06 9.16214e-06 9.17319e-06 9.18216e-06 9.18903e-06 9.20201e-06 9.22021e-06 9.23465e-06 9.24304e-06 9.24497e-06 9.24193e-06 9.25955e-06 9.32353e-06 9.42088e-06 9.51885e-06 9.6315e-06 9.76132e-06 9.92597e-06 1.02037e-05 1.06465e-05 1.08201e-05 9.33499e-06 7.07973e-06 4.63903e-05 0.00101789 0.00197404 0.00210529 9.1017e-06 9.10169e-06 9.10177e-06 9.10179e-06 9.10185e-06 9.10192e-06 9.10201e-06 9.10213e-06 9.10228e-06 9.10248e-06 9.10272e-06 9.10302e-06 9.10338e-06 9.10382e-06 9.10434e-06 9.10496e-06 9.10568e-06 9.10652e-06 9.1075e-06 9.10862e-06 9.10992e-06 9.11143e-06 9.11321e-06 9.11529e-06 9.11773e-06 9.12059e-06 9.12394e-06 9.12785e-06 9.13235e-06 9.13745e-06 9.14304e-06 9.14904e-06 9.1554e-06 9.16216e-06 9.16941e-06 9.17721e-06 9.18553e-06 9.19464e-06 9.20481e-06 9.21651e-06 9.23016e-06 9.24646e-06 9.26606e-06 9.28954e-06 9.3177e-06 9.35061e-06 9.39106e-06 9.44563e-06 9.52154e-06 9.61835e-06 9.73887e-06 9.88751e-06 1.00772e-05 1.03039e-05 1.05074e-05 1.05738e-05 1.0449e-05 1.0258e-05 9.93117e-06 7.81136e-06 9.94027e-06 0.000290822 0.00130987 0.00194664 0.0020916 9.10161e-06 9.10199e-06 9.10225e-06 9.10265e-06 9.10316e-06 9.10352e-06 9.10382e-06 9.10417e-06 9.10455e-06 9.10519e-06 9.10657e-06 9.10883e-06 9.11139e-06 9.11338e-06 9.11426e-06 9.11412e-06 9.11345e-06 9.11267e-06 9.11206e-06 9.11187e-06 9.11217e-06 9.11282e-06 9.1138e-06 9.11514e-06 9.11683e-06 9.11878e-06 9.12087e-06 9.12298e-06 9.12507e-06 9.12721e-06 9.12951e-06 9.13204e-06 9.13482e-06 9.13778e-06 9.14086e-06 9.14398e-06 9.14723e-06 9.15093e-06 9.15496e-06 9.16095e-06 9.17135e-06 9.1826e-06 9.1899e-06 9.19894e-06 9.21666e-06 9.23558e-06 9.24743e-06 9.25351e-06 9.25375e-06 9.26112e-06 9.30556e-06 9.39578e-06 9.50298e-06 9.59602e-06 9.69566e-06 9.8217e-06 1.00691e-05 1.05481e-05 1.07685e-05 8.84539e-06 5.17517e-06 2.20841e-05 0.000923975 0.00195618 0.00210873 9.10174e-06 9.10173e-06 9.10182e-06 9.10184e-06 9.10191e-06 9.10199e-06 9.1021e-06 9.10223e-06 9.10241e-06 9.10263e-06 9.1029e-06 9.10323e-06 9.10364e-06 9.10413e-06 9.10472e-06 9.10541e-06 9.10621e-06 9.10713e-06 9.1082e-06 9.10944e-06 9.11085e-06 9.11248e-06 9.11439e-06 9.11662e-06 9.11923e-06 9.1223e-06 9.12589e-06 9.13005e-06 9.1348e-06 9.14009e-06 9.14583e-06 9.15201e-06 9.15864e-06 9.16574e-06 9.17337e-06 9.18155e-06 9.19033e-06 9.20001e-06 9.21083e-06 9.22323e-06 9.23769e-06 9.25498e-06 9.27569e-06 9.30037e-06 9.32995e-06 9.3651e-06 9.40999e-06 9.47237e-06 9.55966e-06 9.67039e-06 9.81072e-06 9.98846e-06 1.02048e-05 1.04116e-05 1.04993e-05 1.03829e-05 1.01413e-05 1.00253e-05 9.9811e-06 8.20122e-06 8.23035e-06 0.000260942 0.00130152 0.0019605 0.00209426 9.1016e-06 9.10197e-06 9.10221e-06 9.10255e-06 9.10305e-06 9.10343e-06 9.1037e-06 9.10403e-06 9.10439e-06 9.10489e-06 9.10597e-06 9.10793e-06 9.11045e-06 9.11273e-06 9.11408e-06 9.11437e-06 9.11396e-06 9.1133e-06 9.11267e-06 9.11234e-06 9.1125e-06 9.11307e-06 9.11398e-06 9.11523e-06 9.11685e-06 9.11879e-06 9.12096e-06 9.12321e-06 9.12544e-06 9.1277e-06 9.13005e-06 9.13259e-06 9.13541e-06 9.13848e-06 9.14174e-06 9.14512e-06 9.14853e-06 9.15222e-06 9.15627e-06 9.16097e-06 9.16942e-06 9.18165e-06 9.19158e-06 9.19853e-06 9.21249e-06 9.23407e-06 9.25115e-06 9.26024e-06 9.26463e-06 9.26901e-06 9.29734e-06 9.36977e-06 9.47724e-06 9.58408e-06 9.66657e-06 9.76233e-06 9.96035e-06 1.04218e-05 1.06573e-05 8.19689e-06 3.35366e-06 1.2137e-05 0.000874663 0.00194149 0.00211428 9.10179e-06 9.10177e-06 9.10187e-06 9.1019e-06 9.10198e-06 9.10207e-06 9.10219e-06 9.10235e-06 9.10255e-06 9.10279e-06 9.1031e-06 9.10348e-06 9.10393e-06 9.10448e-06 9.10513e-06 9.10589e-06 9.10678e-06 9.1078e-06 9.10897e-06 9.11031e-06 9.11184e-06 9.1136e-06 9.11565e-06 9.11803e-06 9.12082e-06 9.12409e-06 9.1279e-06 9.13227e-06 9.13719e-06 9.14263e-06 9.14854e-06 9.15495e-06 9.16189e-06 9.16935e-06 9.17737e-06 9.18596e-06 9.19526e-06 9.20553e-06 9.21698e-06 9.23011e-06 9.2455e-06 9.26393e-06 9.28584e-06 9.31188e-06 9.34334e-06 9.38174e-06 9.43246e-06 9.5043e-06 9.60447e-06 9.73299e-06 9.89891e-06 1.01019e-05 1.03055e-05 1.04133e-05 1.03279e-05 1.00884e-05 9.90958e-06 1.00444e-05 1.02904e-05 8.54985e-06 6.8075e-06 0.000238815 0.00128285 0.00196639 0.00209816 9.10159e-06 9.10195e-06 9.10217e-06 9.10246e-06 9.10294e-06 9.10334e-06 9.10358e-06 9.10388e-06 9.10423e-06 9.10464e-06 9.10547e-06 9.10711e-06 9.10947e-06 9.11192e-06 9.11371e-06 9.11447e-06 9.11439e-06 9.1139e-06 9.11333e-06 9.11291e-06 9.1129e-06 9.11336e-06 9.1142e-06 9.11537e-06 9.11691e-06 9.11881e-06 9.12099e-06 9.12336e-06 9.12576e-06 9.12816e-06 9.13061e-06 9.1332e-06 9.13603e-06 9.13915e-06 9.14255e-06 9.14615e-06 9.14985e-06 9.15364e-06 9.15778e-06 9.16207e-06 9.16841e-06 9.17964e-06 9.1923e-06 9.20045e-06 9.21006e-06 9.23021e-06 9.25305e-06 9.26627e-06 9.27377e-06 9.27927e-06 9.29737e-06 9.35295e-06 9.44728e-06 9.56013e-06 9.65853e-06 9.74309e-06 9.90713e-06 1.03115e-05 1.05308e-05 7.6129e-06 1.95101e-06 9.87581e-06 0.000872361 0.0019383 0.00212322 9.10185e-06 9.10183e-06 9.10193e-06 9.10197e-06 9.10206e-06 9.10216e-06 9.10231e-06 9.10248e-06 9.1027e-06 9.10298e-06 9.10333e-06 9.10374e-06 9.10425e-06 9.10486e-06 9.10558e-06 9.10642e-06 9.1074e-06 9.10852e-06 9.10979e-06 9.11124e-06 9.11289e-06 9.11478e-06 9.11697e-06 9.11952e-06 9.12248e-06 9.12592e-06 9.1299e-06 9.13442e-06 9.13948e-06 9.14507e-06 9.15119e-06 9.1579e-06 9.16517e-06 9.173e-06 9.18142e-06 9.19048e-06 9.20034e-06 9.21117e-06 9.2233e-06 9.2373e-06 9.25386e-06 9.27358e-06 9.2968e-06 9.32441e-06 9.35834e-06 9.40105e-06 9.4591e-06 9.54242e-06 9.6583e-06 9.80901e-06 9.9972e-06 1.01934e-05 1.03143e-05 1.02633e-05 1.00482e-05 9.85169e-06 9.9096e-06 1.03264e-05 1.06663e-05 8.67518e-06 5.95328e-06 0.000215668 0.00123086 0.00195958 0.00210351 9.10157e-06 9.10193e-06 9.10214e-06 9.10238e-06 9.10283e-06 9.10324e-06 9.10348e-06 9.10374e-06 9.10407e-06 9.10443e-06 9.10506e-06 9.10638e-06 9.10851e-06 9.11101e-06 9.11315e-06 9.11439e-06 9.11471e-06 9.11446e-06 9.114e-06 9.11356e-06 9.11341e-06 9.11372e-06 9.11446e-06 9.11556e-06 9.11701e-06 9.11884e-06 9.12102e-06 9.12345e-06 9.126e-06 9.12856e-06 9.13115e-06 9.13384e-06 9.1367e-06 9.13985e-06 9.14331e-06 9.14707e-06 9.15105e-06 9.15511e-06 9.15938e-06 9.16381e-06 9.16884e-06 9.17776e-06 9.19132e-06 9.2028e-06 9.21069e-06 9.22596e-06 9.25172e-06 9.27146e-06 9.28166e-06 9.28964e-06 9.30306e-06 9.34396e-06 9.42545e-06 9.53006e-06 9.63742e-06 9.7393e-06 9.90261e-06 1.02622e-05 1.04435e-05 7.34801e-06 1.17623e-06 1.06998e-05 0.000891808 0.00194903 0.00213576 9.10192e-06 9.10189e-06 9.102e-06 9.10205e-06 9.10215e-06 9.10227e-06 9.10243e-06 9.10263e-06 9.10288e-06 9.10319e-06 9.10357e-06 9.10404e-06 9.1046e-06 9.10528e-06 9.10607e-06 9.10699e-06 9.10806e-06 9.10928e-06 9.11066e-06 9.11223e-06 9.114e-06 9.11602e-06 9.11835e-06 9.12104e-06 9.12415e-06 9.12774e-06 9.13185e-06 9.1365e-06 9.1417e-06 9.14747e-06 9.15385e-06 9.16086e-06 9.16847e-06 9.17669e-06 9.18557e-06 9.19514e-06 9.20555e-06 9.21696e-06 9.22995e-06 9.24511e-06 9.26307e-06 9.28416e-06 9.30873e-06 9.33813e-06 9.37511e-06 9.42324e-06 9.4905e-06 9.58821e-06 9.72296e-06 9.89327e-06 1.00778e-05 1.02066e-05 1.01862e-05 1.00036e-05 9.80871e-06 9.82661e-06 1.01624e-05 1.06996e-05 1.08537e-05 8.58719e-06 5.84284e-06 0.000183191 0.00114139 0.00194332 0.00211131 9.10156e-06 9.1019e-06 9.10211e-06 9.10231e-06 9.10272e-06 9.10314e-06 9.10339e-06 9.10361e-06 9.10391e-06 9.10425e-06 9.10473e-06 9.10576e-06 9.1076e-06 9.11002e-06 9.11241e-06 9.1141e-06 9.11487e-06 9.11493e-06 9.11465e-06 9.11426e-06 9.11402e-06 9.11417e-06 9.11478e-06 9.11579e-06 9.11716e-06 9.1189e-06 9.12104e-06 9.12349e-06 9.12616e-06 9.1289e-06 9.13165e-06 9.13448e-06 9.13743e-06 9.1406e-06 9.1441e-06 9.14795e-06 9.15212e-06 9.15651e-06 9.16102e-06 9.16577e-06 9.1705e-06 9.17719e-06 9.18934e-06 9.20368e-06 9.21353e-06 9.22396e-06 9.24749e-06 9.27422e-06 9.289e-06 9.29895e-06 9.31188e-06 9.34222e-06 9.40942e-06 9.50751e-06 9.60976e-06 9.71868e-06 9.90882e-06 1.0284e-05 1.04202e-05 7.39817e-06 9.49496e-07 1.0918e-05 0.000893665 0.00196665 0.0021503 9.10201e-06 9.10196e-06 9.10208e-06 9.10214e-06 9.10225e-06 9.10239e-06 9.10257e-06 9.1028e-06 9.10308e-06 9.10342e-06 9.10385e-06 9.10437e-06 9.10499e-06 9.10573e-06 9.1066e-06 9.1076e-06 9.10876e-06 9.11008e-06 9.11157e-06 9.11325e-06 9.11515e-06 9.1173e-06 9.11975e-06 9.12256e-06 9.1258e-06 9.1295e-06 9.13373e-06 9.1385e-06 9.14387e-06 9.14986e-06 9.15651e-06 9.16383e-06 9.17181e-06 9.18047e-06 9.18984e-06 9.19992e-06 9.21089e-06 9.2231e-06 9.23726e-06 9.2539e-06 9.27333e-06 9.29566e-06 9.32149e-06 9.35283e-06 9.39344e-06 9.44837e-06 9.52747e-06 9.64241e-06 9.79381e-06 9.96307e-06 1.00934e-05 1.00992e-05 9.95176e-06 9.76678e-06 9.7604e-06 1.00469e-05 1.05166e-05 1.0912e-05 1.07391e-05 8.49127e-06 6.54779e-06 0.000140796 0.00103594 0.00192703 0.00212227 9.10155e-06 9.10188e-06 9.10209e-06 9.10224e-06 9.1026e-06 9.10304e-06 9.10331e-06 9.1035e-06 9.10376e-06 9.10408e-06 9.10447e-06 9.10525e-06 9.10677e-06 9.10902e-06 9.11152e-06 9.11361e-06 9.11485e-06 9.11529e-06 9.11524e-06 9.11498e-06 9.11472e-06 9.11473e-06 9.11518e-06 9.11607e-06 9.11736e-06 9.11902e-06 9.12107e-06 9.12351e-06 9.12624e-06 9.12914e-06 9.13208e-06 9.13507e-06 9.13816e-06 9.14142e-06 9.14494e-06 9.14882e-06 9.15311e-06 9.15775e-06 9.16261e-06 9.16772e-06 9.17281e-06 9.17833e-06 9.18786e-06 9.20274e-06 9.21632e-06 9.22536e-06 9.24293e-06 9.27307e-06 9.29524e-06 9.30751e-06 9.32118e-06 9.34619e-06 9.40023e-06 9.4885e-06 9.58957e-06 9.69245e-06 9.87911e-06 1.0316e-05 1.04453e-05 7.46421e-06 1.01272e-06 7.59503e-06 0.000845087 0.00197538 0.00216326 9.1021e-06 9.10204e-06 9.10217e-06 9.10224e-06 9.10237e-06 9.10253e-06 9.10273e-06 9.10298e-06 9.10329e-06 9.10368e-06 9.10415e-06 9.10472e-06 9.1054e-06 9.10621e-06 9.10716e-06 9.10825e-06 9.1095e-06 9.11092e-06 9.11252e-06 9.11431e-06 9.11632e-06 9.11858e-06 9.12114e-06 9.12407e-06 9.12741e-06 9.13122e-06 9.13555e-06 9.14047e-06 9.14602e-06 9.15225e-06 9.15918e-06 9.16684e-06 9.17524e-06 9.18437e-06 9.19421e-06 9.20483e-06 9.21654e-06 9.22994e-06 9.24564e-06 9.26385e-06 9.28451e-06 9.30771e-06 9.33455e-06 9.36793e-06 9.4129e-06 9.47653e-06 9.57011e-06 9.70061e-06 9.85234e-06 9.97902e-06 1.00053e-05 9.89158e-06 9.72462e-06 9.6969e-06 9.94857e-06 1.03835e-05 1.07356e-05 1.0824e-05 1.04343e-05 8.58977e-06 7.78367e-06 9.57154e-05 0.000949874 0.00192089 0.00213588 9.10154e-06 9.10185e-06 9.10206e-06 9.10219e-06 9.10249e-06 9.10292e-06 9.10322e-06 9.1034e-06 9.10362e-06 9.10392e-06 9.10425e-06 9.10484e-06 9.10605e-06 9.10805e-06 9.11054e-06 9.11291e-06 9.11462e-06 9.1155e-06 9.11575e-06 9.11567e-06 9.11547e-06 9.11539e-06 9.11569e-06 9.11643e-06 9.11761e-06 9.11919e-06 9.12116e-06 9.12353e-06 9.12627e-06 9.12929e-06 9.13242e-06 9.13559e-06 9.13886e-06 9.14226e-06 9.14585e-06 9.14977e-06 9.15409e-06 9.15887e-06 9.16406e-06 9.16953e-06 9.17522e-06 9.18075e-06 9.18805e-06 9.2011e-06 9.21733e-06 9.22888e-06 9.2411e-06 9.26875e-06 9.29863e-06 9.31565e-06 9.3299e-06 9.35292e-06 9.3977e-06 9.475e-06 9.57128e-06 9.67384e-06 9.84594e-06 1.02722e-05 1.04561e-05 7.18192e-06 1.03974e-06 3.11556e-06 0.000738843 0.00195729 0.00216999 9.10221e-06 9.10213e-06 9.10227e-06 9.10236e-06 9.10251e-06 9.10268e-06 9.10291e-06 9.10319e-06 9.10353e-06 9.10396e-06 9.10448e-06 9.1051e-06 9.10585e-06 9.10673e-06 9.10776e-06 9.10894e-06 9.11028e-06 9.1118e-06 9.11349e-06 9.11539e-06 9.1175e-06 9.11987e-06 9.12253e-06 9.12554e-06 9.12897e-06 9.13289e-06 9.13734e-06 9.14242e-06 9.14817e-06 9.15464e-06 9.16189e-06 9.16993e-06 9.17878e-06 9.18837e-06 9.19871e-06 9.21004e-06 9.22289e-06 9.2379e-06 9.25526e-06 9.27474e-06 9.29604e-06 9.31951e-06 9.347e-06 9.38258e-06 9.43299e-06 9.50733e-06 9.61468e-06 9.74781e-06 9.86649e-06 9.90701e-06 9.82491e-06 9.6788e-06 9.63755e-06 9.84879e-06 1.02657e-05 1.06157e-05 1.06736e-05 1.05136e-05 1.01566e-05 8.8798e-06 8.62792e-06 5.80198e-05 0.000909163 0.00193044 0.00214945 9.10152e-06 9.10182e-06 9.10204e-06 9.10214e-06 9.10239e-06 9.1028e-06 9.10313e-06 9.10331e-06 9.10349e-06 9.10376e-06 9.10406e-06 9.10451e-06 9.10545e-06 9.10714e-06 9.1095e-06 9.11205e-06 9.11417e-06 9.11552e-06 9.11615e-06 9.11631e-06 9.11624e-06 9.11615e-06 9.1163e-06 9.11689e-06 9.11793e-06 9.11941e-06 9.12129e-06 9.12359e-06 9.1263e-06 9.12936e-06 9.13265e-06 9.13603e-06 9.13949e-06 9.14307e-06 9.14681e-06 9.1508e-06 9.15515e-06 9.15999e-06 9.16535e-06 9.17118e-06 9.17739e-06 9.18362e-06 9.19004e-06 9.20039e-06 9.2166e-06 9.23207e-06 9.24304e-06 9.26426e-06 9.29802e-06 9.32272e-06 9.33836e-06 9.36032e-06 9.39975e-06 9.46759e-06 9.55745e-06 9.65624e-06 9.82018e-06 1.02248e-05 1.04974e-05 6.80715e-06 7.17562e-07 9.97362e-07 0.000611131 0.00190412 0.00216534 9.10234e-06 9.10224e-06 9.10239e-06 9.10249e-06 9.10265e-06 9.10285e-06 9.1031e-06 9.10341e-06 9.10379e-06 9.10426e-06 9.10483e-06 9.10552e-06 9.10633e-06 9.10729e-06 9.10839e-06 9.10966e-06 9.1111e-06 9.11271e-06 9.1145e-06 9.11648e-06 9.11869e-06 9.12114e-06 9.12389e-06 9.12699e-06 9.13051e-06 9.13452e-06 9.13911e-06 9.14435e-06 9.15031e-06 9.15706e-06 9.16466e-06 9.17313e-06 9.18242e-06 9.19247e-06 9.20346e-06 9.21591e-06 9.23037e-06 9.24715e-06 9.26586e-06 9.28589e-06 9.30691e-06 9.32989e-06 9.35763e-06 9.3957e-06 9.45276e-06 9.53772e-06 9.64961e-06 9.75869e-06 9.80771e-06 9.75301e-06 9.62915e-06 9.57953e-06 9.75095e-06 1.01376e-05 1.05085e-05 1.05904e-05 1.03862e-05 1.01908e-05 1.00593e-05 9.18904e-06 8.2314e-06 3.50039e-05 0.000913053 0.00195106 0.00215849 9.10151e-06 9.10178e-06 9.10201e-06 9.1021e-06 9.1023e-06 9.10267e-06 9.10302e-06 9.10322e-06 9.10338e-06 9.10361e-06 9.10389e-06 9.10425e-06 9.10495e-06 9.10633e-06 9.10846e-06 9.11105e-06 9.1135e-06 9.11533e-06 9.11639e-06 9.11686e-06 9.11699e-06 9.11697e-06 9.11703e-06 9.11746e-06 9.11834e-06 9.11969e-06 9.12149e-06 9.12369e-06 9.12633e-06 9.12939e-06 9.13279e-06 9.13636e-06 9.14002e-06 9.14381e-06 9.14775e-06 9.15188e-06 9.15631e-06 9.16118e-06 9.1666e-06 9.17266e-06 9.17926e-06 9.18628e-06 9.1931e-06 9.20149e-06 9.21555e-06 9.23343e-06 9.24714e-06 9.2627e-06 9.29442e-06 9.32723e-06 9.34715e-06 9.36793e-06 9.40421e-06 9.46509e-06 9.54883e-06 9.64281e-06 9.79507e-06 1.01819e-05 1.05156e-05 7.25029e-06 4.67379e-07 5.29959e-07 0.000513631 0.00182558 0.00214551 9.10249e-06 9.10236e-06 9.10253e-06 9.10264e-06 9.10282e-06 9.10304e-06 9.10332e-06 9.10366e-06 9.10408e-06 9.1046e-06 9.10522e-06 9.10596e-06 9.10684e-06 9.10787e-06 9.10906e-06 9.11042e-06 9.11194e-06 9.11364e-06 9.11552e-06 9.11759e-06 9.11987e-06 9.12241e-06 9.12523e-06 9.1284e-06 9.13201e-06 9.13613e-06 9.14085e-06 9.14626e-06 9.15247e-06 9.15955e-06 9.16754e-06 9.17641e-06 9.18614e-06 9.19679e-06 9.20883e-06 9.22289e-06 9.23919e-06 9.25742e-06 9.27667e-06 9.29615e-06 9.31576e-06 9.33733e-06 9.36489e-06 9.4059e-06 9.46977e-06 9.55949e-06 9.65588e-06 9.7105e-06 9.6787e-06 9.57824e-06 9.52185e-06 9.65633e-06 1.00022e-05 1.0382e-05 1.05208e-05 1.03368e-05 1.00655e-05 1.00314e-05 1.01606e-05 9.33176e-06 6.80201e-06 2.60941e-05 0.00093451 0.00196722 0.00215681 9.10151e-06 9.10175e-06 9.10198e-06 9.10207e-06 9.10221e-06 9.10255e-06 9.10291e-06 9.10313e-06 9.10327e-06 9.10347e-06 9.10372e-06 9.10403e-06 9.10456e-06 9.10563e-06 9.10747e-06 9.10996e-06 9.11262e-06 9.11488e-06 9.11643e-06 9.11729e-06 9.11769e-06 9.11781e-06 9.11786e-06 9.11815e-06 9.11886e-06 9.12005e-06 9.12173e-06 9.12385e-06 9.1264e-06 9.12941e-06 9.13283e-06 9.13657e-06 9.14045e-06 9.14444e-06 9.14861e-06 9.15296e-06 9.15755e-06 9.16249e-06 9.16795e-06 9.17407e-06 9.18093e-06 9.18849e-06 9.19629e-06 9.2042e-06 9.21571e-06 9.23331e-06 9.25083e-06 9.26484e-06 9.29064e-06 9.32816e-06 9.35588e-06 9.37664e-06 9.40984e-06 9.46582e-06 9.5447e-06 9.63453e-06 9.77411e-06 1.01376e-05 1.05291e-05 7.62179e-06 6.54561e-07 5.68115e-07 0.000479324 0.00175014 0.00210947 9.10265e-06 9.10249e-06 9.10268e-06 9.10281e-06 9.10301e-06 9.10325e-06 9.10355e-06 9.10393e-06 9.10439e-06 9.10495e-06 9.10563e-06 9.10644e-06 9.10738e-06 9.10849e-06 9.10976e-06 9.11119e-06 9.1128e-06 9.11459e-06 9.11655e-06 9.11869e-06 9.12104e-06 9.12365e-06 9.12654e-06 9.12979e-06 9.13347e-06 9.1377e-06 9.14257e-06 9.1482e-06 9.1547e-06 9.16214e-06 9.1705e-06 9.17977e-06 9.19005e-06 9.20169e-06 9.2153e-06 9.23126e-06 9.24914e-06 9.26798e-06 9.28653e-06 9.30396e-06 9.32078e-06 9.33985e-06 9.36693e-06 9.41109e-06 9.47867e-06 9.55957e-06 9.61636e-06 9.6044e-06 9.5272e-06 9.47072e-06 9.56556e-06 9.86625e-06 1.02358e-05 1.04279e-05 1.03075e-05 1.00238e-05 9.88608e-06 1.00851e-05 1.03731e-05 9.23164e-06 5.03879e-06 2.62399e-05 0.000935026 0.00195849 0.00213892 9.1015e-06 9.10171e-06 9.10194e-06 9.10204e-06 9.10214e-06 9.10242e-06 9.10278e-06 9.10304e-06 9.10318e-06 9.10334e-06 9.10356e-06 9.10384e-06 9.10425e-06 9.10506e-06 9.10658e-06 9.10886e-06 9.11158e-06 9.11419e-06 9.11623e-06 9.11755e-06 9.11828e-06 9.11863e-06 9.11876e-06 9.11897e-06 9.11952e-06 9.12052e-06 9.12203e-06 9.12406e-06 9.12652e-06 9.12944e-06 9.13284e-06 9.13668e-06 9.14074e-06 9.14496e-06 9.14935e-06 9.15396e-06 9.15878e-06 9.16389e-06 9.16943e-06 9.17558e-06 9.18253e-06 9.19037e-06 9.19901e-06 9.20764e-06 9.21768e-06 9.23324e-06 9.25284e-06 9.26903e-06 9.28927e-06 9.32606e-06 9.36283e-06 9.38709e-06 9.41684e-06 9.46839e-06 9.5438e-06 9.63117e-06 9.75871e-06 1.00953e-05 1.05302e-05 7.9851e-06 8.53525e-07 3.40407e-07 0.000479861 0.00171515 0.00205797 9.10284e-06 9.10264e-06 9.10285e-06 9.103e-06 9.10321e-06 9.10348e-06 9.10381e-06 9.10423e-06 9.10473e-06 9.10534e-06 9.10607e-06 9.10694e-06 9.10795e-06 9.10913e-06 9.11048e-06 9.11199e-06 9.11368e-06 9.11554e-06 9.11757e-06 9.11978e-06 9.1222e-06 9.12486e-06 9.12781e-06 9.13113e-06 9.1349e-06 9.13925e-06 9.14431e-06 9.15019e-06 9.15702e-06 9.1648e-06 9.17353e-06 9.1833e-06 9.19448e-06 9.20765e-06 9.22322e-06 9.2409e-06 9.25958e-06 9.27776e-06 9.29389e-06 9.30727e-06 9.31964e-06 9.33515e-06 9.36182e-06 9.40827e-06 9.47184e-06 9.52651e-06 9.53151e-06 9.47672e-06 9.42508e-06 9.48842e-06 9.73433e-06 1.00802e-05 1.03069e-05 1.0259e-05 1.00118e-05 9.82128e-06 9.90794e-06 1.02851e-05 1.05775e-05 8.86631e-06 3.36602e-06 3.01559e-05 0.000884243 0.00191212 0.00210238 9.10149e-06 9.10168e-06 9.10191e-06 9.10201e-06 9.10208e-06 9.10231e-06 9.10265e-06 9.10293e-06 9.1031e-06 9.10323e-06 9.10341e-06 9.10366e-06 9.104e-06 9.10461e-06 9.10582e-06 9.10781e-06 9.11044e-06 9.11327e-06 9.11576e-06 9.11759e-06 9.11874e-06 9.11938e-06 9.11969e-06 9.11989e-06 9.1203e-06 9.12113e-06 9.12245e-06 9.12432e-06 9.12669e-06 9.12952e-06 9.13286e-06 9.13669e-06 9.14092e-06 9.14535e-06 9.14996e-06 9.15482e-06 9.15992e-06 9.16529e-06 9.17101e-06 9.17725e-06 9.18423e-06 9.19217e-06 9.20123e-06 9.21094e-06 9.22098e-06 9.23449e-06 9.2538e-06 9.27313e-06 9.29106e-06 9.32297e-06 9.36602e-06 9.39814e-06 9.426e-06 9.47249e-06 9.54481e-06 9.63163e-06 9.74937e-06 1.00571e-05 1.05224e-05 8.3339e-06 1.09009e-06 2.1077e-07 0.000436114 0.00171967 0.00200513 9.10306e-06 9.10281e-06 9.10304e-06 9.1032e-06 9.10344e-06 9.10373e-06 9.1041e-06 9.10454e-06 9.10509e-06 9.10575e-06 9.10653e-06 9.10746e-06 9.10855e-06 9.1098e-06 9.11122e-06 9.11281e-06 9.11457e-06 9.11649e-06 9.11859e-06 9.12085e-06 9.12332e-06 9.12604e-06 9.12905e-06 9.13244e-06 9.13632e-06 9.14082e-06 9.14611e-06 9.1523e-06 9.15944e-06 9.16753e-06 9.17669e-06 9.18727e-06 9.19989e-06 9.21502e-06 9.23246e-06 9.25115e-06 9.26936e-06 9.28502e-06 9.29632e-06 9.30336e-06 9.3096e-06 9.32131e-06 9.34835e-06 9.3944e-06 9.44332e-06 9.46099e-06 9.42797e-06 9.38407e-06 9.4231e-06 9.61723e-06 9.92379e-06 1.01671e-05 1.01826e-05 9.99043e-06 9.79369e-06 9.80098e-06 1.00762e-05 1.05151e-05 1.06821e-05 8.2483e-06 2.05371e-06 3.01734e-05 0.000776873 0.00183483 0.00204799 9.10148e-06 9.10165e-06 9.10186e-06 9.10198e-06 9.10204e-06 9.1022e-06 9.10251e-06 9.10281e-06 9.10301e-06 9.10313e-06 9.10328e-06 9.1035e-06 9.10379e-06 9.10427e-06 9.1052e-06 9.10686e-06 9.10929e-06 9.11218e-06 9.11502e-06 9.11735e-06 9.11899e-06 9.12002e-06 9.12059e-06 9.12088e-06 9.12122e-06 9.12188e-06 9.12301e-06 9.12467e-06 9.12692e-06 9.12966e-06 9.13289e-06 9.13667e-06 9.14098e-06 9.14561e-06 9.15045e-06 9.15553e-06 9.16092e-06 9.16659e-06 9.1726e-06 9.17905e-06 9.18612e-06 9.1941e-06 9.20326e-06 9.21373e-06 9.22468e-06 9.23729e-06 9.25513e-06 9.27637e-06 9.29513e-06 9.32131e-06 9.36501e-06 9.407e-06 9.43728e-06 9.47874e-06 9.54723e-06 9.6343e-06 9.74577e-06 1.00245e-05 1.05068e-05 8.67344e-06 1.37754e-06 1.45503e-07 0.000396828 0.00169073 0.00198605 9.1033e-06 9.103e-06 9.10325e-06 9.10343e-06 9.10369e-06 9.104e-06 9.1044e-06 9.10489e-06 9.10547e-06 9.10618e-06 9.10702e-06 9.10801e-06 9.10916e-06 9.11048e-06 9.11197e-06 9.11363e-06 9.11545e-06 9.11744e-06 9.11959e-06 9.12191e-06 9.12442e-06 9.12719e-06 9.13026e-06 9.13373e-06 9.13775e-06 9.14247e-06 9.14802e-06 9.15449e-06 9.16188e-06 9.17034e-06 9.18022e-06 9.19212e-06 9.2066e-06 9.22364e-06 9.24223e-06 9.26057e-06 9.27629e-06 9.28657e-06 9.29005e-06 9.289e-06 9.28861e-06 9.29842e-06 9.3273e-06 9.36849e-06 9.3947e-06 9.38146e-06 9.34814e-06 9.36863e-06 9.51535e-06 9.77557e-06 1.00183e-05 1.00832e-05 9.94956e-06 9.76818e-06 9.7336e-06 9.92606e-06 1.02807e-05 1.06779e-05 1.06544e-05 7.50695e-06 1.29788e-06 2.11102e-05 0.000649224 0.0017566 0.00199116 9.10148e-06 9.10161e-06 9.10181e-06 9.10194e-06 9.10199e-06 9.10211e-06 9.10238e-06 9.10268e-06 9.10291e-06 9.10304e-06 9.10317e-06 9.10336e-06 9.10362e-06 9.10401e-06 9.10472e-06 9.10605e-06 9.10819e-06 9.111e-06 9.11405e-06 9.11683e-06 9.119e-06 9.12048e-06 9.1214e-06 9.12191e-06 9.12225e-06 9.12278e-06 9.12372e-06 9.12517e-06 9.12722e-06 9.12985e-06 9.133e-06 9.13668e-06 9.14095e-06 9.14573e-06 9.15079e-06 9.1561e-06 9.16174e-06 9.16773e-06 9.17408e-06 9.18085e-06 9.18816e-06 9.19624e-06 9.20543e-06 9.21615e-06 9.22812e-06 9.24101e-06 9.25762e-06 9.27928e-06 9.30035e-06 9.32275e-06 9.36181e-06 9.41113e-06 9.44901e-06 9.48784e-06 9.55156e-06 9.63811e-06 9.74648e-06 9.99881e-06 1.04855e-05 8.99741e-06 1.7294e-06 1.0939e-07 0.000362551 0.00165635 0.00202712 9.10358e-06 9.10321e-06 9.10348e-06 9.10368e-06 9.10396e-06 9.1043e-06 9.10473e-06 9.10525e-06 9.10588e-06 9.10664e-06 9.10753e-06 9.10858e-06 9.10979e-06 9.11117e-06 9.11273e-06 9.11445e-06 9.11633e-06 9.11837e-06 9.12057e-06 9.12294e-06 9.1255e-06 9.12832e-06 9.13146e-06 9.13505e-06 9.13926e-06 9.14422e-06 9.15e-06 9.15668e-06 9.16439e-06 9.17352e-06 9.18464e-06 9.19826e-06 9.21455e-06 9.23275e-06 9.251e-06 9.26666e-06 9.27648e-06 9.27754e-06 9.27082e-06 9.26201e-06 9.25764e-06 9.2703e-06 9.30213e-06 9.33365e-06 9.33787e-06 9.31723e-06 9.32503e-06 9.42973e-06 9.64061e-06 9.86681e-06 9.96852e-06 9.88974e-06 9.73524e-06 9.67715e-06 9.81381e-06 1.01005e-05 1.04234e-05 1.07315e-05 1.05202e-05 6.90175e-06 1.06185e-06 1.00663e-05 0.000552236 0.00172093 0.00197196 9.10147e-06 9.10158e-06 9.10176e-06 9.1019e-06 9.10196e-06 9.10204e-06 9.10225e-06 9.10255e-06 9.1028e-06 9.10296e-06 9.10307e-06 9.10323e-06 9.10346e-06 9.10379e-06 9.10435e-06 9.1054e-06 9.10721e-06 9.10981e-06 9.11292e-06 9.11604e-06 9.11872e-06 9.12072e-06 9.12207e-06 9.12289e-06 9.12335e-06 9.12381e-06 9.12459e-06 9.12583e-06 9.12765e-06 9.13011e-06 9.13316e-06 9.13673e-06 9.1409e-06 9.14572e-06 9.15098e-06 9.15653e-06 9.16239e-06 9.16867e-06 9.17537e-06 9.18252e-06 9.19019e-06 9.19853e-06 9.20784e-06 9.21859e-06 9.23116e-06 9.2449e-06 9.26112e-06 9.28252e-06 9.30602e-06 9.32772e-06 9.35999e-06 9.41061e-06 9.45862e-06 9.49963e-06 9.55887e-06 9.64321e-06 9.74987e-06 9.97988e-06 1.0461e-05 9.30214e-06 2.15436e-06 9.1629e-08 0.000329585 0.00162231 0.00206547 9.10389e-06 9.10344e-06 9.10374e-06 9.10395e-06 9.10425e-06 9.10462e-06 9.10508e-06 9.10564e-06 9.10631e-06 9.10711e-06 9.10806e-06 9.10917e-06 9.11044e-06 9.11188e-06 9.11349e-06 9.11526e-06 9.1172e-06 9.11929e-06 9.12154e-06 9.12395e-06 9.12656e-06 9.12945e-06 9.13269e-06 9.13646e-06 9.14088e-06 9.14602e-06 9.15199e-06 9.15897e-06 9.16734e-06 9.17772e-06 9.1906e-06 9.20599e-06 9.22333e-06 9.24121e-06 9.25662e-06 9.2658e-06 9.265e-06 9.25361e-06 9.23721e-06 9.2242e-06 9.22279e-06 9.24431e-06 9.27798e-06 9.29707e-06 9.2906e-06 9.29169e-06 9.36076e-06 9.52328e-06 9.72179e-06 9.84256e-06 9.81435e-06 9.69324e-06 9.62399e-06 9.716e-06 9.95698e-06 1.02313e-05 1.04596e-05 1.06835e-05 1.03478e-05 6.6751e-06 1.11555e-06 4.32684e-06 0.000519477 0.00172979 0.00201243 9.10147e-06 9.10155e-06 9.10171e-06 9.10186e-06 9.10192e-06 9.10197e-06 9.10214e-06 9.1024e-06 9.10267e-06 9.10286e-06 9.10299e-06 9.10312e-06 9.10331e-06 9.10361e-06 9.10407e-06 9.10489e-06 9.10637e-06 9.10868e-06 9.11169e-06 9.11501e-06 9.11813e-06 9.12068e-06 9.12253e-06 9.12375e-06 9.12447e-06 9.12496e-06 9.12561e-06 9.12667e-06 9.12825e-06 9.13047e-06 9.13337e-06 9.13684e-06 9.14089e-06 9.14563e-06 9.15102e-06 9.15681e-06 9.16291e-06 9.16941e-06 9.17644e-06 9.18396e-06 9.19205e-06 9.2008e-06 9.21041e-06 9.22129e-06 9.23403e-06 9.2486e-06 9.26509e-06 9.28621e-06 9.31172e-06 9.3355e-06 9.36263e-06 9.40863e-06 9.46459e-06 9.5129e-06 9.56996e-06 9.65081e-06 9.75505e-06 9.96658e-06 1.04352e-05 9.57843e-06 2.65857e-06 8.71052e-08 0.000297804 0.001584 0.00211174 9.10423e-06 9.1037e-06 9.10402e-06 9.10425e-06 9.10457e-06 9.10496e-06 9.10545e-06 9.10604e-06 9.10676e-06 9.10761e-06 9.10861e-06 9.10976e-06 9.11109e-06 9.11258e-06 9.11424e-06 9.11607e-06 9.11806e-06 9.1202e-06 9.12249e-06 9.12495e-06 9.12763e-06 9.13061e-06 9.13401e-06 9.13796e-06 9.14254e-06 9.14783e-06 9.15411e-06 9.16177e-06 9.17139e-06 9.18356e-06 9.19837e-06 9.21513e-06 9.23223e-06 9.24746e-06 9.25628e-06 9.25413e-06 9.23896e-06 9.21585e-06 9.19462e-06 9.18381e-06 9.19469e-06 9.2279e-06 9.25897e-06 9.267e-06 9.26691e-06 9.30781e-06 9.42529e-06 9.59035e-06 9.71516e-06 9.72603e-06 9.6418e-06 9.57277e-06 9.62703e-06 9.82551e-06 1.00792e-05 1.02694e-05 1.03969e-05 1.05715e-05 1.02055e-05 6.74949e-06 1.1417e-06 3.14531e-06 0.000519211 0.00170257 0.00204993 9.10146e-06 9.10152e-06 9.10166e-06 9.1018e-06 9.10188e-06 9.10192e-06 9.10204e-06 9.10227e-06 9.10253e-06 9.10275e-06 9.1029e-06 9.10302e-06 9.10319e-06 9.10345e-06 9.10385e-06 9.1045e-06 9.10568e-06 9.10765e-06 9.11046e-06 9.11382e-06 9.11727e-06 9.12033e-06 9.12273e-06 9.12444e-06 9.12553e-06 9.12619e-06 9.12677e-06 9.12767e-06 9.12905e-06 9.131e-06 9.13366e-06 9.13701e-06 9.14095e-06 9.14556e-06 9.15091e-06 9.15691e-06 9.16326e-06 9.16999e-06 9.17728e-06 9.18515e-06 9.19365e-06 9.20286e-06 9.21293e-06 9.22414e-06 9.23701e-06 9.25212e-06 9.26918e-06 9.29015e-06 9.31696e-06 9.34455e-06 9.37054e-06 9.40964e-06 9.46784e-06 9.52595e-06 9.58474e-06 9.66218e-06 9.76246e-06 9.95742e-06 1.04092e-05 9.81843e-06 3.23539e-06 9.40217e-08 0.000266365 0.00154145 0.00216781 9.10462e-06 9.10398e-06 9.10432e-06 9.10457e-06 9.1049e-06 9.10532e-06 9.10584e-06 9.10647e-06 9.10722e-06 9.10812e-06 9.10916e-06 9.11037e-06 9.11174e-06 9.11328e-06 9.115e-06 9.11687e-06 9.11891e-06 9.12109e-06 9.12343e-06 9.12596e-06 9.12873e-06 9.13185e-06 9.13542e-06 9.1395e-06 9.14422e-06 9.14982e-06 9.15677e-06 9.16562e-06 9.17701e-06 9.19119e-06 9.20763e-06 9.22478e-06 9.23982e-06 9.24908e-06 9.2469e-06 9.23014e-06 9.20209e-06 9.17406e-06 9.15573e-06 9.15408e-06 9.18328e-06 9.22359e-06 9.24577e-06 9.24874e-06 9.26903e-06 9.34682e-06 9.47606e-06 9.59395e-06 9.6314e-06 9.5823e-06 9.52159e-06 9.5478e-06 9.70177e-06 9.93351e-06 1.01291e-05 1.02157e-05 1.02754e-05 1.04378e-05 1.01254e-05 6.81665e-06 8.37749e-07 3.39503e-06 0.000474548 0.00167009 0.00209553 9.10145e-06 9.1015e-06 9.10161e-06 9.10174e-06 9.10183e-06 9.10187e-06 9.10195e-06 9.10213e-06 9.10239e-06 9.10262e-06 9.1028e-06 9.10293e-06 9.10308e-06 9.10331e-06 9.10366e-06 9.1042e-06 9.10514e-06 9.10677e-06 9.10928e-06 9.11255e-06 9.11618e-06 9.11968e-06 9.12264e-06 9.12489e-06 9.12645e-06 9.12741e-06 9.12806e-06 9.12883e-06 9.13002e-06 9.13174e-06 9.13411e-06 9.13724e-06 9.14107e-06 9.14555e-06 9.15076e-06 9.15683e-06 9.16343e-06 9.17043e-06 9.17793e-06 9.18609e-06 9.19495e-06 9.20461e-06 9.21519e-06 9.2269e-06 9.24012e-06 9.25552e-06 9.27329e-06 9.29428e-06 9.3215e-06 9.35306e-06 9.38211e-06 9.41642e-06 9.47137e-06 9.53762e-06 9.60213e-06 9.6777e-06 9.77327e-06 9.9519e-06 1.03829e-05 1.00206e-05 3.8703e-06 1.14128e-07 0.00023472 0.00149361 0.00223218 9.10505e-06 9.10428e-06 9.10465e-06 9.10492e-06 9.10526e-06 9.10571e-06 9.10625e-06 9.10691e-06 9.1077e-06 9.10864e-06 9.10972e-06 9.11097e-06 9.11239e-06 9.11398e-06 9.11574e-06 9.11767e-06 9.11975e-06 9.12199e-06 9.12439e-06 9.127e-06 9.1299e-06 9.13317e-06 9.13686e-06 9.14108e-06 9.14611e-06 9.15237e-06 9.16045e-06 9.17103e-06 9.18443e-06 9.20031e-06 9.21746e-06 9.23327e-06 9.24333e-06 9.24257e-06 9.22668e-06 9.19782e-06 9.16604e-06 9.14351e-06 9.13482e-06 9.14676e-06 9.19067e-06 9.22622e-06 9.23567e-06 9.24233e-06 9.28679e-06 9.38059e-06 9.48385e-06 9.53643e-06 9.51683e-06 9.47043e-06 9.47755e-06 9.58996e-06 9.78891e-06 9.98969e-06 1.00976e-05 1.01048e-05 1.0141e-05 1.03278e-05 1.01037e-05 6.50408e-06 5.83401e-07 2.13981e-06 0.000434537 0.001638 0.00215146 9.10145e-06 9.10147e-06 9.10155e-06 9.10168e-06 9.10178e-06 9.10182e-06 9.10187e-06 9.10201e-06 9.10224e-06 9.10249e-06 9.10269e-06 9.10284e-06 9.10298e-06 9.10318e-06 9.1035e-06 9.10397e-06 9.10473e-06 9.10604e-06 9.1082e-06 9.11125e-06 9.11492e-06 9.11874e-06 9.12222e-06 9.12505e-06 9.12715e-06 9.12854e-06 9.12941e-06 9.13014e-06 9.13116e-06 9.13267e-06 9.13477e-06 9.13761e-06 9.14124e-06 9.1456e-06 9.15068e-06 9.15661e-06 9.16339e-06 9.17067e-06 9.17842e-06 9.18683e-06 9.196e-06 9.20603e-06 9.21708e-06 9.22933e-06 9.24308e-06 9.25885e-06 9.27731e-06 9.29864e-06 9.3256e-06 9.35982e-06 9.39444e-06 9.42858e-06 9.47831e-06 9.54793e-06 9.62035e-06 9.69666e-06 9.78839e-06 9.95085e-06 1.03566e-05 1.01887e-05 4.54376e-06 1.52257e-07 0.000202667 0.00143965 0.00230118 9.10552e-06 9.1046e-06 9.10501e-06 9.10528e-06 9.10565e-06 9.10611e-06 9.10668e-06 9.10737e-06 9.1082e-06 9.10917e-06 9.11029e-06 9.11158e-06 9.11305e-06 9.11468e-06 9.11649e-06 9.11846e-06 9.12059e-06 9.1229e-06 9.12539e-06 9.12812e-06 9.13116e-06 9.13453e-06 9.13834e-06 9.14286e-06 9.14851e-06 9.15587e-06 9.16561e-06 9.17816e-06 9.1933e-06 9.21007e-06 9.22631e-06 9.23772e-06 9.23873e-06 9.2252e-06 9.19835e-06 9.16754e-06 9.14488e-06 9.13537e-06 9.13864e-06 9.16349e-06 9.20764e-06 9.22597e-06 9.22539e-06 9.24336e-06 9.30415e-06 9.388e-06 9.44609e-06 9.44868e-06 9.41826e-06 9.41547e-06 9.49257e-06 9.6529e-06 9.84272e-06 9.97791e-06 1.00087e-05 9.97942e-06 1.00339e-05 1.02801e-05 1.00919e-05 6.14865e-06 7.51264e-07 1.39745e-06 0.000399622 0.00160159 0.00221601 9.10145e-06 9.10145e-06 9.1015e-06 9.10161e-06 9.10172e-06 9.10177e-06 9.10181e-06 9.10191e-06 9.1021e-06 9.10234e-06 9.10257e-06 9.10275e-06 9.10289e-06 9.10307e-06 9.10335e-06 9.10378e-06 9.10441e-06 9.10547e-06 9.10727e-06 9.11001e-06 9.11357e-06 9.11756e-06 9.12148e-06 9.12488e-06 9.12757e-06 9.12949e-06 9.13073e-06 9.13157e-06 9.13247e-06 9.13379e-06 9.13566e-06 9.13819e-06 9.14153e-06 9.1457e-06 9.15064e-06 9.15641e-06 9.16314e-06 9.17068e-06 9.17873e-06 9.18737e-06 9.19682e-06 9.20717e-06 9.2186e-06 9.23133e-06 9.24565e-06 9.26196e-06 9.281e-06 9.3031e-06 9.32977e-06 9.36478e-06 9.40495e-06 9.44334e-06 9.48985e-06 9.55809e-06 9.63766e-06 9.71768e-06 9.80773e-06 9.95571e-06 1.03317e-05 1.03252e-05 5.24453e-06 2.16976e-07 0.000170147 0.00137907 0.00236938 9.10603e-06 9.10495e-06 9.10539e-06 9.10568e-06 9.10605e-06 9.10653e-06 9.10713e-06 9.10784e-06 9.1087e-06 9.1097e-06 9.11086e-06 9.11219e-06 9.1137e-06 9.11538e-06 9.11723e-06 9.11926e-06 9.12146e-06 9.12385e-06 9.12645e-06 9.12932e-06 9.13245e-06 9.13592e-06 9.14002e-06 9.14514e-06 9.15183e-06 9.16078e-06 9.1724e-06 9.18669e-06 9.20285e-06 9.21904e-06 9.23148e-06 9.23431e-06 9.22302e-06 9.19891e-06 9.17094e-06 9.15121e-06 9.14519e-06 9.14835e-06 9.16129e-06 9.19203e-06 9.21822e-06 9.21539e-06 9.21374e-06 9.24541e-06 9.30772e-06 9.36406e-06 9.3815e-06 9.36581e-06 9.35963e-06 9.40962e-06 9.53206e-06 9.69775e-06 9.84364e-06 9.91163e-06 9.89786e-06 9.87584e-06 9.98238e-06 1.02989e-05 1.00783e-05 6.60245e-06 9.29461e-07 9.66746e-07 0.000365868 0.00156078 0.0022857 9.10146e-06 9.10145e-06 9.10146e-06 9.10154e-06 9.10165e-06 9.10172e-06 9.10176e-06 9.10182e-06 9.10197e-06 9.10219e-06 9.10243e-06 9.10263e-06 9.1028e-06 9.10297e-06 9.10322e-06 9.10361e-06 9.10417e-06 9.10502e-06 9.10649e-06 9.10886e-06 9.11219e-06 9.11621e-06 9.12044e-06 9.12437e-06 9.12766e-06 9.13018e-06 9.13193e-06 9.13305e-06 9.13394e-06 9.13509e-06 9.13676e-06 9.13902e-06 9.14201e-06 9.1459e-06 9.15067e-06 9.15627e-06 9.1628e-06 9.17043e-06 9.17879e-06 9.18773e-06 9.19742e-06 9.20808e-06 9.21983e-06 9.23295e-06 9.24773e-06 9.26462e-06 9.28421e-06 9.30725e-06 9.3342e-06 9.3688e-06 9.41251e-06 9.45744e-06 9.50472e-06 9.56964e-06 9.65314e-06 9.7393e-06 9.83032e-06 9.96728e-06 1.03109e-05 1.04314e-05 5.95751e-06 3.21616e-07 0.000137898 0.00131136 0.00243113 9.1066e-06 9.10532e-06 9.1058e-06 9.10609e-06 9.10647e-06 9.10697e-06 9.10758e-06 9.10832e-06 9.1092e-06 9.11023e-06 9.11143e-06 9.1128e-06 9.11435e-06 9.11608e-06 9.11799e-06 9.12008e-06 9.12237e-06 9.12486e-06 9.12759e-06 9.13054e-06 9.13376e-06 9.13751e-06 9.1422e-06 9.14831e-06 9.1565e-06 9.16723e-06 9.18053e-06 9.19587e-06 9.21172e-06 9.22472e-06 9.2292e-06 9.22008e-06 9.19814e-06 9.17266e-06 9.15601e-06 9.15375e-06 9.16048e-06 9.16984e-06 9.18762e-06 9.21234e-06 9.21058e-06 9.19472e-06 9.20175e-06 9.24239e-06 9.2921e-06 9.31822e-06 9.31463e-06 9.30894e-06 9.33984e-06 9.42885e-06 9.56474e-06 9.70471e-06 9.79682e-06 9.81796e-06 9.79796e-06 9.81725e-06 9.98126e-06 1.03254e-05 1.01793e-05 6.98867e-06 1.13945e-06 6.94733e-07 0.000333263 0.00151479 0.00235471 9.10147e-06 9.10147e-06 9.10147e-06 9.10146e-06 9.10157e-06 9.10166e-06 9.10171e-06 9.10176e-06 9.10186e-06 9.10205e-06 9.10228e-06 9.10251e-06 9.1027e-06 9.10288e-06 9.10311e-06 9.10346e-06 9.10396e-06 9.10469e-06 9.10587e-06 9.10785e-06 9.11085e-06 9.11475e-06 9.11915e-06 9.12352e-06 9.12741e-06 9.13056e-06 9.1329e-06 9.13446e-06 9.13552e-06 9.13657e-06 9.13803e-06 9.14008e-06 9.14277e-06 9.14629e-06 9.15078e-06 9.1562e-06 9.16255e-06 9.17e-06 9.17855e-06 9.18783e-06 9.1978e-06 9.20875e-06 9.22081e-06 9.23425e-06 9.24941e-06 9.26676e-06 9.28689e-06 9.31066e-06 9.33852e-06 9.37272e-06 9.4175e-06 9.46873e-06 9.52038e-06 9.58336e-06 9.6672e-06 9.76032e-06 9.85496e-06 9.98505e-06 1.02967e-05 1.05094e-05 6.65779e-06 4.83425e-07 0.000106954 0.00123675 0.00248263 9.10721e-06 9.10572e-06 9.10624e-06 9.10653e-06 9.10691e-06 9.10742e-06 9.10805e-06 9.10881e-06 9.10971e-06 9.11077e-06 9.112e-06 9.11341e-06 9.11501e-06 9.11679e-06 9.11876e-06 9.12094e-06 9.12333e-06 9.12594e-06 9.12876e-06 9.13178e-06 9.13526e-06 9.13959e-06 9.14522e-06 9.15274e-06 9.16261e-06 9.17492e-06 9.18926e-06 9.20444e-06 9.21755e-06 9.22336e-06 9.21642e-06 9.19676e-06 9.17311e-06 9.15851e-06 9.15887e-06 9.16801e-06 9.17637e-06 9.18587e-06 9.20202e-06 9.20948e-06 9.18568e-06 9.171e-06 9.19039e-06 9.23034e-06 9.26031e-06 9.26605e-06 9.26299e-06 9.28123e-06 9.34335e-06 9.44898e-06 9.57261e-06 9.67314e-06 9.72137e-06 9.72566e-06 9.73183e-06 9.79948e-06 9.98764e-06 1.02973e-05 1.02455e-05 7.37601e-06 1.39508e-06 5.25034e-07 0.000300858 0.00146266 0.00241742 9.10149e-06 9.10148e-06 9.10151e-06 9.1015e-06 9.10147e-06 9.10159e-06 9.10167e-06 9.10171e-06 9.10178e-06 9.10192e-06 9.10213e-06 9.10237e-06 9.10259e-06 9.10279e-06 9.10301e-06 9.10332e-06 9.10378e-06 9.10442e-06 9.10538e-06 9.10701e-06 9.10961e-06 9.11326e-06 9.11768e-06 9.12236e-06 9.12678e-06 9.13057e-06 9.13356e-06 9.13569e-06 9.13711e-06 9.1382e-06 9.13949e-06 9.14133e-06 9.14378e-06 9.14695e-06 9.15105e-06 9.1562e-06 9.16235e-06 9.16956e-06 9.17804e-06 9.18761e-06 9.19793e-06 9.20914e-06 9.22154e-06 9.23529e-06 9.25077e-06 9.26847e-06 9.28903e-06 9.31329e-06 9.34218e-06 9.37664e-06 9.42107e-06 9.47654e-06 9.53454e-06 9.59875e-06 9.68123e-06 9.78006e-06 9.88066e-06 1.00076e-05 1.02907e-05 1.05642e-05 7.32124e-06 7.21569e-07 7.88443e-05 0.0011557 0.00252201 9.10787e-06 9.10613e-06 9.1067e-06 9.10698e-06 9.10736e-06 9.10788e-06 9.10852e-06 9.1093e-06 9.11022e-06 9.11131e-06 9.11258e-06 9.11403e-06 9.11568e-06 9.11752e-06 9.11959e-06 9.12187e-06 9.12436e-06 9.12707e-06 9.12994e-06 9.13319e-06 9.13723e-06 9.14246e-06 9.14942e-06 9.15851e-06 9.16986e-06 9.18313e-06 9.19739e-06 9.21018e-06 9.21678e-06 9.21182e-06 9.19464e-06 9.17299e-06 9.15996e-06 9.16203e-06 9.17259e-06 9.18005e-06 9.18246e-06 9.18953e-06 9.19677e-06 9.18413e-06 9.15617e-06 9.15198e-06 9.17897e-06 9.20891e-06 9.22107e-06 9.22125e-06 9.23223e-06 9.2737e-06 9.35222e-06 9.45449e-06 9.55161e-06 9.61506e-06 9.64073e-06 9.65695e-06 9.70255e-06 9.79516e-06 9.95499e-06 1.02611e-05 1.03063e-05 7.75562e-06 1.70811e-06 4.22263e-07 0.000268178 0.00140375 0.00247001 9.1015e-06 9.1015e-06 9.10155e-06 9.10156e-06 9.10152e-06 9.10147e-06 9.1016e-06 9.10167e-06 9.10172e-06 9.10182e-06 9.102e-06 9.10222e-06 9.10246e-06 9.10268e-06 9.10291e-06 9.1032e-06 9.10362e-06 9.10419e-06 9.10502e-06 9.10633e-06 9.10852e-06 9.11181e-06 9.11608e-06 9.12093e-06 9.1258e-06 9.1302e-06 9.13386e-06 9.13665e-06 9.13859e-06 9.13992e-06 9.14114e-06 9.14277e-06 9.14501e-06 9.14791e-06 9.15161e-06 9.15635e-06 9.16224e-06 9.16921e-06 9.1774e-06 9.18704e-06 9.19772e-06 9.20925e-06 9.22196e-06 9.23606e-06 9.25187e-06 9.26986e-06 9.29072e-06 9.31533e-06 9.3449e-06 9.38018e-06 9.42414e-06 9.48136e-06 9.54588e-06 9.61441e-06 9.69645e-06 9.79868e-06 9.90653e-06 1.00336e-05 1.02929e-05 1.06026e-05 7.93017e-06 1.05396e-06 5.50563e-05 0.00106898 0.00254948 9.10858e-06 9.10657e-06 9.10718e-06 9.10745e-06 9.10783e-06 9.10835e-06 9.109e-06 9.10979e-06 9.11074e-06 9.11186e-06 9.11316e-06 9.11466e-06 9.11637e-06 9.1183e-06 9.12046e-06 9.12284e-06 9.12543e-06 9.1282e-06 9.13127e-06 9.13506e-06 9.13997e-06 9.14644e-06 9.15484e-06 9.1653e-06 9.17754e-06 9.19074e-06 9.20286e-06 9.20976e-06 9.20636e-06 9.19146e-06 9.17222e-06 9.16059e-06 9.16417e-06 9.17598e-06 9.18293e-06 9.18102e-06 9.17867e-06 9.18162e-06 9.17524e-06 9.15177e-06 9.13593e-06 9.14085e-06 9.16615e-06 9.18201e-06 9.18462e-06 9.19102e-06 9.21826e-06 9.27363e-06 9.35365e-06 9.43966e-06 9.50816e-06 9.54796e-06 9.57489e-06 9.62055e-06 9.69329e-06 9.76991e-06 9.91895e-06 1.02281e-05 1.03519e-05 8.13325e-06 2.08846e-06 3.66256e-07 0.000234743 0.00133745 0.00251066 9.10151e-06 9.10152e-06 9.10159e-06 9.10162e-06 9.10161e-06 9.10155e-06 9.10148e-06 9.10161e-06 9.10168e-06 9.10176e-06 9.10189e-06 9.10209e-06 9.10233e-06 9.10256e-06 9.10281e-06 9.10309e-06 9.10348e-06 9.104e-06 9.10473e-06 9.10581e-06 9.1076e-06 9.11045e-06 9.11444e-06 9.11929e-06 9.12447e-06 9.12943e-06 9.13376e-06 9.13726e-06 9.13984e-06 9.1416e-06 9.14294e-06 9.14441e-06 9.14643e-06 9.14911e-06 9.15249e-06 9.15678e-06 9.16224e-06 9.16895e-06 9.17686e-06 9.18624e-06 9.1971e-06 9.20904e-06 9.22204e-06 9.23649e-06 9.25265e-06 9.27096e-06 9.29209e-06 9.31696e-06 9.34682e-06 9.38295e-06 9.42697e-06 9.48423e-06 9.55398e-06 9.6289e-06 9.71301e-06 9.81705e-06 9.93184e-06 1.00618e-05 1.03022e-05 1.06309e-05 8.4763e-06 1.49467e-06 3.65418e-05 0.000977361 0.00256712 9.10934e-06 9.10702e-06 9.10769e-06 9.10794e-06 9.1083e-06 9.10882e-06 9.10948e-06 9.11029e-06 9.11126e-06 9.11242e-06 9.11376e-06 9.11532e-06 9.11711e-06 9.11914e-06 9.12139e-06 9.12385e-06 9.12651e-06 9.12945e-06 9.13302e-06 9.13766e-06 9.14372e-06 9.15152e-06 9.16118e-06 9.17246e-06 9.18456e-06 9.1958e-06 9.20257e-06 9.2003e-06 9.18752e-06 9.17042e-06 9.16064e-06 9.165e-06 9.17817e-06 9.18546e-06 9.18116e-06 9.17347e-06 9.17071e-06 9.16665e-06 9.1497e-06 9.13058e-06 9.12989e-06 9.13594e-06 9.15225e-06 9.15653e-06 9.15868e-06 9.17517e-06 9.2126e-06 9.27113e-06 9.34183e-06 9.40734e-06 9.45423e-06 9.4885e-06 9.53504e-06 9.60733e-06 9.66903e-06 9.74027e-06 9.88983e-06 1.01915e-05 1.0386e-05 8.5021e-06 2.54213e-06 3.45881e-07 0.000200572 0.0012638 0.00253982 9.10152e-06 9.10153e-06 9.10161e-06 9.10167e-06 9.10169e-06 9.10166e-06 9.10158e-06 9.10149e-06 9.10163e-06 9.10172e-06 9.10182e-06 9.10199e-06 9.1022e-06 9.10244e-06 9.1027e-06 9.10299e-06 9.10335e-06 9.10383e-06 9.10449e-06 9.10541e-06 9.10686e-06 9.10925e-06 9.11284e-06 9.11751e-06 9.12285e-06 9.12827e-06 9.13324e-06 9.13746e-06 9.14076e-06 9.14312e-06 9.14478e-06 9.14623e-06 9.14804e-06 9.1505e-06 9.15365e-06 9.15757e-06 9.16253e-06 9.16879e-06 9.17641e-06 9.18545e-06 9.19614e-06 9.20837e-06 9.22175e-06 9.23652e-06 9.25305e-06 9.27171e-06 9.29313e-06 9.31823e-06 9.34826e-06 9.38486e-06 9.4294e-06 9.48616e-06 9.55896e-06 9.64115e-06 9.7299e-06 9.83615e-06 9.9562e-06 1.00917e-05 1.03176e-05 1.06533e-05 8.95039e-06 2.04663e-06 2.33581e-05 0.000882399 0.00257708 9.11015e-06 9.10748e-06 9.10821e-06 9.10844e-06 9.10879e-06 9.10931e-06 9.10998e-06 9.1108e-06 9.1118e-06 9.11299e-06 9.11439e-06 9.11602e-06 9.1179e-06 9.12002e-06 9.12235e-06 9.12489e-06 9.1277e-06 9.13109e-06 9.13548e-06 9.1412e-06 9.14847e-06 9.15742e-06 9.16782e-06 9.17887e-06 9.18906e-06 9.19542e-06 9.19387e-06 9.18295e-06 9.168e-06 9.15976e-06 9.1651e-06 9.1787e-06 9.18684e-06 9.18161e-06 9.17106e-06 9.16538e-06 9.16227e-06 9.15079e-06 9.1338e-06 9.12798e-06 9.13318e-06 9.13432e-06 9.14018e-06 9.13908e-06 9.14571e-06 9.16877e-06 9.20822e-06 9.26141e-06 9.3179e-06 9.36533e-06 9.40307e-06 9.44817e-06 9.51814e-06 9.58125e-06 9.63955e-06 9.71846e-06 9.86134e-06 1.0155e-05 1.0409e-05 8.85604e-06 3.0667e-06 3.57243e-07 0.000166015 0.00118316 0.00255919 9.10154e-06 9.10154e-06 9.10162e-06 9.10168e-06 9.10173e-06 9.10175e-06 9.10171e-06 9.10161e-06 9.10149e-06 9.10167e-06 9.10177e-06 9.10191e-06 9.1021e-06 9.10233e-06 9.10259e-06 9.10288e-06 9.10323e-06 9.10368e-06 9.10428e-06 9.1051e-06 9.10629e-06 9.10825e-06 9.11135e-06 9.11569e-06 9.121e-06 9.12673e-06 9.13228e-06 9.13721e-06 9.14127e-06 9.14435e-06 9.14653e-06 9.14817e-06 9.14986e-06 9.15209e-06 9.15503e-06 9.15869e-06 9.1632e-06 9.1689e-06 9.17608e-06 9.18477e-06 9.19506e-06 9.20725e-06 9.221e-06 9.2361e-06 9.25298e-06 9.27202e-06 9.29378e-06 9.31914e-06 9.34932e-06 9.38608e-06 9.43124e-06 9.48767e-06 9.56145e-06 9.65045e-06 9.74576e-06 9.85623e-06 9.97993e-06 1.01223e-05 1.03382e-05 1.06721e-05 9.35144e-06 2.69995e-06 1.47959e-05 0.000787013 0.00258189 9.111e-06 9.10795e-06 9.10875e-06 9.10895e-06 9.10928e-06 9.1098e-06 9.11048e-06 9.11132e-06 9.11235e-06 9.11359e-06 9.11506e-06 9.11678e-06 9.11874e-06 9.12092e-06 9.12334e-06 9.12603e-06 9.12924e-06 9.1334e-06 9.13881e-06 9.14562e-06 9.15393e-06 9.16353e-06 9.17365e-06 9.18273e-06 9.18837e-06 9.18723e-06 9.17788e-06 9.16497e-06 9.15825e-06 9.16427e-06 9.17814e-06 9.18659e-06 9.18139e-06 9.16922e-06 9.1623e-06 9.16039e-06 9.1542e-06 9.14108e-06 9.13365e-06 9.1372e-06 9.13803e-06 9.13486e-06 9.1337e-06 9.13271e-06 9.14332e-06 9.1668e-06 9.20206e-06 9.2453e-06 9.28708e-06 9.32408e-06 9.36539e-06 9.42884e-06 9.49091e-06 9.55056e-06 9.61815e-06 9.69845e-06 9.83714e-06 1.0121e-05 1.04221e-05 9.18487e-06 3.65162e-06 4.01716e-07 0.000131866 0.00109621 0.00257102 9.10155e-06 9.10155e-06 9.10163e-06 9.10168e-06 9.10174e-06 9.10179e-06 9.10181e-06 9.10176e-06 9.10164e-06 9.1015e-06 9.10171e-06 9.10185e-06 9.10201e-06 9.10222e-06 9.10248e-06 9.10278e-06 9.10312e-06 9.10354e-06 9.1041e-06 9.10485e-06 9.10587e-06 9.10745e-06 9.11003e-06 9.11392e-06 9.11901e-06 9.12487e-06 9.13089e-06 9.1365e-06 9.14133e-06 9.1452e-06 9.14806e-06 9.15011e-06 9.15185e-06 9.15388e-06 9.15659e-06 9.16005e-06 9.16426e-06 9.16943e-06 9.17598e-06 9.18419e-06 9.19409e-06 9.20586e-06 9.21973e-06 9.23522e-06 9.2524e-06 9.27181e-06 9.29392e-06 9.31957e-06 9.34994e-06 9.38676e-06 9.43233e-06 9.48882e-06 9.56234e-06 9.65629e-06 9.75945e-06 9.8764e-06 1.00038e-05 1.0153e-05 1.03632e-05 1.06887e-05 9.67556e-06 3.43414e-06 9.67387e-06 0.000695188 0.00258289 9.11189e-06 9.10844e-06 9.10931e-06 9.10947e-06 9.10978e-06 9.1103e-06 9.11099e-06 9.11186e-06 9.11293e-06 9.11423e-06 9.11577e-06 9.11757e-06 9.1196e-06 9.12186e-06 9.12443e-06 9.12748e-06 9.13142e-06 9.13651e-06 9.14293e-06 9.15065e-06 9.1595e-06 9.16875e-06 9.17686e-06 9.18155e-06 9.18045e-06 9.17238e-06 9.16137e-06 9.15614e-06 9.1626e-06 9.17649e-06 9.18499e-06 9.18008e-06 9.16733e-06 9.15952e-06 9.15907e-06 9.15674e-06 9.14853e-06 9.14185e-06 9.14382e-06 9.14646e-06 9.14135e-06 9.13822e-06 9.13481e-06 9.13617e-06 9.1474e-06 9.16702e-06 9.195e-06 9.22638e-06 9.25766e-06 9.2929e-06 9.34652e-06 9.40302e-06 9.46115e-06 9.52815e-06 9.59972e-06 9.68351e-06 9.81887e-06 1.00912e-05 1.04272e-05 9.48115e-06 4.28454e-06 4.85455e-07 9.95513e-05 0.00100442 0.00257736 9.10158e-06 9.10157e-06 9.10165e-06 9.10169e-06 9.10173e-06 9.10179e-06 9.10185e-06 9.10187e-06 9.10181e-06 9.10167e-06 9.1015e-06 9.10177e-06 9.10194e-06 9.10214e-06 9.10238e-06 9.10267e-06 9.10301e-06 9.10342e-06 9.10393e-06 9.10462e-06 9.10554e-06 9.10684e-06 9.10894e-06 9.11228e-06 9.11698e-06 9.12277e-06 9.12908e-06 9.13529e-06 9.14089e-06 9.14558e-06 9.14923e-06 9.1519e-06 9.15392e-06 9.15589e-06 9.15835e-06 9.16159e-06 9.16561e-06 9.17042e-06 9.17634e-06 9.18386e-06 9.19324e-06 9.20451e-06 9.21803e-06 9.23378e-06 9.25129e-06 9.27101e-06 9.29347e-06 9.31941e-06 9.34999e-06 9.38689e-06 9.43258e-06 9.48933e-06 9.56234e-06 9.6586e-06 9.77003e-06 9.89505e-06 1.00284e-05 1.01832e-05 1.03915e-05 1.07045e-05 9.92689e-06 4.21695e-06 6.78703e-06 0.000608642 0.00257999 9.11282e-06 9.10893e-06 9.10989e-06 9.11e-06 9.1103e-06 9.11082e-06 9.11152e-06 9.11242e-06 9.11354e-06 9.11491e-06 9.11653e-06 9.11839e-06 9.12049e-06 9.12291e-06 9.1258e-06 9.1295e-06 9.13432e-06 9.14032e-06 9.14752e-06 9.15567e-06 9.1641e-06 9.1713e-06 9.17514e-06 9.1737e-06 9.16664e-06 9.15726e-06 9.1534e-06 9.16034e-06 9.17374e-06 9.18219e-06 9.17753e-06 9.1651e-06 9.15689e-06 9.15735e-06 9.15816e-06 9.15342e-06 9.14857e-06 9.15004e-06 9.15313e-06 9.15028e-06 9.14521e-06 9.1449e-06 9.14263e-06 9.14581e-06 9.15509e-06 9.16962e-06 9.18889e-06 9.21061e-06 9.23702e-06 9.27869e-06 9.32625e-06 9.37825e-06 9.44042e-06 9.51028e-06 9.58663e-06 9.67452e-06 9.80712e-06 1.0067e-05 1.04264e-05 9.74266e-06 4.9538e-06 6.19223e-07 7.08559e-05 0.000909656 0.00257909 9.10161e-06 9.10159e-06 9.10168e-06 9.1017e-06 9.10173e-06 9.10178e-06 9.10185e-06 9.1019e-06 9.10192e-06 9.10186e-06 9.1017e-06 9.10151e-06 9.10185e-06 9.10205e-06 9.10228e-06 9.10256e-06 9.1029e-06 9.1033e-06 9.10378e-06 9.10441e-06 9.10525e-06 9.10638e-06 9.10808e-06 9.11084e-06 9.11501e-06 9.12052e-06 9.12693e-06 9.1336e-06 9.13992e-06 9.14544e-06 9.14995e-06 9.15338e-06 9.15592e-06 9.15803e-06 9.16033e-06 9.16331e-06 9.16713e-06 9.17174e-06 9.17722e-06 9.184e-06 9.19264e-06 9.20334e-06 9.21624e-06 9.23179e-06 9.24964e-06 9.26963e-06 9.29237e-06 9.31858e-06 9.34937e-06 9.38635e-06 9.43194e-06 9.4889e-06 9.56164e-06 9.65784e-06 9.77664e-06 9.91061e-06 1.00532e-05 1.0213e-05 1.04221e-05 1.07208e-05 1.01157e-05 5.00679e-06 5.30157e-06 0.000531583 0.0025738 9.11378e-06 9.10942e-06 9.11048e-06 9.11055e-06 9.11083e-06 9.11136e-06 9.11208e-06 9.11302e-06 9.1142e-06 9.11564e-06 9.11731e-06 9.11924e-06 9.12149e-06 9.12422e-06 9.12769e-06 9.13221e-06 9.13783e-06 9.14449e-06 9.15199e-06 9.15963e-06 9.16598e-06 9.16904e-06 9.16722e-06 9.1608e-06 9.15297e-06 9.15019e-06 9.1574e-06 9.17041e-06 9.17825e-06 9.17403e-06 9.16209e-06 9.15435e-06 9.15539e-06 9.15858e-06 9.15643e-06 9.15276e-06 9.15375e-06 9.15701e-06 9.15575e-06 9.1518e-06 9.15199e-06 9.15402e-06 9.15421e-06 9.15819e-06 9.1651e-06 9.17472e-06 9.18662e-06 9.20281e-06 9.23144e-06 9.26844e-06 9.31126e-06 9.36376e-06 9.42639e-06 9.49847e-06 9.57915e-06 9.67091e-06 9.80136e-06 1.00484e-05 1.04217e-05 9.96934e-06 5.64573e-06 8.18127e-07 4.75318e-05 0.000814878 0.0025768 9.10166e-06 9.10162e-06 9.10173e-06 9.10173e-06 9.10174e-06 9.10178e-06 9.10184e-06 9.1019e-06 9.10195e-06 9.10197e-06 9.10191e-06 9.10174e-06 9.10152e-06 9.10194e-06 9.10219e-06 9.10246e-06 9.10278e-06 9.10317e-06 9.10363e-06 9.10422e-06 9.105e-06 9.10601e-06 9.10743e-06 9.10966e-06 9.1132e-06 9.11824e-06 9.12452e-06 9.13146e-06 9.13839e-06 9.14474e-06 9.15015e-06 9.15445e-06 9.15769e-06 9.16017e-06 9.16249e-06 9.16525e-06 9.16882e-06 9.17325e-06 9.1785e-06 9.18473e-06 9.19252e-06 9.20242e-06 9.21469e-06 9.22955e-06 9.2473e-06 9.26761e-06 9.2906e-06 9.31706e-06 9.34801e-06 9.38503e-06 9.43047e-06 9.48732e-06 9.56004e-06 9.65482e-06 9.77874e-06 9.92183e-06 1.00766e-05 1.02424e-05 1.0454e-05 1.07384e-05 1.026e-05 5.76904e-06 4.67838e-06 0.000466242 0.00256291 9.11477e-06 9.10992e-06 9.1111e-06 9.11111e-06 9.11137e-06 9.11192e-06 9.11267e-06 9.11366e-06 9.1149e-06 9.11638e-06 9.11812e-06 9.12019e-06 9.12275e-06 9.126e-06 9.13021e-06 9.13545e-06 9.1416e-06 9.14843e-06 9.15531e-06 9.16085e-06 9.16319e-06 9.16109e-06 9.1551e-06 9.14863e-06 9.14692e-06 9.15408e-06 9.16658e-06 9.17384e-06 9.16965e-06 9.15859e-06 9.15145e-06 9.15337e-06 9.15812e-06 9.15827e-06 9.15524e-06 9.15562e-06 9.15821e-06 9.15778e-06 9.15491e-06 9.15589e-06 9.16076e-06 9.16372e-06 9.16654e-06 9.17106e-06 9.17647e-06 9.18237e-06 9.19032e-06 9.20705e-06 9.23374e-06 9.26627e-06 9.30709e-06 9.35797e-06 9.41954e-06 9.49262e-06 9.57592e-06 9.67105e-06 9.79987e-06 1.00342e-05 1.0413e-05 1.01599e-05 6.34068e-06 1.10053e-06 3.04789e-05 0.000723201 0.00257186 9.10171e-06 9.10167e-06 9.10179e-06 9.10179e-06 9.10177e-06 9.1018e-06 9.10185e-06 9.10191e-06 9.10196e-06 9.102e-06 9.10201e-06 9.10195e-06 9.10177e-06 9.10153e-06 9.10205e-06 9.10235e-06 9.10266e-06 9.10304e-06 9.10349e-06 9.10403e-06 9.10476e-06 9.10569e-06 9.10692e-06 9.10873e-06 9.11164e-06 9.11606e-06 9.12197e-06 9.12895e-06 9.13632e-06 9.14342e-06 9.14974e-06 9.15499e-06 9.15908e-06 9.16218e-06 9.16474e-06 9.16739e-06 9.17069e-06 9.1749e-06 9.18e-06 9.18595e-06 9.19306e-06 9.202e-06 9.21336e-06 9.22744e-06 9.24452e-06 9.26487e-06 9.28812e-06 9.31478e-06 9.34587e-06 9.38288e-06 9.42811e-06 9.48454e-06 9.55726e-06 9.65014e-06 9.77654e-06 9.92764e-06 1.00969e-05 1.02705e-05 1.04871e-05 1.07578e-05 1.03746e-05 6.47237e-06 4.6139e-06 0.000409788 0.00254607 9.11578e-06 9.11042e-06 9.11173e-06 9.11169e-06 9.11195e-06 9.11252e-06 9.11331e-06 9.11434e-06 9.11561e-06 9.11716e-06 9.11904e-06 9.1214e-06 9.12443e-06 9.12832e-06 9.13318e-06 9.13885e-06 9.14503e-06 9.15114e-06 9.1559e-06 9.15759e-06 9.15519e-06 9.1497e-06 9.14433e-06 9.14373e-06 9.15074e-06 9.16245e-06 9.16935e-06 9.165e-06 9.15467e-06 9.14839e-06 9.15103e-06 9.15705e-06 9.15884e-06 9.15672e-06 9.15622e-06 9.15806e-06 9.15777e-06 9.15543e-06 9.15667e-06 9.16274e-06 9.1686e-06 9.17243e-06 9.17756e-06 9.1831e-06 9.188e-06 9.19268e-06 9.20153e-06 9.21995e-06 9.24332e-06 9.27295e-06 9.31137e-06 9.35937e-06 9.41891e-06 9.49097e-06 9.57516e-06 9.67292e-06 9.80071e-06 1.00231e-05 1.03998e-05 1.03131e-05 7.01494e-06 1.48297e-06 1.91994e-05 0.000635923 0.00256199 9.10178e-06 9.10172e-06 9.10186e-06 9.10186e-06 9.10184e-06 9.10184e-06 9.10188e-06 9.10194e-06 9.10198e-06 9.10202e-06 9.10204e-06 9.10205e-06 9.10199e-06 9.1018e-06 9.10154e-06 9.10219e-06 9.10253e-06 9.10291e-06 9.10334e-06 9.10385e-06 9.10452e-06 9.10539e-06 9.1065e-06 9.10803e-06 9.11037e-06 9.11409e-06 9.11943e-06 9.12618e-06 9.13377e-06 9.14148e-06 9.14867e-06 9.15491e-06 9.15997e-06 9.16388e-06 9.16692e-06 9.16967e-06 9.17278e-06 9.1767e-06 9.18161e-06 9.18742e-06 9.19418e-06 9.20231e-06 9.21258e-06 9.22564e-06 9.24177e-06 9.26148e-06 9.28488e-06 9.31171e-06 9.3429e-06 9.37987e-06 9.42481e-06 9.48067e-06 9.55303e-06 9.64404e-06 9.77098e-06 9.92711e-06 1.01128e-05 1.02954e-05 1.05216e-05 1.07808e-05 1.04606e-05 7.09044e-06 4.91939e-06 0.000362521 0.0025287 9.11682e-06 9.11093e-06 9.11239e-06 9.1123e-06 9.11256e-06 9.11315e-06 9.11397e-06 9.11504e-06 9.11637e-06 9.11804e-06 9.12019e-06 9.123e-06 9.12659e-06 9.13105e-06 9.13623e-06 9.14179e-06 9.14716e-06 9.15115e-06 9.15224e-06 9.14958e-06 9.14447e-06 9.14023e-06 9.1406e-06 9.14754e-06 9.15818e-06 9.16461e-06 9.16072e-06 9.15065e-06 9.14521e-06 9.14842e-06 9.15534e-06 9.15833e-06 9.15694e-06 9.15596e-06 9.15689e-06 9.15667e-06 9.15491e-06 9.15597e-06 9.16201e-06 9.16887e-06 9.1739e-06 9.17943e-06 9.18654e-06 9.19337e-06 9.19911e-06 9.20557e-06 9.21887e-06 9.2358e-06 9.25693e-06 9.2848e-06 9.32028e-06 9.36547e-06 9.42188e-06 9.49168e-06 9.57552e-06 9.67545e-06 9.80303e-06 1.00146e-05 1.03834e-05 1.04295e-05 7.64246e-06 1.97244e-06 1.23747e-05 0.000558128 0.00254544 9.10186e-06 9.10179e-06 9.10196e-06 9.10195e-06 9.10192e-06 9.1019e-06 9.10193e-06 9.10198e-06 9.10203e-06 9.10206e-06 9.10208e-06 9.10209e-06 9.10209e-06 9.10203e-06 9.10184e-06 9.10155e-06 9.10234e-06 9.10275e-06 9.10318e-06 9.10367e-06 9.10429e-06 9.1051e-06 9.10612e-06 9.10746e-06 9.10938e-06 9.11241e-06 9.11703e-06 9.1233e-06 9.13083e-06 9.13894e-06 9.1469e-06 9.15412e-06 9.16023e-06 9.16511e-06 9.16887e-06 9.17197e-06 9.17505e-06 9.17872e-06 9.18334e-06 9.189e-06 9.19561e-06 9.20328e-06 9.2126e-06 9.22443e-06 9.23944e-06 9.258e-06 9.28087e-06 9.30777e-06 9.33904e-06 9.37593e-06 9.42054e-06 9.47574e-06 9.54721e-06 9.63655e-06 9.7631e-06 9.91983e-06 1.01232e-05 1.03144e-05 1.05575e-05 1.08089e-05 1.0526e-05 7.58279e-06 5.43145e-06 0.000325073 0.0025129 9.11787e-06 9.11144e-06 9.11308e-06 9.11294e-06 9.1132e-06 9.11382e-06 9.11466e-06 9.11577e-06 9.11722e-06 9.11915e-06 9.12172e-06 9.12503e-06 9.1291e-06 9.13379e-06 9.13874e-06 9.14337e-06 9.14664e-06 9.14713e-06 9.14431e-06 9.13948e-06 9.13612e-06 9.13751e-06 9.14445e-06 9.15395e-06 9.15963e-06 9.15625e-06 9.14714e-06 9.14188e-06 9.14559e-06 9.15298e-06 9.1569e-06 9.15597e-06 9.15466e-06 9.1548e-06 9.15459e-06 9.15346e-06 9.15485e-06 9.16036e-06 9.16706e-06 9.172e-06 9.1772e-06 9.18474e-06 9.19332e-06 9.20161e-06 9.2093e-06 9.22044e-06 9.23391e-06 9.24998e-06 9.27072e-06 9.29696e-06 9.33051e-06 9.37291e-06 9.4263e-06 9.49369e-06 9.57704e-06 9.67925e-06 9.80766e-06 1.00102e-05 1.03671e-05 1.05141e-05 8.20849e-06 2.56712e-06 8.50007e-06 0.000492588 0.00252979 9.10195e-06 9.10187e-06 9.10207e-06 9.10207e-06 9.10202e-06 9.10199e-06 9.10199e-06 9.10204e-06 9.10209e-06 9.10213e-06 9.10215e-06 9.10215e-06 9.10214e-06 9.10213e-06 9.10207e-06 9.10187e-06 9.10156e-06 9.10252e-06 9.10299e-06 9.10348e-06 9.10406e-06 9.10481e-06 9.10577e-06 9.10697e-06 9.10861e-06 9.11106e-06 9.1149e-06 9.12049e-06 9.12767e-06 9.1359e-06 9.14444e-06 9.15256e-06 9.15975e-06 9.16571e-06 9.17041e-06 9.17413e-06 9.17741e-06 9.18095e-06 9.18528e-06 9.19066e-06 9.19713e-06 9.20463e-06 9.21337e-06 9.22407e-06 9.23773e-06 9.25503e-06 9.27659e-06 9.303e-06 9.33418e-06 9.371e-06 9.41523e-06 9.46968e-06 9.53988e-06 9.62763e-06 9.75335e-06 9.9064e-06 1.01267e-05 1.03253e-05 1.05942e-05 1.08431e-05 1.05697e-05 7.89343e-06 5.92548e-06 0.000297646 0.00249836 9.11895e-06 9.11197e-06 9.11381e-06 9.11361e-06 9.11388e-06 9.11451e-06 9.11538e-06 9.11661e-06 9.11829e-06 9.12061e-06 9.12365e-06 9.12735e-06 9.13156e-06 9.13591e-06 9.13983e-06 9.14239e-06 9.14235e-06 9.13932e-06 9.13486e-06 9.13211e-06 9.13425e-06 9.14131e-06 9.14981e-06 9.15447e-06 9.15156e-06 9.14345e-06 9.13875e-06 9.1424e-06 9.15007e-06 9.15451e-06 9.15415e-06 9.15241e-06 9.1519e-06 9.15159e-06 9.1511e-06 9.1529e-06 9.1582e-06 9.16437e-06 9.16881e-06 9.17299e-06 9.17973e-06 9.18858e-06 9.19812e-06 9.20771e-06 9.21813e-06 9.23019e-06 9.24385e-06 9.26062e-06 9.28127e-06 9.3072e-06 9.33956e-06 9.37996e-06 9.43145e-06 9.49729e-06 9.58099e-06 9.6861e-06 9.81631e-06 1.00119e-05 1.03547e-05 1.05745e-05 8.70269e-06 3.251e-06 6.49267e-06 0.00043545 0.00251548 9.10206e-06 9.10196e-06 9.1022e-06 9.1022e-06 9.10214e-06 9.10209e-06 9.10207e-06 9.1021e-06 9.10215e-06 9.1022e-06 9.10223e-06 9.10224e-06 9.10222e-06 9.10219e-06 9.10217e-06 9.10211e-06 9.1019e-06 9.10157e-06 9.10271e-06 9.10326e-06 9.10382e-06 9.10452e-06 9.10543e-06 9.10654e-06 9.10797e-06 9.11001e-06 9.11312e-06 9.11789e-06 9.12446e-06 9.13251e-06 9.14136e-06 9.15023e-06 9.15845e-06 9.16556e-06 9.17136e-06 9.17594e-06 9.17971e-06 9.18332e-06 9.18743e-06 9.1925e-06 9.19872e-06 9.20608e-06 9.21459e-06 9.22457e-06 9.23691e-06 9.25267e-06 9.27268e-06 9.29775e-06 9.3284e-06 9.36493e-06 9.40882e-06 9.46245e-06 9.53118e-06 9.6172e-06 9.74148e-06 9.88846e-06 1.01221e-05 1.03271e-05 1.06295e-05 1.08816e-05 1.05857e-05 7.963e-06 6.14622e-06 0.000280171 0.00248516 9.12004e-06 9.11252e-06 9.11458e-06 9.11431e-06 9.11457e-06 9.11524e-06 9.11621e-06 9.11765e-06 9.11969e-06 9.12244e-06 9.12584e-06 9.12956e-06 9.13332e-06 9.13656e-06 9.13845e-06 9.13798e-06 9.13471e-06 9.13048e-06 9.12837e-06 9.13096e-06 9.13804e-06 9.14576e-06 9.14934e-06 9.14658e-06 9.13978e-06 9.13554e-06 9.13886e-06 9.14657e-06 9.15141e-06 9.15144e-06 9.14968e-06 9.14851e-06 9.14801e-06 9.148e-06 9.15021e-06 9.15525e-06 9.16078e-06 9.16478e-06 9.16817e-06 9.17381e-06 9.18197e-06 9.19123e-06 9.20116e-06 9.21105e-06 9.22245e-06 9.235e-06 9.24969e-06 9.26726e-06 9.28894e-06 9.31532e-06 9.34735e-06 9.38705e-06 9.43815e-06 9.5036e-06 9.58881e-06 9.69746e-06 9.83016e-06 1.0021e-05 1.03493e-05 1.06183e-05 9.12177e-06 4.00107e-06 5.61436e-06 0.00038766 0.00250239 9.10219e-06 9.10207e-06 9.10236e-06 9.10236e-06 9.10229e-06 9.10221e-06 9.10217e-06 9.10218e-06 9.10222e-06 9.10228e-06 9.10232e-06 9.10234e-06 9.10233e-06 9.10229e-06 9.10225e-06 9.10221e-06 9.10214e-06 9.10193e-06 9.10159e-06 9.10294e-06 9.10356e-06 9.10423e-06 9.10508e-06 9.10613e-06 9.10742e-06 9.10916e-06 9.1117e-06 9.11562e-06 9.12139e-06 9.12895e-06 9.13779e-06 9.14716e-06 9.15628e-06 9.16453e-06 9.17153e-06 9.17719e-06 9.18173e-06 9.18569e-06 9.18976e-06 9.19456e-06 9.20045e-06 9.20756e-06 9.21592e-06 9.2256e-06 9.23704e-06 9.25129e-06 9.26954e-06 9.29278e-06 9.32198e-06 9.35781e-06 9.40114e-06 9.45396e-06 9.52113e-06 9.60522e-06 9.72703e-06 9.86759e-06 1.01085e-05 1.03202e-05 1.066e-05 1.09184e-05 1.05634e-05 7.75546e-06 5.90958e-06 0.000272339 0.00247399 9.12114e-06 9.1131e-06 9.11539e-06 9.11503e-06 9.11531e-06 9.11607e-06 9.11724e-06 9.11899e-06 9.12143e-06 9.12452e-06 9.12788e-06 9.13102e-06 9.13357e-06 9.13482e-06 9.13395e-06 9.13074e-06 9.12648e-06 9.12481e-06 9.1278e-06 9.13483e-06 9.14188e-06 9.14457e-06 9.14155e-06 9.13591e-06 9.13264e-06 9.13544e-06 9.14238e-06 9.14769e-06 9.14818e-06 9.14644e-06 9.14503e-06 9.14437e-06 9.14469e-06 9.14719e-06 9.15186e-06 9.15661e-06 9.15982e-06 9.16284e-06 9.1678e-06 9.17528e-06 9.1839e-06 9.19296e-06 9.20162e-06 9.21227e-06 9.22407e-06 9.23755e-06 9.25324e-06 9.27236e-06 9.29545e-06 9.32274e-06 9.35527e-06 9.39571e-06 9.44752e-06 9.51343e-06 9.60107e-06 9.71342e-06 9.84897e-06 1.0037e-05 1.03516e-05 1.0651e-05 9.46556e-06 4.77936e-06 5.44041e-06 0.000350248 0.0024909 9.10233e-06 9.1022e-06 9.10253e-06 9.10255e-06 9.10246e-06 9.10235e-06 9.10228e-06 9.10226e-06 9.10229e-06 9.10234e-06 9.1024e-06 9.10244e-06 9.10245e-06 9.10243e-06 9.10238e-06 9.10231e-06 9.10225e-06 9.10218e-06 9.10196e-06 9.1016e-06 9.10318e-06 9.10391e-06 9.10473e-06 9.10573e-06 9.10692e-06 9.10845e-06 9.11058e-06 9.11375e-06 9.11861e-06 9.12543e-06 9.13394e-06 9.14349e-06 9.15328e-06 9.16257e-06 9.1708e-06 9.17768e-06 9.18324e-06 9.18786e-06 9.19215e-06 9.19682e-06 9.2024e-06 9.20918e-06 9.21728e-06 9.22677e-06 9.23778e-06 9.25096e-06 9.26748e-06 9.28869e-06 9.31576e-06 9.35001e-06 9.39229e-06 9.44418e-06 9.50967e-06 9.59209e-06 9.70983e-06 9.84619e-06 1.00859e-05 1.0305e-05 1.06812e-05 1.09436e-05 1.04834e-05 7.27891e-06 5.19464e-06 0.000273439 0.00246645 9.12227e-06 9.11369e-06 9.11621e-06 9.11578e-06 9.11614e-06 9.11709e-06 9.11854e-06 9.12065e-06 9.1234e-06 9.12646e-06 9.1291e-06 9.13092e-06 9.1315e-06 9.13027e-06 9.1271e-06 9.12334e-06 9.12157e-06 9.12478e-06 9.13165e-06 9.13832e-06 9.14039e-06 9.13711e-06 9.13193e-06 9.1297e-06 9.13251e-06 9.13857e-06 9.14339e-06 9.14454e-06 9.14303e-06 9.14157e-06 9.14087e-06 9.14155e-06 9.14428e-06 9.14856e-06 9.15246e-06 9.1548e-06 9.15712e-06 9.16182e-06 9.16891e-06 9.17719e-06 9.18552e-06 9.19282e-06 9.20216e-06 9.21285e-06 9.22526e-06 9.2396e-06 9.25675e-06 9.27751e-06 9.30196e-06 9.33035e-06 9.3642e-06 9.40645e-06 9.45935e-06 9.5264e-06 9.61702e-06 9.73275e-06 9.87134e-06 1.00583e-05 1.03609e-05 1.06766e-05 9.73855e-06 5.54414e-06 5.68057e-06 0.000323731 0.00248171 9.1025e-06 9.10234e-06 9.10273e-06 9.10276e-06 9.10266e-06 9.10253e-06 9.10242e-06 9.10236e-06 9.10236e-06 9.1024e-06 9.10246e-06 9.10251e-06 9.10255e-06 9.10257e-06 9.10254e-06 9.10247e-06 9.10237e-06 9.1023e-06 9.10221e-06 9.10199e-06 9.10161e-06 9.10346e-06 9.10434e-06 9.10531e-06 9.10646e-06 9.10783e-06 9.10968e-06 9.11228e-06 9.11623e-06 9.12212e-06 9.12999e-06 9.13938e-06 9.14955e-06 9.15969e-06 9.16908e-06 9.17724e-06 9.18402e-06 9.18958e-06 9.1944e-06 9.19917e-06 9.20456e-06 9.21101e-06 9.21876e-06 9.22796e-06 9.23872e-06 9.25133e-06 9.26657e-06 9.28578e-06 9.3106e-06 9.34237e-06 9.38276e-06 9.43335e-06 9.49697e-06 9.57799e-06 9.69013e-06 9.82527e-06 1.00553e-05 1.0282e-05 1.06882e-05 1.09455e-05 1.03223e-05 6.59154e-06 4.25403e-06 0.000283863 0.00246453 9.12339e-06 9.1143e-06 9.11708e-06 9.11662e-06 9.11716e-06 9.11837e-06 9.12014e-06 9.12252e-06 9.12524e-06 9.12757e-06 9.1287e-06 9.12858e-06 9.12693e-06 9.12382e-06 9.12045e-06 9.11923e-06 9.12199e-06 9.12861e-06 9.13483e-06 9.13674e-06 9.13351e-06 9.12852e-06 9.12668e-06 9.12962e-06 9.13518e-06 9.13961e-06 9.14075e-06 9.13961e-06 9.13821e-06 9.13775e-06 9.13857e-06 9.14153e-06 9.14548e-06 9.14864e-06 9.15026e-06 9.15199e-06 9.15616e-06 9.16301e-06 9.17104e-06 9.17905e-06 9.18558e-06 9.19367e-06 9.20285e-06 9.21363e-06 9.2263e-06 9.24152e-06 9.25996e-06 9.28193e-06 9.30738e-06 9.33706e-06 9.37296e-06 9.41741e-06 9.47149e-06 9.54079e-06 9.63501e-06 9.7537e-06 9.89567e-06 1.00831e-05 1.03757e-05 1.06971e-05 9.95034e-06 6.24539e-06 6.09862e-06 0.000308078 0.00247602 9.1027e-06 9.10251e-06 9.10296e-06 9.103e-06 9.1029e-06 9.10274e-06 9.10259e-06 9.10249e-06 9.10245e-06 9.10246e-06 9.10252e-06 9.10258e-06 9.10263e-06 9.10267e-06 9.10268e-06 9.10264e-06 9.10256e-06 9.10244e-06 9.10234e-06 9.10224e-06 9.10202e-06 9.10163e-06 9.1038e-06 9.10484e-06 9.10598e-06 9.10727e-06 9.10892e-06 9.11115e-06 9.11434e-06 9.11919e-06 9.12616e-06 9.13506e-06 9.14526e-06 9.15596e-06 9.16635e-06 9.17578e-06 9.18388e-06 9.1906e-06 9.19626e-06 9.20143e-06 9.20682e-06 9.21305e-06 9.22046e-06 9.22927e-06 9.2397e-06 9.25196e-06 9.26646e-06 9.28414e-06 9.30664e-06 9.33582e-06 9.37341e-06 9.42183e-06 9.48332e-06 9.56249e-06 9.66843e-06 9.80213e-06 1.00188e-05 1.02509e-05 1.06761e-05 1.09144e-05 1.00596e-05 5.78712e-06 3.46808e-06 0.000305494 0.00246963 9.12451e-06 9.11493e-06 9.11803e-06 9.11763e-06 9.11842e-06 9.11992e-06 9.12191e-06 9.12428e-06 9.12631e-06 9.12704e-06 9.12611e-06 9.12399e-06 9.12092e-06 9.11792e-06 9.11706e-06 9.11997e-06 9.12574e-06 9.13146e-06 9.13321e-06 9.13034e-06 9.12595e-06 9.12395e-06 9.12672e-06 9.13179e-06 9.13597e-06 9.13738e-06 9.13648e-06 9.13512e-06 9.13476e-06 9.13596e-06 9.13876e-06 9.14242e-06 9.14493e-06 9.14606e-06 9.14761e-06 9.15136e-06 9.15776e-06 9.16541e-06 9.17304e-06 9.17907e-06 9.18634e-06 9.19421e-06 9.20318e-06 9.21359e-06 9.22607e-06 9.24151e-06 9.26049e-06 9.283e-06 9.3092e-06 9.34043e-06 9.37867e-06 9.42509e-06 9.48094e-06 9.55432e-06 9.65297e-06 9.77475e-06 9.92069e-06 1.01101e-05 1.0395e-05 1.07144e-05 1.01109e-05 6.8318e-06 6.44976e-06 0.000302193 0.00247595 9.10294e-06 9.10271e-06 9.1032e-06 9.10327e-06 9.10317e-06 9.10299e-06 9.10281e-06 9.10265e-06 9.10256e-06 9.10254e-06 9.10257e-06 9.10262e-06 9.10269e-06 9.10274e-06 9.10278e-06 9.10279e-06 9.10275e-06 9.10266e-06 9.10252e-06 9.1024e-06 9.10228e-06 9.10205e-06 9.10164e-06 9.10421e-06 9.10543e-06 9.10673e-06 9.10824e-06 9.11023e-06 9.11291e-06 9.1168e-06 9.12266e-06 9.13074e-06 9.14062e-06 9.15155e-06 9.16269e-06 9.17325e-06 9.18268e-06 9.19071e-06 9.19747e-06 9.20336e-06 9.20903e-06 9.21519e-06 9.22235e-06 9.2308e-06 9.2408e-06 9.25264e-06 9.26666e-06 9.28341e-06 9.30408e-06 9.33054e-06 9.36513e-06 9.4103e-06 9.46887e-06 9.5456e-06 9.64527e-06 9.77664e-06 9.97878e-06 1.02121e-05 1.06406e-05 1.08492e-05 9.70043e-06 4.99798e-06 3.23898e-06 0.000343493 0.00248093 9.12561e-06 9.11564e-06 9.11916e-06 9.11887e-06 9.11992e-06 9.12162e-06 9.12359e-06 9.12531e-06 9.12575e-06 9.12427e-06 9.12149e-06 9.11838e-06 9.11582e-06 9.11527e-06 9.11811e-06 9.12349e-06 9.12826e-06 9.12975e-06 9.12726e-06 9.12343e-06 9.12191e-06 9.12382e-06 9.12842e-06 9.13224e-06 9.13386e-06 9.13345e-06 9.13241e-06 9.13203e-06 9.13335e-06 9.13608e-06 9.13912e-06 9.14107e-06 9.14179e-06 9.1433e-06 9.14725e-06 9.15317e-06 9.1602e-06 9.16723e-06 9.17252e-06 9.17899e-06 9.18582e-06 9.1933e-06 9.20165e-06 9.21131e-06 9.22304e-06 9.2379e-06 9.25655e-06 9.27907e-06 9.30604e-06 9.33885e-06 9.37897e-06 9.42691e-06 9.48594e-06 9.56533e-06 9.66907e-06 9.7947e-06 9.94544e-06 1.01383e-05 1.04178e-05 1.07299e-05 1.02243e-05 7.25036e-06 6.52882e-06 0.000305176 0.00248261 9.10322e-06 9.10295e-06 9.10348e-06 9.10357e-06 9.10347e-06 9.10328e-06 9.10306e-06 9.10286e-06 9.10271e-06 9.10263e-06 9.10263e-06 9.10267e-06 9.10273e-06 9.10279e-06 9.10285e-06 9.10289e-06 9.1029e-06 9.10286e-06 9.10276e-06 9.1026e-06 9.10245e-06 9.10232e-06 9.10208e-06 9.10166e-06 9.10469e-06 9.1061e-06 9.10758e-06 9.10941e-06 9.11175e-06 9.115e-06 9.11971e-06 9.12666e-06 9.13585e-06 9.14664e-06 9.15821e-06 9.16969e-06 9.18036e-06 9.18976e-06 9.1978e-06 9.20469e-06 9.21096e-06 9.2173e-06 9.22435e-06 9.23253e-06 9.24212e-06 9.25344e-06 9.26693e-06 9.28303e-06 9.30252e-06 9.3268e-06 9.35815e-06 9.39963e-06 9.45422e-06 9.52746e-06 9.62162e-06 9.74885e-06 9.9383e-06 1.01675e-05 1.05804e-05 1.07625e-05 9.29728e-06 4.38471e-06 4.09639e-06 0.000400713 0.00249173 9.12677e-06 9.1165e-06 9.1205e-06 9.12032e-06 9.12155e-06 9.12323e-06 9.12461e-06 9.12478e-06 9.12295e-06 9.11955e-06 9.11615e-06 9.11398e-06 9.1139e-06 9.11662e-06 9.12149e-06 9.12567e-06 9.12648e-06 9.12421e-06 9.12094e-06 9.11969e-06 9.1215e-06 9.12502e-06 9.12856e-06 9.13027e-06 9.13027e-06 9.12955e-06 9.12947e-06 9.13081e-06 9.13331e-06 9.13566e-06 9.13691e-06 9.1374e-06 9.13889e-06 9.14284e-06 9.14875e-06 9.15507e-06 9.16136e-06 9.16583e-06 9.17132e-06 9.17711e-06 9.18334e-06 9.19013e-06 9.19774e-06 9.20658e-06 9.2175e-06 9.23149e-06 9.24939e-06 9.27178e-06 9.2995e-06 9.3333e-06 9.37424e-06 9.42365e-06 9.4874e-06 9.57358e-06 9.68233e-06 9.81266e-06 9.96893e-06 1.01668e-05 1.04431e-05 1.07446e-05 1.0297e-05 7.45085e-06 6.22456e-06 0.000317751 0.002494 9.10356e-06 9.10324e-06 9.10382e-06 9.10392e-06 9.1038e-06 9.1036e-06 9.10335e-06 9.10311e-06 9.1029e-06 9.10277e-06 9.10271e-06 9.10271e-06 9.10276e-06 9.10282e-06 9.10289e-06 9.10295e-06 9.103e-06 9.10301e-06 9.10297e-06 9.10286e-06 9.10269e-06 9.10251e-06 9.10235e-06 9.10211e-06 9.10167e-06 9.10525e-06 9.10687e-06 9.10863e-06 9.1108e-06 9.11355e-06 9.11744e-06 9.12309e-06 9.1312e-06 9.14147e-06 9.15311e-06 9.16522e-06 9.17696e-06 9.18768e-06 9.19707e-06 9.20517e-06 9.21234e-06 9.21915e-06 9.2263e-06 9.23435e-06 9.24366e-06 9.2545e-06 9.26734e-06 9.28275e-06 9.30137e-06 9.32419e-06 9.35288e-06 9.39041e-06 9.44047e-06 9.5087e-06 9.598e-06 9.71959e-06 9.90019e-06 1.01204e-05 1.05001e-05 1.06768e-05 8.94175e-06 4.08923e-06 7.30709e-06 0.000471636 0.0024867 9.12801e-06 9.11759e-06 9.12205e-06 9.12187e-06 9.12309e-06 9.12424e-06 9.12414e-06 9.12204e-06 9.1182e-06 9.11436e-06 9.11226e-06 9.11268e-06 9.11548e-06 9.11978e-06 9.12341e-06 9.12392e-06 9.12138e-06 9.11856e-06 9.11747e-06 9.11918e-06 9.12213e-06 9.12505e-06 9.12678e-06 9.12718e-06 9.12677e-06 9.12673e-06 9.12813e-06 9.13043e-06 9.13219e-06 9.13268e-06 9.13301e-06 9.1346e-06 9.13839e-06 9.14384e-06 9.14958e-06 9.15507e-06 9.15891e-06 9.16362e-06 9.16855e-06 9.17375e-06 9.17937e-06 9.18564e-06 9.19281e-06 9.20133e-06 9.21204e-06 9.22565e-06 9.24302e-06 9.26532e-06 9.29329e-06 9.32703e-06 9.3679e-06 9.41925e-06 9.48836e-06 9.58022e-06 9.69293e-06 9.82819e-06 9.99025e-06 1.01942e-05 1.04696e-05 1.07593e-05 1.033e-05 7.40714e-06 5.57398e-06 0.000343191 0.00250093 9.10393e-06 9.10357e-06 9.10423e-06 9.10434e-06 9.10421e-06 9.10397e-06 9.10369e-06 9.1034e-06 9.10315e-06 9.10295e-06 9.10283e-06 9.10279e-06 9.1028e-06 9.10285e-06 9.10292e-06 9.10299e-06 9.10306e-06 9.1031e-06 9.10312e-06 9.10308e-06 9.10297e-06 9.10278e-06 9.10258e-06 9.1024e-06 9.10214e-06 9.10169e-06 9.10587e-06 9.1078e-06 9.1099e-06 9.11239e-06 9.11567e-06 9.12031e-06 9.12702e-06 9.1363e-06 9.14759e-06 9.15998e-06 9.17253e-06 9.18445e-06 9.1952e-06 9.20463e-06 9.2129e-06 9.22049e-06 9.22801e-06 9.23612e-06 9.24529e-06 9.25581e-06 9.26806e-06 9.28266e-06 9.30035e-06 9.32203e-06 9.34889e-06 9.38316e-06 9.42833e-06 9.49055e-06 9.57402e-06 9.68889e-06 9.86165e-06 1.00732e-05 1.04131e-05 1.06134e-05 8.71967e-06 4.19438e-06 1.5371e-05 0.000538362 0.00244424 9.1294e-06 9.11895e-06 9.12367e-06 9.1233e-06 9.1241e-06 9.12388e-06 9.12151e-06 9.11734e-06 9.11308e-06 9.11085e-06 9.11146e-06 9.11445e-06 9.11832e-06 9.12131e-06 9.12165e-06 9.11925e-06 9.11648e-06 9.11567e-06 9.11694e-06 9.11968e-06 9.12188e-06 9.12365e-06 9.12424e-06 9.12424e-06 9.12432e-06 9.12544e-06 9.12736e-06 9.12873e-06 9.12881e-06 9.12892e-06 9.1307e-06 9.13429e-06 9.13907e-06 9.14411e-06 9.14873e-06 9.15213e-06 9.15616e-06 9.16056e-06 9.16527e-06 9.17021e-06 9.17569e-06 9.18196e-06 9.18934e-06 9.19833e-06 9.20966e-06 9.22366e-06 9.241e-06 9.26313e-06 9.29049e-06 9.32334e-06 9.36415e-06 9.41808e-06 9.49167e-06 9.5867e-06 9.70171e-06 9.84128e-06 1.00087e-05 1.0219e-05 1.04955e-05 1.07735e-05 1.03231e-05 7.12461e-06 4.90475e-06 0.000386414 0.00248763 9.10443e-06 9.10395e-06 9.10471e-06 9.10485e-06 9.10469e-06 9.10441e-06 9.10409e-06 9.10376e-06 9.10345e-06 9.10319e-06 9.10301e-06 9.1029e-06 9.10286e-06 9.10288e-06 9.10294e-06 9.10301e-06 9.10309e-06 9.10316e-06 9.1032e-06 9.10322e-06 9.10319e-06 9.10307e-06 9.10288e-06 9.10265e-06 9.10244e-06 9.10217e-06 9.1017e-06 9.10662e-06 9.10893e-06 9.11137e-06 9.11424e-06 9.11813e-06 9.12365e-06 9.1315e-06 9.14194e-06 9.15419e-06 9.16723e-06 9.18014e-06 9.19217e-06 9.20296e-06 9.21248e-06 9.22106e-06 9.22923e-06 9.23762e-06 9.24683e-06 9.25722e-06 9.26909e-06 9.28295e-06 9.2996e-06 9.32006e-06 9.34543e-06 9.37734e-06 9.41843e-06 9.47435e-06 9.55046e-06 9.65723e-06 9.82116e-06 1.00259e-05 1.0338e-05 1.05821e-05 8.67101e-06 4.71628e-06 2.98404e-05 0.000578469 0.00234687 9.13095e-06 9.12048e-06 9.12517e-06 9.12424e-06 9.12386e-06 9.12145e-06 9.11691e-06 9.11224e-06 9.10973e-06 9.11044e-06 9.11348e-06 9.11705e-06 9.11941e-06 9.11944e-06 9.11732e-06 9.11484e-06 9.11423e-06 9.11546e-06 9.11743e-06 9.1195e-06 9.12066e-06 9.12161e-06 9.12189e-06 9.12221e-06 9.1231e-06 9.12451e-06 9.12537e-06 9.1253e-06 9.12546e-06 9.12732e-06 9.13079e-06 9.13493e-06 9.13927e-06 9.14314e-06 9.14618e-06 9.14971e-06 9.15359e-06 9.15793e-06 9.16274e-06 9.16796e-06 9.17383e-06 9.18066e-06 9.18883e-06 9.19882e-06 9.21112e-06 9.22587e-06 9.24349e-06 9.26526e-06 9.29149e-06 9.32365e-06 9.36526e-06 9.42188e-06 9.49786e-06 9.59336e-06 9.70919e-06 9.852e-06 1.00238e-05 1.02398e-05 1.0519e-05 1.07866e-05 1.0276e-05 6.66499e-06 4.70379e-06 0.000447504 0.00243349 9.10506e-06 9.10445e-06 9.10527e-06 9.10544e-06 9.10526e-06 9.10494e-06 9.10457e-06 9.10419e-06 9.10382e-06 9.10349e-06 9.10324e-06 9.10307e-06 9.10297e-06 9.10294e-06 9.10296e-06 9.10302e-06 9.1031e-06 9.10319e-06 9.10326e-06 9.10331e-06 9.10332e-06 9.10329e-06 9.10318e-06 9.10298e-06 9.10273e-06 9.10249e-06 9.1022e-06 9.10172e-06 9.10757e-06 9.11028e-06 9.11305e-06 9.11639e-06 9.12097e-06 9.12748e-06 9.13655e-06 9.14812e-06 9.16124e-06 9.17483e-06 9.188e-06 9.20012e-06 9.21097e-06 9.22069e-06 9.22972e-06 9.23864e-06 9.24808e-06 9.25853e-06 9.27025e-06 9.28362e-06 9.29933e-06 9.31845e-06 9.34225e-06 9.37218e-06 9.4102e-06 9.46066e-06 9.52895e-06 9.62593e-06 9.77829e-06 9.97537e-06 1.02802e-05 1.05772e-05 8.78384e-06 5.58263e-06 4.70667e-05 0.000585911 0.00219582 9.1327e-06 9.12201e-06 9.12621e-06 9.12408e-06 9.12164e-06 9.11698e-06 9.11178e-06 9.10892e-06 9.10951e-06 9.11263e-06 9.11608e-06 9.11782e-06 9.1175e-06 9.11545e-06 9.11331e-06 9.11279e-06 9.11427e-06 9.11602e-06 9.11737e-06 9.11841e-06 9.11905e-06 9.11963e-06 9.12021e-06 9.12098e-06 9.12194e-06 9.12247e-06 9.12229e-06 9.12257e-06 9.12448e-06 9.12784e-06 9.13152e-06 9.13521e-06 9.13863e-06 9.1414e-06 9.14461e-06 9.14818e-06 9.15208e-06 9.15647e-06 9.1616e-06 9.16734e-06 9.17386e-06 9.18148e-06 9.19056e-06 9.20145e-06 9.21444e-06 9.2297e-06 9.24764e-06 9.26904e-06 9.29461e-06 9.32722e-06 9.37061e-06 9.42917e-06 9.50527e-06 9.59947e-06 9.71518e-06 9.86025e-06 1.00355e-05 1.0256e-05 1.05392e-05 1.07965e-05 1.01843e-05 6.13074e-06 5.63367e-06 0.000516409 0.00232364 9.10582e-06 9.10508e-06 9.1059e-06 9.10611e-06 9.10591e-06 9.10555e-06 9.10514e-06 9.1047e-06 9.10427e-06 9.10387e-06 9.10354e-06 9.1033e-06 9.10313e-06 9.10304e-06 9.10301e-06 9.10304e-06 9.10311e-06 9.10319e-06 9.10328e-06 9.10336e-06 9.10341e-06 9.10343e-06 9.1034e-06 9.10329e-06 9.10308e-06 9.10281e-06 9.10254e-06 9.10223e-06 9.10173e-06 9.10872e-06 9.11184e-06 9.11496e-06 9.1189e-06 9.12425e-06 9.13184e-06 9.14215e-06 9.15482e-06 9.16872e-06 9.18276e-06 9.19612e-06 9.2083e-06 9.21927e-06 9.22932e-06 9.23897e-06 9.24883e-06 9.25948e-06 9.27128e-06 9.28447e-06 9.29955e-06 9.31745e-06 9.33954e-06 9.36743e-06 9.40287e-06 9.44912e-06 9.5103e-06 9.59668e-06 9.73511e-06 9.9197e-06 1.0228e-05 1.05804e-05 9.01611e-06 6.60586e-06 6.06722e-05 0.000563979 0.00198943 9.13459e-06 9.12321e-06 9.12625e-06 9.12209e-06 9.11732e-06 9.11178e-06 9.1083e-06 9.10868e-06 9.11176e-06 9.11519e-06 9.11682e-06 9.11593e-06 9.11396e-06 9.11202e-06 9.11149e-06 9.1128e-06 9.11471e-06 9.11577e-06 9.11637e-06 9.11689e-06 9.11756e-06 9.11816e-06 9.119e-06 9.11959e-06 9.11989e-06 9.11984e-06 9.12033e-06 9.12214e-06 9.12528e-06 9.12861e-06 9.13177e-06 9.13486e-06 9.13752e-06 9.14049e-06 9.14393e-06 9.14758e-06 9.15156e-06 9.15608e-06 9.16138e-06 9.16752e-06 9.17457e-06 9.18278e-06 9.1924e-06 9.20362e-06 9.21675e-06 9.23214e-06 9.25037e-06 9.27188e-06 9.2981e-06 9.33249e-06 9.37802e-06 9.43736e-06 9.51214e-06 9.60457e-06 9.71973e-06 9.86621e-06 1.00441e-05 1.02674e-05 1.05561e-05 1.08e-05 1.00445e-05 5.64146e-06 8.98041e-06 0.000573583 0.00215993 9.10669e-06 9.10584e-06 9.10666e-06 9.10686e-06 9.10664e-06 9.10625e-06 9.10578e-06 9.10529e-06 9.1048e-06 9.10433e-06 9.10392e-06 9.1036e-06 9.10336e-06 9.1032e-06 9.10311e-06 9.10308e-06 9.10312e-06 9.10319e-06 9.10328e-06 9.10338e-06 9.10346e-06 9.10351e-06 9.10353e-06 9.10351e-06 9.1034e-06 9.10319e-06 9.1029e-06 9.1026e-06 9.10226e-06 9.10175e-06 9.11008e-06 9.11359e-06 9.11717e-06 9.12175e-06 9.12803e-06 9.13674e-06 9.14834e-06 9.16203e-06 9.17659e-06 9.19099e-06 9.20447e-06 9.21675e-06 9.22793e-06 9.23845e-06 9.24889e-06 9.25988e-06 9.2719e-06 9.28519e-06 9.30001e-06 9.31707e-06 9.3376e-06 9.36331e-06 9.39616e-06 9.43892e-06 9.49449e-06 9.57081e-06 9.69407e-06 9.85959e-06 1.01687e-05 1.05697e-05 9.32147e-06 7.53229e-06 6.72423e-05 0.000521373 0.00173867 9.13631e-06 9.12354e-06 9.12457e-06 9.11795e-06 9.11199e-06 9.10796e-06 9.10783e-06 9.11088e-06 9.11427e-06 9.1159e-06 9.11504e-06 9.1128e-06 9.11112e-06 9.11067e-06 9.11151e-06 9.11318e-06 9.11422e-06 9.11441e-06 9.11482e-06 9.11551e-06 9.11641e-06 9.11702e-06 9.11754e-06 9.11764e-06 9.11776e-06 9.11846e-06 9.12033e-06 9.12306e-06 9.12593e-06 9.12874e-06 9.13146e-06 9.13402e-06 9.13679e-06 9.14007e-06 9.14356e-06 9.14726e-06 9.15133e-06 9.15588e-06 9.16108e-06 9.16732e-06 9.17457e-06 9.18295e-06 9.19258e-06 9.20361e-06 9.21663e-06 9.23209e-06 9.25077e-06 9.2732e-06 9.30137e-06 9.33817e-06 9.38551e-06 9.4449e-06 9.51831e-06 9.6095e-06 9.72397e-06 9.8709e-06 1.00507e-05 1.02746e-05 1.05706e-05 1.07928e-05 9.85161e-06 5.3012e-06 1.70532e-05 0.000600273 0.00194244 9.10766e-06 9.10671e-06 9.10761e-06 9.1078e-06 9.10748e-06 9.10702e-06 9.10651e-06 9.10597e-06 9.10542e-06 9.10488e-06 9.10439e-06 9.10398e-06 9.10365e-06 9.10343e-06 9.10327e-06 9.10318e-06 9.10315e-06 9.10319e-06 9.10327e-06 9.10337e-06 9.10347e-06 9.10355e-06 9.10361e-06 9.10363e-06 9.10361e-06 9.10351e-06 9.1033e-06 9.10299e-06 9.10266e-06 9.1023e-06 9.10176e-06 9.11165e-06 9.11555e-06 9.11971e-06 9.125e-06 9.13233e-06 9.14229e-06 9.15512e-06 9.16972e-06 9.18484e-06 9.19949e-06 9.21308e-06 9.22548e-06 9.23698e-06 9.24813e-06 9.25958e-06 9.2719e-06 9.28544e-06 9.30036e-06 9.31704e-06 9.33644e-06 9.36016e-06 9.39029e-06 9.42966e-06 9.48073e-06 9.54862e-06 9.65741e-06 9.79841e-06 1.00988e-05 1.05274e-05 9.66051e-06 8.1837e-06 6.67245e-05 0.000467622 0.00146716 9.13762e-06 9.12224e-06 9.12074e-06 9.11243e-06 9.10769e-06 9.10704e-06 9.10984e-06 9.11335e-06 9.11498e-06 9.11427e-06 9.11213e-06 9.11043e-06 9.1101e-06 9.11086e-06 9.11184e-06 9.11271e-06 9.11275e-06 9.11263e-06 9.11345e-06 9.11451e-06 9.11533e-06 9.11568e-06 9.1158e-06 9.11607e-06 9.11693e-06 9.11873e-06 9.12115e-06 9.12355e-06 9.12593e-06 9.12829e-06 9.1306e-06 9.13315e-06 9.13618e-06 9.13937e-06 9.14277e-06 9.14645e-06 9.15046e-06 9.1549e-06 9.15987e-06 9.16599e-06 9.17318e-06 9.18142e-06 9.19078e-06 9.20154e-06 9.21463e-06 9.23042e-06 9.24986e-06 9.27386e-06 9.30437e-06 9.34328e-06 9.39185e-06 9.45139e-06 9.52435e-06 9.6153e-06 9.72916e-06 9.87549e-06 1.00566e-05 1.02777e-05 1.0583e-05 1.07689e-05 9.60432e-06 5.188e-06 3.13936e-05 0.000594439 0.00168473 9.10877e-06 9.1077e-06 9.10876e-06 9.10893e-06 9.10851e-06 9.10794e-06 9.10735e-06 9.10676e-06 9.10614e-06 9.10553e-06 9.10496e-06 9.10446e-06 9.10404e-06 9.10373e-06 9.1035e-06 9.10334e-06 9.10325e-06 9.10323e-06 9.10327e-06 9.10336e-06 9.10346e-06 9.10356e-06 9.10365e-06 9.10371e-06 9.10374e-06 9.10372e-06 9.10363e-06 9.10341e-06 9.10309e-06 9.10273e-06 9.10234e-06 9.10178e-06 9.11339e-06 9.11776e-06 9.12258e-06 9.12872e-06 9.13718e-06 9.14845e-06 9.16246e-06 9.17786e-06 9.19342e-06 9.20825e-06 9.22194e-06 9.23454e-06 9.2465e-06 9.25848e-06 9.27113e-06 9.28497e-06 9.30019e-06 9.31693e-06 9.33577e-06 9.35799e-06 9.38559e-06 9.42149e-06 9.46839e-06 9.52962e-06 9.6261e-06 9.74109e-06 1.00222e-05 1.04478e-05 9.99501e-06 8.57374e-06 6.0552e-05 0.000410533 0.00120404 9.1381e-06 9.11886e-06 9.11529e-06 9.10737e-06 9.10611e-06 9.10872e-06 9.11228e-06 9.11413e-06 9.11354e-06 9.11161e-06 9.1099e-06 9.10957e-06 9.11021e-06 9.11109e-06 9.11144e-06 9.11144e-06 9.11117e-06 9.11138e-06 9.1126e-06 9.1136e-06 9.11401e-06 9.11421e-06 9.11462e-06 9.11566e-06 9.11734e-06 9.11936e-06 9.12139e-06 9.12344e-06 9.1254e-06 9.12727e-06 9.12949e-06 9.1322e-06 9.13497e-06 9.13794e-06 9.14116e-06 9.14465e-06 9.14849e-06 9.15276e-06 9.15754e-06 9.16353e-06 9.17059e-06 9.17864e-06 9.18782e-06 9.19867e-06 9.21217e-06 9.2286e-06 9.24901e-06 9.27457e-06 9.30676e-06 9.34685e-06 9.39612e-06 9.4562e-06 9.52961e-06 9.62111e-06 9.7346e-06 9.87946e-06 1.00614e-05 1.02754e-05 1.05908e-05 1.07216e-05 9.31896e-06 5.35018e-06 4.89476e-05 0.000561932 0.00141221 9.11002e-06 9.10881e-06 9.11012e-06 9.11027e-06 9.10975e-06 9.10907e-06 9.10837e-06 9.10768e-06 9.107e-06 9.10631e-06 9.10566e-06 9.10505e-06 9.10454e-06 9.10413e-06 9.10381e-06 9.10358e-06 9.10342e-06 9.10333e-06 9.10331e-06 9.10336e-06 9.10345e-06 9.10355e-06 9.10366e-06 9.10374e-06 9.10381e-06 9.10384e-06 9.10383e-06 9.10374e-06 9.10353e-06 9.1032e-06 9.10281e-06 9.10238e-06 9.1018e-06 9.11524e-06 9.12025e-06 9.12577e-06 9.13296e-06 9.14254e-06 9.15527e-06 9.17035e-06 9.18641e-06 9.2023e-06 9.21726e-06 9.23107e-06 9.24397e-06 9.25656e-06 9.26957e-06 9.28366e-06 9.2992e-06 9.31627e-06 9.33508e-06 9.35646e-06 9.3821e-06 9.41475e-06 9.45741e-06 9.51316e-06 9.59985e-06 9.69234e-06 9.94606e-06 1.03379e-05 1.02779e-05 8.86438e-06 5.09743e-05 0.000355279 0.00097415 9.13726e-06 9.11386e-06 9.10985e-06 9.10465e-06 9.1073e-06 9.11115e-06 9.11323e-06 9.11289e-06 9.11115e-06 9.10954e-06 9.10901e-06 9.10951e-06 9.11017e-06 9.11052e-06 9.11042e-06 9.11018e-06 9.11025e-06 9.11093e-06 9.11199e-06 9.11248e-06 9.11272e-06 9.11332e-06 9.11444e-06 9.11601e-06 9.11768e-06 9.11937e-06 9.12115e-06 9.12286e-06 9.12432e-06 9.12606e-06 9.1283e-06 9.13063e-06 9.13312e-06 9.13585e-06 9.13882e-06 9.1421e-06 9.14578e-06 9.14992e-06 9.15468e-06 9.16064e-06 9.16764e-06 9.17565e-06 9.18498e-06 9.19637e-06 9.21048e-06 9.22765e-06 9.2489e-06 9.27539e-06 9.30817e-06 9.34848e-06 9.39793e-06 9.45837e-06 9.53218e-06 9.62416e-06 9.73735e-06 9.88005e-06 1.0063e-05 1.02656e-05 1.05895e-05 1.06494e-05 9.03954e-06 5.79449e-06 6.35755e-05 0.000512697 0.0011543 9.11143e-06 9.11007e-06 9.1117e-06 9.11183e-06 9.1112e-06 9.1104e-06 9.10959e-06 9.10878e-06 9.10801e-06 9.10725e-06 9.1065e-06 9.1058e-06 9.10518e-06 9.10466e-06 9.10425e-06 9.10393e-06 9.10369e-06 9.10352e-06 9.10343e-06 9.10341e-06 9.10346e-06 9.10354e-06 9.10365e-06 9.10375e-06 9.10384e-06 9.1039e-06 9.10394e-06 9.10393e-06 9.10385e-06 9.10365e-06 9.10331e-06 9.10289e-06 9.10243e-06 9.10182e-06 9.11728e-06 9.12303e-06 9.12936e-06 9.13776e-06 9.14869e-06 9.16278e-06 9.17878e-06 9.19534e-06 9.21145e-06 9.22652e-06 9.2405e-06 9.25383e-06 9.26724e-06 9.28152e-06 9.29726e-06 9.31469e-06 9.33383e-06 9.35504e-06 9.37948e-06 9.4095e-06 9.44813e-06 9.49853e-06 9.57734e-06 9.65366e-06 9.87616e-06 1.02143e-05 1.04574e-05 9.2068e-06 4.05139e-05 0.00030437 0.000790299 9.13448e-06 9.10891e-06 9.10643e-06 9.10491e-06 9.10967e-06 9.11239e-06 9.11225e-06 9.11074e-06 9.10926e-06 9.10862e-06 9.10882e-06 9.10927e-06 9.10948e-06 9.10946e-06 9.10948e-06 9.1095e-06 9.10995e-06 9.11071e-06 9.1112e-06 9.1114e-06 9.11204e-06 9.11321e-06 9.11461e-06 9.11602e-06 9.11742e-06 9.11901e-06 9.12049e-06 9.1217e-06 9.12317e-06 9.12496e-06 9.12677e-06 9.1288e-06 9.13111e-06 9.13365e-06 9.13647e-06 9.13967e-06 9.14332e-06 9.14748e-06 9.15241e-06 9.15846e-06 9.16551e-06 9.1737e-06 9.18349e-06 9.19565e-06 9.21039e-06 9.2282e-06 9.24997e-06 9.27666e-06 9.30929e-06 9.34927e-06 9.3983e-06 9.45824e-06 9.53148e-06 9.62291e-06 9.73531e-06 9.87491e-06 1.00595e-05 1.02482e-05 1.05761e-05 1.05615e-05 8.82272e-06 6.45691e-06 7.14988e-05 0.000456168 0.000934166 9.11295e-06 9.11149e-06 9.11345e-06 9.11359e-06 9.11286e-06 9.11195e-06 9.11102e-06 9.1101e-06 9.10922e-06 9.10837e-06 9.10753e-06 9.10674e-06 9.10601e-06 9.10538e-06 9.10485e-06 9.10442e-06 9.10409e-06 9.10383e-06 9.10366e-06 9.10356e-06 9.10353e-06 9.10357e-06 9.10365e-06 9.10374e-06 9.10384e-06 9.10393e-06 9.104e-06 9.10404e-06 9.10404e-06 9.10396e-06 9.10377e-06 9.10342e-06 9.10298e-06 9.10248e-06 9.10184e-06 9.11953e-06 9.12599e-06 9.13348e-06 9.14312e-06 9.15558e-06 9.1709e-06 9.18766e-06 9.20459e-06 9.22086e-06 9.23604e-06 9.25027e-06 9.26419e-06 9.27863e-06 9.29441e-06 9.31204e-06 9.33158e-06 9.35306e-06 9.3771e-06 9.40541e-06 9.4407e-06 9.48602e-06 9.5575e-06 9.62351e-06 9.81571e-06 1.00944e-05 1.05059e-05 9.62193e-06 3.12198e-05 0.000258343 0.000652226 9.12948e-06 9.10596e-06 9.10609e-06 9.10708e-06 9.11125e-06 9.11179e-06 9.11031e-06 9.10895e-06 9.10833e-06 9.10832e-06 9.10854e-06 9.10863e-06 9.10858e-06 9.10866e-06 9.10897e-06 9.10919e-06 9.10966e-06 9.11018e-06 9.11035e-06 9.11087e-06 9.11197e-06 9.11318e-06 9.11435e-06 9.1156e-06 9.11699e-06 9.11827e-06 9.11931e-06 9.12065e-06 9.12227e-06 9.12382e-06 9.12547e-06 9.12737e-06 9.12957e-06 9.13211e-06 9.13499e-06 9.13828e-06 9.14207e-06 9.14643e-06 9.15168e-06 9.15793e-06 9.16517e-06 9.17377e-06 9.18422e-06 9.19712e-06 9.21243e-06 9.23073e-06 9.25274e-06 9.27939e-06 9.31184e-06 9.35149e-06 9.39969e-06 9.45829e-06 9.52999e-06 9.61953e-06 9.73024e-06 9.86498e-06 1.00515e-05 1.02264e-05 1.05517e-05 1.0478e-05 8.70785e-06 7.18249e-06 7.23614e-05 0.000399228 0.000761616 9.11454e-06 9.11303e-06 9.11531e-06 9.11554e-06 9.11475e-06 9.11373e-06 9.1127e-06 9.11168e-06 9.11067e-06 9.10973e-06 9.10881e-06 9.10791e-06 9.10707e-06 9.10631e-06 9.10565e-06 9.1051e-06 9.10465e-06 9.10429e-06 9.10402e-06 9.10382e-06 9.10371e-06 9.10368e-06 9.1037e-06 9.10376e-06 9.10384e-06 9.10393e-06 9.10402e-06 9.1041e-06 9.10414e-06 9.10414e-06 9.10408e-06 9.10389e-06 9.10354e-06 9.10307e-06 9.10254e-06 9.10186e-06 9.12198e-06 9.12934e-06 9.13819e-06 9.14913e-06 9.16317e-06 9.17957e-06 9.19694e-06 9.21414e-06 9.23052e-06 9.24583e-06 9.26043e-06 9.2751e-06 9.29082e-06 9.30837e-06 9.32811e-06 9.35002e-06 9.37422e-06 9.40178e-06 9.43475e-06 9.47579e-06 9.54013e-06 9.59905e-06 9.76593e-06 9.98918e-06 1.04447e-05 1.00062e-05 2.42398e-05 0.000216964 0.000550767 9.12287e-06 9.10593e-06 9.10824e-06 9.10931e-06 9.11116e-06 9.11006e-06 9.10856e-06 9.10797e-06 9.10794e-06 9.10804e-06 9.10806e-06 9.10805e-06 9.10806e-06 9.10828e-06 9.10851e-06 9.10867e-06 9.10902e-06 9.10943e-06 9.10988e-06 9.1108e-06 9.11181e-06 9.11282e-06 9.11387e-06 9.11519e-06 9.11623e-06 9.11716e-06 9.11842e-06 9.11996e-06 9.12147e-06 9.12308e-06 9.12481e-06 9.12671e-06 9.12896e-06 9.13163e-06 9.1347e-06 9.13821e-06 9.14226e-06 9.14697e-06 9.15263e-06 9.15918e-06 9.16682e-06 9.17602e-06 9.18721e-06 9.20069e-06 9.21648e-06 9.23516e-06 9.25744e-06 9.28433e-06 9.31703e-06 9.35658e-06 9.40394e-06 9.4611e-06 9.53106e-06 9.61787e-06 9.7263e-06 9.85415e-06 1.00414e-05 1.02048e-05 1.05189e-05 1.0421e-05 8.70135e-06 7.76698e-06 6.74038e-05 0.000345824 0.000633331 9.11627e-06 9.11462e-06 9.11736e-06 9.11775e-06 9.11693e-06 9.11581e-06 9.11469e-06 9.11357e-06 9.11243e-06 9.11139e-06 9.11037e-06 9.10937e-06 9.1084e-06 9.10751e-06 9.10671e-06 9.10601e-06 9.10542e-06 9.10494e-06 9.10455e-06 9.10425e-06 9.10404e-06 9.10391e-06 9.10385e-06 9.10385e-06 9.10389e-06 9.10395e-06 9.10403e-06 9.10412e-06 9.10419e-06 9.10424e-06 9.10424e-06 9.10419e-06 9.10401e-06 9.10367e-06 9.10318e-06 9.1026e-06 9.10188e-06 9.12461e-06 9.13322e-06 9.14345e-06 9.15595e-06 9.17144e-06 9.18875e-06 9.20657e-06 9.22397e-06 9.24043e-06 9.25592e-06 9.27102e-06 9.28667e-06 9.30392e-06 9.32351e-06 9.34562e-06 9.37021e-06 9.39772e-06 9.42949e-06 9.46746e-06 9.52537e-06 9.57821e-06 9.72532e-06 9.90128e-06 1.03317e-05 1.02412e-05 1.97024e-05 0.000180248 0.000473982 9.11646e-06 9.10787e-06 9.11104e-06 9.11031e-06 9.10982e-06 9.10826e-06 9.10748e-06 9.10752e-06 9.10771e-06 9.10777e-06 9.10783e-06 9.10786e-06 9.10784e-06 9.10782e-06 9.10768e-06 9.10784e-06 9.1083e-06 9.10892e-06 9.10975e-06 9.11062e-06 9.11148e-06 9.11245e-06 9.11362e-06 9.11447e-06 9.11531e-06 9.11653e-06 9.11799e-06 9.11945e-06 9.12105e-06 9.12281e-06 9.1247e-06 9.12673e-06 9.12913e-06 9.13199e-06 9.13528e-06 9.13905e-06 9.1434e-06 9.14851e-06 9.15458e-06 9.16156e-06 9.16976e-06 9.17964e-06 9.19146e-06 9.20532e-06 9.22145e-06 9.24048e-06 9.26322e-06 9.29073e-06 9.32395e-06 9.36351e-06 9.4103e-06 9.46646e-06 9.53506e-06 9.61891e-06 9.72505e-06 9.8446e-06 1.00295e-05 1.01838e-05 1.04766e-05 1.04034e-05 8.78862e-06 8.07754e-06 5.84071e-05 0.000297124 0.000538457 9.11818e-06 9.11636e-06 9.11961e-06 9.12024e-06 9.11944e-06 9.11823e-06 9.117e-06 9.11577e-06 9.11453e-06 9.11339e-06 9.11227e-06 9.11116e-06 9.11006e-06 9.10902e-06 9.10805e-06 9.10719e-06 9.10644e-06 9.10581e-06 9.10529e-06 9.10487e-06 9.10454e-06 9.1043e-06 9.10414e-06 9.10406e-06 9.10403e-06 9.10404e-06 9.10407e-06 9.10414e-06 9.10421e-06 9.10428e-06 9.10433e-06 9.10435e-06 9.1043e-06 9.10414e-06 9.1038e-06 9.10329e-06 9.10267e-06 9.1019e-06 9.12741e-06 9.13764e-06 9.14925e-06 9.1636e-06 9.18035e-06 9.19839e-06 9.21651e-06 9.23403e-06 9.25059e-06 9.26636e-06 9.28212e-06 9.29899e-06 9.31806e-06 9.33996e-06 9.36473e-06 9.3925e-06 9.42391e-06 9.46012e-06 9.51291e-06 9.56036e-06 9.69165e-06 9.82855e-06 1.02183e-05 1.02966e-05 1.70695e-05 0.000148662 0.000411786 9.11268e-06 9.10987e-06 9.1127e-06 9.10999e-06 9.10821e-06 9.10696e-06 9.10692e-06 9.10734e-06 9.10768e-06 9.10786e-06 9.10794e-06 9.10773e-06 9.10735e-06 9.1069e-06 9.10672e-06 9.10717e-06 9.10789e-06 9.10872e-06 9.10962e-06 9.11043e-06 9.11132e-06 9.11236e-06 9.11309e-06 9.11384e-06 9.115e-06 9.11639e-06 9.11776e-06 9.11928e-06 9.12095e-06 9.12279e-06 9.12482e-06 9.12704e-06 9.12963e-06 9.13265e-06 9.13613e-06 9.14013e-06 9.14477e-06 9.15023e-06 9.15665e-06 9.16408e-06 9.17287e-06 9.18327e-06 9.19545e-06 9.20948e-06 9.22582e-06 9.24521e-06 9.26853e-06 9.29667e-06 9.33016e-06 9.36948e-06 9.41578e-06 9.47117e-06 9.53859e-06 9.6192e-06 9.72307e-06 9.83362e-06 1.00116e-05 1.01585e-05 1.04209e-05 1.04227e-05 8.95749e-06 8.14977e-06 4.73908e-05 0.000252709 0.000465005 9.12029e-06 9.11828e-06 9.12207e-06 9.12303e-06 9.12227e-06 9.12098e-06 9.11964e-06 9.11834e-06 9.11702e-06 9.11579e-06 9.11457e-06 9.11332e-06 9.11208e-06 9.11087e-06 9.10973e-06 9.10869e-06 9.10776e-06 9.10696e-06 9.10628e-06 9.10571e-06 9.10524e-06 9.10488e-06 9.10461e-06 9.10442e-06 9.1043e-06 9.10424e-06 9.10421e-06 9.10421e-06 9.10425e-06 9.10431e-06 9.10437e-06 9.10442e-06 9.10445e-06 9.10442e-06 9.10427e-06 9.10393e-06 9.1034e-06 9.10274e-06 9.10193e-06 9.13059e-06 9.14261e-06 9.15603e-06 9.17206e-06 9.18984e-06 9.2084e-06 9.22671e-06 9.24433e-06 9.26103e-06 9.2772e-06 9.29382e-06 9.31219e-06 9.33337e-06 9.35786e-06 9.38573e-06 9.41718e-06 9.45264e-06 9.50179e-06 9.54496e-06 9.66313e-06 9.7683e-06 1.0123e-05 1.02319e-05 1.55871e-05 0.000122963 0.000358211 9.11316e-06 9.11063e-06 9.11249e-06 9.109e-06 9.10702e-06 9.10626e-06 9.10677e-06 9.10752e-06 9.10804e-06 9.10819e-06 9.10786e-06 9.1071e-06 9.10636e-06 9.10592e-06 9.10619e-06 9.10696e-06 9.10781e-06 9.10867e-06 9.10962e-06 9.11047e-06 9.11138e-06 9.11208e-06 9.11272e-06 9.11384e-06 9.11511e-06 9.11636e-06 9.11775e-06 9.11928e-06 9.12094e-06 9.12279e-06 9.12488e-06 9.12726e-06 9.13002e-06 9.13318e-06 9.13681e-06 9.141e-06 9.14588e-06 9.15159e-06 9.15827e-06 9.16607e-06 9.17524e-06 9.18589e-06 9.19811e-06 9.21215e-06 9.22863e-06 9.24839e-06 9.27217e-06 9.30049e-06 9.33363e-06 9.37225e-06 9.41781e-06 9.47205e-06 9.53781e-06 9.61451e-06 9.71534e-06 9.81817e-06 9.98319e-06 1.01237e-05 1.03538e-05 1.04628e-05 9.20712e-06 8.16651e-06 3.66588e-05 0.000212093 0.00040381 9.1226e-06 9.1204e-06 9.1247e-06 9.12599e-06 9.12541e-06 9.12409e-06 9.1227e-06 9.12134e-06 9.11993e-06 9.11863e-06 9.11728e-06 9.1159e-06 9.1145e-06 9.11311e-06 9.11178e-06 9.11054e-06 9.10941e-06 9.10841e-06 9.10755e-06 9.10681e-06 9.10619e-06 9.10568e-06 9.10528e-06 9.10497e-06 9.10475e-06 9.10459e-06 9.10448e-06 9.10441e-06 9.10437e-06 9.10438e-06 9.10441e-06 9.10445e-06 9.1045e-06 9.10454e-06 9.10453e-06 9.1044e-06 9.10407e-06 9.10353e-06 9.10283e-06 9.10196e-06 9.13433e-06 9.14807e-06 9.16375e-06 9.1812e-06 9.19977e-06 9.21867e-06 9.23714e-06 9.25489e-06 9.27181e-06 9.28853e-06 9.30625e-06 9.3264e-06 9.34999e-06 9.37746e-06 9.40884e-06 9.44409e-06 9.4908e-06 9.53131e-06 9.6382e-06 9.71907e-06 1.00389e-05 1.01374e-05 1.45969e-05 0.000103608 0.000311911 9.11763e-06 9.1104e-06 9.11091e-06 9.108e-06 9.10645e-06 9.10615e-06 9.1071e-06 9.10813e-06 9.10848e-06 9.10808e-06 9.10705e-06 9.106e-06 9.1054e-06 9.10549e-06 9.10622e-06 9.10709e-06 9.10793e-06 9.10888e-06 9.10977e-06 9.11054e-06 9.11123e-06 9.11177e-06 9.11284e-06 9.114e-06 9.11512e-06 9.11636e-06 9.11772e-06 9.11919e-06 9.12082e-06 9.12264e-06 9.12473e-06 9.1272e-06 9.13007e-06 9.13334e-06 9.13709e-06 9.14142e-06 9.14646e-06 9.15235e-06 9.1592e-06 9.16721e-06 9.17649e-06 9.18709e-06 9.19919e-06 9.21322e-06 9.22992e-06 9.24999e-06 9.27389e-06 9.30179e-06 9.33403e-06 9.37155e-06 9.4159e-06 9.46836e-06 9.53168e-06 9.60381e-06 9.70006e-06 9.79747e-06 9.94519e-06 1.00807e-05 1.02898e-05 1.05022e-05 9.53288e-06 8.33229e-06 2.7908e-05 0.000175528 0.000350176 9.12501e-06 9.12272e-06 9.12751e-06 9.12933e-06 9.12894e-06 9.12766e-06 9.12622e-06 9.12479e-06 9.12333e-06 9.12192e-06 9.12046e-06 9.11892e-06 9.11734e-06 9.11577e-06 9.11423e-06 9.11277e-06 9.11143e-06 9.11021e-06 9.10914e-06 9.1082e-06 9.1074e-06 9.10673e-06 9.10618e-06 9.10574e-06 9.10539e-06 9.10513e-06 9.10492e-06 9.10476e-06 9.10464e-06 9.10456e-06 9.10452e-06 9.10451e-06 9.10454e-06 9.10459e-06 9.10464e-06 9.10465e-06 9.10454e-06 9.10421e-06 9.10366e-06 9.10292e-06 9.10199e-06 9.13857e-06 9.15449e-06 9.17227e-06 9.19087e-06 9.21002e-06 9.22914e-06 9.24784e-06 9.26576e-06 9.283e-06 9.30043e-06 9.31952e-06 9.34177e-06 9.36813e-06 9.39893e-06 9.43392e-06 9.4789e-06 9.51882e-06 9.61541e-06 9.67907e-06 9.9576e-06 1.00755e-05 1.36944e-05 9.00822e-05 0.000274773 9.12419e-06 9.11045e-06 9.10914e-06 9.10722e-06 9.10645e-06 9.1066e-06 9.10783e-06 9.10865e-06 9.10824e-06 9.10706e-06 9.10576e-06 9.10506e-06 9.10505e-06 9.10567e-06 9.10655e-06 9.10739e-06 9.10825e-06 9.10909e-06 9.10974e-06 9.11031e-06 9.11076e-06 9.11176e-06 9.1128e-06 9.11379e-06 9.11489e-06 9.11609e-06 9.11739e-06 9.11883e-06 9.12042e-06 9.1222e-06 9.12426e-06 9.12674e-06 9.12964e-06 9.13298e-06 9.1368e-06 9.14123e-06 9.14639e-06 9.15241e-06 9.15936e-06 9.1674e-06 9.17656e-06 9.18699e-06 9.19897e-06 9.21311e-06 9.23007e-06 9.25028e-06 9.27386e-06 9.30095e-06 9.33211e-06 9.36843e-06 9.41127e-06 9.46156e-06 9.52191e-06 9.58981e-06 9.6799e-06 9.77302e-06 9.90558e-06 1.00371e-05 1.02413e-05 1.05233e-05 9.90247e-06 8.74255e-06 2.18564e-05 0.000144066 0.000303932 9.12756e-06 9.12514e-06 9.13069e-06 9.13319e-06 9.13299e-06 9.13174e-06 9.13024e-06 9.12872e-06 9.12723e-06 9.12572e-06 9.12412e-06 9.12241e-06 9.12064e-06 9.11886e-06 9.1171e-06 9.11541e-06 9.11383e-06 9.11238e-06 9.11107e-06 9.10991e-06 9.10891e-06 9.10805e-06 9.10733e-06 9.10674e-06 9.10625e-06 9.10587e-06 9.10556e-06 9.1053e-06 9.10509e-06 9.10491e-06 9.10477e-06 9.10468e-06 9.10463e-06 9.10463e-06 9.10467e-06 9.10473e-06 9.10476e-06 9.10467e-06 9.10436e-06 9.1038e-06 9.10302e-06 9.10203e-06 9.1432e-06 9.16185e-06 9.18146e-06 9.20096e-06 9.22054e-06 9.2399e-06 9.25884e-06 9.27698e-06 9.29464e-06 9.31299e-06 9.33376e-06 9.35846e-06 9.38794e-06 9.42218e-06 9.4656e-06 9.50574e-06 9.59319e-06 9.64684e-06 9.88191e-06 1.00585e-05 1.27754e-05 8.0471e-05 0.000248782 9.13077e-06 9.11172e-06 9.10818e-06 9.10663e-06 9.10688e-06 9.10736e-06 9.10831e-06 9.1083e-06 9.107e-06 9.1056e-06 9.10479e-06 9.10482e-06 9.10532e-06 9.10617e-06 9.10692e-06 9.10769e-06 9.1084e-06 9.10893e-06 9.10931e-06 9.10966e-06 9.11055e-06 9.11144e-06 9.1123e-06 9.11325e-06 9.11431e-06 9.11545e-06 9.11672e-06 9.11813e-06 9.1197e-06 9.12146e-06 9.12351e-06 9.12596e-06 9.12885e-06 9.13222e-06 9.1361e-06 9.1406e-06 9.14585e-06 9.15192e-06 9.15889e-06 9.16683e-06 9.17583e-06 9.18614e-06 9.1982e-06 9.21258e-06 9.22976e-06 9.24984e-06 9.27286e-06 9.29911e-06 9.32937e-06 9.36467e-06 9.40604e-06 9.45424e-06 9.51164e-06 9.57669e-06 9.65973e-06 9.74978e-06 9.87405e-06 1.00006e-05 1.02078e-05 1.05172e-05 1.02504e-05 9.33308e-06 1.82791e-05 0.000119029 0.000267757 9.1304e-06 9.1277e-06 9.13444e-06 9.13759e-06 9.13761e-06 9.13634e-06 9.13478e-06 9.13317e-06 9.13165e-06 9.13003e-06 9.12827e-06 9.12639e-06 9.12442e-06 9.12241e-06 9.12041e-06 9.11848e-06 9.11664e-06 9.11493e-06 9.11337e-06 9.11197e-06 9.11074e-06 9.10967e-06 9.10875e-06 9.10798e-06 9.10734e-06 9.10682e-06 9.10639e-06 9.10604e-06 9.10573e-06 9.10546e-06 9.10522e-06 9.10502e-06 9.10486e-06 9.10476e-06 9.10472e-06 9.10475e-06 9.10482e-06 9.10487e-06 9.1048e-06 9.10452e-06 9.10395e-06 9.10312e-06 9.10207e-06 9.14806e-06 9.17008e-06 9.19123e-06 9.21141e-06 9.23129e-06 9.25097e-06 9.27013e-06 9.28852e-06 9.30675e-06 9.32631e-06 9.34912e-06 9.37664e-06 9.40937e-06 9.45091e-06 9.49101e-06 9.57024e-06 9.62011e-06 9.81682e-06 1.00481e-05 1.19417e-05 7.19479e-05 0.000232892 9.13637e-06 9.11409e-06 9.10832e-06 9.10615e-06 9.1074e-06 9.10781e-06 9.10789e-06 9.10694e-06 9.10543e-06 9.10464e-06 9.10473e-06 9.10523e-06 9.10593e-06 9.10664e-06 9.10719e-06 9.10776e-06 9.10814e-06 9.10836e-06 9.1086e-06 9.10938e-06 9.11012e-06 9.11084e-06 9.11167e-06 9.11259e-06 9.1136e-06 9.11473e-06 9.11599e-06 9.11741e-06 9.119e-06 9.12079e-06 9.12289e-06 9.12538e-06 9.12831e-06 9.13171e-06 9.13568e-06 9.14029e-06 9.14563e-06 9.15174e-06 9.15871e-06 9.16659e-06 9.17559e-06 9.18605e-06 9.19843e-06 9.21318e-06 9.23048e-06 9.25032e-06 9.27284e-06 9.29859e-06 9.32837e-06 9.36299e-06 9.40327e-06 9.44984e-06 9.50481e-06 9.56793e-06 9.64488e-06 9.73276e-06 9.85198e-06 9.97372e-06 1.01833e-05 1.0484e-05 1.05039e-05 9.92527e-06 1.64661e-05 0.000101212 0.000243881 9.13357e-06 9.13055e-06 9.13868e-06 9.14255e-06 9.14277e-06 9.1415e-06 9.13981e-06 9.13824e-06 9.13662e-06 9.13487e-06 9.13294e-06 9.13086e-06 9.12867e-06 9.12642e-06 9.12417e-06 9.12197e-06 9.11987e-06 9.11788e-06 9.11605e-06 9.11439e-06 9.11291e-06 9.1116e-06 9.11046e-06 9.10949e-06 9.10868e-06 9.10799e-06 9.10743e-06 9.10696e-06 9.10656e-06 9.1062e-06 9.10587e-06 9.10558e-06 9.10531e-06 9.10508e-06 9.10491e-06 9.10482e-06 9.10483e-06 9.1049e-06 9.10497e-06 9.10494e-06 9.10467e-06 9.1041e-06 9.10324e-06 9.10211e-06 9.15405e-06 9.17913e-06 9.20152e-06 9.22218e-06 9.24228e-06 9.26228e-06 9.28164e-06 9.30037e-06 9.3194e-06 9.34055e-06 9.36579e-06 9.39629e-06 9.43533e-06 9.47501e-06 9.54626e-06 9.59597e-06 9.76402e-06 1.00031e-05 1.13286e-05 6.20576e-05 0.000221972 9.1408e-06 9.11682e-06 9.10933e-06 9.1059e-06 9.10753e-06 9.10757e-06 9.10666e-06 9.1054e-06 9.10459e-06 9.10477e-06 9.10543e-06 9.10601e-06 9.10657e-06 9.107e-06 9.10726e-06 9.10752e-06 9.10766e-06 9.10785e-06 9.10854e-06 9.10916e-06 9.10979e-06 9.11054e-06 9.11137e-06 9.11231e-06 9.11335e-06 9.11452e-06 9.11584e-06 9.11734e-06 9.11903e-06 9.12097e-06 9.12326e-06 9.12593e-06 9.12903e-06 9.13262e-06 9.13681e-06 9.14163e-06 9.14716e-06 9.15343e-06 9.16053e-06 9.16861e-06 9.17796e-06 9.18895e-06 9.20193e-06 9.21715e-06 9.23462e-06 9.25441e-06 9.27686e-06 9.30262e-06 9.33239e-06 9.36674e-06 9.40637e-06 9.45186e-06 9.50495e-06 9.56671e-06 9.63908e-06 9.7248e-06 9.83873e-06 9.95286e-06 1.01608e-05 1.04286e-05 1.06227e-05 1.03448e-05 1.56143e-05 8.98283e-05 0.000230882 9.13705e-06 9.13373e-06 9.14331e-06 9.14798e-06 9.14845e-06 9.14729e-06 9.14563e-06 9.14392e-06 9.14217e-06 9.14025e-06 9.13813e-06 9.13584e-06 9.13341e-06 9.1309e-06 9.12838e-06 9.1259e-06 9.12351e-06 9.12124e-06 9.11912e-06 9.11718e-06 9.11542e-06 9.11385e-06 9.11247e-06 9.11127e-06 9.11026e-06 9.1094e-06 9.10868e-06 9.10808e-06 9.10757e-06 9.10712e-06 9.10671e-06 9.10634e-06 9.10598e-06 9.10563e-06 9.10532e-06 9.10508e-06 9.10494e-06 9.10491e-06 9.10498e-06 9.10507e-06 9.10507e-06 9.10483e-06 9.10427e-06 9.10337e-06 9.10216e-06 9.16122e-06 9.18893e-06 9.21221e-06 9.23312e-06 9.25348e-06 9.27372e-06 9.29335e-06 9.3126e-06 9.33278e-06 9.35589e-06 9.38377e-06 9.41968e-06 9.45819e-06 9.52198e-06 9.57182e-06 9.72234e-06 9.91931e-06 1.09797e-05 5.01183e-05 0.000208901 9.14366e-06 9.11947e-06 9.1111e-06 9.10629e-06 9.10722e-06 9.10684e-06 9.10549e-06 9.10475e-06 9.10493e-06 9.10572e-06 9.10644e-06 9.10683e-06 9.10713e-06 9.1072e-06 9.10725e-06 9.10739e-06 9.10758e-06 9.10824e-06 9.10882e-06 9.10941e-06 9.11012e-06 9.11094e-06 9.11186e-06 9.1129e-06 9.11407e-06 9.11537e-06 9.11685e-06 9.11854e-06 9.12047e-06 9.12273e-06 9.12537e-06 9.1284e-06 9.13188e-06 9.13588e-06 9.14047e-06 9.1457e-06 9.15161e-06 9.15828e-06 9.16586e-06 9.17457e-06 9.18472e-06 9.19658e-06 9.21038e-06 9.22622e-06 9.24409e-06 9.26422e-06 9.2871e-06 9.31331e-06 9.34333e-06 9.37759e-06 9.41673e-06 9.46119e-06 9.51233e-06 9.57231e-06 9.64069e-06 9.72215e-06 9.82789e-06 9.92891e-06 1.01292e-05 1.03514e-05 1.06142e-05 1.05185e-05 1.50284e-05 8.20914e-05 0.000222602 9.14079e-06 9.13722e-06 9.14818e-06 9.15438e-06 9.15511e-06 9.15389e-06 9.15219e-06 9.15028e-06 9.14832e-06 9.14619e-06 9.14385e-06 9.14132e-06 9.13863e-06 9.13585e-06 9.13304e-06 9.13027e-06 9.12757e-06 9.125e-06 9.12258e-06 9.12034e-06 9.11828e-06 9.11643e-06 9.11478e-06 9.11334e-06 9.11209e-06 9.11103e-06 9.11014e-06 9.10938e-06 9.10875e-06 9.10821e-06 9.10772e-06 9.10727e-06 9.10684e-06 9.10642e-06 9.106e-06 9.10561e-06 9.10529e-06 9.10508e-06 9.10501e-06 9.10506e-06 9.10517e-06 9.1052e-06 9.105e-06 9.10444e-06 9.10351e-06 9.10222e-06 9.16935e-06 9.19924e-06 9.22306e-06 9.24407e-06 9.26477e-06 9.28529e-06 9.30531e-06 9.32537e-06 9.34702e-06 9.37236e-06 9.4048e-06 9.44121e-06 9.49836e-06 9.54608e-06 9.6877e-06 9.82927e-06 1.08091e-05 3.76451e-05 0.0001891 9.14417e-06 9.12235e-06 9.11421e-06 9.10791e-06 9.10701e-06 9.10626e-06 9.10506e-06 9.10517e-06 9.106e-06 9.10685e-06 9.10733e-06 9.10748e-06 9.10752e-06 9.10747e-06 9.10766e-06 9.10778e-06 9.10842e-06 9.10898e-06 9.10958e-06 9.1103e-06 9.11113e-06 9.11206e-06 9.11313e-06 9.11434e-06 9.1157e-06 9.11724e-06 9.11898e-06 9.12098e-06 9.1233e-06 9.126e-06 9.12911e-06 9.13265e-06 9.13667e-06 9.14123e-06 9.14639e-06 9.15221e-06 9.15874e-06 9.16612e-06 9.17454e-06 9.18425e-06 9.19547e-06 9.20837e-06 9.22307e-06 9.23961e-06 9.25807e-06 9.27882e-06 9.30231e-06 9.32895e-06 9.359e-06 9.39284e-06 9.43093e-06 9.4735e-06 9.5217e-06 9.57804e-06 9.64091e-06 9.71452e-06 9.80865e-06 9.89005e-06 1.00752e-05 1.02464e-05 1.05128e-05 1.04758e-05 1.42544e-05 7.41045e-05 0.000210666 9.14478e-06 9.14098e-06 9.15419e-06 9.16171e-06 9.1627e-06 9.16133e-06 9.15947e-06 9.15736e-06 9.15509e-06 9.15269e-06 9.15009e-06 9.14729e-06 9.14433e-06 9.14126e-06 9.13815e-06 9.13506e-06 9.13205e-06 9.12916e-06 9.12642e-06 9.12386e-06 9.1215e-06 9.11934e-06 9.11741e-06 9.11569e-06 9.11419e-06 9.1129e-06 9.1118e-06 9.11088e-06 9.1101e-06 9.10944e-06 9.10887e-06 9.10835e-06 9.10787e-06 9.10739e-06 9.10691e-06 9.10642e-06 9.10594e-06 9.10553e-06 9.10523e-06 9.10511e-06 9.10514e-06 9.10526e-06 9.10532e-06 9.10516e-06 9.10463e-06 9.10366e-06 9.10228e-06 9.17816e-06 9.20973e-06 9.23384e-06 9.25511e-06 9.27616e-06 9.29704e-06 9.31767e-06 9.33877e-06 9.36218e-06 9.39126e-06 9.42484e-06 9.4761e-06 9.5195e-06 9.6547e-06 9.76348e-06 1.0676e-05 2.70588e-05 0.000163491 9.14198e-06 9.12608e-06 9.1194e-06 9.11123e-06 9.10772e-06 9.10611e-06 9.10536e-06 9.10602e-06 9.10695e-06 9.10761e-06 9.10779e-06 9.10791e-06 9.10786e-06 9.10819e-06 9.10827e-06 9.10882e-06 9.1093e-06 9.10988e-06 9.11059e-06 9.11141e-06 9.11234e-06 9.1134e-06 9.11462e-06 9.11601e-06 9.11758e-06 9.11937e-06 9.12142e-06 9.12377e-06 9.12651e-06 9.12966e-06 9.13323e-06 9.13727e-06 9.14184e-06 9.14697e-06 9.15274e-06 9.15921e-06 9.16649e-06 9.17473e-06 9.18414e-06 9.19489e-06 9.20711e-06 9.2209e-06 9.2363e-06 9.25339e-06 9.27235e-06 9.29355e-06 9.31728e-06 9.34373e-06 9.37306e-06 9.40551e-06 9.44133e-06 9.48039e-06 9.52389e-06 9.57385e-06 9.62823e-06 9.69094e-06 9.77054e-06 9.82911e-06 9.99108e-06 1.01102e-05 1.03555e-05 1.03082e-05 1.31979e-05 6.31047e-05 0.00019005 9.14946e-06 9.14498e-06 9.16137e-06 9.1699e-06 9.1711e-06 9.16959e-06 9.16746e-06 9.16509e-06 9.16248e-06 9.15975e-06 9.15685e-06 9.15376e-06 9.1505e-06 9.14712e-06 9.14369e-06 9.14028e-06 9.13693e-06 9.1337e-06 9.13063e-06 9.12774e-06 9.12505e-06 9.12258e-06 9.12034e-06 9.11833e-06 9.11656e-06 9.11502e-06 9.11369e-06 9.11256e-06 9.11161e-06 9.11082e-06 9.11014e-06 9.10955e-06 9.10901e-06 9.10849e-06 9.10798e-06 9.10744e-06 9.10688e-06 9.10631e-06 9.1058e-06 9.10542e-06 9.10522e-06 9.10522e-06 9.10534e-06 9.10544e-06 9.10533e-06 9.10482e-06 9.10382e-06 9.10235e-06 9.18737e-06 9.22022e-06 9.24455e-06 9.26625e-06 9.28772e-06 9.30908e-06 9.33043e-06 9.35283e-06 9.37918e-06 9.40969e-06 9.4555e-06 9.49392e-06 9.62037e-06 9.71801e-06 1.05058e-05 1.96987e-05 0.00013688 9.13806e-06 9.13069e-06 9.12657e-06 9.11602e-06 9.10941e-06 9.10642e-06 9.10583e-06 9.1066e-06 9.10728e-06 9.10771e-06 9.10796e-06 9.10803e-06 9.10849e-06 9.10858e-06 9.10911e-06 9.10949e-06 9.10995e-06 9.11056e-06 9.11129e-06 9.11215e-06 9.11314e-06 9.11428e-06 9.1156e-06 9.1171e-06 9.11882e-06 9.1208e-06 9.12307e-06 9.1257e-06 9.12873e-06 9.13219e-06 9.13608e-06 9.14048e-06 9.14543e-06 9.15099e-06 9.15722e-06 9.16423e-06 9.17214e-06 9.18109e-06 9.19124e-06 9.20268e-06 9.21548e-06 9.22968e-06 9.24534e-06 9.26256e-06 9.28158e-06 9.30262e-06 9.32581e-06 9.35119e-06 9.3788e-06 9.40875e-06 9.44103e-06 9.47512e-06 9.51231e-06 9.55401e-06 9.5987e-06 9.64886e-06 9.71338e-06 9.75176e-06 9.88557e-06 9.95782e-06 1.01792e-05 1.0128e-05 1.20944e-05 4.92816e-05 0.00016249 9.15475e-06 9.14969e-06 9.16952e-06 9.17893e-06 9.18018e-06 9.17859e-06 9.17615e-06 9.17344e-06 9.17047e-06 9.16737e-06 9.16412e-06 9.1607e-06 9.15712e-06 9.15342e-06 9.14966e-06 9.1459e-06 9.1422e-06 9.13862e-06 9.1352e-06 9.13196e-06 9.12893e-06 9.12613e-06 9.12357e-06 9.12126e-06 9.11919e-06 9.11737e-06 9.11579e-06 9.11443e-06 9.11329e-06 9.11232e-06 9.11152e-06 9.11083e-06 9.11023e-06 9.10967e-06 9.10914e-06 9.1086e-06 9.10802e-06 9.10739e-06 9.10674e-06 9.10613e-06 9.10564e-06 9.10536e-06 9.10531e-06 9.10543e-06 9.10556e-06 9.1055e-06 9.10502e-06 9.10399e-06 9.10243e-06 9.19679e-06 9.23061e-06 9.2554e-06 9.27753e-06 9.29941e-06 9.3213e-06 9.34357e-06 9.36818e-06 9.39599e-06 9.43657e-06 9.47059e-06 9.58459e-06 9.68535e-06 1.03213e-05 1.52264e-05 0.000113994 9.13406e-06 9.13526e-06 9.13394e-06 9.12118e-06 9.11178e-06 9.10709e-06 9.10639e-06 9.10674e-06 9.10709e-06 9.10751e-06 9.10779e-06 9.10832e-06 9.10845e-06 9.10898e-06 9.10933e-06 9.10971e-06 9.11018e-06 9.11075e-06 9.11145e-06 9.11229e-06 9.11327e-06 9.11442e-06 9.11574e-06 9.11727e-06 9.11904e-06 9.1211e-06 9.12347e-06 9.12622e-06 9.12936e-06 9.13291e-06 9.13692e-06 9.14145e-06 9.14655e-06 9.15229e-06 9.15874e-06 9.16602e-06 9.17424e-06 9.1835e-06 9.19389e-06 9.20546e-06 9.21825e-06 9.2323e-06 9.24768e-06 9.26453e-06 9.28301e-06 9.30322e-06 9.32513e-06 9.34871e-06 9.37396e-06 9.40076e-06 9.42897e-06 9.45782e-06 9.4886e-06 9.52256e-06 9.55844e-06 9.59769e-06 9.65009e-06 9.67514e-06 9.78289e-06 9.82091e-06 1.00206e-05 1.00168e-05 1.12665e-05 3.55138e-05 0.000134143 9.16059e-06 9.15504e-06 9.17836e-06 9.18869e-06 9.18986e-06 9.18816e-06 9.18549e-06 9.18238e-06 9.17903e-06 9.17554e-06 9.17189e-06 9.16811e-06 9.16418e-06 9.16013e-06 9.15602e-06 9.1519e-06 9.14784e-06 9.14389e-06 9.14011e-06 9.13651e-06 9.13313e-06 9.12999e-06 9.12709e-06 9.12445e-06 9.12207e-06 9.11996e-06 9.1181e-06 9.1165e-06 9.11512e-06 9.11397e-06 9.113e-06 9.11219e-06 9.1115e-06 9.1109e-06 9.11035e-06 9.10981e-06 9.10925e-06 9.10863e-06 9.10794e-06 9.10721e-06 9.1065e-06 9.1059e-06 9.10552e-06 9.1054e-06 9.10551e-06 9.10568e-06 9.10567e-06 9.10522e-06 9.10418e-06 9.10252e-06 9.20631e-06 9.24101e-06 9.26634e-06 9.28879e-06 9.31106e-06 9.33364e-06 9.35754e-06 9.38348e-06 9.41926e-06 9.45145e-06 9.54958e-06 9.65512e-06 1.0195e-05 1.25644e-05 9.68972e-05 9.131e-06 9.13813e-06 9.13921e-06 9.12544e-06 9.11458e-06 9.1088e-06 9.10713e-06 9.10695e-06 9.10686e-06 9.10726e-06 9.10775e-06 9.108e-06 9.10854e-06 9.10888e-06 9.10925e-06 9.10967e-06 9.11012e-06 9.11066e-06 9.11131e-06 9.1121e-06 9.11305e-06 9.11416e-06 9.11546e-06 9.11697e-06 9.11874e-06 9.1208e-06 9.12318e-06 9.12591e-06 9.12902e-06 9.13253e-06 9.13651e-06 9.14101e-06 9.14608e-06 9.15181e-06 9.15827e-06 9.16555e-06 9.17373e-06 9.18288e-06 9.19305e-06 9.20429e-06 9.21662e-06 9.23012e-06 9.24485e-06 9.26094e-06 9.27847e-06 9.29741e-06 9.31771e-06 9.33932e-06 9.36213e-06 9.38593e-06 9.41044e-06 9.43508e-06 9.46119e-06 9.49e-06 9.5201e-06 9.55241e-06 9.59782e-06 9.61708e-06 9.70672e-06 9.72679e-06 9.90601e-06 9.97676e-06 1.08581e-05 2.48479e-05 0.000110567 9.16682e-06 9.16095e-06 9.18759e-06 9.19896e-06 9.20008e-06 9.1982e-06 9.19536e-06 9.19188e-06 9.18809e-06 9.1842e-06 9.18015e-06 9.17597e-06 9.17166e-06 9.16724e-06 9.16276e-06 9.15827e-06 9.15384e-06 9.14951e-06 9.14534e-06 9.14137e-06 9.13762e-06 9.13412e-06 9.13088e-06 9.1279e-06 9.1252e-06 9.12277e-06 9.12062e-06 9.11875e-06 9.11713e-06 9.11575e-06 9.11459e-06 9.11363e-06 9.11282e-06 9.11215e-06 9.11155e-06 9.11101e-06 9.11048e-06 9.10991e-06 9.10927e-06 9.10854e-06 9.10773e-06 9.10692e-06 9.1062e-06 9.10571e-06 9.10552e-06 9.1056e-06 9.10579e-06 9.10584e-06 9.10544e-06 9.10439e-06 9.10262e-06 9.21582e-06 9.25147e-06 9.2771e-06 9.2998e-06 9.32264e-06 9.34646e-06 9.37155e-06 9.40348e-06 9.43382e-06 9.51727e-06 9.62007e-06 1.01153e-05 1.08581e-05 8.45807e-05 9.12855e-06 9.13812e-06 9.1408e-06 9.12859e-06 9.11827e-06 9.1116e-06 9.10884e-06 9.10735e-06 9.10698e-06 9.10721e-06 9.10754e-06 9.10798e-06 9.10838e-06 9.1088e-06 9.10922e-06 9.10966e-06 9.11014e-06 9.11069e-06 9.11134e-06 9.11213e-06 9.11307e-06 9.11418e-06 9.11548e-06 9.11701e-06 9.11879e-06 9.12085e-06 9.12322e-06 9.12592e-06 9.12898e-06 9.13244e-06 9.13637e-06 9.14081e-06 9.14582e-06 9.15147e-06 9.15784e-06 9.16497e-06 9.17293e-06 9.18176e-06 9.1915e-06 9.20221e-06 9.21393e-06 9.22674e-06 9.2407e-06 9.25589e-06 9.27229e-06 9.28986e-06 9.30856e-06 9.3283e-06 9.34893e-06 9.37017e-06 9.39162e-06 9.41365e-06 9.43737e-06 9.46378e-06 9.4916e-06 9.52118e-06 9.56377e-06 9.58241e-06 9.66279e-06 9.67818e-06 9.83797e-06 9.95321e-06 1.07408e-05 1.81629e-05 9.38728e-05 9.17318e-06 9.16727e-06 9.19703e-06 9.20943e-06 9.21075e-06 9.20866e-06 9.20562e-06 9.20185e-06 9.19761e-06 9.1933e-06 9.18886e-06 9.18426e-06 9.17954e-06 9.17474e-06 9.16987e-06 9.165e-06 9.16017e-06 9.15546e-06 9.15089e-06 9.14653e-06 9.1424e-06 9.13853e-06 9.13492e-06 9.1316e-06 9.12856e-06 9.12581e-06 9.12335e-06 9.12118e-06 9.11929e-06 9.11767e-06 9.11629e-06 9.11514e-06 9.11419e-06 9.11341e-06 9.11275e-06 9.11218e-06 9.11166e-06 9.11115e-06 9.11058e-06 9.10993e-06 9.10917e-06 9.1083e-06 9.10739e-06 9.10656e-06 9.10594e-06 9.10565e-06 9.10569e-06 9.1059e-06 9.10601e-06 9.10566e-06 9.1046e-06 9.10273e-06 9.22507e-06 9.26159e-06 9.2875e-06 9.31065e-06 9.33447e-06 9.35936e-06 9.38873e-06 9.41722e-06 9.48793e-06 9.57868e-06 1.00525e-05 9.80426e-06 7.43253e-05 9.12577e-06 9.13507e-06 9.13953e-06 9.13097e-06 9.1228e-06 9.11575e-06 9.11086e-06 9.10836e-06 9.10752e-06 9.10726e-06 9.10757e-06 9.10795e-06 9.1084e-06 9.1089e-06 9.10939e-06 9.1099e-06 9.11046e-06 9.11108e-06 9.1118e-06 9.11265e-06 9.11365e-06 9.11482e-06 9.11619e-06 9.11778e-06 9.11962e-06 9.12173e-06 9.12414e-06 9.12687e-06 9.12995e-06 9.13344e-06 9.13739e-06 9.14183e-06 9.14683e-06 9.15243e-06 9.1587e-06 9.16567e-06 9.17338e-06 9.18189e-06 9.19122e-06 9.20143e-06 9.21256e-06 9.22471e-06 9.23788e-06 9.2521e-06 9.26732e-06 9.2835e-06 9.30059e-06 9.31846e-06 9.33693e-06 9.35582e-06 9.37502e-06 9.39561e-06 9.41822e-06 9.44369e-06 9.47087e-06 9.49961e-06 9.54091e-06 9.56076e-06 9.63646e-06 9.65274e-06 9.7927e-06 9.90212e-06 1.06623e-05 1.43777e-05 8.24037e-05 9.17956e-06 9.17374e-06 9.20659e-06 9.21989e-06 9.22161e-06 9.2195e-06 9.21621e-06 9.21216e-06 9.20756e-06 9.20282e-06 9.19797e-06 9.19296e-06 9.18782e-06 9.1826e-06 9.17733e-06 9.17206e-06 9.16683e-06 9.16171e-06 9.15674e-06 9.15198e-06 9.14745e-06 9.14319e-06 9.13922e-06 9.13553e-06 9.13214e-06 9.12905e-06 9.12627e-06 9.1238e-06 9.12162e-06 9.11973e-06 9.11811e-06 9.11675e-06 9.11562e-06 9.11469e-06 9.11393e-06 9.1133e-06 9.11276e-06 9.11228e-06 9.1118e-06 9.11126e-06 9.11062e-06 9.10984e-06 9.10892e-06 9.10792e-06 9.10697e-06 9.10622e-06 9.10582e-06 9.10579e-06 9.10601e-06 9.10617e-06 9.10588e-06 9.10483e-06 9.10286e-06 9.23398e-06 9.27141e-06 9.29769e-06 9.32157e-06 9.3463e-06 9.37409e-06 9.40091e-06 9.46104e-06 9.5339e-06 9.98126e-06 9.30578e-06 6.41794e-05 9.1223e-06 9.1303e-06 9.13681e-06 9.13335e-06 9.12736e-06 9.11984e-06 9.11348e-06 9.11051e-06 9.10825e-06 9.10759e-06 9.10766e-06 9.10805e-06 9.10854e-06 9.10908e-06 9.10967e-06 9.11028e-06 9.11094e-06 9.11167e-06 9.11249e-06 9.11344e-06 9.11453e-06 9.1158e-06 9.11727e-06 9.11896e-06 9.12089e-06 9.12308e-06 9.12556e-06 9.12836e-06 9.13152e-06 9.13509e-06 9.13909e-06 9.14356e-06 9.14856e-06 9.15412e-06 9.16028e-06 9.16709e-06 9.17455e-06 9.18274e-06 9.19167e-06 9.20139e-06 9.21193e-06 9.22331e-06 9.23557e-06 9.24866e-06 9.26254e-06 9.27718e-06 9.29251e-06 9.30833e-06 9.32462e-06 9.34148e-06 9.35925e-06 9.37866e-06 9.40032e-06 9.42485e-06 9.45114e-06 9.47868e-06 9.51792e-06 9.53877e-06 9.60862e-06 9.62648e-06 9.74546e-06 9.82773e-06 1.04927e-05 1.21001e-05 7.26804e-05 9.18596e-06 9.18022e-06 9.21614e-06 9.23026e-06 9.23243e-06 9.23057e-06 9.22707e-06 9.22273e-06 9.21787e-06 9.21272e-06 9.20744e-06 9.20203e-06 9.19646e-06 9.19082e-06 9.18513e-06 9.17944e-06 9.1738e-06 9.16826e-06 9.16288e-06 9.1577e-06 9.15277e-06 9.14811e-06 9.14374e-06 9.13968e-06 9.13593e-06 9.1325e-06 9.12939e-06 9.12659e-06 9.12411e-06 9.12194e-06 9.12006e-06 9.11846e-06 9.11711e-06 9.11601e-06 9.11511e-06 9.11438e-06 9.11379e-06 9.1133e-06 9.11286e-06 9.11242e-06 9.11193e-06 9.11131e-06 9.11053e-06 9.10958e-06 9.1085e-06 9.10744e-06 9.10655e-06 9.10602e-06 9.10592e-06 9.10612e-06 9.10633e-06 9.10611e-06 9.10508e-06 9.103e-06 9.24287e-06 9.28109e-06 9.30777e-06 9.33221e-06 9.35882e-06 9.38461e-06 9.43581e-06 9.48977e-06 9.89229e-06 9.22111e-06 5.40856e-05 9.11864e-06 9.12541e-06 9.13438e-06 9.13463e-06 9.13106e-06 9.12313e-06 9.11807e-06 9.11221e-06 9.10951e-06 9.10818e-06 9.10787e-06 9.10812e-06 9.10858e-06 9.10915e-06 9.10981e-06 9.11051e-06 9.11125e-06 9.11207e-06 9.11298e-06 9.11401e-06 9.11519e-06 9.11654e-06 9.11809e-06 9.11985e-06 9.12185e-06 9.1241e-06 9.12665e-06 9.12951e-06 9.13273e-06 9.13633e-06 9.14033e-06 9.14479e-06 9.14972e-06 9.15515e-06 9.16113e-06 9.16767e-06 9.17479e-06 9.18254e-06 9.19096e-06 9.20005e-06 9.20984e-06 9.2203e-06 9.23145e-06 9.24326e-06 9.25568e-06 9.26871e-06 9.28227e-06 9.29616e-06 9.3107e-06 9.3262e-06 9.34326e-06 9.36225e-06 9.38339e-06 9.40681e-06 9.4319e-06 9.45781e-06 9.49408e-06 9.51474e-06 9.57656e-06 9.59538e-06 9.69591e-06 9.75782e-06 1.02801e-05 1.05459e-05 6.25839e-05 9.19251e-06 9.18675e-06 9.22543e-06 9.24065e-06 9.24322e-06 9.24171e-06 9.23825e-06 9.23364e-06 9.22844e-06 9.22295e-06 9.21726e-06 9.21143e-06 9.20545e-06 9.19937e-06 9.19325e-06 9.18713e-06 9.18106e-06 9.1751e-06 9.16929e-06 9.16369e-06 9.15834e-06 9.15326e-06 9.14849e-06 9.14404e-06 9.13992e-06 9.13614e-06 9.13268e-06 9.12956e-06 9.12676e-06 9.12429e-06 9.12213e-06 9.12027e-06 9.11869e-06 9.11738e-06 9.11631e-06 9.11544e-06 9.11476e-06 9.11421e-06 9.11378e-06 9.1134e-06 9.11302e-06 9.11257e-06 9.112e-06 9.11124e-06 9.11027e-06 9.10914e-06 9.10797e-06 9.10695e-06 9.10627e-06 9.10606e-06 9.10624e-06 9.10649e-06 9.10634e-06 9.10534e-06 9.10316e-06 9.25171e-06 9.29041e-06 9.31724e-06 9.34284e-06 9.36801e-06 9.4118e-06 9.44875e-06 9.79357e-06 9.10285e-06 4.50043e-05 9.11579e-06 9.12153e-06 9.13166e-06 9.13509e-06 9.13213e-06 9.1282e-06 9.11989e-06 9.11486e-06 9.11128e-06 9.10919e-06 9.10828e-06 9.10818e-06 9.1085e-06 9.10903e-06 9.10967e-06 9.1104e-06 9.11119e-06 9.11205e-06 9.11301e-06 9.11409e-06 9.11531e-06 9.1167e-06 9.11828e-06 9.12007e-06 9.12209e-06 9.12436e-06 9.12692e-06 9.12978e-06 9.13298e-06 9.13652e-06 9.14044e-06 9.14476e-06 9.14951e-06 9.15469e-06 9.16032e-06 9.16643e-06 9.17305e-06 9.18021e-06 9.18795e-06 9.19633e-06 9.20528e-06 9.21472e-06 9.22478e-06 9.23542e-06 9.24656e-06 9.25824e-06 9.27045e-06 9.2832e-06 9.29701e-06 9.31261e-06 9.33037e-06 9.3501e-06 9.37148e-06 9.39472e-06 9.41948e-06 9.44466e-06 9.47861e-06 9.49755e-06 9.55274e-06 9.57187e-06 9.66021e-06 9.7114e-06 1.01425e-05 9.59006e-06 5.24391e-05 9.19894e-06 9.19342e-06 9.23441e-06 9.25111e-06 9.25415e-06 9.25295e-06 9.24966e-06 9.24487e-06 9.23928e-06 9.23343e-06 9.22737e-06 9.22114e-06 9.21476e-06 9.20825e-06 9.20169e-06 9.19513e-06 9.18862e-06 9.18222e-06 9.17598e-06 9.16994e-06 9.16416e-06 9.15866e-06 9.15347e-06 9.14862e-06 9.14412e-06 9.13996e-06 9.13615e-06 9.13269e-06 9.12957e-06 9.12679e-06 9.12433e-06 9.1222e-06 9.12037e-06 9.11883e-06 9.11755e-06 9.11651e-06 9.11569e-06 9.11505e-06 9.11456e-06 9.11419e-06 9.11387e-06 9.11356e-06 9.11319e-06 9.11267e-06 9.11195e-06 9.11099e-06 9.10982e-06 9.10856e-06 9.1074e-06 9.10658e-06 9.10624e-06 9.10636e-06 9.10665e-06 9.10658e-06 9.10561e-06 9.10334e-06 9.26034e-06 9.29896e-06 9.32649e-06 9.3511e-06 9.38894e-06 9.41169e-06 9.69773e-06 9.00592e-06 3.78875e-05 9.11399e-06 9.11878e-06 9.12907e-06 9.13294e-06 9.13352e-06 9.12759e-06 9.12274e-06 9.11753e-06 9.1134e-06 9.11061e-06 9.10901e-06 9.10839e-06 9.1084e-06 9.10877e-06 9.10933e-06 9.11002e-06 9.11081e-06 9.11168e-06 9.11264e-06 9.11373e-06 9.11496e-06 9.11635e-06 9.11793e-06 9.11971e-06 9.12172e-06 9.12398e-06 9.1265e-06 9.12931e-06 9.13242e-06 9.13585e-06 9.13962e-06 9.14374e-06 9.14822e-06 9.15307e-06 9.1583e-06 9.16391e-06 9.16994e-06 9.17643e-06 9.18347e-06 9.19117e-06 9.19939e-06 9.20803e-06 9.21727e-06 9.22705e-06 9.23738e-06 9.24826e-06 9.26001e-06 9.27295e-06 9.28785e-06 9.30511e-06 9.32466e-06 9.34598e-06 9.36871e-06 9.39321e-06 9.41912e-06 9.44523e-06 9.47859e-06 9.49707e-06 9.54787e-06 9.5655e-06 9.64822e-06 9.69716e-06 1.0083e-05 9.20245e-06 4.36116e-05 9.20519e-06 9.19996e-06 9.24336e-06 9.26125e-06 9.26519e-06 9.26425e-06 9.26114e-06 9.25632e-06 9.2504e-06 9.24413e-06 9.23773e-06 9.23114e-06 9.22436e-06 9.21744e-06 9.21044e-06 9.20343e-06 9.19648e-06 9.18962e-06 9.18293e-06 9.17645e-06 9.17023e-06 9.16429e-06 9.15868e-06 9.15342e-06 9.14851e-06 9.14398e-06 9.1398e-06 9.13599e-06 9.13253e-06 9.12943e-06 9.12667e-06 9.12425e-06 9.12215e-06 9.12036e-06 9.11885e-06 9.11762e-06 9.11663e-06 9.11585e-06 9.11526e-06 9.11483e-06 9.11452e-06 9.11429e-06 9.11406e-06 9.11377e-06 9.11333e-06 9.11267e-06 9.11174e-06 9.11055e-06 9.10922e-06 9.10793e-06 9.10694e-06 9.10646e-06 9.1065e-06 9.1068e-06 9.10681e-06 9.1059e-06 9.10353e-06 9.26842e-06 9.30718e-06 9.3339e-06 9.36729e-06 9.37924e-06 9.61448e-06 8.90774e-06 3.22657e-05 9.1133e-06 9.1166e-06 9.12571e-06 9.12914e-06 9.12982e-06 9.12858e-06 9.12459e-06 9.11994e-06 9.11573e-06 9.11247e-06 9.11026e-06 9.10903e-06 9.10859e-06 9.10867e-06 9.10905e-06 9.10963e-06 9.11036e-06 9.11119e-06 9.11213e-06 9.11319e-06 9.1144e-06 9.11577e-06 9.11732e-06 9.11907e-06 9.12104e-06 9.12325e-06 9.1257e-06 9.12843e-06 9.13143e-06 9.13472e-06 9.13831e-06 9.14222e-06 9.14644e-06 9.15097e-06 9.15582e-06 9.16098e-06 9.16647e-06 9.17236e-06 9.17878e-06 9.18586e-06 9.19343e-06 9.20148e-06 9.21004e-06 9.21927e-06 9.22927e-06 9.24029e-06 9.25272e-06 9.26714e-06 9.28401e-06 9.30327e-06 9.32442e-06 9.34717e-06 9.37141e-06 9.39739e-06 9.42472e-06 9.4522e-06 9.48571e-06 9.50625e-06 9.55258e-06 9.56649e-06 9.64756e-06 9.69332e-06 1.00621e-05 9.16283e-06 3.68643e-05 9.21169e-06 9.20629e-06 9.25229e-06 9.27109e-06 9.27605e-06 9.2757e-06 9.27267e-06 9.26787e-06 9.26177e-06 9.25508e-06 9.2483e-06 9.24139e-06 9.23425e-06 9.22693e-06 9.2195e-06 9.21205e-06 9.20463e-06 9.19732e-06 9.19017e-06 9.18324e-06 9.17656e-06 9.17017e-06 9.16412e-06 9.15843e-06 9.15312e-06 9.14818e-06 9.14363e-06 9.13946e-06 9.13565e-06 9.13222e-06 9.12915e-06 9.12643e-06 9.12405e-06 9.12199e-06 9.12024e-06 9.11878e-06 9.11759e-06 9.11665e-06 9.11592e-06 9.11539e-06 9.11502e-06 9.11479e-06 9.11463e-06 9.11449e-06 9.11429e-06 9.11395e-06 9.11337e-06 9.11249e-06 9.11132e-06 9.10994e-06 9.10853e-06 9.10738e-06 9.10673e-06 9.10666e-06 9.10696e-06 9.10705e-06 9.1062e-06 9.10375e-06 9.27617e-06 9.31422e-06 9.34662e-06 9.35211e-06 9.54673e-06 8.83141e-06 2.76461e-05 9.11281e-06 9.1152e-06 9.11982e-06 9.1248e-06 9.12824e-06 9.12799e-06 9.12549e-06 9.12177e-06 9.11788e-06 9.11449e-06 9.11188e-06 9.11012e-06 9.10918e-06 9.10887e-06 9.10899e-06 9.10939e-06 9.11e-06 9.11076e-06 9.11166e-06 9.11268e-06 9.11384e-06 9.11517e-06 9.11668e-06 9.11837e-06 9.12028e-06 9.12242e-06 9.12479e-06 9.12741e-06 9.13028e-06 9.13344e-06 9.13687e-06 9.14058e-06 9.14457e-06 9.14885e-06 9.1534e-06 9.15823e-06 9.16332e-06 9.16872e-06 9.17458e-06 9.18096e-06 9.18788e-06 9.1954e-06 9.20362e-06 9.21273e-06 9.22297e-06 9.2347e-06 9.24836e-06 9.26429e-06 9.28243e-06 9.30238e-06 9.32381e-06 9.34677e-06 9.37128e-06 9.39742e-06 9.42484e-06 9.45245e-06 9.48508e-06 9.50687e-06 9.54886e-06 9.55932e-06 9.63691e-06 9.67241e-06 1.00246e-05 9.10749e-06 3.15879e-05 9.21902e-06 9.21291e-06 9.26103e-06 9.28079e-06 9.28657e-06 9.28711e-06 9.28429e-06 9.27944e-06 9.27327e-06 9.26628e-06 9.25909e-06 9.25187e-06 9.2444e-06 9.23671e-06 9.22888e-06 9.22098e-06 9.21311e-06 9.20533e-06 9.19771e-06 9.19031e-06 9.18316e-06 9.17632e-06 9.16981e-06 9.16368e-06 9.15794e-06 9.15259e-06 9.14764e-06 9.1431e-06 9.13894e-06 9.13517e-06 9.13177e-06 9.12875e-06 9.12608e-06 9.12374e-06 9.12174e-06 9.12004e-06 9.11862e-06 9.11748e-06 9.11658e-06 9.11591e-06 9.11544e-06 9.11513e-06 9.11497e-06 9.11489e-06 9.11485e-06 9.11476e-06 9.11452e-06 9.11404e-06 9.11325e-06 9.11211e-06 9.11071e-06 9.10921e-06 9.10789e-06 9.10705e-06 9.10686e-06 9.10713e-06 9.10729e-06 9.10652e-06 9.104e-06 9.2832e-06 9.32442e-06 9.32926e-06 9.49198e-06 8.80238e-06 2.36621e-05 9.11271e-06 9.11201e-06 9.11731e-06 9.12169e-06 9.12523e-06 9.12648e-06 9.12542e-06 9.12285e-06 9.11962e-06 9.11646e-06 9.11374e-06 9.11165e-06 9.11027e-06 9.10954e-06 9.10933e-06 9.10948e-06 9.1099e-06 9.11053e-06 9.11132e-06 9.11227e-06 9.11336e-06 9.11462e-06 9.11605e-06 9.11767e-06 9.11948e-06 9.12151e-06 9.12376e-06 9.12624e-06 9.12897e-06 9.13195e-06 9.13518e-06 9.13868e-06 9.14244e-06 9.14647e-06 9.15076e-06 9.15532e-06 9.16013e-06 9.16522e-06 9.17064e-06 9.17655e-06 9.18311e-06 9.19046e-06 9.19872e-06 9.20808e-06 9.2188e-06 9.23121e-06 9.24552e-06 9.26167e-06 9.27932e-06 9.29817e-06 9.31826e-06 9.33974e-06 9.36255e-06 9.3867e-06 9.41191e-06 9.43717e-06 9.46647e-06 9.48706e-06 9.52285e-06 9.53137e-06 9.59888e-06 9.62128e-06 9.93784e-06 9.03762e-06 2.71632e-05 9.22617e-06 9.2204e-06 9.26925e-06 9.29017e-06 9.29687e-06 9.29823e-06 9.29597e-06 9.29106e-06 9.2848e-06 9.27767e-06 9.27014e-06 9.26256e-06 9.25481e-06 9.24679e-06 9.23856e-06 9.23024e-06 9.22192e-06 9.21367e-06 9.20557e-06 9.19768e-06 9.19005e-06 9.18274e-06 9.17577e-06 9.16918e-06 9.163e-06 9.15722e-06 9.15186e-06 9.14692e-06 9.1424e-06 9.13828e-06 9.13455e-06 9.13121e-06 9.12824e-06 9.12563e-06 9.12335e-06 9.12139e-06 9.11974e-06 9.11838e-06 9.11729e-06 9.11644e-06 9.11582e-06 9.1154e-06 9.11516e-06 9.11507e-06 9.11508e-06 9.11514e-06 9.11516e-06 9.11504e-06 9.11468e-06 9.11399e-06 9.11293e-06 9.11153e-06 9.10995e-06 9.10848e-06 9.10744e-06 9.10709e-06 9.10731e-06 9.10752e-06 9.10684e-06 9.10427e-06 9.2922e-06 9.31385e-06 9.44725e-06 8.82596e-06 2.01847e-05 9.11135e-06 9.11195e-06 9.11481e-06 9.11843e-06 9.12227e-06 9.12447e-06 9.12465e-06 9.12318e-06 9.12075e-06 9.118e-06 9.11542e-06 9.11322e-06 9.11157e-06 9.11049e-06 9.10993e-06 9.10979e-06 9.10999e-06 9.11044e-06 9.11109e-06 9.11193e-06 9.11295e-06 9.11412e-06 9.11546e-06 9.11699e-06 9.1187e-06 9.12061e-06 9.12273e-06 9.12507e-06 9.12763e-06 9.13043e-06 9.13346e-06 9.13674e-06 9.14028e-06 9.14406e-06 9.14811e-06 9.15247e-06 9.15715e-06 9.16221e-06 9.16771e-06 9.17374e-06 9.1805e-06 9.18819e-06 9.19685e-06 9.20667e-06 9.21784e-06 9.2305e-06 9.24456e-06 9.25976e-06 9.27585e-06 9.29286e-06 9.31093e-06 9.33003e-06 9.35006e-06 9.371e-06 9.39257e-06 9.41382e-06 9.43801e-06 9.45512e-06 9.48347e-06 9.49007e-06 9.54291e-06 9.55853e-06 9.81951e-06 8.93748e-06 2.32479e-05 9.23458e-06 9.22711e-06 9.27721e-06 9.29881e-06 9.30707e-06 9.30915e-06 9.30754e-06 9.30283e-06 9.29641e-06 9.28918e-06 9.28145e-06 9.27353e-06 9.26548e-06 9.25717e-06 9.24858e-06 9.23985e-06 9.23108e-06 9.22236e-06 9.21377e-06 9.20538e-06 9.19726e-06 9.18945e-06 9.18201e-06 9.17495e-06 9.16831e-06 9.16208e-06 9.1563e-06 9.15095e-06 9.14604e-06 9.14157e-06 9.13751e-06 9.13384e-06 9.13056e-06 9.12766e-06 9.1251e-06 9.12288e-06 9.12098e-06 9.11938e-06 9.11807e-06 9.11702e-06 9.11622e-06 9.11565e-06 9.11529e-06 9.11511e-06 9.11509e-06 9.11519e-06 9.11535e-06 9.11548e-06 9.11549e-06 9.11527e-06 9.11472e-06 9.11376e-06 9.1124e-06 9.11077e-06 9.10915e-06 9.10792e-06 9.10738e-06 9.10751e-06 9.10777e-06 9.10718e-06 9.10457e-06 9.28695e-06 9.40788e-06 8.89157e-06 1.72148e-05 9.11041e-06 9.11095e-06 9.11286e-06 9.11562e-06 9.11916e-06 9.12192e-06 9.12311e-06 9.12273e-06 9.12122e-06 9.11911e-06 9.11689e-06 9.11483e-06 9.1131e-06 9.11179e-06 9.11094e-06 9.11051e-06 9.11043e-06 9.11064e-06 9.11111e-06 9.11179e-06 9.11266e-06 9.11371e-06 9.11495e-06 9.11636e-06 9.11797e-06 9.11976e-06 9.12176e-06 9.12396e-06 9.12638e-06 9.12902e-06 9.13189e-06 9.13502e-06 9.1384e-06 9.14206e-06 9.14601e-06 9.15036e-06 9.15514e-06 9.16047e-06 9.16639e-06 9.17298e-06 9.18033e-06 9.18854e-06 9.19771e-06 9.20796e-06 9.21933e-06 9.23176e-06 9.24504e-06 9.25898e-06 9.27358e-06 9.28893e-06 9.30501e-06 9.32167e-06 9.33879e-06 9.35626e-06 9.37378e-06 9.39052e-06 9.40904e-06 9.42172e-06 9.44242e-06 9.44539e-06 9.48494e-06 9.49208e-06 9.69951e-06 8.84744e-06 1.9793e-05 9.2351e-06 9.23564e-06 9.28444e-06 9.30712e-06 9.31672e-06 9.32009e-06 9.31891e-06 9.31466e-06 9.3082e-06 9.30082e-06 9.29298e-06 9.28482e-06 9.27646e-06 9.26787e-06 9.25896e-06 9.24984e-06 9.24063e-06 9.23143e-06 9.22235e-06 9.21346e-06 9.20483e-06 9.19651e-06 9.18857e-06 9.18102e-06 9.1739e-06 9.16721e-06 9.16098e-06 9.15521e-06 9.1499e-06 9.14505e-06 9.14064e-06 9.13665e-06 9.13306e-06 9.12985e-06 9.12701e-06 9.12452e-06 9.12236e-06 9.12052e-06 9.11897e-06 9.1177e-06 9.1167e-06 9.11594e-06 9.11541e-06 9.1151e-06 9.11498e-06 9.11504e-06 9.11522e-06 9.11547e-06 9.11572e-06 9.11587e-06 9.11581e-06 9.1154e-06 9.11458e-06 9.1133e-06 9.11166e-06 9.10991e-06 9.10848e-06 9.10773e-06 9.10774e-06 9.10802e-06 9.10753e-06 9.10491e-06 9.35597e-06 8.97779e-06 1.47608e-05 9.10949e-06 9.11051e-06 9.11159e-06 9.11352e-06 9.1166e-06 9.11953e-06 9.12137e-06 9.12183e-06 9.1211e-06 9.11962e-06 9.11781e-06 9.11599e-06 9.11434e-06 9.11298e-06 9.11197e-06 9.11131e-06 9.11101e-06 9.111e-06 9.11128e-06 9.11181e-06 9.11254e-06 9.11347e-06 9.1146e-06 9.11592e-06 9.11743e-06 9.11914e-06 9.12105e-06 9.12318e-06 9.12553e-06 9.12811e-06 9.13094e-06 9.13405e-06 9.13744e-06 9.14117e-06 9.14529e-06 9.14984e-06 9.15493e-06 9.16062e-06 9.16695e-06 9.174e-06 9.18179e-06 9.19041e-06 9.19994e-06 9.21039e-06 9.22169e-06 9.23369e-06 9.24626e-06 9.25937e-06 9.27307e-06 9.28732e-06 9.30196e-06 9.31684e-06 9.33176e-06 9.34661e-06 9.36104e-06 9.37437e-06 9.3886e-06 9.3981e-06 9.41316e-06 9.41424e-06 9.44427e-06 9.43924e-06 9.61053e-06 8.8132e-06 1.68718e-05 9.28162e-06 9.23767e-06 9.29373e-06 9.31446e-06 9.32617e-06 9.33076e-06 9.3304e-06 9.32639e-06 9.32018e-06 9.3127e-06 9.30475e-06 9.29645e-06 9.28782e-06 9.27893e-06 9.26973e-06 9.26024e-06 9.25059e-06 9.24093e-06 9.23134e-06 9.22193e-06 9.21277e-06 9.20393e-06 9.19547e-06 9.18742e-06 9.1798e-06 9.17263e-06 9.16593e-06 9.15972e-06 9.154e-06 9.14875e-06 9.14398e-06 9.13965e-06 9.13574e-06 9.13222e-06 9.1291e-06 9.12633e-06 9.1239e-06 9.12181e-06 9.12002e-06 9.11852e-06 9.11729e-06 9.11633e-06 9.11561e-06 9.11512e-06 9.11486e-06 9.11479e-06 9.1149e-06 9.11516e-06 9.11552e-06 9.11588e-06 9.11618e-06 9.11627e-06 9.11604e-06 9.11538e-06 9.11422e-06 9.1126e-06 9.11076e-06 9.10913e-06 9.10816e-06 9.10801e-06 9.10828e-06 9.10788e-06 9.10529e-06 9.05775e-06 1.28087e-05 9.10871e-06 9.11013e-06 9.11063e-06 9.11172e-06 9.11407e-06 9.1168e-06 9.11902e-06 9.12022e-06 9.12032e-06 9.11958e-06 9.11836e-06 9.11696e-06 9.11556e-06 9.11431e-06 9.11327e-06 9.11251e-06 9.11203e-06 9.11184e-06 9.11193e-06 9.11227e-06 9.11284e-06 9.11363e-06 9.11462e-06 9.11583e-06 9.11725e-06 9.11888e-06 9.12074e-06 9.12283e-06 9.12516e-06 9.12776e-06 9.13065e-06 9.13385e-06 9.13739e-06 9.14133e-06 9.14573e-06 9.15063e-06 9.15609e-06 9.16214e-06 9.16881e-06 9.17615e-06 9.18421e-06 9.19303e-06 9.20263e-06 9.21295e-06 9.22388e-06 9.23533e-06 9.24727e-06 9.25969e-06 9.27253e-06 9.28565e-06 9.29888e-06 9.31205e-06 9.32496e-06 9.33747e-06 9.34929e-06 9.35991e-06 9.37085e-06 9.37804e-06 9.38912e-06 9.38923e-06 9.41142e-06 9.39534e-06 9.53839e-06 8.83447e-06 1.44851e-05 9.11565e-06 9.27879e-06 9.29051e-06 9.3248e-06 9.33401e-06 9.34144e-06 9.34182e-06 9.33837e-06 9.33232e-06 9.32497e-06 9.31691e-06 9.30848e-06 9.29966e-06 9.29047e-06 9.28096e-06 9.27112e-06 9.26106e-06 9.25091e-06 9.24082e-06 9.23088e-06 9.22118e-06 9.21179e-06 9.20278e-06 9.1942e-06 9.18606e-06 9.17838e-06 9.1712e-06 9.16452e-06 9.15836e-06 9.15271e-06 9.14756e-06 9.14287e-06 9.13863e-06 9.13481e-06 9.13138e-06 9.12833e-06 9.12564e-06 9.12328e-06 9.12124e-06 9.11951e-06 9.11805e-06 9.11687e-06 9.11593e-06 9.11524e-06 9.11479e-06 9.11456e-06 9.11453e-06 9.1147e-06 9.11503e-06 9.11548e-06 9.11596e-06 9.11639e-06 9.11666e-06 9.11662e-06 9.11615e-06 9.11513e-06 9.11358e-06 9.11169e-06 9.10989e-06 9.10868e-06 9.10835e-06 9.10858e-06 9.10825e-06 9.1057e-06 1.13189e-05 9.10797e-06 9.10976e-06 9.11006e-06 9.11066e-06 9.11244e-06 9.11489e-06 9.11719e-06 9.11875e-06 9.11936e-06 9.11914e-06 9.11836e-06 9.11729e-06 9.11614e-06 9.11504e-06 9.11408e-06 9.11333e-06 9.11281e-06 9.11255e-06 9.11255e-06 9.11279e-06 9.11327e-06 9.11398e-06 9.11491e-06 9.11606e-06 9.11745e-06 9.11906e-06 9.12091e-06 9.12302e-06 9.12541e-06 9.12808e-06 9.13108e-06 9.13444e-06 9.13817e-06 9.14235e-06 9.147e-06 9.15216e-06 9.15787e-06 9.16415e-06 9.17104e-06 9.17858e-06 9.1868e-06 9.19573e-06 9.20532e-06 9.2155e-06 9.22621e-06 9.2374e-06 9.24907e-06 9.26113e-06 9.27347e-06 9.28593e-06 9.29837e-06 9.31059e-06 9.32242e-06 9.33372e-06 9.34427e-06 9.35374e-06 9.36323e-06 9.36972e-06 9.37886e-06 9.37955e-06 9.3951e-06 9.36948e-06 9.49003e-06 8.90634e-06 1.26063e-05 1.03319e-05 9.12933e-06 9.35438e-06 9.31521e-06 9.34633e-06 9.34926e-06 9.35331e-06 9.34973e-06 9.34441e-06 9.33712e-06 9.32919e-06 9.32069e-06 9.31174e-06 9.30234e-06 9.29254e-06 9.28238e-06 9.27194e-06 9.26134e-06 9.25075e-06 9.24027e-06 9.23003e-06 9.22008e-06 9.21051e-06 9.20136e-06 9.19268e-06 9.18446e-06 9.17676e-06 9.1696e-06 9.16299e-06 9.15692e-06 9.15137e-06 9.14632e-06 9.14174e-06 9.13759e-06 9.13387e-06 9.13053e-06 9.12757e-06 9.12495e-06 9.12267e-06 9.12069e-06 9.119e-06 9.11759e-06 9.11643e-06 9.11552e-06 9.11486e-06 9.11443e-06 9.11422e-06 9.11423e-06 9.11444e-06 9.11484e-06 9.11537e-06 9.11596e-06 9.11654e-06 9.11698e-06 9.11715e-06 9.11689e-06 9.11606e-06 9.11461e-06 9.1127e-06 9.11074e-06 9.10928e-06 9.10872e-06 9.10888e-06 9.10862e-06 9.10617e-06 9.10727e-06 9.10946e-06 9.10963e-06 9.10966e-06 9.11066e-06 9.11253e-06 9.11468e-06 9.11651e-06 9.11767e-06 9.11811e-06 9.11795e-06 9.11741e-06 9.11666e-06 9.11585e-06 9.11507e-06 9.11441e-06 9.11393e-06 9.11365e-06 9.1136e-06 9.11378e-06 9.11418e-06 9.11483e-06 9.1157e-06 9.11681e-06 9.11817e-06 9.11978e-06 9.12166e-06 9.12382e-06 9.1263e-06 9.12909e-06 9.13223e-06 9.13576e-06 9.13969e-06 9.14406e-06 9.1489e-06 9.15424e-06 9.16011e-06 9.16653e-06 9.17353e-06 9.18114e-06 9.18935e-06 9.19815e-06 9.2075e-06 9.21734e-06 9.22766e-06 9.23841e-06 9.24953e-06 9.26092e-06 9.27248e-06 9.28406e-06 9.29552e-06 9.30668e-06 9.31745e-06 9.32774e-06 9.33743e-06 9.34631e-06 9.35511e-06 9.36151e-06 9.36933e-06 9.36939e-06 9.37838e-06 9.34633e-06 9.44266e-06 8.9943e-06 1.11633e-05 1.02212e-05 9.08146e-06 9.40624e-06 9.33209e-06 9.36718e-06 9.36374e-06 9.36473e-06 9.35809e-06 9.35172e-06 9.34338e-06 9.33476e-06 9.32551e-06 9.31573e-06 9.30549e-06 9.29485e-06 9.2839e-06 9.27274e-06 9.26155e-06 9.25046e-06 9.23957e-06 9.229e-06 9.2188e-06 9.20905e-06 9.19977e-06 9.191e-06 9.18276e-06 9.17509e-06 9.16801e-06 9.1615e-06 9.15554e-06 9.15011e-06 9.14517e-06 9.1407e-06 9.13666e-06 9.13304e-06 9.1298e-06 9.12692e-06 9.12438e-06 9.12215e-06 9.12022e-06 9.11857e-06 9.11718e-06 9.11604e-06 9.11514e-06 9.11448e-06 9.11405e-06 9.11385e-06 9.11387e-06 9.1141e-06 9.11454e-06 9.11513e-06 9.11581e-06 9.11652e-06 9.11713e-06 9.11752e-06 9.11751e-06 9.11693e-06 9.11567e-06 9.11384e-06 9.11179e-06 9.1101e-06 9.10926e-06 9.10927e-06 9.10902e-06 9.10668e-06 ) ; boundaryField { inlet-l { type calculated; value uniform 9.10145e-06; } airfoil-l1 { type nutUSpaldingWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 71 ( 0.000146562 0.000162077 0.000184894 0.00020532 0.00021976 0.000229057 0.000234549 0.000237308 0.000238079 0.000237427 0.000235685 0.000233318 0.000230038 0.000226114 0.000221656 0.000216817 0.000211637 0.000206185 0.00020051 0.000194728 0.000188919 0.000183165 0.000177526 0.000172045 0.000166709 0.000161522 0.000156447 0.000151463 0.000146596 0.00014188 0.000137369 0.000133156 0.000129346 0.000126035 0.000123315 0.000121203 0.000119833 0.000118922 0.0001185 0.000118534 0.000118957 0.000119723 0.000120803 0.000122084 0.000123499 0.000125185 0.000127011 0.000128887 0.000130787 0.000132638 0.000134425 0.000136061 0.00013757 0.000138575 0.000138866 0.000138561 0.00013747 0.000135445 0.00013245 0.000128559 0.000123798 0.000118322 0.000112426 0.00010651 0.000101032 9.64918e-05 9.32524e-05 9.14572e-05 9.10009e-05 9.15184e-05 9.15142e-05 ) ; } empty-1 { type empty; } empty-2 { type empty; } wall-l1 { type calculated; value nonuniform List<scalar> 104 ( 9.11372e-06 9.11447e-06 9.1156e-06 9.11698e-06 9.11925e-06 9.1224e-06 9.12589e-06 9.12861e-06 9.12994e-06 9.13057e-06 9.13201e-06 9.13518e-06 9.13924e-06 9.1422e-06 9.14251e-06 9.14015e-06 9.13587e-06 9.13026e-06 9.12368e-06 9.11719e-06 9.11281e-06 9.1124e-06 9.11625e-06 9.12273e-06 9.12942e-06 9.13451e-06 9.13735e-06 9.13822e-06 9.13773e-06 9.1364e-06 9.13463e-06 9.13271e-06 9.13094e-06 9.12938e-06 9.128e-06 9.12675e-06 9.1256e-06 9.12449e-06 9.12338e-06 9.12226e-06 9.12114e-06 9.12003e-06 9.11894e-06 9.11786e-06 9.11681e-06 9.11577e-06 9.11475e-06 9.11377e-06 9.1128e-06 9.11188e-06 9.11099e-06 9.11013e-06 9.10933e-06 9.10857e-06 9.10786e-06 9.1072e-06 9.10659e-06 9.10602e-06 9.10551e-06 9.10504e-06 9.10461e-06 9.10423e-06 9.10388e-06 9.10357e-06 9.1033e-06 9.10305e-06 9.10284e-06 9.10265e-06 9.10248e-06 9.10234e-06 9.10221e-06 9.1021e-06 9.102e-06 9.10192e-06 9.10185e-06 9.10179e-06 9.10174e-06 9.10169e-06 9.10166e-06 9.10163e-06 9.1016e-06 9.10158e-06 9.10156e-06 9.10154e-06 9.10153e-06 9.10151e-06 9.1015e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10147e-06 9.10146e-06 9.10146e-06 9.10146e-06 9.10145e-06 9.10145e-06 9.10145e-06 9.10144e-06 9.10144e-06 9.10144e-06 9.10143e-06 9.10143e-06 9.10143e-06 9.10142e-06 ) ; } airfoil-l2 { type nutUSpaldingWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 104 ( 9.61966e-05 0.000101941 0.000105587 0.000107753 0.000108846 0.000109149 0.000109021 0.000108539 0.000107834 0.00010712 0.000106542 0.000106187 0.00010607 0.000106167 0.000106415 0.000106732 0.00010702 0.000107247 0.00010736 0.000107357 0.000107252 0.000107072 0.000106842 0.000106587 0.000106333 0.000106092 0.000105863 0.000105644 0.000105431 0.000105216 0.000104994 0.000104779 0.000104569 0.000104354 0.000104141 0.00010394 0.000103751 0.000103575 0.000103411 0.000103255 0.000103107 0.000102966 0.000102829 0.000102697 0.000102568 0.000102437 0.000102301 0.000102161 0.000102018 0.000101867 0.000101706 0.000101537 0.000101358 0.000101171 0.000100972 0.00010076 0.000100532 0.000100293 0.000100042 9.97773e-05 9.9495e-05 9.92015e-05 9.88979e-05 9.85742e-05 9.824e-05 9.78931e-05 9.75322e-05 9.71576e-05 9.67735e-05 9.63831e-05 9.59799e-05 9.55599e-05 9.51334e-05 9.46991e-05 9.42447e-05 9.37912e-05 9.33267e-05 9.28453e-05 9.2356e-05 9.18551e-05 9.1342e-05 9.081e-05 9.02724e-05 8.97143e-05 8.91345e-05 8.85367e-05 8.79192e-05 8.72722e-05 8.65863e-05 8.58754e-05 8.51228e-05 8.43191e-05 8.34568e-05 8.2526e-05 8.15121e-05 8.0394e-05 7.91463e-05 7.77393e-05 7.61316e-05 7.42444e-05 7.20294e-05 6.92218e-05 6.60453e-05 6.00543e-05 ) ; } empty-3 { type empty; } empty-4 { type empty; } wall-l2 { type calculated; value nonuniform List<scalar> 51 ( 9.10142e-06 9.10141e-06 9.10141e-06 9.10142e-06 9.10143e-06 9.10145e-06 9.10146e-06 9.10148e-06 9.10151e-06 9.10155e-06 9.1016e-06 9.10164e-06 9.10167e-06 9.10172e-06 9.10182e-06 9.10194e-06 9.10206e-06 9.10215e-06 9.10222e-06 9.10233e-06 9.10249e-06 9.10272e-06 9.10298e-06 9.10322e-06 9.10342e-06 9.1036e-06 9.10376e-06 9.10393e-06 9.10411e-06 9.10429e-06 9.10449e-06 9.10469e-06 9.10491e-06 9.10515e-06 9.10541e-06 9.10569e-06 9.106e-06 9.10632e-06 9.10664e-06 9.10696e-06 9.10729e-06 9.10763e-06 9.108e-06 9.10841e-06 9.10884e-06 9.10929e-06 9.10974e-06 9.11022e-06 9.11075e-06 9.11132e-06 9.1121e-06 ) ; } outlet-l { type calculated; value nonuniform List<scalar> 65 ( 9.1121e-06 9.10462e-06 9.10837e-06 9.10583e-06 9.10672e-06 9.10642e-06 9.10694e-06 9.10746e-06 9.10835e-06 9.10942e-06 9.1106e-06 9.11162e-06 9.11265e-06 9.11414e-06 9.11932e-06 9.12943e-06 9.14402e-06 9.16439e-06 9.19233e-06 9.22977e-06 9.27882e-06 9.34157e-06 9.41998e-06 9.51592e-06 9.63098e-06 9.76648e-06 9.92326e-06 1.01017e-05 1.03017e-05 1.0523e-05 1.07648e-05 1.10261e-05 1.13053e-05 1.1601e-05 1.19113e-05 1.22342e-05 1.25675e-05 1.29087e-05 1.32551e-05 1.36042e-05 1.39528e-05 1.42973e-05 1.46333e-05 1.49575e-05 1.52659e-05 1.55528e-05 1.58122e-05 1.60385e-05 1.62249e-05 1.6366e-05 1.64633e-05 1.6524e-05 1.65564e-05 1.65743e-05 1.66011e-05 1.66802e-05 1.70058e-05 1.8619e-05 2.5189e-05 4.30119e-05 6.86852e-05 8.53149e-05 8.6919e-05 7.76216e-05 6.59288e-05 ) ; } empty-5 { type empty; } empty-6 { type empty; } outlet-h { type calculated; value nonuniform List<scalar> 65 ( 6.36189e-05 7.44864e-05 8.62613e-05 8.97232e-05 7.992e-05 5.71115e-05 3.39501e-05 2.20084e-05 1.80754e-05 1.7029e-05 1.67417e-05 1.66415e-05 1.65872e-05 1.65327e-05 1.64566e-05 1.63486e-05 1.62007e-05 1.60111e-05 1.57834e-05 1.5524e-05 1.52383e-05 1.49318e-05 1.46099e-05 1.42762e-05 1.39341e-05 1.35879e-05 1.32412e-05 1.28968e-05 1.25575e-05 1.22259e-05 1.19046e-05 1.15957e-05 1.13012e-05 1.10229e-05 1.07626e-05 1.05215e-05 1.03008e-05 1.01012e-05 9.92316e-06 9.76665e-06 9.63134e-06 9.51638e-06 9.42049e-06 9.34212e-06 9.2794e-06 9.23027e-06 9.19276e-06 9.16477e-06 9.1443e-06 9.12973e-06 9.11946e-06 9.11411e-06 9.11256e-06 9.11155e-06 9.11049e-06 9.1094e-06 9.10832e-06 9.10742e-06 9.10691e-06 9.1064e-06 9.1067e-06 9.10583e-06 9.10836e-06 9.10463e-06 9.11208e-06 ) ; } wall-h2 { type calculated; value nonuniform List<scalar> 51 ( 9.10142e-06 9.10141e-06 9.10141e-06 9.10142e-06 9.10143e-06 9.10145e-06 9.10146e-06 9.10148e-06 9.10151e-06 9.10155e-06 9.1016e-06 9.10163e-06 9.10167e-06 9.10172e-06 9.10182e-06 9.10194e-06 9.10206e-06 9.10215e-06 9.10222e-06 9.10232e-06 9.10249e-06 9.10272e-06 9.10298e-06 9.10322e-06 9.10342e-06 9.1036e-06 9.10376e-06 9.10393e-06 9.1041e-06 9.10429e-06 9.10448e-06 9.10469e-06 9.10491e-06 9.10515e-06 9.1054e-06 9.10569e-06 9.10599e-06 9.10631e-06 9.10663e-06 9.10695e-06 9.10728e-06 9.10762e-06 9.10799e-06 9.1084e-06 9.10883e-06 9.10927e-06 9.10973e-06 9.1102e-06 9.11074e-06 9.1113e-06 9.11208e-06 ) ; } empty-7 { type empty; } empty-8 { type empty; } airfoil-h2 { type nutUSpaldingWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 104 ( 9.57851e-05 0.000101609 0.000105302 0.000107487 0.000108558 0.000108802 0.000108608 0.000108046 0.000107307 0.000106592 0.000106033 0.000105803 0.000105634 0.000105775 0.000106065 0.000106425 0.000106764 0.000107033 0.000107185 0.000107224 0.000107156 0.000107004 0.000106798 0.000106569 0.000106333 0.000106096 0.000105877 0.000105664 0.000105452 0.000105245 0.000105036 0.000104823 0.000104611 0.000104413 0.000104218 0.000104028 0.000103846 0.000103676 0.000103523 0.000103376 0.000103243 0.000103112 0.000102986 0.000102863 0.000102742 0.00010262 0.000102493 0.00010236 0.000102223 0.000102075 0.000101928 0.000101761 0.000101587 0.000101407 0.000101211 0.000101003 0.000100786 0.000100553 0.000100299 0.000100039 9.97581e-05 9.94724e-05 9.91649e-05 9.88467e-05 9.85141e-05 9.81693e-05 9.78106e-05 9.74366e-05 9.70534e-05 9.66602e-05 9.62486e-05 9.58332e-05 9.54033e-05 9.49632e-05 9.45132e-05 9.40498e-05 9.3582e-05 9.3097e-05 9.26034e-05 9.20955e-05 9.15719e-05 9.10403e-05 9.04937e-05 8.99255e-05 8.93421e-05 8.87414e-05 8.81131e-05 8.74583e-05 8.67722e-05 8.60503e-05 8.52864e-05 8.44715e-05 8.35963e-05 8.26549e-05 8.16274e-05 8.04977e-05 7.92382e-05 7.78157e-05 7.61866e-05 7.42788e-05 7.20409e-05 6.92043e-05 6.59991e-05 5.99478e-05 ) ; } wall-h1 { type calculated; value nonuniform List<scalar> 104 ( 9.11271e-06 9.11281e-06 9.1133e-06 9.11399e-06 9.11579e-06 9.11864e-06 9.1223e-06 9.12577e-06 9.12855e-06 9.131e-06 9.13406e-06 9.13806e-06 9.14198e-06 9.14417e-06 9.14366e-06 9.1408e-06 9.13637e-06 9.13077e-06 9.12419e-06 9.11763e-06 9.11316e-06 9.11268e-06 9.11646e-06 9.12287e-06 9.12948e-06 9.13448e-06 9.13726e-06 9.1381e-06 9.13762e-06 9.13631e-06 9.13459e-06 9.1327e-06 9.13095e-06 9.1294e-06 9.12801e-06 9.12677e-06 9.12561e-06 9.12451e-06 9.12339e-06 9.12227e-06 9.12114e-06 9.12004e-06 9.11895e-06 9.11787e-06 9.11682e-06 9.11578e-06 9.11477e-06 9.11378e-06 9.11282e-06 9.11189e-06 9.111e-06 9.11015e-06 9.10934e-06 9.10858e-06 9.10787e-06 9.10721e-06 9.1066e-06 9.10603e-06 9.10552e-06 9.10505e-06 9.10462e-06 9.10423e-06 9.10389e-06 9.10358e-06 9.1033e-06 9.10306e-06 9.10284e-06 9.10265e-06 9.10249e-06 9.10234e-06 9.10221e-06 9.1021e-06 9.10201e-06 9.10192e-06 9.10185e-06 9.10179e-06 9.10174e-06 9.1017e-06 9.10166e-06 9.10163e-06 9.1016e-06 9.10158e-06 9.10156e-06 9.10154e-06 9.10153e-06 9.10151e-06 9.1015e-06 9.10149e-06 9.10148e-06 9.10148e-06 9.10147e-06 9.10146e-06 9.10146e-06 9.10146e-06 9.10145e-06 9.10145e-06 9.10145e-06 9.10144e-06 9.10144e-06 9.10144e-06 9.10143e-06 9.10143e-06 9.10143e-06 9.10142e-06 ) ; } empty-9 { type empty; } empty-10 { type empty; } inlet-h { type calculated; value uniform 9.10145e-06; } airfoil-h1 { type nutUSpaldingWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 71 ( 0.000145131 0.000158728 0.000181154 0.000202575 0.000218396 0.000228859 0.000235346 0.000238857 0.000240194 0.000239937 0.000238483 0.000236226 0.0002331 0.000229251 0.000224831 0.00021995 0.000214711 0.000209135 0.000203288 0.000197303 0.000191235 0.000185218 0.0001793 0.000173542 0.000167926 0.000162469 0.000157132 0.000151911 0.000146801 0.000141835 0.000137086 0.00013263 0.000128574 0.000125014 0.000122065 0.000119743 0.000118204 0.000117169 0.000116657 0.00011661 0.000116986 0.000117715 0.000118753 0.000120014 0.000121425 0.000123126 0.000124948 0.00012684 0.000128771 0.00013069 0.000132503 0.000134217 0.000135839 0.000136978 0.000137418 0.00013729 0.000136363 0.000134503 0.000131615 0.000127831 0.000123107 0.000117645 0.000111725 0.000105758 0.000100229 9.56275e-05 9.23853e-05 9.0616e-05 9.02465e-05 9.08885e-05 9.09877e-05 ) ; } empty-11 { type empty; } empty-12 { type empty; } } // ************************************************************************* //
e124ae125a7037db72da82220f35c825d4fb3a67
528cff4869901640e32eedb3f07c7a56112ab6da
/webclient/authorisation.h
6432a9a5f69e826eea1dd0b8e8b93e3c85cc66b0
[]
no_license
life-f/QT6-WebSockets
76556ad37f1e96e4b7c4a004682a2dddd0052793
ddf19544703e89e5339a1081b146c10dd87bb098
refs/heads/master
2021-05-19T06:04:39.976921
2020-04-15T07:47:42
2020-04-15T07:47:42
251,558,403
5
0
null
null
null
null
UTF-8
C++
false
false
932
h
authorisation.h
/** * @file authorisation.h * @brief authorisation * @author Bagrova Polina */ #ifndef AUTHORISATION_H #define AUTHORISATION_H #include <QDialog> namespace Ui {class Authorisation;} class Authorisation : public QDialog { Q_OBJECT public: /** * @brief Constructor * @param parent */ explicit Authorisation(QWidget *parent = nullptr); /** * @brief Destructor */ ~Authorisation(); /** * @brief get Nickname * @return nickname */ QString getNick(); /** * @brief get Port * @return port */ quint16 getPort(); private: Ui::Authorisation *ui; QString nick; private slots: /** * @brief push button "Ok" */ void pushOk(); signals: /** * @brief send Nickname * @param nick */ void sendNick(QString nick); }; #endif // AUTHORISATION_H
e0eb5567c54de8e5c99f34821576ca0d973b9805
a3c380bf113a8eb1dee636bc1ff12e184152515e
/CHAP4/RELEASEO/MAIN.CPP
d87141ffe597047c19754a2fb3abad95b31ef95e
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
OS2World/DEV-SAMPLES-SOM-OOProgSOM-DSOM
26c5eaf17141c05a60b3c2bc9451c67a458edc02
34a4b31cc1ceeca6fc71418ea362519641b717f8
refs/heads/master
2021-01-10T20:31:52.710946
2014-09-08T21:40:02
2014-09-08T21:40:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
233
cpp
MAIN.CPP
#include "a.xh" main(int argc, char *argv[], char *envp[]) { Environment *ev; A *myObj; ev = somGetGlobalEnvironment(); myObj = new A; myObj->_set_val1(ev,5); myObj->_set_val2(ev,100); myObj->display(ev); } 
d333d7837b1164cb94af520a677558d0c0c520f5
49f88ff91aa582e1a9d5ae5a7014f5c07eab7503
/gen/third_party/blink/renderer/bindings/core/v8/v8_image_data_color_settings.cc
67c4a3f6c1fd219d0af320b0342031160e8d0597
[]
no_license
AoEiuV020/kiwibrowser-arm64
b6c719b5f35d65906ae08503ec32f6775c9bb048
ae7383776e0978b945e85e54242b4e3f7b930284
refs/heads/main
2023-06-01T21:09:33.928929
2021-06-22T15:56:53
2021-06-22T15:56:53
379,186,747
0
1
null
null
null
null
UTF-8
C++
false
false
4,970
cc
v8_image_data_color_settings.cc
// 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. // This file has been auto-generated from the Jinja2 template // third_party/blink/renderer/bindings/templates/dictionary_v8.cpp.tmpl // by the script code_generator_v8.py. // DO NOT MODIFY! // clang-format off #include "third_party/blink/renderer/bindings/core/v8/v8_image_data_color_settings.h" #include "third_party/blink/renderer/bindings/core/v8/exception_state.h" #include "third_party/blink/renderer/bindings/core/v8/idl_types.h" #include "third_party/blink/renderer/bindings/core/v8/native_value_traits_impl.h" namespace blink { static const v8::Eternal<v8::Name>* eternalV8ImageDataColorSettingsKeys(v8::Isolate* isolate) { static const char* const kKeys[] = { "colorSpace", "storageFormat", }; return V8PerIsolateData::From(isolate)->FindOrCreateEternalNameCache( kKeys, kKeys, arraysize(kKeys)); } void V8ImageDataColorSettings::ToImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value, ImageDataColorSettings& impl, ExceptionState& exceptionState) { if (IsUndefinedOrNull(v8Value)) { return; } if (!v8Value->IsObject()) { exceptionState.ThrowTypeError("cannot convert to dictionary."); return; } v8::Local<v8::Object> v8Object = v8Value.As<v8::Object>(); ALLOW_UNUSED_LOCAL(v8Object); const v8::Eternal<v8::Name>* keys = eternalV8ImageDataColorSettingsKeys(isolate); v8::TryCatch block(isolate); v8::Local<v8::Context> context = isolate->GetCurrentContext(); v8::Local<v8::Value> colorSpaceValue; if (!v8Object->Get(context, keys[0].Get(isolate)).ToLocal(&colorSpaceValue)) { exceptionState.RethrowV8Exception(block.Exception()); return; } if (colorSpaceValue.IsEmpty() || colorSpaceValue->IsUndefined()) { // Do nothing. } else { V8StringResource<> colorSpaceCppValue = colorSpaceValue; if (!colorSpaceCppValue.Prepare(exceptionState)) return; const char* validValues[] = { "srgb", "rec2020", "p3", }; if (!IsValidEnum(colorSpaceCppValue, validValues, arraysize(validValues), "CanvasColorSpace", exceptionState)) return; impl.setColorSpace(colorSpaceCppValue); } v8::Local<v8::Value> storageFormatValue; if (!v8Object->Get(context, keys[1].Get(isolate)).ToLocal(&storageFormatValue)) { exceptionState.RethrowV8Exception(block.Exception()); return; } if (storageFormatValue.IsEmpty() || storageFormatValue->IsUndefined()) { // Do nothing. } else { V8StringResource<> storageFormatCppValue = storageFormatValue; if (!storageFormatCppValue.Prepare(exceptionState)) return; const char* validValues[] = { "uint8", "uint16", "float32", }; if (!IsValidEnum(storageFormatCppValue, validValues, arraysize(validValues), "ImageDataStorageFormat", exceptionState)) return; impl.setStorageFormat(storageFormatCppValue); } } v8::Local<v8::Value> ImageDataColorSettings::ToV8Impl(v8::Local<v8::Object> creationContext, v8::Isolate* isolate) const { v8::Local<v8::Object> v8Object = v8::Object::New(isolate); if (!toV8ImageDataColorSettings(*this, v8Object, creationContext, isolate)) return v8::Undefined(isolate); return v8Object; } bool toV8ImageDataColorSettings(const ImageDataColorSettings& impl, v8::Local<v8::Object> dictionary, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) { const v8::Eternal<v8::Name>* keys = eternalV8ImageDataColorSettingsKeys(isolate); v8::Local<v8::Context> context = isolate->GetCurrentContext(); v8::Local<v8::Value> colorSpaceValue; bool colorSpaceHasValueOrDefault = false; if (impl.hasColorSpace()) { colorSpaceValue = V8String(isolate, impl.colorSpace()); colorSpaceHasValueOrDefault = true; } else { colorSpaceValue = V8String(isolate, "srgb"); colorSpaceHasValueOrDefault = true; } if (colorSpaceHasValueOrDefault && !V8CallBoolean(dictionary->CreateDataProperty(context, keys[0].Get(isolate), colorSpaceValue))) { return false; } v8::Local<v8::Value> storageFormatValue; bool storageFormatHasValueOrDefault = false; if (impl.hasStorageFormat()) { storageFormatValue = V8String(isolate, impl.storageFormat()); storageFormatHasValueOrDefault = true; } else { storageFormatValue = V8String(isolate, "uint8"); storageFormatHasValueOrDefault = true; } if (storageFormatHasValueOrDefault && !V8CallBoolean(dictionary->CreateDataProperty(context, keys[1].Get(isolate), storageFormatValue))) { return false; } return true; } ImageDataColorSettings NativeValueTraits<ImageDataColorSettings>::NativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exceptionState) { ImageDataColorSettings impl; V8ImageDataColorSettings::ToImpl(isolate, value, impl, exceptionState); return impl; } } // namespace blink
e905c56a68be68f2683658228aee9b9c1df13c76
8536b36356eaa37925398e7cb0a0c8905a9add45
/classes/Disparity/Disparity.cpp
a0ce497297414ab8987745d00bf5296de9bb3144
[]
no_license
canyudeguang/NDSIntersectionEventDetector
11377d8eeb58487a94ac2178c61169c005cb4e9e
9262c86e7eed076ee4fd21ad9cfc34c0c01c6461
refs/heads/master
2020-12-25T04:01:37.960977
2015-10-16T07:05:19
2015-10-16T07:05:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,489
cpp
Disparity.cpp
#include "Disparity.h" Disparity::Disparity() { sgbm = cv::StereoSGBM::create(0,64,3); sgbm->setPreFilterCap(1); int sgbmWinSize = 9; sgbm->setBlockSize(sgbmWinSize); sgbm->setP1(8*3*sgbmWinSize*sgbmWinSize); sgbm->setP2(32*3*sgbmWinSize*sgbmWinSize); sgbm->setMinDisparity(0); //sgbm->setNumDisparities(numberOfDisparities); sgbm->setUniquenessRatio(1); //10 for daytime sgbm->setSpeckleWindowSize(3); //2 sgbm->setSpeckleRange(1); // sgbm->setDisp12MaxDiff(10); sgbm->setMode(cv::StereoSGBM::MODE_SGBM); //StereoSGBM::MODE_SGBM || cv::StereoSGBM::MODE_HH } void Disparity::disparityImages(cv::Mat imgL, cv::Mat imgR, bool first) { if(!first) { temporalDisp = dispRLLR.clone(); } sgbm->compute(imgL, imgR, dispLR); dispLR.convertTo(dispLR, CV_8U, 255/(96*16.)); flip(imgL, imgL, 1); flip(imgR, imgR, 1); sgbm->compute(imgR, imgL, dispRL); dispRL.convertTo(dispRL, CV_8U, 255/(96*16.)); flip(dispRL, dispRL, 1); cv::min(dispLR,dispRL,dispRLLR); } void Disparity::temporalDisparity() { temporalCombinedDisps.setTo(cv::Scalar(0)); for (int j = 0; j < dispRLLR.cols; j++ ) { for (int i = 0; i < dispRLLR.rows; i++) { if(abs(dispRLLR.at<uchar>(i, j)-temporalDisp.at<uchar>(i, j)) <= 30) { temporalCombinedDisps.at<uchar>(i, j) = dispRLLR.at<uchar>(i, j); } } } } void Disparity::vDispThresholdedImage(cv::Mat dispImg, float slope, float intersection, float thresholdOffset) { // Create V disparity thresholded obstacleImage obstacleImage.setTo(cv::Scalar(0)); for (int j = 0; j < dispImg.cols; j++ ) { for (int i = 0; i < dispImg.rows; i++) { if (dispImg.at<uchar>(i, j) > (((i-(intersection))/(slope))+thresholdOffset)) { obstacleImage.at<uchar>(i, j) = dispImg.at<uchar>(i, j); } if (dispImg.at<uchar>(i, j) > 220) { obstacleImage.at<uchar>(i, j) = 0; } } } //cv::Mat sel = cv::getStructuringElement(cv::MORPH_ELLIPSE, cv::Size(5,5)); //morphologyEx( obstacleImage, obstacleImage, cv::MORPH_CLOSE, sel, cv::Point(-1,-1), 1 ); } void Disparity::removeDarkRegions(cv::Mat orgImgLoi, cv::Mat modifiedDispImage) { postDarkImage=modifiedDispImage.clone(); for (int j = 0; j < orgImgLoi.cols; j++ ) { for (int i = 0; i < orgImgLoi.rows; i++) { pixelValueBGR = orgImgLoi.at<cv::Vec3b>(i,j); pixelValueBlue = pixelValueBGR.val[0]; pixelValueGreen = pixelValueBGR.val[1]; pixelValueRed = pixelValueBGR.val[2]; if ( ((pixelValueBlue < 1) && (pixelValueGreen < 1) && (pixelValueRed < 1)) || ((pixelValueBlue > 254) && (pixelValueGreen > 254) && (pixelValueRed > 254)) ) { postDarkImage.at<uchar>(i, j) = 0; } } } } void Disparity::generateVdisp(cv::Mat dispImg) { //cv::Mat Vdisp = cv::Mat::zeros(dispImg.rows, 255, CV_8UC1); Vdisp.setTo(cv::Scalar(0)); for (int j = 0; j < dispImg.cols; j++ ) { for (int i = 0; i < dispImg.rows; i++) { if(dispImg.at<uchar>(i, j) > 40 && dispImg.at<uchar>(i, j) < 225) { if(Vdisp.at<uchar>(i, dispImg.at<uchar>(i, j)) < 255 ){ Vdisp.at<uchar>(i, dispImg.at<uchar>(i, j))++; } } } } //return Vdisp; }
269943b69599f5f82d7cb4afad18bcce8b5e1096
0dca74ba205f42b38c1d1a474350e57ff78352b4
/DQM/DataScouting/plugins/AlphaTVarAnalyzer.cc
cb3dc56e9005724023cd27fddbbeb3e0cf7016ae
[ "Apache-2.0" ]
permissive
jaimeleonh/cmssw
7fd567997a244934d6c78e9087cb2843330ebe09
b26fdc373052d67c64a1b5635399ec14525f66e8
refs/heads/AM_106X_dev
2023-04-06T14:42:57.263616
2019-08-09T09:08:29
2019-08-09T09:08:29
181,003,620
1
0
Apache-2.0
2019-04-12T12:28:16
2019-04-12T12:28:15
null
UTF-8
C++
false
false
2,294
cc
AlphaTVarAnalyzer.cc
#include "DQM/DataScouting/plugins/AlphaTVarAnalyzer.h" #include "DataFormats/JetReco/interface/CaloJet.h" #include "DataFormats/JetReco/interface/CaloJetCollection.h" #include "DataFormats/EgammaCandidates/interface/Electron.h" #include "DataFormats/EgammaCandidates/interface/ElectronFwd.h" #include "DataFormats/MuonReco/interface/Muon.h" #include "DataFormats/RecoCandidate/interface/RecoChargedCandidate.h" #include <cmath> // A simple constructor which takes as input only the name of the PF jet collection AlphaTVarAnalyzer::AlphaTVarAnalyzer( const edm::ParameterSet & conf ): ScoutingAnalyzerBase(conf), m_jetCollectionTag(conf.getUntrackedParameter<edm::InputTag>("jetCollectionName",edm::InputTag("hltCaloJetIDPassed"))), m_alphaTVarCollectionTag(conf.getUntrackedParameter<edm::InputTag>("alphaTVarCollectionName")) { //set Token(-s) m_alphaTVarCollectionTagToken_ = consumes<std::vector<double> >(conf.getUntrackedParameter<edm::InputTag>("alphaTVarCollectionName")); } AlphaTVarAnalyzer::~AlphaTVarAnalyzer() {} // Function to book the Monitoring Elements. void AlphaTVarAnalyzer::bookHistograms(DQMStore::IBooker & iBooker, edm::Run const &, edm::EventSetup const &) { ScoutingAnalyzerBase::prepareBooking(iBooker); //the full inclusive histograms m_HTAlphaT = bookH2withSumw2( iBooker, "HTvsAlphaT", "H_{T} vs #alpha_{T} (All Events)", 400,0.,4000., 50,0.,1., "H_{T} [GeV]", "#alpha_{T}"); m_HTAlphaTg0p55 = bookH1withSumw2( iBooker, "HTvsAlphaTg0p55", "H_{T} (#alpha_{T} > 0.55)", 400,0.,4000., "H_{T} [GeV]"); m_HTAlphaTg0p60 = bookH1withSumw2( iBooker, "HTvsAlphaTg0p60", "H_{T} (#alpha_{T} > 0.60)", 400,0.,4000., "H_{T} [GeV]"); } // Usual analyze method void AlphaTVarAnalyzer::analyze( const edm::Event & iEvent, const edm::EventSetup & c ) { edm::Handle<std::vector<double> > alphaTvar_handle; iEvent.getByToken(m_alphaTVarCollectionTagToken_, alphaTvar_handle); if(alphaTvar_handle->size() > 1){ const double AlphaT = alphaTvar_handle->at(0); const double HT = alphaTvar_handle->at(1); m_HTAlphaT->Fill(HT,AlphaT); if(AlphaT > 0.55) m_HTAlphaTg0p55->Fill(HT); if(AlphaT > 0.60) m_HTAlphaTg0p60->Fill(HT); } }
271f2031d3b82847f7b67469019d276cfd13586f
9b6e4f92d6c83b3fe3674a7b62010c98db806237
/angle.cpp
f48b5f558128ce1d59895e58bddeb2acb665930b
[]
no_license
antotony2120/3D
7820b0a81ecedb33247f6845bd56bbb69c72558e
14bdb180730ce9704c28d4dd248ea92cb43b6536
refs/heads/master
2020-03-30T06:21:38.602856
2018-09-29T11:00:00
2018-09-29T11:00:00
150,739,414
0
0
null
2018-09-29T10:31:47
2018-09-28T12:46:45
null
UTF-8
C++
false
false
1,053
cpp
angle.cpp
#include "angle.h" Angle::Angle() { this->_alpha = 0; this->_tetta = 0; this->_omega = 0; } Angle::Angle(const double _alpha, const double _tetta, const double _omega){ this->_alpha = _alpha; this->_tetta = _tetta; this->_omega = _omega; } Angle::Angle(Angle &cvec){ this->_alpha = cvec.a(); this->_tetta = cvec.o(); this->_omega = cvec.w(); } Angle::~Angle(){} double Angle::a(){ return this->_alpha; } double Angle::o(){ return this->_tetta; } double Angle::w(){ return this->_omega; } Angle& Angle::operator =(Angle& nvec){ this->_alpha = nvec.a(); this->_tetta = nvec.o(); this->_omega = nvec.w(); return *this; } Angle& Angle::operator +(Angle& plvec){ this->_alpha += plvec.a(); this->_tetta += plvec.o(); this->_omega += plvec.w(); return *this; } Angle& Angle::operator -(Angle& ervec){ this->_alpha -= ervec.a(); this->_tetta -= ervec.o(); this->_omega -= ervec.w(); return *this; }
b45d154afd5f8fa95d2b8cd7380b77381464eaa9
c651dc92d23c1bc1fec0a4335f382883300b0a02
/player.h
284b44c89221008abc92fdf8ae9fea36e28760fc
[]
no_license
xsipka/FIIT_PPGSO_Projekt
823222f9425e8b36aa4117fc6b9ae52ea0d72e4d
efd6ca306b86e53148fde1bf1150997e6feb4410
refs/heads/main
2023-02-06T13:50:22.719386
2020-12-17T21:33:03
2020-12-17T21:33:03
307,082,546
0
0
null
null
null
null
UTF-8
C++
false
false
6,041
h
player.h
class Player { private: glm::vec3 position; bool spawn_bottle = true; bool bottle_grabbed = true; bool bottle_dropped = false; bool bottle_broken{}; bool animation_status = false; int counter = 0; static void move_player(GLFWwindow *window, Camera *camera, float delta_time, double mouse_x_offset, double mouse_y_offset) { // Move forward if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) { camera->update_user_input(delta_time, 'F', mouse_x_offset, mouse_y_offset); } // Move backward if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) { camera->update_user_input(delta_time, 'B', mouse_x_offset, mouse_y_offset); } // Move left if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) { camera->update_user_input(delta_time, 'L', mouse_x_offset, mouse_y_offset); } // Move right if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) { camera->update_user_input(delta_time, 'R', mouse_x_offset, mouse_y_offset); } } static bool check_if_near_bar(Camera *camera) { auto player_position = camera->get_position(); if ((player_position.x > 1.75f && player_position.x < 5.3) && (player_position.z > 3.39f && player_position.z < 3.6)) { return true; } return false; } static void change_camera(GLFWwindow *window, Camera *camera) { if (glfwGetKey(window, GLFW_KEY_KP_4) == GLFW_PRESS) { camera->set_cam_mode(INTERACTIVE); } if (glfwGetKey(window, GLFW_KEY_KP_5) == GLFW_PRESS) { camera->set_cam_mode(ANIMATED_01); } if (glfwGetKey(window, GLFW_KEY_KP_6) == GLFW_PRESS) { camera->set_cam_mode(ANIMATED_02); } } static void change_light_color(GLFWwindow *window, Club& club_scene) { // Change color of light if (glfwGetKey(window, GLFW_KEY_KP_0) == GLFW_PRESS) { club_scene.change_light_color('0'); } if (glfwGetKey(window, GLFW_KEY_KP_1) == GLFW_PRESS) { club_scene.change_light_color('1'); } if (glfwGetKey(window, GLFW_KEY_KP_2) == GLFW_PRESS) { club_scene.change_light_color('2'); } if (glfwGetKey(window, GLFW_KEY_KP_3) == GLFW_PRESS) { club_scene.change_light_color('3'); } } void club_interaction(GLFWwindow *window, Club& club_scene, Camera *camera, float delta_time) { // Spawn a bottle if (glfwGetKey(window, GLFW_KEY_E) == GLFW_PRESS) { if (spawn_bottle) { spawn_bottle = false; if (camera->get_cam_mode() == INTERACTIVE && check_if_near_bar(camera)) { club_scene.order_bottle(); } } } if (glfwGetKey(window, GLFW_KEY_E) == GLFW_RELEASE) { spawn_bottle = true; } // Setup drinking animation if (glfwGetKey(window, GLFW_KEY_R) == GLFW_PRESS) { if (bottle_grabbed && !animation_status && club_scene.check_bottles() && check_if_near_bar(camera)) { bottle_grabbed = false; animation_status = true; if (camera->get_cam_mode() == INTERACTIVE) { club_scene.setup_drink_animation(); } } } if (glfwGetKey(window, GLFW_KEY_R) == GLFW_RELEASE) { bottle_grabbed = true; } // Sends cam position to function, run animation until false if (animation_status && camera->get_cam_mode() == INTERACTIVE) { if (!bottle_dropped) { club_scene.grab_bottle(camera->get_center()); } if (glfwGetKey(window, GLFW_KEY_F) == GLFW_PRESS || bottle_dropped) { if (!bottle_dropped) { position = camera->get_position(); auto pair = club_scene.drop_bottle(delta_time, position); animation_status = pair.first; bottle_broken = pair.second; } else { auto pair = club_scene.drop_bottle(delta_time, position); animation_status = pair.first; bottle_broken = pair.second; } bottle_dropped = true; if (!animation_status) { if (bottle_broken) { ++counter; } bottle_dropped = false; } } if (glfwGetKey(window, GLFW_KEY_F) == GLFW_RELEASE) { bottle_grabbed = true; } } // Drop confetti if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS) { club_scene.drop_confetti(); } } public: // Constructor Player() = default; // Destructor ~Player() = default; void player_interaction(GLFWwindow *window, Camera *camera, Club& club_scene, float delta_time) { change_camera(window, camera); change_light_color(window, club_scene); club_interaction(window, club_scene, camera, delta_time); } static void update_movement(GLFWwindow *window, Camera *camera, float delta_time, double mouse_x_offset, double mouse_y_offset) { if (camera->get_cam_mode() == INTERACTIVE || camera->get_cam_mode() == STATIC_CAM) { move_player(window, camera, delta_time, mouse_x_offset, mouse_y_offset); } } // Switch to new scene after breaking 3 bottles bool switch_scenes(Club& club_scene) const { if (counter == 3) { club_scene.~Club(); return false; } return true; } static void exit_window(GLFWwindow *window) { if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) { glfwSetWindowShouldClose(window, GLFW_TRUE); } } };
6bcc728ca3a2fc2705988bda36dd3ebba4e81d0a
96f20e4d3f4c6b7c7f6efde18f575f0657641627
/wmodel.h
834160b37aa22d871a154b2f8791e8170b49fd9b
[]
no_license
dungvuhoang/istro-rt
d330ae915ec51c280d8cfe46aa113184e0d5a101
379ecde6d1013eeb60fbc3fbf965942e5148f727
refs/heads/master
2023-06-09T14:42:36.908132
2021-06-16T11:13:47
2021-06-16T11:13:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,363
h
wmodel.h
#ifndef __WMODEL_H__ #define __WMODEL_H__ #include <opencv2/opencv.hpp> #include "dmap.h" using namespace cv; const int WMGRID_HEIGHT = 2001; const int WMGRID_WIDTH = 2001; const int WMGRID_CENTER_IDX = 1000; const int WMGRID_CENTER_IDY = 1000; const float WMGRID_DMAP_MAX_DIST = 3.0; // update grid to maximum distance of 3 metres (radius) const float WMGRID_CELL_DX = 0.1; const float WMGRID_CELL_DY = 0.1; const float WMGRID_X_MAX = (WMGRID_WIDTH - WMGRID_CENTER_IDX - 1) * WMGRID_CELL_DX - 2 * WMGRID_DMAP_MAX_DIST; const float WMGRID_X_MIN = -WMGRID_X_MAX; const float WMGRID_Y_MAX = (WMGRID_HEIGHT - WMGRID_CENTER_IDY - 1) * WMGRID_CELL_DY - 2 * WMGRID_DMAP_MAX_DIST; const float WMGRID_Y_MIN = -WMGRID_Y_MAX; const unsigned char WMGRID_LIDAR_MBIT = 0x10; // 1 = information about lidar known const unsigned char WMGRID_LIDAR_VBIT = 0x01; // 1 = lidar detected an obsacle in this grid cell const unsigned char WMGRID_VISION_MBIT = 0x20; // 2 = information about vision known const unsigned char WMGRID_VISION_VBIT = 0x02; // 2 = vision detected an obsacle in this grid cell class WMGrid { public: float grid_x0; float grid_y0; unsigned char g[WMGRID_HEIGHT][WMGRID_WIDTH]; private: int recenter(float x0, float y0); public: WMGrid(); void init(void); void clear(void); int update(const DegreeMap& dmap, float x0, float y0, float alfa, unsigned char mb, unsigned char vb); int eval(float x0, float y0, float alfa, DegreeMap& dmap); unsigned char get(int gy, int gx); void set(int gy, int gx, unsigned char b); }; class WorldModel { public: WMGrid *pgrid; long image_number; float last_x0; float last_y0; float last_alfa; int last_ref; int last_angle; int last_angle_min; int last_angle_max; public: WorldModel(); ~WorldModel(); void init(void); void updateGrid(const DegreeMap& dmap, float x0, float y0, float alfa, int process_ref, int process_angle, int process_angle_min, int process_angle_max, unsigned char mb, unsigned char vb, long imgnum); int evalGrid(float x0, float y0, float alfa, DegreeMap& dmap); void drawGrid(Mat& img); void drawGridFull(Mat& img); public: void saveImage(long image_number, const std::string& str, const Mat& img); void test(void); }; #endif
253275192bb5b2754db91e9ed8e197a2c7a33d1a
c94c4219a18737003f40eed38357d8433b53f123
/src/eink/assets/client/wi_fi_request.cpp
9c7401f9ed0eaf3860accccad90a012d8cfe87a8
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain" ]
permissive
macadada/eink-server
363dae4e9073573690829ec014e51c6e4034b179
efc224755415d543984e7407bdf02b978cc5e76d
refs/heads/master
2023-08-01T08:25:10.859570
2021-09-08T12:56:00
2021-09-08T12:56:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,562
cpp
wi_fi_request.cpp
#include <string.h> #include <esp32-hal.h> #include <HTTPClient.h> #include <WiFi.h> #include <WiFiClient.h> #include "generated.h" #include "response.h" #include "server_io.h" #include "wi_fi_request.h" // The maximum number of microseconds to spend attempting to connect to a given // Wi-Fi network static const long long WI_FI_CONNECT_TIMEOUT_US = 20 * 1000000LL; // The maximum number of microseconds to spend in a read operation when reading // an HTTP response before giving up static const long long WI_FI_READ_TIMEOUT_US = 5 * 1000000LL; // The threshold for turning off the Wi-Fi hardware. If we will not make a web // request for at least WI_FI_OFF_TIME_DS tenths of a second, then we turn it // off to save energy. static const int WI_FI_OFF_TIME_DS = 60 * 10; // The value of WI_FI_NETWORK_COUNT at or above which we scan for networks and // only attempt to connect to those identified in the scan. Otherwise, we // indiscriminately attempt to connect to networks in WI_FI_SSIDS. static const int WI_FI_SCAN_THRESHOLD = 2; // The maximum number of Wi-Fi networks to try to connect to each time we try to // connect #define WI_FI_MAX_NETWORKS_TO_TRY 3 /** * Attempts to connect to the specified Wi-Fi network. * @param ssid The network's SSID. * @param password The network's password. NULL indicates no password. * @return Whether we were successful. */ static bool connectToWiFiNetwork(const char* ssid, const char* password) { long long startTime = esp_timer_get_time(); if (password != NULL) { WiFi.begin(ssid, password); } else { WiFi.begin(ssid); } while (esp_timer_get_time() - startTime < WI_FI_CONNECT_TIMEOUT_US) { if (WiFi.status() == WL_CONNECTED) { return true; } delay(200); } return WiFi.status() == WL_CONNECTED; } /** * Returns the index in WI_FI_NETWORK_INDICES of the first SSID in strcmp order * that is greater than or equal to "ssid". A return value of * WI_FI_NETWORK_COUNT indicates that "ssid" is greater than all of the SSIDs in * WI_FI_SSID. */ static int findWiFiNetworkIndex(char* ssid) { // Binary search int start = 0; int end = WI_FI_NETWORK_COUNT; while (start < end) { int mid = (start + end) / 2; if (strcmp(ssid, WI_FI_SSIDS[WI_FI_NETWORK_INDICES[mid]]) <= 0) { end = mid; } else { start = mid + 1; } } return start; } /** * Returns whether "index" is among the first "length" elements of "indices". */ static bool containsWiFiNetworkIndex(int* indices, int length, int index) { for (int i = 0; i < length; i++) { if (indices[i] == index) { return true; } } return false; } /** * Adds the specified index to "indices". "indices" is a sorted array consisting * of up to WI_FI_MAX_NETWORKS_TO_TRY values. (Note that if "indices" has * WI_FI_MAX_NETWORKS_TO_TRY values that are less than "index", then this will * have no effect.) * @param indices The indices. This must have a length of * WI_FI_MAX_NETWORKS_TO_TRY. * @param length The number of elements currently in "indices". * @param index The value to add to "indices". * @return The resulting number of elements in "indices", i.e. the smaller of * length + 1 and WI_FI_MAX_NETWORKS_TO_TRY. */ static int insertWiFiNetworkIndex(int* indices, int length, int index) { int i; for (i = length - 1; i >= 0; i--) { if (index > indices[i]) { break; } if (i + 1 < WI_FI_MAX_NETWORKS_TO_TRY) { indices[i + 1] = indices[i]; } } if (i + 1 < WI_FI_MAX_NETWORKS_TO_TRY) { indices[i + 1] = index; } if (length < WI_FI_MAX_NETWORKS_TO_TRY) { return length + 1; } else { return WI_FI_MAX_NETWORKS_TO_TRY; } } /** * Sets "indices" to be an array of the indices in WI_FI_SSIDS of the Wi-Fi * networks we should attempt to connect to, in order. * @param indices The indices. This must have a length of * WI_FI_MAX_NETWORKS_TO_TRY. * @return The maximum number of Wi-Fi networks we should attempt to connect to. */ static int wiFiNetworksToTry(int* indices) { if (WI_FI_NETWORK_COUNT < WI_FI_SCAN_THRESHOLD) { int i; for (i = 0; i < WI_FI_NETWORK_COUNT && i < WI_FI_MAX_NETWORKS_TO_TRY; i++) { indices[i] = i; } return i; } int length = 0; int scannedNetworks = WiFi.scanNetworks(); for (int i = 0; i < scannedNetworks; i++) { String ssidStr = WiFi.SSID(i); char* ssid = (char*)ssidStr.c_str(); int start = findWiFiNetworkIndex(ssid); for (int j = start; j < WI_FI_NETWORK_COUNT; j++) { int index = WI_FI_NETWORK_INDICES[j]; if (strcmp(WI_FI_SSIDS[index], ssid) != 0 || // Handle duplicate SSID in scan results (j == start && containsWiFiNetworkIndex(indices, length, index))) { break; } length = insertWiFiNetworkIndex(indices, length, index); } } return length; } /** * Attempts to connect to a Wi-Fi network, if we are not already connected. * @return Whether we were successful. */ static bool connectToWiFi() { if (WiFi.status() == WL_CONNECTED) { return true; } log_i("Connecting to Wi-Fi"); // This appears to be needed to clear out the WIFI_REASON_AUTH_EXPIRE state // if the Wi-Fi connection is lost WiFi.disconnect(); int indices[WI_FI_MAX_NETWORKS_TO_TRY]; int length = wiFiNetworksToTry(indices); for (int i = 0; i < length; i++) { int index = indices[i]; if (connectToWiFiNetwork(WI_FI_SSIDS[index], WI_FI_PASSWORDS[index])) { return true; } } log_e("Failed to connect to Wi-Fi"); return false; } /** * readFunc function for initReader for reading the response payload from a * WiFiClient. "context" is a pointer to the WiFiClient. */ static int readWiFi(void* data, int length, void* context) { long long startTime = esp_timer_get_time(); WiFiClient* wiFi = (WiFiClient*)context; int offset = 0; while (offset < length && esp_timer_get_time() - startTime < WI_FI_READ_TIMEOUT_US) { int read = wiFi->read((uint8_t*)(data + offset), length - offset); if (read > 0) { offset += read; } else if (read < 0) { return offset; } else { delay(20); } if (!wiFi->connected()) { return offset; } } return offset; } bool makeWiFiRequest( ClientState* state, Inkplate* display, ByteArray payload, WiFiTransport* transport) { if (WiFi.status() != WL_CONNECTED) { return false; } HTTPClient http; http.setTimeout(30000); if (!http.begin(transport->url)) { return false; } int status = http.POST((uint8_t*)payload.data, payload.length); if (status < 200 || status >= 300) { http.end(); return false; } WiFiClient* wiFi = http.getStreamPtr(); Reader reader; initReader(&reader, readWiFi, wiFi); bool success = execResponse(state, display, &reader); http.end(); return success; } void prepareForWiFiRequests() { connectToWiFi(); } void handleRadioSilenceWiFi(int timeDs) { if (timeDs >= WI_FI_OFF_TIME_DS) { log_i("Turning Wi-Fi off to save energy"); WiFi.mode(WIFI_OFF); } }
ff53d4bc491b042529c60fa037d14e8015baab88
60619a8daa4603fb65f4f86f383a6ddde841e326
/2014-06-15/D.cpp
544d08fec68c5978ce5283eac48abf5a4a3c9333
[]
no_license
MYREarth/secret-weapon
f4b1d4b995951546b2fb1e40190707a805fb88b5
77f3ff1111aafaaae8f56893b78e3be9134437a9
refs/heads/master
2020-05-22T02:29:43.024017
2015-10-03T08:17:46
2015-10-03T08:17:46
186,199,326
3
0
null
2019-05-12T01:46:13
2019-05-12T01:46:13
null
UTF-8
C++
false
false
1,275
cpp
D.cpp
#include<map> #include<vector> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; typedef unsigned long long INT; vector<INT> p; bool check(const INT &a, const INT &b) { return (1ull << 63) / a >= b; } map<INT, INT> mem; void update(const INT &ans, const INT &mul) { if (!mem.count(mul) || mem[mul] > ans) { mem[mul] = ans; } } void go(int i, INT used, INT ans, int last, INT mul) { update(ans, mul); for (int j = 1; j <= last; ++j) { if (!check(ans, p[i])) { return; } ans *= p[i]; INT g = __gcd((INT)j, mul); if (!check(mul / g, (used + j) * g / j)) { return; } mul /= g, mul *= (used + j) * g / j; go(i + 1, used + j, ans, j, mul); } } int main() { for (int i = 2; (int)p.size() < 63; ++i) { bool check = true; for (int j = 0; j < (int)p.size(); ++j) { if (i % p[j] == 0) { check = false; break; } } if (check) { p.push_back(i); } } go(0, 0, 1, 63, 1); mem[1] = 2; INT n; while (scanf("%llu", &n) == 1) { printf("%llu %llu\n", n, mem[n]); } return 0; }
bbaf13dce00c719417cbaa26d20d4e8bf6d7965b
2ad2e2c8df1fc92f6b5e7d98f209975a371c95e5
/app/src/command/commandManager.cpp
f3c624ab2a91dc8d83c74eb099879b7cbe9fa944
[ "MIT" ]
permissive
smartDIYs/FABOOLDesktop_opensource
d35639d8dfa9d1608793630263974431ee9ffa0a
082fc12eacffed2b64f868064ed3809d06db831b
refs/heads/master
2020-03-25T19:34:34.501450
2018-09-27T02:55:11
2018-09-27T02:55:11
144,089,681
6
5
MIT
2018-09-27T02:55:12
2018-08-09T02:10:54
C++
UTF-8
C++
false
false
4,056
cpp
commandManager.cpp
#include <QObject> #include <QFileDialog> #include "commandManager.h" #include "common/dataManager.h" CommandManager::CommandManager(MainScene* scene, QObject* parent): QObject(parent) { mLookingScene = scene; mUndoStack = new QUndoStack(); mUndoStack->setUndoLimit(COMMAND_UNDO_STACK_MAX); mInstance = DataManager::getInstance(); } CommandManager::~CommandManager() { mUndoStack->clear(); delete mUndoStack; } void CommandManager::importCommnad() { static QString memoriedPath = "/"; QStringList fileList = QFileDialog::getOpenFileNames(NULL, tr("Open Image Files"), memoriedPath, "images (*.png *.jpeg *.jpg *.bmp *.gif *.tiff *.tif *.svg *.dxf)"); if(fileList.count() == 0) { return ; } int pathIndx = fileList[0].lastIndexOf("/"); memoriedPath = fileList[0].left(pathIndx); QMap<QString, EN_LOAD_STATE> resultLoad; QList<ItemInfo*> items = mInstance->loadImage(fileList, &resultLoad); bool isExistNotice = false; QMap<QString, QString> errImg; foreach (QString key, resultLoad.keys()) { if(resultLoad.value(key) != EN_LOAD_SUCCESS) { errImg.insert(key, ItemInfo::getLoadStateStr( resultLoad.value(key) )); isExistNotice = true; } } if(isExistNotice == true) { emit loadErr(errImg); } if(items.count() <= 0) { return; } mUndoStack->push(new ImportCommand(mLookingScene, items)); mInstance->modified(); emit update(); } void CommandManager::importCommnad(QStringList fileList) { if(fileList.count() == 0) { return ; } QMap<QString, EN_LOAD_STATE> resultLoad; QList<ItemInfo*> items = mInstance->loadImage(fileList, &resultLoad); bool isExistNotice = false; QMap<QString, QString> errImg; foreach (QString key, resultLoad.keys()) { if(resultLoad.value(key) != EN_LOAD_SUCCESS) { errImg.insert(key, ItemInfo::getLoadStateStr( resultLoad.value(key) )); isExistNotice = true; } } if(isExistNotice == true) { emit loadErr(errImg); } if(items.count() <= 0) { return; } mUndoStack->push(new ImportCommand(mLookingScene, items)); mInstance->modified(); emit update(); } void CommandManager::deleteCommand() { if(mLookingScene->selectedFlexFrame().count() == 0) { return ; } mUndoStack->push(new DeleteCommand(mLookingScene)); mInstance->modified(); emit update(); } void CommandManager::deleteAllCommand() { if(mInstance->ImageItem().count() == 0) { return ; } mLookingScene->allSelect(); mUndoStack->push(new DeleteCommand(mLookingScene)); mInstance->modified(); emit update(); } void CommandManager::pasteCommnad() { if(mLookingScene->copyList().count() == 0) { return; } mUndoStack->push(new PasteCommand(mLookingScene)); mInstance->modified(); emit update(); } void CommandManager::pasteCommnad(QPointF pos) { if(mLookingScene->copyList().count() == 0) { return; } mUndoStack->push(new PasteCommand(mLookingScene, pos)); mInstance->modified(); emit update(); } void CommandManager::shapeChangeCommand(bool isHead) { if(mLookingScene->selectedFlexFrame().count() == 0) { return ; } mUndoStack->push(new ShapeChangeCommand(mLookingScene, isHead)); mInstance->modified(); } void CommandManager::groupCommand() { if(mLookingScene->hasGroup() == true) { return; } //ラスタ画像はGroup化をはじく foreach (GraphicsFlexibleFrame* frame, mLookingScene->selectedFlexFrame()) { if(frame->isRaster() == true) { frame->setSelected(false); } } if(mLookingScene->selectedFlexFrame().count() == 0) { return ; } mUndoStack->push(new GroupCommand(mLookingScene)); mInstance->modified(); emit update(); } void CommandManager::ungroupCommand() { if(mLookingScene->hasGroup() == false) { return; } mUndoStack->push(new UngroupCommand(mLookingScene)); mInstance->modified(); emit update(); }
75f81c998732bf0221df7f03fb949e39b07fe6f6
ae956d4076e4fc03b632a8c0e987e9ea5ca89f56
/SDK/TBP_UI_BaseRangedCrosshair_parameters.h
ed74180cd01560ee60e5dc6c75340e3b13a5dfe8
[]
no_license
BrownBison/Bloodhunt-BASE
5c79c00917fcd43c4e1932bee3b94e85c89b6bc7
8ae1104b748dd4b294609717142404066b6bc1e6
refs/heads/main
2023-08-07T12:04:49.234272
2021-10-02T15:13:42
2021-10-02T15:13:42
638,649,990
1
0
null
2023-05-09T20:02:24
2023-05-09T20:02:23
null
UTF-8
C++
false
false
5,129
h
TBP_UI_BaseRangedCrosshair_parameters.h
#pragma once // Name: bbbbbbbbbbbbbbbbbbbbbbblod, Version: 1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.GetBrushAspect struct UTBP_UI_BaseRangedCrosshair_C_GetBrushAspect_Params { struct FSlateBrush SlateBrush; // 0x0000(0x0088) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm) float ReturnValue; // 0x0088(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.GetFov struct UTBP_UI_BaseRangedCrosshair_C_GetFov_Params { float OutFov; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.SetupScalingCrosshairImage struct UTBP_UI_BaseRangedCrosshair_C_SetupScalingCrosshairImage_Params { struct FTigerWeaponScalingCrosshairSlot ScalingCrosshairSlot; // 0x0000(0x0090) (BlueprintVisible, BlueprintReadOnly, Parm) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.SetupCrosshairImage struct UTBP_UI_BaseRangedCrosshair_C_SetupCrosshairImage_Params { struct FTigerWeaponCrosshairSlot TigerWeaponCrosshairSlot; // 0x0000(0x00B8) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.SetupScopeVignette struct UTBP_UI_BaseRangedCrosshair_C_SetupScopeVignette_Params { }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.GetAspectRatio struct UTBP_UI_BaseRangedCrosshair_C_GetAspectRatio_Params { float ReturnValue; // 0x0000(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.GetCrosshairScale struct UTBP_UI_BaseRangedCrosshair_C_GetCrosshairScale_Params { float InScreenSpaceSpread; // 0x0000(0x0004) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float InAspectRatio; // 0x0004(0x0004) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) struct FVector2D Scale; // 0x0008(0x0008) (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.UpdateCrosshairPositions struct UTBP_UI_BaseRangedCrosshair_C_UpdateCrosshairPositions_Params { }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.Tick struct UTBP_UI_BaseRangedCrosshair_C_Tick_Params { struct FGeometry MyGeometry; // 0x0000(0x0038) (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor) float InDeltaTime; // 0x0038(0x0004) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.PreConstruct struct UTBP_UI_BaseRangedCrosshair_C_PreConstruct_Params { bool IsDesignTime; // 0x0000(0x0001) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.OnInitialized struct UTBP_UI_BaseRangedCrosshair_C_OnInitialized_Params { }; // Function TBP_UI_BaseRangedCrosshair.TBP_UI_BaseRangedCrosshair_C.ExecuteUbergraph_TBP_UI_BaseRangedCrosshair struct UTBP_UI_BaseRangedCrosshair_C_ExecuteUbergraph_TBP_UI_BaseRangedCrosshair_Params { int EntryPoint; // 0x0000(0x0004) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
4ed01bd09315fd4c1136f24c03bb4defe168366d
fe65f9eb977b8aa03e9ba1749e0a586920dd4621
/src/script/SdScriptValueOpBinaryFloatDiv.h
f7c657f82dab5cafeb973be422932041412669b8
[]
no_license
usiksan/SaliCAD
6b24cad22db191b0a654ad96f78a642583bdc650
3eb7cbd56991c82de1cd4d659dd5d18eb84329c6
refs/heads/master
2023-08-09T15:49:33.952310
2023-08-08T15:45:02
2023-08-08T15:45:02
122,590,905
5
0
null
null
null
null
UTF-8
C++
false
false
919
h
SdScriptValueOpBinaryFloatDiv.h
/* Project "Electronic schematic and pcb CAD" Author Sibilev Alexander S. Web www.saliLab.com www.saliLab.ru Description Script language is C-style hi-level language for programming 3d models, 2d parametric graphics and schematic calculations. Binary operation for division two's float */ #ifndef SDSCRIPTVALUEOPBINARYFLOATDIV_H #define SDSCRIPTVALUEOPBINARYFLOATDIV_H #include "SdScriptValueOpBinaryFloat.h" class SdScriptValueOpBinaryFloatDiv : public SdScriptValueOpBinaryFloat { public: SdScriptValueOpBinaryFloatDiv( SdScriptValue *first, SdScriptValue *second ) : SdScriptValueOpBinaryFloat( first, second ) {} // SdM3dValue interface public: virtual float toFloat() const override { float second = mSecondOperand->toFloat(); if( second == 0 ) second = 0.001; return mFirstOperand->toFloat() / second; } }; #endif // SDSCRIPTVALUEOPBINARYFLOATDIV_H
c230d21bd68cb139d85091ca3457e02ad5a9b250
7540a851028cdffb6e78122e53da8c0413289e61
/find_naive_impl.cc
af24eb19022b8f7bff5a167130b81c7496bf26aa
[]
no_license
gsauthof/find-memchr
854be89fda257d221cffa62a586ed83ed8a998d9
6b0e99b54c9b60b9aaf615d33437a8139162524f
refs/heads/master
2021-01-15T13:43:51.834017
2019-02-03T19:27:53
2019-02-03T19:27:53
68,278,767
4
0
null
null
null
null
UTF-8
C++
false
false
259
cc
find_naive_impl.cc
// 2016, Georg Sauthoff <mail@georg.so>, GPLv3+ #include "find.hh" namespace g { FIND_INLINE const char *find(const char *b, const char *e, char c) { for (const char *i = b; i < e; ++i) if (*i == c) return i; return e; } }
15092860dacdc1ebc481494260fb2e8893af6f70
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest5/0.052/turbulenceProperties.I
febccd7e39b2e815a96da5532dbf64d2ad0eb14b
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
229,492
i
turbulenceProperties.I
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.052"; object turbulenceProperties:I; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 24416 ( 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.149999 0.149999 0.15 0.150001 0.150003 0.150005 0.150007 0.150008 0.150009 0.150009 0.150008 0.150008 0.150007 0.150007 0.150006 0.150005 0.150005 0.150005 0.150004 0.150004 0.150004 0.150004 0.150003 0.150003 0.150003 0.150003 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.150001 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.149999 0.149999 0.149999 0.149999 0.149999 0.149999 0.149998 0.149998 0.149997 0.149997 0.149997 0.149998 0.150001 0.150005 0.150012 0.150021 0.150031 0.150038 0.15004 0.150032 0.150014 0.15 0.149982 0.14997 0.149962 0.149957 0.149953 0.149948 0.149967 0.149989 0.149988 0.15 0.150007 0.15001 0.149861 0.149317 0.145302 0.139126 0.145679 0.148752 0.146556 0.140665 0.134044 0.130105 0.136432 0.144146 0.14136 0.131834 0.126526 0.124024 0.128733 0.138981 0.136261 0.125162 0.121659 0.120118 0.123024 0.134342 0.131972 0.120186 0.118543 0.117493 0.118565 0.130488 0.128359 0.116563 0.116381 0.11572 0.115602 0.127266 0.125466 0.114121 0.114935 0.11453 0.113549 0.124668 0.123118 0.112401 0.113963 0.113714 0.112064 0.122537 0.12118 0.111152 0.113296 0.113142 0.110942 0.120745 0.119551 0.110209 0.112827 0.112731 0.110064 0.119199 0.118148 0.109463 0.112485 0.112427 0.10936 0.117856 0.116914 0.108851 0.112228 0.112194 0.108777 0.116667 0.115812 0.108334 0.112028 0.11201 0.108281 0.115602 0.114815 0.107887 0.111866 0.111858 0.107849 0.114634 0.113903 0.107491 0.11173 0.11173 0.107465 0.113745 0.113066 0.107141 0.111618 0.111624 0.107126 0.11293 0.112292 0.106827 0.111521 0.111531 0.106819 0.112173 0.11157 0.106541 0.111436 0.111449 0.10654 0.111467 0.110897 0.106281 0.111361 0.111377 0.106287 0.110807 0.110267 0.106045 0.111295 0.111313 0.106056 0.11019 0.109676 0.10583 0.111237 0.111256 0.105847 0.109611 0.109123 0.105634 0.111185 0.111206 0.105657 0.109069 0.108604 0.105458 0.11114 0.111163 0.105485 0.108561 0.108118 0.105299 0.1111 0.111125 0.105331 0.108086 0.107665 0.105157 0.111067 0.111094 0.105195 0.107642 0.107242 0.105032 0.111039 0.111067 0.105075 0.10723 0.10685 0.104923 0.111017 0.111047 0.104972 0.106846 0.106485 0.104831 0.110999 0.111031 0.104885 0.10649 0.106146 0.104753 0.110987 0.111021 0.104812 0.10616 0.105832 0.10469 0.11098 0.111015 0.104753 0.105855 0.105543 0.10464 0.110978 0.111014 0.104707 0.105573 0.105276 0.104602 0.11098 0.111018 0.104674 0.105313 0.10503 0.104577 0.110986 0.111026 0.104653 0.105076 0.104806 0.104563 0.110996 0.111038 0.104644 0.10486 0.104603 0.104561 0.11101 0.111054 0.104647 0.104663 0.104419 0.10457 0.111029 0.111074 0.10466 0.104487 0.104254 0.10459 0.111051 0.111097 0.104684 0.104329 0.104107 0.10462 0.111077 0.111125 0.104718 0.104189 0.103978 0.10466 0.111106 0.111157 0.104763 0.104067 0.103867 0.10471 0.11114 0.111192 0.104818 0.103962 0.103772 0.10477 0.111177 0.111231 0.104882 0.103874 0.103693 0.104839 0.111217 0.111273 0.104956 0.103802 0.103631 0.104918 0.111262 0.11132 0.10504 0.103747 0.103584 0.105006 0.111309 0.11137 0.105133 0.103707 0.103553 0.105104 0.111361 0.111423 0.105235 0.103683 0.103538 0.105211 0.111416 0.111481 0.105348 0.103676 0.103538 0.105328 0.111475 0.111542 0.105471 0.103684 0.103555 0.105455 0.111538 0.111608 0.105604 0.103709 0.103588 0.105593 0.111605 0.111677 0.105748 0.10375 0.103638 0.105741 0.111676 0.111751 0.105903 0.103809 0.103704 0.105901 0.111752 0.11183 0.106069 0.103884 0.103787 0.106073 0.111832 0.111913 0.106248 0.103976 0.103888 0.106257 0.111916 0.112 0.10644 0.104085 0.104006 0.106454 0.112006 0.112094 0.106645 0.104213 0.104142 0.106664 0.112101 0.112192 0.106864 0.104358 0.104296 0.106887 0.112201 0.112296 0.107096 0.104523 0.104469 0.107125 0.112307 0.112406 0.107343 0.104707 0.104662 0.107377 0.112418 0.112521 0.107604 0.10491 0.104875 0.107644 0.112535 0.112643 0.107882 0.105135 0.105109 0.107927 0.112658 0.112771 0.108176 0.105381 0.105365 0.108227 0.112788 0.112905 0.108487 0.105651 0.105644 0.108545 0.112924 0.113046 0.108817 0.105944 0.105947 0.108881 0.113067 0.113195 0.109167 0.106262 0.106276 0.109238 0.113218 0.113352 0.109538 0.106606 0.106633 0.109617 0.113377 0.113517 0.109931 0.10698 0.107019 0.110018 0.113544 0.11369 0.110348 0.107383 0.107434 0.110444 0.113719 0.113873 0.11079 0.107816 0.107881 0.110896 0.113904 0.114065 0.111259 0.108283 0.108361 0.111375 0.114099 0.114267 0.111756 0.108783 0.108876 0.111881 0.114303 0.114479 0.112283 0.109319 0.109426 0.112418 0.114518 0.114702 0.11284 0.109893 0.110016 0.112987 0.114743 0.114936 0.11343 0.110506 0.110645 0.113589 0.11498 0.115182 0.114056 0.111161 0.111317 0.114226 0.115228 0.11544 0.114718 0.11186 0.112035 0.114902 0.115489 0.115711 0.11542 0.112607 0.112801 0.115617 0.115762 0.115996 0.116163 0.113404 0.113619 0.116376 0.116048 0.116293 0.116952 0.114255 0.114492 0.117182 0.116349 0.116605 0.11779 0.115162 0.115422 0.118036 0.116663 0.116932 0.118677 0.116129 0.116413 0.118942 0.116991 0.117273 0.119618 0.117159 0.117467 0.119902 0.117334 0.117629 0.120615 0.118254 0.118588 0.120919 0.117693 0.117999 0.121671 0.119417 0.119779 0.121995 0.118068 0.118381 0.122788 0.120654 0.121045 0.123134 0.118466 0.118767 0.123971 0.121967 0.12239 0.124342 0.1189 0.119137 0.125223 0.123362 0.123816 0.125619 0.119434 0.120084 0.126568 0.12484 0.125329 0.12703 0.120616 0.121419 0.128057 0.126411 0.126943 0.128593 0.122054 0.12294 0.129701 0.128087 0.128669 0.130311 0.123643 0.124596 0.131502 0.129879 0.130513 0.132186 0.125356 0.126371 0.133459 0.131792 0.13248 0.134215 0.127182 0.128254 0.135569 0.133828 0.134571 0.136394 0.129113 0.130241 0.137827 0.135989 0.136784 0.138717 0.131142 0.132319 0.140225 0.13827 0.139116 0.141173 0.133256 0.134476 0.142747 0.140663 0.141554 0.143745 0.13544 0.136694 0.145377 0.143158 0.144085 0.146414 0.137675 0.138951 0.14809 0.145735 0.14669 0.149152 0.139936 0.141221 0.150856 0.148374 0.149341 0.151926 0.142196 0.143474 0.153638 0.151045 0.152011 0.154697 0.144421 0.145674 0.156396 0.153716 0.154661 0.157421 0.146574 0.147782 0.159081 0.156349 0.157255 0.160049 0.148618 0.149762 0.161644 0.158902 0.159744 0.162527 0.150513 0.151575 0.164034 0.161334 0.162091 0.164814 0.152226 0.153188 0.166205 0.163602 0.164256 0.166856 0.153725 0.154573 0.168111 0.165664 0.166202 0.168618 0.154986 0.155713 0.169721 0.167491 0.167896 0.170073 0.155997 0.156597 0.171012 0.169052 0.169316 0.1712 0.156753 0.157228 0.17197 0.170331 0.170449 0.171995 0.157262 0.157617 0.172599 0.171319 0.171294 0.172469 0.157538 0.157783 0.172911 0.172018 0.17186 0.172635 0.157605 0.157752 0.172931 0.172442 0.172155 0.172529 0.157493 0.157557 0.172691 0.172606 0.172197 0.172175 0.157232 0.157224 0.172222 0.172533 0.172025 0.171611 0.15686 0.156798 0.171568 0.172247 0.171661 0.170891 0.156413 0.156314 0.170779 0.171792 0.171147 0.170056 0.155923 0.155808 0.169895 0.171213 0.170526 0.169145 0.155423 0.155315 0.168959 0.170554 0.16983 0.16816 0.154934 0.154868 0.168076 0.169891 0.169149 0.167098 0.154507 0.154505 0.167095 0.169187 0.168556 0.16632 0.154276 0.154293 0.166306 0.168629 0.168141 0.165723 0.154345 0.154392 0.165442 0.167921 0.16758 0.16515 0.154386 0.154319 0.165734 0.167503 0.167981 0.16625 0.154359 0.175048 0.179285 0.184373 0.19254 0.201754 0.20854 0.215347 0.220539 0.225937 0.230464 0.23514 0.239218 0.243377 0.247084 0.250828 0.254211 0.2576 0.260686 0.263753 0.26655 0.269313 0.271821 0.274281 0.276491 0.278639 0.280534 0.28235 0.283901 0.285354 0.286516 0.287557 0.288276 0.288839 0.289019 0.288982 0.288469 0.287645 0.286194 0.284293 0.281526 0.278089 0.273428 0.267696 0.260115 0.252278 0.240446 0.226299 0.208374 0.18567 0.160558 0.146835 0.13892 0.141115 0.145381 0.158547 0.15791 0.145476 0.143188 0.145023 0.144291 0.156385 0.157492 0.145828 0.146885 0.147783 0.146527 0.158426 0.158775 0.146683 0.148606 0.148915 0.147669 0.160546 0.160923 0.147856 0.149098 0.149466 0.149176 0.16286 0.162997 0.149091 0.14951 0.149867 0.150473 0.16499 0.165252 0.150468 0.149772 0.150181 0.151947 0.167293 0.167408 0.151797 0.150108 0.150516 0.153301 0.169578 0.169872 0.153285 0.150359 0.150833 0.154912 0.172087 0.172227 0.154762 0.150694 0.151194 0.156449 0.17462 0.174985 0.156457 0.151016 0.151557 0.158264 0.177403 0.177588 0.158141 0.151398 0.151982 0.160032 0.180239 0.180693 0.160085 0.151808 0.152431 0.162103 0.183355 0.18361 0.162023 0.152266 0.152947 0.164144 0.186551 0.187113 0.164255 0.152786 0.153509 0.166511 0.190054 0.190393 0.166487 0.153345 0.154145 0.168879 0.19368 0.194376 0.169059 0.154001 0.154844 0.171591 0.197648 0.198088 0.171628 0.154675 0.155613 0.174326 0.201789 0.202642 0.174569 0.155474 0.156438 0.177382 0.206302 0.206844 0.177446 0.15623 0.15729 0.180424 0.211028 0.212031 0.180666 0.15709 0.158133 0.183679 0.21614 0.216782 0.183654 0.157794 0.158977 0.186904 0.221553 0.222687 0.187038 0.158566 0.159843 0.190331 0.227374 0.227918 0.189792 0.158888 0.159797 0.193643 0.233255 0.23424 0.193107 0.158331 0.15964 0.198546 0.240793 0.242506 0.198524 0.158963 0.160659 0.204514 0.250751 0.254323 0.205786 0.161027 0.163832 0.21204 0.26419 0.269609 0.214847 0.166662 0.17695 0.229839 0.281893 0.289323 0.251301 0.190934 0.163886 0.172978 0.227795 0.286543 0.224785 0.171413 0.173452 0.225583 0.293603 0.324042 0.242642 0.18754 0.213236 0.263273 0.369762 0.437722 0.33487 0.250361 0.301999 0.419677 0.482978 0.533611 0.461304 0.330613 0.372357 0.531022 0.600286 0.65875 0.586838 0.404649 0.444222 0.636285 0.698558 0.78299 0.73941 0.534563 0.661359 0.879396 0.894563 1 1 0.85212 1 1 1 1 1 1 1 1 1 0.943163 0.997746 0.943499 0.701406 0.800533 0.787319 0.61147 0.624187 0.54169 0.438354 0.51308 0.513574 0.44987 0.443678 0.370119 0.318939 0.379928 0.383997 0.336214 0.333134 0.280614 0.252743 0.30432 0.307433 0.277754 0.276451 0.228103 0.207713 0.25605 0.257125 0.240578 0.239609 0.189209 0.172146 0.218011 0.225889 0.204861 0.193358 0.159076 0.150536 0.172686 0.185793 0.173828 0.161253 0.145056 0.142551 0.153855 0.160627 0.151892 0.150868 0.143251 0.146195 0.149212 0.146245 0.142947 0.149116 0.152538 0.160772 0.150894 0.140959 0.138598 0.152045 0.171426 0.180957 0.153895 0.140243 0.13947 0.156403 0.189001 0.192671 0.155672 0.138492 0.141774 0.157374 0.191285 0.184745 0.159971 0.138563 0.140412 0.153136 0.16539 0.161173 0.14641 0.139222 0.121888 0.123687 0.15499 0.1433 0.125871 0.122183 0.120719 0.122972 0.142196 0.144487 0.109541 0.105311 0.102841 0.105428 0.129796 0.130828 0.104387 0.101066 0.0908023 0.0969354 0.137936 0.121174 0.0934443 0.0912882 0.089709 0.0927003 0.123388 0.134459 0.0902894 0.082045 0.0802305 0.0824932 0.114928 0.11819 0.0829004 0.0794768 0.07447 0.0836759 0.130719 0.112815 0.079265 0.0761199 0.0717313 0.0798475 0.123209 0.104182 0.075661 0.0763922 0.0749396 0.0762194 0.108639 0.121177 0.078411 0.0692653 0.0762016 0.0744848 0.103659 0.108708 0.0752687 0.0746551 0.0685058 0.077145 0.121159 0.103118 0.0726036 0.0741171 0.0725326 0.0737103 0.107963 0.121682 0.0762718 0.067603 0.0683969 0.0707733 0.10524 0.115044 0.0736684 0.0649151 0.0688806 0.0680033 0.0986411 0.10385 0.0699274 0.067663 0.0644122 0.0739402 0.116355 0.10057 0.0655993 0.064841 0.062332 0.0713505 0.111267 0.0955842 0.0647556 0.0639033 0.0624057 0.0645873 0.100045 0.111393 0.0716685 0.0613016 0.0611713 0.0633132 0.0958952 0.102012 0.0639362 0.0604274 0.0603997 0.0726314 0.115719 0.0982635 0.0614504 0.060125 0.0586833 0.0704097 0.110071 0.0952977 0.0591427 0.0602219 0.0580058 0.0664121 0.105841 0.0910978 0.0598916 0.0597261 0.0575648 0.059902 0.0961203 0.107649 0.0712638 0.057806 0.0574325 0.057591 0.0945846 0.105045 0.0663729 0.0563471 0.057195 0.0587976 0.0899407 0.0951896 0.0589763 0.0549266 0.0565937 0.0718747 0.107526 0.0938133 0.0551236 0.0540009 0.0546359 0.0670042 0.105072 0.089495 0.0540081 0.0535094 0.0532357 0.063758 0.0993605 0.0858868 0.0555548 0.05425 0.0523553 0.0563425 0.0915672 0.103828 0.0688635 0.0546048 0.0516564 0.0535407 0.0890813 0.100497 0.0660023 0.052525 0.0521375 0.0517343 0.0870786 0.0969925 0.0617254 0.0517634 0.0528101 0.0538879 0.0848767 0.0903708 0.0546986 0.0507139 0.0530617 0.0690055 0.101594 0.0880583 0.0512302 0.0501028 0.0513008 0.0642391 0.0997891 0.0856938 0.0499029 0.0492478 0.0499347 0.0614638 0.0955864 0.0824857 0.051938 0.0503416 0.0484797 0.052893 0.0877318 0.0992993 0.0680256 0.0513603 0.04827 0.0497188 0.0862635 0.0979651 0.0631008 0.0497966 0.0476859 0.0483269 0.0840349 0.0939439 0.0619287 0.0491135 0.047792 0.0483045 0.0813712 0.0906974 0.0596115 0.0485258 0.0487228 0.050028 0.078965 0.0847104 0.0517593 0.0471433 0.0501361 0.066917 0.0960316 0.0837502 0.0494611 0.0469971 0.0486957 0.0628304 0.0954016 0.0830069 0.0471271 0.0468222 0.0481438 0.0603291 0.0929268 0.08093 0.0465076 0.0463977 0.0477664 0.0597587 0.090827 0.0792423 0.0467196 0.0461709 0.0469674 0.0581078 0.0878402 0.0763114 0.0482091 0.0468017 0.0450924 0.0494369 0.0814147 0.0920583 0.0648671 0.0484793 0.0453292 0.0475087 0.080862 0.0924163 0.0599332 0.0472007 0.0448664 0.0452242 0.0797136 0.0887635 0.0585988 0.0465545 0.0445276 0.0450538 0.0775082 0.0867178 0.0578305 0.0461616 0.0444488 0.0451248 0.0759947 0.0842441 0.057095 0.0456185 0.0452242 0.0466878 0.0735057 0.078654 0.0482968 0.0437475 0.0471971 0.0631232 0.0891072 0.0781031 0.0464534 0.0439792 0.0461225 0.0595256 0.088856 0.0776266 0.0444508 0.0435107 0.0454595 0.0575477 0.0871136 0.0759928 0.0438183 0.042988 0.0448364 0.056625 0.0849523 0.0744896 0.0436449 0.042649 0.0440505 0.0560715 0.0824679 0.0717643 0.045071 0.043459 0.0420176 0.0466064 0.0765962 0.0870038 0.0618915 0.0457765 0.0425116 0.0450465 0.0765707 0.0869261 0.0579072 0.0447947 0.0421059 0.0430078 0.0757482 0.0847609 0.0557695 0.0441023 0.0416477 0.0422733 0.0739946 0.0824357 0.0549371 0.0435981 0.0413369 0.0422481 0.0722836 0.0799747 0.0545121 0.0428436 0.0419462 0.0436378 0.0696617 0.0746038 0.0455603 0.0407582 0.0447272 0.0600606 0.0851754 0.0747915 0.0433028 0.0414354 0.0438558 0.0562446 0.0851393 0.0733907 0.0414101 0.0406466 0.0429836 0.0548138 0.082079 0.0717644 0.0412235 0.0401769 0.0424716 0.0542821 0.080246 0.0702103 0.0412855 0.0399371 0.0416922 0.0536797 0.0780737 0.0683675 0.0426017 0.0406569 0.0394215 0.0440534 0.0730882 0.0826473 0.0591269 0.0435714 0.0401638 0.0426921 0.0719964 0.0821537 0.0553118 0.0425935 0.03959 0.0406955 0.0712893 0.0798927 0.0535749 0.0419218 0.0392465 0.0403163 0.0696146 0.0775543 0.0528604 0.0415174 0.0390318 0.0403158 0.0676391 0.0750788 0.0520962 0.0407241 0.0394392 0.0413814 0.0655935 0.0703505 0.0431839 0.0384423 0.0425648 0.0576422 0.0800886 0.0709997 0.0419986 0.0393951 0.0419043 0.054303 0.0805089 0.0696369 0.0400168 0.0388195 0.0410604 0.0524807 0.0775679 0.0672161 0.0395495 0.0382946 0.0400541 0.0513119 0.0745262 0.0653428 0.0405056 0.0385385 0.0374368 0.0419298 0.070094 0.0795144 0.0567905 0.0417979 0.0384645 0.0409509 0.0699585 0.0788505 0.0529715 0.0410104 0.0379426 0.0389612 0.068132 0.07528 0.0509381 0.0401242 0.0373444 0.0384504 0.0653932 0.0725195 0.0502133 0.0391875 0.0376524 0.0396826 0.0634766 0.0683709 0.0416253 0.0368719 0.0413115 0.0557453 0.0774166 0.0676747 0.0398787 0.0377618 0.040252 0.0518636 0.0760922 0.0656005 0.0381141 0.0371369 0.0390299 0.0500214 0.0726704 0.0633572 0.0391083 0.0372911 0.0363464 0.0408434 0.0682467 0.0770375 0.0554765 0.0410212 0.0372406 0.0399047 0.0673105 0.0756462 0.051285 0.0398238 0.0366236 0.0376821 0.0646942 0.0716703 0.0492015 0.0384774 0.0365749 0.0384453 0.062452 0.0674495 0.0402463 0.0357304 0.0404875 0.0547762 0.0764534 0.0667044 0.039145 0.0366412 0.0394728 0.050759 0.0745635 0.0639112 0.0371464 0.0360411 0.0379019 0.0485591 0.0707354 0.0613092 0.0377368 0.03593 0.0350426 0.0392937 0.0663262 0.0747042 0.053795 0.0397269 0.0358876 0.0386412 0.0649697 0.072668 0.0495319 0.0382014 0.0356618 0.0376443 0.0621212 0.0662099 0.0386218 0.0344114 0.0395207 0.0537533 0.0747328 0.0649669 0.0381433 0.0352205 0.0379989 0.0494195 0.0730268 0.0624097 0.0371707 0.0350647 0.0340328 0.0385043 0.066896 0.0742621 0.0529064 0.038877 0.03443 0.03704 0.0632207 0.0714355 0.0489107 0.0374101 0.0344166 0.0366665 0.0618071 0.0668012 0.0382628 0.0336481 0.0387388 0.0530641 0.0743382 0.062959 0.0367119 0.034135 0.0366351 0.0476723 0.0699691 0.0597169 0.0355895 0.033532 0.032656 0.0367575 0.0646159 0.0726374 0.0515434 0.0372267 0.0334606 0.0369457 0.0621552 0.0663175 0.0372017 0.0325569 0.0372369 0.0517381 0.0734893 0.0619924 0.0362338 0.0328236 0.032059 0.0370404 0.0670695 0.0754583 0.0524654 0.0374438 0.0327031 0.0367065 0.0636081 0.0669357 0.0362562 0.0317068 0.0372124 0.0524021 0.0746909 0.0629591 0.0361636 0.0320857 0.0313931 0.0366671 0.0679315 0.0760085 0.0523756 0.0370447 0.0317229 0.035479 0.0620862 0.0654909 0.0356345 0.0306036 0.0364643 0.0518644 0.0741289 0.0627119 0.0355902 0.0312667 0.0304342 0.0352832 0.0666064 0.0736004 0.0507551 0.0356455 0.0303863 0.0342678 0.0609092 0.0659624 0.0367497 0.0296795 0.0291241 0.0366391 0.0702509 0.0777206 0.0530733 0.03621 0.0300521 0.0346045 0.063553 0.0689845 0.0353243 0.0291961 0.0282365 0.0361336 0.0719448 0.0778749 0.0402948 0.0281837 0.0272098 0.037198 0.0816095 0.0874865 0.042547 0.0278299 0.0269488 0.0381245 0.0901051 0.0982005 0.0619007 0.038715 0.0301287 0.0377356 0.0773749 0.0856206 0.040357 0.0309041 0.0316721 0.0443292 0.094859 0.101586 0.0475432 0.032468 0.0330472 0.0504051 0.106919 0.110683 0.0530097 0.0335951 0.0341262 0.0555695 0.113011 0.114634 0.0581368 0.0347806 0.0355566 0.0607325 0.115673 0.116317 0.0635527 0.0364314 0.0374879 0.0662964 0.116628 0.116721 0.0693028 0.0386038 0.0400115 0.0721825 0.116682 0.116575 0.0750957 0.041372 0.0430472 0.0777738 0.116421 0.116247 0.0802627 0.0448485 0.0469576 0.0824805 0.116059 0.11586 0.0846101 0.0490256 0.0511627 0.0866892 0.115665 0.115484 0.0887076 0.0532529 0.0554071 0.0906768 0.115327 0.115196 0.092584 0.0575014 0.0596655 0.0944405 0.115097 0.11503 0.0962308 0.0617469 0.0639003 0.0979689 0.114996 0.114991 0.0996423 0.0659483 0.0680066 0.101265 0.11502 0.115078 0.10282 0.0699613 0.0719206 0.104321 0.115165 0.115273 0.105746 0.0737728 0.0756313 0.107106 0.1154 0.115543 0.108389 0.077382 0.0791306 0.109607 0.115694 0.115851 0.110741 0.0807639 0.0823926 0.111795 0.116006 0.116161 0.112786 0.0839012 0.0854011 0.1137 0.116308 0.116448 0.114534 0.0867749 0.0881397 0.115293 0.116573 0.116689 0.115983 0.0893778 0.0906034 0.116602 0.116784 0.116867 0.117156 0.0917018 0.0927894 0.117639 0.116927 0.116977 0.118067 0.093754 0.0947051 0.118431 0.117002 0.117017 0.118746 0.095539 0.0963597 0.119 0.117008 0.116991 0.119215 0.0970695 0.097761 0.119379 0.116952 0.116907 0.119506 0.0983573 0.0989316 0.119587 0.116838 0.116771 0.119638 0.099433 0.0998993 0.119659 0.116676 0.116594 0.119645 0.100311 0.100694 0.11961 0.116475 0.116378 0.119544 0.101028 0.101347 0.119465 0.116246 0.116136 0.119356 0.1016 0.101864 0.119241 0.115992 0.115873 0.119099 0.102051 0.102267 0.118954 0.11572 0.115596 0.11879 0.102404 0.102571 0.118621 0.115435 0.115308 0.118441 0.10267 0.102799 0.118255 0.115144 0.115018 0.118066 0.102868 0.102963 0.117867 0.114853 0.114727 0.117671 0.10301 0.103079 0.117463 0.114563 0.114441 0.117263 0.10311 0.103154 0.117046 0.114279 0.11416 0.116845 0.103173 0.103195 0.116623 0.114 0.113886 0.116428 0.103207 0.103209 0.116197 0.113734 0.113619 0.116008 0.103213 0.103198 0.11578 0.113478 0.113367 0.115602 0.103201 0.10316 0.115376 0.113236 0.113123 0.115206 0.103144 0.103079 0.114985 0.113006 0.112898 0.114819 0.103053 0.10297 0.114601 0.112786 0.112679 0.114435 0.102935 0.102846 0.114222 0.11257 0.112472 0.114059 0.102804 0.102707 0.113845 0.112364 0.112272 0.113686 0.102662 0.102565 0.113478 0.112167 0.112083 0.113322 0.102516 0.102419 0.11312 0.111979 0.1119 0.112966 0.102367 0.102275 0.112772 0.1118 0.111728 0.112622 0.102221 0.102131 0.112436 0.111629 0.111563 0.112289 0.102075 0.101991 0.112112 0.111469 0.111408 0.111971 0.101933 0.10185 0.111801 0.111319 0.111261 0.111664 0.10179 0.101712 0.111504 0.111178 0.111125 0.111373 0.101651 0.101573 0.111219 0.111047 0.110995 0.111091 0.101509 0.101435 0.110946 0.110924 0.110876 0.110822 0.10137 0.101295 0.110684 0.11081 0.110764 0.11056 0.101227 0.101154 0.11043 0.110703 0.11066 0.110309 0.101085 0.101011 0.110184 0.110602 0.110561 0.110063 0.100939 0.100864 0.109945 0.110507 0.110469 0.109827 0.100789 0.100711 0.109708 0.110417 0.11038 0.109593 0.100635 0.100554 0.109476 0.11033 0.110297 0.109364 0.100476 0.100393 0.109247 0.110248 0.110216 0.109138 0.100312 0.100227 0.109022 0.110169 0.110139 0.108915 0.100144 0.100056 0.108799 0.110093 0.110063 0.108693 0.0999699 0.0998796 0.108578 0.11002 0.109991 0.108474 0.0997914 0.0996982 0.10836 0.109948 0.10992 0.108254 0.0996076 0.0995129 0.108143 0.109878 0.109851 0.108039 0.0994199 0.0993206 0.107927 0.10981 0.109783 0.107823 0.0992268 0.099127 0.107713 0.109743 0.109717 0.107611 0.0990304 0.098926 0.107498 0.109677 0.109652 0.107397 0.0988279 0.0987226 0.107286 0.109613 0.109588 0.107186 0.0986235 0.0985149 0.107075 0.109549 0.109524 0.106976 0.0984143 0.0983041 0.106866 0.109487 0.109462 0.106767 0.0982031 0.0980898 0.106659 0.109425 0.109401 0.106559 0.0979889 0.0978752 0.106453 0.109365 0.109341 0.106355 0.0977726 0.097655 0.106248 0.109305 0.109281 0.106151 0.0975534 0.097437 0.106047 0.109246 0.109223 0.105951 0.0973341 0.0972142 0.105846 0.109189 0.109165 0.105751 0.0971125 0.0969946 0.105648 0.109132 0.109109 0.105556 0.096892 0.0967718 0.105454 0.109076 0.109053 0.105361 0.0966694 0.0965493 0.105261 0.109021 0.108999 0.10517 0.0964479 0.0963264 0.105071 0.108967 0.108945 0.10498 0.0962259 0.0961062 0.104884 0.108913 0.108892 0.104795 0.0960053 0.0958843 0.1047 0.108862 0.108841 0.104613 0.0957846 0.0956653 0.10452 0.108811 0.108791 0.104434 0.0955667 0.095447 0.104343 0.108761 0.108741 0.104257 0.0953498 0.0952323 0.104168 0.108712 0.108693 0.104085 0.0951348 0.0950158 0.103997 0.108665 0.108645 0.103915 0.09492 0.0948033 0.103829 0.108618 0.108599 0.103749 0.0947089 0.0945926 0.103664 0.108572 0.108553 0.103585 0.0944991 0.0943844 0.103503 0.108528 0.10851 0.103426 0.0942924 0.0941784 0.103345 0.108485 0.108466 0.103269 0.0940875 0.0939735 0.103196 0.108443 0.108426 0.10312 0.093885 0.0937734 0.103044 0.108403 0.108385 0.102964 0.0936875 0.0935799 0.102889 0.108361 0.108345 0.102819 0.0934925 0.0933823 0.102746 0.108322 0.108306 0.102676 0.0932979 0.0931922 0.102605 0.108283 0.108268 0.102538 0.093108 0.0930013 0.102468 0.108246 0.108231 0.102401 0.0929199 0.0928174 0.102333 0.108209 0.108195 0.102268 0.0927361 0.0926328 0.102201 0.108174 0.10816 0.102138 0.0925545 0.0924553 0.102073 0.10814 0.108126 0.102011 0.0923769 0.092277 0.101948 0.108107 0.108093 0.101887 0.0922015 0.0921057 0.101825 0.108074 0.108061 0.101767 0.0920302 0.0919339 0.101706 0.108043 0.10803 0.101648 0.0918613 0.0917692 0.101589 0.108012 0.107999 0.101534 0.0916959 0.091604 0.101476 0.107982 0.10797 0.101421 0.0915331 0.0914457 0.101366 0.107953 0.107942 0.101313 0.0913743 0.0912868 0.101258 0.107925 0.107914 0.101206 0.0912179 0.0911346 0.101153 0.107898 0.107887 0.101103 0.0910664 0.0909839 0.101052 0.107872 0.107861 0.101001 0.0909134 0.0908351 0.100951 0.107846 0.107835 0.100903 0.0907673 0.0906883 0.100854 0.107821 0.107811 0.100807 0.090623 0.0905477 0.100759 0.107797 0.107787 0.100713 0.0904834 0.0904083 0.100667 0.107773 0.107763 0.100621 0.0903421 0.0902702 0.100576 0.10775 0.107741 0.100532 0.0902089 0.0901357 0.100488 0.107728 0.107718 0.100445 0.090075 0.0900043 0.100401 0.107706 0.107697 0.100359 0.0899435 0.0898764 0.100317 0.107685 0.107676 0.100275 0.0898131 0.0897497 0.100234 0.107663 0.107655 0.100194 0.0896894 0.0896243 0.100154 0.107643 0.107635 0.100114 0.0895667 0.0895052 0.100076 0.107623 0.107615 0.100038 0.089448 0.089384 0.0999991 0.107604 0.107596 0.0999618 0.0893308 0.0892686 0.0999246 0.107585 0.107578 0.0998884 0.0892157 0.0891561 0.0998524 0.107567 0.10756 0.0998168 0.0891024 0.0890471 0.0997819 0.107549 0.107542 0.0997475 0.0889933 0.088937 0.0997133 0.107532 0.107525 0.0996799 0.0888885 0.0888303 0.0996462 0.107515 0.107509 0.0996138 0.088783 0.0887267 0.099581 0.107499 0.107492 0.0995492 0.0886797 0.0886254 0.0995172 0.107483 0.107477 0.0994864 0.0885786 0.0885276 0.0994559 0.107468 0.107461 0.0994244 0.0884783 0.0884302 0.0993946 0.107453 0.107446 0.0993655 0.0883849 0.0883368 0.0993368 0.107438 0.107432 0.0993068 0.0882887 0.0882438 0.0992786 0.107424 0.107418 0.099251 0.0881989 0.0881519 0.0992232 0.10741 0.107404 0.0991954 0.0881091 0.0880661 0.0991689 0.107396 0.107391 0.0991427 0.0880229 0.087978 0.0991165 0.107384 0.107378 0.0990901 0.0879371 0.0878961 0.0990652 0.107371 0.107366 0.0990404 0.0878548 0.0878119 0.0990155 0.107359 0.107354 0.0989905 0.0877729 0.0877341 0.098967 0.107346 0.107342 0.0989435 0.0876946 0.0876537 0.09892 0.107335 0.10733 0.0988963 0.0876166 0.0875799 0.0988742 0.107324 0.107319 0.098852 0.0875422 0.0875033 0.0988299 0.107313 0.107308 0.0988075 0.087468 0.0874332 0.0987866 0.107302 0.107298 0.0987658 0.0873973 0.0873604 0.0987449 0.107292 0.107288 0.0987238 0.0873269 0.0872939 0.0987041 0.107282 0.107278 0.0986845 0.0872599 0.0872245 0.0986648 0.107272 0.107268 0.0986449 0.0871931 0.0871614 0.0986264 0.107263 0.107259 0.0986084 0.0871296 0.0870949 0.098589 0.107254 0.10725 0.0985713 0.0870671 0.0870335 0.098553 0.107245 0.107241 0.0985358 0.0870055 0.0869744 0.0985187 0.107236 0.107233 0.0985009 0.0869444 0.0869183 0.0984846 0.107228 0.107225 0.0984678 0.086886 0.0868602 0.098452 0.10722 0.107217 0.0984355 0.0868301 0.0868033 0.0984201 0.107212 0.10721 0.0984049 0.086777 0.0867496 0.09839 0.107205 0.107202 0.0983737 0.0867209 0.0866961 0.0983591 0.107197 0.107195 0.0983451 0.0866704 0.086642 0.0983298 0.107191 0.107188 0.098316 0.0866204 0.0865923 0.0983016 0.107184 0.107181 0.0982883 0.0865712 0.0865435 0.0982744 0.107177 0.107175 0.0982614 0.0865229 0.0864959 0.0982479 0.107171 0.107169 0.0982353 0.0864759 0.0864495 0.0982223 0.107165 0.107163 0.09821 0.08643 0.0864043 0.0981974 0.107159 0.107157 0.0981855 0.0863853 0.0863603 0.0981732 0.107153 0.107151 0.0981616 0.0863415 0.0863176 0.0981497 0.107148 0.107146 0.0981385 0.0862989 0.0862761 0.098127 0.107143 0.107141 0.0981161 0.0862572 0.0862359 0.098105 0.107137 0.107136 0.0980944 0.0862165 0.0861969 0.0980836 0.107132 0.107131 0.0980731 0.0861763 0.086157 0.0980625 0.107127 0.107126 0.0980525 0.0861395 0.0861199 0.0980424 0.107123 0.107121 0.0980326 0.0861015 0.0860817 0.0980224 0.107118 0.107117 0.0980131 0.0860668 0.0860457 0.0980034 0.107114 0.107112 0.0979942 0.0860311 0.0860104 0.0979847 0.107109 0.107108 0.0979758 0.0859963 0.0859761 0.0979665 0.107105 0.107104 0.0979577 0.0859622 0.0859426 0.0979486 0.107101 0.107099 0.0979402 0.0859291 0.0859098 0.0979313 0.107097 0.107095 0.0979228 0.0858965 0.0858778 0.0979142 0.107092 0.107091 0.0979061 0.0858643 0.0858471 0.0978979 0.107089 0.107087 0.0978892 0.0858319 0.0858184 0.0978814 0.107084 0.107083 0.0978736 0.085802 0.0857856 0.0978655 0.107081 0.10708 0.0978571 0.0857711 0.0857581 0.0978496 0.107077 0.107076 0.097842 0.0857424 0.0857264 0.0978341 0.107073 0.107072 0.097826 0.0857126 0.0857001 0.0978187 0.107069 0.107068 0.0978113 0.0856851 0.0856694 0.0978036 0.107066 0.107065 0.0977956 0.0856563 0.0856438 0.0977885 0.107062 0.107061 0.0977814 0.0856296 0.0856134 0.0977733 0.107058 0.107057 0.0977658 0.0856022 0.0855863 0.0977582 0.107054 0.107053 0.0977509 0.0855754 0.0855597 0.0977433 0.10705 0.107048 0.0977354 0.0855481 0.0855345 0.0977281 0.107045 0.107044 0.0977207 0.0855231 0.0855066 0.0977126 0.107041 0.107038 0.0977055 0.0854956 0.0854748 0.097702 0.107037 0.107035 0.0976871 0.0854674 0.0854548 0.0976793 0.107031 0.107029 0.0976706 0.0854379 0.0854268 0.0976626 0.107025 0.107023 0.0976542 0.085412 0.0853972 0.0976457 0.10702 0.107018 0.0976368 0.0853837 0.0853719 0.0976285 0.107014 0.107012 0.0976196 0.0853569 0.0853417 0.0976108 0.107009 0.107007 0.0976016 0.0853281 0.0853163 0.0975933 0.107003 0.107002 0.0975844 0.0853014 0.0852865 0.0975757 0.106998 0.106997 0.0975668 0.0852732 0.0852619 0.0975591 0.106994 0.106993 0.0975509 0.0852474 0.085233 0.0975428 0.106991 0.10699 0.0975351 0.0852213 0.0852065 0.0975275 0.106988 0.106987 0.0975206 0.0851962 0.0851823 0.0975134 0.106985 0.106984 0.0975065 0.085172 0.0851584 0.0974994 0.106982 0.10698 0.0974925 0.085148 0.085133 0.0974846 0.106978 0.106973 0.0974768 0.0851247 0.085107 0.0974669 0.106973 0.10695 0.0974503 0.0850938 0.0850791 0.0974474 0.106949 0.106921 0.0974188 0.0850643 0.0850403 0.0973914 0.106928 0.106878 0.0972797 0.0849165 0.0844834 0.0968832 0.106855 0.106611 0.0960992 0.0837903 0.0832131 0.0955446 0.106495 0.074382 0.0652954 0.0616963 0.0613312 0.0629966 0.0667427 0.0690437 0.0702912 0.073385 0.0760451 0.0772731 0.0782492 0.079033 0.0795873 0.0799539 0.0801448 0.0802 0.0801534 0.0800375 0.0798785 0.0796961 0.0795047 0.0793141 0.0791307 0.078958 0.0787981 0.0786517 0.0785187 0.0783985 0.0782902 0.0781928 0.0781054 0.078027 0.0779567 0.0778935 0.0778368 0.0777859 0.07774 0.0776988 0.0776618 0.0776284 0.0775985 0.0775715 0.0775474 0.0775257 0.0775064 0.0774892 0.077474 0.0774607 0.0774489 0.0774388 0.0774303 0.0774233 0.0774183 0.0774146 0.0774127 0.0774117 0.0774086 0.0774075 0.0774061 0.0774044 0.0774024 0.0774002 0.0773978 0.0773953 0.0773926 0.0773898 0.0773869 0.0773839 0.0773808 0.0773777 0.0773745 0.0773714 0.0773684 0.0773655 0.0773628 0.0773603 0.077358 0.0773561 0.0773546 0.0773535 0.0773529 0.0773528 0.0773533 0.0773543 0.0773559 0.0773581 0.0773608 0.077364 0.0773674 0.0773711 0.0773747 0.077378 0.0773806 0.0773826 0.077385 0.0773881 0.0773918 0.0773962 0.0774013 0.0774071 0.0774139 0.077422 0.0774317 0.0774436 0.0774582 0.077476 0.0774974 0.0775225 0.0775518 0.0775852 0.0776227 0.0776644 0.0777104 0.0777606 0.077815 0.0778735 0.077936 0.0780025 0.078073 0.0781474 0.0782258 0.0783083 0.0783951 0.0784862 0.0785819 0.0786825 0.0787882 0.0788994 0.0790164 0.0791395 0.079269 0.0794055 0.0795491 0.0797005 0.0798599 0.0800279 0.0802048 0.0803909 0.0805869 0.080793 0.0810098 0.0812376 0.0814771 0.0817283 0.081992 0.0822683 0.0825579 0.0828608 0.0831777 0.0835089 0.0838545 0.084215 0.0845906 0.0849815 0.0853879 0.0858098 0.0862477 0.0867011 0.0871707 0.087656 0.0881573 0.0886742 0.0892066 0.0897547 0.0903177 0.0908961 0.0914887 0.0920958 0.092717 0.0933519 0.0939995 0.0946602 0.0953328 0.0960169 0.0967125 0.0974182 0.0981343 0.0988593 0.0995934 0.100336 0.101085 0.101842 0.102605 0.103373 0.104146 0.104924 0.105705 0.10649 0.107276 0.108065 0.108854 0.109645 0.110435 0.111225 0.112013 0.1128 0.113584 0.114366 0.115144 0.115919 0.116689 0.117454 0.118215 0.118969 0.119718 0.120461 0.121196 0.121925 0.122646 0.123359 0.124064 0.124761 0.12545 0.126129 0.1268 0.127461 0.128112 0.128754 0.129386 0.130009 0.130621 0.131223 0.131814 0.132395 0.132966 0.133526 0.134076 0.134615 0.135144 0.135661 0.136169 0.136665 0.137151 0.137627 0.138092 0.138546 0.13899 0.139424 0.139848 0.140261 0.140664 0.141057 0.141441 0.141814 0.142178 0.142532 0.142876 0.143211 0.143537 0.143854 0.144161 0.14446 0.14475 0.145031 0.145303 0.145567 0.145823 0.14607 0.146309 0.146539 0.146762 0.146977 0.147184 0.147384 0.147576 0.14776 0.147937 0.148106 0.148268 0.148422 0.148569 0.148709 0.148842 0.148968 0.149086 0.149196 0.149299 0.149393 0.149479 0.149557 0.149627 0.149689 0.149742 0.149789 0.149829 0.149863 0.149892 0.149919 0.149945 0.14997 0.149989 0.149997 0.149999 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.149999 0.149998 0.149996 0.149992 0.149988 0.149987 0.149992 0.149999 0.150008 0.150014 0.150019 0.150022 0.150023 0.150023 0.150023 0.150022 0.150021 0.150019 0.150018 0.150018 0.150017 0.150016 0.150015 0.150014 0.150014 0.150013 0.150012 0.150011 0.15001 0.15001 0.150009 0.150008 0.150008 0.150007 0.150007 0.150006 0.150006 0.150006 0.150005 0.150005 0.150005 0.150004 0.150004 0.150004 0.150004 0.150004 0.150003 0.150003 0.150003 0.150003 0.150003 0.150003 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150001 0.150001 0.150001 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150001 0.150001 0.150002 0.150004 0.15001 0.15002 0.150037 0.150061 0.150089 0.150115 0.150129 0.150125 0.150102 0.150067 0.150031 0.149999 0.149968 0.149938 0.149908 0.149879 0.149852 0.149823 0.14976 0.14927 0.148552 0.146458 0.145184 0.144144 0.142819 0.141902 0.140561 0.139759 0.138466 0.137781 0.136542 0.135963 0.13478 0.134291 0.133169 0.132749 0.131688 0.131315 0.13032 0.129986 0.129049 0.128748 0.127862 0.127588 0.126744 0.126496 0.125694 0.125469 0.124703 0.124497 0.123762 0.123575 0.122869 0.122699 0.122021 0.121866 0.121213 0.121073 0.120447 0.12032 0.119719 0.119605 0.119026 0.118927 0.118373 0.118287 0.117756 0.117682 0.117172 0.117109 0.116619 0.116567 0.116095 0.116054 0.115601 0.115569 0.115134 0.115112 0.114693 0.114681 0.114279 0.114277 0.11389 0.113897 0.113526 0.11354 0.113183 0.113207 0.112864 0.112896 0.112566 0.112607 0.11229 0.112339 0.112036 0.112092 0.111801 0.111865 0.111585 0.111658 0.11139 0.11147 0.111213 0.111302 0.111056 0.111153 0.110919 0.111024 0.110801 0.110915 0.110702 0.110825 0.110624 0.110755 0.110565 0.110705 0.110525 0.110675 0.110507 0.110666 0.110508 0.110677 0.110529 0.110708 0.110571 0.110761 0.110635 0.110836 0.110721 0.110933 0.110829 0.111053 0.110961 0.111198 0.111117 0.111367 0.111299 0.111562 0.111506 0.111783 0.11174 0.112033 0.112004 0.112314 0.112299 0.112625 0.112625 0.112968 0.112983 0.113345 0.113375 0.113756 0.113803 0.114204 0.114267 0.11469 0.114771 0.115217 0.115316 0.115785 0.115903 0.116396 0.116534 0.117055 0.117214 0.117765 0.117947 0.118527 0.118733 0.119345 0.119575 0.12022 0.120476 0.121157 0.12144 0.122156 0.122466 0.123222 0.123561 0.124358 0.124727 0.125567 0.125969 0.126854 0.127288 0.12822 0.128689 0.129665 0.130163 0.131187 0.131716 0.13279 0.133356 0.134481 0.135083 0.13626 0.136899 0.138129 0.138807 0.140091 0.140808 0.142143 0.142896 0.144278 0.145064 0.146491 0.147304 0.148768 0.149603 0.151096 0.151944 0.153457 0.154307 0.155829 0.156672 0.158187 0.159007 0.160502 0.161281 0.162742 0.16347 0.164884 0.16555 0.166898 0.167484 0.168751 0.169245 0.17042 0.170812 0.171886 0.172172 0.173137 0.17331 0.174169 0.174226 0.174975 0.174918 0.175552 0.175395 0.175923 0.175675 0.176113 0.175777 0.176137 0.175728 0.176023 0.175557 0.175805 0.175307 0.175525 0.175064 0.175232 0.17479 0.174993 0.174775 0.174579 0.174674 0.174602 0.178675 0.17815 0.18295 0.18375 0.192544 0.192291 0.194664 0.181643 0.177763 0.177328 0.179962 0.182232 0.177774 0.177089 0.179887 0.194672 0.194568 0.182 0.177707 0.176994 0.179642 0.181726 0.177614 0.176914 0.179382 0.194203 0.193809 0.181458 0.177532 0.176811 0.179092 0.181156 0.177409 0.176648 0.17876 0.193371 0.192903 0.180804 0.177217 0.176402 0.178366 0.180383 0.176924 0.176051 0.177898 0.192359 0.191758 0.179889 0.176523 0.175578 0.177343 0.179303 0.175992 0.174966 0.176693 0.191068 0.190302 0.17862 0.175316 0.174206 0.175938 0.177826 0.174492 0.173292 0.175072 0.189433 0.188473 0.176921 0.173514 0.172224 0.174091 0.175901 0.172383 0.17101 0.172992 0.187409 0.186253 0.174755 0.171084 0.169632 0.171788 0.173517 0.169648 0.168116 0.170484 0.184995 0.183644 0.17218 0.168077 0.166471 0.16909 0.170759 0.166406 0.164737 0.1676 0.182197 0.180673 0.169231 0.164631 0.16292 0.166026 0.167616 0.162759 0.161021 0.164397 0.179069 0.177407 0.165964 0.160836 0.159068 0.162728 0.164275 0.158884 0.157101 0.161016 0.175689 0.173936 0.162534 0.156899 0.155119 0.159278 0.160774 0.15491 0.153142 0.157532 0.172155 0.170362 0.159007 0.15293 0.151185 0.155788 0.157245 0.150975 0.149259 0.154058 0.168567 0.166782 0.155498 0.149056 0.147377 0.152351 0.153777 0.147183 0.145546 0.150676 0.165015 0.163278 0.15209 0.145364 0.143773 0.14904 0.150443 0.143606 0.142066 0.147447 0.161578 0.159924 0.14883 0.141894 0.140416 0.145909 0.147288 0.140264 0.138834 0.144431 0.158316 0.156763 0.145814 0.138722 0.137333 0.143003 0.14437 0.137216 0.13589 0.141637 0.155266 0.153827 0.143004 0.135795 0.134517 0.140337 0.141712 0.134462 0.13322 0.139096 0.152448 0.151132 0.140469 0.133184 0.131992 0.137917 0.13929 0.131979 0.130835 0.136801 0.14988 0.148691 0.138175 0.130844 0.129747 0.135748 0.137123 0.129778 0.128727 0.134754 0.147566 0.146503 0.13612 0.128762 0.127764 0.133824 0.135204 0.12784 0.126869 0.132952 0.1455 0.144552 0.134332 0.126963 0.126031 0.132134 0.133516 0.126145 0.12525 0.131371 0.143661 0.142824 0.132755 0.125383 0.124523 0.130656 0.132047 0.124675 0.123848 0.129991 0.142041 0.141311 0.131387 0.124017 0.123223 0.12937 0.130763 0.123394 0.122642 0.128801 0.140631 0.139997 0.130197 0.122831 0.122107 0.128277 0.129689 0.122327 0.121616 0.127791 0.139407 0.138861 0.12921 0.12185 0.121165 0.127346 0.128769 0.121414 0.120752 0.12694 0.138358 0.137894 0.128366 0.121016 0.120377 0.126571 0.128 0.120655 0.120037 0.126236 0.137468 0.137078 0.127668 0.120328 0.119732 0.125936 0.12737 0.120035 0.119459 0.125668 0.136724 0.136404 0.127104 0.119775 0.119217 0.125432 0.126869 0.119545 0.119006 0.125223 0.136116 0.13586 0.126651 0.119331 0.118822 0.125046 0.126474 0.119159 0.118667 0.124896 0.135633 0.135434 0.126324 0.119015 0.118538 0.124772 0.126201 0.118897 0.118435 0.124674 0.135262 0.135116 0.126103 0.118805 0.118357 0.124601 0.12603 0.118737 0.118303 0.124552 0.134996 0.1349 0.125981 0.118693 0.118272 0.124527 0.125954 0.118672 0.118263 0.124524 0.134828 0.134778 0.12595 0.118674 0.118277 0.124543 0.125968 0.118698 0.118313 0.124584 0.13475 0.134743 0.126008 0.118744 0.118369 0.124647 0.126079 0.118823 0.118447 0.124727 0.134757 0.134791 0.126148 0.118896 0.118544 0.12483 0.126246 0.119003 0.118661 0.124952 0.134843 0.134914 0.126375 0.119142 0.118797 0.125089 0.1265 0.119274 0.118952 0.125248 0.135002 0.135106 0.126653 0.119439 0.119127 0.125424 0.126825 0.119623 0.11932 0.125618 0.135228 0.135365 0.127015 0.119827 0.119533 0.125831 0.127222 0.120049 0.119764 0.126061 0.135519 0.135688 0.127447 0.12029 0.120014 0.126308 0.127688 0.120549 0.120283 0.126573 0.135872 0.13607 0.127946 0.120828 0.120571 0.126857 0.128233 0.121139 0.120878 0.127155 0.136283 0.13651 0.128525 0.121455 0.121203 0.127471 0.128823 0.121778 0.121548 0.127807 0.136751 0.137004 0.129158 0.122146 0.121914 0.128157 0.12949 0.12251 0.122299 0.128527 0.137271 0.13755 0.129858 0.122918 0.122705 0.128912 0.130234 0.123335 0.123131 0.129316 0.137842 0.138146 0.130626 0.123772 0.123579 0.129737 0.131024 0.124219 0.124049 0.130178 0.138461 0.138788 0.13145 0.124702 0.124543 0.130636 0.131903 0.125219 0.125059 0.131111 0.139126 0.139475 0.132354 0.125735 0.125599 0.131607 0.132832 0.126289 0.126164 0.13212 0.139836 0.140207 0.133337 0.126877 0.126754 0.132653 0.133852 0.127479 0.127369 0.133207 0.14059 0.140984 0.134386 0.128105 0.128008 0.133782 0.134933 0.128753 0.12869 0.13438 0.141387 0.1418 0.135506 0.129443 0.129399 0.134999 0.13611 0.130172 0.130134 0.135642 0.142221 0.142649 0.13673 0.130923 0.130907 0.136319 0.137382 0.131706 0.131709 0.137018 0.143079 0.143516 0.138055 0.132515 0.132538 0.137732 0.138738 0.133346 0.133401 0.138458 0.14396 0.14441 0.139441 0.134217 0.134293 0.139198 0.140164 0.135125 0.135211 0.13996 0.144865 0.145326 0.140896 0.136052 0.136175 0.140738 0.141645 0.137023 0.137171 0.141528 0.14579 0.146251 0.142407 0.138034 0.138202 0.142333 0.143178 0.139077 0.139277 0.143151 0.14671 0.147164 0.143956 0.140162 0.1404 0.143991 0.144742 0.141291 0.141571 0.144838 0.147608 0.148039 0.145531 0.142449 0.14279 0.145687 0.146318 0.143643 0.144047 0.146531 0.148451 0.148843 0.147098 0.144868 0.145331 0.14736 0.147863 0.146118 0.146629 0.148165 0.149207 0.149525 0.148599 0.147359 0.147907 0.148916 0.14973 0.149592 0.149424 0.149232 0.149019 0.14879 0.148549 0.148299 0.148041 0.147778 0.147512 0.147245 0.14698 0.146717 0.146455 0.146196 0.145941 0.14569 0.145443 0.1452 0.144963 0.144732 0.144508 0.144291 0.144082 0.14388 0.143687 0.143503 0.143327 0.143161 0.143004 0.142857 0.142721 0.142595 0.14248 0.142377 0.142287 0.142209 0.142143 0.142092 0.142054 0.142032 0.142024 0.142033 0.142059 0.142101 0.142162 0.14224 0.142339 0.142457 0.142597 0.142759 0.142945 0.143155 0.14339 0.143652 0.143941 0.144259 0.144606 0.144985 0.145398 0.145845 0.14633 0.146852 0.147414 0.148017 0.148663 0.149354 0.150092 0.15088 0.15172 0.152615 0.153567 0.154579 0.155651 0.156785 0.157983 0.159247 0.160578 0.161979 0.163449 0.164989 0.166598 0.168274 0.170015 0.171818 0.173679 0.175593 0.177555 0.179556 0.181587 0.183633 0.18568 0.187717 0.189727 0.191696 0.193605 0.195441 0.197188 0.198833 0.200367 0.201782 0.203072 0.204236 0.205274 0.206192 0.206994 0.207691 0.208288 0.208801 0.209242 0.209612 0.209948 0.21022 0.210551 0.210749 0.211437 0.208093 0.200826 0.201394 0.208339 0.215057 0.214766 0.219967 0.220226 0.225667 0.225449 0.222864 0.222707 0.22261 0.232818 0.232741 0.232623 0.229953 0.230175 0.234922 0.234777 0.238798 0.238975 0.243207 0.243123 0.241265 0.241586 0.24183 0.242016 0.232844 0.222471 0.222324 0.222118 0.221855 0.232582 0.232744 0.232828 0.242137 0.242175 0.242118 0.250857 0.250794 0.250618 0.250346 0.249994 0.249573 0.249077 0.246766 0.246893 0.250711 0.250687 0.25401 0.254078 0.257543 0.257585 0.25621 0.256884 0.257494 0.26443 0.263607 0.262743 0.26062 0.26062 0.263762 0.263876 0.266635 0.266556 0.269395 0.269588 0.268716 0.269785 0.27085 0.271849 0.265181 0.258031 0.258478 0.258817 0.259028 0.266769 0.266372 0.265835 0.272751 0.273531 0.274162 0.274611 0.266998 0.259087 0.250787 0.241947 0.232325 0.221512 0.221082 0.220544 0.219889 0.23082 0.231462 0.231958 0.241643 0.241184 0.24055 0.239724 0.230021 0.219102 0.218174 0.217093 0.21586 0.226535 0.227884 0.229044 0.238685 0.237424 0.235934 0.244568 0.246218 0.247588 0.24869 0.249537 0.250152 0.250561 0.258968 0.258637 0.258062 0.266318 0.266813 0.267026 0.274839 0.274799 0.274436 0.273697 0.265501 0.257215 0.256061 0.254584 0.252764 0.260754 0.262746 0.26432 0.272526 0.270877 0.268722 0.27681 0.279121 0.280805 0.281914 0.28251 0.282672 0.282471 0.281977 0.281245 0.280323 0.279249 0.278055 0.276766 0.275427 0.274128 0.27207 0.271905 0.274439 0.274716 0.276911 0.276654 0.278876 0.279237 0.27896 0.280517 0.282167 0.287023 0.285026 0.283179 0.281129 0.280776 0.282665 0.283113 0.284675 0.284222 0.285748 0.286286 0.286734 0.288907 0.291289 0.293705 0.289018 0.283788 0.285325 0.286748 0.288026 0.29449 0.292786 0.290949 0.296086 0.298396 0.300596 0.306308 0.303528 0.300673 0.297786 0.294901 0.292092 0.289556 0.287481 0.286918 0.288028 0.288665 0.289442 0.288762 0.289395 0.290167 0.291513 0.294474 0.297761 0.299719 0.295899 0.292467 0.290413 0.289596 0.289631 0.290533 0.290122 0.289148 0.288403 0.289458 0.29214 0.2961 0.300517 0.305167 0.303712 0.30117 0.304627 0.308102 0.311558 0.316244 0.311999 0.307812 0.309997 0.315005 0.320183 0.325508 0.320504 0.314941 0.308962 0.302635 0.296008 0.289112 0.289951 0.290477 0.290605 0.298762 0.298235 0.297282 0.30445 0.305947 0.307004 0.307464 0.298739 0.290238 0.289271 0.287605 0.285114 0.293773 0.296441 0.298024 0.30713 0.305634 0.302999 0.312892 0.315405 0.316622 0.316474 0.315364 0.313595 0.311418 0.318177 0.321186 0.323875 0.33266 0.32877 0.324704 0.330924 0.33638 0.341864 0.346922 0.335904 0.325879 0.326623 0.326139 0.323855 0.336658 0.338426 0.337724 0.350811 0.353291 0.352786 0.347802 0.331778 0.319196 0.308552 0.299029 0.290187 0.28181 0.27382 0.26605 0.258344 0.250601 0.242635 0.234207 0.224991 0.214464 0.212918 0.21122 0.20938 0.219264 0.221346 0.22326 0.232255 0.230083 0.227711 0.225164 0.217031 0.207418 0.205344 0.203182 0.20095 0.209671 0.21221 0.214671 0.222469 0.219664 0.216788 0.222822 0.226067 0.229276 0.232345 0.235253 0.237958 0.240427 0.248106 0.245299 0.242216 0.248828 0.252315 0.255528 0.26285 0.259236 0.255232 0.250967 0.245077 0.238881 0.235428 0.231846 0.228187 0.233041 0.237107 0.241129 0.246505 0.241967 0.237434 0.23297 0.228998 0.224538 0.219563 0.213852 0.207079 0.198668 0.19636 0.194043 0.191729 0.199271 0.20186 0.204466 0.210892 0.207964 0.205084 0.202268 0.196711 0.189432 0.18717 0.184959 0.18281 0.189346 0.191727 0.194188 0.199519 0.196842 0.194252 0.198144 0.200912 0.203788 0.206771 0.209861 0.213043 0.216291 0.220936 0.217397 0.213952 0.217451 0.22118 0.225035 0.228627 0.224436 0.220418 0.216582 0.213865 0.210618 0.207406 0.204326 0.201379 0.204045 0.20716 0.210433 0.212935 0.209477 0.206203 0.207899 0.211319 0.214952 0.218808 0.222893 0.227208 0.231745 0.236488 0.24141 0.246461 0.251564 0.256628 0.261524 0.266108 0.270237 0.277771 0.273011 0.267722 0.273921 0.280032 0.285546 0.293708 0.287323 0.280237 0.272794 0.267479 0.26211 0.256359 0.250619 0.244999 0.248203 0.254463 0.260931 0.26529 0.257981 0.251003 0.253364 0.261156 0.269459 0.278106 0.286763 0.295071 0.302496 0.312256 0.303561 0.293715 0.30125 0.313262 0.323777 0.338224 0.324937 0.30968 0.294299 0.28887 0.283462 0.273388 0.263905 0.255198 0.256389 0.266115 0.276998 0.280106 0.267587 0.256762 0.247458 0.247784 0.247306 0.246159 0.244444 0.242233 0.239578 0.234408 0.229512 0.224898 0.226433 0.231345 0.23661 0.238342 0.232698 0.227493 0.222699 0.221863 0.220564 0.216507 0.212712 0.209159 0.210006 0.213674 0.217618 0.218284 0.214212 0.210451 0.210503 0.214331 0.218503 0.223062 0.228057 0.233539 0.239559 0.240204 0.233826 0.228096 0.227574 0.233504 0.240198 0.239447 0.232507 0.226451 0.221122 0.222294 0.222934 0.218267 0.21403 0.210168 0.209451 0.213309 0.217567 0.216394 0.212166 0.208358 0.204905 0.205937 0.206632 0.206979 0.206969 0.206591 0.205834 0.20468 0.203108 0.201085 0.198566 0.195488 0.191759 0.187048 0.180725 0.17871 0.176768 0.174901 0.180678 0.182712 0.184836 0.189369 0.187083 0.1849 0.182818 0.178733 0.173111 0.171399 0.169765 0.168209 0.173432 0.175112 0.176878 0.180836 0.178951 0.177161 0.180041 0.181928 0.183915 0.186008 0.188209 0.190521 0.192947 0.195884 0.193332 0.190906 0.193083 0.195609 0.198274 0.200182 0.197417 0.194804 0.192336 0.19069 0.188602 0.186416 0.184342 0.182376 0.184246 0.186278 0.188424 0.190004 0.1878 0.185715 0.183744 0.182322 0.180512 0.178251 0.175462 0.171835 0.166729 0.165322 0.163987 0.16272 0.167523 0.168885 0.170321 0.173851 0.172325 0.170879 0.169512 0.166232 0.161519 0.160381 0.159305 0.158292 0.162742 0.163843 0.165007 0.168219 0.166993 0.165831 0.168111 0.169331 0.170618 0.171982 0.173423 0.174946 0.176554 0.178745 0.177071 0.175486 0.177138 0.178773 0.180499 0.181879 0.180113 0.178442 0.176859 0.175589 0.173983 0.172561 0.171215 0.16994 0.171418 0.172733 0.174122 0.175361 0.173941 0.172597 0.173519 0.174882 0.176322 0.177841 0.179446 0.181141 0.182933 0.184828 0.186833 0.188956 0.191205 0.193588 0.196117 0.198802 0.201652 0.202719 0.199799 0.197059 0.197657 0.200436 0.203408 0.203738 0.200734 0.197934 0.19532 0.195054 0.194485 0.192064 0.189785 0.187638 0.188159 0.190317 0.192612 0.192872 0.190578 0.188422 0.188449 0.190587 0.192867 0.195303 0.197911 0.200711 0.203725 0.203381 0.200381 0.197603 0.197026 0.199761 0.20272 0.201754 0.198863 0.196197 0.193728 0.19449 0.195021 0.192614 0.190365 0.188257 0.187864 0.189927 0.19213 0.191432 0.189291 0.187287 0.185406 0.185928 0.186278 0.186439 0.186395 0.186126 0.185612 0.1837 0.181893 0.180185 0.180689 0.182399 0.184209 0.184484 0.182682 0.18098 0.17937 0.179071 0.178569 0.177039 0.17559 0.174216 0.174714 0.176089 0.17754 0.177847 0.176404 0.175036 0.175199 0.176553 0.17798 0.179487 0.181079 0.182763 0.184547 0.184416 0.182661 0.181004 0.180772 0.182392 0.184108 0.183638 0.181971 0.180397 0.178909 0.179241 0.179439 0.177957 0.176553 0.175222 0.175116 0.176419 0.177792 0.1775 0.176164 0.174896 0.173692 0.173879 0.173958 0.173916 0.173738 0.17341 0.172914 0.172226 0.171323 0.170172 0.168732 0.166957 0.164732 0.161703 0.157337 0.156437 0.155591 0.154795 0.158924 0.159797 0.160722 0.163693 0.162711 0.161784 0.16091 0.158101 0.154046 0.153343 0.152682 0.152062 0.155903 0.156593 0.157325 0.160085 0.159306 0.158569 0.160458 0.161235 0.162058 0.16293 0.163853 0.16483 0.165864 0.167589 0.166506 0.165481 0.166811 0.167872 0.168991 0.170115 0.168969 0.167883 0.166853 0.165807 0.164512 0.163594 0.162727 0.161907 0.163098 0.163953 0.164855 0.165875 0.164948 0.164069 0.163235 0.16229 0.161133 0.159725 0.157871 0.155251 0.151482 0.15094 0.150435 0.149965 0.153528 0.154065 0.154639 0.157209 0.156586 0.156 0.155448 0.153024 0.149528 0.149123 0.148747 0.148398 0.151699 0.152111 0.152553 0.154929 0.154441 0.153982 0.155602 0.156092 0.156613 0.157166 0.157752 0.158373 0.159031 0.160403 0.159712 0.159057 0.160113 0.1608 0.161524 0.162445 0.161697 0.160987 0.160313 0.159463 0.158438 0.157853 0.157301 0.15678 0.157715 0.158265 0.158848 0.159675 0.15907 0.158496 0.159143 0.159733 0.160355 0.16101 0.161701 0.162427 0.163193 0.164 0.16485 0.165746 0.166691 0.167685 0.168733 0.169837 0.171 0.171678 0.170505 0.169392 0.169883 0.170998 0.172173 0.172507 0.171337 0.170226 0.16917 0.168823 0.168334 0.16733 0.166376 0.16547 0.165948 0.166858 0.167816 0.168166 0.167211 0.166302 0.166546 0.167448 0.168396 0.169391 0.170438 0.171539 0.172697 0.172758 0.171618 0.170533 0.170523 0.171586 0.172704 0.172547 0.171457 0.170419 0.169431 0.169511 0.169501 0.168519 0.167583 0.166693 0.166753 0.167628 0.168547 0.16849 0.167592 0.166735 0.165919 0.165918 0.165844 0.165687 0.165438 0.165083 0.164609 0.163792 0.163015 0.162277 0.162735 0.163479 0.164261 0.164616 0.163833 0.163088 0.162379 0.162027 0.161576 0.160909 0.160275 0.159673 0.160104 0.160713 0.161354 0.161703 0.161061 0.160449 0.160718 0.161329 0.16197 0.162643 0.163349 0.164091 0.16487 0.165035 0.164265 0.16353 0.16364 0.164364 0.165122 0.165139 0.164396 0.163686 0.163008 0.16295 0.16283 0.162163 0.161527 0.16092 0.161063 0.161663 0.162291 0.162361 0.161744 0.161154 0.161199 0.161776 0.16238 0.163013 0.163675 0.164368 0.165094 0.165853 0.166649 0.167483 0.168356 0.169272 0.170232 0.171239 0.172296 0.173406 0.174573 0.1758 0.177093 0.178455 0.179893 0.181412 0.183021 0.184727 0.18654 0.188472 0.190537 0.19275 0.195131 0.197704 0.200498 0.203549 0.2069 0.210608 0.214744 0.219399 0.224691 0.230771 0.237842 0.246163 0.256076 0.267997 0.282372 0.299599 0.319396 0.339833 0.357724 0.369756 0.374431 0.372457 0.366665 0.359249 0.351562 0.343892 0.336583 0.329614 0.322982 0.316696 0.310735 0.305073 0.299684 0.294599 0.290065 0.288151 0.286992 0.285181 0.286419 0.283811 0.28245 0.279098 0.280525 0.285432 0.290505 0.296305 0.28837 0.281807 0.276534 0.275871 0.274414 0.268568 0.269973 0.260835 0.260206 0.248974 0.250124 0.257745 0.262821 0.270342 0.27807 0.295397 0.302496 0.309092 0.316148 0.323745 0.320294 0.311239 0.302999 0.286657 0.296016 0.306498 0.275241 0.264668 0.264559 0.254706 0.255079 0.245796 0.246653 0.237827 0.23901 0.23052 0.231633 0.223824 0.22465 0.22604 0.230886 0.234354 0.222531 0.221846 0.202759 0.204646 0.182012 0.181046 0.178919 0.198912 0.196317 0.178865 0.180686 0.201763 0.198164 0.180513 0.183448 0.203592 0.202118 0.183419 0.186467 0.208493 0.204338 0.185878 0.189127 0.209828 0.208499 0.189026 0.192246 0.215128 0.210859 0.191597 0.195051 0.216477 0.215244 0.194992 0.198434 0.222106 0.217932 0.197832 0.201516 0.223719 0.222649 0.201556 0.205277 0.229813 0.225787 0.204737 0.208691 0.231778 0.2309 0.208855 0.21287 0.238404 0.234534 0.212437 0.216733 0.240787 0.240146 0.217031 0.221416 0.248067 0.244373 0.221092 0.225796 0.250941 0.275897 0.250595 0.226265 0.231104 0.259016 0.287351 0.318355 0.330344 0.33197 0.340898 0.35066 0.361431 0.369391 0.354456 0.34162 0.331951 0.347879 0.367295 0.392272 0.386892 0.373021 0.385982 0.397741 0.405286 0.450962 0.430633 0.407562 0.424734 0.467892 0.51645 0.531434 0.49161 0.454661 0.420144 0.398407 0.373408 0.361956 0.342808 0.336841 0.321198 0.317523 0.303549 0.301255 0.288716 0.262533 0.255581 0.230926 0.236127 0.236812 0.262559 0.271598 0.268562 0.242238 0.242247 0.248103 0.275992 0.27651 0.249118 0.255239 0.286328 0.283866 0.25545 0.262179 0.291898 0.292952 0.263533 0.270396 0.303678 0.301971 0.270731 0.278308 0.31079 0.312961 0.280148 0.288956 0.32549 0.326538 0.291257 0.302303 0.338338 0.343956 0.307489 0.320809 0.360191 0.36628 0.327681 0.3464 0.384361 0.399602 0.363927 0.321853 0.351455 0.398484 0.425225 0.44324 0.416116 0.441999 0.466594 0.489672 0.468006 0.505232 0.516551 0.548977 0.540598 0.581907 0.5831 0.588796 0.623928 0.630632 0.629549 0.567946 0.520173 0.481805 0.435362 0.388047 0.364198 0.695444 0.682088 0.663153 0.63693 0.551697 0.455243 0.402353 0.386386 0.360113 0.330792 0.343904 0.389341 0.432485 0.519377 0.432599 0.357138 0.305668 0.307241 0.304326 0.283221 0.266888 0.254027 0.250282 0.263663 0.281657 0.276065 0.257648 0.244555 0.236741 0.248361 0.26529 0.293866 0.337284 0.377274 0.43089 0.502823 0.596039 0.668183 0.68875 0.796492 0.717068 0.739908 0.763433 0.78236 0.71032 0.870495 0.83365 0.915005 0.977075 1 0.951156 0.829754 0.699861 0.825915 0.941399 1 0.887235 0.739764 0.703708 0.597499 0.540872 0.437489 0.370656 0.325539 0.313699 0.352742 0.413111 0.457957 0.519154 0.514529 0.605961 0.600872 0.764774 0.919184 0.499003 0.46795 0.395861 0.422694 0.442723 0.393401 0.375568 0.352275 0.325694 0.347204 0.32516 0.288284 0.304929 0.287962 0.301651 0.321365 0.275469 0.267882 0.264764 0.237607 0.240045 0.253095 0.255949 0.239825 0.238375 0.230229 0.227862 0.214346 0.201404 0.184927 0.181185 0.165965 0.150986 0.153727 0.142716 0.137066 0.138102 0.136474 0.133045 0.132949 0.136257 0.130864 0.130321 0.135168 0.122723 0.126314 0.121316 0.104437 0.122207 0.115932 0.0948888 0.119864 0.108645 0.0842986 0.116312 0.108259 0.0798144 0.11677 0.0849638 0.122826 0.112738 0.0832434 0.117076 0.107557 0.0816634 0.110425 0.0998811 0.0734011 0.106458 0.0786923 0.108969 0.0954372 0.0699856 0.102482 0.0719343 0.108557 0.0949243 0.0686868 0.100752 0.0868843 0.0648855 0.0914504 0.0652872 0.0968338 0.0670986 0.101381 0.0832823 0.0618026 0.0904262 0.0643205 0.0945654 0.0741879 0.0582268 0.0804525 0.058692 0.0885529 0.0613272 0.0937318 0.0718219 0.0559422 0.0796712 0.0573335 0.0847318 0.0594699 0.0880894 0.0675662 0.054071 0.0732961 0.0545248 0.0791842 0.0562536 0.0838581 0.0641299 0.0519629 0.0697223 0.0526197 0.072905 0.0530012 0.0757285 0.0540836 0.0794087 0.0607152 0.0503965 0.0647478 0.0507494 0.0666627 0.0507727 0.0674693 0.0507002 0.069271 0.051085 0.0734747 0.0568275 0.048116 0.0616466 0.0488025 0.0633072 0.0487327 0.0640113 0.0487388 0.0649825 0.0489111 0.0677986 0.0530155 0.0465082 0.0561176 0.0466832 0.0576704 0.0465763 0.0582175 0.0462748 0.0595537 0.0464512 0.0615786 0.0492115 0.0444817 0.052932 0.0448732 0.054311 0.044702 0.0551174 0.0445955 0.0560303 0.0445769 0.057596 0.0464441 0.0431833 0.0487154 0.0431483 0.0499038 0.0428391 0.0504275 0.0426123 0.051751 0.042682 0.0538028 0.0439931 0.0416707 0.0467157 0.0418047 0.047793 0.0416009 0.0484609 0.041477 0.0493562 0.0413772 0.0509246 0.0421333 0.0406874 0.0441019 0.0407322 0.0450626 0.04037 0.0457195 0.0399544 0.0479191 0.0404259 0.0391931 0.042169 0.0395898 0.0432502 0.0392334 0.044182 0.0390427 0.0458383 0.039241 0.0380532 0.0404456 0.038645 0.0418147 0.0383195 0.043505 0.0380767 0.0371159 0.0393134 0.0377027 0.0403939 0.0375457 0.0418653 0.0370855 0.0363654 0.0380006 0.0364846 0.0388032 0.0367199 0.0406057 0.0362378 0.0355712 0.0373593 0.035776 0.0385132 0.035013 0.0346062 0.0361223 0.0348819 0.0378405 0.0344728 0.0339511 0.0352707 0.0341034 0.0365708 0.0338206 0.0334715 0.0346932 0.0333526 0.0364848 0.0333935 0.0328565 0.0349969 0.0326505 0.0320976 0.0336914 0.0318748 0.0316974 0.0329273 0.0312871 0.0310417 0.0321436 0.0306635 0.0305162 0.0315152 0.0300051 0.0299197 0.0311578 0.0298156 0.029394 0.0311347 0.0298181 0.0287384 0.0284934 0.0298948 0.0286558 0.0281364 0.0273686 0.0267586 0.0265304 0.0260943 0.0266723 0.0297635 0.0302503 0.0310516 0.0318279 0.0322376 0.0326102 0.0327043 0.0329159 0.0329168 0.033071 0.0330526 0.0331903 0.0331944 0.0333478 0.0334041 0.033596 0.0337374 0.0339917 0.0342448 0.0345903 0.0349334 0.0353527 0.0358086 0.0363267 0.036901 0.0375012 0.0382001 0.0388732 0.0396811 0.0404201 0.0413163 0.0420774 0.0430278 0.0438061 0.0448189 0.0456063 0.0466652 0.0474621 0.0485735 0.049378 0.0505182 0.0513275 0.0524997 0.0533073 0.0544879 0.0552914 0.0564853 0.0572807 0.0584667 0.0592521 0.0604353 0.061205 0.0623631 0.0631171 0.064258 0.0649907 0.0661006 0.0668151 0.0678901 0.0685842 0.0696212 0.0702928 0.0712878 0.0719351 0.0728879 0.0735102 0.0744177 0.0750135 0.0758775 0.0764473 0.0772655 0.0778096 0.0785808 0.0790991 0.0798294 0.0803191 0.080997 0.0814678 0.0820981 0.0825485 0.0831204 0.0835555 0.0840699 0.0844855 0.0849481 0.0853417 0.085767 0.0861301 0.0865192 0.0868533 0.0872125 0.0875173 0.0878495 0.0881268 0.0884329 0.0886836 0.0889655 0.0891908 0.0894499 0.0896499 0.0898884 0.0900635 0.0902816 0.0904332 0.090632 0.0907623 0.0909419 0.091052 0.0912134 0.0913054 0.0914489 0.0915239 0.0916481 0.0917086 0.0918208 0.091863 0.0919571 0.0919866 0.0920711 0.0920841 0.0921539 0.0921552 0.0922122 0.092202 0.0922459 0.092226 0.092258 0.0922287 0.0922469 0.0922104 0.092222 0.0921742 0.0921737 0.0921196 0.0921141 0.0920492 0.0920356 0.0919639 0.0919426 0.0918654 0.091835 0.0917546 0.0917169 0.0916313 0.0915842 0.0914978 0.0914465 0.0913546 0.0912945 0.0912019 0.0911397 0.0910413 0.090973 0.0908718 0.0908018 0.0906981 0.0906233 0.0905185 0.0904395 0.0903349 0.0902517 0.0901444 0.0900624 0.089951 0.089866 0.0897543 0.0896675 0.0895552 0.0894644 0.0893527 0.0892641 0.0891489 0.0890585 0.0889436 0.0888526 0.0887376 0.0886449 0.0885308 0.0884375 0.088324 0.0882285 0.0881166 0.0880204 0.0879115 0.0878133 0.0877048 0.0876097 0.0874999 0.087402 0.0872948 0.0872003 0.0870921 0.0869949 0.0868893 0.0867959 0.0866895 0.0865936 0.08649 0.0863981 0.0862936 0.0861996 0.0860978 0.086008 0.0859054 0.0858138 0.0857137 0.0856268 0.0855256 0.0854374 0.0853383 0.0852555 0.0851549 0.0850725 0.0849722 0.0848933 0.0847958 0.0847174 0.0846191 0.0845463 0.0844463 0.0843738 0.0842741 0.0842051 0.084108 0.0840402 0.0839405 0.083877 0.0837782 0.0837154 0.0836181 0.0835564 0.0834621 0.0834007 0.0833057 0.0832493 0.0831531 0.0830963 0.083002 0.08295 0.0828542 0.082803 0.0827089 0.0826588 0.082567 0.0825158 0.0824266 0.0823792 0.0822879 0.0822428 0.0821531 0.082109 0.0820216 0.0819771 0.0818919 0.0818476 0.0817666 0.0817221 0.0816396 0.0815972 0.0815188 0.0814756 0.0813969 0.0813575 0.0812789 0.081238 0.0811616 0.0811243 0.081048 0.0810093 0.080935 0.0808998 0.0808256 0.0807891 0.0807169 0.0806838 0.0806115 0.0805773 0.0805069 0.0804761 0.0804056 0.0803736 0.0803049 0.0802764 0.0802076 0.0801779 0.0801107 0.0800847 0.0800171 0.07999 0.0799237 0.0799006 0.0798336 0.0798101 0.0797454 0.0797213 0.0796598 0.0796336 0.0795743 0.0795505 0.0794904 0.0794694 0.0794074 0.0793881 0.0793293 0.0793097 0.0792492 0.0792338 0.079172 0.0791572 0.0790961 0.0790821 0.0790222 0.0790087 0.0789496 0.0789367 0.0788788 0.0788663 0.0788091 0.0787973 0.078741 0.0787297 0.0786741 0.0786635 0.0786089 0.0785987 0.0785446 0.0785352 0.0784802 0.0784725 0.07842 0.0784117 0.0783583 0.0783515 0.0783007 0.0782928 0.0782424 0.0782348 0.0781849 0.0781779 0.078129 0.0781223 0.078074 0.0780678 0.07802 0.078014 0.0779665 0.0779609 0.077915 0.0779075 0.0778631 0.0778582 0.0778134 0.0778062 0.0777624 0.0777581 0.0777143 0.0777079 0.0776654 0.0776618 0.0776188 0.0776128 0.0775708 0.0775676 0.0775245 0.0775215 0.0774787 0.0774761 0.0774343 0.07743 0.0773878 0.0773854 0.0773436 0.0773412 0.0772994 0.0772964 0.0772575 0.0772524 0.0772123 0.07721 0.0771691 0.077164 0.0771239 0.0771217 0.0770812 0.0770764 0.0770371 0.0770352 0.0769953 0.0769907 0.0769516 0.0769509 0.0769088 0.0769081 0.076869 0.0768686 0.0768296 0.0768292 0.0767903 0.0767902 0.0767473 0.0767481 0.0767026 0.0767011 0.0766434 0.0766176 0.0764382 0.076086 0.0754633 0.0659927 0.0664109 0.0620403 0.0619041 0.0612607 0.061344 0.0616565 0.0614016 0.0649264 0.0615581 0.0690068 0.0695913 0.0691752 0.0642675 0.0630905 0.0615097 0.0622011 0.067276 0.0673955 0.0669957 0.062113 0.0622571 0.0674787 0.0624089 0.062263 0.0673754 0.0675374 0.0624734 0.0616171 0.0616201 0.0623273 0.0674376 0.0675873 0.0625624 0.062387 0.0674875 0.0676385 0.0625954 0.0617632 0.0617363 0.0624422 0.0675392 0.0676899 0.0626783 0.062504 0.0675912 0.0677447 0.0627114 0.0618805 0.0618528 0.0625582 0.0676465 0.0677948 0.0627918 0.0626187 0.0676972 0.067844 0.0628249 0.0619978 0.0619705 0.0626723 0.0677489 0.067898 0.0629071 0.0627366 0.0678015 0.0679505 0.0629411 0.0621185 0.0620916 0.0627933 0.0678568 0.0680074 0.0630265 0.0628565 0.0679116 0.0680598 0.0630592 0.0622404 0.062213 0.0629114 0.0679657 0.0681143 0.0631424 0.0629734 0.0680183 0.0681666 0.063174 0.0623623 0.0623354 0.0630304 0.0680733 0.0682245 0.063261 0.0630937 0.0681297 0.0682787 0.0632933 0.0624855 0.0624579 0.0631498 0.0681857 0.0683351 0.0633779 0.0632107 0.0682396 0.0683874 0.0634085 0.0626082 0.06258 0.0632677 0.0682943 0.0684448 0.0634953 0.0633304 0.0683505 0.0685004 0.063528 0.0627314 0.0627028 0.0633888 0.0684085 0.0685592 0.0636147 0.0634501 0.0684649 0.0686139 0.0636457 0.0628544 0.0628256 0.0635077 0.0685217 0.0686724 0.0637326 0.06357 0.0685788 0.0687297 0.0637654 0.0629783 0.0629495 0.0636301 0.0686387 0.0687909 0.0638544 0.0636923 0.068698 0.0688487 0.0638866 0.0631029 0.0630738 0.0637517 0.0687577 0.0689095 0.0639748 0.0638139 0.0688169 0.0689687 0.0640079 0.0632282 0.0631991 0.0638757 0.0688787 0.0690324 0.0640987 0.0639386 0.0689407 0.0690931 0.0641323 0.0633545 0.0633251 0.0640005 0.0690035 0.0691572 0.0642225 0.0640631 0.0690656 0.0692186 0.0642564 0.0634813 0.0634518 0.0641268 0.0691297 0.0692851 0.0643491 0.0641906 0.0691945 0.0693491 0.0643841 0.0636089 0.0635793 0.0642549 0.0692607 0.0694165 0.0644767 0.0643187 0.0693261 0.0694801 0.0645121 0.0637371 0.0637073 0.0643833 0.0693938 0.0695492 0.064605 0.0644487 0.0694607 0.0696166 0.0646426 0.0638661 0.0638363 0.064514 0.0695311 0.0696879 0.0647355 0.0645798 0.0695996 0.0697567 0.0647737 0.0639958 0.063966 0.064645 0.0696697 0.0698293 0.0648665 0.0647117 0.0697406 0.0698997 0.0649065 0.0641263 0.0640962 0.0647781 0.0698134 0.0699749 0.0649999 0.0648454 0.0698867 0.0700468 0.0650405 0.0642572 0.0642271 0.0649117 0.0699607 0.0701231 0.0651339 0.0649796 0.0700353 0.0701971 0.0651757 0.0643888 0.0643584 0.0650469 0.0701115 0.0702761 0.06527 0.0651157 0.0701887 0.0703521 0.0653125 0.0645207 0.0644902 0.065183 0.0702667 0.0704324 0.0654069 0.065252 0.0703451 0.0705102 0.0654498 0.0646529 0.0646221 0.06532 0.070425 0.0705932 0.0655451 0.0653896 0.0705064 0.0706732 0.0655886 0.0647853 0.0647542 0.0654579 0.0705882 0.0707579 0.0656845 0.0655274 0.0706709 0.0708397 0.0657278 0.0649177 0.064886 0.0655963 0.0707548 0.0709263 0.0658247 0.0656663 0.0708397 0.0710107 0.0658684 0.0650498 0.0650177 0.0657357 0.0709262 0.0710998 0.0659661 0.0658058 0.0710132 0.0711864 0.0660092 0.0651813 0.0651487 0.0658752 0.0711016 0.0712772 0.0661078 0.0659451 0.0711906 0.0713662 0.0661505 0.0653124 0.0652791 0.0660151 0.0712814 0.0714595 0.0662505 0.0660849 0.0713728 0.0715509 0.0662923 0.0654425 0.0654084 0.0661551 0.0714658 0.0716461 0.0663935 0.0662244 0.0715591 0.0717397 0.0664341 0.0655713 0.0655364 0.066295 0.0716544 0.0718373 0.0665371 0.0663642 0.07175 0.0719334 0.0665766 0.0656984 0.0656624 0.0664347 0.0718477 0.072033 0.0666805 0.0665036 0.0719452 0.0721311 0.066719 0.0658236 0.0657864 0.0665733 0.0720449 0.0722327 0.0668228 0.066642 0.0721443 0.0723332 0.0668611 0.0659466 0.065908 0.066711 0.0722464 0.0724369 0.0669644 0.0667795 0.0723479 0.0725394 0.0670018 0.0660668 0.0660269 0.0668466 0.0724517 0.0726453 0.0671041 0.0669146 0.0725553 0.0727492 0.0671406 0.0661843 0.0661428 0.0669801 0.0726605 0.0728569 0.0672421 0.0670474 0.0727659 0.0729626 0.0672775 0.0662986 0.0662552 0.0671106 0.072873 0.0730717 0.0673767 0.0671765 0.0729792 0.0731783 0.0674103 0.0664092 0.0663638 0.0672367 0.0730872 0.0732882 0.0675068 0.0673012 0.0731939 0.0733956 0.0675392 0.066516 0.0664685 0.0673584 0.0733025 0.0735057 0.0676323 0.0674212 0.0734096 0.0736142 0.0676645 0.0666186 0.066568 0.0674755 0.073519 0.0737257 0.0677535 0.0675372 0.0736272 0.0738356 0.0677861 0.0667158 0.0666621 0.0675886 0.0737378 0.0739481 0.0678712 0.0676484 0.0738471 0.0740589 0.0679028 0.0668072 0.0667498 0.0676961 0.0739583 0.0741725 0.067983 0.0677531 0.0740687 0.074284 0.0680121 0.0668919 0.0668309 0.0677982 0.0741807 0.0743983 0.0680897 0.0678516 0.0742912 0.0745099 0.0681153 0.0669696 0.0669043 0.067893 0.0744029 0.0746242 0.0681889 0.0679424 0.0745134 0.0747356 0.0682108 0.0670391 0.0669694 0.0679802 0.0746248 0.0748491 0.0682807 0.0680258 0.0747342 0.0749597 0.0682986 0.0671002 0.0670258 0.0680587 0.0748445 0.0750719 0.0683634 0.0680992 0.0749524 0.0751801 0.0683762 0.0671523 0.067073 0.0681272 0.0750599 0.075289 0.0684365 0.0681627 0.0751642 0.0753939 0.0684443 0.067195 0.0671102 0.0681858 0.0752684 0.0754998 0.0684991 0.0682158 0.0753707 0.0756028 0.0685012 0.0672273 0.0671366 0.0682333 0.075473 0.0757068 0.0685506 0.0682578 0.0755732 0.0758075 0.0685475 0.0672487 0.0671518 0.0682699 0.0756732 0.075909 0.068591 0.0682883 0.0757706 0.0760066 0.0685813 0.0672584 0.0671547 0.0682933 0.0758672 0.0761046 0.0686179 0.0683049 0.0759609 0.0761983 0.0686015 0.0672555 0.0671448 0.0683033 0.0760534 0.076292 0.0686315 0.0683077 0.0761426 0.0763809 0.0686074 0.0672397 0.0671209 0.0682983 0.07623 0.0764692 0.0686289 0.0682941 0.0763135 0.076552 0.0685951 0.0672097 0.0670814 0.0682741 0.0763946 0.0766343 0.0686083 0.0682618 0.0764708 0.0767167 0.0685672 0.0671629 0.0670258 0.068238 0.0765488 0.0767877 0.0685728 0.0682157 0.0766182 0.0768555 0.0685212 0.0670997 0.0669543 0.0681791 0.0766841 0.0769216 0.0685153 0.0681472 0.0767444 0.0769797 0.0684532 0.0670209 0.0668656 0.0681001 0.0768004 0.0770354 0.0684359 0.068057 0.07685 0.0770821 0.0683614 0.0669241 0.0667578 0.0679975 0.0768937 0.0771238 0.0683316 0.0679418 0.0769274 0.0771559 0.0682438 0.0668078 0.0666271 0.0678699 0.0769556 0.077183 0.0682021 0.067803 0.0769741 0.0771996 0.0681017 0.0666722 0.0664769 0.0677175 0.0769862 0.0772099 0.0680467 0.06764 0.0769876 0.0772079 0.0679337 0.0665174 0.0663066 0.0675392 0.0769805 0.0771984 0.0678653 0.0674501 0.0769612 0.077175 0.0677371 0.0663427 0.0661156 0.0673338 0.0769321 0.0771427 0.0676551 0.0672333 0.0768897 0.0770956 0.0675111 0.0661474 0.0659034 0.0671 0.0768368 0.0770391 0.0674142 0.0669883 0.0767714 0.0769712 0.0672536 0.0659314 0.0656704 0.0668368 0.0766919 0.0768882 0.0671419 0.0667139 0.0765984 0.0767914 0.0669631 0.0656955 0.0654164 0.0665456 0.0764889 0.0766778 0.0668351 0.0664086 0.0763637 0.0765485 0.0666366 0.0654394 0.0651426 0.0662229 0.0762204 0.0764001 0.0664908 0.0660695 0.07606 0.0762349 0.0662695 0.065165 0.0648509 0.0658643 0.0758796 0.0760483 0.0661026 0.0656909 0.0756809 0.0758441 0.0658604 0.0648752 0.0645428 0.065469 0.0754606 0.0756166 0.0656676 0.065271 0.07522 0.0753692 0.0654182 0.0645724 0.0642202 0.0650293 0.0749565 0.0750981 0.065184 0.0648093 0.0746711 0.0748041 0.0649223 0.0642574 0.0638882 0.0645455 0.074361 0.0744861 0.0646742 0.0643133 0.0740276 0.0741422 0.0643854 0.0639311 0.0635453 0.0640387 0.0736663 0.0737715 0.0641326 0.0637894 0.0732808 0.0733738 0.0638174 0.0635981 0.0631955 0.0635067 0.0728642 0.0729462 0.0635425 0.0632468 0.0724222 0.0724904 0.0632115 0.0632639 0.0628499 0.0629439 0.0719468 0.0720028 0.0629291 0.0626685 0.0714451 0.071486 0.0625835 0.0629352 0.0625092 0.0623548 0.0709081 0.0709352 0.0622907 0.0620712 0.0703436 0.0703538 0.0619248 0.0626135 0.0621774 0.0617367 0.0697422 0.0697375 0.0616213 0.0614444 0.0691075 0.0690788 0.0612325 0.0623057 0.0618626 0.0610851 0.0684348 0.0683856 0.0609189 0.0607851 0.0677312 0.0676559 0.060521 0.0620177 0.0615689 0.0604266 0.0669892 0.066891 0.0602068 0.0601333 0.0662158 0.0660888 0.0598053 0.061755 0.0613043 0.0597839 0.0654048 0.0652527 0.059485 0.0594858 0.0645662 0.0643844 0.0590661 0.0615295 0.061088 0.0591238 0.0636953 0.0634881 0.0587268 0.0588083 0.0628021 0.0625654 0.0582704 0.0613657 0.060949 0.0584136 0.0618849 0.0616253 0.0578833 0.0580516 0.0609565 0.0606668 0.0573465 0.0612953 0.0609249 0.0575846 0.060029 0.0596944 0.0568617 0.0571465 0.0591089 0.0587154 0.0562309 0.0613531 0.0610161 0.0566469 0.0581876 0.0577314 0.0557244 0.0562413 0.0572662 0.0567406 0.0551184 0.0614903 0.0611655 0.0557767 0.0563471 0.0557807 0.0546561 0.0554166 0.0554028 0.0548249 0.054088 0.0616945 0.0613857 0.0549967 0.0544612 0.0538745 0.0536815 0.0547012 0.0535247 0.0529288 0.0531932 0.0619421 0.0616359 0.0543759 0.0525959 0.0519877 0.0529177 0.0542201 0.0516712 0.0510467 0.0526109 0.0621602 0.0618208 0.0540663 0.0507497 0.0501045 0.0524922 0.0540056 0.049827 0.0491723 0.0522925 0.0623664 0.0620335 0.0539021 0.0489275 0.0482692 0.0522265 0.0539025 0.0480585 0.0474059 0.0520894 0.0626232 0.0622977 0.053858 0.0472289 0.046576 0.0520935 0.0539215 0.0464276 0.0457876 0.0520228 0.0629303 0.0626096 0.0539396 0.0456629 0.0450373 0.0521016 0.0540702 0.0449399 0.0443308 0.0521005 0.0632941 0.0629893 0.0541545 0.0442552 0.0436634 0.052254 0.0543539 0.043621 0.0430549 0.0523307 0.063701 0.0634077 0.0545077 0.0430532 0.0424951 0.0525686 0.0547636 0.0425597 0.0420183 0.052711 0.0641303 0.0638413 0.0549485 0.0421463 0.0416176 0.0529878 0.0552162 0.0418148 0.0412942 0.0531443 0.0645603 0.0642627 0.0554043 0.0415714 0.0410448 0.0534232 0.0556631 0.0414211 0.0408931 0.053572 0.0649536 0.0646226 0.0558271 0.0413688 0.0408417 0.0538227 0.0560383 0.0414096 0.0408842 0.0539221 0.06524 0.0648357 0.0561289 0.0415414 0.0410197 0.0540904 0.0562291 0.0417566 0.0412346 0.0540721 0.0653092 0.0647639 0.0561614 0.0420435 0.0415215 0.0540572 0.0560373 0.042378 0.0418469 0.053801 0.064975 0.0641885 0.0557072 0.0426866 0.0421478 0.0534868 0.0552588 0.0429667 0.0423832 0.0529028 0.0640297 0.0629789 0.0545342 0.0431457 0.04253 0.0521465 0.0535146 0.0431324 0.0423693 0.0508656 0.062271 0.0607555 0.0518949 0.0426678 0.0417891 0.049118 0.0502725 0.0425252 0.0427488 0.0478319 0.060596 0.0610006 0.0492539 0.0448475 0.0323567 0.0331506 0.0451511 0.0477993 0.0469638 0.0344141 0.0328885 0.0367947 0.0506189 0.0353986 0.0416249 0.0545419 0.042285 0.0327455 0.0369406 0.0417497 0.0502638 0.0583105 0.0492813 0.0690958 0.0636287 0.0635282 0.0689014 0.0762369 0.0683172 0.0762397 0.0695028 0.0695034 0.0773069 0.0721902 0.072504 0.0796912 0.0750063 0.0749165 0.0824815 0.0771493 0.0763954 0.0844379 0.0783502 0.0771207 0.0856389 0.078943 0.0774268 0.0863866 0.0791992 0.0774888 0.0868404 0.0792423 0.0774003 0.0871283 0.0791561 0.0772169 0.087269 0.0789783 0.076967 0.0872836 0.0787335 0.076671 0.0871972 0.0784409 0.0763447 0.0870302 0.0781157 0.0760017 0.0868 0.0777708 0.0756499 0.0865199 0.0774137 0.0752945 0.0862032 0.0770505 0.0749361 0.0858572 0.0766826 0.0745659 0.0854911 0.0763042 0.0741734 0.085108 0.0759066 0.0737691 0.0847145 0.0754991 0.0733715 0.0843114 0.075097 0.0729971 0.0839075 0.0747149 0.0726533 0.0834999 0.0743583 0.0723412 0.0830919 0.0740287 0.0720588 0.082688 0.0737251 0.071804 0.0822912 0.0734455 0.071576 0.0819039 0.0731904 0.0713735 0.0815276 0.0729572 0.0711918 0.0811627 0.0727432 0.0710291 0.0808099 0.0725457 0.0708834 0.0804691 0.0723653 0.0707538 0.0801399 0.0722011 0.0706418 0.0798223 0.0720551 0.0705448 0.0795158 0.0719229 0.0704598 0.0792198 0.0718004 0.0703838 0.0789384 0.0716886 0.0703157 0.0786624 0.0715867 0.0702537 0.0783985 0.0714908 0.0701955 0.078144 0.0713993 0.0701399 0.0778983 0.0713115 0.0700856 0.077661 0.0712263 0.0700316 0.0774313 0.0711425 0.069977 0.0772088 0.0710595 0.0699207 0.0769928 0.0709762 0.0698621 0.0767841 0.0708918 0.0698003 0.0765763 0.0708064 0.0697357 0.0763797 0.0707193 0.0696695 0.0761849 0.0706307 0.0695986 0.075994 0.0705395 0.0695241 0.0758061 0.0704459 0.0694458 0.0756244 0.07035 0.0693641 0.0754418 0.0702514 0.0692786 0.0752638 0.0701501 0.0691893 0.0750879 0.0700461 0.0690965 0.0749142 0.0699395 0.0690001 0.0747422 0.0698303 0.0689004 0.074572 0.0697186 0.0687974 0.0744032 0.0696044 0.0686911 0.0742356 0.0694876 0.0685817 0.0740691 0.0693685 0.0684693 0.0739036 0.069247 0.0683541 0.0737389 0.0691234 0.0682364 0.0735749 0.0689977 0.0681162 0.0734115 0.0688702 0.0679939 0.0732487 0.068741 0.0678696 0.0730863 0.0686102 0.0677434 0.0729245 0.068478 0.0676157 0.0727631 0.0683445 0.0674864 0.0726021 0.0682099 0.0673558 0.0724418 0.0680736 0.0672238 0.0722821 0.0679366 0.0670909 0.0721229 0.0677993 0.0669572 0.0719639 0.0676615 0.0668228 0.0718054 0.0675232 0.066688 0.0716472 0.0673853 0.0665532 0.0714892 0.0672471 0.066418 0.0713317 0.0671083 0.0662825 0.0711747 0.0669687 0.0661467 0.0710182 0.0668299 0.0660112 0.0708621 0.0666916 0.0658759 0.0707066 0.0665531 0.0657407 0.0705519 0.0664143 0.0656057 0.0703979 0.066276 0.065471 0.0702443 0.0661393 0.0653371 0.0700912 0.0660026 0.0652035 0.0699389 0.0658662 0.0650703 0.069787 0.0657301 0.0649375 0.069636 0.0655946 0.0648053 0.0694853 0.0654596 0.0646735 0.0693356 0.0653251 0.0645422 0.0691861 0.065191 0.0644113 0.0690376 0.0650573 0.0642807 0.0688887 0.0649236 0.0641501 0.0687404 0.06479 0.0640193 0.0685906 0.0646562 0.0638876 0.0684418 0.0645204 0.0637561 0.0682934 0.0643857 0.0636255 0.0681565 0.0642535 0.0635016 0.0679898 0.0641186 0.0633636 0.0680676 0.0640075 0.0632887 0.0676904 0.0638011 0.074332 0.074323 0.076885 0.0766927 0.0782132 0.0782473 0.0791415 0.0791966 0.0798269 0.0797365 0.0800966 0.0801993 0.0803747 0.0802719 0.0803069 0.0804042 0.0803303 0.0802418 0.0801098 0.080188 0.0800048 0.0799371 0.0797433 0.0798008 0.0795907 0.0795425 0.0793442 0.0793842 0.0791874 0.0791546 0.0789771 0.0790038 0.078835 0.0788134 0.0786639 0.0786814 0.0785425 0.0785285 0.0784063 0.0784175 0.0783054 0.0782965 0.0781979 0.078205 0.0781151 0.0781094 0.0780302 0.0780346 0.0779625 0.0779591 0.0778953 0.077898 0.0778401 0.077838 0.0777866 0.0777881 0.0777415 0.0777404 0.0776988 0.0776995 0.0776618 0.0776614 0.0776277 0.0776279 0.0775974 0.0775975 0.0775703 0.0775701 0.0775455 0.0775459 0.0775241 0.0775235 0.0775039 0.0775046 0.0774872 0.0774864 0.077471 0.0774719 0.0774583 0.0774574 0.0774456 0.0774465 0.0774364 0.0774354 0.0774268 0.0774278 0.0774208 0.0774197 0.0774143 0.0774154 0.0774118 0.0774106 0.0774085 0.0774096 0.0774071 0.0774093 0.077413 0.0774185 0.0774256 0.0774343 0.0774445 0.0774564 0.0774701 0.0774856 0.0775032 0.077523 0.0775451 0.0775699 0.0775975 0.0776283 0.0776626 0.0777007 0.0777431 0.0777904 0.077843 0.0779018 0.0779674 0.0780407 0.0781227 0.0782145 0.0783172 0.0784321 0.0785604 0.0787033 0.0788617 0.0790361 0.0792263 0.0794305 0.0796455 0.079865 0.0800792 0.0802734 0.0804272 0.0805126 0.0804938 0.0803255 0.0799505 0.0792943 0.0782435 0.0765909 0.0737534 0.0739145 0.074036 0.0741994 0.0743593 0.0745312 0.0773086 0.0771371 0.0769693 0.0768115 0.0766715 0.0783492 0.0794177 0.0800825 0.0802282 0.0795654 0.0784921 0.078652 0.0788178 0.0789872 0.0800467 0.0798829 0.0797217 0.0803781 0.0805312 0.0806863 0.0810223 0.0808782 0.0807358 0.0805952 0.0804565 0.0806179 0.0806264 0.0805291 0.0806329 0.0807427 0.0807463 0.0808755 0.0810056 0.0811372 0.0810948 0.0809766 0.0808594 0.0807368 0.0808409 0.0809458 0.0807295 0.0806376 0.0805463 0.0804549 0.0803635 0.0801577 0.0799329 0.0797038 0.0797628 0.0800018 0.0802374 0.0803169 0.0803963 0.0804759 0.0802072 0.0801387 0.0800704 0.0798216 0.07988 0.0799385 0.0799971 0.0802759 0.0805561 0.0808221 0.0810516 0.0812144 0.0812704 0.0811685 0.080844 0.0802134 0.0791593 0.0774812 0.0746957 0.0748669 0.0750336 0.0752053 0.0753747 0.0755481 0.0757205 0.0758959 0.0787384 0.0785536 0.0783711 0.0781895 0.0780107 0.0778322 0.0776567 0.0793341 0.0795106 0.0796893 0.0807277 0.0805542 0.0803826 0.0810041 0.0811665 0.0813309 0.0814972 0.0809033 0.0798696 0.0800521 0.0802363 0.0804228 0.0814419 0.0812604 0.0810809 0.0816654 0.0818354 0.0820074 0.0821813 0.0816255 0.0806108 0.0789249 0.0760714 0.0762494 0.0764283 0.0766089 0.0767909 0.0769743 0.0771596 0.0773465 0.0802865 0.0800856 0.0798871 0.0796907 0.0794964 0.0793038 0.0791134 0.0808017 0.0809944 0.0811893 0.0821889 0.081999 0.0818111 0.0823571 0.0825349 0.0827146 0.0828961 0.0823808 0.081386 0.0815852 0.0817866 0.0819903 0.0829695 0.082771 0.0825748 0.0830796 0.0832649 0.0834523 0.0835809 0.0834082 0.0832372 0.0830678 0.0829001 0.0827341 0.0825697 0.0824071 0.0822462 0.082087 0.0819296 0.0817738 0.0816197 0.0814674 0.0813169 0.0814056 0.0815425 0.081681 0.0815821 0.0814582 0.0813356 0.0811587 0.081267 0.0813763 0.0814866 0.0817073 0.081821 0.0819626 0.0821056 0.0822501 0.0820905 0.0819615 0.0818338 0.081598 0.0817104 0.0818238 0.081494 0.0813956 0.081298 0.0812012 0.0811052 0.08101 0.0809156 0.0806369 0.0807183 0.0808004 0.0804849 0.0804148 0.0803452 0.080056 0.0801151 0.0801744 0.0802341 0.0805553 0.080883 0.0809663 0.08105 0.0811344 0.0807691 0.0806974 0.0806262 0.080294 0.080354 0.0804143 0.0804747 0.080841 0.0812193 0.0815932 0.0819382 0.0822207 0.0823961 0.0825436 0.0826926 0.0828429 0.0826186 0.0824849 0.0823522 0.0820536 0.08217 0.0822872 0.0824053 0.0827536 0.0829946 0.0831479 0.0833025 0.0834585 0.0831656 0.0830272 0.0828898 0.0825244 0.0826445 0.0827655 0.0823071 0.082203 0.0820996 0.0819969 0.081895 0.0817937 0.0816931 0.0813048 0.0813908 0.0814771 0.0810589 0.080986 0.0809134 0.0805355 0.0805963 0.0806572 0.0807183 0.0811321 0.081564 0.0816514 0.0817392 0.0818275 0.0813534 0.0812794 0.0812056 0.0807796 0.0808408 0.0809022 0.0804845 0.0804341 0.0803836 0.080333 0.0802825 0.0802319 0.0801814 0.0801308 0.0800803 0.08003 0.0799797 0.0799294 0.0798793 0.0798292 0.0797794 0.0797296 0.0796799 0.0796303 0.0795806 0.0795305 0.0794802 0.0792683 0.0790715 0.0788913 0.0789216 0.0791076 0.079311 0.0793534 0.0793955 0.0794375 0.0792143 0.0791789 0.0791434 0.0789518 0.0789817 0.0790114 0.0788287 0.0788038 0.0787787 0.0787534 0.0787279 0.0785808 0.078449 0.0783311 0.0783457 0.0784666 0.078602 0.0786232 0.0786442 0.078665 0.0785192 0.0785018 0.0784843 0.0783603 0.0783749 0.0783894 0.078274 0.0782621 0.07825 0.0782378 0.0782258 0.0781319 0.0780482 0.0779734 0.0779798 0.0780562 0.0781418 0.0781518 0.0781617 0.0781716 0.0780806 0.0780725 0.0780643 0.0779864 0.0779931 0.0779996 0.0779276 0.0779223 0.077917 0.0779117 0.0779065 0.0778467 0.0777932 0.0777452 0.0777476 0.0777963 0.0778508 0.077855 0.0778592 0.0778634 0.0778061 0.0778028 0.0777996 0.07775 0.0777524 0.0777549 0.0777572 0.0778092 0.0778675 0.0779328 0.0780061 0.0780886 0.0781814 0.0782859 0.0784037 0.0785364 0.0786857 0.0788534 0.0790409 0.0792495 0.0794794 0.0795213 0.0795632 0.0796052 0.0793548 0.0793198 0.0792847 0.0790704 0.0790997 0.0791289 0.079158 0.0793898 0.0796471 0.0796891 0.079731 0.0797729 0.0794942 0.0794595 0.0794247 0.0791869 0.0792157 0.0792443 0.0790221 0.0789985 0.0789747 0.0789508 0.0789267 0.0789024 0.078878 0.0787062 0.0787265 0.0787467 0.0785869 0.0785703 0.0785534 0.0784178 0.0784318 0.0784455 0.0784591 0.0786034 0.0787666 0.0787864 0.0788059 0.0788253 0.0786516 0.0786358 0.0786197 0.0784725 0.0784856 0.0784986 0.0785113 0.0786672 0.0788444 0.0790454 0.0792728 0.0795288 0.0798148 0.0798566 0.0798984 0.07994 0.0796317 0.0795976 0.0795633 0.0793011 0.0793292 0.0793571 0.0793848 0.0796657 0.0799816 0.080023 0.0800643 0.0801054 0.0797664 0.079733 0.0796995 0.0794122 0.0794393 0.0794662 0.0792023 0.0791807 0.0791588 0.0791366 0.0791142 0.0790915 0.0790686 0.0788633 0.078882 0.0789004 0.0787127 0.0786978 0.0786826 0.0785238 0.0785361 0.0785481 0.0785598 0.0787273 0.0789185 0.0789364 0.078954 0.0789712 0.0787694 0.0787557 0.0787417 0.0785713 0.0785825 0.0785934 0.0784398 0.0784312 0.0784223 0.0784131 0.0784037 0.0783941 0.0783842 0.0783741 0.0783638 0.0783532 0.0783425 0.0783316 0.0783204 0.0783091 0.0782976 0.078191 0.0782004 0.0782097 0.0781117 0.0781042 0.0780964 0.0780125 0.0780187 0.0780248 0.0780307 0.0781191 0.0782188 0.0782277 0.0782364 0.078245 0.0781401 0.0781333 0.0781263 0.0780365 0.0780421 0.0780476 0.0779656 0.0779614 0.077957 0.0779524 0.0779477 0.0779429 0.0779379 0.0778715 0.0778754 0.0778792 0.0778181 0.0778153 0.0778123 0.0777595 0.0777617 0.0777637 0.0777657 0.0778209 0.0778828 0.0778863 0.0778897 0.077893 0.0778284 0.077826 0.0778235 0.0777676 0.0777693 0.077771 0.0777726 0.0778307 0.0778961 0.0779697 0.0780528 0.0781468 0.0782533 0.0782614 0.0782693 0.078277 0.0781657 0.0781596 0.0781533 0.0780579 0.0780629 0.0780677 0.0780723 0.0781716 0.0782845 0.0782918 0.0782988 0.0783056 0.0781881 0.0781828 0.0781773 0.0780767 0.078081 0.0780851 0.0779946 0.0779914 0.0779882 0.0779847 0.0779812 0.0779775 0.0779737 0.0778991 0.077902 0.0779048 0.077837 0.077835 0.0778329 0.0777741 0.0777755 0.0777769 0.0777782 0.0778389 0.0779074 0.07791 0.0779124 0.0779148 0.0778443 0.0778426 0.0778408 0.0777794 0.0777807 0.0777819 0.077783 0.0778459 0.077917 0.0779976 0.078089 0.0781932 0.0783121 0.0784481 0.078604 0.0787829 0.0789881 0.0792235 0.0794928 0.0797995 0.0801464 0.0805349 0.0809636 0.0814276 0.0819162 0.0824117 0.0828872 0.0833052 0.0836159 0.0837553 0.0836418 0.08317 0.0821964 0.0804896 0.077535 0.0777252 0.0779172 0.0781108 0.0783063 0.0785036 0.0787029 0.0789041 0.0819773 0.0817573 0.0815399 0.081325 0.0811127 0.0809026 0.080695 0.082405 0.0826161 0.0828295 0.083786 0.0835783 0.0833732 0.0838332 0.0840266 0.0842221 0.0844195 0.0839957 0.0830453 0.0832638 0.0834847 0.0837083 0.084639 0.0844222 0.0842077 0.084619 0.0848205 0.085024 0.0852293 0.084858 0.0839345 0.0821999 0.0791074 0.0793128 0.0795203 0.07973 0.0799422 0.0801565 0.0803733 0.0805927 0.0838364 0.0835936 0.0833543 0.0831176 0.0828842 0.0826532 0.0824252 0.0841635 0.0843948 0.0846291 0.0855297 0.0853035 0.0850796 0.0854367 0.085646 0.0858573 0.0860705 0.0857583 0.0848661 0.0851058 0.0853483 0.0855937 0.0864579 0.0862223 0.0859891 0.0862854 0.0865022 0.0867209 0.0865687 0.0863706 0.0861739 0.0859787 0.0857847 0.0855922 0.0854013 0.0852119 0.0850241 0.0848378 0.0846532 0.0844703 0.084289 0.0841094 0.0839315 0.0837748 0.0839351 0.0840968 0.0837307 0.0835877 0.0834459 0.0830097 0.0831332 0.0832575 0.0833826 0.0838747 0.0842599 0.0844242 0.0845899 0.084757 0.084313 0.0841659 0.0840197 0.0835085 0.0836351 0.0837624 0.0831599 0.0830515 0.0829435 0.0828361 0.0827291 0.0826228 0.0825169 0.0820053 0.0820947 0.0821844 0.0816513 0.0815766 0.081502 0.0810251 0.0810865 0.0811479 0.0812093 0.0817261 0.0822745 0.0823649 0.0824556 0.0825465 0.0819511 0.081876 0.081801 0.0812706 0.0813318 0.0813928 0.0814537 0.0820261 0.0826376 0.0832688 0.0838904 0.0844609 0.0849252 0.0850946 0.0852653 0.0854371 0.0849103 0.0847596 0.0846099 0.084019 0.0841482 0.084278 0.0844082 0.0850617 0.0856101 0.0857839 0.0859588 0.0861348 0.0855199 0.0853665 0.0852137 0.0845389 0.08467 0.0848014 0.084039 0.0839284 0.0838179 0.0837075 0.0835975 0.0834876 0.083378 0.0827288 0.0828202 0.0829116 0.0822507 0.0821759 0.0821011 0.0815143 0.0815748 0.0816348 0.0816946 0.0823254 0.0830031 0.0830945 0.0831859 0.0832772 0.0825479 0.082474 0.0823998 0.0817541 0.081813 0.0818716 0.0819296 0.0826214 0.0833684 0.0841496 0.0849331 0.0856739 0.0863116 0.0867681 0.0869413 0.0866958 0.0858419 0.0840819 0.0808147 0.0810395 0.081267 0.0814977 0.0817313 0.0819683 0.0822086 0.0824526 0.0858937 0.0856246 0.0853589 0.0850968 0.084838 0.0845828 0.0843308 0.0860927 0.0863462 0.0866027 0.0874221 0.0871777 0.0869357 0.0871632 0.0873868 0.087612 0.0878389 0.0876688 0.0868622 0.0871244 0.0873894 0.0876569 0.0884206 0.0881679 0.0879175 0.0880673 0.0882968 0.0885276 0.0887597 0.088675 0.0879273 0.0861662 0.0827004 0.0829522 0.0832081 0.0834679 0.0837323 0.0840003 0.0842732 0.0845504 0.0881711 0.0878747 0.0875815 0.0872916 0.0870052 0.0867221 0.0864425 0.0882001 0.0884759 0.088754 0.089449 0.0891894 0.0889313 0.0889929 0.0892272 0.0894623 0.0896978 0.0897097 0.0890341 0.0893164 0.0896011 0.0898877 0.090499 0.0902349 0.0899716 0.0899338 0.0901704 0.090407 0.089856 0.0896482 0.08944 0.0892318 0.0890237 0.0888154 0.0886074 0.0884 0.0881931 0.0879869 0.0877814 0.0875766 0.0873728 0.08717 0.0869685 0.0864891 0.0866674 0.0868465 0.0861383 0.0859831 0.0858283 0.085065 0.085197 0.0853292 0.0854613 0.0862938 0.0870262 0.0872064 0.0873869 0.0875678 0.0867607 0.086605 0.0864494 0.0855933 0.0857251 0.0858567 0.0849194 0.0848105 0.084701 0.0845912 0.0844811 0.0843707 0.0842602 0.0834593 0.08355 0.0836403 0.0828395 0.0827673 0.0826946 0.0819872 0.0820441 0.0821003 0.0821558 0.0829111 0.0837301 0.0838195 0.0839084 0.0839965 0.0831219 0.0830525 0.0829821 0.0822107 0.0822645 0.0823176 0.0823697 0.0831905 0.0840841 0.0850277 0.0859877 0.0869162 0.0877489 0.0879301 0.0881113 0.0882924 0.0873809 0.0872265 0.0870715 0.0861183 0.0862483 0.0863776 0.0865057 0.0875345 0.088473 0.0886531 0.0888327 0.0890114 0.0879901 0.0878393 0.0876874 0.0866328 0.0867588 0.0868834 0.0857586 0.0856582 0.085556 0.0854526 0.0853479 0.0852421 0.0851353 0.0841705 0.0842562 0.0843407 0.0833904 0.0833249 0.0832583 0.0824208 0.0824708 0.0825196 0.0825671 0.0834546 0.084424 0.084506 0.0845864 0.0846652 0.0836386 0.0835788 0.0835175 0.0826132 0.0826577 0.0827008 0.0818641 0.0818356 0.0818053 0.0817736 0.0817405 0.0817061 0.0816705 0.0816338 0.0815959 0.081557 0.081517 0.0814763 0.0814345 0.081392 0.0813487 0.0813047 0.08126 0.0812146 0.0811686 0.0811222 0.0810751 0.0810276 0.0809797 0.0809314 0.0808827 0.0808337 0.0807845 0.0807348 0.0806851 0.0806352 0.0805851 0.0801871 0.0802276 0.0802678 0.0798968 0.0798647 0.0798322 0.079519 0.0795448 0.0795703 0.0795954 0.0799286 0.0803078 0.0803473 0.0803866 0.0804254 0.0800212 0.0799908 0.0799599 0.07962 0.0796441 0.0796677 0.0793605 0.0793424 0.0793238 0.0793046 0.0792849 0.0792649 0.0792444 0.0790047 0.0790208 0.0790366 0.0788209 0.0788086 0.0787959 0.0786143 0.0786242 0.0786337 0.0786428 0.0788327 0.0790519 0.0790667 0.079081 0.0790948 0.0788654 0.078855 0.0788441 0.0786515 0.0786598 0.0786675 0.0786747 0.0788752 0.079108 0.0793781 0.0796908 0.0800513 0.0804639 0.0805018 0.0805392 0.0805761 0.0801376 0.0801094 0.0800806 0.0797132 0.079735 0.0797562 0.0797766 0.0801651 0.0806124 0.0806481 0.0806831 0.0807174 0.0802431 0.0802179 0.0801918 0.0797962 0.0798151 0.079833 0.0794811 0.0794688 0.0794556 0.0794416 0.0794268 0.0794113 0.079395 0.0791205 0.0791324 0.0791436 0.0789008 0.0788929 0.0788844 0.0786813 0.0786873 0.0786926 0.0786972 0.0789079 0.0791541 0.0791638 0.0791726 0.0791805 0.0789245 0.0789198 0.0789143 0.0787012 0.0787042 0.0787065 0.0785209 0.0785204 0.078519 0.0785169 0.0785141 0.0785107 0.0785066 0.0785019 0.0784967 0.078491 0.0784848 0.0784782 0.0784712 0.0784639 0.0784562 0.0783184 0.0783243 0.07833 0.078207 0.0782026 0.078198 0.0780928 0.0780963 0.0780996 0.0781026 0.078211 0.0783353 0.0783403 0.0783449 0.078349 0.0782211 0.0782181 0.0782147 0.0781054 0.0781079 0.0781101 0.0780133 0.0780118 0.0780099 0.0780078 0.0780056 0.0780031 0.0780004 0.0779192 0.0779212 0.077923 0.0778504 0.077849 0.0778475 0.0777842 0.0777852 0.0777863 0.0777873 0.0778517 0.0779248 0.0779263 0.0779277 0.0779288 0.0778548 0.0778539 0.0778529 0.0777882 0.0777891 0.0777898 0.0777904 0.0778555 0.0779297 0.0780146 0.0781119 0.0782238 0.0783527 0.078356 0.0783587 0.0783608 0.0782288 0.0782276 0.0782259 0.0781133 0.0781143 0.0781149 0.0781149 0.0782294 0.0783623 0.0783631 0.0783632 0.0783626 0.0782273 0.0782287 0.0782294 0.0781143 0.0781132 0.0781114 0.0780118 0.0780138 0.0780151 0.0780159 0.0780162 0.0780161 0.0780155 0.0779304 0.0779307 0.0779306 0.0778561 0.0778562 0.077856 0.0777908 0.0777911 0.077791 0.0777907 0.0778557 0.0779302 0.0779293 0.0779279 0.077926 0.0778518 0.0778536 0.0778548 0.0777901 0.077789 0.0777876 0.0777856 0.0778495 0.0779234 0.0780092 0.0781089 0.0782252 0.0783612 0.0785206 0.0787078 0.0789282 0.0791875 0.0794924 0.0798501 0.0802675 0.0807509 0.0807837 0.0808156 0.0808466 0.0803352 0.0803136 0.080291 0.0798662 0.0798814 0.0798955 0.0799086 0.0803558 0.0808767 0.0809058 0.0809339 0.080961 0.0804112 0.0803938 0.0803754 0.0799205 0.0799313 0.0799409 0.0795423 0.0795387 0.0795338 0.0795277 0.0795205 0.0795122 0.0795029 0.0791935 0.0791985 0.0792024 0.0789333 0.0789326 0.0789309 0.0787082 0.0787077 0.0787061 0.0787034 0.0789329 0.0792052 0.0792069 0.0792073 0.0792065 0.0789246 0.0789286 0.0789314 0.0786996 0.0786946 0.0786884 0.078681 0.0789194 0.0792045 0.0795447 0.0799494 0.0804273 0.0809869 0.0810116 0.0810352 0.0810575 0.0804684 0.0804559 0.0804423 0.0799565 0.0799623 0.0799668 0.07997 0.0804794 0.0810784 0.081098 0.0811162 0.0811327 0.0805041 0.0804972 0.080489 0.0799718 0.0799721 0.079971 0.079524 0.0795312 0.079537 0.0795413 0.0795442 0.0795457 0.0795459 0.0792012 0.0791965 0.0791905 0.0788959 0.0789051 0.0789129 0.0786724 0.0786624 0.0786511 0.0786384 0.0788853 0.0791831 0.0791743 0.0791641 0.0791523 0.0788451 0.0788599 0.0788733 0.0786244 0.0786089 0.078592 0.078384 0.0784021 0.0784188 0.078434 0.0784479 0.0784605 0.0784718 0.0784818 0.0784906 0.0784981 0.0785045 0.0785098 0.078514 0.0785172 0.0785193 0.0783589 0.0783557 0.0783515 0.0782138 0.0782185 0.0782223 0.0781057 0.0781016 0.0780968 0.078091 0.0782082 0.0783464 0.0783402 0.078333 0.0783246 0.0781853 0.078194 0.0782016 0.0780843 0.0780767 0.078068 0.0779692 0.0779775 0.0779849 0.0779914 0.0779971 0.0780019 0.0780059 0.0779203 0.0779165 0.0779119 0.077839 0.0778432 0.0778467 0.0777832 0.0777802 0.0777765 0.0777722 0.0778342 0.0779066 0.0779005 0.0778935 0.0778857 0.077815 0.0778222 0.0778286 0.0777672 0.0777615 0.077755 0.0777476 0.0778069 0.0778769 0.0779599 0.0780583 0.0781755 0.0783151 0.0783044 0.0782925 0.0782793 0.0781392 0.0781525 0.0781646 0.0780476 0.0780357 0.0780226 0.0780084 0.0781246 0.0782648 0.078249 0.0782318 0.0782132 0.0780728 0.0780915 0.0781088 0.0779928 0.0779758 0.0779574 0.0778621 0.0778802 0.0778967 0.0779117 0.0779255 0.0779381 0.0779495 0.0778671 0.0778563 0.0778444 0.0777765 0.0777877 0.0777978 0.0777393 0.0777299 0.0777195 0.0777077 0.0777641 0.0778313 0.0778169 0.0778009 0.0777832 0.0777175 0.0777348 0.0777503 0.0776945 0.0776795 0.0776624 0.0776146 0.0776326 0.0776473 0.0776601 0.0776712 0.077681 0.0776896 0.0776972 0.0777039 0.0777097 0.0777147 0.0777191 0.0777228 0.0777258 0.0777283 0.0777303 0.0777318 0.0777329 0.0777336 0.077734 0.0777341 0.077734 0.0777336 0.0777332 0.0777326 0.0777319 0.0777311 0.0777304 0.0777296 0.0777288 0.077728 0.0777272 0.0777264 0.0777257 0.0777249 0.0777241 0.0777233 0.0777225 0.0777217 0.0777208 0.0777198 0.0777188 0.0777177 0.0777165 0.0777152 0.0777138 0.0777123 0.0777107 0.077709 0.0777073 0.0777056 0.0777038 0.0777022 0.0776635 0.0776288 0.0775977 0.0775979 0.0776295 0.0776646 0.0776658 0.0776669 0.077668 0.0776313 0.0776307 0.0776301 0.0775981 0.0775983 0.0775984 0.0775689 0.0775692 0.0775694 0.0775696 0.0775697 0.0775447 0.0775223 0.0775023 0.0775014 0.0775216 0.0775442 0.0775437 0.0775432 0.0775426 0.077519 0.0775199 0.0775208 0.0775003 0.0774992 0.077498 0.0774794 0.0774808 0.0774822 0.0774834 0.0774846 0.0774689 0.0774551 0.0774432 0.0774416 0.0774537 0.0774676 0.0774661 0.0774646 0.0774629 0.0774485 0.0774504 0.0774521 0.0774399 0.077438 0.077436 0.0774252 0.0774274 0.0774294 0.0774312 0.0774329 0.0774241 0.0774169 0.0774114 0.0774095 0.0774151 0.0774224 0.0774204 0.0774184 0.0774161 0.0774086 0.0774109 0.0774131 0.0774075 0.0774052 0.0774028 0.0774002 0.0774061 0.0774137 0.077423 0.0774339 0.0774466 0.0774612 0.0774778 0.0774967 0.077518 0.0775419 0.0775686 0.0775985 0.0776318 0.0776691 0.0776701 0.0776709 0.0776717 0.0776329 0.0776326 0.0776323 0.0775984 0.0775983 0.0775981 0.0775979 0.0776331 0.0776725 0.0776731 0.0776736 0.0776741 0.0776333 0.0776333 0.0776332 0.0775976 0.0775972 0.0775968 0.0775641 0.0775649 0.0775657 0.0775664 0.077567 0.0775676 0.0775681 0.0775411 0.0775402 0.0775392 0.0775144 0.0775157 0.0775169 0.0774953 0.0774938 0.0774923 0.0774907 0.0775131 0.0775382 0.0775372 0.077536 0.0775349 0.0775088 0.0775103 0.0775117 0.077489 0.0774873 0.0774856 0.0774839 0.0775074 0.0775338 0.0775633 0.0775963 0.0776333 0.0776745 0.0776749 0.0776753 0.0776756 0.0776331 0.0776331 0.0776332 0.0775959 0.0775954 0.077595 0.0775947 0.077633 0.077676 0.0776763 0.0776767 0.0776771 0.0776332 0.0776331 0.077633 0.0775944 0.0775941 0.077594 0.077559 0.0775593 0.0775598 0.0775603 0.077561 0.0775617 0.0775625 0.0775327 0.0775316 0.0775306 0.0775035 0.0775047 0.077506 0.0774823 0.0774807 0.0774793 0.077478 0.0775023 0.0775297 0.0775289 0.0775283 0.0775278 0.0775 0.0775006 0.0775014 0.0774768 0.0774759 0.0774752 0.0774532 0.077454 0.077455 0.0774563 0.0774578 0.0774594 0.0774612 0.0774631 0.077465 0.0774669 0.0774689 0.0774708 0.0774727 0.0774745 0.0774762 0.0774593 0.0774574 0.0774553 0.0774401 0.0774424 0.0774445 0.0774316 0.0774293 0.0774269 0.0774244 0.0774378 0.0774532 0.0774511 0.0774489 0.0774468 0.0774308 0.0774331 0.0774355 0.0774219 0.0774194 0.0774168 0.0774049 0.0774075 0.0774102 0.0774129 0.0774155 0.0774181 0.0774206 0.0774112 0.0774086 0.0774059 0.0773979 0.0774008 0.0774035 0.0773975 0.0773947 0.0773918 0.0773888 0.0773951 0.0774031 0.0774003 0.0773975 0.0773947 0.0773863 0.0773892 0.0773921 0.0773858 0.0773828 0.0773798 0.0773769 0.0773835 0.077392 0.0774022 0.0774144 0.0774284 0.0774446 0.0774426 0.0774406 0.0774388 0.0774222 0.0774241 0.0774262 0.077412 0.0774097 0.0774076 0.0774058 0.0774204 0.0774372 0.0774358 0.0774346 0.0774337 0.0774167 0.0774176 0.0774189 0.0774042 0.0774028 0.0774019 0.0773891 0.0773901 0.0773915 0.0773932 0.0773952 0.0773974 0.0773997 0.0773893 0.0773868 0.0773846 0.0773758 0.0773782 0.0773807 0.0773741 0.0773714 0.077369 0.0773668 0.0773737 0.0773825 0.0773807 0.0773793 0.0773783 0.0773693 0.0773704 0.0773719 0.077365 0.0773635 0.0773624 0.0773576 0.0773587 0.0773602 0.0773621 0.0773643 0.0773668 0.0773695 0.0773723 0.0773753 0.0773783 0.0773814 0.0773845 0.0773875 0.0773905 0.0773933 0.0773961 0.0773987 0.0774012 0.0774035 0.0774057 0.0774076 0.0774054 0.0774034 0.0774012 0.0773989 0.0773964 0.0773937 0.0773909 0.077388 0.077385 0.0773819 0.0773788 0.0773757 0.0773726 0.0773696 0.0773667 0.077364 0.0773615 0.0773593 0.0773574 0.0773559 0.0773548 0.0773542 0.077357 0.0773618 0.0773687 0.0773777 0.0773885 0.0774013 0.0774161 0.0774332 0.0774526 0.0774747 0.0774996 0.0775275 0.0775589 0.077594 0.0776334 0.0776776 0.0776781 0.0776787 0.0776793 0.0776346 0.0776341 0.0776337 0.0775942 0.0775944 0.0775949 0.0775954 0.0776352 0.0776799 0.0776806 0.0776813 0.077682 0.0776374 0.0776366 0.0776358 0.0775961 0.0775969 0.0775978 0.0775628 0.0775617 0.0775608 0.07756 0.0775595 0.0775591 0.0775589 0.0775275 0.0775276 0.077528 0.0775 0.0774996 0.0774994 0.0774745 0.0774747 0.0774751 0.0774759 0.0775007 0.0775286 0.0775295 0.0775305 0.0775318 0.0775044 0.0775029 0.0775016 0.077477 0.0774784 0.0774801 0.0774821 0.0775061 0.0775332 0.077564 0.0775988 0.0776382 0.0776827 0.0776833 0.0776838 0.0776842 0.0776404 0.0776397 0.077639 0.0775998 0.0776009 0.0776019 0.0776028 0.0776409 0.0776844 0.0776843 0.077684 0.0776834 0.0776412 0.0776413 0.0776412 0.0776035 0.077604 0.0776043 0.0775722 0.0775714 0.0775704 0.0775693 0.077568 0.0775666 0.0775653 0.0775348 0.0775365 0.0775382 0.077512 0.0775099 0.0775079 0.0774842 0.0774866 0.0774889 0.0774913 0.077514 0.0775398 0.0775414 0.0775428 0.077544 0.0775192 0.0775177 0.0775159 0.0774936 0.0774957 0.0774975 0.0774783 0.0774763 0.0774739 0.0774714 0.0774687 0.077466 0.0774634 0.077461 0.0774588 0.0774569 0.0774553 0.077454 0.0774531 0.0774526 0.0774525 0.077433 0.0774332 0.0774338 0.0774168 0.0774161 0.0774159 0.0774011 0.0774014 0.0774021 0.0774033 0.0774179 0.0774348 0.0774362 0.0774379 0.0774401 0.0774238 0.0774214 0.0774195 0.077405 0.0774071 0.0774097 0.0773976 0.0773949 0.0773926 0.0773908 0.0773895 0.0773887 0.0773883 0.0773775 0.0773779 0.0773788 0.0773699 0.077369 0.0773686 0.0773617 0.0773621 0.0773631 0.0773647 0.0773714 0.0773802 0.0773821 0.0773845 0.0773873 0.0773789 0.077376 0.0773734 0.0773667 0.0773693 0.0773724 0.0773758 0.0773822 0.0773905 0.0774006 0.0774125 0.0774264 0.0774425 0.0774452 0.0774481 0.077451 0.0774356 0.0774325 0.0774294 0.0774157 0.077419 0.0774223 0.0774255 0.0774387 0.077454 0.0774567 0.0774592 0.0774613 0.0774463 0.0774442 0.0774416 0.0774284 0.077431 0.0774329 0.077421 0.0774193 0.077417 0.077414 0.0774108 0.0774074 0.0774039 0.077394 0.0773975 0.077401 0.0773928 0.0773894 0.0773857 0.0773794 0.077383 0.0773865 0.0773895 0.077396 0.0774042 0.077407 0.0774091 0.0774105 0.077402 0.0774003 0.0773985 0.0773917 0.0773934 0.0773955 0.0773983 0.077404 0.077412 0.0774221 0.0774342 0.0774478 0.077463 0.0774799 0.077499 0.0775205 0.0775448 0.0775726 0.0776043 0.0776406 0.0776823 0.0776809 0.0776789 0.0776765 0.0776364 0.0776383 0.0776397 0.0776039 0.077603 0.0776017 0.0775998 0.077634 0.0776734 0.0776697 0.0776653 0.0776602 0.0776227 0.0776272 0.0776309 0.0775973 0.0775941 0.0775901 0.0775616 0.0775652 0.0775679 0.07757 0.0775714 0.0775723 0.0775727 0.0775453 0.0775453 0.0775449 0.0775214 0.0775216 0.0775213 0.0775 0.0775005 0.0775004 0.0774996 0.0775205 0.0775438 0.0775421 0.0775396 0.0775363 0.0775135 0.0775167 0.077519 0.0774982 0.077496 0.0774934 0.0774904 0.0775095 0.0775319 0.0775571 0.0775852 0.0776173 0.0776542 0.0776473 0.0776393 0.0776301 0.0775947 0.0776035 0.0776109 0.0775793 0.0775723 0.0775635 0.0775524 0.0775841 0.0776195 0.0776069 0.0775913 0.0775715 0.077533 0.077554 0.0775708 0.0775384 0.0775214 0.0775012 0.0774794 0.0774959 0.0775111 0.0775243 0.0775354 0.0775444 0.0775515 0.0775264 0.0775196 0.0775113 0.077493 0.0774991 0.0775047 0.0774873 0.0774843 0.0774816 0.0774794 0.0774867 0.0775018 0.0774913 0.0774803 0.0774693 0.0774697 0.0774747 0.0774805 0.0774779 0.0774774 0.0774784 0.0774932 0.0774862 0.0774815 0.0774785 0.0774766 0.0774756 0.0774754 0.0774758 0.0774768 0.0774781 0.0774795 0.0774807 0.0774814 0.0774816 0.077481 0.077464 0.0774644 0.0774643 0.0774492 0.077449 0.0774487 0.0774349 0.0774357 0.0774368 0.0774387 0.0774498 0.0774639 0.0774635 0.0774636 0.0774643 0.077456 0.0774529 0.0774509 0.0774416 0.0774456 0.0774507 0.0774476 0.0774408 0.0774351 0.0774306 0.0774272 0.0774248 0.0774232 0.0774138 0.0774165 0.0774201 0.077415 0.0774104 0.0774067 0.0774018 0.0774061 0.0774114 0.0774176 0.0774206 0.0774248 0.0774306 0.0774375 0.0774456 0.0774445 0.0774352 0.0774273 0.0774249 0.0774335 0.0774439 0.0774565 0.0774557 0.0774553 0.0774556 0.077457 0.0774601 0.0774659 0.0774684 0.0774719 0.0774763 0.0774793 0.0774715 0.0774653 0.0774645 0.0774734 0.0774844 0.0774977 0.0774888 0.0774821 0.0774896 0.0774995 0.0775122 0.0775339 0.0775156 0.0775008 0.077514 0.0775337 0.0775571 0.0775806 0.0775524 0.0775283 0.0775079 0.0774909 0.0774768 0.0774652 0.077467 0.0774812 0.0774983 0.0775057 0.0774859 0.0774694 0.0774718 0.0774904 0.0775125 0.0775384 0.0775292 0.0775187 0.0775428 0.0775709 0.0776033 0.0776239 0.0775881 0.0775565 0.0775684 0.0776026 0.077641 0.0776534 0.0776132 0.0775773 0.0775453 0.0775177 0.077494 0.077474 0.0774573 0.0774437 0.0774325 0.0774234 0.0774156 0.0774091 0.0774035 0.0773987 0.0773947 0.0773914 0.0773888 0.0773868 0.0773848 0.077382 0.0773786 0.0773749 0.0773713 0.0773679 0.0773648 0.0773621 0.07736 0.0773584 0.0773574 0.0773569 0.0773541 0.0773545 0.0773556 0.0773572 0.0773594 0.077362 0.0773652 0.0773686 0.0773723 0.0773759 0.0773793 0.0773819 0.0773839 0.0773861 0.0773891 0.0773927 0.0773969 0.0774019 0.0774077 0.0774145 0.0774224 0.0774319 0.0774436 0.0774579 0.0774754 0.0774963 0.077521 0.0775497 0.0775828 0.0776197 0.077661 0.0777065 0.0776979 0.0776836 0.0776639 0.0776401 0.0776132 0.0775849 0.0775562 0.0775284 0.0775032 0.0774818 0.0774662 0.0774588 0.0774623 0.0774786 0.0775077 0.0775465 0.0775916 0.0776417 0.0776979 0.0777635 0.0778422 0.0779372 0.0780526 0.078193 0.0783644 0.0785736 0.0788287 0.0791392 0.0795153 0.0799684 0.0805092 0.0811478 0.0818912 0.0827417 0.0836964 0.0847423 0.0858574 0.0870063 0.0881395 0.089189 0.090063 0.0906435 0.0907636 0.0901758 0.0884707 0.0848323 0.085119 0.0854104 0.0857066 0.0860075 0.0863131 0.0866233 0.086938 0.09064 0.0903242 0.0900097 0.0896972 0.0893867 0.0890787 0.0887732 0.0904655 0.0907565 0.0910484 0.0915593 0.0912941 0.0910287 0.0908796 0.0911153 0.0913501 0.0915836 0.0918239 0.091341 0.091634 0.0919268 0.0922195 0.0926119 0.0923507 0.0920878 0.0918157 0.092046 0.092274 0.0924994 0.0928713 0.0925113 0.0909572 0.0872571 0.0875803 0.0879069 0.0882376 0.0885705 0.0889059 0.0892432 0.0895813 0.0931553 0.092848 0.0925381 0.0922246 0.0919091 0.0915923 0.0912746 0.0928016 0.0930896 0.0933751 0.0936311 0.0933814 0.0931281 0.0927215 0.0929397 0.0931537 0.0933627 0.0938763 0.0936567 0.0939345 0.0942069 0.0944735 0.0945771 0.0943501 0.0941163 0.0935661 0.0937633 0.0939534 0.0928831 0.092728 0.0925655 0.0923964 0.0922214 0.0920413 0.0918564 0.0916675 0.091475 0.0912794 0.0910812 0.0908809 0.0906786 0.0904746 0.0902693 0.0893653 0.0895404 0.0897137 0.0885774 0.0884335 0.0882872 0.0871276 0.0872466 0.0873635 0.0874777 0.0887191 0.0898848 0.0900536 0.0902199 0.0903832 0.0891272 0.0889943 0.0888581 0.0875892 0.0876975 0.0878023 0.0864793 0.0863999 0.0863167 0.0862303 0.0861409 0.0860487 0.0859541 0.0848173 0.08489 0.0849602 0.0838568 0.0838056 0.083752 0.0827812 0.0828181 0.0828529 0.0828849 0.0839051 0.0850276 0.085092 0.0851529 0.0852102 0.0840305 0.0839923 0.0839504 0.0829141 0.08294 0.0829625 0.0829807 0.0840646 0.0852633 0.0865548 0.0879032 0.0892565 0.0905431 0.0906992 0.0908507 0.0909976 0.0896174 0.089502 0.0893816 0.0879997 0.0880916 0.088178 0.0882586 0.0897272 0.0911389 0.0912741 0.0914026 0.0915238 0.0900159 0.0899273 0.0898306 0.0883328 0.0883997 0.088459 0.0869275 0.0868949 0.0868542 0.0868064 0.086752 0.0866916 0.0866258 0.0853116 0.0853552 0.085393 0.0841369 0.0841183 0.0840941 0.0829944 0.083003 0.0830062 0.0830029 0.0841495 0.0854245 0.0854495 0.085467 0.0854765 0.0841435 0.0841534 0.0841551 0.0829932 0.0829756 0.0829502 0.0829157 0.0841247 0.0854772 0.0869515 0.0885098 0.0900967 0.0916363 0.0930299 0.0941359 0.094796 0.0947328 0.0934568 0.0899196 0.0902575 0.0905931 0.0909259 0.0912538 0.0915753 0.0918882 0.09219 0.0953159 0.0950901 0.0948474 0.0945901 0.0943209 0.0940411 0.0937527 0.0949843 0.0952259 0.0954573 0.0953947 0.0952061 0.0950061 0.0943094 0.094473 0.0946254 0.0947654 0.0955703 0.0956757 0.0958806 0.0960691 0.0962397 0.0960044 0.0958772 0.0957319 0.0948918 0.0950027 0.0950963 0.0951711 0.0961113 0.0963894 0.0955226 0.0924782 0.0927503 0.0930028 0.0932316 0.0934319 0.0935985 0.0937255 0.0938046 0.0961164 0.0961566 0.0961458 0.0960896 0.0959947 0.0958656 0.0957069 0.0965162 0.0966164 0.0966872 0.0962861 0.0962549 0.0961959 0.095225 0.095255 0.0952591 0.0952339 0.0962853 0.096724 0.0967234 0.0966794 0.0965866 0.0960568 0.0961751 0.0962498 0.0951759 0.0950811 0.0949455 0.0933409 0.0935024 0.0936247 0.0937124 0.093769 0.0937973 0.0938006 0.0937808 0.0937407 0.0936821 0.0936066 0.0935159 0.0934118 0.0932953 0.0931676 0.0917399 0.0918335 0.0919159 0.090279 0.0902291 0.0901679 0.088551 0.0885821 0.0886018 0.0886092 0.0903166 0.091986 0.0920427 0.0920845 0.0921097 0.090343 0.0903499 0.0903408 0.0886029 0.0885818 0.0885441 0.086795 0.0868602 0.0869087 0.0869424 0.0869622 0.0869699 0.0869658 0.0854681 0.0854488 0.0854177 0.0840066 0.0840574 0.0840963 0.0828716 0.0828177 0.0827506 0.0826732 0.0839438 0.0853743 0.0853166 0.0852442 0.085156 0.0836674 0.0837736 0.0838669 0.0825787 0.0824544 0.0822938 0.0820892 0.0835261 0.0850487 0.0867119 0.0884887 0.0903177 0.0921167 0.0921037 0.0920682 0.0920082 0.0901133 0.0902049 0.0902725 0.0884131 0.0883157 0.0881942 0.088047 0.0899944 0.0919206 0.0918025 0.0916511 0.0914614 0.0894324 0.0896645 0.0898449 0.0878609 0.0876374 0.0873271 0.0851512 0.0855677 0.0858923 0.0861474 0.0863339 0.0864855 0.0866098 0.0849231 0.0847623 0.084547 0.0828052 0.0831055 0.0833411 0.0818303 0.0815355 0.0812089 0.0808596 0.0824626 0.0842724 0.0839213 0.0835213 0.0830817 0.0812613 0.0816802 0.0820836 0.0804938 0.0801195 0.0797425 0.0785344 0.0788584 0.0791874 0.0795182 0.0798452 0.0801632 0.0804658 0.0807483 0.0810024 0.0812252 0.0814054 0.0815464 0.0816555 0.0817383 0.0818023 0.0818592 0.0819059 0.0819431 0.0819725 0.0819948 0.08201 0.0820195 0.0820232 0.0820221 0.0820166 0.0820073 0.0819944 0.0819788 0.0819601 0.0819394 0.0819161 0.0811611 0.0811725 0.0811819 0.0805147 0.0805147 0.0805128 0.0799642 0.0799583 0.0799508 0.0799415 0.0805127 0.0811891 0.081194 0.0811959 0.0811948 0.0804928 0.0805021 0.0805086 0.0799304 0.079917 0.0799013 0.0794088 0.0794295 0.0794482 0.0794649 0.07948 0.0794933 0.0795051 0.0791244 0.0791082 0.0790905 0.0787706 0.0787915 0.0788109 0.0785536 0.0785322 0.0785092 0.0784846 0.0787482 0.0790711 0.0790502 0.0790275 0.079003 0.0786704 0.0786984 0.0787241 0.0784582 0.0784296 0.0783978 0.0783554 0.0786391 0.0789759 0.0793857 0.0798825 0.0804802 0.0811903 0.0811815 0.081168 0.0811493 0.0804172 0.0804433 0.0804639 0.0798605 0.0798345 0.0798034 0.0797678 0.0803858 0.0811247 0.0810937 0.0810546 0.0810081 0.080246 0.0803042 0.0803478 0.079721 0.079656 0.0795677 0.0789514 0.0790718 0.0791695 0.0792407 0.079292 0.079329 0.0793594 0.0789456 0.0789058 0.0788503 0.0784593 0.0785385 0.0785973 0.0782959 0.0782183 0.0781242 0.0780161 0.0783616 0.0787725 0.0786737 0.078555 0.0784197 0.0779816 0.0781199 0.0782476 0.0778965 0.0777683 0.0776348 0.0773704 0.0774944 0.077617 0.0777354 0.0778467 0.077948 0.0780369 0.078111 0.0781684 0.0782097 0.0782414 0.07827 0.0782961 0.0783205 0.0783433 0.0781713 0.0781479 0.0781225 0.0779804 0.0780067 0.0780306 0.0779152 0.0778909 0.0778637 0.0778306 0.0779513 0.0780948 0.078064 0.0780249 0.0779715 0.0778038 0.0778664 0.077915 0.0777871 0.0777311 0.0776629 0.0775452 0.0776163 0.0776772 0.0777268 0.0777654 0.0777953 0.0778201 0.0777413 0.0777146 0.0776805 0.0776059 0.0776443 0.0776743 0.0776153 0.0775818 0.0775403 0.0774911 0.0775584 0.0776367 0.0775829 0.0775193 0.0774479 0.0773705 0.0774387 0.0775022 0.0774356 0.077376 0.0773157 0.0772578 0.0773009 0.0773714 0.0774659 0.077584 0.0777282 0.0779026 0.07782 0.0777259 0.0776229 0.0774462 0.0775468 0.0776416 0.0774969 0.0774046 0.0773099 0.0772159 0.077343 0.0775138 0.0774012 0.0772879 0.0771768 0.0770435 0.0771391 0.0772397 0.0771253 0.0770403 0.0769631 0.0769342 0.0769887 0.0770542 0.0771289 0.0772099 0.0772951 0.0773815 0.0772932 0.0772169 0.0771453 0.0771183 0.0771718 0.0772337 0.0772058 0.0771626 0.07713 0.0771091 0.0770754 0.0770813 0.0770272 0.076985 0.0769553 0.07702 0.0770259 0.0770444 0.0771002 0.0771031 0.0771177 0.0771436 0.0770264 0.0769388 0.0768921 0.0768959 0.0769548 0.07707 0.0772476 0.0774987 0.0778359 0.078271 0.0788101 0.0794493 0.0801663 0.0809548 0.0808841 0.0807897 0.0806665 0.0797546 0.0799215 0.0800604 0.0793063 0.0791413 0.0789585 0.0787613 0.079564 0.0805072 0.0803146 0.0800949 0.0798511 0.078886 0.0791262 0.0793532 0.0785528 0.0783369 0.0781162 0.0775307 0.0777239 0.0779179 0.0781107 0.0782993 0.0784808 0.0786522 0.0781126 0.0779473 0.0777779 0.0773833 0.0775345 0.077686 0.0773626 0.0772288 0.0770986 0.0769737 0.0772347 0.077607 0.0774368 0.0772697 0.0771072 0.0768186 0.076951 0.07709 0.076855 0.0767438 0.0766394 0.0765444 0.0766937 0.0769505 0.0773409 0.0778945 0.0786377 0.0795889 0.0793126 0.079027 0.0787379 0.0778815 0.0781319 0.0783849 0.0776749 0.0774594 0.0772497 0.0770483 0.0776368 0.0784492 0.0781642 0.0778855 0.0776131 0.0769459 0.0771672 0.0773983 0.0768554 0.0766702 0.0764939 0.0762178 0.0763515 0.0764966 0.0766489 0.0768104 0.07698 0.0771568 0.0768012 0.0766601 0.0765273 0.076371 0.0764679 0.0765765 0.0764609 0.0763906 0.0763358 0.0762984 0.0762876 0.0764011 0.0762881 0.0761897 0.0761092 0.0761479 0.0761733 0.0762209 0.0762804 0.0762828 0.076307 0.0765428 0.0764822 0.0764396 0.0764153 0.0764091 0.076421 0.0764501 0.0764951 0.0765548 0.0766274 0.0767112 0.0768049 0.0769059 0.077014 0.0771282 0.0769691 0.0768755 0.07679 0.0767456 0.0768042 0.0768743 0.0768402 0.0767971 0.0767673 0.076751 0.0766995 0.0767145 0.0766502 0.0765987 0.076561 0.076644 0.0766482 0.0766669 0.0767484 0.0767594 0.0767836 0.0769626 0.0769147 0.0768789 0.0768556 0.0768451 0.0768475 0.0768631 0.0769352 0.0769442 0.0769656 0.0771157 0.0770748 0.0770448 0.0771801 0.0772268 0.0772832 0.0773494 0.077167 0.0769988 0.0770435 0.077099 0.0771656 0.0773808 0.0773002 0.0772285 0.0774243 0.0775079 0.0776003 0.0777017 0.0774709 0.0772427 0.0770222 0.0768213 0.0766543 0.0765382 0.0765309 0.0765396 0.0765643 0.0767716 0.076718 0.0766789 0.0768722 0.0769358 0.0770126 0.0771019 0.0768396 0.0766046 0.0766612 0.0767342 0.0768248 0.0771303 0.0770195 0.0769226 0.0772031 0.0773179 0.0774462 0.0777648 0.077622 0.0774923 0.0773752 0.0772699 0.0771766 0.0770937 0.0773293 0.0774266 0.0775343 0.0777998 0.0776802 0.0775706 0.0778123 0.0779323 0.0780623 0.0782028 0.0779302 0.0776531 0.0777834 0.0779258 0.0780812 0.0783918 0.0782254 0.0780718 0.0783544 0.0785179 0.0786941 0.0788838 0.0785717 0.0782502 0.0779217 0.0775891 0.0772568 0.0769315 0.0766221 0.0763528 0.0761465 0.0760503 0.0761011 0.0763265 0.0767319 0.077347 0.0782165 0.0793688 0.0808349 0.0826195 0.0846862 0.0869312 0.0891489 0.0912276 0.0931358 0.0947637 0.0958911 0.0964387 0.096017 0.093828 0.0937845 0.093662 0.0934435 0.0931103 0.0926444 0.0920433 0.0913128 0.0928712 0.0936305 0.0942813 0.0948299 0.0952697 0.0956051 0.0958502 0.0962272 0.0959441 0.0955784 0.0950336 0.0953878 0.0956707 0.0945303 0.0942396 0.0938854 0.0934352 0.0946007 0.0951202 0.0945672 0.0939172 0.0931094 0.0926736 0.0934416 0.0940871 0.092878 0.0922185 0.0914031 0.0903578 0.0916659 0.0920641 0.09183 0.0903595 0.0888385 0.0864689 0.0839991 0.0823692 0.081348 0.0810446 0.0814455 0.0774796 0.078962 0.0729818 0.0638885 0.0553257 0.0480462 0.0354518 0.0409138 0.0472784 0.0347901 0.0398239 0.0504751 0.0582041 0.0520316 0.0558153 0.0665287 0.0707478 0.0644914 0.056104 0.047835 0.0353729 0.041087 0.0484916 0.0359043 0.0413969 0.0520725 0.0601365 0.0528367 0.0571787 0.0667881 0.0583078 0.0498665 0.037184 0.0436232 0.051652 0.0383451 0.0447178 0.0560226 0.0628864 0.055162 0.0593965 0.0709734 0.0754582 0.0693074 0.0728103 0.0770836 0.0809418 0.0844073 0.0812743 0.0756754 0.0696056 0.0623797 0.0540327 0.0407134 0.0488485 0.0565199 0.0435859 0.0535981 0.0403159 0.0480239 0.0642086 0.0593549 0.0675266 0.0590039 0.0640161 0.0747529 0.0813668 0.0780887 0.0742895 0.0778757 0.072501 0.0644627 0.0548988 0.0411398 0.050259 0.0614453 0.0709955 0.0666628 0.0596315 0.0450466 0.0563456 0.0421824 0.050645 0.0688618 0.0604549 0.0456592 0.0586821 0.0442657 0.054709 0.0648015 0.0492866 0.0626298 0.04748 0.0601075 0.0447746 0.0546599 0.0678529 0.0746044 0.0689069 0.0763623 0.0655828 0.071676 0.0770042 0.0690315 0.0824718 0.0898724 0.0828371 0.0871244 0.0822589 0.0757907 0.0679733 0.0516485 0.0665275 0.0493395 0.0635037 0.0476789 0.0598285 0.0700183 0.0537647 0.067904 0.0516804 0.0663719 0.0493737 0.0615665 0.0737588 0.0814313 0.075138 0.0820942 0.0697759 0.0768363 0.0822461 0.0740149 0.0779966 0.0726063 0.0889082 0.0926963 0.088564 0.0930874 0.0890906 0.0821715 0.0743351 0.0589609 0.0738072 0.0561575 0.0722579 0.0539249 0.0707244 0.051975 0.0655119 0.0759171 0.0622946 0.0757539 0.0578585 0.0739183 0.0569474 0.0734733 0.0547112 0.0693387 0.0811788 0.088745 0.0815915 0.0883023 0.0825556 0.0892326 0.0774368 0.078844 0.0842021 0.088579 0.0802288 0.0808152 0.0845012 0.0947332 0.102489 0.0959916 0.100051 0.0958626 0.105139 0.0966105 0.0895559 0.0816567 0.0676525 0.0814987 0.0653373 0.0804534 0.0637711 0.0801023 0.0616972 0.0781842 0.0598802 0.0755904 0.0855257 0.0712802 0.0836764 0.0697115 0.0841744 0.0665026 0.0826756 0.0658317 0.0832553 0.0624183 0.0796096 0.0912099 0.0985857 0.0907513 0.0985494 0.0913372 0.0983402 0.0850872 0.0922102 0.0980866 0.0877919 0.0927946 0.0971692 0.088482 0.0882778 0.0924678 0.102849 0.107293 0.103854 0.107949 0.105291 0.109663 0.105602 0.1104 0.107073 0.112178 0.106787 0.0997158 0.0917548 0.0786695 0.0914353 0.0765249 0.0903858 0.0752064 0.0904588 0.0728727 0.0885658 0.0708702 0.0862877 0.09677 0.0836146 0.0945119 0.0822206 0.0950509 0.0790626 0.0934497 0.0786897 0.0943697 0.0752555 0.091123 0.102958 0.110405 0.10205 0.109271 0.102008 0.109848 0.0963601 0.103453 0.10855 0.0981389 0.103169 0.10841 0.098793 0.0984065 0.103166 0.113072 0.120777 0.116121 0.11745 0.113143 0.11424 0.11033 0.111246 0.115962 0.119094 0.119392 0.122628 0.122881 0.126241 0.126422 0.124159 0.117434 0.121898 0.11774 0.127696 0.118747 0.111508 0.104285 0.0920607 0.10367 0.090654 0.102374 0.0896529 0.102175 0.0875313 0.100435 0.0853749 0.0982829 0.110422 0.0975297 0.107916 0.0964423 0.107578 0.0938833 0.105845 0.0929908 0.106587 0.0891332 0.102574 0.115609 0.123049 0.114342 0.12244 0.114808 0.122094 0.108612 0.115449 0.121565 0.109997 0.115493 0.120084 0.110631 0.109758 0.114454 0.126057 0.130724 0.127417 0.131646 0.129295 0.134084 0.130041 0.135062 0.132134 0.137347 0.131704 0.12477 0.117194 0.104279 0.11606 0.103088 0.11429 0.101138 0.113502 0.0972886 0.108415 0.122323 0.108242 0.119174 0.105184 0.116482 0.10215 0.112815 0.133413 0.12672 0.113601 0.126494 0.11261 0.125079 0.109468 0.119301 0.133233 0.118668 0.129508 0.115391 0.126333 0.110639 0.120742 0.143612 0.134786 0.143716 0.137655 0.144429 0.133181 0.138123 0.143159 0.134556 0.148914 0.149907 0.144518 0.133576 0.124834 0.127355 0.133548 0.122356 0.122103 0.127407 0.133538 0.123004 0.122671 0.127541 0.13842 0.145572 0.140917 0.141448 0.137197 0.137471 0.133548 0.133652 0.133766 0.130136 0.12996 0.132426 0.130623 0.128708 0.127066 0.125071 0.123581 0.121524 0.120153 0.118099 0.115674 0.112648 0.108667 0.109465 0.105762 0.100074 0.0960759 0.0976413 0.0919138 0.0880296 0.0916828 0.0956837 0.0942617 0.0999752 0.103265 0.10287 0.106322 0.106026 0.105267 0.103066 0.100343 0.0972958 0.0936325 0.088076 0.0825013 0.0782824 0.082419 0.0782143 0.0826276 0.0870866 0.0849457 0.0912543 0.0947183 0.097639 0.100165 0.102306 0.104277 0.105875 0.107258 0.108393 0.109145 0.111585 0.112389 0.114803 0.116779 0.115205 0.113486 0.112012 0.110316 0.108897 0.107059 0.108082 0.11018 0.11114 0.113336 0.114264 0.116536 0.118453 0.119757 0.121747 0.123039 0.125107 0.126365 0.12853 0.129726 0.132015 0.134216 0.136182 0.137665 0.140016 0.141687 0.14395 0.14583 0.147922 0.150054 0.151892 0.15396 0.154114 0.151714 0.154783 0.153267 0.157843 0.154693 0.158134 0.153851 0.143413 0.132414 0.117149 0.127663 0.139535 0.153451 0.146825 0.141411 0.127522 0.135634 0.122893 0.133843 0.116217 0.126053 0.141893 0.151775 0.143289 0.161531 0.152336 0.141795 0.127265 0.135166 0.148273 0.135421 0.141271 0.127926 0.136254 0.157501 0.149002 0.160486 0.145766 0.153147 0.167811 0.167365 0.161048 0.163223 0.162636 0.161474 0.15921 0.158102 0.155212 0.159963 0.159897 0.164139 0.163398 0.167976 0.17136 0.169129 0.171227 0.166467 0.156105 0.145275 0.13135 0.139211 0.153562 0.135891 0.141764 0.15475 0.16412 0.15156 0.157902 0.17069 0.16496 0.155429 0.142943 0.148203 0.157011 0.169211 0.163127 0.159222 0.148657 0.151003 0.139711 0.145665 0.165106 0.156284 0.144215 0.149726 0.159425 0.143982 0.147931 0.163836 0.156539 0.143986 0.147012 0.156061 0.1385 0.140157 0.162707 0.147274 0.136196 0.141074 0.155012 0.140613 0.145925 0.169159 0.159024 0.148573 0.161199 0.171581 0.169942 0.181713 0.18514 0.192861 0.195911 0.204248 0.207218 0.217182 0.219221 0.209134 0.204035 0.200285 0.189868 0.198119 0.192959 0.190266 0.186666 0.176933 0.182785 0.181878 0.178485 0.173532 0.170191 0.157193 0.162183 0.174286 0.174416 0.176261 0.175399 0.175165 0.170308 0.16146 0.160433 0.176102 0.173522 0.175363 0.175752 0.175724 0.176549 0.175878 0.170403 0.173728 0.172251 0.173671 0.174261 0.170577 0.167025 0.165359 0.163396 0.16841 0.166133 0.171348 0.168977 0.166966 0.171683 0.170863 0.166714 0.169304 0.173833 0.179885 0.183953 0.194363 0.20949 0.228686 0.248992 0.269759 0.23598 0.227078 0.216237 0.221586 0.207501 0.205379 0.202909 0.211605 0.220214 0.228065 0.234711 0.239933 0.243712 0.235276 0.228239 0.222268 0.219177 0.224878 0.231666 0.226983 0.220699 0.215447 0.21096 0.214296 0.217121 0.212623 0.208646 0.205091 0.202955 0.2063 0.210048 0.207056 0.203607 0.200522 0.197834 0.200611 0.203699 0.207175 0.211147 0.215773 0.221289 0.214767 0.210248 0.206394 0.201349 0.204345 0.20773 0.200592 0.198335 0.196193 0.194166 0.198655 0.203034 0.200053 0.197373 0.194937 0.191882 0.193959 0.196206 0.192249 0.190434 0.188717 0.185467 0.186846 0.188256 0.189682 0.191101 0.192502 0.19383 0.194886 0.195623 0.195344 0.186036 0.187368 0.180758 0.179118 0.176806 0.17158 0.173744 0.175343 0.170778 0.169323 0.167431 0.165549 0.163463 0.163254 0.164436 0.160886 0.161844 0.158431 0.159393 0.160737 0.162323 0.158182 0.159225 0.155514 0.156162 0.156326 0.155854 0.152723 0.152948 0.152699 0.149413 0.1497 0.1496 0.149026 0.146129 0.145268 0.142606 0.14154 0.139069 0.137849 0.135531 0.133108 0.133762 0.136503 0.137016 0.139885 0.14024 0.143245 0.143396 0.146541 0.146469 0.146278 0.146033 0.149038 0.152175 0.151623 0.154737 0.154018 0.1571 0.156254 0.155675 0.155326 0.157926 0.157649 0.160255 0.160721 0.158251 0.1559 0.15528 0.153019 0.152882 0.153113 0.153472 0.150764 0.151133 0.148331 0.148657 0.145795 0.145613 0.145529 0.148105 0.148017 0.150528 0.150483 0.15076 0.151316 0.153607 0.154431 0.156926 0.159537 0.162358 0.163934 0.165519 0.166795 0.163222 0.162132 0.160837 0.157986 0.159035 0.159953 0.160721 0.164111 0.1678 0.171856 0.1764 0.181584 0.187665 0.187515 0.18698 0.186209 0.181591 0.18191 0.181953 0.177036 0.177276 0.177216 0.176953 0.181066 0.185277 0.184263 0.183214 0.182144 0.178822 0.179635 0.180401 0.176561 0.176069 0.175507 0.172247 0.172587 0.172853 0.17302 0.173063 0.172943 0.17257 0.168506 0.168932 0.169197 0.165607 0.165237 0.164764 0.161311 0.16183 0.162272 0.162625 0.165865 0.169326 0.169341 0.169257 0.169096 0.166076 0.166088 0.166022 0.162892 0.163078 0.16319 0.16044 0.160226 0.159945 0.159592 0.159168 0.158675 0.158124 0.15755 0.156901 0.156139 0.155291 0.152696 0.151994 0.14958 0.149008 0.148494 0.148136 0.145822 0.145587 0.143217 0.143044 0.142996 0.143044 0.143151 0.143276 0.143372 0.140409 0.14036 0.137455 0.137278 0.134441 0.13414 0.13138 0.130974 0.130484 0.127789 0.12721 0.124606 0.123941 0.121436 0.120684 0.118289 0.117446 0.115157 0.115934 0.116614 0.119003 0.119648 0.122095 0.12268 0.125195 0.125709 0.128296 0.128724 0.126155 0.123643 0.123193 0.120707 0.120212 0.117738 0.11722 0.114737 0.114209 0.11359 0.112878 0.112062 0.109846 0.109004 0.106825 0.105994 0.105077 0.104008 0.102918 0.101404 0.0995746 0.0973965 0.095119 0.0922362 0.0891744 0.0854968 0.0873754 0.0902269 0.0925599 0.0948881 0.0944973 0.0926848 0.0906996 0.088514 0.0863056 0.0838694 0.0813693 0.0839027 0.0823503 0.0843668 0.0837378 0.0836396 0.0840896 0.0849812 0.08625 0.088165 0.0902991 0.0905037 0.0887645 0.0874062 0.0878565 0.0889128 0.0902853 0.0891442 0.0880163 0.0870698 0.0862357 0.0870089 0.0864399 0.0857028 0.0852683 0.0852508 0.0854803 0.0857577 0.0862978 0.0854983 0.0849385 0.0845945 0.0833043 0.0836598 0.0841781 0.0848498 0.0856107 0.0864354 0.0873736 0.088438 0.0894554 0.0902999 0.0910145 0.0916514 0.0921502 0.0925637 0.0928819 0.090921 0.0905499 0.0900491 0.0876996 0.0882711 0.0887616 0.0864426 0.0859037 0.0853271 0.0847255 0.0870797 0.0894525 0.0887882 0.0880598 0.0872131 0.0849047 0.0857052 0.0864188 0.0840949 0.0834129 0.0826968 0.0807578 0.0813574 0.0819697 0.0825538 0.0831099 0.0836526 0.0841806 0.0821413 0.0816573 0.0811693 0.0795517 0.0799812 0.080407 0.0789995 0.0786318 0.0782625 0.0778995 0.0791129 0.0806681 0.0801489 0.0796347 0.0791553 0.0778837 0.078268 0.0786783 0.0775521 0.0772255 0.0769213 0.0766416 0.0775237 0.0787083 0.0802078 0.0820155 0.0840812 0.0862802 0.0853836 0.0845923 0.0838582 0.0820096 0.0826544 0.0833352 0.0813962 0.0808129 0.0802662 0.0797832 0.0814192 0.083174 0.0825823 0.0821126 0.0817758 0.0802358 0.080519 0.0809161 0.0793805 0.0790715 0.0788613 0.0777331 0.0778702 0.0780914 0.0783943 0.0787707 0.0792085 0.0796937 0.0782874 0.0779026 0.077565 0.07665 0.0768988 0.0771926 0.0763911 0.0761842 0.076062 0.076029 0.0764686 0.0772849 0.0770688 0.07696 0.0769838 0.0766104 0.0764422 0.0763982 0.0761008 0.076276 0.0765573 0.0769419 0.0768985 0.0771475 0.0777543 0.0787495 0.0800671 0.0815686 0.0831077 0.0844464 0.0854317 0.0855891 0.0861518 0.0854417 0.0866154 0.0855048 0.0873692 0.0891602 0.0908799 0.0923109 0.0934595 0.0920295 0.0910708 0.0901578 0.0891274 0.0879709 0.0874634 0.0867694 0.0858993 0.0855631 0.0844743 0.0846424 0.084892 0.0863324 0.0868131 0.0880977 0.0889102 0.0895851 0.0903216 0.0883478 0.0878334 0.087357 0.0855525 0.0852051 0.0834591 0.0832477 0.083105 0.0830501 0.0814827 0.0815019 0.0816098 0.0802466 0.0800421 0.080006 0.0787638 0.0789401 0.0792653 0.0797286 0.0805863 0.081839 0.0822046 0.0837233 0.0841263 0.0859009 0.0863305 0.0868253 0.0887723 0.0909036 0.0928419 0.0944574 0.0959401 0.0969039 0.098689 0.0999794 0.101082 0.0992248 0.0982357 0.0971549 0.095473 0.096362 0.0971714 0.0978191 0.100086 0.102112 0.103031 0.103812 0.104486 0.101927 0.101418 0.100815 0.0983589 0.0988864 0.0994413 0.0972317 0.0965546 0.0959425 0.0953782 0.0948305 0.0942369 0.0936122 0.0914767 0.0919646 0.0925121 0.0905097 0.0898674 0.0893074 0.0874327 0.0881159 0.0888844 0.0897396 0.0912373 0.0931306 0.0938095 0.0945593 0.095374 0.0938792 0.0929363 0.0920431 0.0906595 0.0916713 0.092725 0.0918763 0.0907342 0.0896349 0.0886134 0.0876423 0.0867561 0.0859483 0.0852379 0.0846239 0.0833152 0.0827043 0.0816788 0.0810715 0.0803231 0.0810306 0.0818436 0.0824006 0.0832269 0.0840434 0.0848609 0.0857756 0.0867591 0.0861916 0.0851339 0.0841376 0.0837288 0.0827468 0.0825541 0.0815925 0.0807123 0.0799248 0.0792396 0.0786677 0.0782243 0.0779123 0.0774423 0.0778688 0.0784122 0.0784383 0.0778184 0.0773029 0.0774288 0.0780117 0.0786814 0.0794319 0.0791555 0.0790674 0.0798222 0.080669 0.0815936 0.081775 0.0808338 0.0799565 0.0802511 0.0811365 0.0820764 0.0830616 0.0827715 0.0825855 0.083632 0.0835829 0.0846701 0.0847844 0.085894 0.0870548 0.0873169 0.087819 0.088925 0.090091 0.0912908 0.0909169 0.0896887 0.0884811 0.0882464 0.0894678 0.0907041 0.0906214 0.0893849 0.088166 0.0869708 0.0858016 0.0858558 0.0847249 0.0849016 0.0838173 0.0840899 0.0851538 0.0862486 0.0860151 0.0871607 0.0870206 0.0882068 0.089407 0.0906284 0.0907058 0.0895094 0.0883261 0.0885063 0.0873682 0.0876129 0.0865227 0.0854587 0.0844217 0.0834155 0.0824468 0.0815205 0.0806462 0.0798268 0.0790647 0.0783713 0.0777509 0.0772099 0.076753 0.0763851 0.0761097 0.0759255 0.0758311 0.075821 0.0758942 0.0760359 0.0762393 0.0764734 0.0767269 0.0770018 0.077292 0.0775919 0.077902 0.0770896 0.0768403 0.0766003 0.0761446 0.0763307 0.0765257 0.0761668 0.0760285 0.0759152 0.0758347 0.0759826 0.0763748 0.0761631 0.0759784 0.0758376 0.0757264 0.0757655 0.075853 0.0757913 0.0757907 0.0758373 0.0761091 0.0759947 0.0759214 0.0758885 0.075894 0.0759345 0.0760047 0.0760165 0.0760119 0.0760384 0.0762988 0.0762213 0.0761705 0.0764202 0.0765086 0.0766211 0.0767578 0.0764025 0.0760971 0.0761895 0.0763153 0.0764746 0.0768835 0.0766937 0.0765333 0.0769182 0.0771068 0.0773229 0.0775691 0.0771063 0.07667 0.0762661 0.0759345 0.0757398 0.0757497 0.0757258 0.0757689 0.0758847 0.0761467 0.0759469 0.0758123 0.0760831 0.0762842 0.0765389 0.0768491 0.0764104 0.0760772 0.0763488 0.0766979 0.077123 0.0775928 0.0771342 0.0767396 0.0772134 0.0776301 0.0781039 0.07863 0.0781462 0.0777144 0.0773322 0.0769993 0.0767104 0.0764657 0.0769011 0.0771697 0.0774816 0.0779923 0.077659 0.0773649 0.0778471 0.0781585 0.0785058 0.0788898 0.0783651 0.0778367 0.0782392 0.0786872 0.0791818 0.0797329 0.0792347 0.0787788 0.0793118 0.079773 0.0802732 0.0807996 0.0802983 0.0798334 0.079405 0.0790121 0.0786535 0.0783285 0.0780349 0.077771 0.0775356 0.0773262 0.0771423 0.0769807 0.0768418 0.0767221 0.0770545 0.0771959 0.0773561 0.0777361 0.0775585 0.077399 0.0777472 0.077922 0.0781145 0.078326 0.0779335 0.0775371 0.0777399 0.0779664 0.0782179 0.0786581 0.0783931 0.078152 0.0785579 0.0788116 0.0790885 0.0795063 0.0792193 0.0789545 0.0787108 0.0784869 0.0782815 0.0780935 0.078434 0.0786338 0.0788505 0.0792032 0.0789764 0.0787662 0.0790879 0.0793074 0.0795433 0.0797966 0.0794477 0.0790854 0.0793394 0.0796139 0.07991 0.0802981 0.0799941 0.079711 0.0800681 0.0803588 0.0806698 0.0810018 0.0806238 0.0802286 0.0798169 0.0793898 0.078949 0.0784963 0.0788029 0.0791393 0.079507 0.079988 0.0796125 0.0792667 0.0797171 0.080071 0.0804528 0.0808639 0.080394 0.0799072 0.0803406 0.0808081 0.0813097 0.0818019 0.0813006 0.0808312 0.081304 0.0817747 0.0822754 0.0827295 0.0822296 0.081758 0.0813155 0.0809004 0.0805131 0.0801523 0.080571 0.0809378 0.0813297 0.0817404 0.0813444 0.0809725 0.0813558 0.0817323 0.0821317 0.0825554 0.0821617 0.0817482 0.0821928 0.0826648 0.0831638 0.0835779 0.0830802 0.0826078 0.083003 0.0834755 0.0839721 0.0844941 0.0841021 0.08369 0.083258 0.0828063 0.0823353 0.0818454 0.0813374 0.0808126 0.0802733 0.0797224 0.0791648 0.0786303 0.0781111 0.0776214 0.0781929 0.0788292 0.0795246 0.0800235 0.07933 0.0786917 0.079212 0.079847 0.0805344 0.081273 0.0807692 0.080284 0.0810935 0.0819542 0.0828577 0.08329 0.0824052 0.0815631 0.0820596 0.0828893 0.0837587 0.0842333 0.0833857 0.0825746 0.0818037 0.0810742 0.0803896 0.079753 0.0803086 0.0809398 0.0816146 0.0821455 0.0814808 0.0808563 0.0813916 0.0820092 0.0826643 0.0833559 0.0828492 0.0823308 0.083086 0.0838785 0.0847055 0.0851718 0.0843641 0.0835892 0.0840813 0.0848398 0.0856294 0.0864479 0.0860099 0.0855645 0.0851144 0.0846635 0.0842166 0.0838005 0.0847803 0.085792 0.0868353 0.0871895 0.0861703 0.0851782 0.0855996 0.0865652 0.0875558 0.0885689 0.08823 0.0879047 0.0889943 0.0887242 0.0898562 0.0896594 0.090828 0.0910041 0.0912193 0.0901012 0.0903668 0.0892902 0.0896002 0.0906479 0.0917095 0.0914564 0.092557 0.092349 0.0921628 0.0920072 0.0919087 0.0918564 0.0918679 0.0919631 0.0921763 0.092532 0.0930686 0.0938388 0.0948914 0.0962592 0.0979731 0.100043 0.102436 0.105023 0.107532 0.108117 0.110564 0.111181 0.111688 0.112099 0.112508 0.115167 0.11553 0.118178 0.118539 0.121135 0.121498 0.12404 0.126549 0.129096 0.131718 0.132 0.134672 0.134861 0.137575 0.137662 0.140407 0.140393 0.140405 0.140475 0.140629 0.138258 0.138028 0.137864 0.13775 0.135201 0.135029 0.132484 0.132251 0.129715 0.12942 0.1269 0.124388 0.124691 0.127216 0.127505 0.129991 0.130258 0.132718 0.132963 0.135394 0.135624 0.135893 0.133501 0.133225 0.130777 0.13052 0.12802 0.127769 0.125237 0.124952 0.12242 0.122096 0.1218 0.119205 0.118865 0.116298 0.115902 0.1134 0.112924 0.110519 0.109976 0.109477 0.109034 0.108592 0.105977 0.105493 0.102965 0.100709 0.101444 0.103558 0.104206 0.106489 0.107056 0.107692 0.108389 0.109158 0.11114 0.11182 0.113929 0.114533 0.116754 0.117276 0.119589 0.120039 0.117873 0.115946 0.115204 0.113383 0.112572 0.11087 0.109983 0.108412 0.107459 0.106554 0.10571 0.104925 0.103108 0.102243 0.100605 0.0996652 0.0987875 0.0972091 0.098214 0.0992707 0.0982159 0.0970641 0.0959533 0.0949916 0.0961839 0.0974009 0.0986336 0.099396 0.10037 0.101596 0.102638 0.10403 0.105004 0.106026 0.104834 0.10372 0.102669 0.101507 0.100599 0.0998791 0.101129 0.101815 0.10304 0.103848 0.10504 0.10597 0.107084 0.108171 0.109412 0.110442 0.111803 0.112778 0.114253 0.115165 0.116746 0.118542 0.120564 0.122807 0.123267 0.125568 0.125977 0.12832 0.128687 0.131056 0.131395 0.133776 0.136192 0.13855 0.140881 0.141213 0.14352 0.143911 0.146213 0.146681 0.147173 0.147664 0.150163 0.150734 0.153387 0.154019 0.151262 0.148646 0.148139 0.145637 0.145179 0.144761 0.144335 0.141964 0.141586 0.139223 0.138881 0.136497 0.136826 0.137213 0.13956 0.139955 0.142333 0.142752 0.14325 0.143824 0.146169 0.146764 0.149216 0.151818 0.154588 0.155168 0.15574 0.156271 0.153563 0.152999 0.152409 0.149822 0.150432 0.151025 0.151588 0.154087 0.156751 0.157171 0.15753 0.157828 0.155354 0.154985 0.154563 0.152112 0.15259 0.15302 0.150824 0.150339 0.149813 0.149247 0.148648 0.148025 0.147391 0.145105 0.144451 0.142273 0.14161 0.140988 0.140431 0.138232 0.137682 0.135537 0.134981 0.134504 0.134108 0.131814 0.132312 0.132887 0.130941 0.13027 0.129667 0.129136 0.127039 0.126468 0.124431 0.123811 0.121843 0.121167 0.11928 0.117601 0.118497 0.120075 0.120918 0.122583 0.123375 0.12512 0.125865 0.127682 0.128386 0.129142 0.129937 0.131664 0.13353 0.13423 0.136164 0.136847 0.138852 0.139524 0.140228 0.14095 0.14296 0.143652 0.145767 0.14642 0.144337 0.142393 0.141675 0.139831 0.139072 0.138314 0.137568 0.135742 0.134971 0.133227 0.13243 0.130763 0.13161 0.132469 0.134043 0.13487 0.136529 0.137323 0.138115 0.138897 0.140581 0.141316 0.143095 0.145006 0.147054 0.14766 0.148231 0.148765 0.14684 0.146261 0.145649 0.143774 0.144424 0.145043 0.143369 0.142713 0.142028 0.140405 0.139662 0.138127 0.137333 0.136522 0.135698 0.134193 0.133332 0.13191 0.131014 0.130117 0.129226 0.128347 0.127488 0.126658 0.12508 0.12421 0.12271 0.1218 0.120382 0.119427 0.118095 0.117095 0.116117 0.114811 0.113782 0.112575 0.111501 0.110398 0.109277 0.108283 0.107122 0.106238 0.107439 0.108638 0.10945 0.110619 0.111527 0.11266 0.113664 0.114759 0.115854 0.116911 0.115859 0.114927 0.113795 0.112947 0.111785 0.111022 0.109833 0.109156 0.107944 0.106724 0.105498 0.104269 0.103633 0.102382 0.101851 0.100584 0.0993146 0.0980456 0.0967815 0.0955278 0.0942838 0.0937803 0.095051 0.0963226 0.0959961 0.0947177 0.0934387 0.0932314 0.0945051 0.0957771 0.0970505 0.0972788 0.0976016 0.0988798 0.100158 0.101432 0.101099 0.0998299 0.0985586 0.0983202 0.0995847 0.10084 0.100637 0.0993977 0.0981525 0.0969008 0.0956417 0.0943829 0.0931218 0.0930929 0.0943323 0.0955686 0.0955499 0.0943327 0.0931173 0.0931962 0.0943935 0.095592 0.0967887 0.0967715 0.0968052 0.098039 0.0992722 0.1005 0.100411 0.0992044 0.09799 0.0979838 0.0991743 0.100359 0.101537 0.101611 0.10172 0.101871 0.102084 0.102358 0.102696 0.103114 0.104372 0.10488 0.106121 0.107354 0.108577 0.109786 0.110359 0.111553 0.112203 0.113373 0.114102 0.115249 0.116054 0.116958 0.117973 0.11911 0.120135 0.121355 0.122343 0.123644 0.124593 0.125974 0.126888 0.127812 0.128743 0.129673 0.128439 0.127481 0.126517 0.125553 0.124335 0.123337 0.122197 0.121166 0.120104 0.119039 0.118055 0.117174 0.118285 0.119147 0.120229 0.121164 0.122218 0.123226 0.124249 0.125332 0.126323 0.127306 0.128276 0.129389 0.130598 0.131513 0.1328 0.133678 0.135045 0.135883 0.136703 0.1375 0.138898 0.139644 0.141123 0.141811 0.140362 0.139015 0.138272 0.136997 0.136203 0.135384 0.134541 0.133298 0.132415 0.131247 0.130326 0.129231 0.130168 0.131085 0.132149 0.133028 0.134161 0.135 0.135813 0.136599 0.137763 0.1385 0.139729 0.141049 0.142468 0.143991 0.145627 0.147381 0.149259 0.151265 0.153402 0.15567 0.158068 0.160591 0.163236 0.165997 0.168871 0.171849 0.174892 0.177989 0.181073 0.184127 0.187088 0.189951 0.192702 0.19531 0.197734 0.199938 0.201885 0.198971 0.196303 0.193847 0.192364 0.19468 0.197194 0.195193 0.192859 0.190702 0.188698 0.190217 0.191573 0.18946 0.187487 0.185639 0.184598 0.18635 0.188218 0.186828 0.185077 0.183432 0.182151 0.183682 0.185307 0.187037 0.188883 0.190864 0.192997 0.190638 0.18872 0.186929 0.184856 0.186451 0.188146 0.185541 0.18407 0.182671 0.181337 0.183349 0.185249 0.183669 0.182177 0.180766 0.179281 0.180568 0.181922 0.180065 0.17885 0.17769 0.176579 0.178056 0.179428 0.180704 0.181881 0.182951 0.183904 0.18227 0.180728 0.17927 0.178541 0.17993 0.181398 0.180416 0.17903 0.177715 0.176467 0.177224 0.17789 0.176581 0.175338 0.174156 0.173654 0.174785 0.175974 0.17528 0.17415 0.173073 0.172419 0.173437 0.174504 0.175624 0.176799 0.178034 0.179334 0.178157 0.176948 0.175797 0.174708 0.175773 0.176888 0.175516 0.174498 0.173522 0.172585 0.173689 0.174699 0.17365 0.172649 0.171692 0.170888 0.171782 0.172715 0.171687 0.170824 0.169997 0.169 0.169759 0.170546 0.171365 0.172215 0.173099 0.174018 0.174973 0.175966 0.177 0.178076 0.179195 0.180359 0.181571 0.182828 0.180011 0.178967 0.177946 0.175463 0.176301 0.177146 0.174252 0.1736 0.172938 0.172274 0.174637 0.176953 0.175989 0.175055 0.17415 0.172255 0.173031 0.173825 0.171611 0.170953 0.170303 0.168319 0.16885 0.169378 0.169902 0.170416 0.170918 0.171402 0.168595 0.168278 0.167925 0.165466 0.165684 0.165864 0.163225 0.163164 0.163061 0.162922 0.165216 0.167544 0.167147 0.166738 0.166319 0.16432 0.164635 0.164937 0.162754 0.162559 0.162341 0.162103 0.163992 0.165894 0.167789 0.169662 0.171498 0.173275 0.172428 0.17161 0.170819 0.169348 0.170045 0.170761 0.169033 0.168416 0.167811 0.167219 0.168671 0.170055 0.169317 0.168604 0.167915 0.166756 0.167376 0.168014 0.166641 0.166077 0.165526 0.164238 0.164722 0.165215 0.165716 0.166225 0.166741 0.167263 0.165465 0.165034 0.164603 0.162963 0.163312 0.163656 0.161853 0.161592 0.161322 0.161046 0.162611 0.164174 0.163748 0.163326 0.162908 0.161553 0.161905 0.162258 0.160764 0.160479 0.160192 0.159904 0.161203 0.162496 0.163764 0.164988 0.166155 0.167249 0.16827 0.169202 0.170032 0.170776 0.171446 0.172046 0.172576 0.173032 0.171961 0.170941 0.169968 0.169635 0.17057 0.171549 0.171067 0.170131 0.169237 0.168382 0.168742 0.16904 0.168154 0.167308 0.1665 0.166294 0.167074 0.167889 0.167565 0.166783 0.166035 0.165723 0.166438 0.167184 0.167963 0.168777 0.169628 0.170517 0.169899 0.16906 0.168256 0.167667 0.168423 0.169211 0.168438 0.167704 0.166998 0.16632 0.166941 0.167485 0.166746 0.166037 0.165357 0.164931 0.165574 0.166244 0.165666 0.165038 0.164433 0.163851 0.164313 0.164705 0.165038 0.165319 0.165549 0.165729 0.164991 0.164286 0.163613 0.163503 0.164155 0.164837 0.164633 0.163977 0.163349 0.162747 0.162879 0.162968 0.162353 0.161764 0.161202 0.161165 0.161711 0.162282 0.162171 0.161619 0.161091 0.160978 0.161487 0.162018 0.162572 0.163149 0.163752 0.164381 0.164079 0.163479 0.162903 0.1626 0.163149 0.163719 0.16329 0.16275 0.16223 0.16173 0.162073 0.16235 0.161819 0.16131 0.160821 0.160612 0.16108 0.161567 0.161248 0.160783 0.160336 0.159976 0.160402 0.160843 0.1613 0.161773 0.162264 0.162772 0.163299 0.163844 0.16441 0.164996 0.165604 0.166234 0.166888 0.167566 0.166606 0.165985 0.165384 0.164455 0.165005 0.165571 0.164464 0.163954 0.163457 0.162973 0.163922 0.164803 0.16424 0.163697 0.163171 0.162418 0.162904 0.163405 0.162501 0.162042 0.161595 0.160718 0.161123 0.161538 0.161963 0.162398 0.162844 0.163299 0.16209 0.16169 0.161298 0.160173 0.160512 0.160856 0.159616 0.159329 0.159044 0.158762 0.159839 0.160912 0.160534 0.160164 0.159802 0.158869 0.159186 0.15951 0.158482 0.158206 0.157935 0.157667 0.158558 0.159449 0.160323 0.161161 0.161946 0.162662 0.16217 0.161693 0.161232 0.160614 0.161045 0.161488 0.160739 0.160329 0.15993 0.159542 0.160196 0.160787 0.160355 0.159937 0.159533 0.159017 0.159398 0.159791 0.159165 0.1588 0.158444 0.157833 0.15816 0.158496 0.158842 0.159197 0.159563 0.159938 0.159103 0.158765 0.158436 0.157664 0.157955 0.158253 0.157405 0.157147 0.156894 0.156646 0.157379 0.158115 0.157803 0.157498 0.157202 0.156567 0.156831 0.157102 0.156404 0.156168 0.155937 0.155316 0.155515 0.155718 0.155925 0.156135 0.156349 0.156567 0.156788 0.157012 0.157238 0.157466 0.157696 0.157927 0.158158 0.158388 0.158617 0.158844 0.159067 0.159285 0.159497 0.1597 0.159894 0.160077 0.160244 0.160391 0.160517 0.160618 0.160691 0.16073 0.16073 0.160686 0.158254 0.15839 0.158482 0.156327 0.156153 0.155935 0.153738 0.154028 0.154276 0.154484 0.156461 0.158533 0.158549 0.158534 0.158492 0.15666 0.156624 0.156559 0.154656 0.154795 0.154904 0.153231 0.153056 0.152849 0.152609 0.152333 0.152018 0.151663 0.149713 0.150126 0.1505 0.148778 0.14835 0.147885 0.146175 0.146688 0.147164 0.147604 0.14917 0.150838 0.151139 0.151407 0.151644 0.150143 0.149851 0.149527 0.148011 0.148384 0.148726 0.149039 0.150406 0.151852 0.153379 0.154986 0.15667 0.158426 0.15834 0.158236 0.158116 0.156576 0.156626 0.156658 0.155043 0.155079 0.155094 0.155093 0.156511 0.157981 0.157836 0.157683 0.157523 0.15624 0.156341 0.156433 0.155076 0.155046 0.155003 0.153812 0.153801 0.153775 0.153735 0.153677 0.1536 0.153501 0.152034 0.15219 0.152324 0.151037 0.150851 0.150641 0.149323 0.14958 0.149813 0.150023 0.1512 0.152437 0.152531 0.152608 0.152669 0.151576 0.151468 0.151344 0.150211 0.15038 0.150529 0.149529 0.14934 0.149132 0.148903 0.148652 0.148376 0.148075 0.147747 0.147391 0.147004 0.146587 0.146136 0.145652 0.145133 0.14458 0.143091 0.143682 0.144238 0.142916 0.142326 0.141704 0.140411 0.141061 0.141679 0.142265 0.143472 0.14476 0.14525 0.145707 0.146133 0.144948 0.144487 0.143995 0.142819 0.143341 0.143833 0.14278 0.142262 0.141715 0.141135 0.140523 0.13988 0.139206 0.138082 0.137355 0.136289 0.135515 0.134714 0.133884 0.132848 0.131979 0.131005 0.1301 0.129172 0.128221 0.127252 0.126265 0.125263 0.124293 0.123261 0.12236 0.121301 0.120468 0.119383 0.118619 0.117509 0.116384 0.115681 0.114534 0.113897 0.112733 0.112164 0.110982 0.11048 0.109286 0.108077 0.106853 0.10562 0.105197 0.103951 0.103607 0.103319 0.104546 0.104841 0.106063 0.106429 0.107645 0.108847 0.110036 0.111213 0.111656 0.112819 0.113329 0.114476 0.115049 0.116181 0.116812 0.117927 0.117295 0.116725 0.115608 0.115101 0.113968 0.113518 0.112374 0.11198 0.110827 0.109658 0.108472 0.107272 0.106966 0.105763 0.105518 0.104315 0.103098 0.102929 0.104128 0.105315 0.10515 0.103981 0.102801 0.102707 0.103868 0.105019 0.106158 0.106307 0.106488 0.106707 0.107882 0.108155 0.109329 0.110488 0.110189 0.109043 0.108796 0.107649 0.107451 0.107286 0.108401 0.108583 0.109701 0.109928 0.111045 0.111319 0.11163 0.112755 0.113115 0.114233 0.114644 0.115752 0.116215 0.11731 0.117825 0.118392 0.119024 0.119714 0.12079 0.121539 0.122594 0.123404 0.124432 0.125309 0.126309 0.12729 0.128251 0.129189 0.128339 0.127397 0.126432 0.125443 0.124642 0.123628 0.122883 0.121847 0.12116 0.1201 0.119474 0.118906 0.119966 0.120537 0.121579 0.122202 0.123224 0.123901 0.124899 0.125633 0.126604 0.127555 0.128481 0.129259 0.130101 0.130988 0.131886 0.132739 0.133691 0.134506 0.135293 0.136049 0.137032 0.137744 0.138777 0.139442 0.138426 0.137478 0.136777 0.135876 0.135133 0.134362 0.133563 0.132687 0.13185 0.131026 0.130155 0.129382 0.130257 0.131106 0.13187 0.132687 0.133496 0.134277 0.13503 0.135755 0.136589 0.137273 0.138147 0.139079 0.140073 0.140675 0.141248 0.141792 0.14086 0.140296 0.139702 0.138788 0.139399 0.139982 0.140537 0.141396 0.142306 0.14327 0.144293 0.145379 0.146529 0.146896 0.147236 0.147549 0.146503 0.146155 0.145781 0.144726 0.145133 0.145513 0.145868 0.146827 0.147838 0.148104 0.14835 0.148575 0.147665 0.147407 0.147128 0.1462 0.146509 0.146797 0.145969 0.145654 0.145317 0.144958 0.144575 0.144167 0.143732 0.142793 0.143252 0.143685 0.142842 0.142386 0.141904 0.141064 0.141566 0.142041 0.142492 0.143272 0.144093 0.144478 0.144839 0.145179 0.144426 0.144064 0.143679 0.14292 0.143325 0.143708 0.14407 0.144768 0.145499 0.146264 0.147065 0.147903 0.148781 0.1497 0.150661 0.151667 0.152716 0.15381 0.15495 0.156132 0.157356 0.157185 0.15701 0.156832 0.155768 0.155894 0.156016 0.154886 0.154815 0.154737 0.154653 0.155637 0.156652 0.156471 0.15629 0.156108 0.155228 0.155367 0.155503 0.154564 0.15447 0.154373 0.153544 0.153602 0.153655 0.153702 0.153743 0.153775 0.153797 0.15275 0.152772 0.152782 0.151858 0.151807 0.151743 0.150778 0.150881 0.15097 0.151047 0.151899 0.152784 0.152778 0.152763 0.152741 0.151965 0.151951 0.15193 0.151113 0.151168 0.151214 0.151251 0.151971 0.152714 0.153481 0.154273 0.155088 0.155927 0.155747 0.155569 0.155392 0.154667 0.154807 0.154948 0.15417 0.154065 0.153959 0.153852 0.154526 0.155217 0.155045 0.154875 0.154707 0.15411 0.154248 0.154387 0.153743 0.153635 0.153526 0.152955 0.153036 0.153116 0.153194 0.15327 0.153344 0.153414 0.15268 0.152642 0.1526 0.151949 0.151962 0.151969 0.15128 0.151302 0.151318 0.151328 0.151932 0.152554 0.152504 0.152452 0.152397 0.151854 0.151883 0.151909 0.151331 0.15133 0.151325 0.150811 0.150793 0.15077 0.150741 0.150706 0.150664 0.150614 0.150556 0.15049 0.150413 0.150326 0.150228 0.150117 0.149993 0.149854 0.14897 0.149142 0.149298 0.148512 0.148326 0.148123 0.147313 0.147544 0.147759 0.147957 0.148684 0.14944 0.149569 0.149686 0.149791 0.149117 0.148985 0.148841 0.148141 0.148311 0.148469 0.147843 0.147663 0.147468 0.14726 0.147036 0.146796 0.146539 0.145798 0.146079 0.146343 0.145679 0.145393 0.14509 0.144413 0.144736 0.145042 0.145331 0.145948 0.14659 0.146822 0.147038 0.147241 0.146661 0.146438 0.1462 0.145603 0.14586 0.146103 0.146332 0.146871 0.147431 0.148012 0.148614 0.149238 0.149885 0.14997 0.150046 0.150113 0.14954 0.149449 0.149348 0.148748 0.148872 0.148985 0.14909 0.149623 0.150173 0.150226 0.150272 0.150312 0.149827 0.149766 0.149698 0.149186 0.149275 0.149356 0.148899 0.148799 0.148691 0.148574 0.148449 0.148314 0.148168 0.147609 0.147775 0.14793 0.147428 0.147254 0.147069 0.146548 0.146751 0.146943 0.147124 0.147592 0.148075 0.148211 0.148337 0.148455 0.148025 0.147889 0.147745 0.147295 0.147456 0.147607 0.14775 0.148152 0.148566 0.148992 0.14943 0.149882 0.150347 0.150825 0.151316 0.151822 0.152341 0.152873 0.153417 0.153974 0.154542 0.155122 0.155712 0.156311 0.156915 0.157515 0.158099 0.158648 0.159142 0.159565 0.159905 0.160162 0.160352 0.16049 0.160585 0.160642 0.160664 0.160648 0.160591 0.160491 0.160342 0.160136 0.159867 0.159526 0.159101 0.158582 0.157953 0.157194 0.15629 0.155139 0.15355 0.151313 0.148077 0.147781 0.147511 0.147265 0.150309 0.150619 0.150953 0.153143 0.152761 0.152405 0.152072 0.150023 0.147041 0.146839 0.146658 0.146496 0.149293 0.149516 0.149759 0.151762 0.151473 0.151204 0.152562 0.152864 0.153186 0.15353 0.153896 0.154286 0.154701 0.155827 0.15539 0.154976 0.155805 0.156242 0.156704 0.157438 0.156952 0.156492 0.156057 0.155391 0.154586 0.154218 0.153871 0.153546 0.154283 0.154631 0.155 0.155644 0.155255 0.154886 0.154538 0.153956 0.153239 0.152279 0.150954 0.149088 0.146353 0.146227 0.146119 0.146027 0.148578 0.148731 0.148901 0.150722 0.150506 0.150308 0.150125 0.14844 0.145951 0.145891 0.145845 0.145812 0.148118 0.148212 0.148319 0.149958 0.149806 0.149668 0.15076 0.150932 0.151117 0.151317 0.151532 0.151765 0.152013 0.152952 0.15268 0.152424 0.153087 0.153359 0.153648 0.15421 0.153902 0.153612 0.153338 0.152829 0.152184 0.15196 0.151751 0.151556 0.152147 0.15236 0.152587 0.153079 0.152836 0.152607 0.152997 0.15324 0.153498 0.153772 0.154061 0.154367 0.154692 0.155037 0.155401 0.155785 0.156191 0.156619 0.157071 0.157548 0.158051 0.158558 0.158043 0.157554 0.157955 0.158452 0.158975 0.159313 0.158786 0.158285 0.157808 0.157483 0.157091 0.15665 0.156233 0.155836 0.156204 0.156609 0.157035 0.157355 0.156924 0.156514 0.156773 0.157185 0.157619 0.158074 0.158552 0.159054 0.159582 0.159791 0.159265 0.158765 0.158929 0.159426 0.159946 0.160054 0.159541 0.159052 0.158585 0.158456 0.158288 0.157833 0.157401 0.156989 0.157166 0.157576 0.158006 0.15814 0.157715 0.15731 0.156924 0.156776 0.156597 0.156381 0.156124 0.15582 0.15546 0.155104 0.154767 0.154449 0.154782 0.155109 0.155455 0.155754 0.155403 0.15507 0.154754 0.154473 0.154147 0.153863 0.153594 0.153339 0.153639 0.153902 0.154179 0.154455 0.154171 0.153902 0.154135 0.154408 0.154695 0.154998 0.155318 0.155654 0.156008 0.156223 0.155868 0.155531 0.155714 0.156051 0.156404 0.156556 0.156205 0.155871 0.155553 0.155394 0.15521 0.154905 0.154616 0.154342 0.154526 0.1548 0.155089 0.155251 0.154963 0.15469 0.15443 0.154265 0.154081 0.153877 0.153648 0.153391 0.1531 0.152769 0.152393 0.151948 0.151374 0.150602 0.149543 0.148037 0.145793 0.145786 0.14579 0.145807 0.147867 0.147912 0.147969 0.14943 0.149329 0.149239 0.14916 0.147833 0.145834 0.145872 0.14592 0.145977 0.147789 0.147794 0.147809 0.149091 0.149033 0.148984 0.149817 0.149898 0.149988 0.150089 0.150201 0.150323 0.150457 0.151204 0.151047 0.150901 0.151426 0.151588 0.151762 0.152192 0.152004 0.151829 0.151665 0.151273 0.150766 0.150641 0.150527 0.150423 0.15088 0.151001 0.151132 0.151511 0.151367 0.151234 0.15111 0.150768 0.150328 0.149745 0.148944 0.147793 0.146043 0.146118 0.146202 0.146293 0.147854 0.147826 0.147806 0.148912 0.148888 0.148871 0.148862 0.147889 0.146391 0.146497 0.146609 0.146728 0.148033 0.147978 0.14793 0.148859 0.148864 0.148874 0.149456 0.149477 0.149504 0.149537 0.149578 0.149626 0.149681 0.150242 0.150164 0.150093 0.150484 0.150571 0.150666 0.150996 0.15089 0.150792 0.150702 0.150405 0.15003 0.149974 0.149925 0.149883 0.150211 0.150269 0.150334 0.150619 0.150543 0.150474 0.150692 0.150768 0.150852 0.150943 0.151042 0.151148 0.151263 0.151388 0.151522 0.151667 0.151821 0.151987 0.152163 0.152352 0.152554 0.152873 0.15266 0.15246 0.152726 0.152935 0.153156 0.153407 0.15318 0.152965 0.152763 0.15253 0.152273 0.152097 0.151932 0.151778 0.152012 0.152174 0.152346 0.152573 0.152394 0.152226 0.152425 0.152598 0.152781 0.152976 0.153182 0.1534 0.153632 0.153834 0.153601 0.153379 0.153561 0.153783 0.154017 0.154184 0.15395 0.153728 0.153518 0.153351 0.15317 0.152973 0.152787 0.152612 0.152787 0.152964 0.153152 0.153319 0.153131 0.152953 0.152785 0.15262 0.152447 0.152263 0.152068 0.15186 0.151633 0.151499 0.151374 0.151259 0.151462 0.151585 0.151717 0.15192 0.151782 0.151653 0.151533 0.151347 0.151152 0.151054 0.150962 0.150879 0.151053 0.151143 0.151241 0.151421 0.151317 0.151221 0.151385 0.151485 0.151594 0.15171 0.151834 0.151968 0.152111 0.152291 0.152145 0.152008 0.152176 0.152315 0.152463 0.152627 0.152477 0.152336 0.152202 0.152045 0.15188 0.151761 0.151649 0.151545 0.151699 0.151807 0.151923 0.152076 0.151957 0.151844 0.151737 0.151598 0.151447 0.151291 0.151132 0.15097 0.150803 0.150621 0.150411 0.150159 0.149847 0.149442 0.14889 0.148093 0.146853 0.146984 0.14712 0.14726 0.148305 0.14823 0.148159 0.148912 0.148939 0.148972 0.149009 0.148386 0.147405 0.147555 0.147708 0.147864 0.148654 0.148561 0.148471 0.149052 0.149099 0.149151 0.149494 0.149471 0.149453 0.14944 0.149432 0.14943 0.149433 0.149816 0.149792 0.149772 0.150038 0.150073 0.150113 0.150354 0.150302 0.150257 0.150216 0.150009 0.149759 0.149751 0.149748 0.14975 0.149954 0.149967 0.149986 0.150181 0.150151 0.150126 0.150105 0.149945 0.149757 0.149521 0.149207 0.148751 0.148024 0.148185 0.148348 0.148512 0.149056 0.148953 0.148851 0.149266 0.149329 0.149393 0.149459 0.14916 0.148676 0.148838 0.148996 0.149148 0.149462 0.149365 0.149264 0.149526 0.14959 0.149652 0.149782 0.149745 0.149706 0.149665 0.149626 0.149588 0.149553 0.149768 0.149783 0.149801 0.149943 0.149941 0.149941 0.150089 0.150076 0.150067 0.15006 0.149948 0.149821 0.149842 0.149863 0.149882 0.149967 0.149961 0.149954 0.150054 0.150049 0.150046 0.150123 0.150135 0.150148 0.150163 0.15018 0.1502 0.150222 0.150248 0.150278 0.150312 0.150351 0.150395 0.150443 0.150497 0.150556 0.150733 0.150668 0.150609 0.15076 0.150824 0.150894 0.15105 0.150975 0.150906 0.150842 0.150701 0.150554 0.150504 0.150459 0.150417 0.150549 0.150596 0.150647 0.150783 0.150728 0.150677 0.150801 0.150858 0.150918 0.150982 0.151051 0.151125 0.151205 0.151356 0.151272 0.151192 0.151326 0.151412 0.151502 0.151635 0.151538 0.151444 0.151354 0.151245 0.151118 0.151048 0.150982 0.150919 0.151022 0.151094 0.151168 0.151268 0.151183 0.1511 0.151019 0.150952 0.150858 0.150748 0.150629 0.150506 0.15038 0.150347 0.150316 0.150289 0.150395 0.150429 0.150466 0.150584 0.150541 0.1505 0.150462 0.150363 0.150264 0.150241 0.15022 0.150201 0.15028 0.150306 0.150334 0.150425 0.15039 0.150356 0.150419 0.150463 0.150508 0.150553 0.1506 0.150647 0.150697 0.150799 0.150742 0.150685 0.150747 0.150815 0.150883 0.150938 0.150857 0.150777 0.150697 0.150678 0.150629 0.150572 0.150516 0.15046 0.150473 0.150542 0.15061 0.150617 0.150538 0.15046 0.150384 0.150405 0.150404 0.150375 0.150323 0.150256 0.150184 0.150113 0.150043 0.149973 0.149899 0.149816 0.149708 0.149552 0.149293 0.149426 0.149546 0.14965 0.149763 0.149704 0.149634 0.149758 0.1498 0.149835 0.149865 0.149811 0.149736 0.149804 0.149849 0.149888 0.149925 0.149911 0.149892 0.14987 0.149845 0.149915 0.14993 0.149943 0.149991 0.149985 0.149979 0.150041 0.15004 0.15004 0.150039 0.149995 0.149953 0.149962 0.149998 0.150036 0.150077 0.150085 0.150091 0.150097 0.150104 0.15017 0.150156 0.150144 0.150193 0.150213 0.150234 0.150291 0.150261 0.15023 0.150199 0.150172 0.150131 0.150118 0.15015 0.150166 0.15016 0.150205 0.150248 0.15029 0.150332 0.150349 0.150295 0.150241 0.150215 0.150276 0.150339 0.150312 0.150245 0.150182 0.150125 0.150157 0.150188 0.150136 0.150105 0.150075 0.150052 0.150096 0.150151 0.150212 0.150279 0.150352 0.150431 0.150513 0.150598 0.150686 0.150776 0.150867 0.150959 0.151051 0.151145 0.15124 0.151336 0.151434 0.151535 0.151638 0.151745 0.151856 0.15197 0.15209 0.152215 0.152345 0.152483 0.152627 0.152779 0.152939 0.153108 0.153286 0.153474 0.153673 0.153882 0.154103 0.154335 0.154579 0.154837 0.155107 0.155392 0.155691 0.156005 0.156335 0.15668 0.157043 0.157424 0.157823 0.158241 0.158679 0.159137 0.159618 0.160121 0.160149 0.159658 0.159188 0.159207 0.159664 0.160143 0.160101 0.159637 0.159194 0.158769 0.15877 0.158739 0.158311 0.157901 0.15751 0.15757 0.157952 0.158352 0.158363 0.157974 0.157602 0.157601 0.157963 0.15834 0.158734 0.159146 0.159575 0.160023 0.159902 0.159471 0.159056 0.158914 0.159314 0.15973 0.15949 0.15909 0.158704 0.158333 0.158529 0.158658 0.158277 0.15791 0.157559 0.157461 0.157803 0.158159 0.157974 0.157628 0.157294 0.156971 0.157131 0.157221 0.157255 0.157246 0.157205 0.157137 0.156781 0.156441 0.156117 0.156206 0.156524 0.156857 0.156906 0.156581 0.15627 0.155973 0.155903 0.155808 0.155513 0.155233 0.154966 0.155075 0.155338 0.155614 0.155689 0.155417 0.155158 0.155202 0.15546 0.155728 0.156008 0.1563 0.156605 0.156923 0.156896 0.156585 0.156285 0.156211 0.156506 0.156813 0.156659 0.156358 0.156066 0.155784 0.155926 0.155997 0.15572 0.155453 0.155196 0.155127 0.155384 0.15565 0.155511 0.155247 0.154991 0.154795 0.155046 0.155305 0.155572 0.155848 0.156133 0.156428 0.156732 0.157046 0.157371 0.157706 0.158053 0.158412 0.158783 0.159167 0.158763 0.158396 0.158041 0.157606 0.157942 0.15829 0.157765 0.15744 0.157125 0.156819 0.157279 0.157697 0.157364 0.157041 0.156729 0.156359 0.156656 0.156963 0.156523 0.156236 0.155959 0.155543 0.155799 0.156063 0.156336 0.156617 0.156908 0.157207 0.156635 0.156363 0.1561 0.155582 0.155818 0.156061 0.155492 0.155278 0.155069 0.154866 0.155353 0.155844 0.155596 0.155355 0.155123 0.154704 0.154914 0.15513 0.154669 0.154476 0.15429 0.154108 0.154501 0.154897 0.155295 0.15569 0.156072 0.156426 0.156133 0.155849 0.155574 0.155264 0.155524 0.155794 0.15543 0.155178 0.154935 0.1547 0.155012 0.155308 0.15505 0.154802 0.154561 0.154306 0.154533 0.154768 0.154473 0.154254 0.154042 0.153776 0.153971 0.154173 0.154382 0.154599 0.154823 0.155055 0.154678 0.154467 0.154262 0.153927 0.154112 0.154304 0.153931 0.15376 0.153594 0.153432 0.153748 0.154065 0.153873 0.153688 0.153509 0.153242 0.153405 0.153574 0.153275 0.153123 0.152975 0.152832 0.153084 0.153336 0.153588 0.153838 0.154087 0.154329 0.154553 0.154743 0.154879 0.154948 0.154955 0.154909 0.154824 0.154712 0.15447 0.15424 0.154021 0.154138 0.154356 0.154585 0.154671 0.154443 0.154225 0.154015 0.15393 0.153812 0.153614 0.153426 0.153247 0.153359 0.153541 0.153731 0.153814 0.15362 0.153433 0.153456 0.153649 0.153848 0.154054 0.154267 0.154488 0.154717 0.154709 0.154477 0.154253 0.154178 0.154405 0.154638 0.154503 0.154271 0.154046 0.153828 0.153959 0.154036 0.153826 0.153622 0.153424 0.153339 0.153539 0.153746 0.153617 0.153413 0.153216 0.153026 0.153146 0.153232 0.153269 0.153252 0.153184 0.153076 0.152913 0.152757 0.152608 0.152699 0.152855 0.153017 0.153078 0.152909 0.152744 0.152585 0.152548 0.152465 0.152327 0.152195 0.152066 0.152121 0.15226 0.152402 0.15243 0.152278 0.152131 0.152101 0.152254 0.152411 0.152573 0.15274 0.152911 0.153088 0.153045 0.152864 0.152689 0.152602 0.152777 0.152958 0.152843 0.152667 0.152497 0.152333 0.152433 0.152518 0.152353 0.152194 0.15204 0.151963 0.152114 0.15227 0.152176 0.152025 0.15188 0.151794 0.151933 0.152077 0.152227 0.152383 0.152545 0.152714 0.15289 0.153072 0.153262 0.153458 0.153662 0.153874 0.154093 0.154319 0.154105 0.153889 0.15368 0.153476 0.153673 0.153876 0.153642 0.153452 0.153269 0.153093 0.153287 0.153479 0.153285 0.153098 0.152918 0.152761 0.15293 0.153105 0.152923 0.152759 0.152601 0.152439 0.152586 0.152739 0.152897 0.15306 0.15323 0.153406 0.153169 0.153007 0.152851 0.15264 0.152783 0.152931 0.152693 0.152558 0.152428 0.152301 0.152501 0.152699 0.152553 0.152412 0.152276 0.152111 0.152236 0.152366 0.152178 0.152059 0.151944 0.151833 0.151989 0.152144 0.152297 0.152449 0.152598 0.152745 0.152579 0.152419 0.152265 0.152146 0.152291 0.152442 0.152302 0.152161 0.152024 0.151893 0.152006 0.152117 0.151975 0.151839 0.151707 0.151618 0.151743 0.151872 0.151767 0.151645 0.151528 0.151435 0.151545 0.151659 0.151778 0.151901 0.152028 0.15216 0.152017 0.151894 0.151775 0.151648 0.151758 0.151871 0.151725 0.151621 0.15152 0.151422 0.151542 0.15166 0.15155 0.151443 0.15134 0.151245 0.15134 0.151439 0.151328 0.151237 0.151149 0.151054 0.151134 0.151217 0.151303 0.151392 0.151484 0.151579 0.151677 0.151778 0.151882 0.15199 0.152101 0.152216 0.152334 0.152455 0.15258 0.152709 0.152842 0.152978 0.153118 0.153262 0.15341 0.153563 0.153719 0.153879 0.154044 0.154213 0.154386 0.154564 0.154745 0.154931 0.154381 0.154222 0.154066 0.153576 0.153707 0.15384 0.153309 0.153202 0.153095 0.152989 0.153447 0.153913 0.153763 0.153617 0.153474 0.153073 0.153196 0.15332 0.152884 0.152781 0.152679 0.152291 0.152373 0.152456 0.152539 0.152623 0.152707 0.15279 0.152282 0.152222 0.152161 0.15171 0.151749 0.151787 0.151304 0.151288 0.151269 0.151248 0.151669 0.152099 0.152037 0.151974 0.15191 0.151538 0.151582 0.151626 0.151225 0.1512 0.151173 0.151145 0.151492 0.151847 0.152209 0.152578 0.152953 0.153334 0.153197 0.153064 0.152933 0.152607 0.15272 0.152836 0.152479 0.152382 0.152286 0.152192 0.152497 0.152806 0.152682 0.152562 0.152444 0.152181 0.152284 0.152389 0.1521 0.15201 0.151921 0.151665 0.151739 0.151815 0.151891 0.151969 0.152048 0.152128 0.151784 0.151721 0.151658 0.151353 0.151399 0.151446 0.151115 0.151085 0.151053 0.151021 0.151306 0.151596 0.151534 0.151473 0.151413 0.151166 0.151212 0.151259 0.150989 0.150956 0.150922 0.150684 0.150704 0.150724 0.150743 0.15076 0.150777 0.150792 0.150805 0.150817 0.150826 0.150834 0.150838 0.15084 0.150838 0.150834 0.150376 0.150401 0.150421 0.150014 0.149975 0.149931 0.149498 0.14956 0.149617 0.149669 0.150048 0.150438 0.150452 0.150462 0.150469 0.150129 0.150106 0.150079 0.149716 0.149758 0.149797 0.149473 0.149419 0.149361 0.149298 0.14923 0.149157 0.149077 0.148668 0.148765 0.148854 0.148488 0.148383 0.148271 0.147885 0.148012 0.148132 0.148244 0.148586 0.148938 0.149016 0.149088 0.149156 0.148847 0.148766 0.148679 0.148351 0.148451 0.148546 0.148635 0.148924 0.149219 0.149522 0.149832 0.150149 0.150473 0.150475 0.150475 0.150473 0.150192 0.15018 0.150166 0.149863 0.149892 0.149917 0.14994 0.150202 0.150469 0.150464 0.150457 0.150449 0.15022 0.150215 0.150209 0.14996 0.149978 0.149994 0.149773 0.149745 0.149716 0.149683 0.149648 0.149609 0.149567 0.149278 0.149333 0.149384 0.149126 0.149063 0.148996 0.14872 0.148799 0.148874 0.148945 0.149186 0.149432 0.149476 0.149517 0.149556 0.149343 0.149294 0.149242 0.149012 0.149075 0.149135 0.149191 0.14939 0.149592 0.149798 0.150008 0.150222 0.15044 0.150663 0.150889 0.151119 0.151354 0.151592 0.151835 0.152081 0.152329 0.152218 0.15211 0.152004 0.151795 0.151888 0.151983 0.15175 0.151668 0.151587 0.151509 0.151704 0.151902 0.151802 0.151706 0.151612 0.151448 0.151531 0.151616 0.151432 0.151358 0.151285 0.151124 0.151187 0.151251 0.151316 0.151383 0.151451 0.151521 0.151295 0.151238 0.151181 0.150983 0.151028 0.151073 0.150855 0.150822 0.150788 0.150755 0.150939 0.151126 0.151072 0.151018 0.150966 0.15081 0.150852 0.150895 0.150722 0.150689 0.150656 0.150624 0.150769 0.150915 0.151064 0.151214 0.151367 0.151521 0.151433 0.151347 0.151265 0.151139 0.151212 0.151288 0.151146 0.151079 0.151014 0.150951 0.151067 0.151184 0.151107 0.151032 0.150959 0.150866 0.15093 0.150998 0.15089 0.15083 0.150773 0.150681 0.150731 0.150783 0.150836 0.150891 0.150947 0.151004 0.150865 0.150817 0.150769 0.150649 0.150688 0.150728 0.150593 0.150562 0.150531 0.150501 0.150611 0.150723 0.150678 0.150634 0.150591 0.150502 0.150537 0.150574 0.150471 0.150442 0.150414 0.150327 0.150348 0.15037 0.150392 0.150414 0.150437 0.150459 0.150482 0.150505 0.150528 0.150551 0.150574 0.150596 0.150619 0.150641 0.15043 0.150419 0.150408 0.150222 0.150223 0.150223 0.15002 0.150031 0.15004 0.150048 0.15022 0.150396 0.150383 0.15037 0.150356 0.150209 0.150214 0.150217 0.150055 0.15006 0.150065 0.149922 0.149909 0.149895 0.149879 0.149861 0.149842 0.149821 0.149625 0.149656 0.149685 0.149512 0.149474 0.149433 0.149245 0.149295 0.149343 0.149388 0.149548 0.149712 0.149737 0.14976 0.149782 0.149644 0.149614 0.149582 0.14943 0.149471 0.149509 0.149545 0.149673 0.149802 0.149934 0.150068 0.150204 0.150342 0.150328 0.150314 0.150299 0.150186 0.150192 0.150198 0.150071 0.150073 0.150074 0.150075 0.150179 0.150285 0.15027 0.150256 0.150241 0.150157 0.150164 0.150172 0.150075 0.150074 0.150073 0.149991 0.149985 0.149979 0.149972 0.149964 0.149955 0.149945 0.149821 0.149839 0.149855 0.149748 0.149724 0.149699 0.149579 0.149612 0.149643 0.149672 0.14977 0.14987 0.149884 0.149897 0.14991 0.149829 0.149811 0.149791 0.149699 0.149725 0.14975 0.149774 0.149847 0.149921 0.149996 0.150072 0.150149 0.150227 0.150306 0.150386 0.150467 0.15055 0.150633 0.150717 0.150803 0.150889 0.150976 0.151064 0.151153 0.151241 0.151329 0.151415 0.151499 0.151581 0.151662 0.151741 0.151818 0.151891 0.151952 0.151988 0.151987 0.151942 0.151821 0.151704 0.151589 0.151603 0.151728 0.151856 0.151849 0.151713 0.151582 0.151454 0.151481 0.151477 0.151367 0.151259 0.151154 0.151134 0.151246 0.151362 0.15133 0.151211 0.151095 0.151051 0.151165 0.151283 0.151407 0.151536 0.15167 0.151809 0.151748 0.151611 0.151479 0.151419 0.151546 0.151679 0.151607 0.15148 0.151357 0.15124 0.151296 0.151353 0.151232 0.151116 0.151006 0.150961 0.151068 0.15118 0.151128 0.151021 0.150918 0.150821 0.15086 0.1509 0.150942 0.150985 0.151024 0.15105 0.150949 0.150849 0.150751 0.150716 0.150815 0.150918 0.150878 0.150776 0.150679 0.150586 0.150621 0.150657 0.150566 0.150479 0.150397 0.150366 0.150446 0.150531 0.150499 0.150416 0.150339 0.150317 0.150391 0.15047 0.150555 0.150644 0.150739 0.150838 0.150799 0.150704 0.150613 0.150583 0.150671 0.150763 0.150727 0.150639 0.150555 0.150475 0.1505 0.150526 0.150445 0.150369 0.150298 0.150281 0.150349 0.150422 0.1504 0.15033 0.150265 0.15025 0.150312 0.150379 0.15045 0.150526 0.150607 0.150692 0.150781 0.150875 0.150973 0.151076 0.151183 0.151295 0.151412 0.151534 0.15146 0.151344 0.151232 0.151168 0.151274 0.151384 0.151306 0.151202 0.151101 0.151005 0.151066 0.151125 0.151023 0.150925 0.150831 0.150786 0.150875 0.150968 0.150913 0.150825 0.15074 0.150694 0.150773 0.150857 0.150943 0.151034 0.151128 0.151226 0.151146 0.151054 0.150966 0.150897 0.150979 0.151064 0.150983 0.150904 0.150829 0.150756 0.150818 0.150881 0.1508 0.150722 0.150647 0.150601 0.15067 0.150743 0.150686 0.150619 0.150555 0.150494 0.150535 0.150576 0.150618 0.150659 0.150701 0.150741 0.150656 0.150575 0.150498 0.150469 0.150542 0.15062 0.150583 0.150509 0.15044 0.150375 0.1504 0.150425 0.150357 0.150293 0.150234 0.150219 0.150275 0.150335 0.150314 0.150256 0.150204 0.150189 0.150238 0.150292 0.15035 0.150411 0.150477 0.150545 0.150508 0.150444 0.150383 0.150354 0.150411 0.150471 0.150435 0.150379 0.150327 0.150277 0.150301 0.150325 0.150271 0.15022 0.150174 0.15016 0.150203 0.15025 0.15023 0.150187 0.150147 0.150111 0.150122 0.150133 0.150144 0.150156 0.150168 0.15018 0.150193 0.150206 0.150219 0.150232 0.150248 0.150267 0.150291 0.150319 0.150248 0.150184 0.150126 0.150107 0.150161 0.150222 0.150202 0.150144 0.150094 0.150051 0.150061 0.150075 0.150036 0.150025 0.15002 0.150017 0.150045 0.150084 0.150132 0.150186 0.150174 0.150122 0.150077 0.150071 0.150114 0.150163 0.150153 0.150106 0.150066 0.150035 0.150038 0.150041 0.150015 0.150014 0.150013 0.150012 0.150032 0.150062 0.150099 0.150143 0.150133 0.150092 0.150057 0.150052 0.150085 0.150123 0.150114 0.150078 0.150048 0.150025 0.150027 0.15003 0.150012 0.150011 0.15001 0.150009 0.150022 0.150043 0.150071 0.150105 0.150096 0.150065 0.150039 0.150036 0.150059 0.150088 0.15008 0.150054 0.150032 0.150017 0.150018 0.15002 0.150008 0.150007 0.150007 0.150006 0.150015 0.150029 0.150049 0.150073 0.150101 0.150134 0.150171 0.150211 0.150254 0.1503 0.150348 0.150399 0.150453 0.15051 0.150568 0.15063 0.150694 0.150761 0.15083 0.150902 0.150821 0.150756 0.150693 0.150627 0.150683 0.150742 0.150663 0.150611 0.150561 0.150513 0.150572 0.150633 0.150575 0.150519 0.150465 0.150421 0.150469 0.15052 0.150466 0.150421 0.150378 0.150335 0.150373 0.150413 0.150454 0.150496 0.15054 0.150586 0.150509 0.15047 0.150432 0.150369 0.150401 0.150434 0.150359 0.150333 0.150307 0.150282 0.150339 0.150396 0.15036 0.150326 0.150293 0.150252 0.15028 0.150309 0.150258 0.150234 0.150211 0.150189 0.150225 0.150261 0.150298 0.150336 0.150374 0.150413 0.150364 0.150318 0.150273 0.150247 0.150288 0.15033 0.150296 0.150258 0.150222 0.150188 0.150209 0.150231 0.150192 0.150155 0.150121 0.15011 0.15014 0.150174 0.150156 0.150126 0.150098 0.150088 0.150112 0.150139 0.150167 0.150198 0.15023 0.150263 0.150231 0.150201 0.150174 0.15015 0.150174 0.150199 0.150167 0.150147 0.150127 0.150108 0.150127 0.150147 0.150122 0.150099 0.150077 0.150067 0.150086 0.150106 0.15009 0.150073 0.150058 0.150048 0.150061 0.150075 0.150089 0.150104 0.15012 0.150137 0.150154 0.150171 0.150189 0.150207 0.150226 0.150246 0.150265 0.150286 0.150213 0.150199 0.150185 0.150125 0.150133 0.150141 0.15007 0.150068 0.150066 0.150063 0.150117 0.150171 0.150158 0.150145 0.150132 0.150092 0.150101 0.150109 0.15006 0.150057 0.150054 0.150016 0.150015 0.150013 0.15001 0.150007 0.150004 0.15 0.149931 0.149941 0.14995 0.149893 0.149878 0.149863 0.149796 0.149817 0.149837 0.149855 0.149906 0.149958 0.149965 0.149972 0.149978 0.149941 0.149931 0.149919 0.149873 0.149889 0.149905 0.149919 0.149951 0.149984 0.150017 0.15005 0.150084 0.150119 0.150106 0.150094 0.150082 0.15006 0.150068 0.150076 0.150047 0.150043 0.150039 0.150035 0.150052 0.150071 0.15006 0.150049 0.150039 0.150031 0.150037 0.150045 0.15003 0.150026 0.150022 0.150014 0.150015 0.150016 0.150017 0.150018 0.150018 0.150018 0.149989 0.149993 0.149997 0.149976 0.149969 0.14996 0.149932 0.149945 0.149956 0.149966 0.149983 0.15 0.150002 0.150004 0.150006 0.149997 0.149993 0.149989 0.149975 0.149983 0.14999 0.149995 0.150001 0.150006 0.150012 0.150018 0.150024 0.150031 0.150037 0.150044 0.150051 0.150058 0.150066 0.150074 0.150083 0.150092 0.150066 0.150044 0.150027 0.150024 0.15004 0.150059 0.150053 0.150036 0.150022 0.150012 0.150013 0.150014 0.150006 0.150006 0.150005 0.150005 0.150011 0.15002 0.150032 0.150048 0.150042 0.150029 0.150018 0.150016 0.150025 0.150037 0.150032 0.150022 0.150015 0.150009 0.150009 0.15001 0.150005 0.150005 0.150005 0.150005 0.150008 0.150013 0.150019 0.150028 0.150023 0.150017 0.150012 0.15001 0.150014 0.150019 0.150015 0.150011 0.150009 0.150007 0.150007 0.150008 0.150005 0.150005 0.150005 0.150005 0.150006 0.150008 0.150009 0.150011 0.150007 0.150007 0.150006 0.150005 0.150005 0.150003 0.149999 0.150002 0.150004 0.150005 0.150005 0.150006 0.150005 0.150005 0.150005 0.150005 0.150005 0.150003 0.15 0.149996 0.14999 0.149982 0.149973 0.149962 0.14995 0.149936 0.149921 0.149905 0.149887 0.149869 0.149849 0.149827 0.149805 0.149781 0.149756 0.14973 0.149702 0.149672 0.149641 0.149609 0.149575 0.149539 0.149501 0.149461 0.14942 0.149376 0.14933 0.149281 0.14923 0.149176 0.14912 0.14906 0.148997 0.148931 0.148861 0.148787 0.14871 0.148628 0.148541 0.14845 0.148354 0.148252 0.148145 0.148031 0.147912 0.147785 0.147651 0.14751 0.14736 0.147202 0.147035 0.146858 0.146672 0.146474 0.146266 0.146045 0.145812 0.145565 0.145305 0.145029 0.144739 0.144431 0.144107 0.143765 0.143403 0.143022 0.14262 0.142197 0.141751 0.141282 0.140788 0.140269 0.139725 0.139153 0.138555 0.137928 0.137118 0.13645 0.135677 0.134971 0.134237 0.133476 0.132724 0.131929 0.131219 0.130393 0.12954 0.128661 0.127757 0.126829 0.125876 0.125201 0.124223 0.123598 0.122599 0.122023 0.121005 0.120476 0.119441 0.118386 0.117911 0.116841 0.116414 0.115333 0.114954 0.113863 0.11353 0.112433 0.112147 0.113232 0.114301 0.114611 0.115673 0.116026 0.11708 0.117476 0.118519 0.11896 0.11999 0.119542 0.119129 0.118114 0.117743 0.116717 0.116387 0.115353 0.115062 0.114022 0.112965 0.111892 0.110804 0.110592 0.109503 0.109334 0.108247 0.107148 0.106038 0.104917 0.103785 0.102644 0.101494 0.100338 0.0991767 0.0980101 0.0968391 0.0956682 0.0944963 0.0933266 0.0934846 0.094627 0.0957718 0.095898 0.09478 0.0936654 0.0938634 0.0927821 0.0930199 0.0919741 0.0909397 0.0899195 0.0889154 0.0879294 0.0869655 0.086026 0.0864527 0.0873675 0.0883061 0.0886823 0.0877676 0.086876 0.0872932 0.0881631 0.0890554 0.0899682 0.0896181 0.0892662 0.0902438 0.0912383 0.0922468 0.0925243 0.0915406 0.0905711 0.0908984 0.0918441 0.0928043 0.0930846 0.0921464 0.0912225 0.0903141 0.089423 0.0885519 0.0877023 0.0868765 0.0860763 0.0853035 0.0845604 0.0838484 0.0831684 0.0825226 0.0819121 0.0824159 0.0830195 0.0836564 0.0841272 0.0834986 0.0829014 0.0833681 0.0839592 0.0845801 0.0852298 0.0847863 0.0843257 0.0850249 0.0857538 0.0865108 0.0869318 0.0861894 0.0854741 0.0859066 0.0866096 0.0873385 0.0877302 0.0870138 0.086322 0.0856552 0.0850144 0.084401 0.0838157 0.0842435 0.0848237 0.0854301 0.0858272 0.0852272 0.0846516 0.08504 0.085611 0.0862054 0.0868231 0.086452 0.0860625 0.08672 0.0874017 0.0881065 0.0884671 0.0877729 0.0871009 0.0874641 0.0881272 0.0888116 0.0895166 0.0891826 0.0888335 0.0884696 0.0880913 0.0876992 0.087294 0.0881018 0.0889324 0.0897839 0.0901365 0.0893032 0.0884903 0.0888668 0.0896635 0.0904798 0.0913142 0.0909883 0.0906545 0.0915424 0.092446 0.0933635 0.0936395 0.0927415 0.0918572 0.0921653 0.0930316 0.0939114 0.0941782 0.0933153 0.0924658 0.0916315 0.0908131 0.0900124 0.0892307 0.0895814 0.0903491 0.0911353 0.0914462 0.0906733 0.0899184 0.0902411 0.0909841 0.0917448 0.0925215 0.0922357 0.0919389 0.092758 0.0935916 0.0944387 0.0946921 0.0938597 0.0930409 0.0933131 0.0941187 0.0949376 0.0951743 0.0943681 0.0935746 0.0927955 0.0920306 0.0912815 0.0905493 0.0898351 0.0891401 0.0884644 0.0878094 0.0871757 0.0865644 0.0859753 0.0854087 0.084866 0.0843462 0.0838506 0.0833781 0.0829293 0.0825037 0.0821011 0.0817206 0.0813619 0.0810244 0.0807072 0.0804096 0.0801307 0.0798697 0.0796256 0.0793976 0.0791848 0.0789864 0.0788014 0.0786289 0.0784683 0.0783188 0.0781797 0.0780505 0.0779306 0.0778197 0.0777172 0.0776232 0.0775375 0.0774603 0.077391 0.0773305 0.0772794 0.0772379 0.0772063 0.0771852 0.077175 0.077176 0.0771883 0.0772116 0.0772451 0.0772872 0.0773353 0.0773861 0.0774367 0.0774842 0.0775265 0.0775624 0.0775159 0.0774803 0.0774408 0.0774144 0.0774471 0.0774787 0.0774546 0.0774302 0.0774069 0.0773864 0.0773825 0.0773993 0.0773581 0.0773198 0.0772872 0.077313 0.0773298 0.0773535 0.0773705 0.0773608 0.0773585 0.0774173 0.077407 0.0774042 0.0774078 0.0774167 0.0774297 0.0774453 0.0774498 0.0774432 0.0774403 0.0774735 0.0774672 0.0774651 0.0774882 0.0774984 0.0775134 0.0775338 0.0774849 0.0774419 0.0774494 0.0774635 0.077485 0.077558 0.0775265 0.0775024 0.0775603 0.0775935 0.0776335 0.0776809 0.0775969 0.0775143 0.0774358 0.0773644 0.0773047 0.0772626 0.0772473 0.0772423 0.0772477 0.0773368 0.0773163 0.0773057 0.0773794 0.0774034 0.0774365 0.0774784 0.0773669 0.0772637 0.0772898 0.0773258 0.0773712 0.0775117 0.0774545 0.0774063 0.0775291 0.0775881 0.0776544 0.0777959 0.0777217 0.0776545 0.0775945 0.0775422 0.0774982 0.0774627 0.0775518 0.0775972 0.0776506 0.0777581 0.0776974 0.0776434 0.0777349 0.0777955 0.0778625 0.0779357 0.0778256 0.0777111 0.0777787 0.077853 0.0779339 0.0780661 0.0779797 0.0778995 0.078015 0.0781 0.078191 0.0783074 0.0782126 0.0781235 0.0780399 0.0779619 0.0778898 0.0778235 0.0777633 0.0777095 0.0776617 0.0776207 0.0775861 0.0775576 0.0775346 0.0775167 0.0775488 0.0775738 0.077604 0.0776508 0.0776143 0.0775828 0.0776171 0.0776542 0.0776964 0.0777435 0.077693 0.0776398 0.0776815 0.0777293 0.0777828 0.0778522 0.0777936 0.0777405 0.0777959 0.0778535 0.0779162 0.0779739 0.0779079 0.0778466 0.0777903 0.0777388 0.0776922 0.0776504 0.0776812 0.0777269 0.0777773 0.0778107 0.0777573 0.0777084 0.0777306 0.077782 0.0778376 0.0778975 0.0778684 0.0778322 0.0778918 0.077956 0.0780248 0.078068 0.0779971 0.0779306 0.0779616 0.0780298 0.0781023 0.078179 0.0781432 0.0780981 0.0780448 0.077984 0.0779162 0.0778423 0.0779075 0.0779785 0.0780549 0.0781403 0.0780604 0.0779857 0.0780568 0.0781346 0.0782174 0.0783051 0.0782253 0.0781367 0.0782239 0.0783165 0.0784146 0.0785121 0.0784111 0.0783156 0.0783979 0.0784959 0.0785993 0.0786761 0.0785707 0.0784706 0.0783757 0.0782857 0.0782007 0.0781204 0.0781759 0.0782583 0.0783452 0.0783953 0.0783068 0.0782228 0.0782598 0.0783451 0.0784347 0.0785291 0.0784885 0.078437 0.0785337 0.0786355 0.0787427 0.0787985 0.0786899 0.0785867 0.0786283 0.0787326 0.0788424 0.0789579 0.0789129 0.0788556 0.0787873 0.0787084 0.0786187 0.0785185 0.078408 0.0782878 0.0781585 0.0780212 0.0778771 0.0777282 0.0775769 0.0774257 0.0774892 0.0775603 0.0776395 0.077818 0.0777301 0.0776497 0.0778093 0.0778974 0.0779926 0.0780949 0.0779133 0.0777266 0.0778215 0.0779244 0.0780353 0.0782449 0.0781265 0.078016 0.0782044 0.0783215 0.0784465 0.0786387 0.0785078 0.0783848 0.0782694 0.0781611 0.0780597 0.0779651 0.0781149 0.0782151 0.0783219 0.0784736 0.0783622 0.0782572 0.0783907 0.0784999 0.0786155 0.0787379 0.0785919 0.0784354 0.0785562 0.0786844 0.0788205 0.0789912 0.0788503 0.0787173 0.0788675 0.0790048 0.0791501 0.0793038 0.0791406 0.0789651 0.0787778 0.0785797 0.0783715 0.0781547 0.0782828 0.0784201 0.0785673 0.0788062 0.0786517 0.078507 0.0787217 0.0788731 0.0790342 0.0792059 0.0789712 0.0787249 0.0788936 0.0790742 0.0792673 0.0795356 0.0793352 0.0791472 0.0793886 0.0795832 0.0797904 0.080031 0.0798179 0.0796171 0.0794283 0.0792504 0.0790832 0.0789259 0.0791184 0.0792813 0.0794541 0.0796446 0.0794668 0.0792989 0.0794666 0.0796391 0.0798215 0.0800146 0.0798332 0.0796375 0.0798319 0.0800383 0.0802569 0.0804677 0.0802439 0.0800326 0.0802187 0.0804346 0.0806628 0.0808421 0.0806098 0.0803898 0.0801815 0.0799843 0.0797977 0.0796213 0.0794544 0.0792966 0.0791474 0.0790063 0.0788729 0.0787467 0.0786275 0.0785146 0.0786283 0.0787444 0.0788669 0.0789757 0.0788502 0.0787313 0.0788234 0.0789448 0.0790728 0.0792078 0.0791081 0.0789964 0.0791332 0.0792778 0.0794305 0.0795514 0.0793956 0.0792479 0.0793502 0.0795006 0.0796592 0.079754 0.0795929 0.0794402 0.0792955 0.0791582 0.079028 0.0789045 0.0789746 0.0791 0.0792321 0.0792939 0.0791602 0.0790334 0.0790795 0.0792075 0.0793423 0.0794844 0.0794347 0.0793712 0.0795179 0.0796727 0.0798358 0.0799043 0.0797394 0.0795831 0.0796341 0.0797918 0.079958 0.0801331 0.080078 0.0800078 0.0799239 0.0798267 0.079716 0.0795919 0.0797625 0.0799425 0.0801328 0.0802667 0.0800731 0.0798898 0.0800033 0.0801895 0.0803859 0.0805931 0.0804709 0.0803336 0.0805457 0.0807694 0.0810053 0.0811524 0.0809132 0.0806862 0.0808113 0.0810412 0.0812832 0.0813979 0.0811534 0.0809211 0.0807003 0.0804907 0.0802917 0.080103 0.080189 0.0803799 0.0805811 0.0806567 0.0804537 0.080261 0.0803175 0.0805117 0.080716 0.0809309 0.0808702 0.0807929 0.0810158 0.0812503 0.0814968 0.0815795 0.0813312 0.0810949 0.0811571 0.0813946 0.0816443 0.0816895 0.081439 0.0812004 0.0809734 0.0807574 0.0805522 0.080357 0.0801717 0.0799956 0.0798285 0.0796698 0.0795192 0.0793763 0.0792406 0.0791117 0.0789893 0.078873 0.0787625 0.0786575 0.0785575 0.0784624 0.0783719 0.0782859 0.0782041 0.0781265 0.0780529 0.0779835 0.0779181 0.0778568 0.0777996 0.0777466 0.0777563 0.0778102 0.0778683 0.0779305 0.0779966 0.0780668 0.0781409 0.0782191 0.0783014 0.0783879 0.0784788 0.0785744 0.0786748 0.0787803 0.0788913 0.0790081 0.0791309 0.0792603 0.0793965 0.0795399 0.0796911 0.0798502 0.0800179 0.0801946 0.0803804 0.0805762 0.080782 0.0809986 0.0812262 0.0814653 0.0817163 0.0819798 0.0819524 0.0819062 0.0818401 0.0817557 0.0816548 0.0815376 0.081404 0.0812537 0.081087 0.0809037 0.0807041 0.0804885 0.0802572 0.0800106 0.0797492 0.0794736 0.0796943 0.0799298 0.0801813 0.0804774 0.0802193 0.0799769 0.0802448 0.0804935 0.0807575 0.0810376 0.0807518 0.0804493 0.0807348 0.0810386 0.0813614 0.0816803 0.0813526 0.0810433 0.0813344 0.0816487 0.0819811 0.0822633 0.0819268 0.081608 0.0813063 0.0810211 0.0807517 0.0804973 0.0807338 0.0809934 0.0812678 0.0814973 0.0812184 0.0809542 0.0811582 0.0814265 0.0817096 0.0820075 0.0817915 0.0815577 0.0818638 0.0821865 0.0825266 0.0827711 0.0824278 0.0821014 0.0823208 0.0826503 0.0829965 0.0833594 0.0831314 0.082884 0.0826176 0.082332 0.0820273 0.0817039 0.0820667 0.0824506 0.0828561 0.0831887 0.0827809 0.0823939 0.082702 0.0830917 0.0835015 0.0839318 0.0836176 0.0832834 0.0837331 0.0842054 0.0847 0.0850337 0.08454 0.0840679 0.0843827 0.0848545 0.0853473 0.0856407 0.0851489 0.0846773 0.0842258 0.0837944 0.0833828 0.0829906 0.0832598 0.0836542 0.0840675 0.0843205 0.0839059 0.0835096 0.0837398 0.0841378 0.0845538 0.0849879 0.0847538 0.0844999 0.0849517 0.0854231 0.0859141 0.0861673 0.0856772 0.085206 0.0854403 0.0859112 0.0864005 0.0866137 0.0861251 0.0856544 0.0852021 0.0847671 0.08435 0.0839504 0.0835682 0.0832029 0.0828543 0.0825218 0.0822053 0.081904 0.0816174 0.0813453 0.0815155 0.081791 0.0820806 0.0822396 0.0819473 0.0816688 0.081805 0.0820861 0.0823809 0.0826903 0.0825468 0.0823851 0.0827044 0.0830396 0.0833903 0.0835587 0.0832059 0.0828685 0.0830144 0.0833536 0.0837081 0.083839 0.0834829 0.0831421 0.082816 0.0825048 0.0822078 0.0819245 0.0820274 0.0823127 0.0826115 0.0827007 0.0824004 0.0821135 0.0821808 0.0824688 0.0827703 0.0830858 0.0830149 0.0829244 0.0832519 0.0835941 0.0839517 0.0840458 0.0836872 0.0833436 0.0834155 0.08376 0.0841194 0.084494 0.0844197 0.0843247 0.0842109 0.0840787 0.0839277 0.0837576 0.0841416 0.0845425 0.0849605 0.0851341 0.0847155 0.0843132 0.0844654 0.0848686 0.0852882 0.0857246 0.0855701 0.085396 0.0858486 0.086319 0.0868071 0.0869806 0.0864931 0.0860229 0.0861775 0.0866475 0.0871345 0.0872692 0.0867827 0.0863127 0.0858596 0.0854231 0.0850027 0.0845987 0.0847134 0.085118 0.0855389 0.0856356 0.0852144 0.0848091 0.084884 0.0852898 0.0857113 0.0861489 0.0860728 0.0859757 0.0864292 0.0868991 0.0873852 0.0874819 0.0869962 0.0865263 0.0866024 0.0870721 0.0875578 0.0880594 0.0879841 0.0878881 0.0877725 0.0876384 0.0874853 0.0873127 0.0871204 0.0869085 0.0866767 0.0864249 0.0861531 0.0858613 0.0855496 0.0852178 0.0857574 0.08632 0.0869042 0.087225 0.0866453 0.0860864 0.0863956 0.0869512 0.0875267 0.0881221 0.0878253 0.0875098 0.088137 0.0887844 0.089452 0.0897469 0.0890868 0.0884466 0.0887377 0.0893717 0.0900249 0.0902858 0.0896389 0.0890106 0.0884003 0.0878091 0.0872374 0.0866849 0.0869545 0.0875042 0.0880722 0.0883164 0.0877513 0.0872043 0.0874344 0.0879789 0.0885413 0.0891217 0.0889002 0.0886597 0.0892652 0.0898883 0.0905295 0.0907558 0.0901198 0.0895014 0.089719 0.0903333 0.0909647 0.0916116 0.0914078 0.0911868 0.0909493 0.0906953 0.0904247 0.0901379 0.0908426 0.0915647 0.0923035 0.0925624 0.0918334 0.0911208 0.0913836 0.0920874 0.0928073 0.0935423 0.0933063 0.0930573 0.0938252 0.0946072 0.0954017 0.0956191 0.0948354 0.0940639 0.0942904 0.0950521 0.0958259 0.0960215 0.0952568 0.0945041 0.0937648 0.0930385 0.0923265 0.0916301 0.0918607 0.0925505 0.093255 0.0934564 0.0927589 0.0920754 0.0922737 0.0929514 0.0936429 0.0943476 0.0941675 0.0939733 0.094705 0.0954494 0.0962058 0.0963783 0.0956292 0.0948926 0.0950661 0.095796 0.0965381 0.0966852 0.0959494 0.0952256 0.0945131 0.093814 0.0931281 0.0924556 0.0917983 0.091156 0.0905289 0.0899184 0.0893244 0.0887471 0.0881872 0.0876449 0.0878358 0.0883763 0.0889337 0.0891014 0.0885462 0.0880072 0.0881591 0.0886967 0.0892502 0.0898204 0.0896735 0.0895082 0.0900996 0.0907065 0.0913298 0.091486 0.090866 0.0902621 0.0904064 0.0910076 0.0916247 0.0917463 0.0911318 0.0905329 0.089949 0.0893804 0.0888284 0.0882921 0.0884066 0.0889418 0.0894924 0.0895859 0.0890363 0.0885021 0.088577 0.0891104 0.0896594 0.0902237 0.0901513 0.0900593 0.0906415 0.0912386 0.0918511 0.0919385 0.0913279 0.0907321 0.0908034 0.0913977 0.0920068 0.0926298 0.092563 0.0924774 0.092375 0.0922562 0.0921206 0.091968 0.0926209 0.0932888 0.0939698 0.0941099 0.0934333 0.0927696 0.0929017 0.0935618 0.0942345 0.0949208 0.0947997 0.0946637 0.095371 0.0960892 0.0968194 0.0969406 0.0962156 0.0955021 0.0956188 0.0963283 0.0970486 0.0971436 0.096427 0.0957212 0.0950268 0.094344 0.0936746 0.0930176 0.0931174 0.0937716 0.0944384 0.0945176 0.093853 0.093201 0.0932665 0.093917 0.0945798 0.0952547 0.0951947 0.0951183 0.0958096 0.0965123 0.0972256 0.097294 0.0965836 0.0958834 0.0959411 0.0966395 0.0973476 0.0973855 0.0966788 0.0959818 0.0952967 0.0946231 0.0939616 0.0933123 0.0926767 0.0920547 0.0914466 0.0908534 0.0902743 0.0897108 0.0891623 0.0886293 0.088112 0.0876106 0.0871253 0.0866555 0.0862022 0.0857643 0.0853426 0.0849366 0.0845461 0.084171 0.083811 0.0834658 0.0831353 0.082819 0.0825167 0.0822278 0.0822558 0.0825453 0.082848 0.0831647 0.0834957 0.0838412 0.0842015 0.084577 0.0849677 0.0853741 0.0857958 0.0862337 0.0866871 0.0871568 0.0876419 0.0881433 0.0886603 0.0891928 0.0897413 0.0903043 0.090883 0.0914757 0.0920833 0.0927047 0.0933398 0.0939879 0.0946489 0.0953218 0.0960061 0.0967022 0.0974081 0.0981248 0.0981032 0.0980665 0.0980147 0.097949 0.0978703 0.0977792 0.0976756 0.0975595 0.097431 0.0972903 0.0971374 0.0969729 0.0967974 0.096611 0.0964142 0.0962078 0.0959923 0.0957683 0.0955365 0.0952979 0.0950532 0.0948034 0.0945496 0.094293 0.0940348 0.0937766 0.0935199 0.0932668 0.0942964 0.0940747 0.0951367 0.0949512 0.0960437 0.0971398 0.0970188 0.0969171 0.098063 0.099206 0.100345 0.100375 0.0992585 0.0981395 0.0982357 0.0993311 0.100425 0.100492 0.0994205 0.0983477 0.0972757 0.0962043 0.0963766 0.0953336 0.0955389 0.0945254 0.094759 0.0957498 0.0967473 0.0965584 0.0975827 0.0974238 0.0984734 0.0995242 0.100575 0.100669 0.0996397 0.0986104 0.0987565 0.09775 0.0979232 0.0969411 0.0959647 0.0949954 0.0952331 0.0961821 0.0971386 0.0973381 0.0964004 0.0954704 0.0957061 0.096618 0.0975379 0.0984645 0.098282 0.0981011 0.0990684 0.0989096 0.0998989 0.0997654 0.100775 0.101785 0.101698 0.101624 0.101562 0.101516 0.101487 0.101479 0.102607 0.103728 0.104841 0.104789 0.103695 0.102595 0.102603 0.103683 0.104757 0.105823 0.105873 0.105943 0.107037 0.108119 0.10919 0.109069 0.108014 0.106948 0.106881 0.107931 0.10897 0.10889 0.107867 0.106834 0.105793 0.104744 0.103689 0.102628 0.10267 0.103711 0.104748 0.104768 0.103749 0.102725 0.102793 0.103799 0.104801 0.105798 0.105782 0.105779 0.106804 0.107821 0.108829 0.108785 0.107791 0.10679 0.106791 0.107777 0.108757 0.108742 0.107776 0.106804 0.105827 0.104846 0.10386 0.102871 0.101881 0.100889 0.101011 0.100039 0.100184 0.0992315 0.0993969 0.100333 0.101271 0.101139 0.102096 0.101985 0.102958 0.103931 0.104901 0.104965 0.10401 0.103053 0.103154 0.102212 0.102333 0.101406 0.100483 0.0995632 0.0986474 0.0977374 0.0968341 0.0959389 0.0961677 0.0970472 0.0979352 0.0981297 0.0972565 0.0963917 0.0966097 0.0974611 0.0983202 0.0991864 0.0990095 0.0988296 0.0997295 0.100635 0.101544 0.101682 0.100786 0.099895 0.100059 0.100937 0.101819 0.102705 0.10258 0.102456 0.103369 0.10326 0.104188 0.104096 0.105036 0.105974 0.105916 0.105867 0.10683 0.107788 0.10874 0.10875 0.10781 0.106865 0.10691 0.107842 0.108769 0.108797 0.107881 0.106962 0.106039 0.105114 0.105197 0.104283 0.104382 0.10348 0.103592 0.104482 0.105372 0.105283 0.106183 0.106109 0.10702 0.107928 0.108833 0.108874 0.10798 0.107083 0.10715 0.106261 0.10634 0.105462 0.104583 0.103705 0.102829 0.101955 0.101085 0.100219 0.0993594 0.0985055 0.0976594 0.0968209 0.0970245 0.097851 0.098685 0.0988584 0.0980351 0.0972198 0.0974064 0.098211 0.0990247 0.0998451 0.0996896 0.0995275 0.100376 0.10123 0.102089 0.102219 0.10137 0.100527 0.100673 0.101506 0.102345 0.102466 0.101636 0.100812 0.0999938 0.0991829 0.0983789 0.0975838 0.0977508 0.0985371 0.0993322 0.0994724 0.0986852 0.0979069 0.0980521 0.0988236 0.0996035 0.100391 0.100267 0.100135 0.100944 0.10176 0.102581 0.10269 0.101877 0.101069 0.101186 0.101987 0.102792 0.103602 0.103507 0.103405 0.103299 0.103187 0.103071 0.102951 0.103817 0.104684 0.105553 0.105642 0.104783 0.103926 0.104032 0.104881 0.10573 0.106581 0.106501 0.106421 0.10729 0.107219 0.108095 0.108036 0.10892 0.109801 0.109764 0.109733 0.109709 0.109692 0.109684 0.109686 0.109701 0.109728 0.109771 0.109829 0.109904 0.109998 0.110113 0.110249 0.110408 0.111468 0.111667 0.112727 0.113771 0.1148 0.115812 0.116086 0.117092 0.117403 0.118401 0.11875 0.119738 0.120125 0.120544 0.120998 0.12149 0.122483 0.123019 0.123993 0.124574 0.125527 0.126154 0.127084 0.127989 0.128869 0.129724 0.129099 0.128243 0.127362 0.126456 0.125872 0.124944 0.124401 0.123453 0.122952 0.121986 0.121526 0.1211 0.122055 0.122487 0.123427 0.123896 0.124819 0.125327 0.126229 0.126776 0.127657 0.128513 0.127965 0.127109 0.126596 0.125718 0.125241 0.124345 0.123903 0.12299 0.122583 0.121654 0.120706 0.120341 0.11938 0.119051 0.118081 0.117787 0.116808 0.11655 0.115564 0.114563 0.113546 0.112515 0.112328 0.111295 0.111145 0.111016 0.112022 0.112164 0.11317 0.113347 0.114352 0.115341 0.116316 0.117275 0.117519 0.118472 0.118749 0.119693 0.120004 0.120938 0.121283 0.122205 0.121854 0.121528 0.12062 0.120326 0.119407 0.119145 0.118218 0.117988 0.117054 0.116105 0.115141 0.114163 0.113996 0.113015 0.112881 0.1119 0.110908 0.110819 0.111798 0.112767 0.112671 0.111714 0.110747 0.110692 0.111647 0.112592 0.113527 0.113617 0.113724 0.11385 0.114806 0.114963 0.115917 0.116856 0.116679 0.11575 0.115603 0.11467 0.114552 0.114452 0.115366 0.115475 0.116386 0.116523 0.11743 0.117595 0.117781 0.118691 0.118907 0.11981 0.120056 0.12095 0.121227 0.122111 0.122418 0.12275 0.123107 0.123491 0.124379 0.124795 0.125666 0.126116 0.126968 0.12745 0.128282 0.128797 0.129346 0.129931 0.130554 0.131358 0.13202 0.132794 0.133493 0.134234 0.134949 0.135637 0.136356 0.137007 0.137758 0.138371 0.137632 0.136934 0.136298 0.135629 0.134959 0.134263 0.133542 0.13289 0.132137 0.131519 0.130737 0.130154 0.130938 0.131698 0.132276 0.133008 0.133617 0.134319 0.134996 0.135648 0.136273 0.136893 0.137543 0.138231 0.138957 0.139517 0.140051 0.140561 0.139876 0.139352 0.138804 0.138128 0.138689 0.139225 0.139739 0.140376 0.141046 0.141509 0.141949 0.142368 0.141743 0.141309 0.140854 0.14023 0.140699 0.141147 0.140578 0.140117 0.139635 0.139132 0.138607 0.138059 0.137488 0.13688 0.136276 0.135692 0.135057 0.134398 0.133715 0.133145 0.132433 0.131891 0.131153 0.130391 0.129606 0.129091 0.129876 0.130639 0.130156 0.129392 0.128606 0.127798 0.127344 0.126516 0.126093 0.125246 0.124853 0.12399 0.123628 0.12329 0.124143 0.124486 0.125324 0.125696 0.126518 0.126918 0.127723 0.128151 0.128936 0.1297 0.130442 0.130897 0.13138 0.132097 0.132606 0.133298 0.133833 0.134497 0.135139 0.135758 0.136304 0.136893 0.137461 0.138019 0.13746 0.136929 0.136354 0.135842 0.135239 0.134614 0.133967 0.133466 0.132793 0.132315 0.131617 0.131163 0.131862 0.132541 0.132991 0.133646 0.134117 0.134747 0.135355 0.135943 0.136423 0.136984 0.137482 0.138005 0.138555 0.139069 0.139562 0.140034 0.139515 0.139032 0.138529 0.138015 0.138527 0.13902 0.138547 0.138046 0.137525 0.137058 0.136511 0.13606 0.135487 0.134893 0.13428 0.133837 0.133199 0.132776 0.132116 0.131435 0.130734 0.130012 0.12927 0.128507 0.128103 0.127321 0.126943 0.126144 0.125793 0.124977 0.124654 0.123824 0.122977 0.122687 0.121827 0.121566 0.120696 0.120465 0.119586 0.119384 0.118497 0.118323 0.119203 0.120068 0.120256 0.121113 0.121329 0.122176 0.12242 0.123257 0.123529 0.124354 0.124077 0.123823 0.123008 0.122781 0.121955 0.121754 0.120918 0.120745 0.1199 0.119042 0.11817 0.117284 0.117157 0.116267 0.116166 0.115273 0.114369 0.113454 0.112529 0.111595 0.110652 0.110626 0.111557 0.11248 0.112445 0.111532 0.110611 0.110608 0.111518 0.112421 0.113316 0.11335 0.113395 0.1143 0.115195 0.11608 0.116009 0.115132 0.114246 0.114203 0.115081 0.11595 0.115904 0.115042 0.114172 0.113294 0.112408 0.111514 0.110614 0.110629 0.11152 0.112403 0.112407 0.111532 0.110651 0.110678 0.11155 0.112417 0.113278 0.113276 0.113281 0.114151 0.115013 0.115867 0.11584 0.114993 0.114138 0.114132 0.11498 0.11582 0.116653 0.116678 0.116712 0.116756 0.116809 0.116875 0.116954 0.117048 0.117918 0.118035 0.1189 0.119752 0.12059 0.121415 0.121575 0.122391 0.122575 0.123381 0.123591 0.124386 0.124622 0.12488 0.125161 0.125466 0.126259 0.126589 0.127367 0.127723 0.128484 0.128865 0.129607 0.130329 0.131031 0.131713 0.131332 0.130649 0.129946 0.129225 0.128865 0.128126 0.12779 0.127034 0.126723 0.125951 0.125666 0.125404 0.12617 0.126435 0.127186 0.127477 0.128213 0.128528 0.129248 0.129586 0.130289 0.130972 0.131637 0.131996 0.132376 0.133019 0.133417 0.134039 0.134455 0.135053 0.135631 0.136191 0.136614 0.137149 0.137586 0.138095 0.137665 0.137254 0.136732 0.136334 0.135788 0.135224 0.134641 0.134249 0.133643 0.133268 0.132642 0.132284 0.132913 0.133524 0.133877 0.134467 0.134836 0.135405 0.135956 0.13649 0.136863 0.137374 0.137759 0.138163 0.138586 0.139029 0.139494 0.139979 0.140487 0.141019 0.141575 0.142157 0.142766 0.143145 0.143504 0.143846 0.143284 0.142927 0.142552 0.141984 0.142374 0.142746 0.143101 0.143624 0.14417 0.144478 0.14477 0.145047 0.144549 0.144256 0.143948 0.143439 0.143761 0.144069 0.143607 0.143286 0.14295 0.142598 0.14223 0.141844 0.141441 0.140921 0.141337 0.141735 0.14126 0.140851 0.140424 0.139949 0.140386 0.140806 0.141209 0.141653 0.142116 0.14248 0.142829 0.143162 0.142734 0.142389 0.142029 0.141596 0.141967 0.142323 0.142665 0.143065 0.143481 0.143913 0.144362 0.144827 0.14531 0.14556 0.145797 0.146021 0.145583 0.145344 0.145092 0.144641 0.144907 0.14516 0.145402 0.145811 0.146234 0.146436 0.146628 0.146809 0.146429 0.146233 0.146027 0.145632 0.145851 0.14606 0.145702 0.145481 0.145249 0.145006 0.144751 0.144485 0.144206 0.143786 0.144078 0.144357 0.143976 0.143686 0.143382 0.142993 0.143307 0.143609 0.143898 0.144255 0.144624 0.144879 0.145123 0.145356 0.145021 0.144777 0.144521 0.144176 0.144442 0.144697 0.144384 0.144118 0.143842 0.143554 0.143255 0.142943 0.142618 0.14228 0.141928 0.141561 0.14118 0.140783 0.14037 0.13994 0.139494 0.139059 0.139514 0.139953 0.139554 0.139107 0.138644 0.138247 0.138717 0.139172 0.13961 0.139984 0.140375 0.140781 0.141172 0.141548 0.141183 0.140798 0.140399 0.140033 0.14044 0.140833 0.140498 0.140097 0.139682 0.139252 0.138806 0.138345 0.137868 0.137506 0.137006 0.136656 0.136134 0.135596 0.13504 0.134694 0.134118 0.133786 0.133191 0.132578 0.131947 0.131299 0.130634 0.12995 0.129633 0.128932 0.128638 0.127921 0.12765 0.126918 0.126673 0.125927 0.125164 0.124946 0.124171 0.123978 0.123192 0.123023 0.122226 0.122079 0.121273 0.120454 0.119621 0.118776 0.118668 0.117817 0.117731 0.117658 0.118497 0.118575 0.119409 0.119507 0.120334 0.121148 0.12195 0.122738 0.122872 0.123651 0.123805 0.124573 0.12475 0.125506 0.125706 0.126449 0.126247 0.126065 0.125326 0.125166 0.124415 0.124275 0.123513 0.123392 0.122621 0.121836 0.121039 0.12023 0.12014 0.119324 0.119252 0.11843 0.117598 0.117548 0.118375 0.119191 0.11914 0.118329 0.117508 0.117477 0.118292 0.119098 0.119894 0.119941 0.119997 0.120063 0.120863 0.120945 0.121737 0.122518 0.122427 0.121651 0.121576 0.120792 0.120732 0.120681 0.121457 0.121512 0.122281 0.122349 0.12311 0.123192 0.123286 0.124041 0.124151 0.124896 0.125023 0.125757 0.125902 0.126624 0.126789 0.126973 0.127177 0.127403 0.128116 0.128366 0.129064 0.129338 0.13002 0.130316 0.130982 0.131631 0.132262 0.132876 0.132583 0.131967 0.131335 0.130686 0.130412 0.129746 0.129495 0.128814 0.128585 0.127889 0.127683 0.127498 0.128191 0.128378 0.129058 0.129266 0.12993 0.13016 0.130809 0.131061 0.131694 0.13231 0.13291 0.133182 0.133474 0.134055 0.134365 0.134928 0.135253 0.135795 0.136321 0.136831 0.137161 0.13765 0.13799 0.138457 0.138123 0.137804 0.137325 0.137016 0.136518 0.136003 0.135474 0.135169 0.13462 0.134332 0.133765 0.133495 0.134064 0.134617 0.134883 0.135419 0.135702 0.13622 0.136723 0.13721 0.1375 0.137969 0.138268 0.138582 0.138909 0.139346 0.139769 0.140177 0.139868 0.139454 0.139025 0.138717 0.139152 0.139573 0.13998 0.140269 0.140571 0.140885 0.141212 0.141554 0.141909 0.142257 0.142592 0.142914 0.142585 0.142254 0.141911 0.141578 0.14193 0.142269 0.142596 0.142903 0.143223 0.14352 0.143806 0.144081 0.143789 0.143505 0.14321 0.142911 0.143214 0.143507 0.143236 0.142935 0.142623 0.1423 0.141965 0.141618 0.141258 0.140951 0.141319 0.141674 0.141393 0.141031 0.140657 0.140374 0.140755 0.141124 0.141481 0.141743 0.142016 0.142347 0.142666 0.142974 0.142723 0.142408 0.142081 0.141826 0.142159 0.142481 0.142248 0.141919 0.141579 0.141228 0.140865 0.14049 0.140103 0.139703 0.13929 0.138863 0.138423 0.138143 0.137684 0.137414 0.136937 0.136446 0.13594 0.135679 0.135156 0.134913 0.134372 0.133817 0.133246 0.132661 0.132059 0.131442 0.131212 0.130579 0.130371 0.129722 0.129534 0.12887 0.128702 0.128024 0.127331 0.127183 0.126477 0.126346 0.125627 0.125513 0.124783 0.124684 0.123944 0.12386 0.124597 0.125322 0.125412 0.126126 0.126229 0.126932 0.12705 0.127741 0.127874 0.128552 0.128418 0.128298 0.127622 0.127517 0.126828 0.126735 0.126035 0.125955 0.125244 0.124521 0.123786 0.123039 0.122977 0.122223 0.122172 0.12141 0.120638 0.119855 0.119063 0.118262 0.117452 0.116634 0.115808 0.114974 0.114133 0.113285 0.112432 0.111573 0.110709 0.109841 0.10897 0.109022 0.108157 0.108219 0.107361 0.107432 0.108282 0.109131 0.109076 0.109931 0.109885 0.110745 0.1116 0.112452 0.112475 0.111631 0.110782 0.110822 0.109978 0.110025 0.109185 0.108344 0.107502 0.106659 0.105816 0.104975 0.104135 0.104234 0.105066 0.105899 0.105979 0.105153 0.104328 0.104417 0.105234 0.106054 0.106874 0.106806 0.106734 0.107569 0.108404 0.109239 0.109291 0.108463 0.107634 0.107697 0.108519 0.109341 0.109389 0.108572 0.107755 0.106939 0.106124 0.10531 0.104499 0.103691 0.102887 0.102088 0.101294 0.100506 0.0997247 0.0989513 0.0981864 0.0983091 0.0990682 0.0998357 0.0999362 0.099174 0.09842 0.098519 0.0992684 0.100026 0.100791 0.100706 0.100611 0.101393 0.102181 0.102974 0.103054 0.102265 0.101483 0.101563 0.102341 0.103125 0.103188 0.102408 0.101634 0.100866 0.100105 0.0993515 0.0986062 0.0986815 0.0994234 0.100174 0.100231 0.0994837 0.0987446 0.0987946 0.0995315 0.100277 0.101029 0.100986 0.100931 0.101696 0.102466 0.103243 0.103289 0.102515 0.101748 0.101789 0.102554 0.103325 0.104101 0.104067 0.104024 0.103973 0.103914 0.103847 0.103773 0.104575 0.105381 0.106189 0.106248 0.105445 0.104644 0.104707 0.105503 0.106302 0.107102 0.107053 0.106998 0.10781 0.108622 0.109433 0.109474 0.108667 0.10786 0.107905 0.108709 0.109512 0.109545 0.108745 0.107946 0.107146 0.106349 0.105554 0.104762 0.10481 0.105599 0.106391 0.106426 0.105636 0.10485 0.104882 0.105666 0.106453 0.107242 0.107217 0.107184 0.107981 0.108777 0.109574 0.109599 0.108804 0.10801 0.108034 0.108826 0.109619 0.110411 0.110393 0.110371 0.110344 0.110315 0.110282 0.110245 0.110205 0.110163 0.110118 0.110072 0.110903 0.110863 0.111698 0.111663 0.112501 0.113333 0.113314 0.113298 0.114139 0.114973 0.115801 0.115799 0.114977 0.114148 0.114161 0.114984 0.1158 0.115805 0.114994 0.114177 0.113355 0.112528 0.112557 0.111732 0.111766 0.110943 0.110982 0.1118 0.112614 0.112585 0.113401 0.113377 0.114194 0.115006 0.115812 0.115821 0.11502 0.114213 0.114232 0.113424 0.113448 0.112641 0.111832 0.111019 0.111054 0.111863 0.112668 0.112693 0.111891 0.111087 0.111117 0.111918 0.112716 0.113511 0.113491 0.11347 0.114269 0.114251 0.115049 0.115034 0.115832 0.116624 0.116618 0.116613 0.11661 0.11661 0.116614 0.116621 0.117434 0.118239 0.119035 0.119013 0.118221 0.117421 0.117413 0.118209 0.118996 0.119776 0.119797 0.119823 0.120601 0.12137 0.122129 0.122093 0.121337 0.120571 0.120547 0.121309 0.122061 0.122035 0.121285 0.120527 0.119759 0.118983 0.1182 0.117408 0.117407 0.118194 0.118974 0.118967 0.118191 0.117408 0.11741 0.11819 0.118963 0.119729 0.119736 0.119746 0.12051 0.121266 0.122013 0.121995 0.12125 0.120497 0.120487 0.121238 0.12198 0.121967 0.121227 0.120479 0.119724 0.118961 0.118191 0.117414 0.116631 0.115843 0.115854 0.115064 0.115078 0.114287 0.114303 0.115092 0.115876 0.115865 0.116647 0.116639 0.117419 0.118192 0.11896 0.11896 0.118195 0.117424 0.11743 0.116655 0.116663 0.115886 0.115104 0.114318 0.113529 0.112736 0.111941 0.111143 0.111167 0.111962 0.112754 0.11277 0.111979 0.111187 0.111203 0.111994 0.112783 0.113569 0.113558 0.113544 0.114332 0.115115 0.115895 0.115903 0.115125 0.114343 0.114353 0.115133 0.115909 0.116681 0.116676 0.11667 0.11744 0.117435 0.118201 0.118198 0.118961 0.119717 0.119718 0.11972 0.120473 0.121219 0.121957 0.121949 0.121213 0.120469 0.120466 0.121208 0.121942 0.121937 0.121204 0.120464 0.119716 0.118962 0.118964 0.118205 0.118208 0.117445 0.117449 0.118211 0.118967 0.118965 0.119716 0.119716 0.120462 0.121201 0.121933 0.121929 0.121199 0.120461 0.120461 0.119717 0.119718 0.118968 0.118213 0.117452 0.116685 0.115914 0.115139 0.11436 0.113577 0.112792 0.112004 0.111215 0.110424 0.109633 0.108841 0.10805 0.10726 0.106473 0.105687 0.104905 0.104125 0.103351 0.102581 0.101817 0.101059 0.100309 0.0995649 0.0988295 0.09885 0.0995845 0.100327 0.101077 0.101835 0.102597 0.103366 0.10414 0.104918 0.1057 0.106485 0.107271 0.108061 0.10885 0.109641 0.110431 0.111221 0.11201 0.112797 0.113582 0.114364 0.115142 0.115917 0.116688 0.117453 0.118214 0.118969 0.119718 0.120461 0.120461 0.121197 0.121198 0.121927 0.121926 0.121925 0.121196 0.122646 0.122647 0.122649 0.122652 0.122656 0.122662 0.122668 0.122676 0.122686 0.122699 0.122713 0.122731 0.122751 0.122776 0.122805 0.122839 0.122878 0.122924 0.123665 0.123721 0.124454 0.125175 0.125884 0.126581 0.126654 0.12734 0.127423 0.128098 0.128192 0.128854 0.128961 0.129081 0.129215 0.129366 0.130015 0.130183 0.130817 0.131004 0.131623 0.13183 0.132433 0.13302 0.133592 0.134149 0.133947 0.133388 0.132815 0.132226 0.132041 0.131436 0.131269 0.130649 0.130499 0.129864 0.12973 0.12961 0.130245 0.130365 0.130986 0.13112 0.131726 0.131874 0.132465 0.13263 0.133205 0.133766 0.133604 0.133042 0.132896 0.132318 0.132187 0.131593 0.131476 0.130867 0.130761 0.130139 0.129503 0.129408 0.12876 0.128675 0.128014 0.12794 0.127267 0.127202 0.126518 0.125822 0.125114 0.124395 0.124344 0.123617 0.123574 0.123538 0.124261 0.1243 0.125015 0.125061 0.125767 0.126461 0.127144 0.127816 0.127874 0.128534 0.128601 0.129249 0.129324 0.12996 0.130044 0.130667 0.130583 0.130509 0.129885 0.129818 0.129182 0.129123 0.128475 0.128423 0.127764 0.127094 0.126412 0.125719 0.125677 0.124974 0.124939 0.124228 0.123507 0.12348 0.124199 0.124909 0.124882 0.124175 0.123457 0.123438 0.124153 0.124859 0.125556 0.12558 0.125608 0.12564 0.12633 0.126368 0.127049 0.127719 0.127679 0.12701 0.126975 0.126297 0.126268 0.126242 0.126919 0.126945 0.127612 0.127643 0.1283 0.128336 0.128377 0.129024 0.129071 0.129706 0.129759 0.130383 0.130442 0.131054 0.13112 0.131194 0.131277 0.131371 0.131966 0.13207 0.132651 0.132767 0.133332 0.13346 0.134011 0.134153 0.134312 0.134491 0.134691 0.135219 0.135439 0.13595 0.136188 0.136682 0.137163 0.137629 0.137877 0.138327 0.138588 0.139019 0.138763 0.138522 0.138082 0.137855 0.137399 0.13693 0.136447 0.136232 0.135733 0.135537 0.135021 0.134844 0.135363 0.135867 0.136039 0.136527 0.136718 0.13719 0.137649 0.138095 0.138298 0.138729 0.138949 0.139186 0.139438 0.139843 0.140236 0.140617 0.140379 0.139994 0.139596 0.139363 0.139765 0.140155 0.140533 0.140753 0.140985 0.141343 0.141688 0.142023 0.141807 0.141467 0.141116 0.1409 0.141256 0.141601 0.141407 0.141058 0.140698 0.140328 0.139946 0.139552 0.139146 0.138949 0.138528 0.138349 0.137913 0.137464 0.137002 0.136835 0.136358 0.136208 0.135714 0.135207 0.134687 0.134547 0.13507 0.13558 0.135461 0.134949 0.134424 0.133885 0.133773 0.133219 0.133118 0.132549 0.132458 0.131874 0.131791 0.131718 0.132304 0.132376 0.132948 0.133028 0.133586 0.133674 0.134217 0.134314 0.134842 0.135356 0.135858 0.13596 0.136076 0.136559 0.136688 0.137155 0.1373 0.137751 0.13819 0.138616 0.138772 0.139184 0.139358 0.139754 0.139583 0.139433 0.139031 0.138898 0.138481 0.138051 0.13761 0.137486 0.137029 0.136919 0.136446 0.136346 0.136822 0.137286 0.137379 0.137827 0.137931 0.138364 0.138784 0.139192 0.139303 0.139697 0.139824 0.139971 0.14014 0.140514 0.140877 0.141229 0.141069 0.140714 0.140348 0.140203 0.140572 0.140929 0.14081 0.14045 0.140079 0.139974 0.139589 0.139498 0.139098 0.138686 0.138263 0.138176 0.137737 0.137659 0.137205 0.136738 0.136259 0.135768 0.135264 0.134747 0.134663 0.134131 0.134054 0.133508 0.133438 0.132877 0.132814 0.13224 0.131653 0.131595 0.130995 0.130943 0.13033 0.130284 0.12966 0.129618 0.128983 0.128946 0.129581 0.130205 0.130242 0.130855 0.130896 0.131497 0.131543 0.132131 0.132182 0.132758 0.132707 0.132663 0.132086 0.132045 0.131456 0.131419 0.130818 0.130785 0.130173 0.129549 0.128914 0.128269 0.128241 0.127585 0.127561 0.126896 0.12622 0.125535 0.12484 0.124135 0.123421 0.123408 0.12412 0.124823 0.124809 0.124107 0.123396 0.123386 0.124096 0.124797 0.125489 0.125502 0.125517 0.126201 0.126876 0.127541 0.127523 0.126859 0.126185 0.126171 0.126844 0.127508 0.127495 0.126832 0.12616 0.125478 0.124787 0.124087 0.123379 0.123372 0.12408 0.124779 0.124772 0.124074 0.123367 0.123364 0.12407 0.124767 0.125456 0.125462 0.125469 0.12615 0.126822 0.127484 0.127475 0.126814 0.126142 0.126136 0.126807 0.127469 0.128121 0.128128 0.128137 0.128148 0.128161 0.128177 0.128195 0.128216 0.128861 0.128886 0.12952 0.130144 0.130756 0.131358 0.131387 0.131977 0.132009 0.132587 0.132623 0.133189 0.133228 0.133272 0.133321 0.133376 0.133926 0.133986 0.134522 0.134588 0.13511 0.135182 0.135689 0.136183 0.136664 0.137134 0.137072 0.1366 0.136115 0.135619 0.135557 0.135046 0.134989 0.134464 0.134411 0.133872 0.133824 0.133782 0.134323 0.134365 0.134893 0.134938 0.135453 0.135502 0.136003 0.136056 0.136543 0.137017 0.13748 0.137532 0.137591 0.138036 0.138101 0.138531 0.138603 0.139017 0.139421 0.139813 0.139886 0.140263 0.140348 0.140711 0.140629 0.140562 0.140193 0.140135 0.139751 0.139356 0.138949 0.138891 0.138469 0.138416 0.13798 0.137931 0.13837 0.138798 0.138841 0.139254 0.139301 0.139699 0.140087 0.140463 0.140508 0.14087 0.140921 0.140985 0.141064 0.14116 0.141277 0.141414 0.141571 0.141746 0.141936 0.142137 0.142348 0.142566 0.142793 0.143028 0.143272 0.143525 0.143789 0.144062 0.144345 0.144638 0.144942 0.145255 0.145579 0.145914 0.146259 0.146615 0.146982 0.147145 0.1473 0.147448 0.14712 0.14696 0.146792 0.146448 0.146629 0.146802 0.146966 0.147272 0.147588 0.14772 0.147846 0.147966 0.147686 0.147555 0.147417 0.147122 0.147272 0.147414 0.14715 0.146996 0.146836 0.146668 0.146492 0.146308 0.146115 0.145793 0.145997 0.146192 0.1459 0.145695 0.14548 0.145177 0.145402 0.145618 0.145825 0.146098 0.146379 0.146557 0.146728 0.146892 0.146641 0.146468 0.146287 0.146024 0.146215 0.146398 0.146573 0.146808 0.147048 0.147296 0.14755 0.147811 0.148079 0.148187 0.14829 0.148387 0.148152 0.148044 0.14793 0.14768 0.147804 0.147922 0.148035 0.148255 0.14848 0.148568 0.148651 0.148731 0.148535 0.148446 0.148353 0.148143 0.148246 0.148344 0.148157 0.14805 0.147938 0.14782 0.147698 0.14757 0.147436 0.147198 0.147342 0.147479 0.147267 0.14712 0.146967 0.146742 0.146904 0.147059 0.147208 0.147407 0.147611 0.147737 0.147858 0.147974 0.147796 0.147672 0.147542 0.147352 0.147489 0.147622 0.147452 0.147312 0.147166 0.147015 0.146857 0.146693 0.146523 0.146345 0.146161 0.145969 0.145769 0.145561 0.145344 0.145118 0.144883 0.144599 0.144844 0.145078 0.144822 0.144578 0.144325 0.14406 0.144322 0.144573 0.144816 0.145056 0.145304 0.145521 0.14573 0.145931 0.145708 0.145499 0.145282 0.14505 0.145275 0.145492 0.145284 0.145059 0.144826 0.144584 0.144334 0.144074 0.143805 0.143559 0.143836 0.144103 0.143881 0.143606 0.143322 0.143094 0.143385 0.143666 0.143938 0.144146 0.144361 0.14461 0.14485 0.145082 0.144887 0.144649 0.144402 0.144201 0.144455 0.1447 0.144937 0.145118 0.145306 0.1455 0.145702 0.14591 0.146124 0.14631 0.146489 0.146661 0.14647 0.14629 0.146104 0.145903 0.146097 0.146285 0.146465 0.146643 0.146826 0.146986 0.147139 0.147286 0.147125 0.146971 0.14681 0.146639 0.146807 0.146969 0.146816 0.146648 0.146473 0.146293 0.146105 0.145911 0.145709 0.145522 0.14573 0.145931 0.145763 0.145556 0.145341 0.145166 0.145387 0.145601 0.145808 0.145964 0.146125 0.146313 0.146494 0.146669 0.146526 0.146345 0.146158 0.146008 0.146201 0.146388 0.146568 0.1467 0.146837 0.146979 0.147124 0.147274 0.147428 0.147586 0.147749 0.147915 0.148085 0.14826 0.148438 0.14862 0.148807 0.148879 0.148948 0.149013 0.148853 0.148779 0.148701 0.148528 0.148614 0.148696 0.148774 0.148923 0.149075 0.149135 0.149191 0.149245 0.149116 0.149055 0.148991 0.14885 0.148922 0.14899 0.148867 0.148791 0.148711 0.148629 0.148542 0.148452 0.148358 0.148192 0.148294 0.148392 0.148245 0.148139 0.148029 0.147871 0.147988 0.148101 0.148209 0.148346 0.148486 0.148576 0.148662 0.148745 0.148627 0.148537 0.148443 0.148314 0.148414 0.14851 0.148603 0.148713 0.148825 0.14894 0.149056 0.149175 0.149296 0.149345 0.149392 0.149437 0.149336 0.149285 0.149231 0.149119 0.14918 0.149238 0.149293 0.149385 0.149479 0.14952 0.149559 0.149595 0.14952 0.149477 0.149432 0.149346 0.149397 0.149445 0.149372 0.149318 0.149261 0.149202 0.149141 0.149076 0.149009 0.148902 0.148975 0.149045 0.148952 0.148875 0.148796 0.148692 0.148778 0.14886 0.14894 0.149026 0.149113 0.149178 0.14924 0.1493 0.149229 0.149164 0.149096 0.149016 0.149089 0.14916 0.149091 0.149016 0.148937 0.148855 0.148771 0.148682 0.148591 0.148495 0.148397 0.148294 0.148187 0.148076 0.147961 0.147841 0.147716 0.147565 0.147697 0.147823 0.14769 0.147556 0.147418 0.147275 0.14742 0.147559 0.147694 0.147818 0.147945 0.148063 0.148176 0.148285 0.148177 0.148061 0.147942 0.147824 0.14795 0.14807 0.147967 0.14784 0.147709 0.147573 0.147433 0.147287 0.147135 0.147 0.147157 0.147309 0.14719 0.147032 0.146869 0.146742 0.146911 0.147074 0.147231 0.147342 0.147456 0.147597 0.147734 0.147866 0.147768 0.147631 0.147489 0.147383 0.147531 0.147673 0.14781 0.1479 0.147993 0.148089 0.148187 0.148287 0.14839 0.148491 0.148589 0.148683 0.148597 0.148497 0.148394 0.148299 0.148408 0.148512 0.148613 0.148692 0.148773 0.14886 0.148944 0.149024 0.148958 0.148873 0.148784 0.14871 0.148804 0.148894 0.148831 0.148736 0.148638 0.148536 0.14843 0.14832 0.148207 0.148116 0.148235 0.14835 0.148271 0.148152 0.148028 0.147943 0.148071 0.148195 0.148315 0.148387 0.14846 0.148567 0.14867 0.148769 0.148709 0.148605 0.148498 0.148431 0.148542 0.14865 0.148592 0.148481 0.148365 0.148245 0.148121 0.147993 0.14786 0.147723 0.147581 0.147434 0.147282 0.147124 0.146962 0.146794 0.14662 0.14644 0.146254 0.146062 0.145863 0.145658 0.145445 0.145225 0.144997 0.144762 0.144519 0.144267 0.144007 0.143738 0.143459 0.143171 0.142874 0.142661 0.142965 0.143259 0.143066 0.142766 0.142457 0.142261 0.142575 0.14288 0.143176 0.143357 0.143544 0.143819 0.144086 0.144344 0.144174 0.14391 0.143638 0.143462 0.14374 0.144009 0.143851 0.143577 0.143295 0.143003 0.142703 0.142394 0.142075 0.141903 0.142226 0.142538 0.142389 0.142074 0.141749 0.141614 0.141941 0.142259 0.142567 0.142695 0.142842 0.143137 0.143423 0.1437 0.143562 0.143282 0.142993 0.142867 0.143157 0.14344 0.143714 0.143835 0.14397 0.144116 0.14427 0.144429 0.144593 0.144834 0.145068 0.145294 0.145147 0.144915 0.144676 0.144523 0.144767 0.145004 0.145234 0.145371 0.145512 0.145723 0.145928 0.146126 0.146001 0.145798 0.145588 0.145456 0.145671 0.14588 0.145761 0.145547 0.145327 0.1451 0.144865 0.144623 0.144374 0.144231 0.144485 0.144731 0.144605 0.144356 0.144099 0.143981 0.144239 0.144491 0.144735 0.144847 0.14497 0.145202 0.145427 0.145645 0.145533 0.145311 0.145083 0.144973 0.145204 0.145428 0.145334 0.145109 0.144877 0.144638 0.144393 0.14414 0.14388 0.143612 0.143337 0.143053 0.14276 0.142459 0.142149 0.141829 0.1415 0.141406 0.141737 0.142059 0.141989 0.141664 0.14133 0.141269 0.141607 0.141934 0.142252 0.142304 0.142372 0.142675 0.142969 0.143254 0.143192 0.142905 0.142609 0.14256 0.142858 0.143147 0.143117 0.142825 0.142524 0.142213 0.141893 0.141562 0.141221 0.141183 0.140828 0.140795 0.140426 0.140047 0.139656 0.139619 0.139214 0.13918 0.138761 0.13833 0.137888 0.137435 0.136969 0.136492 0.136448 0.135956 0.135915 0.13541 0.135372 0.134853 0.134818 0.134286 0.133744 0.13371 0.133154 0.133123 0.132556 0.132528 0.131949 0.131924 0.131333 0.130731 0.130119 0.129495 0.129473 0.128839 0.128821 0.128805 0.129438 0.129454 0.130077 0.130096 0.130709 0.131311 0.131902 0.132482 0.132503 0.133072 0.133096 0.133653 0.13368 0.134225 0.134254 0.134786 0.134758 0.134733 0.134199 0.134176 0.13363 0.133609 0.133051 0.133033 0.132463 0.131883 0.131292 0.13069 0.130673 0.130061 0.130047 0.129424 0.128791 0.128779 0.129412 0.130035 0.130025 0.129403 0.12877 0.128763 0.129395 0.130018 0.13063 0.130637 0.130647 0.130659 0.131261 0.131275 0.131866 0.132447 0.132433 0.131852 0.131841 0.131249 0.131239 0.131232 0.131824 0.131831 0.132412 0.132421 0.132992 0.133003 0.133017 0.133576 0.133591 0.134139 0.134156 0.134692 0.134711 0.135236 0.135257 0.13528 0.135307 0.135338 0.135846 0.135878 0.136373 0.136408 0.13689 0.136927 0.137395 0.137851 0.138296 0.138729 0.138701 0.138265 0.137818 0.13736 0.137329 0.136857 0.136828 0.136343 0.136315 0.135817 0.135791 0.135769 0.13627 0.136291 0.136779 0.136802 0.137278 0.137302 0.137764 0.13779 0.138239 0.138677 0.139104 0.139126 0.139151 0.139562 0.139588 0.139985 0.140013 0.140396 0.140372 0.140351 0.139962 0.139942 0.13954 0.139521 0.139926 0.14032 0.140334 0.140716 0.14073 0.140747 0.140768 0.14113 0.141153 0.141501 0.141527 0.141861 0.141838 0.141822 0.141481 0.141466 0.141112 0.141097 0.141455 0.141802 0.14181 0.142144 0.142152 0.142166 0.142185 0.142499 0.142803 0.143098 0.143088 0.14279 0.142483 0.142473 0.142784 0.143085 0.143376 0.143377 0.143384 0.1434 0.143428 0.14347 0.143531 0.1438 0.144061 0.144314 0.144256 0.144002 0.14374 0.143699 0.143963 0.144218 0.144465 0.144503 0.14456 0.144799 0.145031 0.145257 0.1452 0.144974 0.144742 0.144705 0.144938 0.145163 0.145146 0.144919 0.144686 0.144445 0.144196 0.143939 0.143674 0.14366 0.143928 0.144187 0.144189 0.143927 0.143656 0.143659 0.143932 0.144197 0.144453 0.144442 0.144438 0.144681 0.144916 0.145143 0.145153 0.144924 0.144687 0.1447 0.14494 0.145171 0.145395 0.145375 0.145363 0.145365 0.145382 0.145419 0.145477 0.145554 0.145646 0.145748 0.145856 0.145967 0.146081 0.146197 0.146317 0.146502 0.146681 0.146854 0.14675 0.146572 0.146388 0.146276 0.146465 0.146648 0.146825 0.146922 0.147021 0.147183 0.14734 0.147492 0.147406 0.14725 0.147088 0.146997 0.147162 0.147323 0.147242 0.147077 0.146907 0.146731 0.146549 0.146362 0.146168 0.146061 0.146259 0.146452 0.146356 0.146159 0.145957 0.145858 0.146063 0.146263 0.146457 0.146546 0.146638 0.146818 0.146993 0.147162 0.147083 0.14691 0.146731 0.146645 0.146828 0.147005 0.147177 0.147251 0.147326 0.147401 0.147478 0.147557 0.147638 0.14778 0.147917 0.14805 0.14798 0.147844 0.147703 0.147628 0.147773 0.147914 0.148049 0.148112 0.148178 0.148301 0.148421 0.148536 0.148482 0.148363 0.14824 0.148181 0.148307 0.14843 0.14838 0.148254 0.148123 0.147988 0.147849 0.147705 0.147555 0.147484 0.147638 0.147786 0.147723 0.147571 0.147414 0.147343 0.147504 0.14766 0.147811 0.14787 0.147929 0.148067 0.148201 0.148331 0.148282 0.14815 0.148012 0.147957 0.148098 0.148234 0.148185 0.148046 0.147901 0.147752 0.147597 0.147438 0.147273 0.147104 0.146929 0.146749 0.146563 0.146373 0.146176 0.145975 0.145767 0.145691 0.145899 0.146101 0.146042 0.14584 0.145633 0.145595 0.145802 0.146002 0.146197 0.146238 0.146298 0.14649 0.146676 0.146858 0.146797 0.146616 0.146429 0.146387 0.146572 0.146752 0.146727 0.146549 0.146366 0.146177 0.145983 0.145783 0.145577 0.145577 0.145783 0.145983 0.145996 0.145796 0.145589 0.145611 0.145819 0.146021 0.146216 0.14619 0.146176 0.146364 0.146546 0.146722 0.146735 0.146559 0.146378 0.146404 0.146586 0.146761 0.146931 0.146905 0.146894 0.146901 0.146928 0.146974 0.147034 0.147206 0.147373 0.147535 0.147477 0.147314 0.147146 0.147099 0.147266 0.147428 0.147587 0.147636 0.147692 0.147845 0.147992 0.148135 0.148085 0.14794 0.14779 0.147741 0.147891 0.148038 0.147998 0.147853 0.147704 0.147551 0.147395 0.147234 0.14707 0.14706 0.147222 0.14738 0.147385 0.14723 0.14707 0.147095 0.147254 0.147408 0.147557 0.147536 0.147534 0.147684 0.14783 0.147972 0.147965 0.147826 0.147683 0.147701 0.147841 0.147977 0.148109 0.148101 0.148112 0.14814 0.14818 0.148226 0.148273 0.14832 0.148366 0.14841 0.148455 0.148501 0.148548 0.148597 0.148648 0.1487 0.148753 0.148808 0.148865 0.148922 0.148981 0.149041 0.149102 0.149164 0.149227 0.149292 0.149357 0.149424 0.149492 0.149561 0.149631 0.149664 0.149696 0.149726 0.149672 0.149637 0.1496 0.149536 0.149579 0.149619 0.149658 0.149706 0.149755 0.149783 0.149808 0.149833 0.149798 0.149769 0.149738 0.149695 0.14973 0.149763 0.149728 0.149691 0.149652 0.14961 0.149567 0.149521 0.149474 0.149412 0.149465 0.149515 0.149464 0.149409 0.149352 0.149292 0.149354 0.149414 0.149471 0.149517 0.149563 0.149609 0.149653 0.149694 0.149661 0.149615 0.149567 0.149526 0.149578 0.149627 0.149675 0.149704 0.149734 0.149764 0.149794 0.149825 0.149856 0.149877 0.149897 0.149916 0.149896 0.149874 0.14985 0.149824 0.149851 0.149877 0.149901 0.149917 0.149933 0.149949 0.149962 0.149974 0.149966 0.149952 0.149936 0.149923 0.149942 0.149959 0.149951 0.149932 0.14991 0.149885 0.149858 0.149828 0.149797 0.149771 0.149806 0.149838 0.149819 0.149783 0.149745 0.149719 0.149761 0.1498 0.149837 0.149853 0.149869 0.149897 0.149922 0.149944 0.149936 0.149912 0.149884 0.149871 0.149902 0.149928 0.149921 0.149891 0.149858 0.149821 0.149782 0.149739 0.149694 0.149645 0.149595 0.149541 0.149485 0.149426 0.149365 0.1493 0.149234 0.149176 0.149248 0.149316 0.149268 0.149196 0.14912 0.149064 0.149145 0.149222 0.149296 0.149338 0.149382 0.149445 0.149505 0.149562 0.14953 0.149469 0.149405 0.149366 0.149434 0.149499 0.149468 0.149399 0.149328 0.149253 0.149176 0.149094 0.14901 0.148957 0.149045 0.14913 0.149086 0.148997 0.148905 0.148853 0.14895 0.149042 0.149131 0.149171 0.149212 0.14929 0.149365 0.149437 0.149407 0.149332 0.149253 0.149217 0.149299 0.149377 0.149451 0.149478 0.149505 0.149533 0.14956 0.149588 0.149617 0.149668 0.149717 0.149763 0.149744 0.149695 0.149643 0.149619 0.149674 0.149726 0.149774 0.14979 0.149805 0.149845 0.149881 0.149913 0.149905 0.149871 0.149832 0.149819 0.14986 0.149897 0.149889 0.14985 0.149806 0.149758 0.149707 0.149652 0.149594 0.14957 0.149631 0.149689 0.149671 0.14961 0.149546 0.149522 0.149589 0.149652 0.149712 0.149727 0.149743 0.149793 0.149839 0.149881 0.149872 0.149829 0.14978 0.149767 0.149818 0.149864 0.149904 0.14991 0.149917 0.149923 0.149929 0.149935 0.14994 0.149946 0.149952 0.149957 0.149963 0.149968 0.149973 0.149979 0.149984 0.149992 0.149998 0.150002 0.150001 0.149996 0.149989 0.149985 0.149994 0.150001 0.150004 0.150004 0.150005 0.150005 0.150005 0.150006 0.150006 0.150004 0.15 0.149992 0.149982 0.149978 0.14999 0.149999 0.149998 0.149988 0.149975 0.149971 0.149986 0.149997 0.150004 0.150004 0.150004 0.150006 0.150007 0.150007 0.150007 0.150004 0.149997 0.149984 0.149967 0.149964 0.149982 0.149996 0.149995 0.14998 0.14996 0.149956 0.149978 0.149994 0.150004 0.150004 0.150004 0.150008 0.150008 0.150009 0.15001 0.150004 0.149993 0.149976 0.149952 0.149948 0.149973 0.149992 0.149991 0.14997 0.149943 0.149939 0.149968 0.14999 0.150004 0.150004 0.150004 0.15001 0.150011 0.150011 0.150012 0.150004 0.149988 0.149965 0.149934 0.149897 0.149855 0.149807 0.149753 0.149696 0.149634 0.149568 0.149499 0.149425 0.149347 0.149266 0.149181 0.149092 0.149 0.148904 0.148804 0.148755 0.148859 0.148958 0.148918 0.148815 0.148708 0.148662 0.148772 0.148878 0.14898 0.149017 0.149054 0.149146 0.149234 0.149318 0.14929 0.149203 0.149112 0.149078 0.149172 0.149262 0.149235 0.149143 0.149046 0.148945 0.14884 0.148731 0.148618 0.148576 0.148692 0.148804 0.148768 0.148653 0.148534 0.148493 0.148615 0.148732 0.148846 0.148878 0.148911 0.149015 0.149114 0.149209 0.149184 0.149086 0.148984 0.148954 0.149059 0.149159 0.149254 0.149277 0.1493 0.149324 0.149348 0.149373 0.149399 0.149475 0.149548 0.149616 0.149598 0.149528 0.149452 0.14943 0.149508 0.149581 0.14965 0.149665 0.14968 0.14974 0.149796 0.149846 0.149837 0.149785 0.149727 0.149714 0.149773 0.149828 0.149819 0.149762 0.149701 0.149634 0.149563 0.149488 0.149408 0.149387 0.149469 0.149546 0.14953 0.14945 0.149366 0.149345 0.149432 0.149514 0.149591 0.149605 0.14962 0.149688 0.149751 0.14981 0.149801 0.149741 0.149675 0.149663 0.14973 0.149792 0.149783 0.149719 0.149651 0.149577 0.149498 0.149414 0.149325 0.149232 0.149134 0.149031 0.148924 0.148813 0.148697 0.148576 0.14845 0.148407 0.148535 0.148659 0.14862 0.148493 0.148362 0.148317 0.148451 0.14858 0.148705 0.148742 0.148778 0.148893 0.149003 0.149108 0.14908 0.148973 0.14886 0.148825 0.14894 0.149051 0.149019 0.148906 0.148789 0.148667 0.148541 0.148411 0.148277 0.148247 0.14838 0.148509 0.148488 0.148362 0.148233 0.148238 0.148363 0.148485 0.148604 0.148611 0.148634 0.148756 0.148873 0.148987 0.14896 0.148847 0.148731 0.14872 0.148833 0.148943 0.14905 0.149069 0.149097 0.149127 0.149156 0.149184 0.149208 0.149304 0.149395 0.149481 0.149464 0.149375 0.149282 0.149257 0.149353 0.149444 0.14953 0.149547 0.149562 0.149638 0.149709 0.149774 0.149765 0.149697 0.149625 0.14961 0.149685 0.149754 0.149742 0.14967 0.149593 0.14951 0.149422 0.149329 0.14923 0.149202 0.149302 0.149398 0.149372 0.149276 0.149174 0.149153 0.149253 0.149349 0.149442 0.149464 0.149488 0.149573 0.149653 0.149727 0.149709 0.149633 0.149551 0.149529 0.149612 0.14969 0.149762 0.149779 0.149795 0.149807 0.149817 0.149826 0.149834 0.149841 0.149848 0.149855 0.149862 0.149869 0.149876 0.149883 0.14989 0.149929 0.149962 0.149987 0.149985 0.149958 0.149924 0.149919 0.149955 0.149983 0.150003 0.150004 0.150004 0.150013 0.150013 0.150014 0.150014 0.150003 0.149981 0.149951 0.149913 0.149908 0.149947 0.149979 0.149977 0.149944 0.149903 0.149897 0.14994 0.149975 0.150001 0.150001 0.150002 0.150014 0.150015 0.150015 0.150016 0.15 0.149973 0.149936 0.149892 0.149886 0.149932 0.149971 0.149968 0.149928 0.149881 0.149874 0.149923 0.149965 0.149997 0.149998 0.149999 0.150016 0.150016 0.150017 0.150016 0.149995 0.149961 0.149917 0.149866 0.149856 0.149909 0.149955 0.149947 0.149899 0.149843 0.149828 0.149886 0.149937 0.149978 0.149986 0.149991 0.150014 0.150011 0.150006 0.149999 0.149968 0.149925 0.149872 0.149811 0.149744 0.149671 0.149593 0.149511 0.149424 0.149334 0.14924 0.149144 0.149044 0.148941 0.148835 0.148727 0.148615 0.1485 0.148382 0.148261 0.148135 0.148006 0.147872 0.147734 0.147591 0.147444 0.14729 0.147132 0.146967 0.146797 0.146621 0.146438 0.146249 0.146053 0.145849 0.145639 0.145421 0.145195 0.144961 0.14472 0.144469 0.144211 0.143943 0.143667 0.143381 0.143086 0.142782 0.142468 0.142466 0.142139 0.142137 0.141797 0.141447 0.141086 0.141078 0.140704 0.140695 0.140309 0.139912 0.139504 0.139086 0.138656 0.138216 0.138196 0.137742 0.137723 0.137257 0.137238 0.136759 0.136742 0.136251 0.135749 0.135731 0.135217 0.135201 0.134676 0.134661 0.134124 0.134111 0.133562 0.133551 0.1341 0.134638 0.134649 0.135176 0.135188 0.135703 0.135716 0.13622 0.136234 0.136727 0.136713 0.136702 0.136208 0.136197 0.135692 0.135683 0.135166 0.135158 0.13463 0.134091 0.133542 0.132982 0.132975 0.132405 0.1324 0.131818 0.131227 0.130625 0.130013 0.129391 0.128758 0.128116 0.127464 0.126803 0.126132 0.125453 0.124764 0.124067 0.123361 0.12336 0.124065 0.124762 0.125451 0.12613 0.126801 0.127462 0.128113 0.128755 0.129388 0.13001 0.130622 0.131224 0.131816 0.132397 0.132967 0.13297 0.13353 0.133535 0.134085 0.134623 0.135151 0.135669 0.135675 0.136181 0.136188 0.136684 0.136692 0.137176 0.137185 0.137195 0.137208 0.137222 0.137691 0.137706 0.138163 0.138178 0.138622 0.138638 0.13907 0.13949 0.1399 0.140299 0.140292 0.13989 0.139478 0.139056 0.139044 0.138609 0.138597 0.138149 0.138138 0.137678 0.137667 0.137657 0.138119 0.138127 0.138577 0.138586 0.139024 0.139033 0.139459 0.139468 0.139882 0.140285 0.14028 0.139875 0.139869 0.139452 0.139446 0.139017 0.13901 0.13857 0.138563 0.138112 0.137649 0.137642 0.137168 0.137162 0.136677 0.136672 0.136176 0.136172 0.135665 0.135147 0.134619 0.13408 0.134077 0.133528 0.134616 0.135145 0.135663 0.13617 0.136666 0.136668 0.137154 0.137157 0.137632 0.137637 0.1381 0.138105 0.138558 0.138554 0.13855 0.138097 0.138094 0.137629 0.137628 0.137152 0.138092 0.138547 0.138548 0.138992 0.138994 0.138997 0.139 0.139005 0.139436 0.13944 0.13986 0.139864 0.140272 0.140275 0.140672 0.140675 0.140678 0.140683 0.140688 0.141067 0.141072 0.141437 0.141441 0.141794 0.142137 0.14247 0.142467 0.142787 0.142783 0.143091 0.143098 0.143107 0.142793 0.1428 0.142474 0.142138 0.141793 0.141793 0.141435 0.141434 0.141063 0.141061 0.141433 0.141796 0.141794 0.142144 0.142141 0.142479 0.142808 0.143127 0.143116 0.143423 0.143411 0.143399 0.143389 0.143678 0.143957 0.144228 0.144247 0.143973 0.143691 0.143705 0.143991 0.144267 0.144535 0.144511 0.144489 0.144742 0.144987 0.145223 0.145254 0.145015 0.144767 0.144793 0.145044 0.145285 0.145317 0.145073 0.14482 0.144558 0.144288 0.144009 0.143721 0.143736 0.143436 0.143449 0.143137 0.142816 0.142485 0.142491 0.142148 0.142152 0.141798 0.141433 0.141059 0.141058 0.141434 0.1418 0.141802 0.141435 0.141057 0.14067 0.140668 0.140269 0.140267 0.139856 0.139854 0.139432 0.139429 0.139427 0.13985 0.139851 0.140263 0.140265 0.140666 0.140667 0.141057 0.141057 0.141436 0.141805 0.142164 0.14216 0.142156 0.142502 0.142497 0.142832 0.142824 0.143147 0.143461 0.143766 0.143751 0.144045 0.144027 0.144309 0.144329 0.144348 0.144061 0.144077 0.14378 0.143473 0.143157 0.143166 0.142839 0.142846 0.142508 0.142513 0.142853 0.143183 0.143175 0.143495 0.143484 0.143793 0.144092 0.144383 0.144366 0.144646 0.144626 0.144604 0.144582 0.144846 0.145101 0.145348 0.145378 0.145129 0.144871 0.144894 0.145155 0.145406 0.145432 0.145179 0.144917 0.144937 0.144664 0.144681 0.144398 0.144106 0.143805 0.143816 0.143504 0.143512 0.14319 0.142859 0.142518 0.142167 0.141807 0.141437 0.141438 0.141057 0.141057 0.140665 0.140665 0.140262 0.140262 0.139849 0.139425 0.139425 0.138991 0.139848 0.140261 0.140664 0.140664 0.141057 0.141057 0.141439 0.141439 0.141811 0.141809 0.14217 0.142522 0.142864 0.143196 0.143202 0.142868 0.142525 0.142173 0.142175 0.141812 0.141813 0.14144 0.14144 0.141057 0.141814 0.142177 0.142176 0.14253 0.142528 0.142872 0.143206 0.143531 0.143526 0.14352 0.143834 0.143825 0.144129 0.144118 0.144412 0.144697 0.144973 0.144956 0.145222 0.145201 0.145457 0.145479 0.145499 0.14524 0.145256 0.144987 0.14471 0.144424 0.144435 0.144139 0.144147 0.143841 0.143847 0.144153 0.144451 0.144444 0.144732 0.144722 0.145 0.14527 0.145531 0.145516 0.145768 0.145749 0.145728 0.145704 0.145678 0.145649 0.145619 0.145586 0.145553 0.145518 0.145484 0.145451 0.145671 0.145884 0.146089 0.146129 0.145922 0.145707 0.145743 0.145961 0.14617 0.146372 0.146328 0.146287 0.146478 0.146662 0.146839 0.146885 0.146706 0.146521 0.146566 0.146753 0.146933 0.146982 0.1468 0.146611 0.146415 0.146211 0.146 0.14578 0.145816 0.146038 0.146252 0.146292 0.146076 0.145851 0.145884 0.146111 0.146329 0.14654 0.1465 0.146458 0.146657 0.146847 0.147031 0.147079 0.146893 0.146701 0.146742 0.146937 0.147124 0.147304 0.147256 0.147207 0.147156 0.147106 0.147057 0.14701 0.147175 0.147334 0.147487 0.147536 0.147382 0.147223 0.147273 0.147433 0.147588 0.147736 0.147684 0.147635 0.147777 0.147915 0.148047 0.148096 0.147964 0.147827 0.147879 0.148016 0.148148 0.148202 0.14807 0.147933 0.147789 0.147641 0.147486 0.147324 0.147376 0.147538 0.147694 0.147747 0.14759 0.147427 0.147476 0.147641 0.147799 0.14795 0.147897 0.147844 0.147987 0.148125 0.148256 0.148311 0.148179 0.148041 0.148095 0.148233 0.148365 0.148417 0.148285 0.148146 0.148001 0.147848 0.147689 0.147523 0.147349 0.147167 0.146978 0.146781 0.146577 0.146364 0.146143 0.145915 0.145943 0.146173 0.146396 0.146425 0.146201 0.145968 0.145991 0.146225 0.146451 0.146669 0.146641 0.14661 0.146817 0.147016 0.147207 0.147243 0.14705 0.146849 0.146878 0.14708 0.147275 0.147303 0.147107 0.146904 0.146693 0.146474 0.146246 0.146011 0.146029 0.145784 0.145798 0.145544 0.145282 0.145011 0.14502 0.14474 0.144745 0.144456 0.144158 0.14385 0.143534 0.143209 0.142874 0.142876 0.142531 0.143211 0.143536 0.143853 0.14416 0.144459 0.144748 0.145029 0.145026 0.145298 0.145291 0.145554 0.145809 0.146055 0.146043 0.146281 0.146265 0.146493 0.14651 0.146523 0.146293 0.146301 0.146063 0.145816 0.145561 0.145565 0.145301 0.14582 0.146068 0.146306 0.146537 0.146532 0.146754 0.146745 0.146731 0.146713 0.146926 0.14713 0.147327 0.147347 0.14715 0.146944 0.146959 0.147165 0.147363 0.147554 0.147537 0.147516 0.147491 0.147461 0.147428 0.14739 0.147566 0.147734 0.147895 0.147937 0.147775 0.147605 0.14764 0.147812 0.147976 0.148132 0.148092 0.148048 0.148195 0.148334 0.148467 0.148514 0.148381 0.14824 0.148281 0.148423 0.148557 0.148596 0.14846 0.148318 0.148167 0.148009 0.147844 0.147671 0.147698 0.147872 0.148038 0.148063 0.147895 0.14772 0.147737 0.147913 0.148081 0.148242 0.148223 0.148198 0.148349 0.148493 0.14863 0.148658 0.148521 0.148375 0.148396 0.148542 0.148681 0.148696 0.148557 0.14841 0.148256 0.148095 0.147926 0.147749 0.147566 0.147374 0.147175 0.146969 0.146975 0.14676 0.147182 0.147381 0.147573 0.147757 0.147933 0.148102 0.148264 0.148418 0.148566 0.148705 0.148838 0.148828 0.148812 0.148789 0.148759 0.148724 0.148684 0.148641 0.148593 0.148543 0.148491 0.148437 0.148383 0.148329 0.148275 0.148223 0.148175 0.148298 0.148417 0.148532 0.148575 0.148462 0.148345 0.148396 0.148513 0.148625 0.148733 0.148684 0.148643 0.148751 0.148855 0.148956 0.148988 0.14889 0.148789 0.148836 0.148935 0.14903 0.149078 0.148985 0.148887 0.148785 0.148678 0.148566 0.14845 0.148504 0.14862 0.148731 0.148784 0.148674 0.148558 0.148611 0.148726 0.148836 0.14894 0.14889 0.148838 0.148939 0.149036 0.149128 0.149178 0.149086 0.14899 0.14904 0.149135 0.149225 0.149311 0.149264 0.149216 0.149167 0.149121 0.149082 0.149055 0.14915 0.149242 0.149332 0.149345 0.149261 0.149173 0.149209 0.149293 0.149373 0.149451 0.149427 0.149418 0.149502 0.149581 0.149657 0.149653 0.149581 0.149506 0.149525 0.149595 0.149663 0.149684 0.149621 0.149555 0.149485 0.149411 0.149334 0.149253 0.1493 0.149379 0.149454 0.149498 0.149425 0.149347 0.149392 0.149468 0.14954 0.149607 0.149567 0.149525 0.149592 0.149655 0.149714 0.149748 0.149692 0.149632 0.149669 0.149727 0.14978 0.14981 0.149759 0.149704 0.149644 0.149579 0.149509 0.149434 0.149355 0.149271 0.149182 0.149088 0.14899 0.148886 0.148777 0.148663 0.148713 0.148827 0.148935 0.148982 0.148874 0.148761 0.148805 0.148918 0.149026 0.149127 0.149083 0.149038 0.149135 0.149227 0.149314 0.149356 0.14927 0.149179 0.149222 0.149311 0.149395 0.149431 0.149349 0.149261 0.149167 0.149066 0.148959 0.148845 0.148881 0.148996 0.149103 0.149135 0.149027 0.148912 0.148936 0.149052 0.149161 0.149262 0.149236 0.149203 0.149297 0.149384 0.149465 0.149496 0.149416 0.149329 0.149356 0.149442 0.149521 0.149593 0.149569 0.14954 0.149508 0.149473 0.149436 0.149397 0.149474 0.149547 0.149615 0.149648 0.149582 0.149512 0.149547 0.149615 0.149678 0.149736 0.149708 0.149678 0.149735 0.149788 0.149836 0.149858 0.149813 0.149763 0.149787 0.149834 0.149875 0.149889 0.149851 0.149808 0.14976 0.149706 0.149645 0.149579 0.149609 0.149673 0.14973 0.149751 0.149697 0.149636 0.149658 0.149716 0.149768 0.149812 0.149799 0.149781 0.149826 0.149865 0.149899 0.149907 0.149875 0.14984 0.14985 0.149883 0.149912 0.149941 0.149937 0.149932 0.149924 0.149914 0.149899 0.149881 0.149858 0.14983 0.1498 0.14977 0.149744 0.149727 0.149722 0.149729 0.149797 0.149857 0.149912 0.1499 0.149847 0.149788 0.149788 0.149845 0.149895 0.149938 0.149946 0.149957 0.149989 0.149979 0.149971 0.149968 0.149938 0.149899 0.149853 0.149801 0.149822 0.14987 0.149911 0.14993 0.149893 0.149849 0.149877 0.149918 0.149951 0.149975 0.14996 0.149946 0.149971 0.14998 0.149989 0.149995 0.149987 0.149968 0.149939 0.149901 0.149922 0.149956 0.14998 0.149987 0.149968 0.149937 0.149948 0.149976 0.149992 0.149998 0.149996 0.149993 0.149998 0.149999 0.15 0.15 0.149999 0.149994 0.149981 0.149956 0.149961 0.149984 0.149995 0.149996 0.149986 0.149965 0.149967 0.149987 0.149997 0.149999 0.149999 0.149999 0.15 0.15 0.15 0.15 0.149999 0.149997 0.149988 0.149969 0.149943 0.149916 0.149888 0.149857 0.149821 0.149779 0.14973 0.149674 0.149611 0.14954 0.149462 0.149376 0.149281 0.14918 0.14907 0.148953 0.148963 0.149081 0.149191 0.149293 0.149388 0.149474 0.149552 0.149622 0.149684 0.149739 0.149786 0.149827 0.149861 0.149891 0.149918 0.149944 0.149969 0.149988 0.149997 0.149999 0.15 0.170585 0.160396 0.159441 0.173895 0.176042 0.168043 0.176367 0.15745 0.135995 0.149123 0.11948 0.134948 0.0858949 0.0944646 0.0980342 0.141188 0.14468 0.141473 0.133055 0.110401 0.115412 0.11904 0.115097 0.098399 0.087353 0.0632645 0.0429074 0.0567452 0.0682325 0.147508 0.148551 0.149363 0.149818 0.149517 0.149052 0.149534 0.149752 0.149893 0.149886 0.14996 0.149956 0.149837 0.149952 0.149962 0.14989 0.149897 0.149909 0.149927 0.149949 0.149974 0.15 0.150025 0.150055 0.150081 0.150092 0.150086 0.150069 0.150047 0.150028 0.150013 0.150004 0.149998 0.149996 0.149996 0.149996 0.149997 0.149998 0.149998 0.149999 0.149999 0.149999 0.149999 0.149999 0.15 0.15 0.15 0.15 0.15 0.15 0.150001 0.150001 0.150001 0.150001 0.150001 0.150002 0.150002 0.150002 0.150002 0.150002 0.150002 0.150003 0.150003 0.150003 0.150003 0.150003 0.150004 0.150004 0.150004 0.150004 0.150005 0.150005 0.150005 0.150006 0.150006 0.150007 0.150007 0.150008 0.150008 0.150009 0.150009 0.15001 0.150011 0.150011 0.150012 0.150013 0.150014 0.150015 0.150016 0.150017 0.150018 0.150019 0.15002 0.15002 0.150019 0.150016 0.150012 0.150007 0.150002 0.149998 0.149996 0.149997 0.149998 0.149999 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type calculated; value nonuniform List<scalar> 108 ( 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 ) ; } outlet { type calculated; value nonuniform List<scalar> 60 ( 0.0774127 0.0774146 0.0774183 0.0774233 0.0774303 0.0774388 0.0774489 0.0774607 0.077474 0.0774892 0.0775064 0.0775257 0.0775474 0.0775715 0.0775985 0.0776284 0.0776618 0.0776988 0.07774 0.0777859 0.0778368 0.0778935 0.0779567 0.078027 0.0781054 0.0781928 0.0782902 0.0783985 0.0785187 0.0786517 0.0787981 0.078958 0.0791307 0.0793141 0.0795047 0.0796961 0.0798785 0.0800375 0.0801534 0.0802 0.0801448 0.0799539 0.0795873 0.079033 0.0782492 0.0772731 0.0760451 0.0702912 0.073385 0.0690437 0.0667427 0.0629966 0.0613312 0.0616963 0.0652954 0.074382 0.0774117 0.106495 0.0955446 0.0832131 ) ; } walls { type calculated; value uniform 1; } rightWall { type calculated; value nonuniform List<scalar> 55 ( 0.18567 0.208374 0.226299 0.240446 0.252278 0.260115 0.267696 0.273428 0.278089 0.281526 0.284293 0.286194 0.287645 0.288469 0.288982 0.289019 0.288839 0.288276 0.287557 0.286516 0.285354 0.283901 0.28235 0.280534 0.278639 0.276491 0.274281 0.271821 0.269313 0.26655 0.263753 0.260686 0.2576 0.254211 0.250828 0.247084 0.243377 0.239218 0.23514 0.230464 0.225937 0.220539 0.215347 0.20854 0.201754 0.19254 0.184373 0.179285 0.175048 0.13892 0.146835 0.160558 0.154359 0.16625 0.167981 ) ; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
b2848055174ad79e930017ddd943658325564fb7
9f45780bf3d8c45fb51ba3914cfa4b1b74d606c1
/NanGe-Ubuntu/kbase_ce/chndictn.cpp
33ad7f9b84e25e78f31cead2ed5ee0b6307f6b50
[]
no_license
panyang/NanGeMT
da6788d4be30e68bc7ae07491a3489ee6bbf5a68
251a6c421e44d706217692851e74837efab5002b
refs/heads/master
2021-06-20T06:50:44.571301
2017-07-23T12:58:37
2017-07-23T12:58:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,788
cpp
chndictn.cpp
#include "chndictn.h" /**************************************************************** * parameters: char *word * * return value: int * * Description: get a distinguish value of the given word * * to discriminate different word when their * * Hash value or pattern is the same * * algorithm: * * get the word's first and last char, * * OR the two letters' every bit and return * * the result. * *****************************************************************/ static int HASHLENGTH=8; int ChnDictn::getDstgVal(const char *word) { int val=0; const char * wordend=word+HASHLENGTH; const char * next=getNext(word); while (*word && next <= wordend) { val=val^getValue(word); word=next; next=getNext(word); } return val; } /**************************************************************** * parameters: char *word,int Len(hash table Length) * * return value: int:Hash Value * * Description: when a word is given,calculate its Hash * * Value to locate its position in Index file * * or in Buffer. * * algorithm: * * get the word's first two chars. * * get their HiByte() and LowByte() to * * a1,a2,a3,a4. * * calculate: a1+a2*95+a3*95*95+a4*95*95*95 * * every step should mod Len * *****************************************************************/ int ChnDictn::getHashVal(const char *word,int Len) { int Hash=0; const char * wordend=word+HASHLENGTH; //const char * next=getNext(word); while (*word && word < wordend /*next <= wordend*/) { /* if (isDblByte(word)) { Hash = ( Hash*71 + getQu(word) ) % Len; Hash = ( Hash*71 + getWei(word) ) % Len; } else Hash = ( Hash*71 + *word ) % Len; word=next; next=getNext(word); */ Hash = ( Hash*71 + (unsigned char)*word ) % Len; word++; } return Hash; } /************************************************************ * Description: read entrys matching the specied text * * if text=NULL,find out the entry matching * * the old text * * if text!=NULL,find out the first entry * * matching the text. * * About matching: matching means to find the words in the * * dictionary who is the first part of the * * text. that is to say,text is always * * longer,at least equal to the word. * * total number of matching the text is the* * same as the length of the text. * *************************************************************/ cRuleList & ChnDictn::rd_MeansWord(char *iword, const char *itext) { if( getBuilt()==NO) error("ChnDictn::rd_MeansWord(): rd_MeansWord while Built=NO"); if (getStatus()!=ROPEN) error("ChnDictn::rd_MeansWord(): rd_MeansWord while not ROPEN."); static char text[SENTLENGTH]; static char word[WORDLENGTH]; static char * textpntr; static char * wordpntr; static long idxoffs; static int dstgval; static int longer; if (itext) { strcpy(text,itext); textpntr=text; wordpntr=word; longer=0; } if (!*textpntr) return *(cRuleList *)NULL; setCharNext(wordpntr,textpntr); while (textpntr-text<HASHLENGTH) { *wordpntr=0; cRuleList & rulelist=rd_Means(word); if (&rulelist) { strcpy(iword,word); return rulelist; } else if (!*textpntr) return *(cRuleList *)NULL; else setCharNext(wordpntr,textpntr); } if (longer==0) { longer=1; dstgval=getDstgVal(text); int hashval=getHashVal(text,IdxFileSize); idxoffs=hashval; } if (idxoffs==-1) return *(cRuleList *)NULL; BOOL Find=FALSE; char Word[TOKENLENGTH]; beginScan(MAXBUFFER); cRuleList * rulelist=(cRuleList *)NULL;; while (idxoffs!=-1) { IndexBuffUnit & index = IndexBuff[idxoffs]; idxoffs=index.getNextIndex(); if (index.getDstgValue()==dstgval && index.getDataOffset()!=-1) { DatFile.seekg(index.getDataOffset(),ios::beg); int i; i=rdDatLength(); rdDatBuff(i); getWord(DatBuff,Word); int agree=stragree(text,Word); if(agree==0 || agree==1) { EntryBuffUnit * unit=EntryBuff.addEntry(Word,DatBuff); strcpy(iword,unit->getKey()); rulelist=&unit->getRuleList(); break; } } } endScan(); return *rulelist; }
f52135140b8b76f8cf038d1f8824de2bd4e1d3f5
dba68ca53ce02985ed1b49f6813d578d24e94b27
/ProjectAtum/InterfaceLib/main/INFStageEffect.cpp
ca76b07f56587f006651d8d5684ab22252438b5d
[]
no_license
DeathRivals/OpenAo
afd6c1fe6ddc00e3765c290f485805a7b3e0db59
bf6be4ee29b1f08588fe7fd12c02c8df94d705f5
refs/heads/master
2021-02-15T18:23:37.814569
2020-03-04T14:39:38
2020-03-04T14:39:38
244,919,960
2
2
null
2020-03-04T14:22:07
2020-03-04T14:22:07
null
UHC
C++
false
false
6,613
cpp
INFStageEffect.cpp
// INFStateEffect.cpp: implementation of the CINFStageEffect class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "INFStageEffect.h" #include "AtumApplication.h" #include "INFImage.h" #include "GameDataLast.h" #include "dxutil.h" #include "INFImageEx.h" // 2011. 10. 10 by jskim UI시스템 변경 #define SCALE_X (float(g_pD3dApp->GetBackBufferDesc().Width)/1920) #define SCALE_Y (float(g_pD3dApp->GetBackBufferDesc().Height)/1000) #define START_X_1 0 #define START_Y_1 0 #define START_X_2 (512*SCALE) #define START_Y_2 0 #define START_X_3 0 #define START_Y_3 (384*SCALE) #define START_X_4 (512*SCALE) #define START_Y_4 (384*SCALE) #define STATE_FADE_IN 0 #define STATE_SHOW 1 #define STATE_FADE_OUT 2 #define CHANGE_TIME 1.0f #define DEFAULT_SIZE 512.0f ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CINFStageEffect::CINFStageEffect(int nImageIndex, float fPlayTime, BOOL bSkipEnable) { m_bRunning = FALSE; m_nIndex = nImageIndex; m_nState = STATE_FADE_IN; m_fPlayTime = fPlayTime; m_bSkipEnable = bSkipEnable; m_fCurrentTime = 0; // memset( m_pImage, 0x00, sizeof(DWORD)*STAGE_IMG_NUM ); // for(int i=0;i<STAGE_IMG_NUM;i++) // { // m_pDataHeader[i] = NULL; // } m_pImage = NULL; m_pDataHeader = NULL; m_bEndWork = FALSE; m_bRestored = FALSE; } CINFStageEffect::~CINFStageEffect() { // util::del(m_pImage[0]); // util::del(m_pImage[1]); // util::del(m_pImage[2]); // util::del(m_pImage[3]); // for(int i=0;i<STAGE_IMG_NUM;i++) // { // util::del(m_pDataHeader[i]); // } util::del(m_pImage); util::del(m_pDataHeader); } HRESULT CINFStageEffect::InitDeviceObjects() { // 2006-11-14 by ispark, 이미지 하나로 통합 // CGameData gameData; // gameData.SetFile( ".\\Res-Tex\\steff.tex", FALSE, NULL, 0, FALSE ); // char szName[32]; // for(int i=0;i<STAGE_IMG_NUM;i++) // { // wsprintf(szName, "%07d%d", m_nIndex, i); // m_pDataHeader[i] = gameData.FindFromFile(szName); // if(m_pDataHeader == NULL) // { // DBGOUT("Can't Find StageEffect File.(%d)", m_nIndex); // return E_FAIL; // } // m_pImage[i] = new CINFImage; // m_pImage[i]->InitDeviceObjects( m_pDataHeader[i]->m_pData, m_pDataHeader[i]->m_DataSize ); // m_pImage[i]->SetColor(0x00FFFFFF); // } // m_bRunning = TRUE; CGameData gameData; gameData.SetFile( ".\\Res-Tex\\steff.tex", FALSE, NULL, 0, FALSE ); char szName[32]; wsprintf(szName, "%08d", m_nIndex); m_pDataHeader = gameData.FindFromFile(szName); if(m_pDataHeader == NULL) { DBGOUT("StageEffect파일이 없습니다.(%d)", m_nIndex); return E_FAIL; } m_pImage = new CINFImage; // 2011. 10. 10 by jskim UI시스템 변경 m_pImage->InitDeviceObjects( m_pDataHeader->m_pData, m_pDataHeader->m_DataSize ); m_pImage->SetColor(0x00FFFFFF); m_bRunning = TRUE; return S_OK; } HRESULT CINFStageEffect::RestoreDeviceObjects() { if(!m_bRestored) { // for(int i=0;i<STAGE_IMG_NUM;i++) // { // m_pImage[i]->RestoreDeviceObjects(); // m_pImage[i]->SetScale(g_pD3dApp->GetBackBufferDesc().Width / DEFAULT_SIZE, // (float)g_pD3dApp->GetBackBufferDesc().Width / DEFAULT_SIZE); // } m_pImage->RestoreDeviceObjects(); // m_pImage->SetScale(g_pD3dApp->GetBackBufferDesc().Width / DEFAULT_SIZE, // (float)g_pD3dApp->GetBackBufferDesc().Width / DEFAULT_SIZE); m_bRestored = TRUE; // m_pImage[0]->SetScale(SCALE, SCALE); // m_pImage[0]->Move(START_X_1, START_Y_1); // m_pImage[1]->SetScale(SCALE, SCALE); // m_pImage[1]->Move(START_X_2, START_Y_2); // m_pImage[2]->SetScale(SCALE, SCALE); // m_pImage[2]->Move(START_X_3, START_Y_3); // m_pImage[3]->SetScale(SCALE, SCALE); // m_pImage[3]->Move(START_X_4, START_Y_4); //m_pImage->SetScale(SCALE_X, SCALE_Y); //m_pImage->Move(START_X_1, START_Y_1); // 2016-08-27 panoskj todo : make it work for any possible resolution (this way requires max resolution of 16:9 m_pImage->SetScale(SCALE_Y, SCALE_Y); m_pImage->Move((g_pD3dApp->GetBackBufferDesc().Width - (1920 * SCALE_Y)) / 2, START_Y_1); } return S_OK; } HRESULT CINFStageEffect::InvalidateDeviceObjects() { if(m_bRestored) { // for(int i=0;i<STAGE_IMG_NUM;i++) // { // if(m_pImage[i]->GetTexture() != NULL) // { // m_pImage[i]->InvalidateDeviceObjects(); // } // } if(m_pImage->GetTexture() != NULL) { m_pImage->InvalidateDeviceObjects(); } m_bRestored = FALSE; } return S_OK; } HRESULT CINFStageEffect::DeleteDeviceObjects() { // for(int i=0;i<STAGE_IMG_NUM;i++) // { // m_pImage[i]->DeleteDeviceObjects(); // util::del(m_pImage[i]); // util::del(m_pDataHeader[i]); // } if (m_pImage) // 2015-05-02 Future, may not be initialized when resource files are currupt m_pImage->DeleteDeviceObjects(); util::del(m_pImage); util::del(m_pDataHeader); m_bRunning = FALSE; return S_OK; } void CINFStageEffect::Tick() { if(g_pD3dApp->GetElapsedTime() > 0.1) { return; } switch(m_nState) { case STATE_FADE_IN: { m_fCurrentTime += g_pD3dApp->GetElapsedTime(); if(m_fCurrentTime > CHANGE_TIME) { m_fCurrentTime = CHANGE_TIME; } D3DCOLOR dwColor = (D3DCOLOR)((int)(0xFF*m_fCurrentTime) << 24 | 0x00FFFFFF); // for(int i=0;i<STAGE_IMG_NUM;i++) // { // m_pImage[i]->SetColor(dwColor); // } m_pImage->SetColor(dwColor); if(m_fCurrentTime >= CHANGE_TIME) { m_nState = STATE_SHOW; } } break; case STATE_FADE_OUT: { m_fCurrentTime -= g_pD3dApp->GetElapsedTime(); if(m_fCurrentTime < 0) { m_fCurrentTime = 0; } D3DCOLOR dwColor = (D3DCOLOR)((int)(0xFF*m_fCurrentTime) << 24 | 0x00FFFFFF); // for(int i=0;i<STAGE_IMG_NUM;i++) // { // m_pImage[i]->SetColor(dwColor); // } m_pImage->SetColor(dwColor); if(m_fCurrentTime <= 0) { m_bRunning = FALSE; } } break; case STATE_SHOW: { m_fPlayTime -= g_pD3dApp->GetElapsedTime(); if(m_fPlayTime < 0) { m_nState = STATE_FADE_OUT; } } break; } } void CINFStageEffect::Render() { g_pD3dDev->SetRenderState( D3DRS_FOGENABLE, FALSE ); g_pD3dDev->SetRenderState( D3DRS_LIGHTING, FALSE ); g_pD3dDev->SetRenderState( D3DRS_ZENABLE, FALSE ); // m_pImage[0]->Render(); // m_pImage[1]->Render(); // m_pImage[2]->Render(); // m_pImage[3]->Render(); m_pImage->Render(); } int CINFStageEffect::WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam) { if(m_bSkipEnable) { switch(uMsg) { case WM_KEYDOWN: case WM_LBUTTONDOWN: { m_nState = STATE_FADE_OUT; } break; } } return INF_MSGPROC_NORMAL; }
74ec5c6a1760c9e81bb6774f8ffb5d31d19c8306
45517cdb50f4879dbdf6ab7b8642a6d75e6bb4f4
/src/shwild/pattern.hpp
e53f094a44228e8a838de4cbca310ed8606ec2ab
[ "BSD-2-Clause" ]
permissive
JerYme/fastformat
582b1cf09989f24e0f4d2923c0d59078eafd162c
4eb72021b719dbff87f71a429f874b45caa3aff1
refs/heads/master
2021-01-10T21:03:46.699748
2014-03-04T14:05:25
2014-03-04T14:05:25
17,403,641
1
0
null
null
null
null
UTF-8
C++
false
false
4,496
hpp
pattern.hpp
/* ///////////////////////////////////////////////////////////////////////// * File: src/pattern.hpp * * Purpose: C string object for shwild implementation * * Created: 17th June 2005 * Updated: 20th December 2011 * * Home: http://shwild.org/ * * Copyright (c) 2005-2011, Sean Kelly and Matthew Wilson * 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 names of Matthew Wilson and Sean Kelly nor the names of * any 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. * * ////////////////////////////////////////////////////////////////////// */ #ifndef SHWILD_INCL_HPP_PATTERN #define SHWILD_INCL_HPP_PATTERN /* ///////////////////////////////////////////////////////////////////////// * Includes */ /* shwild Header Files */ #include <shwild/shwild.h> /* STLSoft Header Files */ #include "shwild_stlsoft.h" #if defined(STLSOFT_COMPILER_IS_MSVC) && \ _MSC_VER >= 1400 /* For some weird reason, when used with VC++ 8, pattern.cpp ends up with a * definition of std::allocator<>::allocate() and * std::allocator<>::deallocate(), which breaks the linker with LNK2005 * (multiple definitions). * * So we disable the use of std::allocator, and tell it to use * stlsoft::malloc_allocator instead. */ # define STLSOFT_ALLOCATOR_SELECTOR_USE_STLSOFT_MALLOC_ALLOCATOR # define STLSOFT_ALLOCATOR_SELECTOR_NO_USE_STD_ALLOCATOR #endif /* compiler */ #include <stlsoft/memory/auto_buffer.hpp> /* Standard C Header Files */ #include <limits.h> /* ///////////////////////////////////////////////////////////////////////// * Typedefs */ /** \brief Types of pattern tokens */ enum token_type { TOK_INVALID = CHAR_MIN - 1 , TOK_END = 0 , TOK_WILD_1 = CHAR_MAX + 1 , TOK_WILD_N = CHAR_MAX + 2 , TOK_RANGE_BEG = CHAR_MAX + 3 , TOK_RANGE_END = CHAR_MAX + 4 , TOK_ENOMEM = CHAR_MAX + 5 }; /** \brief Types of pattern nodes */ enum node_type { NODE_NOTHING , NODE_WILD_1 , NODE_WILD_N , NODE_RANGE , NODE_NOT_RANGE , NODE_LITERAL , NODE_END }; /** \brief Node; INTERNAL CLASS. */ struct node_t { node_type type; /*!< The type of the node */ shwild_slice_t data; /*!< Indicates the contents */ }; /** \brief Buffer used when necessary. */ typedef stlsoft::auto_buffer< char , 1024 // , ss_typename_type_def_k allocator_selector<T>::allocator_type > node_buffer_t; /* ///////////////////////////////////////////////////////////////////////// * API */ /** \brief Initialises a node. */ void node_init( node_t* node ); /** \brief Uninitialises a node, releasing any associated resources. */ void node_reset( node_t* node ); /** \brief Parses the next node */ int get_node( node_t* node, node_buffer_t &buffer, char const* buf, size_t* len, unsigned flags ); /* ////////////////////////////////////////////////////////////////////// */ #endif /* !SHWILD_INCL_HPP_PATTERN */ /* ///////////////////////////// end of file //////////////////////////// */
e7b4a33a80ff63a66cb579a67f08fc0264ba3cdb
73a9cb07dd2ebb904a5558c7b6c6551c7e615a6e
/MarchDemoMex.cpp
f64999ed1035b570478451a9a6a0bce07304b614
[]
no_license
keith2000/VisualHullFromMirrors
d8163ea14864d7fc2b765f774a4a0b6fb517d39f
13c52636bfd560d8baa3a41bf10bfe86a307387b
refs/heads/master
2022-06-13T18:15:26.018830
2022-05-11T14:13:09
2022-05-11T14:13:09
91,429,628
2
4
null
null
null
null
UTF-8
C++
false
false
3,910
cpp
MarchDemoMex.cpp
//-------------------------------------------------------------- // file: MarchDemoMex.cpp - Matlab Mex function application //-------------------------------------------------------------- #include <iostream> #include <math.h> extern "C" { #include "mex.h" } #include "polygonizer.h" #include "VisualHullFunction.h" #include "MatlabGreyImage.h" void MarchDemoMex( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] ) { if (nlhs!=2) mexErrMsgTxt("Two output arguments required: p, k"); if (nrhs!= 7) mexErrMsgTxt("Seven output arguments required: image cell array, internals cell array, pose cell array, cell width, num cells across, starting point, doTet"); if (!mxIsCell(prhs[0])) mexErrMsgTxt("image cell array must be in a cell array"); if (!mxIsCell(prhs[1])) mexErrMsgTxt("internals cell array must be in a cell array"); if (!mxIsCell(prhs[2])) mexErrMsgTxt("pose cell array must be in a cell array"); const int numCams = mxGetNumberOfElements( prhs[0] ); //number of camera centres = number of cameras if ( numCams < 2 ) mexErrMsgTxt("Need at least 2 views"); if ( numCams != mxGetNumberOfElements( prhs[1] ) ) mexErrMsgTxt("no. images != no. internals"); if ( numCams != mxGetNumberOfElements( prhs[1] ) ) mexErrMsgTxt("no. images != no. poses"); if ( mxGetNumberOfElements( prhs[3] ) != 1 ) mexErrMsgTxt("cell width must be scalar"); if ( mxGetNumberOfElements( prhs[4] ) != 1 ) mexErrMsgTxt("no. cells across must be scalar"); if ( mxGetNumberOfElements( prhs[5] ) != 3 ) mexErrMsgTxt("start point must have 3 elements: x, y, z"); if ( mxGetNumberOfElements( prhs[6] ) != 1 ) mexErrMsgTxt("doTet must be scalar: 1 or 0"); VisualHullFunction vh( prhs[0], prhs[1], prhs[2] ); const double cellSize = (mxGetPr(prhs[3]))[0]; const int howFar = int((mxGetPr(prhs[4]))[0]); const double xStart = (mxGetPr(prhs[5]))[0]; const double yStart = (mxGetPr(prhs[5]))[1]; const double zStart = (mxGetPr(prhs[5]))[2]; //mexPrintf("cellSize: %g\n", cellSize); //mexPrintf("howFar: %d\n", howFar); //mexPrintf("vh.eval( xStart, yStart, zStart ): %g\n", vh.eval( xStart, yStart, zStart ) ); //mexErrMsgTxt("stop"); Polygonizer pol( &vh, cellSize, howFar ); bool doTet = (mxGetPr(prhs[6])) > 0; if ( doTet ) pol.march(TET, xStart, yStart, zStart ); else pol.march(NOTET, xStart, yStart, zStart ); /*/ MatlabGreyImage im( prhs[2] ); double uu = 7; double vv = 89; mexPrintf("im.GetIntensity( %g,%g ): %g\n", uu, vv, im.GetIntensity( uu, vv ) ); mexPrintf("height: %d\n", im.GetHeight() ); mexPrintf("width: %d\n", im.GetWidth() ); /*/ plhs[0]= mxCreateDoubleMatrix( 3, pol.no_vertices(), mxREAL); for( int vertLoop = 0; vertLoop < pol.no_vertices(); vertLoop++ ) { (mxGetPr(plhs[0]))[vertLoop*3 + 0] = (pol.get_vertex( vertLoop )).x; (mxGetPr(plhs[0]))[vertLoop*3 + 1] = (pol.get_vertex( vertLoop )).y; (mxGetPr(plhs[0]))[vertLoop*3 + 2] = (pol.get_vertex( vertLoop )).z; } plhs[1]= mxCreateDoubleMatrix( 3, pol.no_triangles(), mxREAL); for( int triLoop = 0; triLoop < pol.no_triangles(); triLoop++ ) { (mxGetPr(plhs[1]))[triLoop*3 + 0] = (pol.get_triangle( triLoop )).v0 + 1;// +1 since matlab counts array indices from 1 not 0 like C++ does (mxGetPr(plhs[1]))[triLoop*3 + 1] = (pol.get_triangle( triLoop )).v1 + 1; (mxGetPr(plhs[1]))[triLoop*3 + 2] = (pol.get_triangle( triLoop )).v2 + 1; } } // end MarchDemoMex() extern "C" { //-------------------------------------------------------------- // mexFunction - Entry point from Matlab. From this C function, // simply call the C++ application function, above. //-------------------------------------------------------------- void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] ) { MarchDemoMex(nlhs, plhs, nrhs, prhs); } }
e430845bcc274a15e5adcd19c67fd4878212d3a2
809c826cdd7f487040d860e7e02bb7b0e1abb8d3
/wowViewerLib/src/engine/androidLogSupport.h
68f54ac2fa028e18734a794a0b45cc8ddec3e8fa
[]
no_license
Deamon87/WebWowViewerCpp
5d6fa3313c70695b966c1ebd5be7bf3613001f01
1ef6762657660a34e2964c5e7b94208e2828de3d
refs/heads/master
2023-05-25T07:56:33.281130
2023-05-21T01:07:31
2023-05-21T01:07:31
94,208,407
48
18
null
2023-09-08T17:05:49
2017-06-13T12:03:36
C++
UTF-8
C++
false
false
1,606
h
androidLogSupport.h
// // Created by Deamon on 3/25/2018. // #ifndef WEBWOWVIEWERCPP_LOG_H #define WEBWOWVIEWERCPP_LOG_H #include <streambuf> #ifdef __ANDROID_API__ #include <android/log.h> #include <android/api-level.h> #include <android/asset_manager.h> #include <android/asset_manager_jni.h> extern AAssetManager *g_assetMgr; class androidbuf : public std::streambuf { public: enum { bufsize = 1024 }; // ... or some other suitable buffer size androidbuf() { this->setp(buffer, buffer + bufsize - 1); } private: void printBufferContent() { if (this->pbase() != this->pptr()) { char writebuf[bufsize+1]; memcpy(writebuf, this->pbase(), this->pptr() - this->pbase()); writebuf[this->pptr() - this->pbase()] = '\0'; std::string temp(writebuf, writebuf+(this->pptr() - this->pbase())); temp = "WoWRenderLog: " + temp; __android_log_write(ANDROID_LOG_INFO, "std", temp.c_str()) > 0; this->setp(buffer, buffer + bufsize - 1); } }; int overflow(int c) { printBufferContent(); //print s if (c == traits_type::eof()) { *this->pptr() = traits_type::to_char_type(c); this->sbumpc(); } return this->sync()? traits_type::eof(): traits_type::not_eof(c); } int sync() { int rc = 0; if (this->pbase() != this->pptr()) { printBufferContent(); this->setp(buffer, buffer + bufsize - 1); } return rc; } char buffer[bufsize]; }; #endif #endif //WEBWOWVIEWERCPP_LOG_H