blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
sequencelengths
1
1
author_id
stringlengths
0
158
e263f6bfc54205b55a3a8d8f2545c76163fbc85c
16a04a189c2f14d6d28a78d774a8c0ad8fb3bf28
/LibCppSim - Cooperative Caching HPCS/applicationLayer/Replicator.cc
d38c996abeb39e324688fd6e8a13bd3a6646a8d9
[]
no_license
F951/Models-HPCS
7895b9d708df04f7b2fe70c9e14c46ac32dd3d67
64b24311499b8ffd7e86c3698389494f0f5a8787
refs/heads/main
2023-03-07T16:02:02.620133
2021-02-24T15:38:44
2021-02-24T15:38:44
341,332,053
0
0
null
null
null
null
UTF-8
C++
false
false
8,917
cc
#include "Replicator.h" void Replicator::inner_body(void) { while(1) { //==================================================================== //==================================================================== passivate(); //DESACTIVAR ESTE REPLICADOR //==================================================================== //==================================================================== if(ends){ passivate(); } //cout<<"Replicator" <<endl; fflush(stdout); //RESET (*tlc)-> resetQueue(); (*tlc)-> inlinks.clear(); (*tlc)-> RCACHE->reset(); hold(DELTA_T); //cout << "Replicator Check..."<< endl; //fflush(stdout); // overload = getQueueSize(tlc); overload = (*tlc)->overloaded; //Checks nodes load if( isOverloaded(tlc) ) { // Replication // Sort Entries // Select the most frequent // Replicate based on strategy //cout << "Peer Overloaded!!" << endl; // Copy LocalCACHE and RCACHE entries to Vector entries retrieveEntries(tlc); // Sort by frequency sort(entries.begin(), entries.end(), compare); //Select strategy and replicate replicate(Rep_Strategy); } } } double Replicator::getQueueSize(handle<TlcProtocol> *t) { double size; // if(t == NULL) //cout<<"*T ES NULL"<< endl; size = ( ((*t)->avg_queue)/DELTA_T); //cout << "REP - QUEUE SIZE: " << size << "-" << (*t)->avg_queue << " - " << DELTA_T << endl; //fflush(stdout); return size; } bool Replicator::isOverloaded(handle<TlcProtocol> *t) { //Si esta sobre cargado //--> cola mayor a un tamano t if (overload > OVERLOAD_THRESHOLD) return true; return false; } int Replicator::getAvailableCapacity(handle<TlcProtocol> *t) { if(getQueueSize(t) > OVERLOAD_THRESHOLD) return 0; return int (OVERLOAD_THRESHOLD - getQueueSize(t) ); } void Replicator::retrieveEntries(handle<TlcProtocol> *t) { // Copy the entries from LocalCACHE and RCACHE to Vector entries // to be sorted //Inserting entries from RCACHE entries = (*t)->RCACHE->getEntries(); //entries.insert(entries.end(), 0, (*t)->RCACHE->cache->getSize() ); //Inserting entries from LocalCACHE //entries.insert(entries.end(), t->localCache->cache.begin(), t->localCache->cache.end()); } void Replicator::replicate(int strategy) { //cout << "REPLICANDO..."<< endl; switch (strategy) { //LEAFSET case 0: replicateLeafset(); break; //BUBBLE case 1: replicateBubble(); break; //TLC case 2: replicateTLC(); break; } } void Replicator::replicateLeafset() { //Verificar linea vector<NodeEntry*> ls = (*(*tlc)->pastry)->leafset->listAllNodes(); Entry *e = NULL; int j = 0; //Sort vector by Freq sort(entries.begin(), entries.end(), compare); //cout << "REP - SORTING"<< endl; vector< Entry*>::iterator it; it = entries.begin(); //cout <<"------------------------------------------------------"<< endl; //while(it != entries.end()) //{ // cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl; // ++it; //} //Search for the first not replicated entry if(entries.size()>0) { do { e = entries[j]; j++; }while(entries.size() > (unsigned)j && e->isReplicated); if(e->isReplicated){ //cout << "NO SE PUEDE REPLICAR MAS..."<< BN_bn2hex((*tlc)->pid) <<endl; return; } }else { //cout << "ENTRIES VACIAS" << BN_bn2hex((*tlc)->pid) << endl; return; } //cout << "REP- Entry " << BN_bn2hex(e->hashValue ) <<" - " << e->frequency<< endl; for(int i = 0 ; (unsigned) i < ls.size(); i++) { if(!(*tlc)->isReplicated(ls[i]->getNodeID(), e->hashValue)) { //Send Replication message to leafset node //Entry e over nodes // cout << "REP - FOR" << endl; e->isReplicated = true; //cout << "REP- Tracking Replica"<< endl; //Guardamos quienes son las replicas? (*tlc)->trackReplica(ls[i]->getNodeID(), e->hashValue); //cout << "REP- Sending Replica"<<endl; //Send Replication Message (*tlc)->sendReplica( e->clone() , ls[i]); } } } void Replicator::replicateBubble() { // Sort vector entries by freq sort(entries.begin(), entries.end(), compare); vector< Entry*>::iterator it; it = entries.begin(); //cout <<"----------------------ENTRIES------------------------------"<< endl; // while(it != entries.end()) // { // cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl; // ++it; // } //Most frequent query //Search for the first not replicated entry Entry *e = NULL; int j = 0; if(entries.size()>0) { do { e = entries[j]; j++; }while(entries.size() > (unsigned) j && e->isReplicated); if(e->isReplicated){ //cout << "NO SE PUEDE REPLICAR MAS..."<<endl; return; } }else { //cout <<"ENTRIES VACIAS!!"<< endl; return; } // if(e==NULL) // cout << "ENTRY NULL!!" <<endl; //Which inlinks forwards the entry e // list ??? inlinks vector<Inlink*> list; map<BIGNUM*, Inlink*>::iterator it2; it2 = (*tlc)->inlinks.begin(); //cout << "INLINK - Size: " << (*tlc)->inlinks.size() << endl ; // cout << "Entry: " << BN_bn2hex( e->hashValue) << endl; while(it2 != (*tlc)->inlinks.end()) { // cout<< "Inlink : "<< BN_bn2hex(((it2->second)->getInlinkID())->getNodeID() )<< endl; if(( it2-> second)->isKeyContained(e->hashValue) ) { //terminar //push inlink to list // cout << "Entry Contained!!" << endl; list.push_back(it2->second ); } ++it2; } sort( list.begin(), list.end(), sorter(e->hashValue)); //DEBUG vector< Inlink*>::iterator it3; it3 = list.begin(); // cout <<"----------------------INLINKS------------------------------"<< endl; // while(it3 != list.end()) // { // cout << BN_bn2hex( ((*it3)->getInlinkID())->getNodeID() )<< " - " <<(*it3)->getFrequency(e->hashValue) << endl; // ++it3; // } unsigned int index = 0 ; // cout << "REP - list Size " << list.size() << endl; while(index < list.size()) { if(!(*tlc)->isReplicated(list[index]->getInlinkID()->getNodeID(), e->hashValue) && list[index]->getFrequency(e->hashValue) > 0) { e->isReplicated = true; //Guardamos quienes son las replicas (*tlc)->trackReplica((list[index]->getInlinkID())->getNodeID(), e->hashValue); // Replica Send (*tlc)->sendReplica( e->clone() , list[index]->getInlinkID()); } index++; } } void Replicator::set_tlc(handle<TlcProtocol> *t) { tlc = t; } void Replicator::replicateTLC() { // Sort vector entries by freq sort(entries.begin(), entries.end(), compare); //Most frequent query //Search for the first not replicated entry Entry *e = NULL; //int j = 0; if(entries.size()>0) { e=entries[0]; // do // { // e = entries[j]; // j++; // }while(entries.size() > (unsigned)j && e->isReplicated); // if(e->isReplicated){ //cout << "NO SE PUEDE REPLICAR MAS..."<<endl; // return; // } }else { //cout << "ENTRIES VACIAS" <<endl; return; } //Which inlinks forwards the entry e vector<Inlink*> list; map<BIGNUM*, Inlink*>::iterator it; it = (*tlc)->inlinks.begin(); while(it != (*tlc)->inlinks.end() ) { if(( it-> second)->isKeyContained(e->hashValue) ) { //terminar //push inlink to list list.push_back(it->second ); } ++it; } sort( list.begin(), list.end(), sorter(e->hashValue)); //int overload = getQueueSize(tlc); //Overload limited to most frequent if(overload > e->frequency) overload = e->frequency; int index = 0; //Cubrir la sobrecarga con la capacidad de los peers while(overload > 0 && (unsigned)index < list.size() ) { //Si no esta replicado y la freq //if(!(*tlc)->isReplicated(list[index]->getInlinkID()->getNodeID(), e->hashValue) && list[index]->getFrequency(e->hashValue) > 0) if(list[index]->getFrequency(e->hashValue) > 0) { // e->isReplicated = true; //Guardamos quienes son las replicas //(*tlc)->trackReplica(list[index]->getInlinkID()->getNodeID(), e->hashValue); (*tlc)->sendReplica( e->clone() , list[index]->getInlinkID()); overload = overload - list[index] ->getFrequency(e->hashValue); } index++; } }
ff47a265cd83fe75d66af0ac743affb662b89c21
eee4e1d7e3bd56bd0c24da12f727017d509f919d
/Case/case3/2300/U
1c6aa10bd6c6d30021e42fdd301f7516cd20dc06
[]
no_license
mamitsu2/aircond5_play5
35ea72345d23c5217564bf191921fbbe412b90f2
f1974714161f5f6dad9ae6d9a77d74b6a19d5579
refs/heads/master
2021-10-30T08:59:18.692891
2019-04-26T01:48:44
2019-04-26T01:48:44
183,529,942
0
0
null
null
null
null
UTF-8
C++
false
false
12,861
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "2300"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 458 ( (0.106756 0.0669042 0) (-0.137288 -0.000214413 0) (-0.113302 0.00409256 0) (-0.125193 0.00571422 0) (-0.137566 0.00517331 0) (-0.148967 0.00364833 0) (-0.158215 0.00148294 0) (-0.164467 -0.00124545 0) (-0.166987 -0.00456094 0) (-0.164979 -0.00856012 0) (-0.156992 -0.0135797 0) (-0.140752 -0.0200321 0) (-0.115259 -0.0293457 0) (-0.0895978 -0.0444193 0) (-0.0947662 -0.0651769 0) (0.0252945 0.0166318 0) (-0.0447674 -0.00693943 0) (-0.0328002 -0.00752771 0) (-0.0317492 -0.00405304 0) (-0.0320773 -0.00421242 0) (-0.0292038 -0.00880079 0) (-0.0207485 -0.0124713 0) (-0.00927857 -0.0158885 0) (0.000982875 -0.0128114 0) (0.0114554 -0.00906067 0) (0.0171458 -0.00701086 0) (0.0212752 -0.00557991 0) (0.0248434 -0.00412506 0) (0.028093 -0.00252396 0) (0.031135 -0.00305448 0) (0.0349835 -0.00752916 0) (0.047071 -0.00298657 0) (-0.0158332 0.020182 0) (0.312864 0.147363 0) (-0.164367 0.0146855 0) (-0.105989 0.0171285 0) (-0.124245 0.019557 0) (-0.138067 0.0191081 0) (-0.15034 0.0168563 0) (-0.160393 0.0132955 0) (-0.167669 0.00855949 0) (-0.171558 0.00263415 0) (-0.171359 -0.00455987 0) (-0.166518 -0.0128718 0) (-0.156321 -0.0223177 0) (-0.141565 -0.033876 0) (-0.126867 -0.0489188 0) (-0.114343 -0.0608786 0) (-0.0831631 -0.0426535 0) (-0.0313727 -0.041764 0) (-0.0469382 0.0729043 0) (0.130553 0.0213504 0) (0.0490228 0.0131214 0) (0.0206586 0.00605382 0) (0.0123925 0.00460738 0) (0.00625313 0.00908589 0) (-0.00258395 0.00171823 0) (-0.0070377 -0.0104582 0) (-0.00485827 -0.01711 0) (-0.00974584 -0.0136497 0) (-0.00171683 -0.00709041 0) (-0.0006219 -0.00496797 0) (-0.00217106 -0.00391152 0) (-0.00489964 -0.00163401 0) (-0.00744131 -0.00193447 0) (-0.00517398 -0.0106425 0) (-0.000571834 -0.0199057 0) (0.0275451 -0.00633984 0) (-0.09528 0.0450246 0) (0.483098 0.225909 0) (-0.21131 0.0419628 0) (-0.0889139 0.0353155 0) (-0.115261 0.0336639 0) (-0.129415 0.0312389 0) (-0.141704 0.0267569 0) (-0.151876 0.0204018 0) (-0.159607 0.012292 0) (-0.164437 0.00251214 0) (-0.165761 -0.00871762 0) (-0.163347 -0.0211685 0) (-0.157682 -0.0346472 0) (-0.150274 -0.049253 0) (-0.143454 -0.0644001 0) (-0.135714 -0.0755824 0) (-0.121813 -0.0775307 0) (-0.114779 -0.0837673 0) (-0.148514 -0.0804176 0) (0.0711264 0.00967292 0) (-0.0379458 0.0106189 0) (-0.0291912 0.010282 0) (-0.0206109 0.00466394 0) (-0.0144243 -0.000646146 0) (0.0185968 0.00472587 0) (0.0194883 -0.00254658 0) (0.000346011 -0.014071 0) (-0.0232662 -0.0120817 0) (-0.0300891 -0.007655 0) (-0.0356315 -0.00542033 0) (-0.0399102 -0.0039051 0) (-0.0426895 -0.00307992 0) (-0.0407016 -0.00401259 0) (-0.0260283 -0.00774087 0) (-0.0373471 -0.000113345 0) (-0.0706419 0.0144946 0) (-0.164234 0.0292819 0) (0.619922 0.291435 0) (-0.257967 0.074801 0) (-0.0664442 0.0550918 0) (-0.10151 0.0485208 0) (-0.114992 0.0441636 0) (-0.12602 0.0379308 0) (-0.135191 0.0296415 0) (-0.142287 0.019253 0) (-0.146943 0.00677404 0) (-0.148589 -0.00750404 0) (-0.147121 -0.0227614 0) (-0.143909 -0.0380893 0) (-0.140674 -0.0528213 0) (-0.138997 -0.0657108 0) (-0.138386 -0.0742331 0) (-0.138539 -0.0774832 0) (-0.14611 -0.0759985 0) (-0.164168 -0.053646 0) (-0.157035 0.0103806 0) (-0.113496 0.00794646 0) (-0.105386 0.00634424 0) (-0.0911966 -0.000177728 0) (-0.0853608 -0.00718551 0) (-0.0832685 -0.0127264 0) (-0.0789777 -0.0105663 0) (-0.0674292 -0.0106138 0) (-0.0559839 -0.0113071 0) (-0.044055 -0.0119574 0) (-0.0317147 -0.0125767 0) (-0.0191474 -0.0132181 0) (-0.00643153 -0.0138823 0) (0.00862369 -0.0138864 0) (0.0236778 -0.012515 0) (0.028102 -0.0122709 0) (0.0370161 -0.00222012 0) (0.0438193 0.00499109 0) (-0.0449209 0.0122259 0) (0.728005 0.345662 0) (-0.297739 0.109836 0) (-0.0432642 0.0728818 0) (-0.0845659 0.0617803 0) (-0.0969208 0.0552047 0) (-0.105443 0.0470613 0) (-0.112242 0.0368833 0) (-0.117254 0.024411 0) (-0.120195 0.00951735 0) (-0.120301 -0.00739755 0) (-0.117882 -0.0247039 0) (-0.114908 -0.0405733 0) (-0.113082 -0.0541899 0) (-0.113531 -0.0648939 0) (-0.116199 -0.0719193 0) (-0.121179 -0.0755243 0) (-0.129401 -0.0752619 0) (-0.137033 -0.0647982 0) (-0.13628 -0.0382512 0) (-0.125488 -0.018356 0) (-0.111785 -0.00954503 0) (-0.0993851 -0.00933577 0) (-0.0910247 -0.0118428 0) (-0.0850785 -0.0143783 0) (-0.0789868 -0.0146394 0) (-0.0716343 -0.0156192 0) (-0.0639317 -0.0165466 0) (-0.056013 -0.0173606 0) (-0.0479604 -0.0180646 0) (-0.0398421 -0.0187816 0) (-0.0315426 -0.019667 0) (-0.0223924 -0.0205544 0) (-0.0116632 -0.0214158 0) (0.00172298 -0.0234691 0) (0.0221008 -0.020165 0) (0.0562017 -0.0107651 0) (0.0833814 0.00716906 0) (0.13653 0.0316768 0) (0.156556 0.0765722 0) (0.00349792 0.147833 0) (0.79831 0.394423 0) (-0.33038 0.142187 0) (-0.0262181 0.0832457 0) (-0.0634555 0.0731226 0) (-0.0751163 0.0639545 0) (-0.0805891 0.053289 0) (-0.0836737 0.0411934 0) (-0.0850394 0.0269656 0) (-0.0845911 0.0100124 0) (-0.0807957 -0.00925727 0) (-0.0761231 -0.0278662 0) (-0.0724785 -0.0429785 0) (-0.0712037 -0.0542964 0) (-0.0729067 -0.0621006 0) (-0.0774125 -0.0665508 0) (-0.0843965 -0.0677278 0) (-0.0930833 -0.0645524 0) (-0.100147 -0.0546088 0) (-0.101711 -0.039656 0) (-0.0975412 -0.0269439 0) (-0.0904119 -0.019755 0) (-0.0834661 -0.0176585 0) (-0.078291 -0.0181535 0) (-0.0745663 -0.0193607 0) (-0.0713361 -0.0201642 0) (-0.0681204 -0.0211264 0) (-0.0650822 -0.0220294 0) (-0.0623781 -0.0227205 0) (-0.0601773 -0.0232168 0) (-0.0585777 -0.023749 0) (-0.0574449 -0.0247235 0) (-0.0562766 -0.0265432 0) (-0.0542167 -0.0296982 0) (-0.049853 -0.0346523 0) (-0.0397221 -0.0404132 0) (-0.0204409 -0.0478223 0) (0.00847637 -0.0604334 0) (0.0396957 -0.0596283 0) (0.10303 0.0145659 0) (-0.0541939 0.151801 0) (0.817206 0.439482 0) (-0.345881 0.146113 0) (-0.00979486 0.0628682 0) (-0.0230183 0.0826412 0) (-0.0403618 0.0737709 0) (-0.0460791 0.0557653 0) (-0.0451631 0.0403647 0) (-0.0418684 0.0244643 0) (-0.0366727 0.00526008 0) (-0.0261204 -0.0162381 0) (-0.0200617 -0.0338432 0) (-0.0170611 -0.0461346 0) (-0.0173718 -0.0539513 0) (-0.0209491 -0.0584012 0) (-0.0273918 -0.0602672 0) (-0.0360678 -0.05984 0) (-0.0457552 -0.0563579 0) (-0.0540942 -0.0487411 0) (-0.0586338 -0.0387321 0) (-0.0592937 -0.0298007 0) (-0.0577285 -0.02395 0) (-0.055785 -0.0212439 0) (-0.0545577 -0.0205637 0) (-0.0542152 -0.0208028 0) (-0.0545345 -0.0212499 0) (-0.0554532 -0.0217302 0) (-0.0572238 -0.0219408 0) (-0.060231 -0.0217011 0) (-0.0649729 -0.0211118 0) (-0.0718633 -0.0206321 0) (-0.0809556 -0.0210007 0) (-0.092014 -0.022941 0) (-0.104199 -0.0272243 0) (-0.116321 -0.0349343 0) (-0.126479 -0.0473042 0) (-0.132428 -0.065684 0) (-0.132003 -0.0870841 0) (-0.114836 -0.0926587 0) (-0.0337585 -0.0277016 0) (-0.144814 0.240615 0) (0.918713 0.464152 0) (-0.147371 0.127768 0) (0.0634143 0.00553068 0) (0.092065 0.0483898 0) (0.0537756 0.058699 0) (0.0303169 0.0377306 0) (0.0279268 0.0193558 0) (0.0318102 0.00401873 0) (0.041999 -0.0136657 0) (0.0507207 -0.0285655 0) (0.0527764 -0.039663 0) (0.0508837 -0.0470038 0) (0.0461538 -0.0510784 0) (0.0391284 -0.0525441 0) (0.0301912 -0.0520375 0) (0.0197053 -0.050043 0) (0.00842978 -0.0465111 0) (-0.00227281 -0.0408759 0) (-0.00998976 -0.0340816 0) (-0.0147538 -0.0278772 0) (-0.0176298 -0.0233456 0) (-0.0197684 -0.0207138 0) (-0.0219822 -0.0195118 0) (-0.0245974 -0.0190886 0) (-0.0276907 -0.0188685 0) (-0.0313899 -0.0183932 0) (-0.0360623 -0.0171007 0) (-0.0423108 -0.0145381 0) (-0.0511857 -0.0106652 0) (-0.063853 -0.00603936 0) (-0.0809346 -0.00167816 0) (-0.104707 0.000419992 0) (-0.135598 -0.0018651 0) (-0.172493 -0.0096816 0) (-0.212736 -0.0221568 0) (-0.251197 -0.0360875 0) (-0.286964 -0.0475361 0) (-0.317389 -0.0447454 0) (-0.383445 -0.0108685 0) (-0.597181 0.0741943 0) (1.05654 0.431038 0) (0.506497 0.279894 0) (0.47209 0.21321 0) (0.423073 0.190324 0) (0.322658 0.15514 0) (0.252058 0.108364 0) (0.215579 0.0669339 0) (0.194795 0.0345209 0) (0.178696 0.00845538 0) (0.160355 -0.0124994 0) (0.143798 -0.0271695 0) (0.128875 -0.0361757 0) (0.114964 -0.0407556 0) (0.101645 -0.042098 0) (0.0886963 -0.0411493 0) (0.0759821 -0.0386441 0) (0.0635493 -0.0351247 0) (0.0518504 -0.0310029 0) (0.0417807 -0.0266661 0) (0.0336978 -0.022673 0) (0.0272783 -0.0195435 0) (0.0218842 -0.0174872 0) (0.0169403 -0.0163522 0) (0.012132 -0.0157853 0) (0.00736895 -0.0153505 0) (0.00267923 -0.0145488 0) (-0.00194333 -0.0126838 0) (-0.0062091 -0.00913818 0) (-0.010195 -0.00354859 0) (-0.0134434 0.00401666 0) (-0.017891 0.0127227 0) (-0.0237545 0.0213096 0) (-0.031856 0.0273167 0) (-0.0430083 0.0277283 0) (-0.0597186 0.0188227 0) (-0.0907641 -0.00322772 0) (-0.119858 -0.0380201 0) (-0.127166 -0.0901212 0) (-0.16763 -0.169952 0) (-0.550335 -0.262672 0) (-0.703861 0.159664 0) (0.179678 0.193017 0) (0.199561 0.155717 0) (0.198447 0.113085 0) (0.207988 0.0746031 0) (0.212962 0.0429667 0) (0.210846 0.018738 0) (0.203458 0.00101768 0) (0.192205 -0.0116512 0) (0.178902 -0.0200527 0) (0.164591 -0.0249394 0) (0.15009 -0.0270255 0) (0.136011 -0.0269783 0) (0.122726 -0.025416 0) (0.110415 -0.0229235 0) (0.0991562 -0.0200665 0) (0.0890306 -0.0173373 0) (0.0800615 -0.0150795 0) (0.072134 -0.0134565 0) (0.0650143 -0.0124476 0) (0.0584644 -0.0118871 0) (0.0523508 -0.0115465 0) (0.046673 -0.0111772 0) (0.0415505 -0.0104942 0) (0.0372118 -0.00913469 0) (0.0340249 -0.00666127 0) (0.0323878 -0.00272188 0) (0.0326217 0.00314998 0) (0.0346961 0.0106427 0) (0.0384712 0.0184363 0) (0.0431436 0.0246466 0) (0.0478074 0.0276814 0) (0.0515364 0.0268651 0) (0.0530348 0.0222348 0) (0.0572138 0.016292 0) (0.0680094 0.00210823 0) (0.122575 -0.0704714 0) (-0.162081 -0.21608 0) (-0.390575 0.19708 0) (0.162614 0.127266 0) (0.111171 0.0955903 0) (0.138044 0.0785138 0) (0.172625 0.0555076 0) (0.194945 0.0334672 0) (0.204814 0.0165213 0) (0.206143 0.00493944 0) (0.201822 -0.00259742 0) (0.193766 -0.00723186 0) (0.183447 -0.00959668 0) (0.172004 -0.0101364 0) (0.16035 -0.00920422 0) (0.149171 -0.00709278 0) (0.13892 -0.00406875 0) (0.129821 -0.000418451 0) (0.121888 0.0035343 0) (0.114967 0.00745254 0) (0.108814 0.0110126 0) (0.103177 0.0139261 0) (0.0978691 0.0159855 0) (0.0928008 0.0171335 0) (0.087978 0.0175181 0) (0.0835059 0.0174914 0) (0.0796179 0.0175793 0) (0.0767147 0.0184636 0) (0.0753801 0.0207462 0) (0.0761502 0.0238062 0) (0.079908 0.0272287 0) (0.0868632 0.0309599 0) (0.09637 0.0340825 0) (0.107199 0.035397 0) (0.117676 0.0337384 0) (0.125512 0.0276554 0) (0.128978 0.0154101 0) (0.125018 -0.00884798 0) (0.152714 -0.0617542 0) (-0.176049 -0.15467 0) (0.0509344 -0.223243 0) (-0.259809 -0.0433646 0) (-0.259621 0.167719 0) (0.0763373 0.0379722 0) (0.0217653 0.036555 0) (0.0826368 0.0386002 0) (0.133608 0.0281879 0) (0.168381 0.0161716 0) (0.187661 0.00614112 0) (0.195442 -0.00169437 0) (0.195766 -0.00788536 0) (0.191443 -0.0129234 0) (0.184287 -0.0172022 0) (0.175649 -0.0210237 0) (0.166591 -0.0246557 0) (0.15794 -0.02834 0) (0.15029 -0.0322825 0) (0.144011 -0.0366335 0) (0.139239 -0.041457 0) (0.135894 -0.0466988 0) (0.133717 -0.0521818 0) (0.132336 -0.0576437 0) (0.131337 -0.0628095 0) (0.13033 -0.067468 0) (0.129017 -0.0715109 0) (0.12725 -0.0749082 0) (0.125102 -0.0776252 0) (0.122939 -0.0795156 0) (0.121596 -0.0802666 0) (0.121932 -0.0788462 0) (0.124681 -0.0744731 0) (0.130687 -0.0680159 0) (0.14016 -0.0612063 0) (0.152182 -0.0559619 0) (0.164698 -0.0539506 0) (0.174739 -0.0567365 0) (0.17876 -0.0649992 0) (0.170851 -0.0764108 0) (0.181843 -0.0966929 0) (-0.188494 -0.142535 0) ) ; boundaryField { floor { type noSlip; } ceiling { type noSlip; } sWall { type noSlip; } nWall { type noSlip; } sideWalls { type empty; } glass1 { type noSlip; } glass2 { type noSlip; } sun { type noSlip; } Table_master { type noSlip; } Table_slave { type noSlip; } inlet { type fixedValue; value uniform (0.092388 -0.0382683 0); } outlet { type zeroGradient; } } // ************************************************************************* //
2ab4f3ca94b7dde62272f3393105bd494db26ee0
a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e
/SteadyState_Rectangular_0_dt2t10000/processor0/10000/p
765a98063e48cab8d2b9bee6dd4ca1806a9a12f5
[]
no_license
jhargun/FluidIP
4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6
d6e0f20c1f5e1f86c160497be9d632e6d17abbf7
refs/heads/master
2022-08-26T02:34:26.327956
2020-05-26T22:33:29
2020-05-26T22:33:29
266,886,503
0
0
null
null
null
null
UTF-8
C++
false
false
590,810
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "10000"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 33730 ( -7.6002541e+117 -7.6710619e+117 -7.1730164e+117 -7.5969594e+117 -8.0798353e+117 -7.9764497e+117 -7.8596426e+117 -7.6402445e+117 -7.4385827e+117 -7.4496558e+117 -7.6498914e+117 -7.5667541e+117 -7.5987358e+117 -7.2186616e+117 -8.1592158e+117 -7.9964236e+117 -7.8098149e+117 -7.675341e+117 -8.0674355e+117 -7.1795924e+117 -7.0394346e+117 -7.0449849e+117 -7.2477499e+117 -7.2447729e+117 -7.531531e+117 -7.7565083e+117 -7.4224587e+117 -7.62229e+117 -7.7603105e+117 -8.2680464e+117 -7.5117932e+117 -7.5266817e+117 -7.4334337e+117 -7.6744298e+117 -7.6432362e+117 -7.6123829e+117 -7.6974865e+117 -6.7280901e+117 -7.5541341e+117 -7.4284458e+117 -7.4522751e+117 -7.677077e+117 -7.5809884e+117 -7.4980123e+117 -7.242285e+117 -7.6655342e+117 -7.5374081e+117 -7.9489123e+117 -7.460956e+117 -7.9816758e+117 -7.2296792e+117 -8.0539849e+117 -7.1238021e+117 -8.1553222e+117 -6.9280771e+117 -7.2744542e+117 -7.5428422e+117 -7.520654e+117 -7.5177399e+117 -7.8990631e+117 -7.1594239e+117 -7.0391132e+117 -7.0449621e+117 -7.2478276e+117 -7.2394186e+117 -7.0443701e+117 -7.0469187e+117 -7.2449196e+117 -7.2452603e+117 -7.4370025e+117 -7.8775991e+117 -7.4127527e+117 -7.3846534e+117 -7.6861218e+117 -7.6936253e+117 -7.766144e+117 -7.4911813e+117 -7.5082493e+117 -6.8511508e+117 -7.4194777e+117 -7.0046686e+117 -7.4167705e+117 -7.3192092e+117 -7.4390512e+117 -7.8204843e+117 -7.484294e+117 -7.5653385e+117 -7.4319554e+117 -1.3833515e+117 -7.3569815e+117 -1.9763988e+117 -7.3644495e+117 -7.8699452e+117 -7.0028452e+117 -1.871661e+117 -7.5917148e+117 -7.4376747e+117 -7.4663267e+117 -7.6921964e+117 -7.5934394e+117 -7.2442477e+117 -7.3356883e+117 -7.3735199e+117 -7.3912046e+117 -7.5110395e+117 -7.4365482e+117 -7.2655806e+117 -7.0674442e+117 -7.3750501e+117 -7.2670977e+117 -7.2148836e+117 -6.3356152e+117 -6.7625065e+117 -7.1646757e+117 -9.4044341e+117 -7.2226268e+117 -7.4401568e+117 -7.1954623e+117 -7.3796237e+117 -7.7163813e+117 -7.1953449e+117 -1.7511344e+117 -6.9462632e+117 -1.5668831e+117 -5.8432983e+117 -6.5215495e+117 -6.3072048e+117 -7.8838211e+117 -6.902729e+117 -7.5007016e+117 -7.4882734e+117 -7.3821302e+117 -7.5960519e+117 -1.7552711e+117 -7.1090122e+117 -7.0124614e+117 -7.2121819e+117 -7.2333008e+117 -7.0301243e+117 -7.0364115e+117 -7.0420838e+117 -7.2420508e+117 -7.2380793e+117 -7.052849e+117 -7.0528572e+117 -7.2538834e+117 -7.2561023e+117 -7.2954002e+117 -7.5763523e+117 -7.4197239e+117 -7.3643178e+117 -7.3489815e+117 -7.4625304e+117 -7.5087183e+117 -7.638833e+117 -7.4774184e+117 -7.358594e+117 -7.4008967e+117 -7.3702071e+117 -6.9541277e+117 -7.3825972e+117 -6.9219924e+117 -7.2657853e+117 -7.4846631e+117 -7.4540991e+117 -7.460182e+117 -5.5445676e+117 -7.4241107e+117 -6.9123556e+117 -1.7049783e+117 -7.3050643e+117 -6.3596312e+117 -1.5487983e+117 -7.5754685e+117 -7.4630116e+116 -7.4813255e+117 -7.5820073e+117 -7.4414008e+117 -2.3700028e+116 -7.3705585e+117 -6.0875511e+116 -8.8829581e+117 -7.7443731e+117 -7.9003346e+117 -6.7105347e+117 -7.2296715e+117 -7.5533989e+116 -7.6048841e+117 -7.4388123e+117 -7.4678815e+117 -7.6937369e+117 -7.5948152e+117 -4.2752309e+116 -7.2006339e+117 -7.3121479e+117 -7.1581003e+117 -7.2838636e+117 -7.1595446e+117 -7.2322981e+117 -7.228027e+117 -7.1330194e+117 -7.1101876e+117 -7.2737182e+117 -7.0918645e+117 -6.9592952e+117 -6.6907237e+117 -6.8566819e+117 -7.2915901e+117 -7.1739629e+117 -7.4311968e+117 -7.4071093e+117 -7.3739596e+117 -7.3912976e+117 -6.1197302e+117 -5.8789647e+117 -6.3689175e+117 -6.7358812e+117 -7.1715556e+117 -8.6800287e+116 -6.2790299e+117 -6.0130422e+117 -6.1978311e+117 -7.888971e+117 -7.0562287e+117 -7.395842e+117 -6.6674008e+117 -7.1506943e+117 -7.476776e+117 -7.0736547e+117 -7.2786768e+117 -1.7108593e+117 -7.1548868e+117 -3.8483878e+116 -1.2986926e+117 -5.2534153e+116 -7.3403938e+117 -6.4976882e+117 -7.8271507e+117 -5.9596038e+117 -7.0057874e+117 -1.4491892e+117 -7.4856026e+117 -7.3916825e+117 -7.3358462e+117 -7.5264456e+117 -7.4769748e+117 -6.9596677e+117 -6.8859246e+117 -3.9350366e+116 -6.7344649e+117 -7.0403171e+117 -6.9756787e+117 -7.1780611e+117 -7.1912856e+117 -6.9927553e+117 -7.011267e+117 -7.2104766e+117 -7.2337281e+117 -7.0291307e+117 -7.0411789e+117 -7.0463862e+117 -7.250189e+117 -7.2450248e+117 -7.0536614e+117 -7.0535487e+117 -7.2548678e+117 -7.2572587e+117 -7.3427793e+117 -7.3320095e+117 -7.4493209e+117 -7.3911374e+117 -7.0788844e+117 -7.2957195e+117 -7.2432599e+117 -7.2861812e+117 -7.3536784e+117 -6.9721015e+117 -6.9123915e+117 -7.3524102e+117 -7.3456084e+117 -7.4796433e+117 -7.3985597e+117 -7.4894862e+117 -7.5450252e+117 -7.2547508e+117 -7.3070209e+117 -1.5938538e+117 -7.4090091e+117 -7.37695e+117 -6.3438568e+117 -1.3377865e+117 -7.3215426e+117 -1.2232173e+117 -1.7596671e+117 -6.9556898e+117 -7.368083e+117 -7.5136082e+117 -7.4706799e+117 -5.4413445e+117 -7.4246522e+117 -6.7634411e+117 -6.9475335e+117 -5.6065929e+116 -7.2348269e+117 -7.2214931e+117 -1.0522718e+117 -3.7225512e+116 -7.6231683e+117 1.0793152e+116 -7.4811169e+117 -7.5834326e+117 -7.4424579e+117 -9.1630719e+117 -1.9784086e+117 -7.6488177e+117 -7.9027041e+117 -6.6946053e+117 -6.6771593e+117 -7.111383e+117 -7.606013e+117 -1.6716632e+117 -4.364296e+116 -1.3642311e+117 -6.9320724e+117 -7.1505185e+117 -7.1236663e+117 -7.2201043e+117 -7.2627953e+117 -7.1494337e+117 -7.2928484e+117 -7.1517358e+117 -7.2623913e+117 -7.1522684e+117 -7.4534611e+117 -7.1628559e+117 -6.9566922e+117 -6.9116524e+117 -7.1584244e+117 -6.158705e+117 -6.6483173e+117 -6.9603633e+117 -6.8219049e+117 -7.1300626e+117 -6.9089443e+117 -7.220158e+117 -6.9797729e+117 -6.798701e+117 -7.1924773e+117 -5.8633841e+117 -6.0961705e+117 -5.2605576e+117 -5.7097863e+117 -7.2847853e+117 -6.6711784e+117 -7.149375e+117 -6.4355325e+117 -7.3987977e+117 -7.2097221e+117 -7.1002307e+117 -7.3923257e+117 -1.1473696e+117 -5.2570446e+117 -1.5991342e+117 -1.0001531e+118 -7.1542437e+117 -2.8112997e+116 -7.2393571e+117 -5.9528645e+117 -1.2644159e+117 -3.4915408e+117 -7.1195453e+117 -1.7542431e+117 -6.8556745e+117 -6.2318099e+117 -7.4440693e+117 -7.2913692e+117 -7.2873525e+117 -7.3680489e+117 -7.3379335e+117 -6.8545766e+117 -7.0373764e+117 -3.9516098e+116 -7.1139525e+117 -2.8927857e+116 -7.5219657e+117 -3.6615752e+117 -5.9559013e+117 -6.1302505e+117 -3.9962042e+116 -7.4341581e+117 -7.3638812e+117 -7.7264776e+117 -7.6570759e+117 -7.4206722e+117 -6.8113699e+117 -6.5822647e+117 -7.0268055e+117 -6.7629235e+117 -7.3816733e+117 -1.6896067e+117 -6.7179862e+117 -6.5819454e+117 -6.5910809e+117 -6.8001665e+117 -6.7862296e+117 -7.05873e+117 -6.9489734e+117 -7.1274871e+117 -7.1533673e+117 -6.9578473e+117 -6.9746312e+117 -7.1726121e+117 -7.1852635e+117 -6.9910773e+117 -7.0159762e+117 -7.2173771e+117 -7.2373467e+117 -7.0345221e+117 -7.0418274e+117 -7.046932e+117 -7.2510934e+117 -7.2458026e+117 -7.2941659e+117 -7.1438637e+117 -7.2102431e+117 -7.2761441e+117 -7.2568479e+117 -7.1040704e+117 -6.9857742e+117 -7.2978428e+117 -7.3078869e+117 -7.349723e+117 -7.1093045e+117 -7.595611e+117 -7.324764e+117 -7.8469518e+117 -7.3010015e+117 -7.3107708e+117 -7.2566415e+117 -7.3364854e+117 -7.4075009e+117 -1.671551e+117 -4.7532787e+117 -7.3580479e+117 -7.350002e+117 -7.5095042e+117 -7.5131834e+117 -7.0411328e+117 -7.3634747e+117 -7.5401989e+117 -7.1659111e+117 -1.5434236e+117 -2.228776e+117 -3.5298895e+116 -7.4097496e+117 -7.3777813e+117 -1.4109709e+117 -6.8687556e+117 -2.7977104e+116 -7.4541601e+117 -2.6730022e+116 -5.4217277e+116 -6.1282681e+117 -7.0801737e+117 -7.2673871e+117 -7.519956e+117 -7.4725943e+117 -6.7425471e+117 -7.873539e+117 -6.4232679e+117 -7.2298123e+117 -6.9554759e+117 -1.9383393e+117 -3.2239837e+116 -7.6279968e+117 -5.0242586e+116 -1.7294397e+117 -7.6357446e+117 -6.6141446e+117 -3.4071288e+117 -7.0997982e+117 -2.7535123e+117 -2.7564973e+117 -4.6946023e+116 -6.888414e+117 -6.9782758e+117 -6.7826215e+117 -6.9677214e+117 -6.796715e+117 -7.1365513e+117 -7.0361458e+117 -7.1373089e+117 -7.1652833e+117 -7.072828e+117 -7.1010068e+117 -7.1667011e+117 -7.223552e+117 -7.1440215e+117 -7.2983847e+117 -7.1495381e+117 -7.2605644e+117 -7.1557086e+117 -7.44584e+117 -7.3083536e+117 -7.3980218e+117 -7.2573711e+117 -7.2471831e+117 -7.8329354e+117 -7.4407953e+117 -7.9900776e+117 -8.207401e+117 -7.1157902e+117 -6.9080245e+117 -6.4627013e+117 -6.7904305e+117 -6.3065471e+117 -7.0904196e+117 -3.7570517e+117 -5.36028e+117 -6.2046293e+117 -5.8940641e+117 -7.1210073e+117 -6.3856943e+117 -6.8886972e+117 -7.1695384e+117 -6.9665708e+117 -6.3720649e+117 -5.3678486e+117 -7.1815539e+117 -1.1253468e+117 -5.9654268e+117 -4.7748829e+117 -5.0212977e+117 -7.2841626e+117 -6.5620529e+117 -5.2311129e+117 -7.1469077e+117 -1.6944553e+117 -7.3980454e+117 -7.2160729e+117 -6.6937912e+117 -9.2307041e+117 -7.3924747e+117 -3.3787221e+116 -5.2120509e+117 -5.8291983e+116 -1.0507532e+118 -7.1161199e+117 -7.3779011e+117 -3.9458584e+116 -7.2249015e+117 -5.6694202e+116 -6.9512423e+117 -6.2025925e+117 -7.4160471e+117 -7.5730396e+117 -7.3312012e+117 -7.2943394e+117 -7.5100929e+117 -6.2134007e+117 -6.2196127e+117 -6.869872e+117 -6.7315433e+117 -8.6053205e+117 -1.1461417e+118 -7.0829595e+117 -1.5053403e+117 -6.0737347e+117 -7.3600891e+117 -7.5203801e+117 -7.7254652e+117 -7.2893709e+117 -7.2234566e+117 -6.8797484e+117 -7.4449764e+117 -7.5567223e+117 -6.7023067e+117 -6.9267569e+117 -9.4626136e+117 -2.1019614e+117 -5.5381702e+117 -7.439673e+117 -6.0084047e+116 -6.2974668e+117 -6.6955175e+117 -6.5755559e+117 -6.5703513e+117 -6.7761714e+117 -6.7700147e+117 -6.5763358e+117 -6.5867948e+117 -6.78874e+117 -6.7747092e+117 -6.9977328e+117 -6.9479688e+117 -7.136111e+117 -7.1425818e+117 -6.9563964e+117 -6.9505493e+117 -7.1376009e+117 -7.1534348e+117 -6.9578213e+117 -6.9783542e+117 -7.1769614e+117 -7.1915246e+117 -6.9959398e+117 -7.0166385e+117 -7.2182003e+117 -7.2379569e+117 -7.0352472e+117 -7.2010725e+117 -7.252598e+117 -7.2522409e+117 -7.2321487e+117 -7.8880705e+117 -7.169288e+117 -7.414094e+117 -7.3884286e+117 -7.3988391e+117 -7.1465079e+117 -7.2320947e+117 -6.9701163e+117 -7.2451103e+117 -7.2418589e+117 -6.6391799e+117 -6.6114866e+117 -7.1021448e+117 -7.2474632e+117 -7.2684925e+117 -8.6418002e+117 -7.2033908e+117 -7.3610176e+117 -9.2302624e+117 -7.4083573e+117 -1.7432918e+118 -7.4613875e+117 -7.3619855e+117 -7.3088435e+117 -7.2498049e+117 -7.3111998e+117 -7.4099975e+117 -5.565627e+116 -4.5969304e+117 -7.3589076e+117 -7.3507746e+117 -7.040012e+117 -7.9905395e+117 -7.5164942e+117 -6.8730402e+117 -6.8157951e+117 -7.6894182e+117 -7.5451511e+117 -1.6596781e+117 -3.3469557e+116 -8.0064682e+116 -5.8005247e+116 -6.7377334e+117 -6.497137e+117 -7.4684498e+117 -6.0761299e+117 -7.3278679e+117 -6.9587121e+117 -7.2585191e+117 -7.9774092e+117 -2.8556881e+117 -6.4027263e+117 -6.9309696e+117 -1.3391918e+117 -5.3933398e+116 -1.287214e+117 -7.72652e+116 -1.1656842e+117 -6.8514156e+117 -6.7444375e+117 -6.9057061e+117 -6.9348863e+117 -6.7645814e+117 -6.5926528e+117 -6.6113258e+117 -6.6642276e+117 -6.6468934e+117 -6.9795098e+117 -6.7706285e+117 -6.9506758e+117 -6.7917977e+117 -7.1039166e+117 -7.0193376e+117 -7.1679481e+117 -7.1493311e+117 -7.024655e+117 -7.0182819e+117 -7.109338e+117 -7.1269765e+117 -7.0525249e+117 -7.0993603e+117 -7.1638975e+117 -7.2175944e+117 -7.1353693e+117 -7.2990168e+117 -7.1495382e+117 -7.2606025e+117 -7.1561793e+117 -7.4152179e+117 -7.3389071e+117 -7.4603884e+117 -7.4830492e+117 -7.3278024e+117 -7.4411126e+117 -7.2713167e+117 -7.0581378e+117 -7.522418e+117 -7.2869426e+117 -7.4322231e+117 -7.2780453e+117 -7.250209e+117 -7.141877e+117 -7.2128636e+117 -7.030281e+117 -6.5421004e+117 -7.0879684e+117 -7.6565998e+117 -7.1096124e+117 -6.3725022e+117 -6.9011165e+117 -5.6453091e+117 -6.7743454e+117 -6.1024947e+117 -4.8300369e+117 -7.0794788e+117 -5.7343987e+116 -4.656454e+117 -5.9392137e+117 -5.4618023e+117 -7.1200689e+117 -6.3413237e+117 -4.6356632e+117 -6.886253e+117 -1.0366004e+118 -6.9647764e+117 -6.3211852e+117 -4.8684068e+117 -3.3532794e+117 -7.1805267e+117 -2.2638406e+116 -5.9572889e+117 -4.7205681e+117 -4.9649318e+117 -6.5523819e+117 -5.1397368e+117 -1.0317077e+117 -5.2965834e+116 -7.2114789e+117 -5.8383202e+117 -1.9330147e+117 -9.5312799e+117 -7.0761155e+117 -7.241445e+117 -6.9582363e+117 -7.5029333e+117 -7.337583e+117 -7.4873799e+117 -7.4886417e+117 -7.3360085e+117 -7.3319346e+117 -6.8518508e+117 -6.3431388e+117 -7.186345e+117 -5.8795964e+117 -6.7653512e+117 -7.0207616e+117 -6.4502461e+117 -8.8453614e+117 -1.2112772e+118 -7.0134043e+117 -7.2879462e+117 -7.3868993e+117 -7.587276e+117 -7.2999883e+117 -7.3011017e+117 -7.0879665e+117 -7.2768874e+117 -6.6406059e+117 -6.6403342e+117 -7.3541713e+117 -1.5983441e+117 -2.0486001e+117 -6.5421546e+117 -6.9514849e+117 -9.9001069e+117 -7.1317731e+116 -5.4434367e+117 -6.2772148e+117 -6.3732079e+117 -6.1555378e+117 -6.3757053e+117 -6.1587608e+117 -6.6449669e+117 -6.5593168e+117 -6.542115e+117 -6.7623599e+117 -6.7513508e+117 -6.5668182e+117 -6.5599763e+117 -6.761451e+117 -6.7484697e+117 -6.5769731e+117 -6.5874924e+117 -6.7911346e+117 -6.7760062e+117 -6.8999177e+117 -6.8829648e+117 -7.0689279e+117 -7.1060467e+117 -6.9135898e+117 -6.9459901e+117 -7.1368456e+117 -7.1374449e+117 -6.9533756e+117 -6.9525522e+117 -7.1383259e+117 -7.1556004e+117 -6.9602347e+117 -6.9789266e+117 -7.1777076e+117 -7.1923403e+117 -6.9966029e+117 -7.1070384e+117 -7.222932e+117 -7.0872488e+117 -7.1382495e+117 -7.19391e+117 -7.2930517e+117 -7.2348951e+117 -7.1483981e+117 -7.3225233e+117 -6.7496621e+117 -7.2553312e+117 -7.2187967e+117 -7.6701806e+117 -7.3084636e+117 -6.464735e+117 -7.4708859e+117 -7.0216542e+117 -7.3839058e+117 -7.3391971e+117 -7.1221003e+117 -8.3237605e+117 -7.2309158e+117 -6.8909913e+117 -7.2438449e+117 -7.2417629e+117 -1.5066495e+117 -7.1696828e+117 -6.7327389e+117 -7.0650837e+117 -7.2195242e+117 -7.2559689e+117 -8.8167939e+117 -7.2194765e+117 -7.7214707e+117 -7.0697955e+117 -9.4329936e+117 -7.5446795e+117 -1.8507044e+118 -8.312809e+117 -7.1023311e+117 -7.370276e+117 -7.3090898e+117 -7.2497593e+117 -7.3099477e+117 -7.4106186e+117 -1.6832463e+117 -6.8683275e+117 -8.0381426e+117 -6.8648371e+117 -7.4391955e+117 -6.5894273e+117 -7.7351357e+117 -3.5878241e+116 -6.7311084e+117 -6.7901988e+117 -6.440597e+117 -7.3592189e+117 -7.4237994e+117 -6.9479654e+117 -1.7261998e+117 -2.4905941e+117 -7.506681e+117 -6.8151025e+117 -6.7064137e+117 -6.8741276e+117 -6.8896612e+117 -6.7271367e+117 -6.5772412e+117 -6.5605701e+117 -6.6314188e+117 -6.6152605e+117 -6.7325207e+117 -6.5678057e+117 -6.8826336e+117 -6.9163619e+117 -6.755043e+117 -6.583625e+117 -6.9756949e+117 -6.7714412e+117 -6.9510859e+117 -6.7912066e+117 -7.0720215e+117 -7.1703038e+117 -7.0022564e+117 -7.1729468e+117 -7.0111181e+117 -7.0055275e+117 -7.1497579e+117 -7.1266406e+117 -7.0071131e+117 -7.0192534e+117 -7.1099989e+117 -7.1256104e+117 -7.0531574e+117 -7.0994521e+117 -7.1638077e+117 -7.2174067e+117 -7.1350333e+117 -7.4384282e+117 -7.3335816e+117 -7.5432775e+117 -7.4934558e+117 -7.3300791e+117 -6.8792895e+117 -7.3530515e+117 -7.3706059e+117 -7.236159e+117 -7.3210254e+117 -7.4087666e+117 -7.3881417e+117 -7.4732827e+117 -7.5581384e+117 -7.3185989e+117 -6.9942074e+117 -6.7212213e+117 -6.0029158e+117 -7.1367686e+117 -7.293531e+117 -7.4440064e+117 -7.3137197e+117 -6.8561546e+117 -7.2572895e+117 -7.0466596e+117 -6.5273585e+117 -7.2164718e+117 -1.2335706e+117 -4.594204e+117 -2.809961e+117 -2.1908087e+117 -7.1089087e+117 -6.4278573e+117 -5.6182485e+117 -6.8995299e+117 -5.4929908e+117 -6.7718456e+117 -6.0927923e+117 -4.9600092e+117 -3.6079967e+117 -7.0783393e+117 -2.3833612e+116 -4.6044291e+117 -5.9171899e+117 -5.4145085e+117 -6.3352274e+117 -4.9988228e+117 -4.7100938e+117 -5.7039972e+117 -6.3196602e+117 -4.7505877e+117 -4.3650115e+117 -3.19766e+117 -5.1309495e+117 -3.3624671e+117 -3.8554742e+116 -5.7661578e+117 -3.2837463e+117 -6.3182679e+116 -7.0470184e+117 -7.308959e+117 -6.8989753e+117 -7.5286602e+117 -7.3742856e+117 -7.2206209e+117 -6.9892316e+117 -7.1369206e+117 -7.0734467e+117 -6.9032397e+117 -2.0214267e+117 -6.6489392e+117 -1.1655623e+117 -1.3882914e+117 -5.8539697e+117 -6.8647194e+117 -7.0428876e+117 -6.4251065e+117 -6.9353758e+117 -7.1519731e+117 -7.0907163e+117 -7.1224472e+117 -7.2979483e+117 -7.3701424e+117 -7.0638272e+117 -7.3803025e+117 -6.9552663e+117 -7.0718388e+117 -1.6646918e+117 -1.5990768e+117 -9.2593911e+117 -6.3197776e+117 -7.4502846e+117 -3.618871e+116 -5.8988343e+116 -6.5414562e+117 -6.2391695e+117 -6.130195e+117 -6.1451708e+117 -6.3608162e+117 -6.3425235e+117 -6.3679302e+117 -6.1579717e+117 -6.3667942e+117 -6.1573971e+117 -6.5701136e+117 -6.5190919e+117 -6.4905618e+117 -6.7241991e+117 -6.6958688e+117 -6.5565949e+117 -6.5421991e+117 -6.7454821e+117 -6.7381966e+117 -6.5671657e+117 -6.560749e+117 -6.7616219e+117 -6.7502755e+117 -6.5770966e+117 -6.5875978e+117 -6.7914586e+117 -6.7762783e+117 -6.8002173e+117 -6.7936826e+117 -6.9952132e+117 -7.049595e+117 -6.854852e+117 -6.8841383e+117 -7.0669197e+117 -7.1054278e+117 -6.9201298e+117 -6.9540497e+117 -7.1516611e+117 -7.1434163e+117 -6.9543954e+117 -6.9530399e+117 -7.1387501e+117 -7.1561745e+117 -6.9607308e+117 -6.8816726e+117 -6.9586087e+117 -7.0039911e+117 -7.0829767e+117 -7.0752925e+117 -6.985718e+117 -7.096614e+117 -7.1590245e+117 -7.0577304e+117 -6.9365605e+117 -6.7768184e+117 -7.1468153e+117 -7.1951999e+117 -7.2464709e+117 -7.2264284e+117 -7.2032979e+117 -7.1626966e+117 -6.6423706e+117 -6.8461152e+117 -6.2946819e+117 -7.2568408e+117 -7.2041403e+117 -2.3468957e+117 -6.4104298e+117 -6.9104754e+117 -6.7622602e+117 -5.017289e+117 -7.3241864e+117 -1.8531653e+117 -7.354393e+117 -7.2128913e+117 -7.1798636e+117 -7.0277873e+117 -8.4856252e+117 -7.2399725e+117 -6.890026e+117 -7.244039e+117 -7.2416019e+117 -4.1627093e+116 -7.24931e+117 -6.7405e+117 -6.6190673e+117 -6.9842009e+117 -7.2162695e+117 -7.2550142e+117 -7.7608042e+117 -6.5655307e+117 -6.8621455e+117 -7.5573234e+117 -8.4074454e+117 -7.0136894e+117 -7.0428735e+117 -7.3681011e+117 -5.0446466e+116 -9.4204678e+116 -6.8534624e+117 -7.5590397e+117 -2.4682855e+117 -6.5776201e+117 -6.814587e+117 -6.8358562e+117 -7.479074e+117 -7.4400056e+117 -6.8588521e+117 -6.7834804e+117 -6.6712244e+117 -6.8462248e+117 -6.8610509e+117 -6.6871636e+117 -6.5438821e+117 -6.5274885e+117 -6.5990383e+117 -6.5826397e+117 -6.6873988e+117 -6.5309348e+117 -6.8507904e+117 -6.8663743e+117 -6.7112309e+117 -6.5510215e+117 -6.3595254e+117 -6.3435108e+117 -6.7314745e+117 -6.5629856e+117 -6.8832014e+117 -6.9171637e+117 -6.7560618e+117 -6.5768823e+117 -6.975737e+117 -6.771464e+117 -6.9512711e+117 -6.7912794e+117 -7.0392752e+117 -6.9771354e+117 -7.1563399e+117 -7.1619415e+117 -6.9899031e+117 -7.1617116e+117 -6.9990834e+117 -7.1676072e+117 -7.0037126e+117 -7.0070819e+117 -7.1534342e+117 -7.1301893e+117 -7.0084886e+117 -7.0195284e+117 -7.1101358e+117 -7.1255297e+117 -7.0533667e+117 -7.3570322e+117 -7.3427884e+117 -7.6001285e+117 -7.5425142e+117 -7.3314212e+117 -7.2380882e+117 -7.6237004e+117 -7.5532865e+117 -7.4135767e+117 -7.3302759e+117 -7.4749743e+117 -7.764318e+117 -7.4178632e+117 -7.3181151e+117 -7.3198503e+117 -4.5912125e+117 -6.9458396e+117 -6.5121712e+117 -6.6266899e+117 -7.3256942e+117 -7.2178165e+117 -7.4145853e+117 -6.7183589e+117 -7.4843958e+117 -7.520798e+117 -7.1442408e+117 -7.3273288e+117 -1.554038e+117 -6.6074882e+117 -5.6487857e+117 -1.9103237e+117 -7.2943024e+117 -7.4452102e+117 -7.5304958e+117 -6.6371135e+117 -7.2594199e+117 -7.2578001e+117 -7.2602405e+117 -6.428336e+117 -5.6807992e+117 -7.2169422e+117 -1.8656404e+116 -4.4563564e+117 -1.1711826e+117 -7.8112394e+116 -6.4315985e+117 -5.2989943e+117 -5.4299318e+117 -5.4852817e+117 -6.0905696e+117 -5.0121018e+117 -4.8960148e+117 -3.5283388e+117 -5.0282826e+117 -6.6914667e+117 -4.7432996e+117 -4.7343661e+117 -1.2807244e+117 -4.3370676e+117 -3.5153383e+117 -3.1723336e+117 -3.3612989e+117 -3.0279589e+117 -6.9578349e+117 -7.1666093e+117 -7.3644631e+117 -7.329768e+117 -7.1375137e+117 -7.2575624e+117 -4.6764819e+117 -6.7447225e+117 -6.6954258e+117 -6.2798193e+117 -6.8018821e+117 -1.8862595e+117 -6.4790103e+117 -6.6152181e+117 -6.5508438e+116 -6.6412751e+117 -3.4248657e+116 -2.0751306e+116 -6.85224e+117 -6.949774e+117 -7.0357988e+117 -6.6505692e+117 -6.9411252e+117 -7.0527741e+117 -6.5706788e+117 -6.8426924e+117 -7.0825061e+117 -7.0405258e+117 -7.4308158e+117 -2.6913875e+117 -6.2246944e+117 -7.0698241e+117 -4.3393651e+116 -4.5931074e+116 -9.6861813e+117 -6.292924e+117 -6.0864403e+117 -6.2952643e+117 -6.3243819e+117 -6.113433e+117 -6.1289516e+117 -6.1495114e+117 -6.3620325e+117 -6.339974e+117 -6.3672457e+117 -6.1586842e+117 -6.3676659e+117 -6.1589442e+117 -6.4897009e+117 -6.4527728e+117 -6.4111165e+117 -6.6618062e+117 -6.6066189e+117 -6.5046502e+117 -6.4835013e+117 -6.7048075e+117 -6.6845636e+117 -6.5556884e+117 -6.5403596e+117 -6.7428605e+117 -6.7311481e+117 -6.567292e+117 -6.5608837e+117 -6.7618463e+117 -6.7505937e+117 -6.6881615e+117 -6.6754318e+117 -6.8473841e+117 -6.9186512e+117 -6.7360091e+117 -6.7990257e+117 -7.0062237e+117 -7.0605799e+117 -6.8627051e+117 -6.8819782e+117 -7.0738913e+117 -7.1153559e+117 -6.9210404e+117 -6.9549377e+117 -7.1528296e+117 -7.1440002e+117 -6.9547062e+117 -6.7581689e+117 -6.8123889e+117 -6.8880197e+117 -6.9109884e+117 -6.7624297e+117 -6.9417223e+117 -6.7990752e+117 -6.7697072e+117 -6.8902219e+117 -6.7308579e+117 -6.5280354e+117 -6.6250811e+117 -7.0888286e+117 -6.631999e+117 -7.1544022e+117 -6.9959926e+117 -7.0854973e+117 -7.1242303e+117 -7.0588893e+117 -6.9699078e+117 -6.9435279e+117 -7.1501668e+117 -7.188436e+117 -7.0477979e+117 -7.1975502e+117 -6.695683e+117 -7.1035534e+117 -7.2201747e+117 -6.7888768e+117 -6.7459366e+117 -6.6616735e+117 -6.2563585e+117 -7.2571843e+117 -7.2031643e+117 -8.2242435e+116 -6.0257996e+117 -5.8586143e+117 -6.8323876e+117 -3.5761815e+117 -6.3395856e+117 -4.869516e+117 -7.2421683e+117 -5.490055e+116 -7.3517297e+117 -7.2040448e+117 -7.1865134e+117 -7.0012658e+117 -6.9847155e+117 -7.2384066e+117 -6.7503522e+117 -6.5661501e+117 -6.2496083e+117 -6.9748205e+117 -6.5161872e+117 -2.4080573e+117 -6.8383663e+117 -7.0141874e+117 -3.7931939e+117 -7.0267524e+117 -2.0462637e+116 -9.839386e+116 -1.1204247e+117 -2.0525564e+117 -7.6585851e+116 -6.7454299e+117 -6.8351389e+117 -6.6441772e+117 -6.822689e+117 -6.6572699e+117 -6.5113785e+117 -6.4949732e+117 -6.5485726e+117 -6.5657559e+117 -6.654346e+117 -6.4946764e+117 -6.8297701e+117 -6.8409894e+117 -6.6691841e+117 -6.5123126e+117 -6.3288646e+117 -6.313134e+117 -6.6846587e+117 -6.5156342e+117 -6.322729e+117 -6.8496604e+117 -6.8653174e+117 -6.5384133e+117 -6.7084341e+117 -6.3387771e+117 -6.7313765e+117 -6.5603411e+117 -6.8833683e+117 -6.9173561e+117 -6.7561473e+117 -6.577331e+117 -6.9807504e+117 -6.9466217e+117 -7.1322257e+117 -7.1453045e+117 -6.9642078e+117 -6.9811317e+117 -7.1583732e+117 -7.1636184e+117 -6.9910141e+117 -7.1672329e+117 -7.0017637e+117 -7.1732584e+117 -7.0057286e+117 -7.0074346e+117 -7.1540308e+117 -7.1306566e+117 -7.0087831e+117 -7.2409816e+117 -7.2902296e+117 -7.4891039e+117 -7.5896522e+117 -7.3476535e+117 -7.485423e+117 -7.4792249e+117 -7.753573e+117 -7.1830173e+117 -7.3751889e+117 -7.574754e+117 -7.7709139e+117 -7.5134862e+117 -7.6931537e+117 -7.3453203e+117 -6.2915775e+117 -7.3873561e+117 -7.2644687e+117 -7.0071475e+117 -7.3395965e+117 -7.4197304e+117 -7.4755557e+117 -7.3725262e+117 -7.4205237e+117 -7.1684947e+117 -5.5139787e+117 -7.3258114e+117 -1.297041e+117 -6.8926289e+117 -6.8413554e+117 -6.4148818e+117 -7.326305e+117 -7.2783355e+117 -5.7511655e+117 -7.4150992e+117 -1.493643e+117 -7.4854691e+117 -7.5648026e+117 -6.8911201e+117 -1.2376974e+117 -7.3283197e+117 -4.032177e+116 -6.6029469e+117 -5.6455532e+117 -5.877035e+116 -7.5464284e+117 -6.2343375e+117 -5.9919484e+117 -7.3086794e+117 -7.276507e+117 -6.3238431e+117 -6.1930468e+117 -5.6111876e+117 -5.2733862e+117 -3.0409228e+117 -5.4091877e+117 -5.0193454e+117 -4.8444137e+117 -4.8942514e+117 -6.7425531e+117 -6.8533104e+117 -8.0965327e+116 -6.2985646e+116 -3.357573e+117 -3.1254044e+117 -6.8726147e+117 -7.075453e+117 -6.931468e+117 -6.2471176e+117 -6.5935568e+117 -7.1560244e+117 -7.1687656e+117 -6.9280782e+117 -6.7179723e+117 -6.7592144e+117 -1.3179948e+117 -1.1513873e+117 -1.5101841e+117 -6.2840223e+117 -6.7878966e+117 -5.7035218e+116 -6.4345251e+117 -6.5901464e+117 -6.7493758e+117 -6.8450638e+117 -6.8121693e+117 -6.7622135e+117 -6.8855118e+117 -6.8386521e+117 -6.6652245e+117 -5.1440072e+117 -6.4811252e+117 -6.5460252e+117 -7.4788677e+117 -7.0532692e+117 -7.1370704e+117 -7.1901744e+117 -7.5005835e+117 -9.9371348e+116 -6.1620033e+117 -7.0694136e+117 -6.2282934e+117 -6.0292918e+117 -6.0587737e+117 -6.2613711e+117 -6.0843766e+117 -6.2849638e+117 -6.3135119e+117 -6.1148359e+117 -6.1315611e+117 -6.1515508e+117 -6.3616593e+117 -6.344898e+117 -6.3672061e+117 -6.1586935e+117 -6.3677082e+117 -6.1590097e+117 -6.4047936e+117 -6.3714364e+117 -6.3295108e+117 -6.5627879e+117 -6.5106343e+117 -6.4416832e+117 -6.4049845e+117 -6.6453259e+117 -6.5972186e+117 -6.5035709e+117 -6.4781479e+117 -6.7022555e+117 -6.6782023e+117 -6.5557219e+117 -6.5401992e+117 -6.7428699e+117 -6.7311195e+117 -6.5953881e+117 -6.5584598e+117 -6.6873518e+117 -6.7717914e+117 -6.618476e+117 -6.674902e+117 -6.8485112e+117 -6.9225007e+117 -6.7365274e+117 -6.8024164e+117 -7.0122653e+117 -7.0600669e+117 -6.8624317e+117 -6.8820202e+117 -7.0746478e+117 -7.1163891e+117 -6.9213087e+117 -6.7426012e+117 -6.7599747e+117 -6.7507266e+117 -6.646185e+117 -6.5184221e+117 -6.6715615e+117 -6.5466441e+117 -6.6389687e+117 -6.6959577e+117 -6.6854014e+117 -6.7811722e+117 -6.7245737e+117 -6.9677767e+117 -6.5160613e+117 -6.7313466e+117 -7.0248135e+117 -6.8413879e+117 -6.7772972e+117 -6.9074351e+117 -6.7959192e+117 -6.7298713e+117 -6.6594361e+117 -6.6332851e+117 -7.0270936e+117 -6.4856765e+117 -6.8392043e+117 -7.032801e+117 -6.9998881e+117 -7.0805407e+117 -7.0999959e+117 -7.0619149e+117 -6.9758044e+117 -6.9737647e+117 -7.1506104e+117 -7.1882394e+117 -6.5780856e+117 -6.8433737e+117 -7.1928444e+117 -6.6487082e+117 -6.7439807e+117 -7.0328965e+117 -7.2215823e+117 -6.8016509e+117 -6.7675197e+117 -6.6491268e+117 -6.0018003e+117 -8.1110947e+117 -5.9219189e+117 -6.8256175e+117 -1.6678657e+117 -1.4560506e+117 -5.8624929e+117 -7.2318505e+117 -6.9997274e+117 -6.8907039e+117 -6.9793281e+117 -6.5759396e+117 -6.4076759e+117 -6.2068656e+117 -1.1290971e+117 -2.1063333e+117 -3.3044401e+117 -3.3765791e+117 -2.3963764e+116 -6.6941147e+117 -6.6067909e+117 -6.7879777e+117 -6.8080149e+117 -6.6260998e+117 -6.4584588e+117 -6.478033e+117 -6.531803e+117 -6.5118071e+117 -6.8196516e+117 -6.6281317e+117 -6.4636166e+117 -6.8076464e+117 -6.6412517e+117 -6.4796238e+117 -6.298064e+117 -6.2821869e+117 -6.6511122e+117 -6.4762293e+117 -6.2902895e+117 -6.8287527e+117 -6.8389894e+117 -6.4935073e+117 -6.6653849e+117 -6.3065981e+117 -6.684454e+117 -6.5131952e+117 -6.3199631e+117 -6.849691e+117 -6.8653637e+117 -6.5352497e+117 -6.3384262e+117 -6.7083212e+117 -6.5601985e+117 -6.5773396e+117 -6.8980734e+117 -6.9018432e+117 -7.087207e+117 -7.1183452e+117 -6.9295242e+117 -6.9536184e+117 -7.1472094e+117 -7.1533311e+117 -6.9702174e+117 -6.9841481e+117 -7.1653693e+117 -7.1694477e+117 -6.9934716e+117 -7.168006e+117 -7.0022173e+117 -7.1739888e+117 -7.0061253e+117 -7.0412466e+117 -7.0876739e+117 -7.0938985e+117 -7.2502156e+117 -7.2179715e+117 -6.7911956e+117 -7.0166314e+117 -6.8769093e+117 -6.3093643e+117 -7.3430787e+117 -7.5307901e+117 -7.3777478e+117 -7.5876659e+117 -7.4509215e+117 -7.4070446e+117 -7.0647166e+117 -7.0538143e+117 -7.2900411e+117 -6.7891509e+117 -7.3873737e+117 -7.5773437e+117 -7.5436428e+117 -7.5652752e+117 -7.5146954e+117 -7.5563027e+117 -7.3853564e+117 -7.3559017e+117 -4.9959425e+117 -1.6452312e+117 -7.2541984e+117 -7.0168715e+117 -7.3405937e+117 -7.4326926e+117 -6.9118831e+117 -7.4757704e+117 -2.0330606e+117 -7.420842e+117 -7.3461436e+117 -6.0528849e+117 -3.4365815e+117 -7.3265928e+117 -5.5061699e+116 -6.8952903e+117 -6.9656041e+117 -6.3947173e+117 -7.2813154e+117 -5.7876728e+117 -1.103002e+117 -3.7665736e+116 -7.5648749e+117 -6.7562156e+117 -1.4856956e+117 -1.4556813e+116 -6.2030919e+117 -2.6283102e+117 -5.9383706e+117 -6.3016165e+117 -2.1952312e+117 -6.1765928e+117 -2.5441106e+117 -2.7375409e+117 -4.8094447e+117 -4.7990519e+117 -6.8442349e+117 -2.7616184e+116 -6.7984235e+117 -6.8784266e+117 -6.7277628e+117 -6.4615628e+117 -6.8152941e+117 -6.8305775e+117 -6.1146392e+117 -4.2306538e+117 -5.3514538e+117 -6.8159781e+117 -1.6958386e+117 -1.3329912e+117 -6.509852e+117 -6.4751748e+117 -5.4570665e+116 -1.831069e+116 -4.6955989e+116 -6.331223e+117 -6.6605141e+117 -6.7694296e+117 -6.7352134e+117 -6.6548665e+117 -6.7859246e+117 -7.2989831e+117 -6.3926324e+117 -6.1328332e+117 -6.6681339e+117 -6.6818418e+117 -1.3568167e+117 -1.5741811e+117 -6.3697846e+117 -5.8704489e+117 -7.624814e+117 -7.0924006e+117 -7.1446995e+117 -7.2304633e+117 -5.3322157e+117 -5.6761203e+117 -5.6950288e+117 -5.9037768e+117 -5.8791599e+117 -6.0539186e+117 -6.1549989e+117 -5.9645023e+117 -5.9992132e+117 -6.1927724e+117 -6.2152562e+117 -6.0233504e+117 -6.0558431e+117 -6.2480687e+117 -6.0873209e+117 -6.2841512e+117 -6.3128298e+117 -6.1146798e+117 -6.1318133e+117 -6.1516596e+117 -6.3615978e+117 -6.3449179e+117 -6.3298807e+117 -6.288235e+117 -6.2511444e+117 -6.4630483e+117 -6.4167446e+117 -6.3643666e+117 -6.3242001e+117 -6.5495229e+117 -6.4997248e+117 -6.4423817e+117 -6.4029827e+117 -6.6447991e+117 -6.5974099e+117 -6.5034616e+117 -6.4781111e+117 -6.7021716e+117 -6.6779924e+117 -6.5362326e+117 -6.4754382e+117 -6.5853523e+117 -6.6298858e+117 -6.5148462e+117 -6.5518544e+117 -6.6817019e+117 -6.7694935e+117 -6.6136106e+117 -6.6785357e+117 -6.854108e+117 -6.9289202e+117 -6.7397074e+117 -6.8029706e+117 -7.0129948e+117 -7.0603056e+117 -6.8627044e+117 -6.7931544e+117 -6.7088024e+117 -6.738892e+117 -6.6495246e+117 -6.6724836e+117 -6.5851771e+117 -6.6808088e+117 -6.6799888e+117 -6.6421079e+117 -6.3863287e+117 -6.535303e+117 -6.411898e+117 -6.5280352e+117 -6.1569036e+117 -6.2930721e+117 -6.6927375e+117 -6.5245351e+117 -6.6161267e+117 -6.6863058e+117 -6.7006803e+117 -6.8288315e+117 -6.5551477e+117 -6.7421477e+117 -7.4044034e+117 -6.5042254e+117 -6.2912664e+117 -6.7960767e+117 -7.0367358e+117 -6.8512735e+117 -6.7807466e+117 -6.9119662e+117 -6.8054193e+117 -6.7707372e+117 -6.5385139e+117 -6.6464283e+117 -6.6377455e+117 -6.9856299e+117 -6.4716074e+117 -2.5418323e+117 -6.2720756e+117 -7.0182842e+117 -7.000387e+117 -7.080281e+117 -7.0978998e+117 -7.0622653e+117 -6.3153209e+117 -6.7298439e+117 -6.8230347e+117 -6.6473258e+117 -6.7314338e+117 -6.5927417e+117 -7.026083e+117 -6.8032553e+117 -8.4025484e+117 -3.3273417e+117 -5.9161808e+117 -4.2955696e+116 -8.8042445e+116 -5.8244751e+117 -6.8764571e+117 -6.8728585e+117 -6.4417782e+117 -6.4055836e+117 -8.550408e+116 -1.9687316e+117 -6.6226959e+117 -6.5535608e+117 -6.7384636e+117 -6.767877e+117 -6.5827883e+117 -6.4360102e+117 -6.4092474e+117 -6.489558e+117 -6.4629478e+117 -6.5961267e+117 -6.4261881e+117 -6.7759497e+117 -6.7939266e+117 -6.6130083e+117 -6.4463242e+117 -6.2474598e+117 -6.2665904e+117 -6.8182368e+117 -6.6249445e+117 -6.4455037e+117 -6.2599528e+117 -6.8063296e+117 -6.4609666e+117 -6.6385257e+117 -6.2756539e+117 -6.6509035e+117 -6.4737757e+117 -6.2817967e+117 -6.828804e+117 -6.8389753e+117 -6.4909342e+117 -6.2994108e+117 -6.6651528e+117 -6.5130172e+117 -6.3190079e+117 -6.5352414e+117 -6.3379659e+117 -6.7963829e+117 -6.7931849e+117 -6.9453122e+117 -7.0412507e+117 -6.8570754e+117 -6.917411e+117 -7.1201983e+117 -7.1515251e+117 -6.9444777e+117 -6.9585209e+117 -7.1573762e+117 -7.1616674e+117 -6.9737001e+117 -6.9846182e+117 -7.1662272e+117 -7.1702273e+117 -6.9939276e+117 -6.7666242e+117 -6.813982e+117 -6.5995668e+117 -6.8785049e+117 -6.9462667e+117 -6.5934354e+117 -6.2552753e+117 -6.6637595e+117 -6.9157208e+117 -7.0751374e+117 -7.0607339e+117 -6.6488694e+117 -7.2715577e+117 -6.8624112e+117 -7.236464e+117 -5.9626199e+117 -5.9798342e+117 -5.512449e+117 -3.9918335e+117 -7.3535666e+117 -7.6005839e+117 -7.0361227e+117 -6.137625e+117 -7.3643837e+117 -7.5928141e+117 -6.6883015e+117 -7.4111066e+117 -1.5610602e+117 -7.0942695e+117 -2.0760936e+117 -5.8370605e+117 -7.388659e+117 -7.5774614e+117 -7.5486803e+117 -7.153987e+117 -2.5349325e+117 -7.5149537e+117 -7.5060258e+117 -7.2846365e+117 -7.8845191e+117 -7.3570605e+117 -4.8810464e+117 -3.7428559e+116 -7.2587961e+117 -7.0261028e+117 -7.4328721e+117 -6.5628444e+117 -6.3724781e+117 -6.17647e+116 -7.3616847e+117 -6.1539217e+117 -5.413498e+117 -3.3034974e+117 -5.7818793e+117 -1.4435257e+117 -3.5951381e+116 -6.7351185e+117 7.3385789e+116 -4.0401939e+116 -2.4625121e+117 -1.4624302e+117 -1.7053751e+117 -9.7167164e+116 -1.7696842e+117 -4.7617498e+117 -6.7032139e+117 -6.8252384e+117 -6.1392606e+117 -6.4087348e+117 -6.5332257e+117 -6.4845157e+117 -6.0330089e+117 -4.9064906e+117 -5.8932074e+117 -6.1774411e+117 -6.3663116e+117 -8.5961755e+117 -7.4487409e+117 -1.4004935e+117 -4.8970222e+116 -2.1033604e+116 -6.4942602e+117 -6.458705e+117 -6.5952578e+117 -6.6155426e+117 -6.5198897e+117 -6.7731425e+117 -6.6410707e+117 -6.6642249e+117 -6.3511325e+117 -6.2545486e+117 -6.4238708e+117 -7.0212931e+117 -5.9489233e+117 -5.8801308e+117 -6.8427181e+117 -6.6376818e+117 -2.8698441e+116 -7.5110048e+116 -6.3709753e+117 -5.8137338e+117 -5.6660282e+117 -5.3023174e+117 -4.9240177e+117 -5.2333021e+117 -5.43284e+117 -5.4514713e+117 -5.2462276e+117 -5.629456e+117 -5.825507e+117 -5.8567129e+117 -5.6557859e+117 -5.2657954e+117 -5.4689892e+117 -5.4805658e+117 -5.2730459e+117 -5.677312e+117 -5.695688e+117 -5.9033468e+117 -5.8809047e+117 -5.9966843e+117 -6.0862106e+117 -5.9060923e+117 -5.9356062e+117 -6.1191526e+117 -6.1437113e+117 -5.957819e+117 -5.9923708e+117 -6.1805478e+117 -6.2152085e+117 -6.023629e+117 -6.0548224e+117 -6.2487015e+117 -6.0872487e+117 -6.2840454e+117 -6.312869e+117 -6.1148586e+117 -6.2588838e+117 -6.3419401e+117 -6.1845032e+117 -6.379058e+117 -6.2184028e+117 -6.280292e+117 -6.2432973e+117 -6.4492342e+117 -6.4033613e+117 -6.3638718e+117 -6.3247928e+117 -6.5502348e+117 -6.5014673e+117 -6.4424484e+117 -6.4030136e+117 -6.6449847e+117 -6.597572e+117 -6.4744183e+117 -6.4360288e+117 -6.5856222e+117 -6.57278e+117 -6.4513691e+117 -6.4666344e+117 -6.5720814e+117 -6.6166924e+117 -6.5040017e+117 -6.5551076e+117 -6.6858221e+117 -6.7746089e+117 -6.6167448e+117 -6.6790666e+117 -6.8548309e+117 -6.9296688e+117 -6.740233e+117 -6.6630542e+117 -7.1595902e+117 -7.1346154e+117 -6.7990071e+117 -6.9742982e+117 -6.6857548e+117 -6.7410932e+117 -6.734398e+117 -6.7112852e+117 -6.3667571e+117 -6.1924128e+117 -6.5357292e+117 -6.3654097e+117 -6.4067108e+117 -6.417878e+117 -6.5583768e+117 -6.6397932e+117 -6.6686561e+117 -6.6185639e+117 -6.019694e+117 -6.5199302e+117 -6.4060333e+117 -6.1433379e+117 -6.6256513e+117 -5.9216218e+117 -5.818025e+117 -6.1430867e+117 -6.703656e+117 -6.5267726e+117 -6.6173148e+117 -6.6880389e+117 -6.7042356e+117 -6.8340583e+117 -6.0925568e+117 -6.8198039e+117 -6.7466897e+117 -7.4035533e+117 -6.5038363e+117 -6.3053688e+117 -5.8990442e+117 -6.9273445e+117 -7.0381174e+117 -6.8521712e+117 -6.7811699e+117 -6.912561e+117 -6.5266176e+117 -6.693831e+117 -6.7083694e+117 -6.9787957e+117 -9.2808947e+116 -5.2608851e+117 -6.1692358e+117 -7.0137785e+117 -6.2910427e+117 -6.4938431e+117 -6.7495576e+117 -6.7332249e+117 -6.6734497e+117 -6.5787839e+117 -2.7363136e+117 -2.834792e+117 -2.41525e+116 -8.7241678e+116 -6.8605986e+117 -6.4447064e+117 -6.539412e+117 -6.4748937e+117 -6.6484285e+117 -6.6998294e+117 -6.5162137e+117 -6.3752847e+117 -6.3397136e+117 -6.4316881e+117 -6.3968238e+117 -6.5462149e+117 -6.3752803e+117 -6.7321222e+117 -6.7607002e+117 -6.5756446e+117 -6.4031655e+117 -6.2266852e+117 -6.201619e+117 -6.4090928e+117 -6.5941488e+117 -6.221386e+117 -6.7758663e+117 -6.7924874e+117 -6.4280178e+117 -6.6104023e+117 -6.2423723e+117 -6.8182918e+117 -6.6247587e+117 -6.4430827e+117 -6.2496415e+117 -6.806373e+117 -6.4582868e+117 -6.2659255e+117 -6.6383656e+117 -6.4736087e+117 -6.2808679e+117 -6.4907625e+117 -6.2989023e+117 -6.3189699e+117 -6.3379386e+117 -6.6965587e+117 -6.681744e+117 -6.7824456e+117 -6.8618091e+117 -6.7377962e+117 -6.7931709e+117 -6.9434447e+117 -7.0531388e+117 -6.8637151e+117 -6.9187096e+117 -7.1262471e+117 -7.1605142e+117 -6.9487668e+117 -6.9591549e+117 -7.1585492e+117 -7.1626513e+117 -6.9741859e+117 -6.6576986e+117 -5.8188892e+117 -5.7762336e+117 -6.7079926e+117 -6.4739762e+117 -6.8856835e+117 -6.7945348e+117 -6.1482057e+117 -6.1641829e+117 -6.7060614e+117 -6.395489e+117 -6.024927e+117 -6.7904529e+117 -6.4905241e+117 -6.8899758e+117 -5.8556099e+117 -5.2563668e+117 -5.3311536e+117 -6.8347569e+117 -7.0737064e+117 -7.0427029e+117 -6.6098105e+117 -5.6267753e+117 -6.732825e+117 -7.2938328e+117 -5.7709735e+117 -7.2380059e+117 -6.0138618e+117 -5.6403086e+117 -1.1298622e+117 -6.8694011e+116 -7.3548381e+117 -7.6051162e+117 -7.1016792e+117 -5.6805377e+117 -5.6525547e+117 -7.357087e+117 -6.6637637e+117 -7.5931883e+117 -6.3993535e+117 -7.4118494e+117 -3.5430222e+116 -7.1353835e+117 -6.4272503e+116 -5.7554453e+117 -7.5492995e+117 -7.1677892e+117 -6.7120346e+117 -8.4454461e+116 -7.5017391e+117 -7.014312e+117 -8.1832521e+117 -7.9689479e+117 -6.5191227e+117 -2.7231752e+117 -6.3093915e+117 -6.1559216e+117 -2.0786971e+117 -5.3678938e+117 -1.5519673e+117 -1.0048382e+117 4.9535576e+116 1.5125785e+117 -1.9388531e+117 -6.0813171e+116 -6.6443819e+117 -6.7691428e+117 -6.0426218e+117 -6.313512e+117 -6.3139229e+117 -5.9634718e+117 -5.5270268e+117 -5.7253513e+117 -5.9835203e+117 -5.8373732e+117 -1.3073387e+117 -4.5064577e+117 -1.0953026e+117 -1.5146255e+117 -6.4095101e+117 -9.1250614e+117 -7.7332123e+117 -3.5362469e+116 -6.3569637e+117 -6.500677e+117 -6.255857e+117 -6.7306075e+117 -6.1180444e+117 -6.5859839e+117 -6.6759184e+117 -7.0422242e+117 -7.1179704e+117 -6.1754975e+117 -6.3483886e+117 -1.4833698e+117 -6.1565082e+117 -6.2146677e+117 -1.9645452e+117 -5.9272012e+117 -5.869288e+117 -6.864918e+117 -6.6355363e+117 -5.6242867e+117 -5.2736762e+117 -5.5438961e+117 -5.7284176e+117 -5.7542025e+117 -5.5648594e+117 -4.9083661e+117 -5.207686e+117 -5.2203863e+117 -5.4156913e+117 -5.3979287e+117 -5.5816808e+117 -5.768435e+117 -5.7974703e+117 -5.6047599e+117 -4.5661958e+117 -4.86164e+117 -4.8549078e+117 -5.0432085e+117 -5.0528598e+117 -5.2429376e+117 -5.4347521e+117 -5.4535421e+117 -5.2554332e+117 -5.6293658e+117 -5.8258375e+117 -5.8561763e+117 -5.6556609e+117 -5.2658671e+117 -5.4689097e+117 -5.4809557e+117 -5.2734079e+117 -5.6774059e+117 -5.6957513e+117 -5.9034238e+117 -5.88112e+117 -5.9349947e+117 -6.0263482e+117 -5.8543729e+117 -6.0567882e+117 -5.880538e+117 -6.0733582e+117 -5.8981579e+117 -5.9277815e+117 -6.1061124e+117 -6.1427507e+117 -5.956616e+117 -5.9904693e+117 -6.1791357e+117 -6.2152046e+117 -6.023547e+117 -6.0547689e+117 -6.2486677e+117 -6.1765713e+117 -6.1162626e+117 -6.1526473e+117 -6.3105662e+117 -6.2787335e+117 -6.3287199e+117 -6.1765789e+117 -6.3643262e+117 -6.2095658e+117 -6.2812234e+117 -6.2437683e+117 -6.4512934e+117 -6.4056314e+117 -6.3638858e+117 -6.3248952e+117 -6.5504037e+117 -6.5017264e+117 -6.3772968e+117 -6.3742603e+117 -6.5573107e+117 -6.5910415e+117 -6.4176882e+117 -6.4555265e+117 -6.5995674e+117 -6.566131e+117 -6.4481787e+117 -6.4698319e+117 -6.5754608e+117 -6.6198562e+117 -6.5067745e+117 -6.5555491e+117 -6.6863864e+117 -6.775305e+117 -6.6172379e+117 -6.5465656e+117 -7.017806e+117 -6.5269316e+117 -6.5171623e+117 -7.11413e+117 -6.5266357e+117 -6.5296828e+117 -6.6470372e+117 -6.6175259e+117 -6.79196e+117 -6.6074021e+117 -6.7136095e+117 -6.2672235e+117 -6.4826821e+117 -6.6278182e+117 -6.6954523e+117 -6.7337484e+117 -6.7135402e+117 -6.7412378e+117 -6.1555465e+117 -6.0990374e+117 -1.7019008e+117 -6.4779728e+117 -1.9635238e+117 -6.0635051e+117 -6.3356348e+117 -6.2566477e+117 -6.5662509e+117 -6.6449902e+117 -6.6722798e+117 -6.6214112e+117 -6.0016229e+117 -6.5213219e+117 -6.4057788e+117 -5.9402139e+117 -6.0833663e+117 -6.7830169e+117 -5.7001863e+117 -5.0788667e+117 -5.7958162e+117 -6.1431747e+117 -6.7045214e+117 -6.5265541e+117 -6.6173527e+117 -6.6882832e+117 -6.0501258e+117 -3.7459253e+117 -5.8129924e+117 -7.3983119e+117 -6.3201388e+117 -5.4054578e+117 -5.4495802e+117 -6.9359912e+117 -6.7123211e+117 -6.9163817e+117 -6.7318528e+117 -5.1773621e+117 -5.3781554e+117 -6.1618154e+117 -6.4839721e+117 -6.5070624e+117 -6.6811857e+117 -6.6729295e+117 -2.1520991e+117 -2.4146732e+116 -6.4591203e+117 -6.3215083e+117 -6.2638735e+117 -6.3924555e+117 -6.5539033e+117 -6.6020567e+117 -6.4335898e+117 -6.3010063e+117 -6.3599674e+117 -6.4676673e+117 -6.305884e+117 -6.6371359e+117 -6.6889658e+117 -6.508341e+117 -6.3424574e+117 -6.1730038e+117 -6.1417273e+117 -6.5449156e+117 -6.3586054e+117 -6.1727966e+117 -6.7313271e+117 -6.7609488e+117 -6.3859732e+117 -6.574572e+117 -6.1983598e+117 -6.2090403e+117 -6.4068865e+117 -6.5940431e+117 -6.7760215e+117 -6.7925473e+117 -6.4259215e+117 -6.2304868e+117 -6.6102689e+117 -6.4429407e+117 -6.2488038e+117 -6.4581421e+117 -6.2646001e+117 -6.280868e+117 -6.2988938e+117 -6.6107013e+117 -6.5833762e+117 -6.6815312e+117 -6.7422156e+117 -6.6361207e+117 -6.6667717e+117 -6.746493e+117 -6.8401557e+117 -6.7288466e+117 -6.7966637e+117 -6.9465648e+117 -7.0549938e+117 -6.8654701e+117 -6.9191285e+117 -7.1270474e+117 -7.1616344e+117 -6.9494071e+117 -6.6286015e+117 -6.3016899e+117 -6.560679e+117 -5.8746925e+117 -5.7559563e+117 -5.4958576e+117 -5.8794964e+117 -6.3995196e+117 -6.6178897e+117 -4.9759673e+117 -4.9112859e+117 -6.0014142e+117 -6.5967055e+117 -6.447067e+117 -6.4758439e+117 -7.1314583e+117 -6.6803215e+117 -4.8567726e+117 -4.987259e+117 -6.6921135e+117 -6.384903e+117 -5.6483188e+117 -4.9590997e+117 -6.2559223e+117 -6.7634809e+117 -5.5976321e+117 -6.880694e+117 -1.5774051e+117 -4.5764978e+117 -6.1526235e+116 -9.8758212e+117 -7.0737627e+117 -7.0411488e+117 -6.6005814e+117 -5.9046121e+117 -6.5616833e+117 -6.9419206e+117 -5.5294375e+117 -7.2957608e+117 -5.9521976e+117 -7.2382839e+117 -6.0063289e+117 -5.6165147e+117 -3.2203782e+116 -2.7576161e+116 -7.1066798e+117 -5.8134799e+117 -7.4969478e+117 -5.6184728e+117 -7.3553507e+117 -6.5904049e+117 -1.6288492e+117 -6.3865541e+117 -7.1682328e+117 -7.0587838e+117 -6.6757723e+117 -6.9958823e+117 -7.417005e+117 -8.3372027e+117 -2.7381467e+117 -1.6781037e+117 -1.9252771e+117 -9.0468937e+116 -1.1863515e+117 1.2527161e+117 -6.5248727e+117 -6.6335182e+117 -6.6265029e+117 -6.3058251e+117 -7.060686e+117 -6.8435077e+117 -5.1154336e+117 -5.1933073e+117 -4.9565759e+117 -5.0082317e+117 -5.2675934e+117 -5.5021287e+117 -8.7895112e+117 -5.8004793e+117 -3.1950286e+116 -4.5003686e+117 -3.0567872e+116 -5.1230339e+116 -6.2544056e+117 -6.0971659e+117 -6.136858e+117 -6.3865778e+117 -6.3943616e+117 -6.2800909e+117 -5.894473e+117 -1.4038893e+117 -6.237368e+117 -6.4100725e+117 -6.6292921e+117 -6.7331374e+117 -6.8556469e+117 -6.8475049e+117 -6.8817245e+117 -6.8976407e+117 -7.0965698e+116 -4.4824837e+116 -6.154027e+117 -6.2003733e+117 -7.1078336e+116 -5.5796921e+117 -5.6830998e+117 -5.5045091e+117 -5.2469938e+117 -5.5252371e+117 -5.7067462e+117 -4.8941113e+117 -5.3824011e+117 -5.3651503e+117 -5.1808995e+117 -5.1941485e+117 -5.5427782e+117 -5.7197497e+117 -5.7446549e+117 -5.5633017e+117 -4.5600513e+117 -5.0249765e+117 -4.8421208e+117 -4.8490476e+117 -5.0344503e+117 -5.2173655e+117 -5.2300856e+117 -5.4161069e+117 -5.3984462e+117 -5.5814819e+117 -5.7675078e+117 -5.7968128e+117 -5.6044613e+117 -4.521303e+117 -4.6843704e+117 -4.6889484e+117 -4.5236535e+117 -4.8752697e+117 -4.8689108e+117 -5.0509304e+117 -5.0599146e+117 -5.2439773e+117 -5.4348527e+117 -5.4534321e+117 -5.2563759e+117 -5.6293338e+117 -5.8258665e+117 -5.8561994e+117 -5.6556974e+117 -5.2658629e+117 -5.4687806e+117 -5.4808692e+117 -5.273401e+117 -5.8653975e+117 -5.8007366e+117 -5.8281271e+117 -5.996867e+117 -5.9640476e+117 -6.0140897e+117 -5.84678e+117 -6.0432464e+117 -5.8719949e+117 -6.0724696e+117 -5.8965e+117 -5.9259524e+117 -6.1052849e+117 -6.1427187e+117 -5.9565152e+117 -5.9903584e+117 -6.1791057e+117 -6.0918284e+117 -6.0822038e+117 -6.0465741e+117 -6.2417e+117 -6.2057691e+117 -6.103478e+117 -6.1432168e+117 -6.2981635e+117 -6.2690913e+117 -6.3309925e+117 -6.1766678e+117 -6.3664029e+117 -6.2097373e+117 -6.2813249e+117 -6.2438536e+117 -6.4515755e+117 -6.4059032e+117 -6.2935746e+117 -6.2700054e+117 -6.4184712e+117 -6.4955437e+117 -6.3244466e+117 -6.3606383e+117 -6.5492326e+117 -6.6092892e+117 -6.3972708e+117 -6.4580047e+117 -6.604089e+117 -6.5692981e+117 -6.4511197e+117 -6.4702395e+117 -6.5758454e+117 -6.6202827e+117 -6.5071631e+117 -6.4745472e+117 -6.4211487e+117 -6.2527176e+117 -6.4124445e+117 -6.5687234e+117 -6.4946254e+117 -6.449433e+117 -6.4682001e+117 -6.4738078e+117 -6.6830459e+117 -6.0146892e+117 -5.9655316e+117 -6.4089363e+117 -6.8292322e+117 -6.6036205e+117 -6.5291904e+117 -6.5128285e+117 -6.6172896e+117 -6.623551e+117 -5.9518008e+117 -1.0145822e+117 -6.6281748e+117 -1.3393911e+117 -5.6005057e+117 -1.4785083e+117 -6.1497062e+117 -6.5710818e+117 -6.6831183e+117 -6.6832919e+117 -6.711139e+117 -6.7246445e+117 -6.1339851e+117 -5.8759135e+117 -6.1741913e+117 -5.7515588e+116 -6.4656804e+117 -6.9100073e+116 -5.9849804e+117 -5.9288044e+117 -6.3526953e+117 -6.2374185e+117 -6.5665206e+117 -6.6451632e+117 -6.6725417e+117 -6.6215955e+117 -5.9192476e+117 -1.8963798e+117 -5.7511727e+117 -6.7936031e+117 -5.6716406e+117 -1.2696986e+117 -5.0793978e+117 -6.1397683e+117 -1.7135624e+117 -3.4338983e+117 -5.7301158e+117 -5.3686929e+117 -1.5719953e+117 -5.4072746e+117 -6.863728e+117 -6.8140435e+117 -5.3093351e+117 -5.3938496e+117 -6.5003209e+117 -6.6809941e+117 -6.3739663e+117 -6.3114738e+117 -6.4627907e+117 -6.5103105e+117 -6.3532512e+117 -6.2483386e+117 -6.1919784e+117 -6.2291228e+117 -6.2866906e+117 -6.2309652e+117 -6.077596e+117 -6.3835368e+117 -6.5381749e+117 -6.5882791e+117 -6.4254695e+117 -6.2683626e+117 -6.1096371e+117 -6.4670605e+117 -6.2910346e+117 -6.1116341e+117 -6.6378923e+117 -6.6885827e+117 -6.3261392e+117 -6.5072053e+117 -6.143571e+117 -5.9550619e+117 -5.9286384e+117 -6.5448662e+117 -6.3565187e+117 -6.1608918e+117 -6.7314581e+117 -6.7611241e+117 -6.1855326e+117 -6.3829719e+117 -6.5744881e+117 -6.207581e+117 -6.4067263e+117 -6.4258039e+117 -6.2293918e+117 -6.2487837e+117 -6.2645488e+117 -6.4747077e+117 -6.4981934e+117 -6.5675602e+117 -6.6229808e+117 -6.5336566e+117 -6.5592038e+117 -6.6224538e+117 -6.6981564e+117 -6.6170961e+117 -6.6683321e+117 -6.7449322e+117 -6.8407979e+117 -6.7309158e+117 -6.7971805e+117 -6.9471096e+117 -7.0555432e+117 -6.8659057e+117 -6.5248509e+117 -6.4489513e+117 -6.538465e+117 -6.2628921e+117 -6.325763e+117 -6.0648317e+117 -6.1182531e+117 -6.6415178e+117 -6.7729568e+117 -6.2759083e+117 -5.7827532e+117 -6.4483871e+117 -5.1775726e+117 -5.0361116e+117 -5.9226556e+117 -3.9828387e+117 -4.993042e+117 -6.3337318e+117 -6.5204087e+117 -4.9720974e+117 -4.2347426e+117 -4.6712259e+117 -6.1398618e+117 -6.574285e+117 -6.4171927e+117 -5.6202146e+117 -6.4045198e+117 -9.7223328e+117 -6.6513603e+117 -3.2714572e+117 -1.0124524e+117 -6.6909095e+117 -6.3823601e+117 -5.6356693e+117 -4.8282568e+117 -4.8995553e+117 -6.2264091e+117 -5.6310526e+117 -6.7605991e+117 -6.1426518e+117 -6.8802142e+117 -4.7069031e+116 -4.5287045e+117 9.9330924e+115 -5.3665835e+117 -6.5978307e+117 -5.9225416e+117 -6.2081606e+117 -6.7211111e+117 -6.9608425e+117 -5.8816765e+117 -7.9317433e+117 -6.0039398e+117 -5.8271504e+117 -5.8399379e+117 -7.6728426e+117 -6.5850718e+117 -5.211279e+117 -3.7925936e+116 -7.0733774e+117 -7.0568884e+117 -7.3849678e+117 -7.4614311e+117 -2.1940317e+117 -7.750817e+116 -6.2896143e+117 -6.3844309e+117 -6.5173328e+117 -6.8655195e+117 -6.5633646e+117 -6.91238e+117 -6.9035463e+117 -5.912144e+117 -5.655083e+117 -6.9130944e+117 -6.4760741e+117 -4.29706e+117 -1.0816307e+117 -5.3169958e+117 -5.0122311e+117 -5.2444277e+117 -5.4843019e+117 -9.1762693e+117 -5.8092196e+117 -6.1362643e+117 -6.0713595e+117 -5.998751e+117 -6.1430878e+117 -6.0519669e+117 -6.3145231e+117 -6.412252e+117 -6.2880907e+117 -1.0824591e+118 -4.3594121e+116 -5.2570524e+117 -5.9942153e+117 -5.8876937e+117 -6.3360477e+117 -6.5480671e+117 -6.1697082e+117 -6.3374348e+117 -6.0344946e+117 -6.3866798e+117 -1.5594125e+117 -1.4320353e+117 -7.0034664e+117 7.4231685e+115 -5.532086e+117 -5.2205298e+117 -5.6353029e+117 -5.4640073e+117 -5.4843424e+117 -5.6596311e+117 -5.674478e+117 -5.5024866e+117 -5.3315784e+117 -4.8832332e+117 -5.3486109e+117 -5.1671998e+117 -5.1549543e+117 -5.5230454e+117 -5.6973624e+117 -4.5559408e+117 -5.0058933e+117 -4.8303998e+117 -4.8359249e+117 -5.0152399e+117 -5.3818688e+117 -5.3642756e+117 -5.1880643e+117 -5.2021374e+117 -5.5430559e+117 -5.7189217e+117 -5.7429132e+117 -5.5627207e+117 -4.298421e+117 -4.516934e+117 -4.6759785e+117 -4.6803227e+117 -4.5184995e+117 -5.0335692e+117 -4.8566887e+117 -4.8633703e+117 -5.0426279e+117 -5.2185858e+117 -5.2318217e+117 -5.4167178e+117 -5.3990501e+117 -5.5814944e+117 -5.7674433e+117 -5.7967339e+117 -5.604443e+117 -4.5357526e+117 -4.695496e+117 -4.6998286e+117 -4.5380102e+117 -4.876934e+117 -4.8707221e+117 -5.0522529e+117 -5.0615102e+117 -5.2440762e+117 -5.4348282e+117 -5.4533719e+117 -5.2564047e+117 -5.8643449e+117 -5.8167978e+117 -5.7944894e+117 -5.7445046e+117 -5.8999647e+117 -5.933825e+117 -5.7734223e+117 -5.7930375e+117 -5.8204207e+117 -5.984774e+117 -5.950714e+117 -6.0127725e+117 -5.8452946e+117 -6.0417593e+117 -5.870118e+117 -6.0724074e+117 -5.8964227e+117 -5.9258476e+117 -6.1052382e+117 -6.0193012e+117 -6.0125977e+117 -5.9821714e+117 -6.1668058e+117 -6.1280464e+117 -6.0688778e+117 -6.0456902e+117 -6.2114265e+117 -6.1951288e+117 -6.1046482e+117 -6.1437026e+117 -6.3004101e+117 -6.2704461e+117 -6.3312554e+117 -6.1767139e+117 -6.3666578e+117 -6.2097811e+117 -6.1977079e+117 -6.2338158e+117 -6.3324887e+117 -6.3677192e+117 -6.2302255e+117 -6.2745255e+117 -6.4270844e+117 -6.5067289e+117 -6.3336019e+117 -6.3650732e+117 -6.5458778e+117 -6.5912031e+117 -6.3902281e+117 -6.4582952e+117 -6.6044748e+117 -6.5696767e+117 -6.4515358e+117 -6.2893849e+117 -6.3287612e+117 -6.2973258e+117 -6.2583544e+117 -6.1218499e+117 -6.1186302e+117 -6.4111963e+117 -6.0796367e+117 -6.3924286e+117 -6.3575271e+117 -6.4264761e+117 -6.5236555e+117 -5.967789e+117 -5.3904817e+117 -5.8598673e+117 -6.355633e+117 -6.1643752e+117 -6.4266869e+117 -6.4470898e+117 -6.4295572e+117 -6.441941e+117 -6.4581207e+117 -1.3152217e+117 -1.2271037e+117 -6.0582766e+117 -5.8084995e+117 -6.3852298e+117 -3.0426942e+117 -6.0972962e+117 -6.471821e+117 -6.5300613e+117 -6.5156874e+117 -6.6117194e+117 -6.62423e+117 -8.2462917e+117 -5.9784921e+117 -1.1735816e+116 -6.5823988e+117 -3.0259588e+116 -5.5476579e+117 -3.8588607e+116 -6.2104827e+117 -6.1340036e+117 -6.5066967e+117 -6.6824893e+117 -6.6793064e+117 -6.7117737e+117 -6.7233716e+117 -5.8617407e+117 -6.1643049e+117 -6.1785413e+117 -6.4642728e+117 -5.9826793e+117 -5.8734379e+117 -5.9457295e+117 -6.3543109e+117 -6.2774165e+116 -1.1044378e+117 -5.7224357e+117 -5.8891059e+116 -3.0550396e+117 -5.0801853e+117 -3.1730043e+117 -3.5143991e+117 -1.2211132e+117 -1.4426191e+117 -6.7665816e+117 -5.3187323e+117 -6.267406e+117 -6.221447e+117 -6.3626011e+117 -6.4153982e+117 -6.2683732e+117 -6.1640063e+117 -6.1088361e+117 -6.1530503e+117 -6.210386e+117 -6.2988522e+117 -6.1566498e+117 -6.4416229e+117 -6.4919566e+117 -6.3418663e+117 -6.1950947e+117 -6.012007e+117 -6.0458375e+117 -6.2161609e+117 -6.0469818e+117 -5.8749794e+117 -6.3828012e+117 -6.5382375e+117 -6.5883499e+117 -6.253177e+117 -6.4241531e+117 -6.078825e+117 -5.9019989e+117 -6.4670533e+117 -6.2898937e+117 -6.0995624e+117 -5.9049528e+117 -6.6381347e+117 -6.688756e+117 -6.3248132e+117 -6.1319198e+117 -6.5071755e+117 -5.9330807e+117 -6.3563664e+117 -6.1596855e+117 -6.1838751e+117 -6.3827718e+117 -6.2074982e+117 -6.2293472e+117 -6.4433624e+117 -6.4213509e+117 -6.358713e+117 -6.3606645e+117 -6.4317527e+117 -6.503625e+117 -6.4988156e+117 -6.5591116e+117 -6.5021125e+117 -6.5581773e+117 -6.6213081e+117 -6.6943739e+117 -6.6165698e+117 -6.6686436e+117 -6.7448945e+117 -6.8410335e+117 -6.731305e+117 -6.4379836e+117 -6.3799881e+117 -6.423757e+117 -6.4048158e+117 -6.3834563e+117 -6.2861205e+117 -6.6633166e+117 -6.29821e+117 -6.7592386e+117 -6.6597575e+117 -6.2499335e+117 -6.1936327e+117 -5.8703445e+117 -6.2728792e+117 -5.674295e+117 -5.0802515e+117 -4.6034063e+117 -6.0824163e+117 -7.1938719e+117 -6.0041553e+117 -6.2830019e+117 -5.0474739e+117 -6.4406373e+117 -5.0863998e+117 -4.9659941e+117 -5.0310562e+117 -5.8343072e+117 -9.2433412e+117 -5.0431278e+117 -6.3228945e+117 -6.5052884e+117 -4.9831762e+117 -4.1774665e+117 -8.1794167e+116 -5.7113131e+117 -6.0566801e+117 -6.5724566e+117 -6.4147295e+117 -5.5563979e+117 -4.0246898e+117 -6.3971475e+117 -3.2019487e+117 -6.6492003e+117 -3.1991072e+117 -4.0742974e+116 -5.6331942e+117 -5.2927976e+117 -5.542587e+117 -4.9073943e+117 -6.2161612e+117 -5.5461172e+117 -5.7985516e+117 -6.2563815e+117 -5.9220153e+117 -5.8429418e+117 -6.2580831e+117 -5.901921e+117 -2.3612743e+117 -8.2478464e+117 -5.6518208e+117 -5.8725709e+117 -5.5176985e+117 -5.0639998e+117 -7.0708019e+117 -7.4172045e+117 -6.1580752e+117 -6.0876504e+117 -6.1563708e+117 -6.0993121e+117 -6.1685346e+117 -6.3076407e+117 -6.2670753e+117 -6.4657421e+117 -6.7178317e+117 -6.8491214e+117 -6.5211697e+117 -6.3167194e+117 -6.6615081e+117 -6.7517414e+117 -6.8556829e+117 -1.3563443e+117 -4.4223557e+117 -1.4988673e+117 -1.477278e+117 -4.2303945e+117 -3.7795366e+116 -5.4344807e+117 -5.0316679e+117 -6.0389671e+117 -6.0692649e+117 -5.9790773e+117 -6.0059639e+117 -5.9665609e+117 -5.9496753e+117 -6.0066693e+117 -5.915042e+117 -6.0030532e+117 -5.9460514e+117 -6.036699e+117 -5.9101581e+117 -5.8837125e+117 -6.2533777e+117 -6.4231543e+117 -1.1651974e+118 -3.6726125e+117 -4.0916494e+117 -5.701829e+117 -5.6371044e+117 -6.3818866e+117 -6.2960678e+117 -6.3975542e+117 -6.0564597e+117 -6.2471106e+117 -5.1740454e+117 -5.2481496e+117 -1.2371221e+117 -1.4979542e+117 -4.2431193e+116 -3.2878405e+116 -5.6493186e+117 -5.47624e+117 -5.4834749e+117 -5.1951154e+117 -5.5066352e+117 -5.6889415e+117 -5.4270161e+117 -5.4459176e+117 -5.6127312e+117 -5.5888658e+117 -4.8743615e+117 -5.1427274e+117 -5.1329504e+117 -5.2998724e+117 -5.315356e+117 -5.6265859e+117 -5.4610536e+117 -5.4811541e+117 -5.6499884e+117 -5.6739322e+117 -5.5025443e+117 -5.328903e+117 -4.5552561e+117 -4.9886678e+117 -4.8212039e+117 -4.8256232e+117 -4.9967908e+117 -5.3457678e+117 -5.1724735e+117 -5.159819e+117 -5.523121e+117 -5.6966022e+117 -4.298552e+117 -4.5154676e+117 -4.5152723e+117 -4.6726965e+117 -4.6702396e+117 -5.0130701e+117 -4.8442635e+117 -4.8500947e+117 -5.0226715e+117 -5.3829477e+117 -5.364744e+117 -5.1882039e+117 -5.2035389e+117 -5.5430477e+117 -5.7188817e+117 -5.7428177e+117 -5.5626561e+117 -4.0673826e+117 -4.2524937e+117 -4.2526451e+117 -4.3829276e+117 -4.3824844e+117 -4.5312617e+117 -4.6875263e+117 -4.6912932e+117 -4.5325691e+117 -5.0351721e+117 -4.8583417e+117 -4.8650022e+117 -5.0441492e+117 -5.218625e+117 -5.2319046e+117 -5.4167182e+117 -5.3990528e+117 -4.5370201e+117 -4.6974037e+117 -4.7019897e+117 -4.5393938e+117 -4.8771125e+117 -4.8709038e+117 -5.0524238e+117 -5.0616706e+117 -5.8696909e+117 -5.8964848e+117 -5.8101477e+117 -5.8428975e+117 -5.7690049e+117 -5.7130474e+117 -5.7373603e+117 -5.7195588e+117 -5.6937101e+117 -5.8424252e+117 -5.8700626e+117 -5.7436351e+117 -5.8966994e+117 -5.9261869e+117 -5.7691258e+117 -5.7918811e+117 -5.8188427e+117 -5.9837702e+117 -5.9506436e+117 -6.0126874e+117 -5.8452229e+117 -6.0416611e+117 -5.870031e+117 -5.9692233e+117 -5.9555321e+117 -5.9313535e+117 -6.0965903e+117 -6.0683328e+117 -6.0093021e+117 -5.979218e+117 -6.1626179e+117 -6.121246e+117 -6.0718003e+117 -6.046572e+117 -6.2148684e+117 -6.1991895e+117 -6.1048095e+117 -6.1437819e+117 -6.3006895e+117 -6.2707576e+117 -6.1948016e+117 -6.1677377e+117 -6.1439413e+117 -6.2511953e+117 -6.1320239e+117 -6.2992134e+117 -6.3224588e+117 -6.360625e+117 -6.2273016e+117 -6.2782448e+117 -6.4312501e+117 -6.5095134e+117 -6.3370617e+117 -6.3656245e+117 -6.5459647e+117 -6.5896249e+117 -6.3900312e+117 -6.2906621e+117 -6.2355643e+117 -6.2605255e+117 -6.2521331e+117 -6.0705702e+117 -6.2401412e+117 -6.0362146e+117 -6.2911578e+117 -5.5285116e+117 -5.1661516e+117 -6.1600656e+117 -6.5728108e+117 -5.6954999e+117 -6.2939117e+117 -6.3752416e+117 -6.3498039e+117 -6.4047074e+117 -6.4778495e+117 -1.0912925e+117 -1.2214591e+117 -5.3392165e+117 -6.0423232e+117 -6.3348641e+117 -1.822477e+117 -6.0655636e+117 -6.3494026e+117 -6.444911e+117 -6.4304993e+117 -6.4431851e+117 -6.4594648e+117 -2.3781809e+116 -2.6397447e+116 -6.0150587e+117 -6.1247082e+117 -5.8183271e+117 -6.4714169e+117 -1.2846972e+117 -5.5363975e+117 -6.0795203e+117 -6.4608956e+117 -6.5301743e+117 -6.5158169e+117 -6.6111761e+117 -6.6243973e+117 -8.6379484e+117 -1.7515719e+117 -5.9272529e+117 -6.5781516e+117 -6.238225e+117 -6.0382058e+117 -6.0789815e+117 -6.5008181e+117 -6.1653199e+117 -6.1854134e+117 -6.1802455e+117 -5.8714135e+117 -5.8255444e+117 -5.9485126e+117 -3.5176926e+116 -1.0486802e+117 -2.8236227e+117 -3.2809929e+117 -3.3148785e+117 -6.5151491e+116 -6.1452408e+117 -6.1236598e+117 -6.2573341e+117 -6.3133881e+117 -6.1737222e+117 -6.0488695e+117 -6.0066044e+117 -6.0597486e+117 -6.1121411e+117 -6.2075024e+117 -6.0732332e+117 -6.3402419e+117 -6.3926072e+117 -6.254298e+117 -6.1171276e+117 -5.9347337e+117 -5.9756795e+117 -6.1404328e+117 -6.2979555e+117 -5.9810458e+117 -6.4407814e+117 -6.491e+117 -6.340809e+117 -6.1785673e+117 -6.0147917e+117 -5.818128e+117 -5.8473432e+117 -6.0345799e+117 -6.2156872e+117 -5.8502593e+117 -5.6553037e+117 -6.3828228e+117 -6.5383874e+117 -6.588508e+117 -6.2526682e+117 -6.0668179e+117 -6.4241141e+117 -5.8775309e+117 -6.2897891e+117 -6.0979736e+117 -5.8952887e+117 -6.3247039e+117 -6.1307005e+117 -5.9249648e+117 -6.1595854e+117 -6.1837775e+117 -6.4411287e+117 -6.3980344e+117 -6.2607417e+117 -6.2565575e+117 -6.343591e+117 -6.3844848e+117 -6.3091528e+117 -6.3442022e+117 -6.4003181e+117 -6.4559996e+117 -6.4915099e+117 -6.5504949e+117 -6.4994258e+117 -6.5582999e+117 -6.6212749e+117 -6.6943143e+117 -6.616736e+117 -6.4235285e+117 -6.3649968e+117 -6.3608015e+117 -6.3675788e+117 -6.1332283e+117 -5.9490559e+117 -6.2721184e+117 -6.2948981e+117 -6.3365298e+117 -6.2844552e+117 -6.1642171e+117 -6.4419505e+117 -6.3419544e+117 -6.1786538e+117 -6.0335357e+117 -5.7615704e+117 -5.0366772e+117 -6.0905717e+117 -5.5455407e+117 -5.7926429e+117 -6.1335132e+117 -6.0052079e+117 -6.1878502e+117 -4.951604e+117 -6.2465329e+117 -6.0752793e+117 -4.3015059e+117 -1.2400483e+117 -3.2385194e+117 -1.2628235e+117 -2.6110128e+117 -6.1492105e+117 -5.4118881e+117 -6.2830573e+117 -4.8590886e+117 -6.4400198e+117 -5.0796121e+117 -5.0041957e+117 -4.8530555e+117 -5.0359193e+117 -5.8705435e+117 -1.0046102e+118 -5.0687181e+117 -6.321405e+117 -6.5041823e+117 -2.4816279e+116 -2.9578673e+117 -5.3840763e+117 -6.0510612e+117 -5.5499872e+117 -4.1276542e+117 -1.5504498e+117 -4.5208974e+116 -5.3369321e+117 -9.5839141e+117 -5.6257705e+117 -5.5410149e+117 -6.0604254e+117 -5.8191316e+117 -5.8007739e+117 -5.8291983e+117 -1.8548791e+117 -1.4605175e+117 -5.6793061e+117 -5.4232148e+117 -6.0136353e+117 -6.034302e+117 -5.9157649e+117 -5.9175447e+117 -6.0219173e+117 -5.9433896e+117 -5.9700548e+117 -5.9823003e+117 -6.012972e+117 -6.0475517e+117 -6.0150585e+117 -6.0457093e+117 -6.0800392e+117 -5.9880876e+117 -5.9888416e+117 -6.0315223e+117 -6.0322561e+117 -6.0674718e+117 -6.1000216e+117 -6.0653871e+117 -6.0968938e+117 -6.2449874e+117 -5.8871837e+117 -7.3700111e+117 -6.2234972e+117 -1.6466407e+117 -6.3496391e+117 -6.2841638e+117 -5.9964541e+117 -6.3759523e+117 -6.5639224e+117 -5.3959248e+117 -6.3430075e+117 -1.4947482e+117 -1.7062073e+117 -4.0492652e+116 -4.3321503e+117 -3.3385946e+116 -3.9545315e+116 -5.9871175e+117 -6.0045587e+117 -5.94573e+117 -5.9620566e+117 -6.0192433e+117 -6.0335765e+117 -5.9762941e+117 -5.989203e+117 -5.9078007e+117 -5.9322705e+117 -5.8730133e+117 -5.8947097e+117 -5.924321e+117 -5.9133226e+117 -5.9519183e+117 -5.930775e+117 -5.971048e+117 -5.8816884e+117 -5.8606446e+117 -5.8355973e+117 -5.9739136e+117 -5.7375772e+117 -5.7301864e+117 -6.1858321e+117 -6.6079231e+116 -3.9918937e+117 -1.3241677e+117 -5.6140022e+117 -6.3012888e+117 -6.0919913e+117 -6.1402236e+117 -6.3011758e+117 -6.2761278e+117 -6.2711734e+117 -6.2648107e+117 -6.1830103e+117 -5.7126661e+117 -5.856623e+117 -4.9886489e+117 -4.7171589e+117 -1.2119338e+117 -7.4652504e+116 -4.222034e+116 -3.6976439e+116 -4.2710558e+117 -5.7483954e+117 -5.6522506e+117 -5.6259891e+117 -5.7187157e+117 -5.6080763e+117 -5.5490342e+117 -5.4406153e+117 -5.4939252e+117 -5.4701392e+117 -5.3084739e+117 -5.5737248e+117 -5.4448637e+117 -5.4000872e+117 -5.1724568e+117 -5.561011e+117 -5.3942169e+117 -5.5468544e+117 -5.5689808e+117 -5.4109612e+117 -4.8692737e+117 -5.1241105e+117 -5.3317267e+117 -5.1377946e+117 -5.1222253e+117 -5.1141451e+117 -5.2720625e+117 -5.2858471e+117 -5.5934147e+117 -5.5282007e+117 -5.6125292e+117 -5.5107686e+117 -5.7727551e+117 -5.7975709e+117 -5.6957379e+117 -5.6739504e+117 -5.4269687e+117 -5.4437479e+117 -5.6056764e+117 -5.585319e+117 -4.557838e+117 -4.9731339e+117 -4.8115573e+117 -4.8159042e+117 -4.9800375e+117 -5.1468973e+117 -5.1373912e+117 -5.2968235e+117 -5.3117046e+117 -5.6260849e+117 -5.4609227e+117 -5.480982e+117 -5.6493345e+117 -5.6739169e+117 -5.5025329e+117 -5.3290744e+117 -4.3013592e+117 -4.6689895e+117 -4.6669189e+117 -4.5157851e+117 -4.5160944e+117 -4.9941444e+117 -4.8340069e+117 -4.8387387e+117 -5.0023173e+117 -5.346254e+117 -5.1728548e+117 -5.1599373e+117 -5.5231122e+117 -5.6965629e+117 -4.0699034e+117 -4.2540117e+117 -4.2530587e+117 -4.3819434e+117 -4.3829067e+117 -4.5301961e+117 -4.529596e+117 -4.6839519e+117 -4.6817273e+117 -5.0139429e+117 -4.8457132e+117 -4.8518381e+117 -5.0240005e+117 -5.3829658e+117 -5.3647413e+117 -5.1882011e+117 -5.2036379e+117 -4.0183422e+117 -4.1360379e+117 -4.1358294e+117 -4.0178e+117 -4.2602913e+117 -4.2604781e+117 -4.3894687e+117 -4.3893286e+117 -4.5326154e+117 -4.6897306e+117 -4.6932017e+117 -4.5338558e+117 -5.0353259e+117 -4.8585115e+117 -4.8651735e+117 -5.0443161e+117 -4.5371085e+117 -4.6975423e+117 -4.7021724e+117 -4.5395034e+117 -5.897204e+117 -5.8813059e+117 -5.923771e+117 -5.9108181e+117 -5.8120041e+117 -5.8323972e+117 -5.7784162e+117 -5.8672669e+117 -5.8496681e+117 -5.7372194e+117 -5.700099e+117 -5.7978011e+117 -5.6546047e+117 -5.6717769e+117 -5.8186734e+117 -5.7191089e+117 -5.6942275e+117 -5.8382603e+117 -5.8646894e+117 -5.742177e+117 -5.8975075e+117 -5.9253181e+117 -5.7671362e+117 -5.7918284e+117 -5.8187749e+117 -5.9836965e+117 -5.9506408e+117 -5.9281897e+117 -5.8858556e+117 -6.013011e+117 -6.0426839e+117 -5.9086317e+117 -5.9546702e+117 -5.9319204e+117 -6.0899775e+117 -6.0638492e+117 -6.0106422e+117 -5.9805021e+117 -6.1644807e+117 -6.1233603e+117 -6.0720541e+117 -6.0466793e+117 -6.2153028e+117 -6.199598e+117 -6.1630712e+117 -6.1972581e+117 -6.0779493e+117 -6.1681233e+117 -6.1436713e+117 -6.0558754e+117 -6.1629191e+117 -6.0619637e+117 -6.0923024e+117 -6.2000534e+117 -6.2418048e+117 -6.1253012e+117 -6.2871501e+117 -6.3252483e+117 -6.3638023e+117 -6.2299923e+117 -6.2786842e+117 -6.4317079e+117 -6.5098552e+117 -6.3374604e+117 -6.2471831e+117 -6.2860278e+117 -6.2728522e+117 -6.3009924e+117 -6.3115963e+117 -6.2180552e+117 -6.2347275e+117 -6.2494133e+117 -6.1097294e+117 -5.5920932e+117 -5.1706039e+117 -5.2641865e+117 -5.3219137e+117 -6.2485916e+117 -6.2394989e+117 -6.2217015e+117 -6.2249864e+117 -6.2530379e+117 -6.2123419e+117 -6.1159124e+117 -6.1484125e+117 -6.0923582e+117 -6.1144347e+117 -6.2700166e+117 -6.238698e+117 -5.8880496e+117 -5.8548231e+117 -6.1092517e+117 -5.031665e+117 -5.2093224e+117 -5.3995935e+117 -5.2123876e+117 -6.2688245e+117 -6.2402095e+117 -6.2728893e+117 -6.3027652e+117 -6.2535953e+117 -6.2198851e+117 -3.9361636e+117 -4.8392995e+117 -4.0868543e+117 -5.734922e+117 -6.0625601e+117 -5.3632547e+117 -6.5332381e+117 -5.5967196e+117 -5.7690129e+117 -4.5291839e+117 -4.7217945e+117 -6.2559324e+117 -6.2791293e+117 -6.378827e+117 -6.3289272e+117 -6.3501592e+117 -6.3311759e+117 -6.3210608e+117 -6.405822e+117 -6.4719467e+117 -2.0962144e+116 -3.4259439e+116 -5.3156578e+117 -5.9252631e+117 -6.0503215e+117 -6.4066349e+117 -6.5737904e+116 -5.4242241e+117 -5.8815043e+117 -6.443094e+117 -6.44471e+117 -6.4307455e+117 -6.4431585e+117 -6.4596892e+117 -6.0155867e+117 -6.2004828e+117 -6.2280799e+117 -6.4769621e+117 -5.4916251e+117 -5.9456142e+117 -6.1010609e+117 -6.4594298e+117 -5.4264848e+116 -5.2318993e+117 -5.9290057e+117 -6.031977e+117 -6.1475069e+117 -6.0754081e+117 -6.1803753e+117 -6.1790888e+117 -5.8091449e+117 -5.7965895e+117 -3.2730627e+116 -3.063734e+117 -6.0197177e+117 -6.1500797e+117 -6.0214182e+117 -6.2045508e+117 -6.0726082e+117 -5.906283e+117 -5.889892e+117 -5.9502777e+117 -5.9829087e+117 -6.1140625e+117 -5.9808123e+117 -6.2409476e+117 -6.292891e+117 -6.1617263e+117 -6.0285702e+117 -5.8773495e+117 -5.8395066e+117 -5.8895608e+117 -5.9362282e+117 -6.0575181e+117 -6.2061595e+117 -5.905495e+117 -6.3389074e+117 -6.3912429e+117 -6.2528447e+117 -6.0996774e+117 -5.9446731e+117 -5.7508062e+117 -5.7864082e+117 -6.1396784e+117 -5.9681197e+117 -6.2979576e+117 -5.7929125e+117 -6.4408735e+117 -6.4910831e+117 -6.3408065e+117 -6.1779183e+117 -6.0020398e+117 -5.8222977e+117 -5.6096148e+117 -5.6330653e+117 -6.03326e+117 -5.8396704e+117 -6.2156461e+117 -5.6376221e+117 -6.252616e+117 -6.0658413e+117 -5.8672651e+117 -5.66068e+117 -6.0978709e+117 -5.8945502e+117 -6.130622e+117 -5.9247066e+117 -6.4411889e+117 -6.3962632e+117 -6.1920515e+117 -6.1583746e+117 -6.248918e+117 -6.2979266e+117 -6.2081685e+117 -6.2496051e+117 -6.3274514e+117 -6.3643572e+117 -6.2982863e+117 -6.3436672e+117 -6.3962611e+117 -6.4499999e+117 -6.4911625e+117 -6.5500116e+117 -6.4994373e+117 -6.4224241e+117 -6.3638737e+117 -6.3406202e+117 -6.2370146e+117 -6.2127894e+117 -6.2024712e+117 -6.2567948e+117 -6.2203183e+117 -6.0977504e+117 -5.8969834e+117 -5.4373083e+117 -5.8657578e+117 -5.9611047e+117 -6.2365209e+117 -6.2637403e+117 -4.5041412e+117 -4.7139666e+117 -5.8711513e+117 -6.2110961e+117 -6.2748769e+117 -6.3165293e+117 -6.2137675e+117 -5.8881479e+117 -5.0626229e+117 -4.795396e+117 -6.3265598e+117 -5.711707e+117 -6.1575181e+117 -5.2647134e+117 -4.9029851e+117 -2.9850107e+117 -1.2199029e+117 -4.7650859e+117 -1.4216027e+117 -5.6320737e+117 -6.1256945e+117 -6.1013843e+117 -5.3790789e+117 -6.1869079e+117 -3.5291996e+117 -6.2445765e+117 -5.9961102e+117 -5.2817025e+117 -4.0996874e+117 -4.2001172e+116 -3.176456e+117 -2.8164871e+116 -8.3690365e+116 -6.1601634e+117 -5.0281226e+117 -1.5074476e+117 -4.8424466e+117 -4.510636e+117 -4.8890223e+117 -4.854853e+117 -5.873753e+117 -1.1339069e+117 -3.6509685e+117 -5.3572738e+117 -4.1373164e+117 -3.1514017e+117 -1.4237065e+117 -9.7493586e+117 -1.0021586e+118 -6.1517836e+117 -6.0720323e+117 -5.7812091e+117 -8.2035012e+116 -5.8564529e+117 -5.8699985e+117 -5.9265886e+117 -5.9054297e+117 -5.965446e+117 -5.7334889e+117 -5.7399081e+117 -5.7391982e+117 -5.9420771e+117 -5.8713388e+117 -5.8748288e+117 -5.9418586e+117 -5.8494212e+117 -5.876522e+117 -5.8887234e+117 -5.9194399e+117 -5.9560374e+117 -5.9208305e+117 -5.952497e+117 -5.9891591e+117 -5.932813e+117 -5.9069088e+117 -5.9201308e+117 -5.9479718e+117 -5.9272029e+117 -5.9546926e+117 -5.9237728e+117 -5.949867e+117 -5.9769195e+117 -5.9703871e+117 -5.9981291e+117 -5.990201e+117 -5.9706366e+117 -5.9551186e+117 -5.9925326e+117 -5.9764005e+117 -5.9944558e+117 -6.0133383e+117 -6.0293538e+117 -6.0104886e+117 -6.045119e+117 -6.0295522e+117 -6.0452378e+117 -6.0611021e+117 -6.0156963e+117 -6.0339715e+117 -6.0070562e+117 -6.0249536e+117 -6.0496392e+117 -6.0649379e+117 -6.0403014e+117 -6.0550548e+117 -6.1693838e+117 -5.7341865e+117 -7.5538514e+117 -1.3140523e+117 -4.4635712e+116 -6.2446721e+117 -6.1839997e+117 -6.2676775e+117 -6.2922235e+117 -5.9020708e+117 -5.8964961e+117 -6.1357082e+117 -6.2454316e+117 -6.1945787e+117 -6.1113877e+117 -5.4802083e+117 -5.0553278e+117 -5.7861835e+117 -5.8364659e+117 -4.2264766e+117 -4.584996e+117 -3.7375133e+116 -4.6624149e+116 -4.2598037e+117 -5.9577273e+117 -5.9666321e+117 -5.9384874e+117 -5.9301135e+117 -5.9748408e+117 -5.9832471e+117 -5.954943e+117 -5.9467664e+117 -5.9902628e+117 -5.9979048e+117 -5.9689324e+117 -5.9617385e+117 -6.0047748e+117 -6.011535e+117 -5.9819868e+117 -5.9756931e+117 -5.8718841e+117 -5.8864892e+117 -5.8501972e+117 -5.8631137e+117 -5.881738e+117 -5.874572e+117 -5.8987284e+117 -5.9106664e+117 -5.8857374e+117 -5.8525478e+117 -5.8413729e+117 -5.822071e+117 -5.9206073e+117 -5.9311872e+117 -5.9048496e+117 -5.8950135e+117 -5.9405087e+117 -5.9498324e+117 -5.9226879e+117 -5.9139677e+117 -5.7565482e+117 -5.9425029e+117 -5.6944634e+117 -5.4358059e+117 -5.5727745e+117 -6.1282679e+117 -6.2279226e+117 -6.1990444e+117 -6.1038061e+117 -2.1465435e+116 -3.0779405e+116 -6.2759692e+117 -5.6980167e+117 -6.1560976e+117 -6.0861687e+117 -6.202815e+117 -6.2811382e+117 -6.2761163e+117 -6.275309e+117 -5.8443056e+117 -5.600044e+117 -1.7893559e+117 -1.3371683e+117 -4.3918566e+117 -7.5202494e+116 -4.2593114e+116 -3.7771112e+115 -4.0620568e+117 -4.2740989e+117 -5.7359395e+117 -5.7933492e+117 -5.7516279e+117 -5.8099341e+117 -5.6587554e+117 -5.644714e+117 -5.6891836e+117 -5.7038743e+117 -5.6314558e+117 -5.6750852e+117 -5.6174848e+117 -5.6597287e+117 -5.6002038e+117 -5.7584581e+117 -5.7039972e+117 -5.7208186e+117 -5.7772214e+117 -5.6903488e+117 -5.56713e+117 -5.6555747e+117 -5.5798042e+117 -5.5549923e+117 -5.5411666e+117 -5.5235431e+117 -5.5931649e+117 -5.443857e+117 -5.2814112e+117 -5.4091864e+117 -5.4911161e+117 -5.5328801e+117 -5.4989107e+117 -5.5102419e+117 -5.4172395e+117 -5.5449722e+117 -5.4867451e+117 -5.4714194e+117 -5.506404e+117 -5.5207218e+117 -5.3948649e+117 -5.3117211e+117 -5.3317463e+117 -5.6056958e+117 -5.5797857e+117 -5.6193869e+117 -5.5669019e+117 -5.4249551e+117 -5.1548009e+117 -5.5152757e+117 -5.3699147e+117 -5.381389e+117 -5.5298659e+117 -5.4094711e+117 -5.2495119e+117 -4.8704292e+117 -5.1093549e+117 -5.0889454e+117 -5.0985572e+117 -5.105259e+117 -5.2602905e+117 -5.2480842e+117 -5.3966984e+117 -5.5458658e+117 -5.5666174e+117 -5.4125044e+117 -4.5657569e+117 -4.7507064e+117 -4.9495677e+117 -4.9542924e+117 -4.7465685e+117 -4.9622123e+117 -4.8077317e+117 -4.8084124e+117 -4.966545e+117 -5.2276456e+117 -5.1275428e+117 -5.1362298e+117 -5.2435454e+117 -5.3438606e+117 -5.431385e+117 -5.2537623e+117 -5.1440241e+117 -5.1263971e+117 -5.1184328e+117 -5.2702474e+117 -5.282548e+117 -5.6300869e+117 -5.6013812e+117 -5.5903387e+117 -5.6411489e+117 -5.5748505e+117 -5.537649e+117 -5.6107394e+117 -5.6513461e+117 -5.6624045e+117 -5.5548589e+117 -5.5283454e+117 -5.5189343e+117 -5.5654407e+117 -5.7776483e+117 -5.7638889e+117 -5.8232289e+117 -5.8381958e+117 -5.8514302e+117 -5.8022053e+117 -5.790188e+117 -5.8638873e+117 -5.7401336e+117 -5.6923505e+117 -5.703689e+117 -5.7517224e+117 -5.7151765e+117 -5.6811207e+117 -5.6693136e+117 -5.7281e+117 -5.4274162e+117 -5.4436977e+117 -5.6046915e+117 -5.5846132e+117 -4.3076566e+117 -4.6651197e+117 -4.5182881e+117 -4.6638535e+117 -4.5166503e+117 -4.9774384e+117 -4.8221534e+117 -4.8274589e+117 -4.9844535e+117 -5.1472133e+117 -5.1376892e+117 -5.2969441e+117 -5.3118354e+117 -5.6260552e+117 -5.4608735e+117 -5.4809263e+117 -5.6492983e+117 -5.329052e+117 -4.0740345e+117 -4.2576845e+117 -4.3852821e+117 -4.3842749e+117 -4.255432e+117 -4.6804248e+117 -4.6781218e+117 -4.53046e+117 -4.5310218e+117 -4.9947899e+117 -4.8351497e+117 -4.8398209e+117 -5.002922e+117 -5.3462674e+117 -5.1728594e+117 -5.1599453e+117 -3.8503468e+117 -4.021293e+117 -4.1381659e+117 -4.1374176e+117 -4.0202421e+117 -4.2619167e+117 -4.2610415e+117 -4.3888416e+117 -4.3901291e+117 -4.5318797e+117 -4.5308192e+117 -4.6856716e+117 -4.6834941e+117 -5.0140364e+117 -4.8458755e+117 -4.852007e+117 -5.0241495e+117 -4.022697e+117 -4.138881e+117 -4.1387928e+117 -4.0224657e+117 -4.2607306e+117 -4.2609453e+117 -4.3900614e+117 -4.3899489e+117 -4.5327231e+117 -4.6899074e+117 -4.6933635e+117 -4.5339598e+117 -5.9069844e+117 -5.9154989e+117 -5.8910943e+117 -5.8991083e+117 -5.9417096e+117 -5.9352459e+117 -5.9219733e+117 -5.9288321e+117 -5.8140924e+117 -5.8263591e+117 -5.7922947e+117 -5.8371015e+117 -5.8482321e+117 -5.7656349e+117 -5.8751747e+117 -5.8841041e+117 -5.8569461e+117 -5.8665156e+117 -5.6824847e+117 -5.778007e+117 -5.7596709e+117 -5.6367003e+117 -5.623219e+117 -5.7959023e+117 -5.6564716e+117 -5.6732871e+117 -5.8157678e+117 -5.7183681e+117 -5.6937578e+117 -5.8388203e+117 -5.8656644e+117 -5.7421237e+117 -5.8975123e+117 -5.9252515e+117 -5.7670431e+117 -5.8562369e+117 -5.9728984e+117 -5.8648498e+117 -5.847549e+117 -5.8473179e+117 -5.956869e+117 -5.9582515e+117 -5.9843796e+117 -5.8840143e+117 -6.0063426e+117 -6.037001e+117 -5.9082003e+117 -5.9560149e+117 -5.9324069e+117 -6.0919002e+117 -6.0655183e+117 -6.0107968e+117 -5.980638e+117 -6.1647477e+117 -6.1236586e+117 -6.1643958e+117 -6.1975854e+117 -6.0682488e+117 -6.1573623e+117 -6.1263673e+117 -6.1342662e+117 -6.0406285e+117 -6.0372741e+117 -6.1375555e+117 -6.044893e+117 -6.0815299e+117 -6.1828157e+117 -6.2418912e+117 -6.1243464e+117 -6.2891858e+117 -6.325677e+117 -6.3642574e+117 -6.2303748e+117 -6.2225658e+117 -6.2521755e+117 -6.2507208e+117 -6.2286006e+117 -6.2483308e+117 -6.2664563e+117 -6.2804488e+117 -6.2760541e+117 -6.2430834e+117 -6.2855464e+117 -6.3018576e+117 -6.3062865e+117 -6.2405065e+117 -6.2382719e+117 -6.2272549e+117 -6.2195383e+117 -6.2346171e+117 -6.2374074e+117 -6.2391555e+117 -6.2585359e+117 -6.2644603e+117 -6.2495909e+117 -6.2568774e+117 -6.2457977e+117 -6.1747117e+117 -6.2071143e+117 -6.2173089e+117 -6.2247104e+117 -5.9173105e+117 -6.0632781e+117 -5.9497837e+117 -5.605345e+117 -5.8560967e+117 -5.1651114e+117 -5.5485176e+117 -4.7809126e+117 -4.6217149e+117 -4.4731572e+117 -4.4199419e+117 -6.2477792e+117 -6.1743843e+117 -6.1303804e+117 -6.205611e+117 -6.2207426e+117 -6.1037621e+117 -6.2226953e+117 -5.8641593e+117 -6.1214958e+117 -5.3386849e+117 -5.8898138e+117 -5.3469758e+117 -6.1525055e+117 -6.1420701e+117 -5.6719275e+117 -5.4807826e+117 -5.8270926e+117 -5.9981857e+117 -6.0828447e+117 -6.1011286e+117 -6.1937518e+117 -5.7317932e+117 -2.708506e+117 -3.7805805e+117 -3.7143795e+117 -3.5940271e+117 -6.2571954e+117 -6.2161805e+117 -6.254713e+117 -6.2847632e+117 -6.2286587e+117 -6.1969108e+117 -3.743243e+117 -5.2074425e+117 -1.3124049e+117 -5.9457718e+117 -1.7190583e+117 -5.7801399e+117 -5.2825804e+117 -6.5893016e+117 -5.5928526e+117 -1.4955583e+117 -1.4738798e+117 -3.7384088e+117 -5.6618318e+117 -5.7125247e+117 -4.8638771e+117 -6.2497314e+117 -6.1029353e+117 -6.2202214e+117 -6.280261e+117 -6.3796929e+117 -6.3319224e+117 -6.3505239e+117 -6.3336209e+117 -6.3207927e+117 -6.4062589e+117 -6.4718359e+117 -5.9207474e+117 -5.8706996e+117 -6.0448388e+117 -6.4127227e+117 -5.3878371e+117 -5.7012194e+117 -5.8586219e+117 -6.452476e+117 -6.2129064e+117 -6.2781578e+117 -6.2383381e+117 -5.9366871e+117 -6.0920314e+117 -6.1026236e+117 -5.1235857e+117 -5.3568309e+117 -6.1552302e+117 -6.1536691e+117 -6.1761339e+117 -5.7790151e+117 -4.4809427e+117 -4.2638731e+117 -6.0153715e+117 -5.8800634e+117 -5.9668983e+117 -6.1414192e+117 -6.0974893e+117 -5.9408538e+117 -5.7277642e+117 -5.9147135e+117 -6.0460766e+117 -6.1928959e+117 -6.0656139e+117 -5.9328485e+117 -5.7355451e+117 -5.7274664e+117 -5.7857657e+117 -5.8106671e+117 -5.9693917e+117 -6.1130901e+117 -5.8185688e+117 -6.2405737e+117 -6.2917302e+117 -6.1604112e+117 -6.014056e+117 -5.8630656e+117 -5.7004472e+117 -5.6677862e+117 -5.7113017e+117 -6.056291e+117 -5.8933773e+117 -6.2061149e+117 -5.7273372e+117 -6.3389372e+117 -6.3912869e+117 -6.2527969e+117 -6.0986687e+117 -5.9317607e+117 -5.7615262e+117 -5.5555122e+117 -5.5839734e+117 -6.1396192e+117 -5.9667687e+117 -5.7823045e+117 -5.5897407e+117 -6.1778634e+117 -6.0007892e+117 -5.8116481e+117 -5.6141814e+117 -5.3902963e+117 -5.4081831e+117 -6.0331385e+117 -5.8387685e+117 -5.6313311e+117 -6.0657435e+117 -5.8662696e+117 -5.6550505e+117 -5.8945425e+117 -5.9247222e+117 -6.3963238e+117 -6.1148105e+117 -6.0795389e+117 -6.1221395e+117 -6.1664422e+117 -6.2052848e+117 -6.1502759e+117 -6.2340776e+117 -6.2834361e+117 -6.2007652e+117 -6.2491979e+117 -6.3241686e+117 -6.3603955e+117 -6.297727e+117 -6.3437933e+117 -6.396127e+117 -6.4497529e+117 -6.3388556e+117 -5.8610966e+117 -6.0631126e+117 -6.1281773e+117 -5.7255458e+117 -6.1825279e+117 -6.1757425e+117 -6.2207439e+117 -6.1411325e+117 -5.9610207e+117 -6.0923652e+117 -5.6171213e+117 -4.8711821e+117 -3.5189971e+117 -4.6188203e+117 -4.9149383e+117 -6.1569042e+117 -6.5537195e+116 -4.6352186e+117 -4.4216674e+117 -5.8178896e+117 -6.1928935e+117 -6.2690172e+117 -6.3065943e+117 -6.1918707e+117 -5.743244e+117 -4.9081948e+117 -1.0961589e+117 -3.6796707e+117 -6.3252748e+117 -5.8432057e+117 -4.8955973e+117 -6.1545394e+117 -2.5109127e+117 -4.8404373e+117 -2.8133337e+117 -3.3359437e+116 -4.739185e+117 -3.5483985e+117 -4.7138264e+116 -5.7601348e+117 -6.1233545e+117 -6.1055297e+117 -5.1459451e+117 -1.9327713e+117 -3.4558637e+117 -5.9874116e+117 -5.190012e+117 -1.2783769e+117 -4.0854742e+117 -4.997711e+117 -8.0297938e+116 -4.4777194e+116 -4.4509406e+117 -1.911934e+117 -4.8782438e+117 -3.4623203e+117 -3.667308e+117 -3.2647225e+117 -3.0864879e+117 -1.0262799e+118 -6.1495447e+117 -5.7620195e+117 -5.7723158e+117 -5.829381e+117 -5.8105175e+117 -5.9329714e+117 -5.6823949e+117 -5.4302756e+117 -5.5808878e+117 -5.5796458e+117 -5.7728032e+117 -5.7678023e+117 -5.8826648e+117 -5.849114e+117 -5.8555467e+117 -5.8930945e+117 -5.8995314e+117 -5.8555763e+117 -5.8502378e+117 -5.8948176e+117 -5.7639019e+117 -5.785775e+117 -5.8858299e+117 -5.8581917e+117 -5.8021703e+117 -5.8287856e+117 -5.9318315e+117 -5.9088697e+117 -5.8660826e+117 -5.9699376e+117 -5.9504512e+117 -5.9864057e+117 -6.0025164e+117 -5.8740062e+117 -5.9027069e+117 -5.884771e+117 -5.8915643e+117 -5.9009148e+117 -5.9083988e+117 -5.9290408e+117 -5.9149372e+117 -5.9220331e+117 -5.9362234e+117 -5.8831977e+117 -5.8991316e+117 -5.8911153e+117 -5.9075536e+117 -5.920183e+117 -5.9118245e+117 -5.9336557e+117 -5.9241328e+117 -5.9478914e+117 -5.9598283e+117 -5.9533337e+117 -5.9411325e+117 -5.9447837e+117 -5.9564937e+117 -5.9345546e+117 -5.9456892e+117 -5.9700103e+117 -5.9799496e+117 -5.9744607e+117 -5.9643846e+117 -5.966291e+117 -5.9760703e+117 -5.9553832e+117 -5.964967e+117 -5.927898e+117 -5.9510123e+117 -5.9895471e+117 -5.9705117e+117 -6.0062239e+117 -6.0224911e+117 -5.9887151e+117 -5.9931463e+117 -5.9835548e+117 -5.998369e+117 -6.0024557e+117 -6.0112099e+117 -6.0070824e+117 -6.0158114e+117 -5.9845975e+117 -5.9941991e+117 -5.973217e+117 -5.9825308e+117 -6.0027626e+117 -6.0114623e+117 -5.9910313e+117 -5.9995057e+117 -6.0191827e+117 -6.0275149e+117 -6.0235764e+117 -6.0319009e+117 -6.0354581e+117 -6.042797e+117 -6.039302e+117 -6.0466344e+117 -6.0191168e+117 -6.0275532e+117 -6.0149632e+117 -6.0068659e+117 -6.0221146e+117 -6.0290097e+117 -6.034771e+117 -6.0419236e+117 -6.1309696e+117 -6.110247e+117 -6.2316458e+117 -6.2056831e+117 -5.7312301e+117 -3.5995888e+116 -6.2252439e+117 -6.1754744e+117 -6.1443909e+117 -6.047408e+117 -5.9828917e+117 -6.2332173e+117 -6.1607466e+117 -6.267166e+117 -4.9683525e+117 -5.4085364e+117 -5.7701268e+117 -6.0102765e+117 -5.3490737e+117 -1.2489073e+117 -4.5479651e+117 -1.0613619e+117 -9.0727668e+116 -4.1480728e+117 -2.1247625e+117 -4.2630441e+117 -4.0576309e+117 -5.9395185e+117 -5.9352449e+117 -5.9202373e+117 -5.924375e+117 -5.9478657e+117 -5.943628e+117 -5.9284497e+117 -5.9327374e+117 -5.9561551e+117 -5.9517752e+117 -5.9365548e+117 -5.9409649e+117 -5.9642564e+117 -5.9602389e+117 -5.9451154e+117 -5.9491337e+117 -5.9713852e+117 -5.9677168e+117 -5.9523957e+117 -5.9558996e+117 -5.9785406e+117 -5.9749279e+117 -5.9593788e+117 -5.9630005e+117 -5.981818e+117 -5.985436e+117 -5.9697285e+117 -5.9661481e+117 -5.9917651e+117 -5.988633e+117 -5.9729697e+117 -5.975968e+117 -5.8539748e+117 -5.8461894e+117 -5.8564064e+117 -5.8354436e+117 -5.8426384e+117 -5.8680359e+117 -5.8610488e+117 -5.8492031e+117 -5.8558814e+117 -5.8378796e+117 -5.8325424e+117 -5.819258e+117 -5.8813171e+117 -5.8745072e+117 -5.8616724e+117 -5.8680238e+117 -5.8738072e+117 -5.8873576e+117 -5.8930375e+117 -5.8793501e+117 -5.7805115e+117 -5.9033051e+117 -5.8979501e+117 -5.8838902e+117 -5.8889624e+117 -5.9133308e+117 -5.908282e+117 -5.8938571e+117 -5.8988032e+117 -5.9226087e+117 -5.917735e+117 -5.9030467e+117 -5.9078653e+117 -5.9313844e+117 -5.9270212e+117 -5.9123304e+117 -5.9166322e+117 -5.6692451e+117 -5.865295e+117 -5.8712521e+117 -5.6847604e+117 -5.9884599e+117 -6.0045653e+117 -5.4160318e+117 -5.1428021e+117 -5.580177e+117 -6.1303299e+117 -6.2204451e+117 -6.2010428e+117 -6.1048781e+117 -6.2732057e+117 -5.7789302e+117 -5.808886e+117 -6.0069572e+117 -5.9646445e+117 -6.1207406e+117 -8.0824459e+117 -5.9510725e+117 -6.1661838e+117 -6.2815498e+117 -6.2684618e+117 -6.2016216e+117 -6.2735898e+117 -6.2765165e+117 -6.2751365e+117 -6.2757637e+117 -6.987702e+117 -5.7202731e+117 -5.7802389e+116 -3.1738473e+116 -4.3489104e+117 -2.4205627e+116 -3.8479863e+117 -4.0665591e+117 -4.2810741e+117 -4.5026722e+117 -5.7295524e+117 -5.7376989e+117 -5.7576759e+117 -5.7661717e+117 -5.7872636e+117 -5.8224801e+117 -5.7960061e+117 -5.8315624e+117 -5.7452756e+117 -5.7739877e+117 -5.7530279e+117 -5.7819012e+117 -5.8039982e+117 -5.8398899e+117 -5.8122959e+117 -5.8485462e+117 -5.6531827e+117 -5.6740817e+117 -5.6600885e+117 -5.6811058e+117 -5.6392208e+117 -5.6597246e+117 -5.6463181e+117 -5.6671015e+117 -5.6810402e+117 -5.688622e+117 -5.7050259e+117 -5.7128849e+117 -5.6957227e+117 -5.7030073e+117 -5.7202552e+117 -5.7278255e+117 -5.6256407e+117 -5.6457676e+117 -5.6329751e+117 -5.6533416e+117 -5.6664415e+117 -5.6896232e+117 -5.6743572e+117 -5.6980004e+117 -5.6041192e+117 -5.632472e+117 -5.6128098e+117 -5.6190916e+117 -5.6389636e+117 -5.6458896e+117 -5.6524576e+117 -5.6592973e+117 -5.6747267e+117 -5.6820644e+117 -5.6277966e+117 -5.585656e+117 -5.7504152e+117 -5.7824454e+117 -5.7602429e+117 -5.7936269e+117 -5.7409635e+117 -5.6973806e+117 -5.7231648e+117 -5.7053337e+117 -5.7321347e+117 -5.6886599e+117 -5.7134031e+117 -5.7407686e+117 -5.7222019e+117 -5.7501091e+117 -5.7694541e+117 -5.7794234e+117 -5.8036188e+117 -5.8142638e+117 -5.6695499e+117 -5.7189764e+117 -5.5745878e+117 -5.593831e+117 -5.5810302e+117 -5.6000047e+117 -5.5662523e+117 -5.5515566e+117 -5.5584131e+117 -5.5691992e+117 -5.575918e+117 -5.538447e+117 -5.5562878e+117 -5.5450975e+117 -5.5628626e+117 -5.5268131e+117 -5.5077683e+117 -5.5480417e+117 -5.5872468e+117 -5.6063606e+117 -5.5941346e+117 -5.6135433e+117 -5.4551687e+117 -5.4914044e+117 -5.4340742e+117 -5.3678126e+117 -5.472068e+117 -5.2843376e+117 -5.2472117e+117 -5.3329248e+117 -5.4257963e+117 -5.5044086e+117 -5.5301614e+117 -5.5363073e+117 -5.5470398e+117 -5.5530934e+117 -5.5140937e+117 -5.5201825e+117 -5.4986141e+117 -5.4663937e+117 -5.5044608e+117 -5.4770091e+117 -5.5097613e+117 -5.5257576e+117 -5.5316348e+117 -5.5152039e+117 -5.4430671e+117 -5.433277e+117 -5.5421137e+117 -5.5592561e+117 -5.5482675e+117 -5.5657276e+117 -5.5009554e+117 -5.5082938e+117 -5.4927861e+117 -5.4851552e+117 -5.4540073e+117 -5.4864478e+117 -5.4939091e+117 -5.4777489e+117 -5.4696795e+117 -5.4377617e+117 -5.5033217e+117 -5.5210186e+117 -5.5103796e+117 -5.5276845e+117 -5.5170892e+117 -5.5242733e+117 -5.5342472e+117 -5.5413043e+117 -5.4026953e+117 -5.4205811e+117 -5.3540709e+117 -5.3350189e+117 -5.3693578e+117 -5.3879947e+117 -5.376645e+117 -5.3667737e+117 -5.4008029e+117 -5.4102882e+117 -5.6000739e+117 -5.6068276e+117 -5.619687e+117 -5.6265713e+117 -5.5766106e+117 -5.5946892e+117 -5.5832227e+117 -5.6013779e+117 -5.6134245e+117 -5.6333426e+117 -5.6202102e+117 -5.6402444e+117 -5.5639464e+117 -5.5701943e+117 -5.5815554e+117 -5.5881149e+117 -5.4195562e+117 -5.1502279e+117 -5.3608162e+117 -5.3549573e+117 -5.4921695e+117 -5.501925e+117 -4.8735996e+117 -5.0874441e+117 -5.2306972e+117 -5.2385246e+117 -5.0903976e+117 -5.5147317e+117 -5.3730173e+117 -5.3846318e+117 -5.5290091e+117 -5.4144571e+117 -5.2564706e+117 -4.774565e+117 -4.9415554e+117 -4.9479182e+117 -4.5811079e+117 -4.759273e+117 -4.9555542e+117 -4.8091975e+117 -4.8076943e+117 -4.958129e+117 -5.2036492e+117 -5.1104693e+117 -5.0802862e+117 -5.1684218e+117 -5.0907623e+117 -5.1028504e+117 -5.1092518e+117 -5.2589841e+117 -5.248101e+117 -5.3970987e+117 -5.5456351e+117 -5.5661092e+117 -5.4128217e+117 -4.3180771e+117 -4.5214831e+117 -4.5247742e+117 -4.6659195e+117 -4.6641707e+117 -4.7030433e+117 -4.8854652e+117 -5.0219503e+117 -5.0237117e+117 -4.8793337e+117 -5.0281055e+117 -4.9653337e+117 -4.8162253e+117 -4.8178276e+117 -4.9701438e+117 -5.278705e+117 -5.2617871e+117 -5.2998624e+117 -5.3177993e+117 -5.2337605e+117 -5.2193207e+117 -5.1630814e+117 -5.1717061e+117 -5.1819568e+117 -5.1765136e+117 -5.2404525e+117 -5.2465118e+117 -5.2874865e+117 -5.3294328e+117 -5.3387057e+117 -5.2950433e+117 -5.4162883e+117 -5.3815952e+117 -5.4226558e+117 -5.484303e+117 -5.4491623e+117 -5.4561725e+117 -5.4923518e+117 -5.2991768e+117 -5.3431203e+117 -5.1854658e+117 -5.2501036e+117 -5.1271922e+117 -5.1188261e+117 -5.2708867e+117 -5.2831782e+117 -5.6251256e+117 -5.6450994e+117 -5.630554e+117 -5.6504012e+117 -5.5993141e+117 -5.605317e+117 -5.6174791e+117 -5.6234539e+117 -5.5881647e+117 -5.6063081e+117 -5.5936108e+117 -5.6118098e+117 -5.6360727e+117 -5.656074e+117 -5.6422235e+117 -5.6625392e+117 -5.5739909e+117 -5.578788e+117 -5.59197e+117 -5.5964716e+117 -5.5565992e+117 -5.5389575e+117 -5.609593e+117 -5.6142461e+117 -5.6279535e+117 -5.6330113e+117 -5.6678323e+117 -5.647148e+117 -5.6525211e+117 -5.6734751e+117 -5.6578559e+117 -5.6789275e+117 -5.55305e+117 -5.5706495e+117 -5.55835e+117 -5.575953e+117 -5.5462977e+117 -5.5520659e+117 -5.5343169e+117 -5.528579e+117 -5.5361645e+117 -5.5411946e+117 -5.5237984e+117 -5.5193926e+117 -5.5635993e+117 -5.5694519e+117 -5.5815096e+117 -5.5875882e+117 -5.7722241e+117 -5.7797894e+117 -5.802063e+117 -5.8098369e+117 -5.7588891e+117 -5.7880066e+117 -5.7654756e+117 -5.7950304e+117 -5.8187038e+117 -5.8552658e+117 -5.8260008e+117 -5.8628672e+117 -5.8332633e+117 -5.8704743e+117 -5.8413754e+117 -5.8788872e+117 -5.8477096e+117 -5.8542612e+117 -5.8853117e+117 -5.8918774e+117 -5.7978981e+117 -5.8034308e+117 -5.8283225e+117 -5.833897e+117 -5.7858436e+117 -5.815973e+117 -5.7921662e+117 -5.8224586e+117 -5.860141e+117 -5.8981041e+117 -5.8660025e+117 -5.9043684e+117 -5.7336052e+117 -5.7596311e+117 -5.739816e+117 -5.7658501e+117 -5.6884621e+117 -5.6943409e+117 -5.710562e+117 -5.7167024e+117 -5.6998593e+117 -5.7222293e+117 -5.7452894e+117 -5.7507818e+117 -5.771473e+117 -5.7769807e+117 -5.7083826e+117 -5.7334278e+117 -5.7144393e+117 -5.7396859e+117 -5.6763332e+117 -5.6830095e+117 -5.6980962e+117 -5.7049422e+117 -5.6649652e+117 -5.6861676e+117 -5.6704671e+117 -5.6920169e+117 -5.720651e+117 -5.7277744e+117 -5.7462042e+117 -5.7536359e+117 -5.4274069e+117 -5.4436546e+117 -5.6046249e+117 -5.5845731e+117 -4.0809971e+117 -4.2646006e+117 -4.390693e+117 -4.3880025e+117 -4.2613108e+117 -4.6751928e+117 -4.5316878e+117 -4.6731979e+117 -4.5306866e+117 -4.9781897e+117 -4.8231154e+117 -4.8285723e+117 -4.9852155e+117 -5.1472577e+117 -5.1377307e+117 -5.2969272e+117 -5.3118159e+117 -3.855226e+117 -4.0250195e+117 -4.0229676e+117 -4.1397706e+117 -4.1420128e+117 -4.2652652e+117 -4.3926461e+117 -4.3916293e+117 -4.2632149e+117 -4.6819378e+117 -4.6796849e+117 -4.531977e+117 -4.5325323e+117 -4.9948774e+117 -4.8352719e+117 -4.8399507e+117 -5.0029932e+117 -3.7995159e+117 -3.9123157e+117 -3.9106516e+117 -3.7968465e+117 -4.0256489e+117 -4.140984e+117 -4.1404616e+117 -4.0248979e+117 -4.26241e+117 -4.2615597e+117 -4.3895835e+117 -4.3910091e+117 -4.5319946e+117 -4.5309213e+117 -4.6858157e+117 -4.6836583e+117 -4.0230047e+117 -4.1393692e+117 -4.1392191e+117 -4.0227392e+117 -4.2607709e+117 -4.2609873e+117 -4.3901217e+117 -4.3900114e+117 -5.9131165e+117 -5.917445e+117 -5.9215158e+117 -5.9257335e+117 -5.8972333e+117 -5.9011644e+117 -5.9050217e+117 -5.9093769e+117 -5.9487152e+117 -5.9518021e+117 -5.9421756e+117 -5.9456079e+117 -5.9288701e+117 -5.9322115e+117 -5.9354666e+117 -5.9391443e+117 -5.8023389e+117 -5.8150741e+117 -5.8218651e+117 -5.8281197e+117 -5.8347384e+117 -5.7863783e+117 -5.8403256e+117 -5.8464834e+117 -5.8575026e+117 -5.85199e+117 -5.8803913e+117 -5.8850489e+117 -5.8937591e+117 -5.8893376e+117 -5.8618138e+117 -5.8666457e+117 -5.8712959e+117 -5.8762847e+117 -5.7303244e+117 -5.737475e+117 -5.6060577e+117 -5.6105408e+117 -5.7446861e+117 -5.7310524e+117 -5.6124376e+117 -5.6062211e+117 -5.7746344e+117 -5.755668e+117 -5.6375841e+117 -5.6232929e+117 -5.7952333e+117 -5.6557078e+117 -5.6725354e+117 -5.8155846e+117 -5.7183511e+117 -5.6937449e+117 -5.8388686e+117 -5.8657321e+117 -5.8500098e+117 -5.9631691e+117 -5.860113e+117 -5.8405208e+117 -5.8345309e+117 -5.8388921e+117 -5.9456944e+117 -5.9414237e+117 -5.9465856e+117 -5.9742507e+117 -5.8826121e+117 -6.0050255e+117 -6.037393e+117 -5.9078501e+117 -5.9561168e+117 -5.932444e+117 -6.0921482e+117 -6.0656929e+117 -6.1645651e+117 -6.0651068e+117 -6.1551413e+117 -6.2177555e+117 -6.2485525e+117 -6.1036931e+117 -6.1930791e+117 -6.115757e+117 -6.2046093e+117 -6.1023688e+117 -6.0182746e+117 -6.0342439e+117 -6.01681e+117 -6.2179163e+117 -6.1240249e+117 -6.1968244e+117 -6.0362572e+117 -6.0767303e+117 -6.1790403e+117 -6.241881e+117 -6.1242249e+117 -6.2895207e+117 -6.2446264e+117 -6.2334058e+117 -6.2174095e+117 -6.2357278e+117 -6.2356485e+117 -6.2084319e+117 -6.2397678e+117 -6.2450473e+117 -6.2395244e+117 -6.2129112e+117 -6.1993041e+117 -6.2460446e+117 -6.2481969e+117 -6.232628e+117 -6.2516635e+117 -6.2600404e+117 -6.2789933e+117 -6.2743464e+117 -6.2380718e+117 -6.2820906e+117 -6.3017354e+117 -6.3072783e+117 -6.2337656e+117 -6.2436418e+117 -6.2365376e+117 -6.2280461e+117 -6.2404145e+117 -6.2331593e+117 -6.2502201e+117 -6.268129e+117 -6.2704539e+117 -6.2563144e+117 -6.2511624e+117 -6.2405875e+117 -6.1711695e+117 -6.1249587e+117 -6.1558165e+117 -6.0586965e+117 -5.9700332e+117 -6.0571519e+117 -6.0305647e+117 -6.121876e+117 -6.0561158e+117 -6.0299861e+117 -6.084719e+117 -6.1921307e+117 -6.2010478e+117 -6.2007927e+117 -5.5702929e+117 -5.9735051e+117 -6.1472818e+117 -5.2945881e+117 -5.8977267e+117 -5.0925879e+117 -5.9597731e+117 -4.1423185e+117 -2.857751e+117 -2.6436595e+117 -3.9319251e+117 -6.1316856e+117 -5.9664016e+117 -6.1309197e+117 -6.1863168e+117 -6.2163584e+117 -6.2197576e+117 -5.9392407e+117 -6.144116e+117 -6.2080441e+117 -5.5515648e+117 -4.1252493e+117 -5.5755709e+117 -4.3911629e+117 -6.146967e+117 -6.1350127e+117 -4.7557504e+117 -4.4351688e+117 -5.5812692e+117 -5.8381359e+117 -6.0802584e+117 -6.0121157e+117 -6.053806e+117 -6.1389353e+117 -6.1685382e+117 -5.9538452e+117 -6.1729623e+117 -5.4924288e+117 -5.8860312e+117 -1.2118974e+117 -1.8474388e+117 -1.7687714e+117 -1.6554609e+117 -6.2379379e+117 -6.1928164e+117 -6.2509167e+117 -6.2840599e+117 -6.2264243e+117 -6.1926252e+117 -5.1968394e+117 -4.6248741e+116 -5.8128483e+116 -1.9050075e+117 -5.4427677e+117 -6.5881658e+117 -3.5315577e+116 -5.6925178e+116 -3.7041366e+117 -6.3922355e+117 -5.5728927e+117 -4.5870805e+117 -5.6057552e+117 -5.8430982e+117 -5.9535449e+117 -6.2498691e+117 -6.0844553e+117 -6.2018568e+117 -6.2808008e+117 -6.3329097e+117 -6.3343327e+117 -6.3212065e+117 -5.8572997e+117 -5.911043e+117 -6.0440999e+117 -5.6978783e+117 -4.0060228e+117 -5.8762998e+117 -6.2947574e+117 -6.2757983e+117 -6.10188e+117 -6.109727e+117 -5.2944999e+117 -6.1643279e+117 -4.485849e+117 -4.6011622e+117 -4.4551272e+117 -4.2672851e+117 -4.4542803e+117 -4.6028853e+117 -4.7527042e+117 -4.7476346e+117 -4.7218373e+117 -4.7184394e+117 -4.0565562e+117 -4.3352093e+117 -4.2190798e+117 -4.2177631e+117 -4.3345457e+117 -5.8738828e+117 -6.014491e+117 -5.964449e+117 -5.827852e+117 -5.722031e+117 -6.1411248e+117 -6.0908366e+117 -5.8996136e+117 -5.6686142e+117 -5.9700336e+117 -5.8444366e+117 -5.8742893e+117 -6.0034791e+117 -5.4290611e+117 -5.6332589e+117 -5.7789318e+117 -5.6747435e+117 -5.9126917e+117 -6.0392967e+117 -6.1925156e+117 -6.0647943e+117 -5.9223715e+117 -5.7723352e+117 -5.5791131e+117 -5.5716218e+117 -5.620637e+117 -5.6403708e+117 -5.9678756e+117 -5.8100715e+117 -6.1130503e+117 -5.6502019e+117 -6.2406647e+117 -6.2917746e+117 -6.1603553e+117 -6.0124176e+117 -5.8522874e+117 -5.6900394e+117 -5.519219e+117 -5.7113895e+117 -5.6746619e+117 -5.4889326e+117 -5.5237935e+117 -6.0562063e+117 -5.8921723e+117 -5.717818e+117 -5.5363492e+117 -6.0985942e+117 -5.9304408e+117 -5.7512362e+117 -5.5640611e+117 -5.3500069e+117 -5.3710984e+117 -5.9666541e+117 -5.7815919e+117 -5.5829026e+117 -5.37682e+117 -6.000676e+117 -5.8107267e+117 -5.6075755e+117 -5.396247e+117 -5.1709953e+117 -5.1844441e+117 -5.8387412e+117 -5.6311339e+117 -5.8662566e+117 -5.6550456e+117 -6.1024394e+117 -6.0647172e+117 -6.0499672e+117 -6.0309584e+117 -6.1369781e+117 -6.1055128e+117 -6.1283929e+117 -6.0437899e+117 -6.0762946e+117 -6.164303e+117 -6.1469695e+117 -6.1844321e+117 -6.1491579e+117 -6.2327325e+117 -6.2817597e+117 -6.199887e+117 -6.2493283e+117 -6.3241328e+117 -6.3602935e+117 -6.2978389e+117 -5.0314983e+117 -4.9708457e+117 -4.970429e+117 -4.6651837e+117 -5.9277513e+117 -5.8367001e+117 -6.0342906e+117 -5.5990682e+117 -5.8492504e+117 -5.9457287e+117 -6.0816522e+117 -5.740946e+117 -5.7157586e+117 -5.8079463e+117 -6.0316598e+117 -6.0691215e+117 -5.8472833e+117 -6.0311956e+117 -6.1038972e+117 -5.9725999e+117 -5.8620859e+117 -5.7627818e+117 -6.0402062e+117 -4.1215485e+117 -4.4995114e+117 -5.1736145e+117 -5.343969e+117 -4.8164624e+117 -4.5328149e+117 -6.1824787e+117 -6.1903782e+117 -6.1616264e+117 -6.1800299e+117 -6.152019e+117 -6.1263348e+117 -6.1094409e+117 -6.1515428e+117 -6.2192831e+117 -6.1357519e+117 -5.7702477e+117 -5.0750858e+117 -6.0960215e+117 -5.7847522e+117 -6.1122247e+117 -5.9798376e+117 -4.5875615e+117 -9.9448e+116 -3.766518e+117 -3.6769884e+117 -7.0857682e+116 -4.107735e+117 -3.9963084e+117 -4.0357234e+117 -4.487892e+117 -6.1493661e+117 -2.2973818e+116 -4.6726473e+117 -5.8964364e+117 -4.4238702e+117 -5.7810271e+117 -6.1910155e+117 -6.2686151e+117 -6.3057455e+117 -6.1894272e+117 -5.8079666e+117 -4.8756384e+117 -6.5021539e+117 -3.2219805e+116 -3.2451189e+117 -5.8507786e+117 -4.9224908e+117 -4.7748011e+117 -1.0878747e+117 -4.7242207e+117 -4.5793848e+117 -3.4778761e+117 -5.7696639e+117 -5.1245373e+117 -1.2305078e+117 -7.3462723e+116 -5.1820516e+117 -3.7673733e+117 -3.6056774e+116 -8.0205954e+116 -1.7379266e+116 -9.5637671e+116 -1.5635361e+117 -3.5321541e+117 -3.1973343e+117 -5.6810664e+117 -5.6878732e+117 -5.7385741e+117 -5.7970914e+117 -5.8316962e+117 -5.726194e+117 -5.8694784e+117 -5.8558592e+117 -5.9894399e+117 -6.0124678e+117 -5.6749604e+117 -5.4064582e+117 -5.1354669e+117 -5.4123851e+117 -5.5918078e+117 -5.5991466e+117 -5.5976859e+117 -5.6860736e+117 -5.590073e+117 -5.6791807e+117 -5.8013042e+117 -5.7967761e+117 -5.7896868e+117 -5.8426117e+117 -5.869747e+117 -5.846847e+117 -5.8471889e+117 -5.8746374e+117 -5.844304e+117 -5.872575e+117 -5.8654586e+117 -5.8388317e+117 -5.7008878e+117 -5.7922944e+117 -5.7635069e+117 -5.8114905e+117 -5.8396055e+117 -5.7433085e+117 -5.8405901e+117 -5.8162906e+117 -5.8869699e+117 -5.8632109e+117 -5.8789403e+117 -5.859781e+117 -5.925395e+117 -5.9059349e+117 -5.9424896e+117 -5.8263755e+117 -5.8419932e+117 -5.8484657e+117 -5.831419e+117 -5.8752208e+117 -5.8581019e+117 -5.871301e+117 -5.8564955e+117 -5.863881e+117 -5.8795926e+117 -5.8902e+117 -5.9056966e+117 -5.8647777e+117 -5.8743312e+117 -5.8771618e+117 -5.8669482e+117 -5.8824494e+117 -5.8905371e+117 -5.8942009e+117 -5.8858969e+117 -5.8976487e+117 -5.9059746e+117 -5.9095525e+117 -5.9014488e+117 -5.9169701e+117 -5.9135968e+117 -5.9207478e+117 -5.9242163e+117 -5.8558991e+117 -5.8651703e+117 -5.8748186e+117 -5.8642487e+117 -5.8716007e+117 -5.8827527e+117 -5.8903146e+117 -5.8787681e+117 -5.8776513e+117 -5.8672982e+117 -5.8782224e+117 -5.8676881e+117 -5.8946239e+117 -5.8864873e+117 -5.8945799e+117 -5.8866432e+117 -5.9017599e+117 -5.9096549e+117 -5.9016203e+117 -5.9092033e+117 -5.8853842e+117 -5.8970406e+117 -5.9043941e+117 -5.8927004e+117 -5.915758e+117 -5.9167833e+117 -5.9239052e+117 -5.922541e+117 -5.917272e+117 -5.9107241e+117 -5.8990347e+117 -5.9050309e+117 -5.9303173e+117 -5.927002e+117 -5.9336955e+117 -5.9368231e+117 -5.9427587e+117 -5.9398904e+117 -5.9455609e+117 -5.9484584e+117 -5.9319386e+117 -5.9191315e+117 -5.9282562e+117 -5.9298818e+117 -5.9362695e+117 -5.9344798e+117 -5.9399812e+117 -5.9420542e+117 -5.9476616e+117 -5.9455333e+117 -5.9102344e+117 -5.922701e+117 -5.9287309e+117 -5.9159063e+117 -5.9392297e+117 -5.9339231e+117 -5.9210875e+117 -5.9261587e+117 -5.9534668e+117 -5.9507532e+117 -5.9563482e+117 -5.9588838e+117 -5.9638022e+117 -5.9614774e+117 -5.966124e+117 -5.9685269e+117 -5.953906e+117 -5.9432561e+117 -5.9503516e+117 -5.9525938e+117 -5.9578827e+117 -5.9556128e+117 -5.9602518e+117 -5.9627047e+117 -5.9674121e+117 -5.9649966e+117 -5.9306763e+117 -5.9438513e+117 -5.948975e+117 -5.9355604e+117 -5.9580778e+117 -5.9534841e+117 -5.940062e+117 -5.9444289e+117 -5.8932261e+117 -5.8837312e+117 -5.8965788e+117 -5.9064683e+117 -5.908498e+117 -5.9199066e+117 -5.9296325e+117 -5.9183555e+117 -5.9680983e+117 -5.9584624e+117 -5.9483875e+117 -5.9583862e+117 -5.9823868e+117 -5.9915347e+117 -5.9292004e+117 -5.9387575e+117 -5.9489927e+117 -5.9392852e+117 -5.9635079e+117 -5.9732089e+117 -5.9748646e+117 -5.9667039e+117 -5.9765088e+117 -5.9849049e+117 -5.9998874e+117 -6.0083517e+117 -6.0163064e+117 -6.024076e+117 -5.9728924e+117 -5.9705495e+117 -5.9756197e+117 -5.9778849e+117 -5.9826023e+117 -5.9804543e+117 -5.9849865e+117 -5.9872386e+117 -5.9914615e+117 -5.9893069e+117 -5.9961544e+117 -5.9941496e+117 -5.9985842e+117 -6.0026302e+117 -6.0004455e+117 -6.0046333e+117 -5.9692275e+117 -5.9717646e+117 -5.9766593e+117 -5.974135e+117 -5.9786295e+117 -5.9813374e+117 -5.9859403e+117 -5.9833046e+117 -5.9483762e+117 -5.9621599e+117 -5.9669346e+117 -5.9527679e+117 -5.9758448e+117 -5.9713136e+117 -5.9570718e+117 -5.9613131e+117 -5.9874439e+117 -5.9901595e+117 -5.9947542e+117 -5.9920804e+117 -5.9961472e+117 -5.999012e+117 -6.0031962e+117 -6.0003374e+117 -5.9652911e+117 -5.9799265e+117 -5.9845597e+117 -5.969656e+117 -5.9926813e+117 -5.9886089e+117 -5.9737952e+117 -5.9777637e+117 -6.0084775e+117 -6.0065263e+117 -6.0128685e+117 -6.0110177e+117 -6.0151611e+117 -6.0189949e+117 -6.0169258e+117 -6.0209129e+117 -6.026885e+117 -6.0226803e+117 -6.0244926e+117 -6.0285075e+117 -6.0340005e+117 -6.0306236e+117 -6.0321026e+117 -6.035629e+117 -6.0040142e+117 -6.0070305e+117 -6.0113479e+117 -6.0082185e+117 -6.019455e+117 -6.015455e+117 -6.0160838e+117 -6.0121151e+117 -6.0041427e+117 -5.9888299e+117 -5.9925006e+117 -6.0080107e+117 -5.9812996e+117 -5.9962623e+117 -6.0003704e+117 -5.9851421e+117 -6.0114411e+117 -6.0152659e+117 -5.9995764e+117 -5.9959051e+117 -6.021929e+117 -6.0185997e+117 -6.0028775e+117 -6.0060577e+117 -6.0269463e+117 -6.0230359e+117 -6.023422e+117 -6.0195778e+117 -6.0339825e+117 -6.0305095e+117 -6.0303176e+117 -6.026856e+117 -6.1322858e+117 -6.1079631e+117 -6.2296113e+117 -6.2010151e+117 -6.2110389e+117 -6.2106901e+117 -6.1798546e+117 -6.1720526e+117 -6.1265002e+117 -6.1620941e+117 -6.1964965e+117 -5.9057725e+117 -5.97069e+117 -6.126049e+117 -6.107179e+117 -5.9350694e+117 -5.8365729e+117 -6.0103821e+117 -5.8320119e+117 -5.7252975e+117 -6.0802767e+117 -6.0162184e+117 -5.7340091e+117 -6.0621622e+117 -6.2204762e+117 -5.9076596e+117 -6.2544121e+117 -4.1003068e+117 -4.7436945e+117 -4.7784846e+117 -6.054271e+117 -5.2555475e+117 -5.4764323e+117 -5.2965149e+117 -4.9957112e+117 -5.1619883e+117 -5.4903553e+117 -5.3539704e+117 -6.4077558e+117 -5.9488833e+117 -3.7206945e+116 -4.5082743e+117 -2.4326082e+116 -1.2867131e+116 -4.2704965e+117 -4.0621719e+117 -3.8469603e+117 -4.4794876e+117 -5.9109858e+117 -5.906998e+117 -5.9190806e+117 -5.9149184e+117 -5.9272679e+117 -5.9230755e+117 -5.935356e+117 -5.931295e+117 -5.9422722e+117 -5.9388883e+117 -5.9491206e+117 -5.9456487e+117 -5.9523715e+117 -5.9557418e+117 -5.9618769e+117 -5.9588482e+117 -5.8292519e+117 -5.8376143e+117 -5.822701e+117 -5.8185677e+117 -5.8259862e+117 -5.8285165e+117 -5.8423942e+117 -5.8359721e+117 -5.7963046e+117 -5.8548484e+117 -5.8486325e+117 -5.8606298e+117 -5.8661021e+117 -5.7297493e+117 -5.8758699e+117 -5.870952e+117 -5.8855059e+117 -5.8806964e+117 -5.8944857e+117 -5.889915e+117 -5.9030827e+117 -5.8987786e+117 -5.6787171e+117 -5.7425465e+117 -5.8619012e+117 -5.8718356e+117 -5.7455739e+117 -5.6155135e+117 -5.4173549e+117 -5.6136153e+117 -5.9837859e+117 -6.0026122e+117 -5.1416634e+117 -4.8592463e+117 -5.5945294e+117 -5.6360333e+117 -6.1317224e+117 -6.2214378e+117 -6.2025642e+117 -6.104791e+117 -6.2732153e+117 -5.8030192e+117 -6.6115132e+117 -5.9752389e+117 -6.1021258e+117 -6.0473983e+117 -5.9239319e+117 -5.8290758e+117 -6.049116e+117 -5.90599e+117 -6.1057721e+117 -8.3541032e+117 -5.8092679e+117 -5.5806978e+117 -6.1941383e+117 -6.2811018e+117 -6.2648101e+117 -6.1924266e+117 -6.2730744e+117 -6.2766769e+117 -6.2750911e+117 -6.2757867e+117 -7.1603582e+117 -5.7588393e+117 -3.8530777e+117 -4.0736151e+117 -4.2938448e+117 -4.531684e+117 -5.7248657e+117 -5.7387712e+117 -5.7429004e+117 -5.7289244e+117 -5.7327547e+117 -5.7467404e+117 -5.7369286e+117 -5.7509284e+117 -5.7527165e+117 -5.7685279e+117 -5.7567814e+117 -5.7725983e+117 -5.7650246e+117 -5.7766547e+117 -5.7811127e+117 -5.7606774e+117 -5.7842626e+117 -5.7884667e+117 -5.806893e+117 -5.8024654e+117 -5.8418339e+117 -5.8209135e+117 -5.8254151e+117 -5.8464725e+117 -5.8156513e+117 -5.7925929e+117 -5.811118e+117 -5.7971038e+117 -5.8509268e+117 -5.8297042e+117 -5.8344105e+117 -5.855783e+117 -5.7586957e+117 -5.7404461e+117 -5.7545367e+117 -5.7445097e+117 -5.7687475e+117 -5.7848768e+117 -5.7889893e+117 -5.7728339e+117 -5.7519324e+117 -5.7661785e+117 -5.7481508e+117 -5.7623428e+117 -5.7765376e+117 -5.7928471e+117 -5.7805132e+117 -5.796873e+117 -5.823837e+117 -5.8008912e+117 -5.8194706e+117 -5.8050901e+117 -5.8598144e+117 -5.8383253e+117 -5.8427484e+117 -5.8643342e+117 -5.8131316e+117 -5.8319704e+117 -5.8090317e+117 -5.8278758e+117 -5.8685291e+117 -5.8468197e+117 -5.8510956e+117 -5.8728974e+117 -5.648895e+117 -5.6589677e+117 -5.6524804e+117 -5.6625815e+117 -5.6727434e+117 -5.6690644e+117 -5.6798419e+117 -5.6835603e+117 -5.6589621e+117 -5.6691132e+117 -5.6556984e+117 -5.6658253e+117 -5.6869475e+117 -5.6760397e+117 -5.6793951e+117 -5.6903628e+117 -5.635089e+117 -5.6384008e+117 -5.644961e+117 -5.648374e+117 -5.6548602e+117 -5.6583996e+117 -5.6654071e+117 -5.6690189e+117 -5.6417442e+117 -5.6517856e+117 -5.6556633e+117 -5.6456073e+117 -5.6726196e+117 -5.6765339e+117 -5.6619196e+117 -5.665775e+117 -5.6761189e+117 -5.6876474e+117 -5.691525e+117 -5.6798653e+117 -5.6835047e+117 -5.6952029e+117 -5.6991331e+117 -5.6874114e+117 -5.7161468e+117 -5.6993664e+117 -5.7121585e+117 -5.7033063e+117 -5.724061e+117 -5.7070294e+117 -5.7199533e+117 -5.7110434e+117 -5.6907351e+117 -5.702519e+117 -5.7064543e+117 -5.69456e+117 -5.701478e+117 -5.6980057e+117 -5.7099741e+117 -5.7135048e+117 -5.7144863e+117 -5.7275626e+117 -5.7315707e+117 -5.7184695e+117 -5.7256731e+117 -5.7220281e+117 -5.7352131e+117 -5.7389145e+117 -5.6347862e+117 -5.6214255e+117 -5.6311913e+117 -5.6249389e+117 -5.6409702e+117 -5.6512213e+117 -5.6549605e+117 -5.6446109e+117 -5.6419218e+117 -5.6284139e+117 -5.6382688e+117 -5.6320955e+117 -5.6481424e+117 -5.6585706e+117 -5.6623606e+117 -5.6518269e+117 -5.6766417e+117 -5.6615666e+117 -5.6726492e+117 -5.6653973e+117 -5.6839891e+117 -5.6962571e+117 -5.7004778e+117 -5.6880585e+117 -5.6843854e+117 -5.6691209e+117 -5.6804651e+117 -5.6729671e+117 -5.6919495e+117 -5.7044868e+117 -5.6960043e+117 -5.7087028e+117 -5.6065876e+117 -5.6262545e+117 -5.597863e+117 -5.6176487e+117 -5.6393227e+117 -5.6293423e+117 -5.6318185e+117 -5.6416946e+117 -5.6197816e+117 -5.6101173e+117 -5.6125779e+117 -5.6222656e+117 -5.6282047e+117 -5.6152696e+117 -5.6249874e+117 -5.6184407e+117 -5.6445685e+117 -5.6346074e+117 -5.6378511e+117 -5.6479892e+117 -5.6373423e+117 -5.6593888e+117 -5.6683241e+117 -5.6461525e+117 -5.6593439e+117 -5.6491651e+117 -5.6624865e+117 -5.6517015e+117 -5.6582329e+117 -5.6547223e+117 -5.6656154e+117 -5.6692641e+117 -5.685432e+117 -5.6704011e+117 -5.6823254e+117 -5.6735067e+117 -5.6804664e+117 -5.6926526e+117 -5.6766646e+117 -5.6886497e+117 -5.741609e+117 -5.7676107e+117 -5.7466015e+117 -5.7624225e+117 -5.7510742e+117 -5.7721794e+117 -5.7786802e+117 -5.797169e+117 -5.8034617e+117 -5.784259e+117 -5.7608165e+117 -5.7780775e+117 -5.7555402e+117 -5.772461e+117 -5.7895882e+117 -5.8092931e+117 -5.7956064e+117 -5.8156632e+117 -5.7303662e+117 -5.7590247e+117 -5.6903613e+117 -5.7098247e+117 -5.6939024e+117 -5.7062051e+117 -5.6971377e+117 -5.7153497e+117 -5.71873e+117 -5.7326281e+117 -5.7368037e+117 -5.7224822e+117 -5.7004997e+117 -5.7133729e+117 -5.7177697e+117 -5.7046659e+117 -5.7262528e+117 -5.7408881e+117 -5.7309352e+117 -5.7459288e+117 -5.7051172e+117 -5.6808914e+117 -5.7084326e+117 -5.7216666e+117 -5.7127743e+117 -5.7262827e+117 -5.7398537e+117 -5.7553413e+117 -5.7350682e+117 -5.750273e+117 -5.7212794e+117 -5.7350864e+117 -5.7169249e+117 -5.7305838e+117 -5.7443086e+117 -5.7599926e+117 -5.7647983e+117 -5.7489733e+117 -5.7654096e+117 -5.7828837e+117 -5.7885512e+117 -5.7706903e+117 -5.7755626e+117 -5.793592e+117 -5.7804574e+117 -5.798573e+117 -5.8209729e+117 -5.8269664e+117 -5.8007223e+117 -5.8065436e+117 -5.8169195e+117 -5.8117366e+117 -5.8323241e+117 -5.8377097e+117 -5.5679797e+117 -5.5841715e+117 -5.5723733e+117 -5.5815548e+117 -5.5750361e+117 -5.587575e+117 -5.5909328e+117 -5.6005729e+117 -5.6030171e+117 -5.5934478e+117 -5.5809384e+117 -5.5899662e+117 -5.5778175e+117 -5.58688e+117 -5.596082e+117 -5.6057014e+117 -5.5992146e+117 -5.6088401e+117 -5.5589014e+117 -5.5789571e+117 -5.5492063e+117 -5.5575854e+117 -5.5607562e+117 -5.5524505e+117 -5.5591741e+117 -5.5557056e+117 -5.5639518e+117 -5.5674099e+117 -5.5780019e+117 -5.5661361e+117 -5.5748394e+117 -5.5693043e+117 -5.5759608e+117 -5.5847695e+117 -5.5724692e+117 -5.5812398e+117 -5.5314538e+117 -5.548715e+117 -5.5374483e+117 -5.5459057e+117 -5.540273e+117 -5.5494549e+117 -5.5545403e+117 -5.5633725e+117 -5.566056e+117 -5.5573125e+117 -5.5547546e+117 -5.5431267e+117 -5.5515473e+117 -5.5463255e+117 -5.5601376e+117 -5.5689085e+117 -5.5633071e+117 -5.5720398e+117 -5.5217923e+117 -5.5401666e+117 -5.5173486e+117 -5.5566342e+117 -5.5837399e+117 -5.5927938e+117 -5.5961463e+117 -5.5869642e+117 -5.611816e+117 -5.6055731e+117 -5.6021726e+117 -5.6152695e+117 -5.5902543e+117 -5.5938257e+117 -5.5994967e+117 -5.6031082e+117 -5.6187028e+117 -5.6126177e+117 -5.6223962e+117 -5.6089409e+117 -5.4200979e+117 -5.4615645e+117 -5.4508661e+117 -5.4683202e+117 -5.4788014e+117 -5.4958617e+117 -5.5138917e+117 -5.503995e+117 -5.4854835e+117 -5.4452441e+117 -5.3975885e+117 -5.3829142e+117 -5.3570675e+117 -5.4817372e+117 -5.3122e+117 -5.3480255e+117 -5.3201878e+117 -5.2804045e+117 -5.2673457e+117 -5.3503345e+117 -5.4358409e+117 -5.5140652e+117 -5.5293419e+117 -5.5371604e+117 -5.5401503e+117 -5.5323969e+117 -5.5353464e+117 -5.5386223e+117 -5.5430706e+117 -5.5463579e+117 -5.5563485e+117 -5.5454116e+117 -5.5534969e+117 -5.548316e+117 -5.5545688e+117 -5.5627483e+117 -5.5511929e+117 -5.5593017e+117 -5.5242532e+117 -5.5128821e+117 -5.5212442e+117 -5.5158131e+117 -5.5218772e+117 -5.5188473e+117 -5.5273197e+117 -5.5304522e+117 -5.5023354e+117 -5.4850379e+117 -5.4715072e+117 -5.4770172e+117 -5.4906705e+117 -5.5082544e+117 -5.486148e+117 -5.4816406e+117 -5.4956524e+117 -5.500702e+117 -5.5135311e+117 -5.5246193e+117 -5.533312e+117 -5.5362754e+117 -5.5273358e+117 -5.5300136e+117 -5.539046e+117 -5.5416616e+117 -5.5325029e+117 -5.5184572e+117 -5.4583608e+117 -5.4544107e+117 -5.4679549e+117 -5.4720536e+117 -5.4503118e+117 -5.4450667e+117 -5.4582461e+117 -5.4635659e+117 -5.5525139e+117 -5.5415043e+117 -5.5493024e+117 -5.5445829e+117 -5.557627e+117 -5.5609052e+117 -5.5658608e+117 -5.569189e+117 -5.5582534e+117 -5.5473649e+117 -5.5553981e+117 -5.550111e+117 -5.5722258e+117 -5.5638346e+117 -5.5667899e+117 -5.5752329e+117 -5.4993851e+117 -5.5079221e+117 -5.5113924e+117 -5.5029204e+117 -5.5065235e+117 -5.5148757e+117 -5.5098754e+117 -5.5183106e+117 -5.4960929e+117 -5.4790213e+117 -5.4888032e+117 -5.4711714e+117 -5.4653544e+117 -5.4570645e+117 -5.4855294e+117 -5.4949892e+117 -5.4980522e+117 -5.4889306e+117 -5.4924335e+117 -5.5012737e+117 -5.5046545e+117 -5.495882e+117 -5.4815178e+117 -5.4633639e+117 -5.4740448e+117 -5.4546574e+117 -5.4390277e+117 -5.4487316e+117 -5.5146843e+117 -5.5035399e+117 -5.5117122e+117 -5.5065788e+117 -5.5203355e+117 -5.5288471e+117 -5.5316674e+117 -5.5232734e+117 -5.5209117e+117 -5.5096074e+117 -5.5176819e+117 -5.5129559e+117 -5.5261553e+117 -5.5345515e+117 -5.5293665e+117 -5.5377234e+117 -5.5160304e+117 -5.5238996e+117 -5.5273099e+117 -5.5194965e+117 -5.5264134e+117 -5.5228531e+117 -5.5306975e+117 -5.5342803e+117 -5.5406482e+117 -5.5439486e+117 -5.5323303e+117 -5.5357117e+117 -5.5425959e+117 -5.5390264e+117 -5.5472671e+117 -5.5507815e+117 -5.4197149e+117 -5.4086954e+117 -5.4239047e+117 -5.4340782e+117 -5.4431137e+117 -5.4292275e+117 -5.438635e+117 -5.4520124e+117 -5.3854596e+117 -5.3752965e+117 -5.3885357e+117 -5.3985847e+117 -5.3647774e+117 -5.3516703e+117 -5.3655338e+117 -5.3780864e+117 -5.3938806e+117 -5.3791693e+117 -5.3914205e+117 -5.4053835e+117 -5.4114218e+117 -5.4015052e+117 -5.4151894e+117 -5.4248833e+117 -5.4059958e+117 -5.4023747e+117 -5.4150985e+117 -5.4189545e+117 -5.3980707e+117 -5.3924816e+117 -5.4055618e+117 -5.4109539e+117 -5.4316152e+117 -5.4182566e+117 -5.4235914e+117 -5.4367664e+117 -5.4406546e+117 -5.4274302e+117 -5.4314137e+117 -5.4446598e+117 -5.5967137e+117 -5.6060449e+117 -5.6092617e+117 -5.599885e+117 -5.6067435e+117 -5.6030521e+117 -5.6124261e+117 -5.6161397e+117 -5.6285842e+117 -5.6155978e+117 -5.6253534e+117 -5.6187979e+117 -5.6257662e+117 -5.6357068e+117 -5.6219848e+117 -5.6318835e+117 -5.5862802e+117 -5.5743647e+117 -5.5828259e+117 -5.5777642e+117 -5.591636e+117 -5.6006797e+117 -5.6041291e+117 -5.5951025e+117 -5.5838962e+117 -5.5925108e+117 -5.5808418e+117 -5.5894045e+117 -5.598218e+117 -5.6072935e+117 -5.6013703e+117 -5.6104717e+117 -5.6228724e+117 -5.6099148e+117 -5.6193317e+117 -5.6133829e+117 -5.6290202e+117 -5.6389921e+117 -5.6425618e+117 -5.6325759e+117 -5.619761e+117 -5.6292821e+117 -5.6165526e+117 -5.6260748e+117 -5.6357599e+117 -5.6457926e+117 -5.6390122e+117 -5.6490366e+117 -5.5618678e+117 -5.5701065e+117 -5.5731023e+117 -5.5647723e+117 -5.567757e+117 -5.5761588e+117 -5.5712583e+117 -5.5796993e+117 -5.590675e+117 -5.5787369e+117 -5.5875765e+117 -5.581782e+117 -5.5884717e+117 -5.5848585e+117 -5.5938323e+117 -5.5974988e+117 -5.4854815e+117 -5.3524582e+117 -5.1528101e+117 -5.3493635e+117 -5.4798718e+117 -5.4791468e+117 -5.3482388e+117 -5.3509879e+117 -5.4854251e+117 -4.8818119e+117 -5.0849828e+117 -5.2225669e+117 -5.2258093e+117 -5.0853665e+117 -5.363428e+117 -5.3571129e+117 -5.4902215e+117 -5.5000488e+117 -4.6039482e+117 -4.8143902e+117 -4.8109708e+117 -4.9522355e+117 -4.952496e+117 -5.0913309e+117 -5.2310637e+117 -5.2385161e+117 -5.0944118e+117 -5.5144385e+117 -5.3731558e+117 -5.3848165e+117 -5.5286252e+117 -5.2588102e+117 -5.4396405e+117 -5.5210402e+117 -4.752206e+117 -4.9353899e+117 -4.8881035e+117 -4.9971993e+117 -5.0149233e+117 -4.8888902e+117 -4.3333721e+117 -4.5377454e+117 -4.5303911e+117 -4.669196e+117 -4.6738405e+117 -4.71991e+117 -4.9571534e+117 -4.8151414e+117 -4.8147733e+117 -4.9600347e+117 -5.2365955e+117 -5.2760267e+117 -5.2423901e+117 -5.2000535e+117 -5.1440405e+117 -5.1586936e+117 -5.1954543e+117 -5.1090958e+117 -5.0964636e+117 -5.1876575e+117 -5.0892032e+117 -5.1032692e+117 -5.1099035e+117 -5.2597059e+117 -5.2488163e+117 -5.3971024e+117 -5.5456073e+117 -5.5660792e+117 -5.4128048e+117 -4.0905124e+117 -4.2742593e+117 -4.3994331e+117 -4.39493e+117 -4.2689308e+117 -4.533952e+117 -4.5361971e+117 -4.67307e+117 -4.6722031e+117 -4.6861196e+117 -4.8735646e+117 -4.8651003e+117 -5.003458e+117 -5.0950163e+117 -5.0979301e+117 -4.999761e+117 -5.1000908e+117 -5.1039908e+117 -4.9987024e+117 -5.0018659e+117 -5.1065439e+117 -5.0022417e+117 -4.9657289e+117 -4.8167343e+117 -4.8184767e+117 -4.9708467e+117 -5.3267836e+117 -5.3184081e+117 -5.3333434e+117 -5.3425315e+117 -5.3084386e+117 -5.2936264e+117 -5.308599e+117 -5.3230704e+117 -5.3374058e+117 -5.3226753e+117 -5.336724e+117 -5.3506398e+117 -5.3610204e+117 -5.3470371e+117 -5.3567619e+117 -5.3711228e+117 -5.2846272e+117 -5.2783269e+117 -5.3075713e+117 -5.3000833e+117 -5.2701929e+117 -5.2570989e+117 -5.2909272e+117 -5.2768297e+117 -5.2334046e+117 -5.2011866e+117 -5.2099442e+117 -5.2451873e+117 -5.2190223e+117 -5.214554e+117 -5.2519886e+117 -5.2572972e+117 -5.2298677e+117 -5.225779e+117 -5.2692394e+117 -5.2658528e+117 -5.2226834e+117 -5.2214568e+117 -5.2602856e+117 -5.2627973e+117 -5.2909795e+117 -5.287964e+117 -5.3118568e+117 -5.3153108e+117 -5.2939916e+117 -5.3185629e+117 -5.3220239e+117 -5.297402e+117 -5.3358465e+117 -5.3317696e+117 -5.3483995e+117 -5.3531658e+117 -5.3782528e+117 -5.3634011e+117 -5.3687308e+117 -5.3837585e+117 -5.3880779e+117 -5.3728338e+117 -5.3762703e+117 -5.3915482e+117 -5.3570468e+117 -5.3394102e+117 -5.342914e+117 -5.3604964e+117 -5.4474704e+117 -5.4342143e+117 -5.4367125e+117 -5.450115e+117 -5.4214633e+117 -5.4080544e+117 -5.4096495e+117 -5.4235362e+117 -5.4534571e+117 -5.4398755e+117 -5.4442213e+117 -5.4579762e+117 -5.5045076e+117 -5.4893936e+117 -5.4928608e+117 -5.5083899e+117 -5.474796e+117 -5.4609118e+117 -5.4637917e+117 -5.4779301e+117 -5.4721941e+117 -5.4672868e+117 -5.4816768e+117 -5.4868703e+117 -5.5127709e+117 -5.4968331e+117 -5.5022492e+117 -5.5184549e+117 -5.3443245e+117 -5.3620472e+117 -5.3632019e+117 -5.3932506e+117 -5.3777846e+117 -5.3789792e+117 -5.3944446e+117 -5.2306616e+117 -5.2702993e+117 -5.2984416e+117 -5.3232342e+117 -5.1272545e+117 -5.1188514e+117 -5.2709097e+117 -5.2832134e+117 -5.6341682e+117 -5.6221073e+117 -5.6316339e+117 -5.624645e+117 -5.6413531e+117 -5.6513396e+117 -5.6538038e+117 -5.6438337e+117 -5.6302631e+117 -5.6396807e+117 -5.6272292e+117 -5.6366882e+117 -5.6463171e+117 -5.6563594e+117 -5.6493531e+117 -5.6594344e+117 -5.5973012e+117 -5.6059277e+117 -5.608892e+117 -5.6003097e+117 -5.6061004e+117 -5.6031442e+117 -5.6117016e+117 -5.6146641e+117 -5.6266236e+117 -5.6146772e+117 -5.623686e+117 -5.6176339e+117 -5.6234667e+117 -5.632589e+117 -5.6204406e+117 -5.6295082e+117 -5.5974245e+117 -5.5862348e+117 -5.5948666e+117 -5.5887721e+117 -5.6037241e+117 -5.6127944e+117 -5.6153006e+117 -5.6062583e+117 -5.6031848e+117 -5.5913856e+117 -5.6000317e+117 -5.5945261e+117 -5.6088801e+117 -5.6179445e+117 -5.6119804e+117 -5.6210101e+117 -5.6328897e+117 -5.6423306e+117 -5.6454125e+117 -5.6358693e+117 -5.6622221e+117 -5.6520863e+117 -5.6552194e+117 -5.6654208e+117 -5.6387938e+117 -5.6419306e+117 -5.6483964e+117 -5.6515727e+117 -5.6685327e+117 -5.6615173e+117 -5.6718954e+117 -5.6582325e+117 -5.5738089e+117 -5.5822542e+117 -5.5845999e+117 -5.5762796e+117 -5.5785741e+117 -5.5809612e+117 -5.5867496e+117 -5.5890992e+117 -5.6015894e+117 -5.5909379e+117 -5.5994914e+117 -5.5931331e+117 -5.5976284e+117 -5.6062587e+117 -5.5951916e+117 -5.6037109e+117 -5.5674134e+117 -5.5553755e+117 -5.564998e+117 -5.5576832e+117 -5.5698833e+117 -5.5723458e+117 -5.5428798e+117 -5.6081972e+117 -5.6167883e+117 -5.6190373e+117 -5.6103431e+117 -5.612511e+117 -5.6212993e+117 -5.6151388e+117 -5.6240089e+117 -5.6372977e+117 -5.6256954e+117 -5.6348806e+117 -5.628024e+117 -5.6331556e+117 -5.6426277e+117 -5.6303508e+117 -5.6397349e+117 -5.6640733e+117 -5.6745161e+117 -5.6772635e+117 -5.6668063e+117 -5.6443165e+117 -5.6540297e+117 -5.6566968e+117 -5.6468476e+117 -5.6493574e+117 -5.6592809e+117 -5.6522963e+117 -5.6622421e+117 -5.6724281e+117 -5.6693994e+117 -5.6799016e+117 -5.6830144e+117 -5.6175993e+117 -5.6265004e+117 -5.6356815e+117 -5.6451872e+117 -5.6548475e+117 -5.6648057e+117 -5.6856346e+117 -5.6750174e+117 -5.5631045e+117 -5.5523355e+117 -5.5605498e+117 -5.5548884e+117 -5.5690757e+117 -5.5775358e+117 -5.5800211e+117 -5.5715902e+117 -5.5604008e+117 -5.5686143e+117 -5.5574367e+117 -5.5656569e+117 -5.5741327e+117 -5.5826335e+117 -5.5771724e+117 -5.5857325e+117 -5.5572044e+117 -5.5448727e+117 -5.5544039e+117 -5.5475182e+117 -5.5531031e+117 -5.5502877e+117 -5.5599821e+117 -5.562805e+117 -5.5380883e+117 -5.5326479e+117 -5.5346794e+117 -5.5438496e+117 -5.5462861e+117 -5.5369585e+117 -5.5394945e+117 -5.5488918e+117 -5.54225e+117 -5.5517591e+117 -5.5275263e+117 -5.5227367e+117 -5.5629958e+117 -5.5712564e+117 -5.5742088e+117 -5.5658623e+117 -5.5686217e+117 -5.5715517e+117 -5.5770383e+117 -5.5800096e+117 -5.5885413e+117 -5.5915527e+117 -5.5799303e+117 -5.5829377e+117 -5.5887547e+117 -5.5857617e+117 -5.5944241e+117 -5.5973957e+117 -5.7678482e+117 -5.7824884e+117 -5.7862908e+117 -5.7716092e+117 -5.7789528e+117 -5.7751451e+117 -5.7898704e+117 -5.793742e+117 -5.8177771e+117 -5.7971679e+117 -5.8139083e+117 -5.8009856e+117 -5.8086199e+117 -5.8256223e+117 -5.8046228e+117 -5.8215693e+117 -5.7723655e+117 -5.7547678e+117 -5.7691057e+117 -5.7578758e+117 -5.7835228e+117 -5.7999077e+117 -5.8032514e+117 -5.7868025e+117 -5.7792308e+117 -5.7609515e+117 -5.7755032e+117 -5.7646213e+117 -5.7900586e+117 -5.8066496e+117 -5.7938519e+117 -5.8105139e+117 -5.8387903e+117 -5.8162477e+117 -5.8351528e+117 -5.8197031e+117 -5.8762606e+117 -5.8543734e+117 -5.8580592e+117 -5.8800305e+117 -5.8271088e+117 -5.8463175e+117 -5.8231666e+117 -5.8423522e+117 -5.8837411e+117 -5.861643e+117 -5.8657927e+117 -5.8880073e+117 -5.8305372e+117 -5.8498085e+117 -5.85394e+117 -5.8345015e+117 -5.8916947e+117 -5.8735539e+117 -5.8693838e+117 -5.8959295e+117 -5.8383732e+117 -5.8424899e+117 -5.8578971e+117 -5.8620039e+117 -5.8999688e+117 -5.8817401e+117 -5.9042161e+117 -5.8775163e+117 -5.8455472e+117 -5.8651002e+117 -5.8684196e+117 -5.848771e+117 -5.8551448e+117 -5.8518027e+117 -5.8714211e+117 -5.8747346e+117 -5.9105215e+117 -5.8848372e+117 -5.9073028e+117 -5.8880642e+117 -5.8945586e+117 -5.9172642e+117 -5.8910844e+117 -5.9136647e+117 -5.7937178e+117 -5.8086643e+117 -5.8116252e+117 -5.7966427e+117 -5.8018944e+117 -5.7992223e+117 -5.8142027e+117 -5.8168518e+117 -5.8437422e+117 -5.8236571e+117 -5.840834e+117 -5.8265727e+117 -5.8319281e+117 -5.8492386e+117 -5.8291757e+117 -5.8464567e+117 -5.7998751e+117 -5.7818449e+117 -5.7966873e+117 -5.7849647e+117 -5.8115977e+117 -5.8286048e+117 -5.8317488e+117 -5.8147357e+117 -5.8060111e+117 -5.7878873e+117 -5.8027849e+117 -5.7910768e+117 -5.8176976e+117 -5.8347971e+117 -5.8209651e+117 -5.8381076e+117 -5.8578346e+117 -5.8775036e+117 -5.8806697e+117 -5.860797e+117 -5.9007023e+117 -5.8974791e+117 -5.9202917e+117 -5.9236232e+117 -5.8635766e+117 -5.8664165e+117 -5.8835377e+117 -5.8863513e+117 -5.9266517e+117 -5.9065773e+117 -5.9296857e+117 -5.9036189e+117 -5.7450305e+117 -5.7292929e+117 -5.7418858e+117 -5.7323718e+117 -5.7545689e+117 -5.7683247e+117 -5.7713927e+117 -5.7576568e+117 -5.7511034e+117 -5.7353124e+117 -5.7479538e+117 -5.7385487e+117 -5.7605779e+117 -5.7743451e+117 -5.7636969e+117 -5.77746e+117 -5.684854e+117 -5.6954475e+117 -5.6983051e+117 -5.687624e+117 -5.690347e+117 -5.7011355e+117 -5.7043554e+117 -5.6935319e+117 -5.7061929e+117 -5.7176672e+117 -5.7206392e+117 -5.7091017e+117 -5.7119674e+117 -5.7235731e+117 -5.7268474e+117 -5.7152445e+117 -5.6961764e+117 -5.7070355e+117 -5.7098502e+117 -5.6990182e+117 -5.7179135e+117 -5.729452e+117 -5.7321247e+117 -5.7206298e+117 -5.7410493e+117 -5.7535506e+117 -5.7563857e+117 -5.7437679e+117 -5.7490466e+117 -5.7463409e+117 -5.7589708e+117 -5.7616054e+117 -5.7800959e+117 -5.7830014e+117 -5.7662242e+117 -5.7690926e+117 -5.7743225e+117 -5.7716505e+117 -5.7855937e+117 -5.7882443e+117 -5.7191765e+117 -5.7041085e+117 -5.7162034e+117 -5.7069984e+117 -5.7284225e+117 -5.7416738e+117 -5.7446644e+117 -5.7313746e+117 -5.7131704e+117 -5.7253946e+117 -5.7098115e+117 -5.7220093e+117 -5.7342607e+117 -5.7476857e+117 -5.7377661e+117 -5.7512686e+117 -5.6723602e+117 -5.6828188e+117 -5.6861905e+117 -5.6756375e+117 -5.6788087e+117 -5.6894069e+117 -5.6928052e+117 -5.6822046e+117 -5.7081746e+117 -5.693432e+117 -5.7047337e+117 -5.6968422e+117 -5.7149744e+117 -5.7000744e+117 -5.7114757e+117 -5.7035266e+117 -5.6741485e+117 -5.6613018e+117 -5.6714959e+117 -5.6638392e+117 -5.6818614e+117 -5.692886e+117 -5.6956787e+117 -5.6845778e+117 -5.679981e+117 -5.6664372e+117 -5.6768224e+117 -5.6695636e+117 -5.6872889e+117 -5.6984711e+117 -5.6905349e+117 -5.7017835e+117 -5.7161515e+117 -5.7284285e+117 -5.732067e+117 -5.7196519e+117 -5.7230114e+117 -5.7354824e+117 -5.72655e+117 -5.7390671e+117 -5.7544758e+117 -5.7581973e+117 -5.740902e+117 -5.7445734e+117 -5.751708e+117 -5.7480129e+117 -5.7617232e+117 -5.7654662e+117 -3.8616831e+117 -4.0329017e+117 -4.1459288e+117 -4.1495663e+117 -4.0286946e+117 -4.2721511e+117 -4.3976679e+117 -4.3953413e+117 -4.2692053e+117 -4.6765314e+117 -4.5330132e+117 -4.6743763e+117 -4.5320234e+117 -4.9782923e+117 -4.8232174e+117 -4.8286884e+117 -4.9853246e+117 -3.6384325e+117 -3.8047423e+117 -3.8017886e+117 -3.9143102e+117 -3.916531e+117 -4.0288616e+117 -4.0271067e+117 -4.1423238e+117 -4.1442918e+117 -4.265815e+117 -4.3937072e+117 -4.3927034e+117 -4.2638126e+117 -4.6820786e+117 -4.6798149e+117 -4.5320864e+117 -4.532648e+117 -3.8022703e+117 -3.91284e+117 -3.9111842e+117 -3.799557e+117 -4.0259177e+117 -4.1414236e+117 -4.140912e+117 -4.0251747e+117 -4.2624512e+117 -4.2616011e+117 -4.3896507e+117 -4.3910759e+117 -4.0230211e+117 -4.1393975e+117 -4.1392436e+117 -4.0227534e+117 -5.7993985e+117 -5.8082748e+117 -5.7234136e+117 -5.7232699e+117 -5.730906e+117 -5.6030548e+117 -5.599302e+117 -5.6087577e+117 -5.7381029e+117 -5.7254228e+117 -5.6106454e+117 -5.6029841e+117 -5.7737991e+117 -5.7543706e+117 -5.63681e+117 -5.6223453e+117 -5.795203e+117 -5.6556463e+117 -5.6724933e+117 -5.8155928e+117 -5.8484373e+117 -5.9613702e+117 -5.8574646e+117 -5.8369301e+117 -5.8272747e+117 -5.8266219e+117 -5.8364599e+117 -5.9270714e+117 -5.9423704e+117 -5.9267657e+117 -5.9415007e+117 -5.9708727e+117 -5.882456e+117 -6.0048672e+117 -6.0374291e+117 -5.9078069e+117 -6.064673e+117 -6.1545456e+117 -6.215122e+117 -6.2481687e+117 -6.1702775e+117 -6.0909573e+117 -6.0704721e+117 -6.1869383e+117 -6.1892961e+117 -6.1141196e+117 -6.1995447e+117 -6.1779802e+117 -6.0838384e+117 -6.1578263e+117 -5.9969022e+117 -6.0107487e+117 -6.0334932e+117 -6.005944e+117 -6.2099812e+117 -6.1219802e+117 -6.1882978e+117 -6.0352347e+117 -6.0761545e+117 -6.1781953e+117 -6.2391661e+117 -6.2312437e+117 -6.2341474e+117 -6.2372827e+117 -6.2271438e+117 -6.2387026e+117 -6.2397892e+117 -6.2372668e+117 -6.2386436e+117 -6.2168947e+117 -6.2018494e+117 -6.2200401e+117 -6.2372111e+117 -6.215851e+117 -6.2012499e+117 -6.2001131e+117 -6.2384412e+117 -6.246979e+117 -6.2294051e+117 -6.2491418e+117 -6.2588227e+117 -6.2781674e+117 -6.2738349e+117 -6.2363943e+117 -6.2809324e+117 -6.3017049e+117 -6.307151e+117 -6.2275734e+117 -6.2457312e+117 -6.2371353e+117 -6.2281865e+117 -6.2429624e+117 -6.2258259e+117 -6.250653e+117 -6.2698142e+117 -6.2716459e+117 -6.2580807e+117 -6.2494915e+117 -6.2401691e+117 -6.144338e+117 -6.0880283e+117 -6.1258572e+117 -6.0153352e+117 -6.0825715e+117 -5.9681492e+117 -5.9205986e+117 -5.8400826e+117 -6.0648391e+117 -6.003961e+117 -5.9083612e+117 -5.8393656e+117 -6.1505613e+117 -6.1450636e+117 -5.8573093e+117 -6.0384917e+117 -6.1871459e+117 -6.198063e+117 -6.1844107e+117 -5.2998232e+117 -6.651771e+117 -6.3108209e+117 -5.1836117e+117 -6.2378822e+117 -5.1110101e+117 -6.0914231e+117 -4.0890443e+117 -1.1616431e+117 -1.0195189e+117 -3.8427765e+117 -6.1426776e+117 -6.1192367e+117 -5.9933042e+117 -5.82244e+117 -6.1481585e+117 -6.1778148e+117 -6.2047876e+117 -6.2054901e+117 -5.7802611e+117 -6.1331534e+117 -6.2008731e+117 -5.2723098e+117 -1.7823417e+117 -5.1439119e+117 -2.4351902e+117 -6.1391219e+117 -6.1409665e+117 -2.371331e+117 -2.6125638e+117 -5.5107581e+117 -6.3828519e+117 -5.8234745e+117 -5.8958573e+117 -6.0468609e+117 -6.3368531e+117 -5.967404e+117 -6.035173e+117 -6.0417853e+117 -6.1000777e+117 -6.1895435e+117 -6.3901604e+117 -6.1970841e+117 -5.9471806e+117 -6.2337271e+117 -6.1729503e+117 -5.5507583e+117 -6.4925488e+117 -6.1639803e+117 -4.9799081e+116 -6.2198411e+116 -5.6681124e+116 -5.7050931e+116 -6.2355102e+117 -6.1868856e+117 -6.2492322e+117 -6.2831856e+117 -6.2252706e+117 -6.1908269e+117 -6.8852475e+116 -2.5786588e+117 -5.4182357e+117 -6.6079684e+117 -5.5042457e+117 -4.6064042e+117 -3.8004001e+117 -6.3923521e+117 -6.0238645e+117 -5.6012523e+117 -5.6639955e+117 -6.3172049e+117 -6.2514385e+117 -6.0821072e+117 -6.199329e+117 -5.911718e+117 -5.9234233e+117 -3.7424586e+117 -3.9147664e+117 -6.2923472e+117 -6.1195536e+117 -4.4988749e+117 -4.2745913e+117 -4.457228e+117 -4.4615588e+117 -4.6017266e+117 -4.6007838e+117 -4.744773e+117 -4.7418825e+117 -4.7165665e+117 -4.7174371e+117 -4.6145157e+117 -4.7661044e+117 -4.4704895e+117 -4.3385654e+117 -4.2245849e+117 -4.061368e+117 -4.2213102e+117 -4.3363073e+117 -4.470163e+117 -4.6169055e+117 -4.7720016e+117 -4.9667886e+117 -4.9574401e+117 -3.8467443e+117 -4.0044612e+117 -4.0076197e+117 -4.1151108e+117 -4.113008e+117 -4.3408407e+117 -4.2241232e+117 -4.2228144e+117 -4.3403813e+117 -5.8725975e+117 -5.7210311e+117 -5.8231829e+117 -6.0144596e+117 -5.9629691e+117 -5.5678638e+117 -6.1412056e+117 -6.0900469e+117 -5.8391358e+117 -5.825831e+117 -5.9343747e+117 -5.8216168e+117 -5.6454929e+117 -5.8255307e+117 -5.9460481e+117 -5.9413706e+117 -5.9651892e+117 -5.3982021e+117 -5.6043656e+117 -5.5859295e+117 -5.7197315e+117 -5.7448502e+117 -5.9586551e+117 -5.8394545e+117 -5.8698813e+117 -5.9930361e+117 -5.1346895e+117 -5.345848e+117 -5.3703284e+117 -5.525472e+117 -5.4929385e+117 -5.4074985e+117 -5.4108817e+117 -5.6330243e+117 -5.7747055e+117 -5.6741358e+117 -5.9104567e+117 -6.0379345e+117 -6.1926079e+117 -6.0647707e+117 -5.9210078e+117 -5.7662635e+117 -5.6091797e+117 -5.4501982e+117 -5.4677983e+117 -5.6378663e+117 -5.9677754e+117 -5.809104e+117 -5.6429878e+117 -5.4742892e+117 -6.0123079e+117 -5.8511896e+117 -5.6814964e+117 -5.5063342e+117 -5.325964e+117 -5.5003337e+117 -5.53237e+117 -5.5913918e+117 -5.6261149e+117 -5.3016601e+117 -5.3269078e+117 -5.8921e+117 -5.7174432e+117 -5.5294503e+117 -5.3358074e+117 -5.9303419e+117 -5.750582e+117 -5.5570978e+117 -5.3569049e+117 -5.143648e+117 -5.1576529e+117 -5.7815621e+117 -5.5828306e+117 -5.3738344e+117 -5.1653278e+117 -5.8107026e+117 -5.6074938e+117 -5.3939659e+117 -5.1804169e+117 -5.6311522e+117 -5.6551027e+117 -6.1003636e+117 -6.0612554e+117 -6.0319012e+117 -6.012025e+117 -6.018069e+117 -6.1104696e+117 -6.0789724e+117 -6.0921839e+117 -6.1089311e+117 -6.0321571e+117 -6.0678499e+117 -6.1533236e+117 -6.1448281e+117 -6.1830016e+117 -6.1491567e+117 -6.2327578e+117 -6.2818013e+117 -6.1999538e+117 -4.5132173e+117 -4.508034e+117 -4.7356589e+117 -4.0732174e+117 -5.6799314e+117 -5.7704341e+117 -5.7456875e+117 -5.5105593e+117 -5.9907659e+117 -5.9771109e+117 -5.0870708e+117 -5.5110803e+117 -5.7441601e+117 -5.6943691e+117 -5.9659634e+117 -5.7508238e+117 -5.5546763e+117 -6.0031385e+117 -5.9699733e+117 -6.0731375e+117 -5.9207877e+117 -5.7976877e+117 -5.7997654e+117 -5.6129055e+117 -5.1314402e+117 -4.9403905e+117 -5.1574315e+117 -5.4455401e+117 -4.6368024e+117 -4.5136951e+117 -4.901616e+117 -5.1364994e+117 -3.2759782e+117 -3.4913359e+117 -4.2912977e+117 -4.5530379e+117 -4.1060835e+117 -3.7632485e+117 -6.1825552e+117 -6.1907063e+117 -6.1637165e+117 -6.1781113e+117 -6.1744003e+117 -6.1439431e+117 -6.1466909e+117 -6.1491746e+117 -6.1254529e+117 -6.1048285e+117 -6.0530675e+117 -6.1029927e+117 -6.069436e+117 -6.1056898e+117 -6.2192283e+117 -6.1350293e+117 -5.7378386e+117 -4.3821337e+117 -9.0272159e+116 -6.0959116e+117 -5.7491592e+117 -6.1135139e+117 -5.9825525e+117 -4.8676005e+117 -5.8240964e+117 -5.5156298e+117 -4.1050095e+117 -3.851208e+117 -4.0307691e+117 -2.2368461e+116 -3.2842233e+117 -3.0077753e+117 -2.8517701e+116 -3.6664328e+117 -3.5889686e+117 -3.983496e+117 -4.4548223e+117 -6.0610706e+117 -6.126418e+117 -6.152923e+117 -6.0955666e+117 -4.1426749e+117 -7.7667525e+116 -6.1541475e+117 -5.7753892e+117 -5.8119004e+117 -4.7031753e+117 -4.7434385e+117 -6.7482087e+117 -4.9334423e+117 -4.8118882e+117 -4.7693802e+117 -4.7371069e+117 -4.5843144e+117 -4.5694071e+117 -1.1443669e+117 -9.0842754e+116 -3.9889595e+117 -3.608381e+117 -1.9397832e+116 -1.0499313e+117 -5.7846343e+117 -5.6535951e+117 -5.736473e+117 -5.7042543e+117 -5.7517192e+117 -5.8637941e+117 -5.7413545e+117 -5.8553401e+117 -5.7299197e+117 -5.9887523e+117 -5.9962841e+117 -5.5985913e+117 -5.4075356e+117 -5.610255e+117 -5.1344532e+117 -4.8489159e+117 -5.0846397e+117 -5.2549477e+117 -5.4230836e+117 -5.5114046e+117 -5.4362039e+117 -5.5207735e+117 -5.6627349e+117 -5.6209607e+117 -5.6583665e+117 -5.6163829e+117 -5.7509565e+117 -5.7002809e+117 -5.6517459e+117 -5.6096782e+117 -5.6432584e+117 -5.6016295e+117 -5.6941723e+117 -5.6857934e+117 -5.7374877e+117 -5.7459324e+117 -5.8123203e+117 -5.817335e+117 -5.8082667e+117 -5.8024407e+117 -5.8402194e+117 -5.7927476e+117 -5.7937343e+117 -5.8145735e+117 -5.8122083e+117 -5.8427381e+117 -5.8562907e+117 -5.8572185e+117 -5.8421613e+117 -5.8406543e+117 -5.8567972e+117 -5.8555241e+117 -5.8380952e+117 -5.8350768e+117 -5.8304156e+117 -5.8526604e+117 -5.8460933e+117 -5.620197e+117 -5.7078967e+117 -5.6797757e+117 -5.7500742e+117 -5.7214319e+117 -5.7827121e+117 -5.8071957e+117 -5.8233142e+117 -5.7992122e+117 -5.7506113e+117 -5.7748272e+117 -5.7919942e+117 -5.7674152e+117 -5.8152482e+117 -5.7985233e+117 -5.8299811e+117 -5.8456991e+117 -5.6616492e+117 -5.7554588e+117 -5.7317799e+117 -5.7742023e+117 -5.7983451e+117 -5.8381365e+117 -5.8622385e+117 -5.8740155e+117 -5.8501715e+117 -5.8122636e+117 -5.8362181e+117 -5.8500035e+117 -5.8259619e+117 -5.8837995e+117 -5.8955778e+117 -5.8582598e+117 -5.8718921e+117 -5.8179641e+117 -5.8886766e+117 -5.8786861e+117 -5.9024369e+117 -5.9123542e+117 -5.8593507e+117 -5.8831431e+117 -5.8930558e+117 -5.8693289e+117 -5.9340836e+117 -5.9239094e+117 -5.9145674e+117 -5.90466e+117 -5.9514907e+117 -5.9425314e+117 -5.8200829e+117 -5.8521006e+117 -5.8027107e+117 -5.8339789e+117 -5.8679666e+117 -5.8766942e+117 -5.8495808e+117 -5.859398e+117 -5.8364617e+117 -5.8681967e+117 -5.8528713e+117 -5.8850688e+117 -5.8932532e+117 -5.8845026e+117 -5.9011686e+117 -5.9089561e+117 -5.8615438e+117 -5.8516766e+117 -5.8798587e+117 -5.871116e+117 -5.896834e+117 -5.8881668e+117 -5.9047722e+117 -5.9125617e+117 -5.8433562e+117 -5.8591136e+117 -5.8672352e+117 -5.849608e+117 -5.8573713e+117 -5.8754576e+117 -5.882325e+117 -5.8640584e+117 -5.8660089e+117 -5.8564474e+117 -5.8708873e+117 -5.8607881e+117 -5.8837418e+117 -5.8753637e+117 -5.8881718e+117 -5.8804886e+117 -5.892029e+117 -5.9004667e+117 -5.8961561e+117 -5.9039609e+117 -5.8712116e+117 -5.889723e+117 -5.8976484e+117 -5.8789233e+117 -5.9110478e+117 -5.9082776e+117 -5.9158595e+117 -5.9179118e+117 -5.9109112e+117 -5.9044602e+117 -5.8855003e+117 -5.8911865e+117 -5.9193527e+117 -5.9156999e+117 -5.9226015e+117 -5.9260181e+117 -5.9320511e+117 -5.9287791e+117 -5.9347565e+117 -5.9378749e+117 -5.9130068e+117 -5.8993999e+117 -5.9241547e+117 -5.9225197e+117 -5.9289937e+117 -5.9302085e+117 -5.9358566e+117 -5.9348945e+117 -5.9405788e+117 -5.941273e+117 -5.8964288e+117 -5.9166817e+117 -5.9224962e+117 -5.9018566e+117 -5.9330091e+117 -5.9278502e+117 -5.9070814e+117 -5.9120865e+117 -5.9432094e+117 -5.9401195e+117 -5.9457623e+117 -5.9486192e+117 -5.9536003e+117 -5.9508554e+117 -5.9557881e+117 -5.9584193e+117 -5.9357345e+117 -5.9245636e+117 -5.9463793e+117 -5.9458295e+117 -5.9510914e+117 -5.9514326e+117 -5.9562077e+117 -5.9559781e+117 -5.9607342e+117 -5.9608429e+117 -5.9167331e+117 -5.9378409e+117 -5.9427357e+117 -5.9214688e+117 -5.9518537e+117 -5.9473813e+117 -5.9260016e+117 -5.9303385e+117 -5.867228e+117 -5.8809113e+117 -5.9046482e+117 -5.8931677e+117 -5.9433977e+117 -5.9740249e+117 -5.9335992e+117 -5.9645119e+117 -5.9840512e+117 -5.979243e+117 -5.9884676e+117 -5.9927801e+117 -5.9242123e+117 -5.955437e+117 -5.9144478e+117 -5.9454718e+117 -5.9603854e+117 -5.9654592e+117 -5.9748683e+117 -5.9701676e+117 -5.952321e+117 -5.9825578e+117 -5.9611405e+117 -5.9912082e+117 -6.0012868e+117 -5.9968049e+117 -6.0053938e+117 -6.0094221e+117 -6.0132003e+117 -6.0173656e+117 -6.0211082e+117 -6.0247023e+117 -5.9630628e+117 -5.968026e+117 -5.9727092e+117 -5.9773766e+117 -5.9817745e+117 -5.9864185e+117 -5.9907437e+117 -5.9950218e+117 -5.9653826e+117 -5.9653764e+117 -5.9702427e+117 -5.9700509e+117 -5.9746656e+117 -5.9749001e+117 -5.9795232e+117 -5.9792159e+117 -5.9344309e+117 -5.9561766e+117 -5.9606855e+117 -5.9386241e+117 -5.9695199e+117 -5.9651619e+117 -5.9428609e+117 -5.9469562e+117 -5.9836496e+117 -5.983926e+117 -5.9884753e+117 -5.988088e+117 -5.9923051e+117 -5.9927529e+117 -5.9969906e+117 -5.9964205e+117 -5.9510538e+117 -5.9738109e+117 -5.9781987e+117 -5.9552649e+117 -5.986406e+117 -5.9824091e+117 -5.9594908e+117 -5.9634328e+117 -5.9991033e+117 -6.0034614e+117 -6.0075306e+117 -6.011564e+117 -6.0153675e+117 -6.019349e+117 -6.0229771e+117 -6.0265538e+117 -6.0003932e+117 -6.0010665e+117 -6.0053199e+117 -6.0043724e+117 -6.0133633e+117 -6.0093508e+117 -6.0123184e+117 -6.0083657e+117 -5.9979587e+117 -5.97446e+117 -5.9779242e+117 -6.0017348e+117 -5.9671102e+117 -5.9902236e+117 -5.9941006e+117 -5.9707929e+117 -6.0053673e+117 -6.0089878e+117 -5.98494e+117 -5.9815007e+117 -6.0156687e+117 -6.0124018e+117 -5.9882193e+117 -5.991339e+117 -6.0209431e+117 -6.0171089e+117 -6.0196561e+117 -6.0159629e+117 -6.0280784e+117 -6.024517e+117 -6.0265972e+117 -6.0231587e+117 -6.1269883e+117 -6.1064745e+117 -6.2194946e+117 -6.194353e+117 -6.209999e+117 -6.2052519e+117 -6.1654687e+117 -6.203719e+117 -6.1838884e+117 -6.1403852e+117 -6.1715374e+117 -6.1592047e+117 -6.1027291e+117 -5.4985739e+117 -5.8773401e+117 -5.8323432e+117 -5.5136168e+117 -5.9541763e+117 -5.8590467e+117 -6.1246365e+117 -6.0905492e+117 -6.0378285e+117 -5.7838581e+117 -5.767131e+117 -5.7450311e+117 -5.6202621e+117 -5.9661353e+117 -5.5705198e+117 -5.1911822e+117 -5.3474511e+117 -5.2416854e+117 -5.1172972e+117 -5.2508198e+117 -5.4692385e+117 -5.3958116e+117 -5.4962543e+117 -5.9704429e+117 -5.5184672e+117 -5.7043018e+117 -5.4033203e+117 -6.0055205e+117 -5.6023534e+117 -6.2189283e+117 -5.7868025e+117 -6.2535988e+117 -1.5962273e+117 -5.8858414e+117 -4.7855431e+117 -6.1711481e+117 -5.6592674e+117 -5.5026223e+117 -5.1875369e+117 -5.3191339e+117 -4.7171666e+117 -4.5880096e+117 -4.8573425e+117 -6.4428095e+117 -6.0573483e+117 -4.2843057e+117 -4.0693304e+117 -3.8520843e+117 -4.5145322e+117 -4.6966883e+117 -5.9117392e+117 -5.8850299e+117 -5.9077525e+117 -5.8812713e+117 -5.9197506e+117 -5.8928966e+117 -5.9156988e+117 -5.8888151e+117 -5.9279218e+117 -5.9008238e+117 -5.9238324e+117 -5.8967707e+117 -5.9359656e+117 -5.9089604e+117 -5.9319626e+117 -5.9048483e+117 -5.9430815e+117 -5.9156334e+117 -5.9396817e+117 -5.9124577e+117 -5.9498429e+117 -5.922251e+117 -5.9464762e+117 -5.9188504e+117 -5.9531817e+117 -5.9254121e+117 -5.9564771e+117 -5.9286053e+117 -5.9625948e+117 -5.934617e+117 -5.9595809e+117 -5.9316366e+117 -5.8299558e+117 -5.8072588e+117 -5.8142649e+117 -5.8241955e+117 -5.8016188e+117 -5.8053315e+117 -5.8432178e+117 -5.8196421e+117 -5.8368632e+117 -5.8134888e+117 -5.7662517e+117 -5.8554897e+117 -5.8312235e+117 -5.8495768e+117 -5.825433e+117 -5.8612956e+117 -5.8367653e+117 -5.86663e+117 -5.8420206e+117 -5.7363879e+117 -5.8765242e+117 -5.8511939e+117 -5.8716097e+117 -5.8466034e+117 -5.8860796e+117 -5.8604012e+117 -5.8813861e+117 -5.8557549e+117 -5.8950905e+117 -5.8690317e+117 -5.8906046e+117 -5.864677e+117 -5.9036591e+117 -5.8775048e+117 -5.8994039e+117 -5.8732489e+117 -5.6862218e+117 -5.7105294e+117 -5.7389773e+117 -5.8611541e+117 -5.7441054e+117 -5.8723928e+117 -5.6175889e+117 -5.4868933e+117 -5.1493079e+117 -5.3519494e+117 -5.351743e+117 -5.486184e+117 -5.6142884e+117 -5.9832007e+117 -6.0024975e+117 -4.8736626e+117 -4.5850013e+117 -5.6025922e+117 -5.6221482e+117 -5.6422682e+117 -5.6641503e+117 -6.1318934e+117 -6.2216238e+117 -6.2026165e+117 -6.1047231e+117 -6.742186e+117 -5.9696046e+117 -6.1259843e+117 -6.0845696e+117 -5.912724e+117 -5.3275736e+117 -5.6060536e+117 -5.3872945e+117 -6.0379793e+117 -5.8262616e+117 -6.074793e+117 -5.6590933e+117 -5.7877801e+117 -1.8192472e+117 -4.9621518e+117 -6.1916156e+117 -6.2644126e+117 -6.1907868e+117 -6.2750454e+117 -6.2760525e+117 -3.6374534e+117 -3.8597141e+117 -4.0836843e+117 -4.3134824e+117 -5.7261444e+117 -5.7399404e+117 -5.7439858e+117 -5.7301675e+117 -5.7340265e+117 -5.7478462e+117 -5.7379918e+117 -5.751828e+117 -5.7546164e+117 -5.7701925e+117 -5.7585876e+117 -5.7741541e+117 -5.7666358e+117 -5.778265e+117 -5.7824802e+117 -5.762532e+117 -5.7870962e+117 -5.7912144e+117 -5.8097368e+117 -5.8054671e+117 -5.8252827e+117 -5.8296949e+117 -5.8183888e+117 -5.7953671e+117 -5.8140062e+117 -5.7996668e+117 -5.8340682e+117 -5.8385746e+117 -5.7596489e+117 -5.7417199e+117 -5.7556766e+117 -5.7456434e+117 -5.7706093e+117 -5.7864761e+117 -5.7904008e+117 -5.774512e+117 -5.7529478e+117 -5.7670459e+117 -5.7492772e+117 -5.7632786e+117 -5.7782573e+117 -5.7943158e+117 -5.7821383e+117 -5.7982621e+117 -5.8265903e+117 -5.8037164e+117 -5.8224672e+117 -5.8077348e+117 -5.8427534e+117 -5.8469638e+117 -5.8157362e+117 -5.8347479e+117 -5.8117149e+117 -5.830674e+117 -5.8510856e+117 -5.8552787e+117 -5.6495755e+117 -5.6595782e+117 -5.6530135e+117 -5.6629962e+117 -5.6732658e+117 -5.6697606e+117 -5.6802888e+117 -5.6838541e+117 -5.6593407e+117 -5.6694174e+117 -5.6561961e+117 -5.6662214e+117 -5.687264e+117 -5.6765836e+117 -5.6798312e+117 -5.6905658e+117 -5.6357292e+117 -5.6389705e+117 -5.6455336e+117 -5.6488403e+117 -5.6555328e+117 -5.6590135e+117 -5.6658607e+117 -5.66944e+117 -5.6423362e+117 -5.65229e+117 -5.6560286e+117 -5.6460467e+117 -5.6731111e+117 -5.6768227e+117 -5.6626068e+117 -5.666281e+117 -5.6768493e+117 -5.6883105e+117 -5.692116e+117 -5.6805675e+117 -5.6842611e+117 -5.6958591e+117 -5.6995935e+117 -5.6879693e+117 -5.7167768e+117 -5.7003107e+117 -5.7128258e+117 -5.7042051e+117 -5.724537e+117 -5.7080152e+117 -5.7206545e+117 -5.7118051e+117 -5.6914907e+117 -5.7031947e+117 -5.7069591e+117 -5.6951749e+117 -5.7020021e+117 -5.6986341e+117 -5.7105085e+117 -5.7139523e+117 -5.7154485e+117 -5.7282143e+117 -5.7320743e+117 -5.7192784e+117 -5.7264159e+117 -5.7228897e+117 -5.7357517e+117 -5.7393326e+117 -5.6351935e+117 -5.6221032e+117 -5.6318056e+117 -5.6254434e+117 -5.6416991e+117 -5.651747e+117 -5.6552902e+117 -5.6451476e+117 -5.6421559e+117 -5.6288673e+117 -5.6386287e+117 -5.6324346e+117 -5.6486444e+117 -5.6588758e+117 -5.6624947e+117 -5.6521829e+117 -5.6771407e+117 -5.6623675e+117 -5.6733962e+117 -5.6660111e+117 -5.6850051e+117 -5.6970183e+117 -5.7010063e+117 -5.6888621e+117 -5.6847074e+117 -5.669683e+117 -5.6809445e+117 -5.673378e+117 -5.6927294e+117 -5.7050005e+117 -5.696615e+117 -5.7090203e+117 -5.6074681e+117 -5.61704e+117 -5.6039476e+117 -5.6134702e+117 -5.6230638e+117 -5.6334037e+117 -5.6266444e+117 -5.6367018e+117 -5.6404357e+117 -5.6307102e+117 -5.6329101e+117 -5.6425832e+117 -5.6210787e+117 -5.611526e+117 -5.6136317e+117 -5.6232168e+117 -5.6287393e+117 -5.6161179e+117 -5.6257462e+117 -5.6190483e+117 -5.6453263e+117 -5.6355424e+117 -5.6385326e+117 -5.6484425e+117 -5.6682166e+117 -5.6645204e+117 -5.6799185e+117 -5.6760477e+117 -5.6468534e+117 -5.653763e+117 -5.6435273e+117 -5.6570244e+117 -5.6607767e+117 -5.6507086e+117 -5.6636002e+117 -5.6528863e+117 -5.6589335e+117 -5.6556872e+117 -5.6664876e+117 -5.6698631e+117 -5.6863847e+117 -5.6718222e+117 -5.6831768e+117 -5.6748548e+117 -5.68135e+117 -5.6932439e+117 -5.677787e+117 -5.6894721e+117 -5.7425915e+117 -5.7576727e+117 -5.7372876e+117 -5.7517908e+117 -5.7696432e+117 -5.7490401e+117 -5.7651246e+117 -5.7531339e+117 -5.7667886e+117 -5.7910051e+117 -5.7834466e+117 -5.7733427e+117 -5.7825224e+117 -5.7875586e+117 -5.7628782e+117 -5.7802348e+117 -5.7576598e+117 -5.7746875e+117 -5.7932085e+117 -5.7991312e+117 -5.6871792e+117 -5.6912676e+117 -5.6989381e+117 -5.7033179e+117 -5.7108901e+117 -5.6951873e+117 -5.7074636e+117 -5.6985034e+117 -5.7155535e+117 -5.7241942e+117 -5.710909e+117 -5.7291193e+117 -5.7205155e+117 -5.7341955e+117 -5.737969e+117 -5.7240393e+117 -5.7017327e+117 -5.7143571e+117 -5.7186103e+117 -5.7057626e+117 -5.7277516e+117 -5.7420685e+117 -5.7323156e+117 -5.7469596e+117 -5.7097059e+117 -5.7227432e+117 -5.7138436e+117 -5.7270937e+117 -5.7413374e+117 -5.756551e+117 -5.73671e+117 -5.7516571e+117 -5.7221719e+117 -5.7358134e+117 -5.7179575e+117 -5.7314322e+117 -5.7458619e+117 -5.7613143e+117 -5.7660043e+117 -5.7504177e+117 -5.7678853e+117 -5.7855537e+117 -5.7910229e+117 -5.7730718e+117 -5.7780383e+117 -5.7962245e+117 -5.7828528e+117 -5.8011481e+117 -5.8047542e+117 -5.8104373e+117 -5.8208582e+117 -5.8157809e+117 -5.5694468e+117 -5.5786385e+117 -5.5654685e+117 -5.5747826e+117 -5.5853589e+117 -5.5741408e+117 -5.5831636e+117 -5.5763975e+117 -5.5843959e+117 -5.5881466e+117 -5.5942901e+117 -5.5978518e+117 -5.5924797e+117 -5.6018726e+117 -5.6039672e+117 -5.5945992e+117 -5.5817422e+117 -5.5906652e+117 -5.5789101e+117 -5.5878148e+117 -5.5970365e+117 -5.6064577e+117 -5.5999309e+117 -5.6093552e+117 -5.5638186e+117 -5.5833554e+117 -5.5504702e+117 -5.5587509e+117 -5.5617451e+117 -5.5535705e+117 -5.5601279e+117 -5.5567693e+117 -5.5649246e+117 -5.5682975e+117 -5.5787329e+117 -5.5671728e+117 -5.5757217e+117 -5.5701721e+117 -5.5767729e+117 -5.5854398e+117 -5.5733563e+117 -5.5820022e+117 -5.5342892e+117 -5.5426896e+117 -5.5299703e+117 -5.5383901e+117 -5.5503874e+117 -5.5396577e+117 -5.5479868e+117 -5.5420675e+117 -5.5470811e+117 -5.5561541e+117 -5.5514052e+117 -5.5603137e+117 -5.5565177e+117 -5.5651564e+117 -5.567481e+117 -5.558885e+117 -5.5558892e+117 -5.5446527e+117 -5.552966e+117 -5.5475532e+117 -5.5614851e+117 -5.5700841e+117 -5.564339e+117 -5.572893e+117 -5.5273707e+117 -5.5451227e+117 -5.5247258e+117 -5.5637133e+117 -5.5846026e+117 -5.5935964e+117 -5.5967571e+117 -5.5876798e+117 -5.6124075e+117 -5.6061701e+117 -5.6029468e+117 -5.615682e+117 -5.5909743e+117 -5.5944706e+117 -5.6001244e+117 -5.6036547e+117 -5.6191123e+117 -5.6131298e+117 -5.6226796e+117 -5.6095485e+117 -5.4291493e+117 -5.4161113e+117 -5.43414e+117 -5.4457458e+117 -5.4661588e+117 -5.4562718e+117 -5.4736202e+117 -5.47718e+117 -5.4862025e+117 -5.4914403e+117 -5.4818522e+117 -5.5033672e+117 -5.495022e+117 -5.5001664e+117 -5.5083474e+117 -5.5170303e+117 -5.521126e+117 -5.5122837e+117 -5.5256138e+117 -5.509437e+117 -5.4910614e+117 -5.4534701e+117 -5.4097221e+117 -5.3990754e+117 -5.3819217e+117 -5.3973432e+117 -5.413381e+117 -5.371598e+117 -5.4893798e+117 -5.3328355e+117 -5.316611e+117 -5.3372332e+117 -5.3519524e+117 -5.3661186e+117 -5.3483052e+117 -5.3652788e+117 -5.3816909e+117 -5.3366398e+117 -5.300411e+117 -5.277049e+117 -5.36028e+117 -5.4622712e+117 -5.4981794e+117 -5.5328808e+117 -5.5717743e+117 -5.5313658e+117 -5.5392467e+117 -5.5422263e+117 -5.5344268e+117 -5.5374551e+117 -5.5406589e+117 -5.5451809e+117 -5.5483953e+117 -5.5578426e+117 -5.5471215e+117 -5.5549752e+117 -5.550017e+117 -5.5562369e+117 -5.5641789e+117 -5.5529654e+117 -5.5608628e+117 -5.5262046e+117 -5.5140421e+117 -5.5231094e+117 -5.5170808e+117 -5.5231899e+117 -5.5201781e+117 -5.5293174e+117 -5.5324294e+117 -5.4901792e+117 -5.5024165e+117 -5.4992201e+117 -5.5053447e+117 -5.5085714e+117 -5.4782801e+117 -5.4837894e+117 -5.4957936e+117 -5.5081452e+117 -5.5051613e+117 -5.5114202e+117 -5.5144967e+117 -5.4922835e+117 -5.4882003e+117 -5.5006604e+117 -5.5051799e+117 -5.5131569e+117 -5.5105604e+117 -5.5260303e+117 -5.5170471e+117 -5.519729e+117 -5.5287225e+117 -5.535412e+117 -5.5382595e+117 -5.5312607e+117 -5.540881e+117 -5.5433577e+117 -5.5336132e+117 -5.5220072e+117 -5.5153089e+117 -5.5176338e+117 -5.5243735e+117 -5.4673437e+117 -5.4640479e+117 -5.4758025e+117 -5.4794844e+117 -5.4602177e+117 -5.4549039e+117 -5.4663269e+117 -5.4717371e+117 -5.554598e+117 -5.5436826e+117 -5.5514933e+117 -5.5466614e+117 -5.5594297e+117 -5.562616e+117 -5.5674298e+117 -5.5706773e+117 -5.5601465e+117 -5.549386e+117 -5.557444e+117 -5.5519614e+117 -5.5736833e+117 -5.5655443e+117 -5.5683196e+117 -5.5765041e+117 -5.5004635e+117 -5.5097628e+117 -5.51322e+117 -5.5040043e+117 -5.5075579e+117 -5.5166309e+117 -5.5108532e+117 -5.5199677e+117 -5.4838202e+117 -5.4987561e+117 -5.4925033e+117 -5.4962941e+117 -5.5023623e+117 -5.4762134e+117 -5.4890121e+117 -5.4850821e+117 -5.4915079e+117 -5.4953195e+117 -5.471871e+117 -5.4638044e+117 -5.487367e+117 -5.497758e+117 -5.5004068e+117 -5.4903309e+117 -5.4936276e+117 -5.5032966e+117 -5.5064188e+117 -5.4968714e+117 -5.4683971e+117 -5.4844702e+117 -5.4777577e+117 -5.481661e+117 -5.4881124e+117 -5.4784069e+117 -5.4713154e+117 -5.4600092e+117 -5.4745379e+117 -5.4813531e+117 -5.4459813e+117 -5.4553735e+117 -5.517415e+117 -5.5067803e+117 -5.5148988e+117 -5.5092886e+117 -5.5230794e+117 -5.5312513e+117 -5.5337008e+117 -5.525563e+117 -5.5229763e+117 -5.5119563e+117 -5.5200543e+117 -5.5149623e+117 -5.5281669e+117 -5.5363177e+117 -5.5310679e+117 -5.5391868e+117 -5.5181208e+117 -5.5260378e+117 -5.5293316e+117 -5.5214838e+117 -5.5282376e+117 -5.5248074e+117 -5.5326745e+117 -5.5361192e+117 -5.5421515e+117 -5.5453331e+117 -5.5340674e+117 -5.5373199e+117 -5.5440447e+117 -5.5406072e+117 -5.548608e+117 -5.5519787e+117 -5.429073e+117 -5.4178482e+117 -5.4318083e+117 -5.4419588e+117 -5.4514217e+117 -5.439146e+117 -5.4481985e+117 -5.459944e+117 -5.4037993e+117 -5.3934305e+117 -5.4036751e+117 -5.413906e+117 -5.3815988e+117 -5.3674467e+117 -5.3786868e+117 -5.3922332e+117 -5.4041281e+117 -5.3909235e+117 -5.4038168e+117 -5.4161613e+117 -5.4247339e+117 -5.4148621e+117 -5.4267763e+117 -5.4362449e+117 -5.4237948e+117 -5.4204996e+117 -5.4302547e+117 -5.4335581e+117 -5.4171997e+117 -5.4116557e+117 -5.4213323e+117 -5.4269438e+117 -5.4432989e+117 -5.4319781e+117 -5.4374434e+117 -5.4486107e+117 -5.4522518e+117 -5.4409015e+117 -5.444148e+117 -5.4554257e+117 -5.5976844e+117 -5.6069258e+117 -5.6100693e+117 -5.600827e+117 -5.6075201e+117 -5.6039967e+117 -5.6132274e+117 -5.616791e+117 -5.6291e+117 -5.6164157e+117 -5.6259407e+117 -5.6195384e+117 -5.6263763e+117 -5.6360854e+117 -5.6227541e+117 -5.6324302e+117 -5.5874471e+117 -5.575723e+117 -5.5841108e+117 -5.579026e+117 -5.59282e+117 -5.6016933e+117 -5.6050482e+117 -5.5961701e+117 -5.5849553e+117 -5.593493e+117 -5.5820691e+117 -5.5905437e+117 -5.599284e+117 -5.6081986e+117 -5.6022842e+117 -5.6112205e+117 -5.6235991e+117 -5.6109054e+117 -5.6202078e+117 -5.6142526e+117 -5.6298465e+117 -5.6395788e+117 -5.643008e+117 -5.6332472e+117 -5.6204702e+117 -5.6298662e+117 -5.6174e+117 -5.626778e+117 -5.6364256e+117 -5.6462167e+117 -5.6395467e+117 -5.6493271e+117 -5.56312e+117 -5.5713212e+117 -5.5742934e+117 -5.5660232e+117 -5.5690698e+117 -5.5774048e+117 -5.5724405e+117 -5.5808055e+117 -5.5916773e+117 -5.5798646e+117 -5.5885789e+117 -5.582892e+117 -5.5894831e+117 -5.5860279e+117 -5.5948655e+117 -5.5983438e+117 -5.4830815e+117 -5.3549369e+117 -5.2230298e+117 -4.8896052e+117 -5.087993e+117 -5.0879112e+117 -5.2193309e+117 -5.0865766e+117 -5.2183361e+117 -5.2211528e+117 -5.0847067e+117 -5.3503162e+117 -5.3453084e+117 -5.4785379e+117 -5.4760426e+117 -5.4760521e+117 -5.3474345e+117 -5.3521272e+117 -5.481628e+117 -4.6213533e+117 -4.8210844e+117 -4.9547881e+117 -4.9537268e+117 -4.817826e+117 -5.0876505e+117 -5.2220718e+117 -5.2253487e+117 -5.0886863e+117 -5.3633525e+117 -5.3569177e+117 -5.4896429e+117 -5.4996304e+117 -4.353426e+117 -4.5528143e+117 -4.6800679e+117 -4.6850495e+117 -4.5464187e+117 -4.8190268e+117 -4.8162843e+117 -4.9529494e+117 -4.953291e+117 -5.0916162e+117 -5.2314819e+117 -5.2390926e+117 -5.0948891e+117 -5.514386e+117 -5.3731415e+117 -5.3848064e+117 -5.5285733e+117 -5.2737408e+117 -5.3614207e+117 -5.5063769e+117 -5.466826e+117 -5.5041587e+117 -5.4671476e+117 -5.5830998e+117 -5.5429954e+117 -5.5392662e+117 -5.5784397e+117 -4.7437796e+117 -4.9292036e+117 -4.8823287e+117 -5.0040781e+117 -4.9877319e+117 -5.0583528e+117 -5.0829806e+117 -4.9995075e+117 -4.8785972e+117 -4.1030073e+117 -4.2884264e+117 -4.2807485e+117 -4.4058046e+117 -4.4137506e+117 -4.5465533e+117 -4.540597e+117 -4.6748784e+117 -4.6783293e+117 -4.7063742e+117 -4.9573203e+117 -4.8152464e+117 -4.815058e+117 -4.9603815e+117 -5.2754614e+117 -5.2476916e+117 -5.2657126e+117 -5.2912292e+117 -5.3063103e+117 -5.2821402e+117 -5.2999646e+117 -5.3221039e+117 -5.2645182e+117 -5.2257166e+117 -5.184149e+117 -5.1544325e+117 -5.1825822e+117 -5.2141391e+117 -5.1839205e+117 -5.2374439e+117 -5.2578449e+117 -5.2281738e+117 -5.2051113e+117 -5.1327475e+117 -5.1007247e+117 -5.1950787e+117 -5.0924624e+117 -5.1896487e+117 -5.1032851e+117 -5.1099381e+117 -5.2597298e+117 -5.248848e+117 -3.869959e+117 -4.0371057e+117 -4.0418693e+117 -4.1539204e+117 -4.1591134e+117 -4.2808927e+117 -4.4051332e+117 -4.4013283e+117 -4.2761278e+117 -4.535083e+117 -4.5372542e+117 -4.6738052e+117 -4.6730054e+117 -4.8629634e+117 -4.8544477e+117 -4.8661949e+117 -4.8570452e+117 -5.0131399e+117 -5.0093422e+117 -5.0074596e+117 -5.0091341e+117 -5.1000808e+117 -5.1595279e+117 -5.1641553e+117 -5.0994519e+117 -5.1038352e+117 -5.0998724e+117 -5.1667139e+117 -5.1703894e+117 -5.1723298e+117 -5.1044783e+117 -5.101957e+117 -5.1721348e+117 -5.1748391e+117 -5.1035845e+117 -5.1097899e+117 -5.1793685e+117 -5.1103046e+117 -5.1801925e+117 -4.965794e+117 -4.8168166e+117 -4.8185675e+117 -4.9709307e+117 -5.3612895e+117 -5.35251e+117 -5.3623924e+117 -5.3719512e+117 -5.3404491e+117 -5.3233925e+117 -5.3337082e+117 -5.3500507e+117 -5.356371e+117 -5.3448639e+117 -5.3602311e+117 -5.3707538e+117 -5.3828833e+117 -5.3724909e+117 -5.3826177e+117 -5.3932193e+117 -5.3310709e+117 -5.3244863e+117 -5.3476806e+117 -5.3400062e+117 -5.3143522e+117 -5.2982662e+117 -5.3285641e+117 -5.3117735e+117 -5.2788742e+117 -5.2451142e+117 -5.2552354e+117 -5.2929117e+117 -5.2641844e+117 -5.2598113e+117 -5.3007914e+117 -5.3061647e+117 -5.2755182e+117 -5.2715395e+117 -5.3186142e+117 -5.3154597e+117 -5.2682051e+117 -5.266694e+117 -5.3094262e+117 -5.3121207e+117 -5.3385861e+117 -5.3350964e+117 -5.3530533e+117 -5.3571968e+117 -5.341878e+117 -5.3607044e+117 -5.3634288e+117 -5.3446953e+117 -5.3724691e+117 -5.3676141e+117 -5.3793899e+117 -5.3847974e+117 -5.4012693e+117 -5.3905148e+117 -5.3962337e+117 -5.4068857e+117 -5.4103396e+117 -5.400063e+117 -5.4026144e+117 -5.4132802e+117 -5.3885982e+117 -5.3760882e+117 -5.3786417e+117 -5.3910205e+117 -5.4578959e+117 -5.4467497e+117 -5.4500495e+117 -5.4610996e+117 -5.4361557e+117 -5.426018e+117 -5.4282454e+117 -5.4390987e+117 -5.4647204e+117 -5.4535096e+117 -5.4692224e+117 -5.4427829e+117 -5.5091315e+117 -5.4957168e+117 -5.4995678e+117 -5.5134371e+117 -5.4824549e+117 -5.4698542e+117 -5.4732057e+117 -5.4859649e+117 -5.4816429e+117 -5.4768835e+117 -5.4899332e+117 -5.4948844e+117 -5.5182372e+117 -5.5038949e+117 -5.5090547e+117 -5.5235861e+117 -5.3798346e+117 -5.392154e+117 -5.3930232e+117 -5.4150477e+117 -5.4037484e+117 -5.404706e+117 -5.4164617e+117 -5.2754715e+117 -5.31904e+117 -5.3453652e+117 -5.364322e+117 -5.635024e+117 -5.6230989e+117 -5.6325151e+117 -5.6256315e+117 -5.642205e+117 -5.6519535e+117 -5.6544217e+117 -5.6446662e+117 -5.6311125e+117 -5.6404234e+117 -5.6282466e+117 -5.637564e+117 -5.6472061e+117 -5.6570379e+117 -5.6500994e+117 -5.659969e+117 -5.598649e+117 -5.6071599e+117 -5.6100017e+117 -5.6015696e+117 -5.6072059e+117 -5.6043791e+117 -5.6128145e+117 -5.6156754e+117 -5.6274952e+117 -5.6158357e+117 -5.6246718e+117 -5.6186582e+117 -5.6244231e+117 -5.6333774e+117 -5.6215017e+117 -5.6304136e+117 -5.5986198e+117 -5.5875138e+117 -5.5960892e+117 -5.590042e+117 -5.6049029e+117 -5.6138219e+117 -5.6163396e+117 -5.6074168e+117 -5.6043087e+117 -5.592716e+117 -5.6012776e+117 -5.5957279e+117 -5.6101095e+117 -5.6190352e+117 -5.6130356e+117 -5.6219121e+117 -5.6338689e+117 -5.6432244e+117 -5.6461625e+117 -5.6367332e+117 -5.6628982e+117 -5.6529802e+117 -5.655972e+117 -5.6659677e+117 -5.6396763e+117 -5.642702e+117 -5.6491624e+117 -5.652235e+117 -5.669085e+117 -5.662164e+117 -5.6723039e+117 -5.6590049e+117 -5.5760782e+117 -5.5845351e+117 -5.5868586e+117 -5.5784822e+117 -5.5807642e+117 -5.5830738e+117 -5.5889867e+117 -5.5912582e+117 -5.6032313e+117 -5.5928538e+117 -5.6010985e+117 -5.5950458e+117 -5.5994782e+117 -5.6078257e+117 -5.5971266e+117 -5.6053886e+117 -5.5695106e+117 -5.5568099e+117 -5.5670917e+117 -5.5591703e+117 -5.5719483e+117 -5.5743494e+117 -5.5421692e+117 -5.5395915e+117 -5.5468546e+117 -5.5494048e+117 -5.6095748e+117 -5.6180898e+117 -5.6203438e+117 -5.6117419e+117 -5.6139575e+117 -5.622653e+117 -5.6164828e+117 -5.6252466e+117 -5.638393e+117 -5.6269253e+117 -5.6359485e+117 -5.6292636e+117 -5.634317e+117 -5.6435946e+117 -5.6316434e+117 -5.6408632e+117 -5.6649869e+117 -5.6751989e+117 -5.6779209e+117 -5.6676882e+117 -5.6453623e+117 -5.654964e+117 -5.6575965e+117 -5.6478945e+117 -5.6504285e+117 -5.6601971e+117 -5.65322e+117 -5.6630189e+117 -5.6731713e+117 -5.670295e+117 -5.6805517e+117 -5.6834967e+117 -5.6191182e+117 -5.6279101e+117 -5.637014e+117 -5.6463189e+117 -5.6559621e+117 -5.6657726e+117 -5.6863017e+117 -5.6759463e+117 -5.5651768e+117 -5.5543851e+117 -5.5626406e+117 -5.5569273e+117 -5.5708207e+117 -5.5790152e+117 -5.5815122e+117 -5.573329e+117 -5.5624417e+117 -5.5706634e+117 -5.5595636e+117 -5.5677704e+117 -5.575948e+117 -5.5841984e+117 -5.5788953e+117 -5.5871778e+117 -5.5592382e+117 -5.5462526e+117 -5.5564189e+117 -5.548982e+117 -5.554486e+117 -5.551814e+117 -5.5620238e+117 -5.5647289e+117 -5.5419412e+117 -5.5346756e+117 -5.5374894e+117 -5.5447011e+117 -5.5321427e+117 -5.5293659e+117 -5.5365235e+117 -5.5393333e+117 -5.5358488e+117 -5.5457001e+117 -5.5481971e+117 -5.5382257e+117 -5.5408634e+117 -5.5508667e+117 -5.5435648e+117 -5.5536634e+117 -5.5312022e+117 -5.5241557e+117 -5.526956e+117 -5.5340278e+117 -5.5218251e+117 -5.5195265e+117 -5.5263623e+117 -5.5287622e+117 -5.5652257e+117 -5.5734887e+117 -5.5763829e+117 -5.5680592e+117 -5.5708465e+117 -5.5736487e+117 -5.5792252e+117 -5.5820679e+117 -5.5901125e+117 -5.5930631e+117 -5.5817977e+117 -5.5847272e+117 -5.5904205e+117 -5.5875643e+117 -5.5959143e+117 -5.5987372e+117 -5.7693208e+117 -5.7838092e+117 -5.7873968e+117 -5.7729367e+117 -5.7800974e+117 -5.7764399e+117 -5.7909643e+117 -5.79473e+117 -5.8193308e+117 -5.7992303e+117 -5.8156886e+117 -5.8028307e+117 -5.8103782e+117 -5.8271132e+117 -5.8065023e+117 -5.8231689e+117 -5.773517e+117 -5.7561324e+117 -5.7703504e+117 -5.7591941e+117 -5.7855464e+117 -5.8016978e+117 -5.8049812e+117 -5.7887587e+117 -5.7803414e+117 -5.76232e+117 -5.7766985e+117 -5.7658545e+117 -5.792104e+117 -5.8084708e+117 -5.7957328e+117 -5.8121576e+117 -5.8418473e+117 -5.8192465e+117 -5.8383183e+117 -5.8226532e+117 -5.858961e+117 -5.8625736e+117 -5.8299685e+117 -5.8493366e+117 -5.8261959e+117 -5.8454851e+117 -5.8662505e+117 -5.8702341e+117 -5.8335649e+117 -5.8530012e+117 -5.8568666e+117 -5.8373175e+117 -5.8779563e+117 -5.8740167e+117 -5.8412119e+117 -5.8452279e+117 -5.8608483e+117 -5.8649065e+117 -5.8860612e+117 -5.8819438e+117 -5.8486688e+117 -5.8683943e+117 -5.8716159e+117 -5.8518511e+117 -5.8580077e+117 -5.8548663e+117 -5.8745893e+117 -5.8777752e+117 -5.8895793e+117 -5.8927275e+117 -5.8990728e+117 -5.895779e+117 -5.795051e+117 -5.8098514e+117 -5.8126365e+117 -5.7978658e+117 -5.8030461e+117 -5.8004339e+117 -5.8152105e+117 -5.8178553e+117 -5.8452414e+117 -5.8256342e+117 -5.8425133e+117 -5.8283728e+117 -5.8337332e+117 -5.8507779e+117 -5.8310199e+117 -5.8480167e+117 -5.8011073e+117 -5.7833071e+117 -5.7980228e+117 -5.7863588e+117 -5.8137456e+117 -5.8304879e+117 -5.8335724e+117 -5.8168079e+117 -5.8070677e+117 -5.78927e+117 -5.8039931e+117 -5.7922465e+117 -5.8197855e+117 -5.8366363e+117 -5.822836e+117 -5.8397215e+117 -5.8608077e+117 -5.88067e+117 -5.8836033e+117 -5.8636125e+117 -5.9051744e+117 -5.9021339e+117 -5.8664326e+117 -5.8692477e+117 -5.8865087e+117 -5.8893582e+117 -5.911051e+117 -5.908125e+117 -5.7458301e+117 -5.7302424e+117 -5.7427632e+117 -5.7332807e+117 -5.7557551e+117 -5.7691468e+117 -5.7721411e+117 -5.7587634e+117 -5.7517716e+117 -5.7362312e+117 -5.7487701e+117 -5.7392978e+117 -5.7617239e+117 -5.775119e+117 -5.7646255e+117 -5.7779959e+117 -5.6856576e+117 -5.6961673e+117 -5.6989295e+117 -5.6883726e+117 -5.6910988e+117 -5.7017836e+117 -5.704867e+117 -5.694128e+117 -5.7070484e+117 -5.7182698e+117 -5.7211956e+117 -5.7098854e+117 -5.7127856e+117 -5.7241484e+117 -5.7272491e+117 -5.715906e+117 -5.6969895e+117 -5.7077749e+117 -5.710506e+117 -5.6997791e+117 -5.7187862e+117 -5.730029e+117 -5.7326075e+117 -5.7214066e+117 -5.7419443e+117 -5.7543236e+117 -5.7569966e+117 -5.7445554e+117 -5.7497196e+117 -5.747113e+117 -5.759587e+117 -5.7621783e+117 -5.7807735e+117 -5.7835576e+117 -5.7672815e+117 -5.7700061e+117 -5.7752009e+117 -5.7725976e+117 -5.7861665e+117 -5.7887578e+117 -5.719943e+117 -5.7049869e+117 -5.7170197e+117 -5.7078727e+117 -5.7295307e+117 -5.7424425e+117 -5.7453808e+117 -5.7324287e+117 -5.7138995e+117 -5.7260404e+117 -5.7107002e+117 -5.722788e+117 -5.7353767e+117 -5.7484717e+117 -5.7387297e+117 -5.7519071e+117 -5.6731455e+117 -5.6835262e+117 -5.686759e+117 -5.6763025e+117 -5.679471e+117 -5.6899831e+117 -5.6932581e+117 -5.6827323e+117 -5.708664e+117 -5.6942682e+117 -5.7053263e+117 -5.6975574e+117 -5.7153146e+117 -5.700812e+117 -5.7119784e+117 -5.7041184e+117 -5.6747597e+117 -5.662003e+117 -5.6721336e+117 -5.664537e+117 -5.6826348e+117 -5.6934383e+117 -5.6962395e+117 -5.6853389e+117 -5.6805169e+117 -5.6671943e+117 -5.6774907e+117 -5.6701816e+117 -5.6881115e+117 -5.6990704e+117 -5.6912001e+117 -5.7022048e+117 -5.7170999e+117 -5.7293058e+117 -5.7327923e+117 -5.720485e+117 -5.723846e+117 -5.7362101e+117 -5.7272229e+117 -5.7396511e+117 -5.755328e+117 -5.7589044e+117 -5.7420942e+117 -5.7456142e+117 -5.7525908e+117 -5.7490611e+117 -5.7624187e+117 -5.7659909e+117 -3.6442621e+117 -3.811179e+117 -3.8073916e+117 -3.919913e+117 -3.9239983e+117 -4.0367668e+117 -4.1483835e+117 -4.1519206e+117 -4.0326696e+117 -4.2727206e+117 -4.3987149e+117 -4.3963572e+117 -4.269775e+117 -4.6766356e+117 -4.5331106e+117 -4.6744672e+117 -4.5321228e+117 -3.6989733e+117 -3.5880874e+117 -3.5840797e+117 -3.6953848e+117 -3.8075096e+117 -3.8045866e+117 -3.9147012e+117 -3.9166786e+117 -4.0290809e+117 -4.0273663e+117 -4.1427308e+117 -4.144669e+117 -4.2658576e+117 -4.3937866e+117 -4.392783e+117 -4.2638559e+117 -3.8023883e+117 -3.9129908e+117 -3.9113829e+117 -3.7997443e+117 -4.0259333e+117 -4.1414511e+117 -4.1409379e+117 -4.02519e+117 -5.7166825e+117 -5.7215622e+117 -5.716019e+117 -5.7299008e+117 -5.5981359e+117 -5.601967e+117 -5.595848e+117 -5.6079136e+117 -5.7360846e+117 -5.7227895e+117 -5.6091957e+117 -5.6014283e+117 -5.7737213e+117 -5.7542284e+117 -5.6367327e+117 -5.6222409e+117 -5.8482686e+117 -5.9611242e+117 -5.8571724e+117 -5.8365235e+117 -5.8236469e+117 -5.8192971e+117 -5.8241119e+117 -5.8361869e+117 -5.9229747e+117 -5.913555e+117 -5.941958e+117 -5.9205468e+117 -5.9409171e+117 -5.9704833e+117 -6.2139283e+117 -6.2476654e+117 -6.1601997e+117 -6.162332e+117 -6.0888813e+117 -6.0568649e+117 -6.1792538e+117 -6.1278061e+117 -6.0503484e+117 -6.1876257e+117 -6.1976882e+117 -6.1661009e+117 -6.0812993e+117 -6.1434616e+117 -5.9897039e+117 -5.9858179e+117 -6.0098111e+117 -6.004691e+117 -6.2076308e+117 -6.1860299e+117 -6.2348372e+117 -6.2352728e+117 -6.2304372e+117 -6.2306363e+117 -6.214696e+117 -6.2328037e+117 -6.2412265e+117 -6.2099662e+117 -6.2258783e+117 -6.2394049e+117 -6.2339384e+117 -6.2364578e+117 -6.2377522e+117 -6.2212346e+117 -6.2148973e+117 -6.2087643e+117 -6.2076934e+117 -6.1852895e+117 -6.16618e+117 -6.2362314e+117 -6.2118402e+117 -6.1979226e+117 -6.1966679e+117 -6.2012525e+117 -6.236283e+117 -6.2467265e+117 -6.2286568e+117 -6.2485443e+117 -6.2583458e+117 -6.2260053e+117 -6.2460274e+117 -6.2372287e+117 -6.228291e+117 -6.2434863e+117 -6.2257141e+117 -6.2507445e+117 -6.2703951e+117 -6.2717452e+117 -6.2582073e+117 -6.2485429e+117 -6.2395241e+117 -6.1209372e+117 -6.0726255e+117 -6.1120958e+117 -5.9851519e+117 -6.0650415e+117 -5.8772181e+117 -6.0699289e+117 -6.0487412e+117 -5.8602951e+117 -5.8604158e+117 -5.6355133e+117 -5.8900204e+117 -5.6693459e+117 -5.7552076e+117 -6.1297513e+117 -6.085845e+117 -5.985484e+117 -5.9516992e+117 -5.0429269e+117 -5.4135367e+117 -6.2142375e+117 -6.4865127e+117 -5.987724e+117 -6.0450259e+117 -6.18492e+117 -6.1965189e+117 -6.1775882e+117 -5.5663261e+117 -6.8519696e+117 -6.348889e+117 -5.1619785e+117 -6.3401309e+117 -6.139286e+117 -6.1134457e+117 -5.9032614e+117 -5.7710573e+117 -6.1405603e+117 -6.2034751e+117 -6.177635e+117 -6.2085669e+117 -5.605476e+117 -6.133755e+117 -6.1966676e+117 -5.2462008e+117 -6.3261515e+116 -4.913117e+117 -9.752161e+116 -6.1338407e+117 -6.1418556e+117 -8.1418045e+116 -1.1640288e+117 -5.5187649e+117 -6.6115934e+117 -5.8913301e+117 -6.768093e+117 -6.31679e+117 -5.9252484e+117 -5.949682e+117 -6.045763e+117 -6.2020933e+117 -6.5305443e+117 -6.5458486e+117 -6.284599e+117 -6.0732841e+117 -6.0427249e+117 -6.0702756e+117 -6.1203754e+117 -6.2008573e+117 -6.569242e+117 -6.2030149e+117 -6.187092e+117 -6.1726857e+117 -5.5882224e+117 -7.0483578e+117 -7.1517224e+117 -6.2347619e+117 -6.1849852e+117 -2.390303e+117 -2.7135138e+117 -2.3965107e+117 -6.6180801e+117 -6.0234237e+117 -3.6627079e+117 -3.7093194e+117 -6.5028549e+117 -6.4487471e+117 -5.6474109e+117 -6.4498335e+117 -5.9237584e+117 -2.6708675e+117 -4.5255206e+117 -4.6107745e+117 -4.4757058e+117 -4.2880572e+117 -4.4668435e+117 -4.6049636e+117 -4.7429452e+117 -4.7447828e+117 -4.7236637e+117 -4.7195366e+117 -4.0688479e+117 -4.3465066e+117 -4.2326255e+117 -4.2277733e+117 -4.3414637e+117 -4.4719398e+117 -4.4756729e+117 -4.6141137e+117 -4.7581681e+117 -4.6133699e+117 -4.7618886e+117 -4.949183e+117 -4.9413834e+117 -4.6164437e+117 -4.7819102e+117 -4.9612412e+117 -4.4720997e+117 -4.3442221e+117 -4.2298592e+117 -4.1213548e+117 -4.0135691e+117 -3.8519265e+117 -4.0091067e+117 -4.1173234e+117 -4.2265391e+117 -4.3420982e+117 -4.4719481e+117 -4.6191086e+117 -4.7884024e+117 -4.9720084e+117 -3.9050431e+117 -3.7963932e+117 -3.7937772e+117 -3.9017969e+117 -4.0068344e+117 -4.0102752e+117 -4.1153975e+117 -4.1131218e+117 -4.3413861e+117 -4.2242546e+117 -4.2229432e+117 -4.3410677e+117 -5.8725112e+117 -5.7201333e+117 -5.8213348e+117 -5.5634457e+117 -5.9628606e+117 -5.4031222e+117 -6.0900518e+117 -5.8382631e+117 -5.7160838e+117 -5.8231822e+117 -5.8304811e+117 -5.7024449e+117 -5.9245524e+117 -5.928823e+117 -5.8191663e+117 -5.6963988e+117 -5.5657111e+117 -5.3915653e+117 -5.5717518e+117 -5.7044839e+117 -5.5852081e+117 -5.5723562e+117 -5.8214017e+117 -5.933963e+117 -5.9353725e+117 -5.9598064e+117 -5.1292839e+117 -5.45688e+117 -5.3222995e+117 -5.3306155e+117 -5.4712222e+117 -5.6020158e+117 -5.5827335e+117 -5.7131397e+117 -5.7378763e+117 -5.9556333e+117 -5.8366934e+117 -5.8671752e+117 -5.9907452e+117 -4.8489441e+117 -5.0676961e+117 -5.0608655e+117 -5.2057583e+117 -5.2203002e+117 -5.246621e+117 -5.082045e+117 -5.2526176e+117 -5.0819828e+117 -5.3475109e+117 -5.370772e+117 -5.5231182e+117 -5.4905259e+117 -5.6309919e+117 -5.7720593e+117 -5.6725943e+117 -5.9102523e+117 -6.0378499e+117 -5.9209276e+117 -5.7653561e+117 -5.603545e+117 -5.4404839e+117 -5.2743512e+117 -5.2886445e+117 -5.5558845e+117 -5.4664874e+117 -5.8090571e+117 -5.64275e+117 -5.4685977e+117 -5.2908499e+117 -5.851124e+117 -5.6811815e+117 -5.4999147e+117 -5.3138583e+117 -5.127117e+117 -5.4098225e+117 -5.3096353e+117 -5.437668e+117 -5.3314468e+117 -5.5400717e+117 -5.5792014e+117 -5.1144475e+117 -5.1294411e+117 -5.7174197e+117 -5.5291632e+117 -5.3318726e+117 -5.1364928e+117 -5.7505452e+117 -5.5567963e+117 -5.3533541e+117 -5.151061e+117 -5.5828413e+117 -5.3741881e+117 -5.1658773e+117 -5.6075258e+117 -5.3946927e+117 -5.1818181e+117 -6.1002334e+117 -6.0609338e+117 -6.0256164e+117 -6.0040974e+117 -5.9998574e+117 -6.0062441e+117 -6.1073027e+117 -6.0710255e+117 -6.1250713e+117 -6.0651817e+117 -6.1021533e+117 -6.0739354e+117 -6.1011036e+117 -6.1513347e+117 -6.1290538e+117 -6.0270931e+117 -6.0645085e+117 -6.148696e+117 -6.1446411e+117 -6.1829847e+117 -3.1297262e+117 -4.3892465e+117 -5.2086898e+117 -3.8016022e+117 -5.7313653e+117 -5.6960156e+117 -5.4243018e+117 -5.6780849e+117 -5.4195519e+117 -5.1001477e+117 -5.9518482e+117 -5.9337042e+117 -5.9419466e+117 -4.9778954e+117 -4.3143797e+117 -5.4030852e+117 -5.6890832e+117 -5.9248879e+117 -5.6705803e+117 -5.3957523e+117 -5.9841125e+117 -5.925168e+117 -6.0646488e+117 -5.7024085e+117 -5.9016211e+117 -5.7559425e+117 -5.4747218e+117 -5.0094991e+117 -4.8352306e+117 -4.3297392e+117 -4.8652367e+117 -4.129339e+117 -4.3504769e+117 -5.3103716e+117 -4.7280994e+117 -3.2591626e+117 -4.5182759e+117 -3.694157e+117 -4.4476588e+117 -4.9109497e+117 -2.5764452e+117 -1.8218182e+117 -3.1979932e+117 -3.2216047e+117 -2.3374904e+117 -3.3531184e+117 -6.1907212e+117 -6.1638014e+117 -6.1753366e+117 -6.1745998e+117 -6.1423986e+117 -6.14567e+117 -6.1490705e+117 -6.119014e+117 -6.088869e+117 -6.0316613e+117 -5.9110719e+117 -6.0293959e+117 -6.0924381e+117 -6.1083867e+117 -6.0417887e+117 -6.1037013e+117 -6.0345081e+117 -6.0457868e+117 -6.0990365e+117 -6.0592745e+117 -6.1004677e+117 -5.733594e+117 -4.2419763e+117 -7.6837553e+116 -1.26654e+116 -5.742213e+117 -6.1132226e+117 -5.9830615e+117 -4.5632112e+117 -5.8118596e+117 -5.5237286e+117 -1.0045006e+117 -4.7411429e+117 -5.131396e+117 -3.5837517e+117 -3.5912634e+117 -3.9633689e+117 -3.2115367e+117 -2.8675251e+117 -3.6311229e+117 -3.5583926e+117 -6.0388135e+117 -6.108507e+117 -6.1356349e+117 -6.0716061e+117 -4.097259e+117 -9.3389822e+116 -2.2833222e+116 -4.6940438e+117 -2.6762308e+117 -4.7425803e+117 -4.8132333e+117 -4.8004027e+117 -4.5701155e+117 -4.5719386e+117 -5.7995903e+116 -3.8732824e+117 -5.7836172e+117 -5.7642401e+117 -5.5728425e+117 -5.6945475e+117 -5.6532334e+117 -5.7357653e+117 -5.7164159e+117 -5.7400491e+117 -5.7595221e+117 -5.7400316e+117 -5.8656628e+117 -5.7258892e+117 -5.8551456e+117 -5.9884031e+117 -5.9968432e+117 -5.5989234e+117 -5.4714537e+117 -5.1422345e+117 -5.346888e+117 -5.3389066e+117 -5.4811665e+117 -5.6118087e+117 -4.8670821e+117 -4.9254067e+117 -4.575115e+117 -4.7430174e+117 -5.0706376e+117 -5.1624225e+117 -5.083042e+117 -5.1792219e+117 -5.2471519e+117 -5.3401227e+117 -5.355325e+117 -5.2643062e+117 -5.4922358e+117 -5.6733633e+117 -5.6952682e+117 -5.691255e+117 -5.6688418e+117 -5.6337427e+117 -5.6285745e+117 -5.648763e+117 -5.6534946e+117 -5.7638374e+117 -5.7123488e+117 -5.7384847e+117 -5.6626272e+117 -5.6849636e+117 -5.6772359e+117 -5.6554035e+117 -5.6225121e+117 -5.6424303e+117 -5.6353013e+117 -5.6154054e+117 -5.6721227e+117 -5.6504533e+117 -5.6463548e+117 -5.667881e+117 -5.6105369e+117 -5.6303765e+117 -5.6262213e+117 -5.6065467e+117 -5.7332194e+117 -5.7072604e+117 -5.6991288e+117 -5.724252e+117 -5.689732e+117 -5.6937408e+117 -5.7185348e+117 -5.7141435e+117 -5.7709236e+117 -5.7768799e+117 -5.74517e+117 -5.7402599e+117 -5.7592898e+117 -5.7908107e+117 -5.7514451e+117 -5.7829676e+117 -5.8239554e+117 -5.8257416e+117 -5.8149593e+117 -5.8211476e+117 -5.8075293e+117 -5.8111574e+117 -5.8141028e+117 -5.8392636e+117 -5.7845814e+117 -5.8392744e+117 -5.839338e+117 -5.8415704e+117 -5.8377884e+117 -5.8298925e+117 -5.6417026e+117 -5.6031566e+117 -5.631485e+117 -5.6699746e+117 -5.7127118e+117 -5.6958723e+117 -5.7163787e+117 -5.7331967e+117 -5.6655534e+117 -5.6854555e+117 -5.7012646e+117 -5.6807435e+117 -5.7541645e+117 -5.7603451e+117 -5.7372471e+117 -5.7772131e+117 -5.706032e+117 -5.7282391e+117 -5.7448377e+117 -5.7220927e+117 -5.7897088e+117 -5.7854939e+117 -5.7762557e+117 -5.7986118e+117 -5.8138474e+117 -5.8309552e+117 -5.7940327e+117 -5.8071859e+117 -5.8155356e+117 -5.8026728e+117 -5.7411794e+117 -5.7502796e+117 -5.7637938e+117 -5.7547092e+117 -5.7787638e+117 -5.7966358e+117 -5.7586325e+117 -5.7724011e+117 -5.7815181e+117 -5.7681415e+117 -5.6777604e+117 -5.6549686e+117 -5.6936762e+117 -5.7169844e+117 -5.7507468e+117 -5.7717305e+117 -5.7834825e+117 -5.7625194e+117 -5.7256542e+117 -5.7461736e+117 -5.7598979e+117 -5.7390156e+117 -5.7903363e+117 -5.7808601e+117 -5.7672676e+117 -5.8039372e+117 -5.7927067e+117 -5.8160372e+117 -5.8281717e+117 -5.8046209e+117 -5.8492354e+117 -5.8427512e+117 -5.8362162e+117 -5.8556963e+117 -5.872277e+117 -5.883909e+117 -5.848573e+117 -5.8616024e+117 -5.8669096e+117 -5.854118e+117 -5.8225746e+117 -5.8168661e+117 -5.8096044e+117 -5.8296847e+117 -5.8458077e+117 -5.8597002e+117 -5.8234473e+117 -5.836473e+117 -5.8431847e+117 -5.830307e+117 -5.8139798e+117 -5.8374438e+117 -5.847396e+117 -5.8878107e+117 -5.9007183e+117 -5.9054905e+117 -5.8927223e+117 -5.8908286e+117 -5.8957859e+117 -5.8829297e+117 -5.8779605e+117 -5.9130611e+117 -5.9227671e+117 -5.8714432e+117 -5.8635355e+117 -5.8585266e+117 -5.8764884e+117 -5.8937756e+117 -5.9036223e+117 -5.8683875e+117 -5.881434e+117 -5.8863622e+117 -5.8735561e+117 -5.8116735e+117 -5.826017e+117 -5.8351509e+117 -5.8213369e+117 -5.8284061e+117 -5.8377592e+117 -5.8417433e+117 -5.8545684e+117 -5.8636461e+117 -5.851131e+117 -5.8033268e+117 -5.7934219e+117 -5.8079711e+117 -5.8176594e+117 -5.8196972e+117 -5.8104343e+117 -5.8234615e+117 -5.8358534e+117 -5.8455232e+117 -5.832486e+117 -5.8434303e+117 -5.8300165e+117 -5.8397432e+117 -5.8526724e+117 -5.8602327e+117 -5.8563498e+117 -5.8467789e+117 -5.8697338e+117 -5.8813242e+117 -5.8721509e+117 -5.8482759e+117 -5.856908e+117 -5.8693414e+117 -5.8610997e+117 -5.8652035e+117 -5.8737416e+117 -5.8870176e+117 -5.8785895e+117 -5.8897194e+117 -5.8978273e+117 -5.8492871e+117 -5.8402194e+117 -5.8679436e+117 -5.8590749e+117 -5.8860341e+117 -5.8768576e+117 -5.8945277e+117 -5.9027564e+117 -5.8408145e+117 -5.8573798e+117 -5.8652362e+117 -5.8461401e+117 -5.8537909e+117 -5.8733063e+117 -5.8801369e+117 -5.8603554e+117 -5.8581082e+117 -5.8665517e+117 -5.8480855e+117 -5.8568822e+117 -5.8686445e+117 -5.8587063e+117 -5.8765389e+117 -5.8838548e+117 -5.8682836e+117 -5.8755856e+117 -5.8861779e+117 -5.8784369e+117 -5.8853914e+117 -5.89218e+117 -5.8941188e+117 -5.9004815e+117 -5.8943169e+117 -5.9023177e+117 -5.867533e+117 -5.8876627e+117 -5.8961463e+117 -5.8755884e+117 -5.909574e+117 -5.9082553e+117 -5.902376e+117 -5.9102506e+117 -5.9156168e+117 -5.9164906e+117 -5.909519e+117 -5.9030958e+117 -5.8822924e+117 -5.8879436e+117 -5.9101177e+117 -5.9051166e+117 -5.9122196e+117 -5.9170627e+117 -5.9232827e+117 -5.918606e+117 -5.9246507e+117 -5.9292594e+117 -5.8954872e+117 -5.8907696e+117 -5.8972335e+117 -5.901929e+117 -5.9147249e+117 -5.908496e+117 -5.8813587e+117 -5.8766129e+117 -5.8840504e+117 -5.8887904e+117 -5.9019096e+117 -5.8946317e+117 -5.9228336e+117 -5.9222936e+117 -5.9172874e+117 -5.9238654e+117 -5.9285779e+117 -5.9288695e+117 -5.9345273e+117 -5.9344217e+117 -5.9298758e+117 -5.9356207e+117 -5.9399655e+117 -5.9399197e+117 -5.8932611e+117 -5.9153344e+117 -5.9211397e+117 -5.8986337e+117 -5.9317262e+117 -5.9265489e+117 -5.9038838e+117 -5.9088562e+117 -5.9348183e+117 -5.9302842e+117 -5.9359626e+117 -5.9403227e+117 -5.9453801e+117 -5.9411679e+117 -5.9461494e+117 -5.9502984e+117 -5.9147308e+117 -5.9199709e+117 -5.9244811e+117 -5.9191851e+117 -5.9367365e+117 -5.9315801e+117 -5.9030928e+117 -5.9092194e+117 -5.9137788e+117 -5.9078024e+117 -5.9262637e+117 -5.9205211e+117 -5.9450666e+117 -5.9452333e+117 -5.9410384e+117 -5.9463005e+117 -5.9503516e+117 -5.950086e+117 -5.9548833e+117 -5.9552175e+117 -5.9512403e+117 -5.9560314e+117 -5.9599032e+117 -5.959511e+117 -5.9135268e+117 -5.9365911e+117 -5.9414905e+117 -5.9182203e+117 -5.9506397e+117 -5.9461629e+117 -5.9227388e+117 -5.9270658e+117 -5.8642388e+117 -5.87187e+117 -5.8785078e+117 -5.8852304e+117 -5.9082702e+117 -5.902807e+117 -5.8911124e+117 -5.8973678e+117 -5.9467194e+117 -5.9418013e+117 -5.9536012e+117 -5.9583543e+117 -5.962726e+117 -5.9579197e+117 -5.9835255e+117 -5.979127e+117 -5.9698969e+117 -5.9744626e+117 -5.932331e+117 -5.9440173e+117 -5.9488909e+117 -5.9371748e+117 -5.9533318e+117 -5.9485841e+117 -5.9653525e+117 -5.9606775e+117 -5.9698632e+117 -5.9746067e+117 -5.9347766e+117 -5.9229758e+117 -5.9278696e+117 -5.939541e+117 -5.9393184e+117 -5.9441016e+117 -5.9561554e+117 -5.9514509e+117 -5.9607118e+117 -5.9653644e+117 -5.9182701e+117 -5.9130425e+117 -5.9247782e+117 -5.9299572e+117 -5.9294086e+117 -5.9345605e+117 -5.9466874e+117 -5.9416564e+117 -5.9509367e+117 -5.9559691e+117 -5.9511894e+117 -5.9627159e+117 -5.9673716e+117 -5.9559807e+117 -5.9671524e+117 -5.9716997e+117 -5.9832294e+117 -5.9788212e+117 -5.9877339e+117 -5.9921534e+117 -5.9715653e+117 -5.9601941e+117 -5.9644569e+117 -5.9756925e+117 -5.9757994e+117 -5.9799786e+117 -6.0004017e+117 -5.9963359e+117 -5.9873953e+117 -5.9915405e+117 -5.9550653e+117 -5.9600373e+117 -5.9647266e+117 -5.9694002e+117 -5.9738923e+117 -5.978533e+117 -5.9829339e+117 -5.9873009e+117 -5.9640925e+117 -5.9645891e+117 -5.9608109e+117 -5.9656581e+117 -5.9693201e+117 -5.9687317e+117 -5.9733587e+117 -5.9739868e+117 -5.9703288e+117 -5.9749424e+117 -5.9785414e+117 -5.9778915e+117 -5.9312012e+117 -5.9549739e+117 -5.9594767e+117 -5.9353758e+117 -5.9683037e+117 -5.963958e+117 -5.9395774e+117 -5.9436389e+117 -5.9823652e+117 -5.983024e+117 -5.9794297e+117 -5.9839332e+117 -5.9874688e+117 -5.9867793e+117 -5.9910242e+117 -5.9917663e+117 -5.9882645e+117 -5.9925442e+117 -5.9959322e+117 -5.9951308e+117 -5.9477717e+117 -5.9725998e+117 -5.9769763e+117 -5.9519766e+117 -5.9851854e+117 -5.9811954e+117 -5.9561952e+117 -5.9601255e+117 -5.9915269e+117 -5.9958863e+117 -6.0000073e+117 -6.0040862e+117 -6.0080217e+117 -6.0120134e+117 -6.0157189e+117 -5.9991432e+117 -6.0000465e+117 -5.9967448e+117 -6.0009598e+117 -6.0041325e+117 -6.0031024e+117 -6.0090501e+117 -6.012137e+117 -6.0050152e+117 -6.0081626e+117 -6.0110565e+117 -6.0070994e+117 -5.9967286e+117 -5.9712092e+117 -5.9746014e+117 -6.0004609e+117 -5.9638611e+117 -5.9890166e+117 -5.9928868e+117 -5.9675382e+117 -6.0041466e+117 -6.007734e+117 -5.9816007e+117 -5.9782241e+117 -6.0144227e+117 -6.0111552e+117 -5.9848593e+117 -5.9879428e+117 -6.016691e+117 -6.0196133e+117 -6.0128876e+117 -6.0158865e+117 -6.0184082e+117 -6.0147318e+117 -6.0239025e+117 -6.0266886e+117 -6.0203091e+117 -6.0231777e+117 -6.025344e+117 -6.0219135e+117 -6.1266994e+117 -6.1063456e+117 -6.2187146e+117 -6.1937646e+117 -6.2050054e+117 -6.1634211e+117 -6.1997887e+117 -6.1809204e+117 -6.1316578e+117 -6.1672686e+117 -6.1563925e+117 -6.0924958e+117 -5.1941552e+117 -5.4796836e+117 -5.3513445e+117 -5.8766738e+117 -5.7896994e+117 -5.48317e+117 -5.676132e+117 -5.1747041e+117 -5.4702236e+117 -5.9492426e+117 -5.8385489e+117 -6.0879351e+117 -6.0262349e+117 -5.6946143e+117 -5.7366008e+117 -5.5375241e+117 -5.4668145e+117 -5.9268838e+117 -5.054991e+117 -4.6714541e+117 -4.9802213e+117 -4.9249493e+117 -4.9835832e+117 -4.8197549e+117 -4.9254301e+117 -5.1578663e+117 -5.2462701e+117 -5.212972e+117 -5.2339052e+117 -5.3608071e+117 -5.9519918e+117 -5.5085409e+117 -5.7059842e+117 -5.4112911e+117 -5.9988174e+117 -5.3599533e+117 -5.2376462e+117 -5.7776223e+117 -6.0607903e+116 -6.1161947e+117 -5.7374032e+117 -5.5116907e+117 -5.3217728e+117 -5.3033328e+117 -3.949078e+117 -4.4035374e+117 -4.7893519e+117 -4.0797046e+117 -4.3054591e+117 -3.8587464e+117 -3.6377345e+117 -4.7122606e+117 -4.8704487e+117 -4.8774178e+117 -4.8721501e+117 -4.8639053e+117 -5.9094255e+117 -5.8859617e+117 -5.8821775e+117 -5.9054545e+117 -5.9173729e+117 -5.8937255e+117 -5.8897487e+117 -5.9133518e+117 -5.9255167e+117 -5.9016279e+117 -5.8976689e+117 -5.9214697e+117 -5.9335321e+117 -5.9096645e+117 -5.9056129e+117 -5.9295267e+117 -5.9407136e+117 -5.9165784e+117 -5.9133688e+117 -5.937324e+117 -5.9474034e+117 -5.9230546e+117 -5.9197724e+117 -5.9440743e+117 -5.926264e+117 -5.9507485e+117 -5.954006e+117 -5.9293838e+117 -5.9600963e+117 -5.9353491e+117 -5.9323846e+117 -5.957075e+117 -5.8082325e+117 -5.8279763e+117 -5.8141332e+117 -5.794614e+117 -5.8034488e+117 -5.8224854e+117 -5.7880263e+117 -5.820542e+117 -5.8412664e+117 -5.8348934e+117 -5.8144638e+117 -5.7707087e+117 -5.853391e+117 -5.8320562e+117 -5.8264267e+117 -5.8476633e+117 -5.8375732e+117 -5.8591665e+117 -5.8644678e+117 -5.8427466e+117 -5.740522e+117 -5.7552675e+117 -5.8743275e+117 -5.8520795e+117 -5.8474935e+117 -5.8694639e+117 -5.8838095e+117 -5.8611777e+117 -5.8566415e+117 -5.8791609e+117 -5.8927805e+117 -5.8698394e+117 -5.8655526e+117 -5.8883392e+117 -5.9013097e+117 -5.8782296e+117 -5.8740299e+117 -5.8970621e+117 -5.6898907e+117 -5.7016573e+117 -5.7138858e+117 -5.7271297e+117 -5.738678e+117 -5.8610812e+117 -5.7448335e+117 -5.8724384e+117 -5.6180666e+117 -5.4871294e+117 -4.8858152e+117 -5.221281e+117 -5.0858287e+117 -5.0882406e+117 -5.222144e+117 -5.3550143e+117 -5.3552259e+117 -5.4856644e+117 -5.6142797e+117 -5.9830981e+117 -6.0025171e+117 -4.613132e+117 -4.3421612e+117 -5.6062286e+117 -5.6155914e+117 -5.625261e+117 -5.6352258e+117 -5.6460056e+117 -5.6562802e+117 -5.6673071e+117 -5.6784334e+117 -6.0891624e+117 -5.9102989e+117 -5.2290923e+117 -5.5260678e+117 -5.0614923e+117 -4.5298949e+117 -5.4921318e+117 -5.3169173e+117 -5.8111173e+117 -6.0688086e+117 -5.4865258e+117 -5.2760162e+117 -7.1512622e+116 -1.4558557e+117 -4.8850078e+117 -3.6435581e+117 -3.8680217e+117 -4.0968587e+117 -5.7262637e+117 -5.7400625e+117 -5.7441247e+117 -5.7302951e+117 -5.7341593e+117 -5.7479687e+117 -5.7380505e+117 -5.7518829e+117 -5.7549234e+117 -5.7704687e+117 -5.7589038e+117 -5.7744416e+117 -5.7668514e+117 -5.7785368e+117 -5.7826514e+117 -5.7628378e+117 -5.7875339e+117 -5.7916557e+117 -5.8104145e+117 -5.806145e+117 -5.8261621e+117 -5.830555e+117 -5.8189512e+117 -5.7958034e+117 -5.814667e+117 -5.7999952e+117 -5.8349267e+117 -5.8393281e+117 -5.7597337e+117 -5.7418474e+117 -5.7558062e+117 -5.7457157e+117 -5.7709105e+117 -5.7867409e+117 -5.790613e+117 -5.7747678e+117 -5.7529611e+117 -5.7670529e+117 -5.7493286e+117 -5.7633176e+117 -5.77848e+117 -5.7944937e+117 -5.7823216e+117 -5.7984006e+117 -5.8272009e+117 -5.8041477e+117 -5.8231428e+117 -5.8081074e+117 -5.8436151e+117 -5.8477487e+117 -5.8160379e+117 -5.8352876e+117 -5.8120588e+117 -5.8312486e+117 -5.8518524e+117 -5.8560013e+117 -5.6495591e+117 -5.6595965e+117 -5.6529432e+117 -5.6629596e+117 -5.6731636e+117 -5.6697236e+117 -5.6801873e+117 -5.6836898e+117 -5.6592199e+117 -5.6693252e+117 -5.6561062e+117 -5.6661543e+117 -5.6870811e+117 -5.6764664e+117 -5.6796862e+117 -5.6903573e+117 -5.635713e+117 -5.6389405e+117 -5.645549e+117 -5.6488441e+117 -5.6554942e+117 -5.6589618e+117 -5.6657638e+117 -5.6693388e+117 -5.6423053e+117 -5.6522879e+117 -5.6559731e+117 -5.6459536e+117 -5.6730163e+117 -5.6766696e+117 -5.6625666e+117 -5.6661902e+117 -5.6767722e+117 -5.6883523e+117 -5.692156e+117 -5.6804855e+117 -5.6841947e+117 -5.6959073e+117 -5.6995777e+117 -5.6878376e+117 -5.7168004e+117 -5.700333e+117 -5.7128451e+117 -5.7042236e+117 -5.7244938e+117 -5.7080518e+117 -5.7206859e+117 -5.7117722e+117 -5.6914156e+117 -5.7032444e+117 -5.7069488e+117 -5.6950363e+117 -5.7018272e+117 -5.6984899e+117 -5.7104872e+117 -5.7139085e+117 -5.7154759e+117 -5.7282344e+117 -5.7320357e+117 -5.7192453e+117 -5.726354e+117 -5.7228559e+117 -5.7357017e+117 -5.7392515e+117 -5.6351677e+117 -5.6221355e+117 -5.6318632e+117 -5.6253811e+117 -5.641707e+117 -5.651704e+117 -5.6551592e+117 -5.6450652e+117 -5.6420545e+117 -5.6287814e+117 -5.638564e+117 -5.6323049e+117 -5.6485353e+117 -5.6587102e+117 -5.6622874e+117 -5.6520369e+117 -5.6771557e+117 -5.6623604e+117 -5.6735129e+117 -5.6659047e+117 -5.6851119e+117 -5.6971209e+117 -5.7010051e+117 -5.6888573e+117 -5.6846296e+117 -5.6695466e+117 -5.6809166e+117 -5.67319e+117 -5.6926953e+117 -5.7049534e+117 -5.696519e+117 -5.7089075e+117 -5.6092685e+117 -5.6186693e+117 -5.6281479e+117 -5.6372456e+117 -5.6408114e+117 -5.6310257e+117 -5.6330659e+117 -5.6427109e+117 -5.6214028e+117 -5.6118186e+117 -5.6137581e+117 -5.623396e+117 -5.6287973e+117 -5.6162267e+117 -5.6258914e+117 -5.619067e+117 -5.6453845e+117 -5.6356561e+117 -5.6385451e+117 -5.6483952e+117 -5.6710057e+117 -5.6814411e+117 -5.6488616e+117 -5.6581026e+117 -5.6615643e+117 -5.6599398e+117 -5.6513353e+117 -5.6502724e+117 -5.6640523e+117 -5.6530937e+117 -5.658911e+117 -5.6557831e+117 -5.6667238e+117 -5.6699675e+117 -5.6866898e+117 -5.6722766e+117 -5.6833323e+117 -5.675299e+117 -5.6814416e+117 -5.6933231e+117 -5.6780189e+117 -5.6896652e+117 -5.7451846e+117 -5.7602504e+117 -5.7700163e+117 -5.7495062e+117 -5.7658983e+117 -5.7533139e+117 -5.7766453e+117 -5.7836631e+117 -5.7881752e+117 -5.7630881e+117 -5.7806529e+117 -5.7578829e+117 -5.7750932e+117 -5.7938565e+117 -5.7997815e+117 -5.6932779e+117 -5.7052258e+117 -5.7110596e+117 -5.6953633e+117 -5.7076276e+117 -5.6987801e+117 -5.7178604e+117 -5.7311048e+117 -5.7208811e+117 -5.734495e+117 -5.7380787e+117 -5.7242921e+117 -5.701964e+117 -5.7145149e+117 -5.7186975e+117 -5.7058986e+117 -5.7280066e+117 -5.7422007e+117 -5.7325098e+117 -5.7470579e+117 -5.7098849e+117 -5.7228877e+117 -5.7139171e+117 -5.727139e+117 -5.7415334e+117 -5.7567098e+117 -5.7369906e+117 -5.7518748e+117 -5.7221404e+117 -5.7357632e+117 -5.7179926e+117 -5.7314336e+117 -5.7460414e+117 -5.7614487e+117 -5.7660856e+117 -5.7505432e+117 -5.7682444e+117 -5.7861461e+117 -5.7915805e+117 -5.7733824e+117 -5.7783412e+117 -5.7967601e+117 -5.7831007e+117 -5.8016377e+117 -5.8055828e+117 -5.811211e+117 -5.8215619e+117 -5.8165472e+117 -5.5715989e+117 -5.5806383e+117 -5.5679765e+117 -5.5770924e+117 -5.5856118e+117 -5.5746058e+117 -5.5836293e+117 -5.5766439e+117 -5.5868114e+117 -5.5901041e+117 -5.5964323e+117 -5.5995617e+117 -5.5928684e+117 -5.6022175e+117 -5.6041415e+117 -5.5947923e+117 -5.5818308e+117 -5.5907706e+117 -5.5791119e+117 -5.5880179e+117 -5.5971956e+117 -5.6066001e+117 -5.5999902e+117 -5.6094115e+117 -5.5677326e+117 -5.5872718e+117 -5.55077e+117 -5.559001e+117 -5.5619263e+117 -5.5537852e+117 -5.5602685e+117 -5.5569793e+117 -5.5650855e+117 -5.5684076e+117 -5.5788046e+117 -5.5673448e+117 -5.5758674e+117 -5.570268e+117 -5.5768152e+117 -5.585461e+117 -5.5734457e+117 -5.5820582e+117 -5.5368396e+117 -5.5451033e+117 -5.5327551e+117 -5.5409961e+117 -5.5508092e+117 -5.5403442e+117 -5.5486373e+117 -5.5425155e+117 -5.5497743e+117 -5.5585998e+117 -5.5537476e+117 -5.5624638e+117 -5.5570927e+117 -5.5656849e+117 -5.5677997e+117 -5.5592384e+117 -5.5561341e+117 -5.54506e+117 -5.5533315e+117 -5.547833e+117 -5.5617855e+117 -5.5703441e+117 -5.5645116e+117 -5.5730376e+117 -5.5313529e+117 -5.5490809e+117 -5.5350503e+117 -5.5530692e+117 -5.5715938e+117 -5.591304e+117 -5.5846983e+117 -5.5937092e+117 -5.5967869e+117 -5.587692e+117 -5.6124731e+117 -5.6061468e+117 -5.6030118e+117 -5.615664e+117 -5.5909789e+117 -5.5944391e+117 -5.6001343e+117 -5.6036379e+117 -5.6190693e+117 -5.613063e+117 -5.622601e+117 -5.6095164e+117 -5.4358024e+117 -5.4227612e+117 -5.4396165e+117 -5.4509064e+117 -5.4685971e+117 -5.464132e+117 -5.4717524e+117 -5.4758428e+117 -5.4839208e+117 -5.4797764e+117 -5.4611635e+117 -5.478169e+117 -5.4895425e+117 -5.4946428e+117 -5.5067165e+117 -5.4985117e+117 -5.5036039e+117 -5.5118151e+117 -5.5200726e+117 -5.5239597e+117 -5.5154434e+117 -5.5283344e+117 -5.5135582e+117 -5.4955073e+117 -5.4185846e+117 -5.4827952e+117 -5.4662144e+117 -5.4063251e+117 -5.3903335e+117 -5.4061059e+117 -5.4208181e+117 -5.3819131e+117 -5.4994665e+117 -5.5173843e+117 -5.3441787e+117 -5.3298532e+117 -5.3518184e+117 -5.3640632e+117 -5.3772224e+117 -5.3586478e+117 -5.3742511e+117 -5.3912723e+117 -5.3480465e+117 -5.3133184e+117 -5.3557943e+117 -5.3195031e+117 -5.3896876e+117 -5.4266851e+117 -5.4797266e+117 -5.4960221e+117 -5.4718508e+117 -5.4883212e+117 -5.5124299e+117 -5.529785e+117 -5.5223952e+117 -5.5047858e+117 -5.5645845e+117 -5.5467004e+117 -5.5396793e+117 -5.5577017e+117 -5.5830301e+117 -5.5762996e+117 -5.5961574e+117 -5.6030447e+117 -5.5323952e+117 -5.5399287e+117 -5.5429255e+117 -5.5354818e+117 -5.5385541e+117 -5.5416948e+117 -5.5459461e+117 -5.5490773e+117 -5.5582119e+117 -5.5475737e+117 -5.5553267e+117 -5.5504741e+117 -5.5566766e+117 -5.564509e+117 -5.5534867e+117 -5.5612623e+117 -5.5279371e+117 -5.5124673e+117 -5.5247921e+117 -5.5157214e+117 -5.5218179e+117 -5.5186575e+117 -5.531036e+117 -5.5341528e+117 -5.4936794e+117 -5.4881034e+117 -5.4912492e+117 -5.4968269e+117 -5.5024516e+117 -5.4994035e+117 -5.5052006e+117 -5.5083249e+117 -5.4826442e+117 -5.4769754e+117 -5.4801198e+117 -5.4857572e+117 -5.488336e+117 -5.4826707e+117 -5.4852465e+117 -5.4909842e+117 -5.4994788e+117 -5.4938046e+117 -5.4965295e+117 -5.5023434e+117 -5.5081581e+117 -5.5053176e+117 -5.5112396e+117 -5.5142223e+117 -5.497122e+117 -5.4910419e+117 -5.4929303e+117 -5.4991177e+117 -5.4892453e+117 -5.4871632e+117 -5.4930269e+117 -5.4952281e+117 -5.5046655e+117 -5.4987177e+117 -5.5010758e+117 -5.5071476e+117 -5.5051087e+117 -5.5030124e+117 -5.509188e+117 -5.5114014e+117 -5.5131847e+117 -5.5107178e+117 -5.5244965e+117 -5.5168634e+117 -5.5194498e+117 -5.5273018e+117 -5.5371288e+117 -5.5399891e+117 -5.5296071e+117 -5.5425871e+117 -5.5450708e+117 -5.5320213e+117 -5.5217869e+117 -5.5154211e+117 -5.5176251e+117 -5.5240641e+117 -5.4737546e+117 -5.4681847e+117 -5.4695349e+117 -5.4752103e+117 -5.4667879e+117 -5.4651474e+117 -5.4705579e+117 -5.4722527e+117 -5.4815067e+117 -5.4758469e+117 -5.4777004e+117 -5.4834683e+117 -5.4808792e+117 -5.4792872e+117 -5.485186e+117 -5.486922e+117 -5.4664093e+117 -5.4611269e+117 -5.4635331e+117 -5.4688699e+117 -5.4586053e+117 -5.4554785e+117 -5.4608384e+117 -5.4638657e+117 -5.4715067e+117 -5.4660147e+117 -5.4691237e+117 -5.4746173e+117 -5.4741087e+117 -5.4716367e+117 -5.4771778e+117 -5.4796747e+117 -5.5552998e+117 -5.5447385e+117 -5.5522331e+117 -5.5476875e+117 -5.5599291e+117 -5.5630598e+117 -5.5678159e+117 -5.5710121e+117 -5.5608177e+117 -5.5504102e+117 -5.5581478e+117 -5.5529634e+117 -5.5740127e+117 -5.565998e+117 -5.5687247e+117 -5.5767884e+117 -5.4988316e+117 -5.5115197e+117 -5.5149509e+117 -5.5026004e+117 -5.50593e+117 -5.5182843e+117 -5.5094108e+117 -5.5216167e+117 -5.4851109e+117 -5.4811643e+117 -5.4868573e+117 -5.4907004e+117 -5.49865e+117 -5.4927338e+117 -5.4963413e+117 -5.5021447e+117 -5.4792445e+117 -5.4733809e+117 -5.4775308e+117 -5.4833023e+117 -5.4890657e+117 -5.4853277e+117 -5.4914056e+117 -5.4950931e+117 -5.4739777e+117 -5.4699844e+117 -5.4756421e+117 -5.479616e+117 -5.4661656e+117 -5.4618073e+117 -5.4677232e+117 -5.4719061e+117 -5.4862681e+117 -5.5005198e+117 -5.502627e+117 -5.4890977e+117 -5.4920455e+117 -5.5052236e+117 -5.5082256e+117 -5.4954205e+117 -5.4696856e+117 -5.4654447e+117 -5.471718e+117 -5.4756931e+117 -5.4843993e+117 -5.4780763e+117 -5.4817516e+117 -5.4879207e+117 -5.4785941e+117 -5.4718943e+117 -5.4647774e+117 -5.4578083e+117 -5.4617906e+117 -5.4683045e+117 -5.4747558e+117 -5.4812256e+117 -5.4486092e+117 -5.4441477e+117 -5.4511769e+117 -5.4553371e+117 -5.459348e+117 -5.4528894e+117 -5.4578325e+117 -5.4639256e+117 -5.5184796e+117 -5.5086127e+117 -5.5162379e+117 -5.5107511e+117 -5.5240875e+117 -5.5320819e+117 -5.534302e+117 -5.526314e+117 -5.5237816e+117 -5.5132389e+117 -5.5209885e+117 -5.5160855e+117 -5.5288474e+117 -5.5368606e+117 -5.5316088e+117 -5.5396088e+117 -5.5192597e+117 -5.5268727e+117 -5.5301071e+117 -5.5225587e+117 -5.529217e+117 -5.5258789e+117 -5.5334322e+117 -5.5367792e+117 -5.5426014e+117 -5.5457094e+117 -5.5346464e+117 -5.5378193e+117 -5.544453e+117 -5.5411164e+117 -5.5489703e+117 -5.5522597e+117 -5.4335621e+117 -5.4277242e+117 -5.43411e+117 -5.4396678e+117 -5.4226126e+117 -5.4168063e+117 -5.4241772e+117 -5.4292606e+117 -5.4375153e+117 -5.4306427e+117 -5.4355543e+117 -5.4421674e+117 -5.4455543e+117 -5.4401894e+117 -5.4466654e+117 -5.451788e+117 -5.4560814e+117 -5.4501113e+117 -5.455057e+117 -5.460633e+117 -5.4437752e+117 -5.4384519e+117 -5.4444016e+117 -5.4494666e+117 -5.4536278e+117 -5.4480608e+117 -5.4523962e+117 -5.4578079e+117 -5.4645209e+117 -5.459006e+117 -5.463037e+117 -5.4685232e+117 -5.4130949e+117 -5.4090316e+117 -5.4142445e+117 -5.4182515e+117 -5.4038226e+117 -5.3977999e+117 -5.4021297e+117 -5.407929e+117 -5.4111068e+117 -5.4063895e+117 -5.4122944e+117 -5.416906e+117 -5.4222605e+117 -5.4172944e+117 -5.4218564e+117 -5.4266389e+117 -5.3891311e+117 -5.3845877e+117 -5.3920172e+117 -5.3964357e+117 -5.3777068e+117 -5.3695568e+117 -5.3739303e+117 -5.3823928e+117 -5.3842936e+117 -5.3788367e+117 -5.3871924e+117 -5.3922713e+117 -5.4007941e+117 -5.393723e+117 -5.3987082e+117 -5.4056263e+117 -5.4103125e+117 -5.4030658e+117 -5.4097413e+117 -5.4162758e+117 -5.3959948e+117 -5.3898915e+117 -5.3976144e+117 -5.4034686e+117 -5.4095628e+117 -5.4038668e+117 -5.410727e+117 -5.4161884e+117 -5.4216109e+117 -5.4153641e+117 -5.4217663e+117 -5.4276962e+117 -5.4317913e+117 -5.4266295e+117 -5.4313453e+117 -5.4363697e+117 -5.4218395e+117 -5.4160823e+117 -5.4214847e+117 -5.4271198e+117 -5.4327661e+117 -5.4269458e+117 -5.4325342e+117 -5.4382019e+117 -5.4415371e+117 -5.437038e+117 -5.4426099e+117 -5.4469874e+117 -5.4317358e+117 -5.4302335e+117 -5.4342053e+117 -5.4357257e+117 -5.4286327e+117 -5.4272554e+117 -5.4312025e+117 -5.43258e+117 -5.4397241e+117 -5.4352901e+117 -5.4367175e+117 -5.4411599e+117 -5.4426361e+117 -5.4382438e+117 -5.4397607e+117 -5.4440709e+117 -5.4262583e+117 -5.4241832e+117 -5.4280323e+117 -5.430123e+117 -5.4215559e+117 -5.4179651e+117 -5.4218995e+117 -5.4253599e+117 -5.4301051e+117 -5.4257967e+117 -5.4292873e+117 -5.4335454e+117 -5.434139e+117 -5.4319964e+117 -5.4362896e+117 -5.4384618e+117 -5.4502296e+117 -5.444875e+117 -5.4482122e+117 -5.4534417e+117 -5.4381885e+117 -5.4347537e+117 -5.4397687e+117 -5.4431334e+117 -5.4457247e+117 -5.4408276e+117 -5.4430553e+117 -5.4479539e+117 -5.4529846e+117 -5.450707e+117 -5.455954e+117 -5.4582714e+117 -5.4598711e+117 -5.4545181e+117 -5.4560811e+117 -5.4614568e+117 -5.4458978e+117 -5.4444099e+117 -5.4494242e+117 -5.4509314e+117 -5.4486787e+117 -5.4472759e+117 -5.4522796e+117 -5.4535933e+117 -5.4586843e+117 -5.4573865e+117 -5.4628004e+117 -5.464085e+117 -5.5977669e+117 -5.607027e+117 -5.6101695e+117 -5.6009107e+117 -5.60754e+117 -5.6040831e+117 -5.6133167e+117 -5.6168193e+117 -5.6291258e+117 -5.6164652e+117 -5.6259763e+117 -5.6195799e+117 -5.6263503e+117 -5.6360426e+117 -5.6227936e+117 -5.6324492e+117 -5.5876265e+117 -5.5759823e+117 -5.5843446e+117 -5.5792289e+117 -5.5929838e+117 -5.6018325e+117 -5.6051369e+117 -5.5962777e+117 -5.5851085e+117 -5.5936192e+117 -5.5822676e+117 -5.5907099e+117 -5.5993888e+117 -5.6082753e+117 -5.6023489e+117 -5.6112614e+117 -5.6236447e+117 -5.610992e+117 -5.6203064e+117 -5.6142871e+117 -5.6298906e+117 -5.6396071e+117 -5.6429832e+117 -5.6332353e+117 -5.6204572e+117 -5.6298628e+117 -5.6174238e+117 -5.6268033e+117 -5.6364011e+117 -5.6461709e+117 -5.639491e+117 -5.6492526e+117 -5.563349e+117 -5.5715316e+117 -5.5745131e+117 -5.5662601e+117 -5.5693371e+117 -5.5776397e+117 -5.5726436e+117 -5.5809819e+117 -5.5918191e+117 -5.5800121e+117 -5.5887118e+117 -5.5830444e+117 -5.5895907e+117 -5.5861995e+117 -5.5950109e+117 -5.5984244e+117 -5.4826916e+117 -5.3549473e+117 -5.2228151e+117 -4.6327825e+117 -4.8290784e+117 -4.8273823e+117 -4.9601326e+117 -4.9591054e+117 -4.8239184e+117 -4.8273511e+117 -4.9575506e+117 -4.9563007e+117 -5.0910263e+117 -5.0889054e+117 -5.0861634e+117 -5.2192593e+117 -5.2183397e+117 -5.0873189e+117 -5.2173129e+117 -5.219466e+117 -5.0867268e+117 -5.3504149e+117 -5.3450293e+117 -5.344048e+117 -5.4733782e+117 -5.4783498e+117 -5.4713628e+117 -5.475603e+117 -5.3476063e+117 -5.3519738e+117 -5.4808464e+117 -4.3708803e+117 -4.5656034e+117 -4.6952607e+117 -4.6901801e+117 -4.5586053e+117 -4.8242591e+117 -4.9543682e+117 -4.9539688e+117 -4.8219791e+117 -5.0876341e+117 -5.2220552e+117 -5.2254351e+117 -5.0888042e+117 -5.3633179e+117 -5.3568669e+117 -5.4895772e+117 -5.4995744e+117 -4.117122e+117 -4.3038997e+117 -4.4295233e+117 -4.4223183e+117 -4.2961796e+117 -4.558373e+117 -4.6831196e+117 -4.687144e+117 -4.5533496e+117 -4.8193194e+117 -4.8165171e+117 -4.9532237e+117 -4.9535269e+117 -5.0916331e+117 -5.2314908e+117 -5.2391203e+117 -5.0949216e+117 -5.3447631e+117 -5.2997691e+117 -5.3145452e+117 -5.3542491e+117 -5.3851784e+117 -5.4280724e+117 -5.3911098e+117 -5.4300382e+117 -5.5407763e+117 -5.5036371e+117 -5.5233484e+117 -5.5409939e+117 -5.5360462e+117 -5.5189507e+117 -5.4884991e+117 -5.5024416e+117 -5.5062687e+117 -5.4856994e+117 -5.6150093e+117 -5.5760481e+117 -5.5578998e+117 -5.5759069e+117 -5.5705838e+117 -5.5527888e+117 -5.5946103e+117 -5.6148085e+117 -5.589145e+117 -5.6091389e+117 -4.9956079e+117 -4.8700666e+117 -5.0035121e+117 -4.8773608e+117 -4.9937812e+117 -5.0737956e+117 -5.1211435e+117 -5.0748462e+117 -5.0918296e+117 -5.1459223e+117 -5.0070537e+117 -4.8718026e+117 -3.8795893e+117 -4.0477345e+117 -4.0540744e+117 -4.1723911e+117 -4.1653584e+117 -4.2943962e+117 -4.2872109e+117 -4.4109721e+117 -4.4180565e+117 -4.5473434e+117 -4.5415768e+117 -4.6754238e+117 -4.6786979e+117 -4.8671479e+117 -4.9573432e+117 -4.8152978e+117 -4.8151266e+117 -4.9604318e+117 -5.3014458e+117 -5.268826e+117 -5.2840416e+117 -5.3133313e+117 -5.325836e+117 -5.2988806e+117 -5.3144902e+117 -5.3390443e+117 -5.277009e+117 -5.2381062e+117 -5.2191174e+117 -5.1784443e+117 -5.2079239e+117 -5.2499111e+117 -5.1947158e+117 -5.2309854e+117 -5.2509898e+117 -5.272303e+117 -5.2879515e+117 -5.1404779e+117 -5.1329973e+117 -5.1893188e+117 -5.236126e+117 -5.2801409e+117 -5.155978e+117 -5.1022556e+117 -5.1765968e+117 -5.1200271e+117 -5.204189e+117 -5.2247227e+117 -5.2719537e+117 -5.2552395e+117 -3.6512284e+117 -3.8148557e+117 -3.8200259e+117 -3.9280068e+117 -3.9327711e+117 -4.0410105e+117 -4.0455225e+117 -4.1561384e+117 -4.1609579e+117 -4.2814588e+117 -4.4061157e+117 -4.4024223e+117 -4.2767642e+117 -4.5351668e+117 -4.5373303e+117 -4.6738783e+117 -4.6730861e+117 -4.9955651e+117 -4.9926822e+117 -4.9975829e+117 -5.000746e+117 -4.9913446e+117 -4.993654e+117 -4.9980655e+117 -4.9961831e+117 -4.9998132e+117 -5.0040164e+117 -5.0113966e+117 -5.0079578e+117 -4.9976763e+117 -4.9988178e+117 -5.0057907e+117 -5.0069849e+117 -5.1166534e+117 -5.1162536e+117 -5.1169071e+117 -5.1212117e+117 -5.122142e+117 -5.1195876e+117 -5.1211072e+117 -5.1268537e+117 -5.1914064e+117 -5.1958943e+117 -5.1978309e+117 -5.2015674e+117 -5.2035554e+117 -5.2032374e+117 -5.2060572e+117 -5.2107979e+117 -5.1270317e+117 -5.2109454e+117 -5.3804303e+117 -5.3762718e+117 -5.3804726e+117 -5.3848937e+117 -5.3720466e+117 -5.3665309e+117 -5.3703592e+117 -5.3760333e+117 -5.3775008e+117 -5.3738153e+117 -5.3796956e+117 -5.3834411e+117 -5.3882212e+117 -5.3842905e+117 -5.3889928e+117 -5.3930986e+117 -5.3604417e+117 -5.3522961e+117 -5.3562368e+117 -5.364239e+117 -5.3313091e+117 -5.3368251e+117 -5.3478244e+117 -5.3435577e+117 -5.3459108e+117 -5.3403384e+117 -5.3514377e+117 -5.3555792e+117 -5.36767e+117 -5.3595421e+117 -5.3634247e+117 -5.3713101e+117 -5.3655615e+117 -5.3607622e+117 -5.3688256e+117 -5.3732226e+117 -5.3598402e+117 -5.3508509e+117 -5.3558483e+117 -5.364297e+117 -5.3715895e+117 -5.3673835e+117 -5.3751773e+117 -5.3791783e+117 -5.383278e+117 -5.3757799e+117 -5.3801403e+117 -5.3875729e+117 -5.3936061e+117 -5.3894126e+117 -5.395636e+117 -5.3997239e+117 -5.3873943e+117 -5.3813088e+117 -5.3853586e+117 -5.3914812e+117 -5.3973182e+117 -5.3922729e+117 -5.3964944e+117 -5.4015725e+117 -5.4058413e+117 -5.4006872e+117 -5.4048965e+117 -5.4100738e+117 -5.3578038e+117 -5.3551864e+117 -5.3616457e+117 -5.3644659e+117 -5.347801e+117 -5.3536888e+117 -5.3580875e+117 -5.352041e+117 -5.3701257e+117 -5.3667323e+117 -5.3716976e+117 -5.3755133e+117 -5.3629918e+117 -5.3580685e+117 -5.362462e+117 -5.3676795e+117 -5.3348607e+117 -5.3397676e+117 -5.3479577e+117 -5.3425186e+117 -5.3140057e+117 -5.3186802e+117 -5.3304487e+117 -5.3261867e+117 -5.3520924e+117 -5.343765e+117 -5.3481519e+117 -5.3563592e+117 -5.3346834e+117 -5.3232799e+117 -5.3390792e+117 -5.3269886e+117 -5.3208575e+117 -5.2982659e+117 -5.3102326e+117 -5.3112419e+117 -5.2621901e+117 -5.2823291e+117 -5.2951229e+117 -5.2719261e+117 -5.2755658e+117 -5.2783161e+117 -5.3006272e+117 -5.3048841e+117 -5.3237421e+117 -5.335944e+117 -5.3182014e+117 -5.3290217e+117 -5.3137824e+117 -5.2821106e+117 -5.3110855e+117 -5.2856732e+117 -5.3089239e+117 -5.2788393e+117 -5.3068968e+117 -5.279776e+117 -5.3272822e+117 -5.3407697e+117 -5.3445243e+117 -5.3301852e+117 -5.3326017e+117 -5.3472986e+117 -5.349704e+117 -5.3351128e+117 -5.2944281e+117 -5.2975283e+117 -5.3238284e+117 -5.325397e+117 -5.2904181e+117 -5.3197957e+117 -5.3220541e+117 -5.2919371e+117 -5.3469647e+117 -5.3623377e+117 -5.3458262e+117 -5.3614465e+117 -5.3443081e+117 -5.3421962e+117 -5.3582727e+117 -5.3598409e+117 -5.2865274e+117 -5.2886374e+117 -5.3163154e+117 -5.3179343e+117 -5.315721e+117 -5.2869296e+117 -5.3149989e+117 -5.2860669e+117 -5.3364989e+117 -5.3515312e+117 -5.352972e+117 -5.3376846e+117 -5.3403593e+117 -5.3565555e+117 -5.3387042e+117 -5.3546948e+117 -5.3636451e+117 -5.3714959e+117 -5.365724e+117 -5.3736646e+117 -5.3693692e+117 -5.3598558e+117 -5.366984e+117 -5.3617362e+117 -5.3757296e+117 -5.3729715e+117 -5.3787004e+117 -5.3817437e+117 -5.3802577e+117 -5.3779469e+117 -5.3841277e+117 -5.386469e+117 -5.3689561e+117 -5.3673473e+117 -5.3753455e+117 -5.3769381e+117 -5.3835421e+117 -5.3819187e+117 -5.3881775e+117 -5.3896841e+117 -5.3853845e+117 -5.3846662e+117 -5.3906787e+117 -5.3914022e+117 -5.3781508e+117 -5.3702925e+117 -5.3711474e+117 -5.3788951e+117 -5.3920113e+117 -5.3895788e+117 -5.3947564e+117 -5.3972049e+117 -5.3885711e+117 -5.3837834e+117 -5.3870915e+117 -5.392109e+117 -5.3972079e+117 -5.3928953e+117 -5.3966503e+117 -5.401079e+117 -5.4038862e+117 -5.3993677e+117 -5.4018831e+117 -5.4063651e+117 -5.4139572e+117 -5.4098284e+117 -5.413646e+117 -5.4176068e+117 -5.4056832e+117 -5.4014125e+117 -5.405344e+117 -5.4095496e+117 -5.4106044e+117 -5.408134e+117 -5.4123256e+117 -5.4146365e+117 -5.4202896e+117 -5.416337e+117 -5.418545e+117 -5.4223707e+117 -5.4233862e+117 -5.4196719e+117 -5.4210096e+117 -5.4246899e+117 -5.4160085e+117 -5.4121361e+117 -5.4135192e+117 -5.4172915e+117 -5.4152274e+117 -5.414481e+117 -5.4184735e+117 -5.4194319e+117 -5.4262551e+117 -5.4223657e+117 -5.4235397e+117 -5.4276225e+117 -5.408011e+117 -5.4035472e+117 -5.4049302e+117 -5.4093707e+117 -5.3951412e+117 -5.3936765e+117 -5.3989005e+117 -5.4002682e+117 -5.3967387e+117 -5.3960132e+117 -5.4011037e+117 -5.4017319e+117 -5.4102546e+117 -5.4057184e+117 -5.406329e+117 -5.4108675e+117 -5.4650332e+117 -5.4596351e+117 -5.4611308e+117 -5.4664658e+117 -5.4545997e+117 -5.4497242e+117 -5.4513041e+117 -5.456127e+117 -5.4552571e+117 -5.4531618e+117 -5.4579666e+117 -5.4599937e+117 -5.4682033e+117 -5.4628738e+117 -5.4648851e+117 -5.4701974e+117 -5.445167e+117 -5.440857e+117 -5.4423186e+117 -5.446693e+117 -5.436808e+117 -5.4327316e+117 -5.4338083e+117 -5.438085e+117 -5.4366631e+117 -5.4349286e+117 -5.4395419e+117 -5.4414455e+117 -5.4485402e+117 -5.4439855e+117 -5.4460035e+117 -5.4506219e+117 -5.4718279e+117 -5.4664994e+117 -5.4686288e+117 -5.473937e+117 -5.4615885e+117 -5.4568814e+117 -5.459012e+117 -5.4636888e+117 -5.4761613e+117 -5.4708546e+117 -5.4734039e+117 -5.478809e+117 -5.4523959e+117 -5.447889e+117 -5.4501528e+117 -5.4545312e+117 -5.5132559e+117 -5.5068818e+117 -5.5090403e+117 -5.5154784e+117 -5.4963296e+117 -5.4944563e+117 -5.5007701e+117 -5.5027567e+117 -5.5047497e+117 -5.498225e+117 -5.5004725e+117 -5.5071267e+117 -5.5135844e+117 -5.5110944e+117 -5.517679e+117 -5.5203406e+117 -5.4883594e+117 -5.4821772e+117 -5.4838712e+117 -5.490141e+117 -5.471994e+117 -5.4705014e+117 -5.4763246e+117 -5.4779088e+117 -5.4757296e+117 -5.473724e+117 -5.479665e+117 -5.4816604e+117 -5.4876679e+117 -5.4856209e+117 -5.4919586e+117 -5.4940875e+117 -5.4844344e+117 -5.4817078e+117 -5.4877755e+117 -5.4905296e+117 -5.4795107e+117 -5.4773514e+117 -5.483348e+117 -5.4855439e+117 -5.4959899e+117 -5.4894521e+117 -5.4917275e+117 -5.4983576e+117 -5.5006777e+117 -5.4939899e+117 -5.4967905e+117 -5.5035043e+117 -5.5227164e+117 -5.5158745e+117 -5.5185824e+117 -5.525472e+117 -5.504954e+117 -5.5024769e+117 -5.5092794e+117 -5.5118803e+117 -5.5101527e+117 -5.5073097e+117 -5.5142886e+117 -5.5171119e+117 -5.5238431e+117 -5.5210261e+117 -5.5279621e+117 -5.5307677e+117 -5.4025291e+117 -5.4021573e+117 -5.3971577e+117 -5.3973804e+117 -5.402362e+117 -5.4111717e+117 -5.4066178e+117 -5.406805e+117 -5.4112509e+117 -5.4112654e+117 -5.4068492e+117 -5.4078257e+117 -5.4123073e+117 -5.4285495e+117 -5.4242753e+117 -5.4248172e+117 -5.4293599e+117 -5.4199649e+117 -5.4155535e+117 -5.4156951e+117 -5.4202611e+117 -5.4169333e+117 -5.415765e+117 -5.4205034e+117 -5.4217865e+117 -5.4301887e+117 -5.4253196e+117 -5.4267407e+117 -5.4317542e+117 -5.3237973e+117 -5.2973118e+117 -5.2935304e+117 -5.3251687e+117 -5.3468007e+117 -5.3622972e+117 -5.3615114e+117 -5.3459676e+117 -5.3789762e+117 -5.3710892e+117 -5.370562e+117 -5.3786688e+117 -5.3854534e+117 -5.3855675e+117 -5.3917493e+117 -5.3918324e+117 -5.6351666e+117 -5.6231994e+117 -5.632636e+117 -5.6257509e+117 -5.6422759e+117 -5.6520128e+117 -5.6545058e+117 -5.6447594e+117 -5.6311744e+117 -5.6405047e+117 -5.6283703e+117 -5.6377028e+117 -5.6473041e+117 -5.6571265e+117 -5.6501362e+117 -5.6599993e+117 -5.5988932e+117 -5.6073857e+117 -5.6101926e+117 -5.6017812e+117 -5.6073584e+117 -5.6045953e+117 -5.6129886e+117 -5.6157968e+117 -5.6275956e+117 -5.616006e+117 -5.6248214e+117 -5.6187843e+117 -5.6244829e+117 -5.6334138e+117 -5.6216135e+117 -5.6304969e+117 -5.5988578e+117 -5.5877531e+117 -5.5963164e+117 -5.5902839e+117 -5.6050727e+117 -5.6139772e+117 -5.616515e+117 -5.6076028e+117 -5.6044856e+117 -5.5929659e+117 -5.6015099e+117 -5.5959141e+117 -5.6102992e+117 -5.6192127e+117 -5.6131703e+117 -5.6220294e+117 -5.6339689e+117 -5.6433441e+117 -5.6462255e+117 -5.6367812e+117 -5.6629692e+117 -5.6530573e+117 -5.6559898e+117 -5.6659797e+117 -5.6397107e+117 -5.6426893e+117 -5.6492048e+117 -5.6522353e+117 -5.669075e+117 -5.6621185e+117 -5.672247e+117 -5.6590068e+117 -5.5771654e+117 -5.5852294e+117 -5.5875239e+117 -5.5795604e+117 -5.5818314e+117 -5.58415e+117 -5.5897052e+117 -5.5919986e+117 -5.603581e+117 -5.5933064e+117 -5.6014395e+117 -5.5954782e+117 -5.599996e+117 -5.60822e+117 -5.5976225e+117 -5.6057778e+117 -5.5713912e+117 -5.55505e+117 -5.5689527e+117 -5.5575796e+117 -5.5737678e+117 -5.5761674e+117 -5.5421781e+117 -5.539719e+117 -5.5466199e+117 -5.5491009e+117 -5.6108945e+117 -5.6097924e+117 -5.6182894e+117 -5.6205578e+117 -5.6119699e+117 -5.6142236e+117 -5.622892e+117 -5.6167427e+117 -5.6254691e+117 -5.6385366e+117 -5.6270666e+117 -5.636074e+117 -5.6294199e+117 -5.6344662e+117 -5.6437102e+117 -5.6318221e+117 -5.6410171e+117 -5.6650349e+117 -5.6752437e+117 -5.6779737e+117 -5.6677402e+117 -5.6454391e+117 -5.6550579e+117 -5.6576969e+117 -5.6479835e+117 -5.6505262e+117 -5.6602968e+117 -5.6532737e+117 -5.6630745e+117 -5.6731691e+117 -5.6703448e+117 -5.6805856e+117 -5.6834732e+117 -5.6194544e+117 -5.6282091e+117 -5.637237e+117 -5.646506e+117 -5.6560898e+117 -5.6659037e+117 -5.6863527e+117 -5.6760177e+117 -5.5658786e+117 -5.555451e+117 -5.5633429e+117 -5.558007e+117 -5.5712908e+117 -5.5793764e+117 -5.5818799e+117 -5.5737882e+117 -5.5634842e+117 -5.5713327e+117 -5.560662e+117 -5.5685129e+117 -5.5764465e+117 -5.5845749e+117 -5.5793198e+117 -5.5874869e+117 -5.5610947e+117 -5.5445285e+117 -5.5582361e+117 -5.5474682e+117 -5.5528556e+117 -5.5501161e+117 -5.5638495e+117 -5.5665286e+117 -5.5417159e+117 -5.5348241e+117 -5.5374911e+117 -5.5443874e+117 -5.5321358e+117 -5.52949e+117 -5.5362867e+117 -5.5390072e+117 -5.5341162e+117 -5.5474701e+117 -5.5500144e+117 -5.5366517e+117 -5.5391333e+117 -5.5526557e+117 -5.5419737e+117 -5.5554543e+117 -5.5309497e+117 -5.5242569e+117 -5.5269352e+117 -5.5336996e+117 -5.5218213e+117 -5.5196284e+117 -5.5261201e+117 -5.5284345e+117 -5.5663226e+117 -5.574252e+117 -5.5771611e+117 -5.5691745e+117 -5.5719748e+117 -5.5746927e+117 -5.5800034e+117 -5.5827596e+117 -5.5904868e+117 -5.5934217e+117 -5.5823001e+117 -5.585221e+117 -5.5908523e+117 -5.588082e+117 -5.5962787e+117 -5.5990278e+117 -5.7695177e+117 -5.7840192e+117 -5.78754e+117 -5.7730756e+117 -5.780148e+117 -5.77655e+117 -5.7910576e+117 -5.7947728e+117 -5.8195881e+117 -5.7996153e+117 -5.8160266e+117 -5.8031446e+117 -5.8105986e+117 -5.8272759e+117 -5.8067769e+117 -5.8233853e+117 -5.7737031e+117 -5.7562934e+117 -5.7705181e+117 -5.7593694e+117 -5.7858954e+117 -5.8020171e+117 -5.8053276e+117 -5.7891318e+117 -5.7804682e+117 -5.7624959e+117 -5.7768757e+117 -5.7659669e+117 -5.79248e+117 -5.8088178e+117 -5.7960584e+117 -5.8124369e+117 -5.8425995e+117 -5.8197303e+117 -5.8390474e+117 -5.8231641e+117 -5.8598667e+117 -5.8634886e+117 -5.8304078e+117 -5.850009e+117 -5.8267134e+117 -5.8462362e+117 -5.867172e+117 -5.8710652e+117 -5.8340686e+117 -5.8537457e+117 -5.8575111e+117 -5.8377299e+117 -5.878746e+117 -5.8749188e+117 -5.841587e+117 -5.845549e+117 -5.861444e+117 -5.8654572e+117 -5.8867646e+117 -5.8826988e+117 -5.8491715e+117 -5.8691454e+117 -5.8723869e+117 -5.8523758e+117 -5.8584057e+117 -5.8553639e+117 -5.8753257e+117 -5.8784155e+117 -5.8904893e+117 -5.8936576e+117 -5.8998659e+117 -5.8966789e+117 -5.7951781e+117 -5.8099924e+117 -5.8127231e+117 -5.7979445e+117 -5.8030942e+117 -5.8004986e+117 -5.8152653e+117 -5.8179019e+117 -5.8454524e+117 -5.825961e+117 -5.8427845e+117 -5.8286439e+117 -5.8339624e+117 -5.8509508e+117 -5.8312632e+117 -5.8482039e+117 -5.8013005e+117 -5.783487e+117 -5.798213e+117 -5.7865335e+117 -5.814123e+117 -5.830824e+117 -5.8339262e+117 -5.8171963e+117 -5.8071538e+117 -5.7894287e+117 -5.8041545e+117 -5.7923227e+117 -5.8201518e+117 -5.8369661e+117 -5.8231306e+117 -5.8399628e+117 -5.8612465e+117 -5.8813523e+117 -5.8842102e+117 -5.8639895e+117 -5.9059303e+117 -5.9029763e+117 -5.8667883e+117 -5.8695877e+117 -5.8870863e+117 -5.8899308e+117 -5.9117838e+117 -5.908861e+117 -5.7459338e+117 -5.730202e+117 -5.7428682e+117 -5.7332351e+117 -5.7558424e+117 -5.76922e+117 -5.7722122e+117 -5.7588505e+117 -5.7518051e+117 -5.7361747e+117 -5.7488545e+117 -5.7391826e+117 -5.761801e+117 -5.7751751e+117 -5.7646408e+117 -5.7779753e+117 -5.6856632e+117 -5.6962033e+117 -5.6989571e+117 -5.6883783e+117 -5.6910906e+117 -5.7017973e+117 -5.7048263e+117 -5.6940592e+117 -5.7070297e+117 -5.7181894e+117 -5.7211092e+117 -5.7098573e+117 -5.712751e+117 -5.724048e+117 -5.7270867e+117 -5.7158113e+117 -5.697002e+117 -5.7078202e+117 -5.7105415e+117 -5.699778e+117 -5.7187726e+117 -5.7299391e+117 -5.7324923e+117 -5.7213746e+117 -5.7418845e+117 -5.7543931e+117 -5.7570196e+117 -5.7444603e+117 -5.7495767e+117 -5.7470032e+117 -5.7595976e+117 -5.7621712e+117 -5.7807928e+117 -5.7835288e+117 -5.7673242e+117 -5.7699999e+117 -5.7751737e+117 -5.7725862e+117 -5.7861268e+117 -5.7887044e+117 -5.7200609e+117 -5.7049433e+117 -5.7171155e+117 -5.7078521e+117 -5.7296065e+117 -5.742506e+117 -5.7454626e+117 -5.7325248e+117 -5.7138136e+117 -5.7260895e+117 -5.7106775e+117 -5.7228927e+117 -5.7354703e+117 -5.7485512e+117 -5.7387627e+117 -5.7519253e+117 -5.6731742e+117 -5.6835842e+117 -5.6867573e+117 -5.6762697e+117 -5.6794237e+117 -5.6899612e+117 -5.6931925e+117 -5.6826364e+117 -5.7085501e+117 -5.6942701e+117 -5.7052657e+117 -5.6974998e+117 -5.7151333e+117 -5.7007436e+117 -5.7118457e+117 -5.7040014e+117 -5.6748186e+117 -5.6620111e+117 -5.6721704e+117 -5.6645682e+117 -5.6826167e+117 -5.6933623e+117 -5.696189e+117 -5.6853421e+117 -5.6805251e+117 -5.6672356e+117 -5.6775538e+117 -5.6701638e+117 -5.6881233e+117 -5.6990192e+117 -5.6911516e+117 -5.7020906e+117 -5.7170771e+117 -5.7294212e+117 -5.7328543e+117 -5.7204104e+117 -5.7237561e+117 -5.73625e+117 -5.7270863e+117 -5.739647e+117 -5.7554202e+117 -5.7589418e+117 -5.7421955e+117 -5.7456612e+117 -5.7525689e+117 -5.7490907e+117 -5.7624284e+117 -5.7659449e+117 -3.4268453e+117 -3.5894763e+117 -3.5928228e+117 -3.7043273e+117 -3.7009139e+117 -3.8137175e+117 -3.8099642e+117 -3.920108e+117 -3.9241519e+117 -4.0369537e+117 -4.1487825e+117 -4.1522811e+117 -4.0329252e+117 -4.2727632e+117 -4.3987958e+117 -4.3964359e+117 -4.2698173e+117 -3.6989614e+117 -3.5908766e+117 -3.5866274e+117 -3.6952057e+117 -3.8076039e+117 -3.804751e+117 -3.9148726e+117 -3.9168222e+117 -4.029095e+117 -4.0273819e+117 -4.1427547e+117 -4.1446929e+117 -3.8023951e+117 -3.9129982e+117 -3.9113924e+117 -3.7997554e+117 -5.7154282e+117 -5.7117833e+117 -5.721388e+117 -5.7138965e+117 -5.729789e+117 -5.5931423e+117 -5.5974565e+117 -5.6018684e+117 -5.594802e+117 -5.607844e+117 -5.7358542e+117 -5.7225202e+117 -5.6090584e+117 -5.601298e+117 -5.8232441e+117 -5.8163947e+117 -5.8174377e+117 -5.8237978e+117 -5.9224608e+117 -5.909477e+117 -5.9075669e+117 -5.9198514e+117 -6.182556e+117 -6.1477387e+117 -6.1598785e+117 -6.0547743e+117 -6.1768248e+117 -6.1082037e+117 -6.0409753e+117 -6.1108088e+117 -6.1706109e+117 -6.0476728e+117 -6.1630026e+117 -6.1400608e+117 -5.9887313e+117 -5.9795239e+117 -5.9845195e+117 -6.2348597e+117 -6.2157766e+117 -6.2366955e+117 -6.2360687e+117 -6.229509e+117 -6.2110726e+117 -6.2287372e+117 -6.23079e+117 -6.2082558e+117 -6.2323197e+117 -6.2392442e+117 -6.219785e+117 -6.1638281e+117 -6.2254208e+117 -6.2395749e+117 -6.2342201e+117 -6.2376077e+117 -6.2229868e+117 -6.2378714e+117 -6.1750606e+117 -6.2143658e+117 -6.2066185e+117 -6.2055355e+117 -6.1974715e+117 -6.2361774e+117 -6.2108575e+117 -6.1970447e+117 -6.1936312e+117 -6.2356099e+117 -6.2251845e+117 -6.2252817e+117 -6.1094844e+117 -6.0675544e+117 -6.1083716e+117 -5.9793784e+117 -6.0544502e+117 -5.8099968e+117 -6.1133012e+117 -6.053124e+117 -5.7059335e+117 -6.0784995e+117 -6.1045203e+117 -6.0898307e+117 -5.5360066e+117 -5.2349468e+117 -5.8700479e+117 -5.5752038e+117 -4.8751555e+117 -5.8823938e+117 -5.4990746e+117 -6.1443311e+117 -6.4115174e+117 -6.074913e+117 -5.9944773e+117 -5.983739e+117 -4.7222581e+117 -6.2322016e+117 -6.5790766e+117 -6.3417164e+117 -6.1755727e+117 -5.6461055e+117 -6.1597226e+117 -6.1452998e+117 -6.120113e+117 -6.1345494e+117 -6.1144533e+117 -6.1121673e+117 -6.132648e+117 -5.8810829e+117 -5.9032393e+117 -5.806358e+117 -5.7913398e+117 -5.8511475e+117 -5.7337116e+117 -5.8563043e+117 -6.1645058e+117 -6.1283265e+117 -6.1167162e+117 -6.1517538e+117 -6.2021041e+117 -6.1772866e+117 -6.1599349e+117 -6.1771357e+117 -6.1683554e+117 -6.2085738e+117 -6.1824049e+117 -5.525547e+117 -5.7199431e+117 -5.7026031e+117 -6.1144349e+117 -6.1322938e+117 -6.1495294e+117 -6.1956058e+117 -5.254606e+117 -4.9059801e+117 -6.1320858e+117 -6.65345e+117 -5.9124788e+117 -7.1583973e+117 -6.4942455e+117 -6.0183352e+117 -7.1574242e+117 -6.4382853e+117 -6.5485772e+117 -5.7354549e+117 -5.6990445e+117 -5.8084009e+117 -5.7899909e+117 -5.9825777e+117 -5.9647262e+117 -5.9853136e+117 -5.996415e+117 -5.9722361e+117 -5.9160811e+117 -5.9065209e+117 -6.1602872e+117 -6.29955e+117 -6.5674617e+117 -7.0692848e+117 -6.1077088e+117 -6.0893393e+117 -6.1072913e+117 -6.1328397e+117 -6.0491146e+117 -6.0844732e+117 -6.1168452e+117 -6.0885243e+117 -6.0421373e+117 -6.0661153e+117 -6.0547186e+117 -6.1088536e+117 -6.0832807e+117 -6.090967e+117 -6.0545501e+117 -6.0560986e+117 -6.0766697e+117 -6.0539615e+117 -6.0829145e+117 -6.1255169e+117 -6.5931906e+117 -7.188491e+117 -8.1374446e+117 -8.3046414e+117 -2.5529746e+117 -3.0861557e+117 -1.9845733e+117 -6.5232634e+117 -6.4676804e+117 -3.2754689e+117 -6.5832382e+117 -6.4384707e+117 -4.5779463e+117 -4.3089555e+117 -4.4855216e+117 -4.4983142e+117 -4.6296241e+117 -4.6185315e+117 -4.7589334e+117 -4.7510645e+117 -4.7333508e+117 -4.7483796e+117 -4.6217554e+117 -4.7579217e+117 -4.4886193e+117 -4.3615221e+117 -4.0798743e+117 -4.2470894e+117 -4.2388532e+117 -4.3524254e+117 -4.4804747e+117 -4.6166934e+117 -4.7573821e+117 -4.9355597e+117 -4.9304912e+117 -4.9292532e+117 -3.8587834e+117 -4.0160804e+117 -4.0217533e+117 -4.1292887e+117 -4.1242684e+117 -4.3516013e+117 -4.2375162e+117 -4.2328835e+117 -4.34695e+117 -4.4733549e+117 -4.476905e+117 -4.7729944e+117 -4.6159499e+117 -4.9434458e+117 -4.6151843e+117 -4.7771194e+117 -4.9521731e+117 -4.6166653e+117 -4.7841118e+117 -4.9677529e+117 -4.4722348e+117 -4.3449981e+117 -4.2300233e+117 -4.1218702e+117 -4.0163568e+117 -3.9108269e+117 -3.6386304e+117 -3.8020588e+117 -3.7987199e+117 -3.9066267e+117 -4.0115685e+117 -4.1176365e+117 -4.2267069e+117 -4.342833e+117 -4.4720893e+117 -4.619356e+117 -4.7906969e+117 -4.9792665e+117 -3.9046369e+117 -3.7987398e+117 -3.7961537e+117 -3.901192e+117 -4.0068918e+117 -4.0102777e+117 -4.1154237e+117 -4.1131609e+117 -4.3414241e+117 -4.2242672e+117 -4.2229548e+117 -4.3411063e+117 -5.7200722e+117 -5.8211814e+117 -5.5631055e+117 -5.4026873e+117 -5.2436893e+117 -5.713247e+117 -5.8378883e+117 -5.7008482e+117 -5.8233504e+117 -5.8251995e+117 -5.748071e+117 -5.8345088e+117 -5.701327e+117 -5.9214986e+117 -5.9204962e+117 -5.9217693e+117 -5.8217261e+117 -5.6895729e+117 -5.6990712e+117 -5.5549751e+117 -5.566528e+117 -5.4348262e+117 -5.1322261e+117 -5.3297594e+117 -5.3184913e+117 -5.308266e+117 -5.3147383e+117 -5.4457687e+117 -5.4429988e+117 -5.4593704e+117 -5.5676266e+117 -5.6976237e+117 -5.5851622e+117 -5.5710288e+117 -5.5765398e+117 -5.8190858e+117 -5.9302849e+117 -5.9335479e+117 -5.9579898e+117 -4.8636498e+117 -5.0597395e+117 -5.0592185e+117 -5.1932411e+117 -5.197985e+117 -5.450817e+117 -5.3209171e+117 -5.330866e+117 -5.4662934e+117 -5.5992939e+117 -5.579284e+117 -5.7100482e+117 -5.7347487e+117 -5.9553237e+117 -5.8363896e+117 -5.8668889e+117 -5.9905405e+117 -4.7775655e+117 -4.7865726e+117 -4.9243979e+117 -4.9222755e+117 -4.9254516e+117 -4.9246357e+117 -5.0694327e+117 -5.0791405e+117 -5.0623092e+117 -5.2037683e+117 -5.2189263e+117 -5.0992846e+117 -5.106927e+117 -5.3474838e+117 -5.3707189e+117 -5.5224694e+117 -5.4901389e+117 -5.6307412e+117 -5.7717858e+117 -5.6724452e+117 -5.7653135e+117 -5.6034155e+117 -5.4359937e+117 -5.2671191e+117 -5.282692e+117 -5.3788817e+117 -5.6427437e+117 -5.4686047e+117 -5.2877402e+117 -5.1080391e+117 -5.681152e+117 -5.4997158e+117 -5.3101568e+117 -5.1225232e+117 -5.2112037e+117 -5.1045995e+117 -5.1133706e+117 -5.2277301e+117 -5.4537096e+117 -5.3592757e+117 -5.4893002e+117 -5.3891789e+117 -5.532121e+117 -5.559936e+117 -5.5680078e+117 -5.5958839e+117 -5.6045066e+117 -5.5826608e+117 -5.6415322e+117 -5.61904e+117 -5.6209252e+117 -5.6588611e+117 -5.5291195e+117 -5.331522e+117 -5.1361914e+117 -5.5567753e+117 -5.3533784e+117 -5.1511001e+117 -5.374225e+117 -5.1665333e+117 -5.394737e+117 -5.1825263e+117 -6.0249811e+117 -6.0032371e+117 -5.9918431e+117 -5.989125e+117 -6.0008961e+117 -6.1066282e+117 -6.0697375e+117 -6.1237109e+117 -6.0542677e+117 -6.1032902e+117 -6.1035875e+117 -6.0466167e+117 -6.0898636e+117 -6.0660846e+117 -6.1105384e+117 -6.0936622e+117 -6.0998852e+117 -6.1464597e+117 -6.1255584e+117 -6.0264173e+117 -6.0640918e+117 -6.1480516e+117 -1.4717697e+117 -4.3337659e+117 -5.3809436e+117 -3.7392073e+117 -5.3569991e+117 -5.6715357e+117 -5.6832064e+117 -5.6619703e+117 -5.3335311e+117 -4.9509559e+117 -5.6616539e+117 -5.3322332e+117 -4.510878e+117 -5.9118893e+117 -5.9082817e+117 -5.91574e+117 -4.2704191e+117 -3.1795114e+117 -5.2731462e+117 -5.6456833e+117 -5.8983563e+117 -5.6141747e+117 -5.2914552e+117 -5.9771172e+117 -5.9091569e+117 -6.0611967e+117 -5.6684233e+117 -5.8953641e+117 -5.7421739e+117 -5.4044502e+117 -4.9511694e+117 -4.2950227e+117 -4.817297e+117 -4.682258e+117 -4.1881662e+117 -3.459738e+117 -4.3402655e+117 -4.8297096e+117 -4.1029258e+117 -3.3733386e+117 -3.2807764e+117 -4.4909224e+117 -5.2637654e+117 -4.4010728e+117 -4.736556e+117 -2.7025173e+117 -3.2380612e+117 -3.9761979e+117 -3.2681984e+117 -4.8028146e+117 -3.2400045e+117 -2.4478431e+117 -6.1638961e+116 -2.3429618e+117 -1.1641593e+117 -8.6210673e+116 -3.2705927e+117 -6.1745751e+117 -6.1743186e+117 -6.1411289e+117 -6.1449805e+117 -6.1485603e+117 -6.1207298e+117 -6.0831497e+117 -6.0779569e+117 -6.0293072e+117 -6.0172262e+117 -5.9051075e+117 -5.8970651e+117 -6.0168266e+117 -6.0778153e+117 -6.0779928e+117 -6.0916289e+117 -6.0241981e+117 -6.0981268e+117 -6.0429499e+117 -6.044826e+117 -6.1013415e+117 -6.0587419e+117 -6.0976772e+117 -4.2257205e+117 -1.4018491e+117 -2.3720696e+116 -4.5181839e+117 -5.8101169e+117 -5.5299457e+117 -1.3153155e+117 -4.5276421e+117 -5.1507554e+117 -2.116635e+116 -1.2818272e+117 -3.8010018e+117 -4.6233657e+117 -3.5538258e+117 -3.6449216e+117 -6.0308243e+117 -6.106889e+117 -6.1341484e+117 -6.0642207e+117 -8.8545738e+116 -6.0110206e+116 -2.2557016e+117 -2.2746998e+117 -4.799214e+117 -4.5524343e+117 -5.7136782e+117 -5.6915848e+117 -5.6516657e+117 -5.6712419e+117 -5.735717e+117 -5.722985e+117 -5.7468045e+117 -5.7334595e+117 -5.7599353e+117 -5.7400883e+117 -5.8659108e+117 -5.72584e+117 -5.8551488e+117 -5.9883914e+117 -5.9970602e+117 -5.5990811e+117 -5.4701011e+117 -4.8801927e+117 -5.2176314e+117 -5.2114551e+117 -5.0788616e+117 -5.0834261e+117 -5.3496212e+117 -5.3413135e+117 -5.4802643e+117 -5.6117171e+117 -4.6071595e+117 -4.8766798e+117 -4.985293e+117 -4.9902918e+117 -4.8701266e+117 -4.33678e+117 -5.0913868e+117 -5.1908865e+117 -5.1154256e+117 -5.2191004e+117 -5.4067839e+117 -5.3160246e+117 -5.6981714e+117 -5.7005655e+117 -5.7122287e+117 -5.7116315e+117 -5.6791519e+117 -5.6896388e+117 -5.6871604e+117 -5.676794e+117 -5.6432012e+117 -5.6324096e+117 -5.6390874e+117 -5.6499787e+117 -5.6592585e+117 -5.6691835e+117 -5.6670574e+117 -5.6581384e+117 -5.7339605e+117 -5.7214943e+117 -5.6703268e+117 -5.6638594e+117 -5.6742427e+117 -5.6804781e+117 -5.7054433e+117 -5.6908377e+117 -5.6855074e+117 -5.6974459e+117 -5.6920206e+117 -5.6766108e+117 -5.6805735e+117 -5.6877967e+117 -5.6555999e+117 -5.6592786e+117 -5.6697475e+117 -5.6659352e+117 -5.623514e+117 -5.6287043e+117 -5.639584e+117 -5.6335492e+117 -5.6503559e+117 -5.6436318e+117 -5.653951e+117 -5.6603652e+117 -5.649386e+117 -5.6354761e+117 -5.6392408e+117 -5.6456303e+117 -5.6159272e+117 -5.6196006e+117 -5.6294889e+117 -5.6257098e+117 -5.6851533e+117 -5.6714306e+117 -5.6739388e+117 -5.68266e+117 -5.6529283e+117 -5.6632994e+117 -5.6607899e+117 -5.6504388e+117 -5.648552e+117 -5.6476529e+117 -5.6577523e+117 -5.6588872e+117 -5.6694827e+117 -5.6809605e+117 -5.6683185e+117 -5.6799351e+117 -5.6108157e+117 -5.613288e+117 -5.6230485e+117 -5.6205098e+117 -5.6327945e+117 -5.6302651e+117 -5.6403751e+117 -5.6429726e+117 -5.6271291e+117 -5.6283837e+117 -5.6384862e+117 -5.6372112e+117 -5.6079199e+117 -5.6090421e+117 -5.6187326e+117 -5.6174549e+117 -5.7364898e+117 -5.7451371e+117 -5.75812e+117 -5.7551215e+117 -5.7205425e+117 -5.7311188e+117 -5.7089385e+117 -5.7201689e+117 -5.7161397e+117 -5.6988799e+117 -5.7033817e+117 -5.7109018e+117 -5.7295083e+117 -5.744982e+117 -5.7378437e+117 -5.7235022e+117 -5.6914009e+117 -5.6923201e+117 -5.7043612e+117 -5.7032862e+117 -5.6937787e+117 -5.6961448e+117 -5.7080806e+117 -5.7057294e+117 -5.7180558e+117 -5.720537e+117 -5.7344875e+117 -5.7316168e+117 -5.7300015e+117 -5.7165686e+117 -5.7154524e+117 -5.7287199e+117 -5.7722381e+117 -5.7742852e+117 -5.7921851e+117 -5.789578e+117 -5.8016419e+117 -5.7818116e+117 -5.7770767e+117 -5.7962587e+117 -5.7452804e+117 -5.7484643e+117 -5.7643204e+117 -5.7607352e+117 -5.7420963e+117 -5.7434849e+117 -5.7586143e+117 -5.7568645e+117 -5.7702039e+117 -5.785629e+117 -5.7659422e+117 -5.7829978e+117 -5.7531179e+117 -5.7590635e+117 -5.7768781e+117 -5.7689699e+117 -5.7946705e+117 -5.8115597e+117 -5.7864081e+117 -5.8073046e+117 -5.8194211e+117 -5.8112596e+117 -5.8144505e+117 -5.7989286e+117 -5.7994755e+117 -5.8246475e+117 -5.810599e+117 -5.7838638e+117 -5.8234401e+117 -5.8256485e+117 -5.8348419e+117 -5.8381531e+117 -5.8337451e+117 -5.8258641e+117 -5.6424322e+117 -5.6270554e+117 -5.6465335e+117 -5.6616066e+117 -5.6085455e+117 -5.5903014e+117 -5.6063808e+117 -5.6243714e+117 -5.6214305e+117 -5.6376056e+117 -5.6558646e+117 -5.6394851e+117 -5.6575321e+117 -5.6740732e+117 -5.693677e+117 -5.6767379e+117 -5.7054921e+117 -5.7241625e+117 -5.7155528e+117 -5.7140876e+117 -5.7068967e+117 -5.6972118e+117 -5.6870459e+117 -5.6967886e+117 -5.7177283e+117 -5.7081568e+117 -5.7202901e+117 -5.7300036e+117 -5.7264804e+117 -5.7387928e+117 -5.747511e+117 -5.7351407e+117 -5.6552016e+117 -5.6628537e+117 -5.6729136e+117 -5.6654042e+117 -5.6758215e+117 -5.6835671e+117 -5.6953635e+117 -5.6869248e+117 -5.7000745e+117 -5.6910001e+117 -5.7031075e+117 -5.7122242e+117 -5.6700742e+117 -5.689131e+117 -5.6801987e+117 -5.6789326e+117 -5.7578847e+117 -5.7600868e+117 -5.749228e+117 -5.7687196e+117 -5.7644904e+117 -5.7624535e+117 -5.7527114e+117 -5.7740088e+117 -5.7307213e+117 -5.7415363e+117 -5.7513238e+117 -5.7404126e+117 -5.7825894e+117 -5.7710775e+117 -5.7798187e+117 -5.7914156e+117 -5.7055787e+117 -5.6970407e+117 -5.7073638e+117 -5.7161315e+117 -5.7270143e+117 -5.7181423e+117 -5.7295067e+117 -5.7384821e+117 -5.744515e+117 -5.7350506e+117 -5.7467511e+117 -5.7562754e+117 -5.7134242e+117 -5.7240882e+117 -5.7333784e+117 -5.7225668e+117 -5.7930476e+117 -5.7879375e+117 -5.7783483e+117 -5.8024201e+117 -5.8047645e+117 -5.8170183e+117 -5.8270241e+117 -5.8147798e+117 -5.8114105e+117 -5.8201558e+117 -5.8240147e+117 -5.8359145e+117 -5.8446842e+117 -5.8328927e+117 -5.7970697e+117 -5.8059727e+117 -5.7412677e+117 -5.750271e+117 -5.7651687e+117 -5.7554004e+117 -5.766594e+117 -5.779463e+117 -5.7894129e+117 -5.7763652e+117 -5.7742186e+117 -5.7839759e+117 -5.7850723e+117 -5.7980366e+117 -5.8079573e+117 -5.7952036e+117 -5.7591549e+117 -5.7689853e+117 -5.6743992e+117 -5.7043206e+117 -5.6928698e+117 -5.6857148e+117 -5.6501748e+117 -5.6684269e+117 -5.6816477e+117 -5.6631971e+117 -5.699838e+117 -5.6867994e+117 -5.7196414e+117 -5.7065069e+117 -5.7111547e+117 -5.7312156e+117 -5.7429882e+117 -5.7227401e+117 -5.7462783e+117 -5.7526788e+117 -5.7631369e+117 -5.7566267e+117 -5.7679012e+117 -5.7803423e+117 -5.7869598e+117 -5.7744022e+117 -5.7925931e+117 -5.7800184e+117 -5.7851482e+117 -5.7976881e+117 -5.7582678e+117 -5.7686991e+117 -5.7738404e+117 -5.7635515e+117 -5.7207583e+117 -5.727796e+117 -5.7380611e+117 -5.7309256e+117 -5.7418894e+117 -5.7542235e+117 -5.7615897e+117 -5.7491389e+117 -5.768144e+117 -5.75568e+117 -5.7622704e+117 -5.7746139e+117 -5.7340985e+117 -5.7510617e+117 -5.7444535e+117 -5.7407059e+117 -5.7867183e+117 -5.7941116e+117 -5.8056027e+117 -5.7983264e+117 -5.7850309e+117 -5.7785427e+117 -5.7894487e+117 -5.7960022e+117 -5.7646873e+117 -5.7755677e+117 -5.7829982e+117 -5.7720772e+117 -5.8120743e+117 -5.8005003e+117 -5.8072619e+117 -5.8189413e+117 -5.7908474e+117 -5.7974119e+117 -5.8084004e+117 -5.8018115e+117 -5.8130877e+117 -5.8196653e+117 -5.8314197e+117 -5.8248363e+117 -5.8308987e+117 -5.8253496e+117 -5.8372135e+117 -5.8427562e+117 -5.8029916e+117 -5.8082162e+117 -5.8194055e+117 -5.8140459e+117 -5.8548657e+117 -5.8470744e+117 -5.8407561e+117 -5.8611671e+117 -5.8679954e+117 -5.8794012e+117 -5.8856633e+117 -5.8741881e+117 -5.8669594e+117 -5.8723997e+117 -5.8798889e+117 -5.8912438e+117 -5.8966733e+117 -5.8853431e+117 -5.8528441e+117 -5.8583137e+117 -5.8278228e+117 -5.8211356e+117 -5.8138116e+117 -5.8351296e+117 -5.8406942e+117 -5.8522243e+117 -5.8598711e+117 -5.8482548e+117 -5.8419252e+117 -5.848671e+117 -5.8551366e+117 -5.8666617e+117 -5.8733723e+117 -5.8618415e+117 -5.8278134e+117 -5.8345268e+117 -5.6944864e+117 -5.8180019e+117 -5.8127315e+117 -5.8239351e+117 -5.829074e+117 -5.8403751e+117 -5.8353099e+117 -5.8471183e+117 -5.8521418e+117 -5.8503451e+117 -5.8451486e+117 -5.8569813e+117 -5.8621334e+117 -5.8921913e+117 -5.9062431e+117 -5.9110675e+117 -5.8970386e+117 -5.8966007e+117 -5.9013959e+117 -5.88735e+117 -5.8825649e+117 -5.9208267e+117 -5.9096195e+117 -5.9256143e+117 -5.9143394e+117 -5.9238906e+117 -5.9190457e+117 -5.9303048e+117 -5.9351495e+117 -5.8771934e+117 -5.8680862e+117 -5.8631156e+117 -5.8822091e+117 -5.8902914e+117 -5.8953898e+117 -5.9066781e+117 -5.9015294e+117 -5.8921329e+117 -5.8871498e+117 -5.9050903e+117 -5.9002695e+117 -5.9114718e+117 -5.9162785e+117 -5.8730066e+117 -5.8780526e+117 -5.8135563e+117 -5.8233479e+117 -5.8309862e+117 -5.8405462e+117 -5.8412893e+117 -5.8504866e+117 -5.8047691e+117 -5.7961879e+117 -5.8223865e+117 -5.8151486e+117 -5.8232555e+117 -5.8313871e+117 -5.8328787e+117 -5.8429055e+117 -5.8600887e+117 -5.8499147e+117 -5.8600397e+117 -5.8698095e+117 -5.8520033e+117 -5.8608174e+117 -5.8690327e+117 -5.8779535e+117 -5.8875069e+117 -5.8789298e+117 -5.8401844e+117 -5.849979e+117 -5.8321116e+117 -5.84106e+117 -5.8596102e+117 -5.8688703e+117 -5.8508188e+117 -5.8601348e+117 -5.8786369e+117 -5.8871791e+117 -5.8690961e+117 -5.8780253e+117 -5.8875366e+117 -5.8957718e+117 -5.8960311e+117 -5.9040006e+117 -5.8412132e+117 -5.8568754e+117 -5.8653026e+117 -5.8465204e+117 -5.8540696e+117 -5.8732044e+117 -5.8798957e+117 -5.8606501e+117 -5.8563721e+117 -5.8652766e+117 -5.8460353e+117 -5.8553747e+117 -5.8675538e+117 -5.8572791e+117 -5.8752596e+117 -5.8827475e+117 -5.8669667e+117 -5.8744919e+117 -5.8853192e+117 -5.8774408e+117 -5.8842766e+117 -5.891192e+117 -5.8930701e+117 -5.8995587e+117 -5.8935846e+117 -5.9018518e+117 -5.8677269e+117 -5.8872319e+117 -5.8956632e+117 -5.876014e+117 -5.9091787e+117 -5.9074384e+117 -5.9014498e+117 -5.9093485e+117 -5.9148072e+117 -5.9161315e+117 -5.909171e+117 -5.9027509e+117 -5.8828555e+117 -5.888557e+117 -5.9037023e+117 -5.9113575e+117 -5.9108198e+117 -5.9181902e+117 -5.9171733e+117 -5.9243561e+117 -5.9232463e+117 -5.9302566e+117 -5.8829045e+117 -5.8997728e+117 -5.8895015e+117 -5.9062687e+117 -5.9153342e+117 -5.9091579e+117 -5.8685769e+117 -5.8856154e+117 -5.8761606e+117 -5.893218e+117 -5.9025885e+117 -5.8953141e+117 -5.922491e+117 -5.9215593e+117 -5.9164497e+117 -5.9230064e+117 -5.9278101e+117 -5.928524e+117 -5.934148e+117 -5.9336605e+117 -5.9290305e+117 -5.9347538e+117 -5.9391685e+117 -5.9395127e+117 -5.8939753e+117 -5.9150436e+117 -5.9208106e+117 -5.8992701e+117 -5.931386e+117 -5.9262401e+117 -5.9045262e+117 -5.9094401e+117 -5.9289288e+117 -5.9357899e+117 -5.9344681e+117 -5.9411877e+117 -5.9396022e+117 -5.9461972e+117 -5.944597e+117 -5.9510691e+117 -5.9123872e+117 -5.9286409e+117 -5.9069856e+117 -5.9232763e+117 -5.9371825e+117 -5.9320766e+117 -5.9015229e+117 -5.9180261e+117 -5.8954643e+117 -5.9120463e+117 -5.9268043e+117 -5.9211515e+117 -5.9446618e+117 -5.9444688e+117 -5.9402024e+117 -5.9454325e+117 -5.9495436e+117 -5.9496594e+117 -5.9544423e+117 -5.9544195e+117 -5.9503838e+117 -5.9551679e+117 -5.9590862e+117 -5.9590715e+117 -5.9141396e+117 -5.9362886e+117 -5.941149e+117 -5.9187479e+117 -5.9503035e+117 -5.9458448e+117 -5.9232408e+117 -5.9275283e+117 -5.9507753e+117 -5.9458853e+117 -5.9666797e+117 -5.9618829e+117 -5.9701864e+117 -5.9747092e+117 -5.9365477e+117 -5.9412763e+117 -5.9574148e+117 -5.952641e+117 -5.9656686e+117 -5.9610656e+117 -5.9272561e+117 -5.9320731e+117 -5.943375e+117 -5.9482159e+117 -5.9565117e+117 -5.9518432e+117 -5.9225077e+117 -5.917353e+117 -5.9335255e+117 -5.9387238e+117 -5.9470893e+117 -5.9421215e+117 -5.9553745e+117 -5.9600411e+117 -5.971042e+117 -5.9755957e+117 -5.9834777e+117 -5.9791195e+117 -5.9642174e+117 -5.9684221e+117 -5.979643e+117 -5.9838939e+117 -5.9876508e+117 -5.991778e+117 -5.9494205e+117 -5.9558725e+117 -5.9543649e+117 -5.9607878e+117 -5.9590663e+117 -5.9654717e+117 -5.963741e+117 -5.9701181e+117 -5.9682667e+117 -5.9746178e+117 -5.9728645e+117 -5.9791769e+117 -5.9773195e+117 -5.9835414e+117 -5.9817622e+117 -5.9878922e+117 -5.9636681e+117 -5.9638095e+117 -5.9599879e+117 -5.9648025e+117 -5.968501e+117 -5.9683114e+117 -5.9729056e+117 -5.9731739e+117 -5.9694807e+117 -5.974074e+117 -5.977701e+117 -5.9774364e+117 -5.9317336e+117 -5.9546806e+117 -5.9591473e+117 -5.935831e+117 -5.9679524e+117 -5.9636383e+117 -5.9400031e+117 -5.9440217e+117 -5.9819008e+117 -5.9822169e+117 -5.9785857e+117 -5.9830494e+117 -5.9866208e+117 -5.986305e+117 -5.9905456e+117 -5.99094e+117 -5.9873992e+117 -5.991675e+117 -5.9950916e+117 -5.9946637e+117 -5.9481964e+117 -5.9722679e+117 -5.9765931e+117 -5.9523209e+117 -5.9848096e+117 -5.9808333e+117 -5.9565092e+117 -5.9604307e+117 -5.9860895e+117 -5.9921473e+117 -5.9904222e+117 -5.9964333e+117 -5.994566e+117 -6.000533e+117 -5.9986921e+117 -6.0046197e+117 -6.0027414e+117 -6.0085492e+117 -6.0067221e+117 -6.0124432e+117 -6.0104886e+117 -6.0160985e+117 -5.9986898e+117 -5.9992443e+117 -5.9959087e+117 -6.0000817e+117 -6.003278e+117 -6.0026351e+117 -6.008183e+117 -6.0112764e+117 -6.0041496e+117 -6.0073119e+117 -6.0105556e+117 -6.006616e+117 -5.9963208e+117 -5.9715082e+117 -5.974928e+117 -6.0000296e+117 -5.9642662e+117 -5.9886779e+117 -5.9924976e+117 -5.9678426e+117 -6.0037526e+117 -6.0073151e+117 -5.9819035e+117 -5.9785614e+117 -6.0140382e+117 -6.0107496e+117 -5.98515e+117 -5.9882288e+117 -6.0158194e+117 -6.0187492e+117 -6.0120432e+117 -6.0150556e+117 -6.0179163e+117 -6.0142619e+117 -6.0230562e+117 -6.0258238e+117 -6.019455e+117 -6.0223229e+117 -6.0248746e+117 -6.0214345e+117 -6.1994799e+117 -6.1801089e+117 -6.1285979e+117 -6.1665873e+117 -6.1555141e+117 -6.0886769e+117 -5.1451389e+117 -4.9246879e+117 -5.2231019e+117 -5.4858926e+117 -5.3344315e+117 -4.9587061e+117 -5.7829229e+117 -5.485646e+117 -5.6535017e+117 -4.9901211e+117 -5.660039e+117 -5.1570201e+117 -4.6703209e+117 -5.4762384e+117 -5.8324717e+117 -6.0214571e+117 -5.6734788e+117 -5.3979953e+117 -5.7285784e+117 -5.4968311e+117 -5.9128461e+117 -4.995272e+117 -4.8453502e+117 -4.6062786e+117 -3.7300531e+117 -4.362952e+117 -4.8227513e+117 -4.1785587e+117 -4.7953801e+117 -4.7255147e+117 -4.7230241e+117 -4.8174473e+117 -5.055013e+117 -5.1321691e+117 -5.0235788e+117 -5.217348e+117 -4.8973829e+117 -5.0453385e+117 -5.3382641e+117 -5.9458586e+117 -5.5112032e+117 -5.4185413e+117 -5.3364836e+117 -4.9667491e+117 -5.1966097e+117 -5.3454326e+117 -5.2999722e+117 -3.3832733e+117 -4.3321485e+117 -4.7718469e+117 -4.0934369e+117 -3.8670571e+117 -3.6438554e+117 -4.8782211e+117 -4.8725594e+117 -5.0143176e+117 -5.0027582e+117 -5.0043136e+117 -5.0159643e+117 -5.9078048e+117 -5.8853434e+117 -5.8815535e+117 -5.9038536e+117 -5.9157071e+117 -5.8930615e+117 -5.8891172e+117 -5.911707e+117 -5.9238207e+117 -5.9009452e+117 -5.8970225e+117 -5.9198083e+117 -5.9318116e+117 -5.9089428e+117 -5.904904e+117 -5.9278052e+117 -5.9390204e+117 -5.9159515e+117 -5.9127207e+117 -5.9356455e+117 -5.9456496e+117 -5.9223597e+117 -5.919117e+117 -5.9423468e+117 -5.9255769e+117 -5.9489861e+117 -5.9522212e+117 -5.9286658e+117 -5.9582817e+117 -5.9346077e+117 -5.9316436e+117 -5.9552606e+117 -5.8074647e+117 -5.8266418e+117 -5.7956001e+117 -5.8121393e+117 -5.8027929e+117 -5.8213107e+117 -5.8199057e+117 -5.8400373e+117 -5.8336267e+117 -5.8137705e+117 -5.8519993e+117 -5.8314553e+117 -5.825867e+117 -5.8465159e+117 -5.8369675e+117 -5.8577145e+117 -5.863003e+117 -5.8421186e+117 -5.8728468e+117 -5.8514895e+117 -5.8469151e+117 -5.8680209e+117 -5.8822608e+117 -5.860536e+117 -5.8560396e+117 -5.8776525e+117 -5.891196e+117 -5.8691948e+117 -5.8649361e+117 -5.886787e+117 -5.8996829e+117 -5.8775475e+117 -5.8733617e+117 -5.895446e+117 -5.7386569e+117 -5.7449092e+117 -5.6180941e+117 -5.4874312e+117 -4.8258244e+117 -4.9577524e+117 -4.9604954e+117 -4.8281754e+117 -4.6282704e+117 -5.2218346e+117 -5.0897432e+117 -5.0921202e+117 -5.2227553e+117 -5.3553672e+117 -5.3555851e+117 -5.4859039e+117 -5.6142776e+117 -4.3648401e+117 -4.1117399e+117 -5.6484822e+117 -5.6582601e+117 -5.5652085e+117 -5.0333395e+117 -2.6756361e+117 -5.53688e+117 -4.9908692e+117 -4.3695301e+117 -5.4838556e+117 -5.4619971e+117 -5.1957349e+117 -1.0561803e+117 -1.5021639e+117 -3.4261892e+117 -3.650557e+117 -3.8776408e+117 -5.7263052e+117 -5.7400609e+117 -5.7441387e+117 -5.730347e+117 -5.7342125e+117 -5.7479753e+117 -5.7380858e+117 -5.7518738e+117 -5.7549932e+117 -5.7704555e+117 -5.7589882e+117 -5.7744408e+117 -5.766904e+117 -5.7785283e+117 -5.7826143e+117 -5.762914e+117 -5.7875199e+117 -5.7916494e+117 -5.8103618e+117 -5.8060917e+117 -5.8259407e+117 -5.8303356e+117 -5.8188588e+117 -5.7957936e+117 -5.8146078e+117 -5.7999527e+117 -5.8347021e+117 -5.8390662e+117 -5.7597306e+117 -5.7418976e+117 -5.7558114e+117 -5.7457505e+117 -5.770984e+117 -5.7867284e+117 -5.7905882e+117 -5.7748338e+117 -5.7529757e+117 -5.7670196e+117 -5.7493521e+117 -5.7632926e+117 -5.7785248e+117 -5.7944482e+117 -5.7823555e+117 -5.7983433e+117 -5.82712e+117 -5.804134e+117 -5.8230824e+117 -5.8080788e+117 -5.843384e+117 -5.8474973e+117 -5.8159769e+117 -5.8351749e+117 -5.8120099e+117 -5.8311468e+117 -5.85158e+117 -5.8557135e+117 -5.6495436e+117 -5.6595901e+117 -5.6529154e+117 -5.6629415e+117 -5.6731228e+117 -5.6696982e+117 -5.6801356e+117 -5.6836209e+117 -5.6591752e+117 -5.6692873e+117 -5.6560675e+117 -5.6661212e+117 -5.687002e+117 -5.6764152e+117 -5.6796293e+117 -5.6902731e+117 -5.6356949e+117 -5.6389256e+117 -5.6455393e+117 -5.6488382e+117 -5.6554656e+117 -5.6589363e+117 -5.6657102e+117 -5.6692896e+117 -5.6422875e+117 -5.6522782e+117 -5.6559492e+117 -5.6459195e+117 -5.6729682e+117 -5.6766092e+117 -5.6625427e+117 -5.6661563e+117 -5.6767552e+117 -5.688388e+117 -5.6921974e+117 -5.6804728e+117 -5.6841873e+117 -5.6959527e+117 -5.6996061e+117 -5.6878142e+117 -5.7168154e+117 -5.7003581e+117 -5.7128542e+117 -5.7042535e+117 -5.7244926e+117 -5.7080883e+117 -5.7207046e+117 -5.7117906e+117 -5.6914034e+117 -5.7032875e+117 -5.706974e+117 -5.6950058e+117 -5.7017847e+117 -5.6984547e+117 -5.7105074e+117 -5.7139235e+117 -5.7155072e+117 -5.7282477e+117 -5.7320299e+117 -5.7192579e+117 -5.7263573e+117 -5.7228655e+117 -5.73569e+117 -5.7392329e+117 -5.635126e+117 -5.622105e+117 -5.6318394e+117 -5.6253304e+117 -5.6416676e+117 -5.6516424e+117 -5.6550744e+117 -5.6450037e+117 -5.6420066e+117 -5.6287284e+117 -5.638518e+117 -5.6322499e+117 -5.6484731e+117 -5.6586234e+117 -5.6621991e+117 -5.6519745e+117 -5.6771618e+117 -5.662339e+117 -5.6735468e+117 -5.6658573e+117 -5.685136e+117 -5.6971289e+117 -5.7009847e+117 -5.6888513e+117 -5.6846258e+117 -5.6694991e+117 -5.6809188e+117 -5.6731381e+117 -5.6926888e+117 -5.7049288e+117 -5.6965034e+117 -5.7088717e+117 -5.6101148e+117 -5.6195666e+117 -5.6290799e+117 -5.6382862e+117 -5.6465105e+117 -5.640705e+117 -5.6310463e+117 -5.6330743e+117 -5.6427165e+117 -5.6214642e+117 -5.6118986e+117 -5.6137809e+117 -5.6234249e+117 -5.6287782e+117 -5.6162293e+117 -5.6259019e+117 -5.6190388e+117 -5.6453679e+117 -5.6356552e+117 -5.6385115e+117 -5.6483394e+117 -5.6724132e+117 -5.6630529e+117 -5.6830105e+117 -5.6525948e+117 -5.6559229e+117 -5.6622591e+117 -5.6637388e+117 -5.6620371e+117 -5.6516397e+117 -5.6517172e+117 -5.6511775e+117 -5.6643276e+117 -5.6532167e+117 -5.6588951e+117 -5.6558207e+117 -5.6668337e+117 -5.6700085e+117 -5.6868158e+117 -5.6727562e+117 -5.6834558e+117 -5.6755426e+117 -5.6814715e+117 -5.6933304e+117 -5.6781194e+117 -5.6897255e+117 -5.7463252e+117 -5.7613422e+117 -5.7697545e+117 -5.7492988e+117 -5.7656122e+117 -5.7531229e+117 -5.7776736e+117 -5.7832434e+117 -5.7877351e+117 -5.7629499e+117 -5.7804627e+117 -5.7577304e+117 -5.7748737e+117 -5.793459e+117 -5.7994206e+117 -5.6947668e+117 -5.7066402e+117 -5.7110252e+117 -5.6953882e+117 -5.7075334e+117 -5.6988506e+117 -5.7191831e+117 -5.7322824e+117 -5.7208196e+117 -5.7343291e+117 -5.7379344e+117 -5.7242765e+117 -5.70202e+117 -5.7144925e+117 -5.7186527e+117 -5.7059181e+117 -5.7280092e+117 -5.7420836e+117 -5.7325015e+117 -5.7469416e+117 -5.7099176e+117 -5.7228646e+117 -5.7139217e+117 -5.7270911e+117 -5.7415427e+117 -5.7566314e+117 -5.737018e+117 -5.7518085e+117 -5.7221312e+117 -5.7357035e+117 -5.7179942e+117 -5.7313819e+117 -5.7460546e+117 -5.7613731e+117 -5.7660025e+117 -5.7505493e+117 -5.7681693e+117 -5.7860308e+117 -5.7914612e+117 -5.7732994e+117 -5.7782652e+117 -5.7966442e+117 -5.783018e+117 -5.8015154e+117 -5.8052998e+117 -5.8109239e+117 -5.8212701e+117 -5.8162661e+117 -5.5726242e+117 -5.5816921e+117 -5.5696206e+117 -5.5788708e+117 -5.5856771e+117 -5.5747611e+117 -5.5837861e+117 -5.5767027e+117 -5.5885019e+117 -5.5910608e+117 -5.5982386e+117 -5.6004747e+117 -5.5930022e+117 -5.6023271e+117 -5.6041853e+117 -5.5948458e+117 -5.5818122e+117 -5.5907606e+117 -5.5791317e+117 -5.5880433e+117 -5.5972152e+117 -5.6066152e+117 -5.5999734e+117 -5.6093943e+117 -5.5706569e+117 -5.5800369e+117 -5.5994201e+117 -5.5895868e+117 -5.5507903e+117 -5.5590067e+117 -5.5619211e+117 -5.5537883e+117 -5.5602632e+117 -5.5569873e+117 -5.5650772e+117 -5.568391e+117 -5.5787749e+117 -5.5673326e+117 -5.5758538e+117 -5.5702419e+117 -5.5767838e+117 -5.5854286e+117 -5.5734203e+117 -5.5820276e+117 -5.5380248e+117 -5.5463069e+117 -5.5343814e+117 -5.5426969e+117 -5.5509055e+117 -5.5405632e+117 -5.5488436e+117 -5.5426158e+117 -5.5514194e+117 -5.5603377e+117 -5.5548691e+117 -5.5635658e+117 -5.5572787e+117 -5.5658571e+117 -5.5678751e+117 -5.5593226e+117 -5.5561408e+117 -5.5451173e+117 -5.5533788e+117 -5.5478519e+117 -5.5618209e+117 -5.5703735e+117 -5.5645059e+117 -5.5730286e+117 -5.5354061e+117 -5.5438926e+117 -5.5524924e+117 -5.5614928e+117 -5.5388438e+117 -5.5475617e+117 -5.5453966e+117 -5.5367793e+117 -5.5654275e+117 -5.5562675e+117 -5.5540682e+117 -5.5630578e+117 -5.5744794e+117 -5.572195e+117 -5.5816139e+117 -5.5839741e+117 -5.5936732e+117 -5.6036915e+117 -5.5912841e+117 -5.6011686e+117 -5.5846774e+117 -5.5936954e+117 -5.5967545e+117 -5.587653e+117 -5.6124517e+117 -5.6061042e+117 -5.6029901e+117 -5.615623e+117 -5.59094e+117 -5.5943997e+117 -5.6001004e+117 -5.6036059e+117 -5.6190273e+117 -5.6130222e+117 -5.6225598e+117 -5.6094749e+117 -5.4411021e+117 -5.4338103e+117 -5.4400735e+117 -5.4472026e+117 -5.4281727e+117 -5.4446513e+117 -5.4563975e+117 -5.4487025e+117 -5.4541668e+117 -5.4614908e+117 -5.4697851e+117 -5.4669659e+117 -5.4803181e+117 -5.4749921e+117 -5.4768247e+117 -5.4838535e+117 -5.4899277e+117 -5.4833165e+117 -5.4923022e+117 -5.4927298e+117 -5.4987715e+117 -5.5084255e+117 -5.5010191e+117 -5.5060612e+117 -5.5136134e+117 -5.521523e+117 -5.525687e+117 -5.517065e+117 -5.5296425e+117 -5.5180332e+117 -5.5268118e+117 -5.5007009e+117 -5.5092967e+117 -5.4330308e+117 -5.449606e+117 -5.484666e+117 -5.4872885e+117 -5.4955781e+117 -5.4931417e+117 -5.4684961e+117 -5.4712476e+117 -5.4792743e+117 -5.4764995e+117 -5.4122634e+117 -5.3969108e+117 -5.4122786e+117 -5.4054539e+117 -5.4127498e+117 -5.4193939e+117 -5.4260865e+117 -5.419304e+117 -5.4264258e+117 -5.433101e+117 -5.4020904e+117 -5.417143e+117 -5.5102069e+117 -5.5123286e+117 -5.5037145e+117 -5.5014754e+117 -5.5211334e+117 -5.5302125e+117 -5.5281025e+117 -5.5191217e+117 -5.3525417e+117 -5.3392766e+117 -5.3584831e+117 -5.352968e+117 -5.3601129e+117 -5.3678889e+117 -5.372856e+117 -5.3638605e+117 -5.3696238e+117 -5.3784897e+117 -5.384169e+117 -5.3759396e+117 -5.383052e+117 -5.3901971e+117 -5.366245e+117 -5.381299e+117 -5.3979071e+117 -5.3906782e+117 -5.3978644e+117 -5.4053228e+117 -5.3727782e+117 -5.3870542e+117 -5.3462287e+117 -5.3590972e+117 -5.3841221e+117 -5.3995841e+117 -5.3790132e+117 -5.3930149e+117 -5.370753e+117 -5.3571415e+117 -5.3528899e+117 -5.3655349e+117 -5.4283966e+117 -5.4128872e+117 -5.421975e+117 -5.4070392e+117 -5.462433e+117 -5.4451029e+117 -5.4381781e+117 -5.4550461e+117 -5.4963391e+117 -5.4886748e+117 -5.4828054e+117 -5.4904551e+117 -5.4983293e+117 -5.5047443e+117 -5.5125779e+117 -5.5065025e+117 -5.4782204e+117 -5.4860927e+117 -5.4741555e+117 -5.4821349e+117 -5.4900601e+117 -5.4938813e+117 -5.5021237e+117 -5.4982817e+117 -5.5145087e+117 -5.5203354e+117 -5.5283445e+117 -5.5227395e+117 -5.5311723e+117 -5.5366559e+117 -5.5452538e+117 -5.5398358e+117 -5.5359183e+117 -5.5235218e+117 -5.5271077e+117 -5.5324943e+117 -5.5101613e+117 -5.5185666e+117 -5.5148422e+117 -5.5063773e+117 -5.565648e+117 -5.570854e+117 -5.5800222e+117 -5.5748282e+117 -5.5535307e+117 -5.562109e+117 -5.5568334e+117 -5.5481957e+117 -5.5443578e+117 -5.5498013e+117 -5.5530804e+117 -5.5410898e+117 -5.5618856e+117 -5.571167e+117 -5.5678136e+117 -5.5585824e+117 -5.5934541e+117 -5.5985178e+117 -5.5890008e+117 -5.5838995e+117 -5.5802589e+117 -5.5898697e+117 -5.5864386e+117 -5.5769196e+117 -5.5961752e+117 -5.5996401e+117 -5.6098503e+117 -5.6062556e+117 -5.6082686e+117 -5.6185045e+117 -5.6135765e+117 -5.6032931e+117 -5.5329107e+117 -5.5401621e+117 -5.5431782e+117 -5.5360122e+117 -5.5390883e+117 -5.542213e+117 -5.5462072e+117 -5.5493191e+117 -5.5582825e+117 -5.5476814e+117 -5.5553837e+117 -5.550592e+117 -5.5567874e+117 -5.5645671e+117 -5.5536207e+117 -5.5613409e+117 -5.5290455e+117 -5.5212586e+117 -5.5118804e+117 -5.5180275e+117 -5.5258923e+117 -5.5150273e+117 -5.5274397e+117 -5.5210868e+117 -5.5180387e+117 -5.5242758e+117 -5.5321463e+117 -5.5352596e+117 -5.4938301e+117 -5.4884973e+117 -5.4914955e+117 -5.4968267e+117 -5.5024029e+117 -5.4993825e+117 -5.5051677e+117 -5.5082621e+117 -5.483008e+117 -5.4775571e+117 -5.4805551e+117 -5.4859726e+117 -5.4886622e+117 -5.4831977e+117 -5.4856454e+117 -5.4911859e+117 -5.4996162e+117 -5.494172e+117 -5.4967784e+117 -5.5023372e+117 -5.5081015e+117 -5.5052923e+117 -5.5111996e+117 -5.5141507e+117 -5.4973849e+117 -5.4915162e+117 -5.4933059e+117 -5.4992783e+117 -5.4896837e+117 -5.4876981e+117 -5.4933392e+117 -5.495434e+117 -5.504794e+117 -5.4990952e+117 -5.5013401e+117 -5.507146e+117 -5.5053275e+117 -5.5033338e+117 -5.5092535e+117 -5.5113483e+117 -5.5131303e+117 -5.5106932e+117 -5.5238581e+117 -5.5302672e+117 -5.5168245e+117 -5.5265454e+117 -5.5193783e+117 -5.5331111e+117 -5.5382429e+117 -5.5411088e+117 -5.5289108e+117 -5.535524e+117 -5.5437199e+117 -5.5462094e+117 -5.5379848e+117 -5.5312156e+117 -5.5217382e+117 -5.5153824e+117 -5.5175585e+117 -5.523986e+117 -5.4743255e+117 -5.4689485e+117 -5.4702142e+117 -5.4756995e+117 -5.4675196e+117 -5.4659452e+117 -5.4711649e+117 -5.4727897e+117 -5.4820247e+117 -5.4765435e+117 -5.47832e+117 -5.4838977e+117 -5.4814176e+117 -5.4798996e+117 -5.4856105e+117 -5.4872554e+117 -5.4670662e+117 -5.4619723e+117 -5.4642568e+117 -5.4694039e+117 -5.4593212e+117 -5.4563323e+117 -5.4614994e+117 -5.4644053e+117 -5.4720792e+117 -5.4667617e+117 -5.46974e+117 -5.4750594e+117 -5.4746776e+117 -5.4723204e+117 -5.4776749e+117 -5.4800551e+117 -5.5555564e+117 -5.5452584e+117 -5.5524948e+117 -5.5482056e+117 -5.5600578e+117 -5.5631727e+117 -5.5678876e+117 -5.5710693e+117 -5.561076e+117 -5.5509395e+117 -5.5584091e+117 -5.5534958e+117 -5.5740708e+117 -5.5661187e+117 -5.5688337e+117 -5.5768349e+117 -5.4983137e+117 -5.504546e+117 -5.5126235e+117 -5.5160356e+117 -5.5082137e+117 -5.5019707e+117 -5.5053895e+117 -5.5114967e+117 -5.5193663e+117 -5.5149183e+117 -5.5087518e+117 -5.5226978e+117 -5.4853332e+117 -5.481574e+117 -5.4870363e+117 -5.4906988e+117 -5.4986207e+117 -5.4927135e+117 -5.4962875e+117 -5.5020837e+117 -5.4794667e+117 -5.4738684e+117 -5.4778071e+117 -5.4833149e+117 -5.4889969e+117 -5.4852892e+117 -5.4913557e+117 -5.4950145e+117 -5.4743452e+117 -5.4705421e+117 -5.4759907e+117 -5.4797866e+117 -5.4666077e+117 -5.4624641e+117 -5.4681644e+117 -5.4721451e+117 -5.4859456e+117 -5.4929574e+117 -5.5020851e+117 -5.4952181e+117 -5.5039539e+117 -5.4884842e+117 -5.4979125e+117 -5.4915129e+117 -5.506416e+117 -5.5011663e+117 -5.5093522e+117 -5.4948286e+117 -5.4699907e+117 -5.4660053e+117 -5.4719608e+117 -5.4757106e+117 -5.4843801e+117 -5.4780755e+117 -5.4816833e+117 -5.4878471e+117 -5.4787163e+117 -5.4652855e+117 -5.4720577e+117 -5.4587007e+117 -5.4622736e+117 -5.4684677e+117 -5.4747762e+117 -5.4812203e+117 -5.4493287e+117 -5.4452444e+117 -5.4519612e+117 -5.4557496e+117 -5.4598863e+117 -5.4537487e+117 -5.4583315e+117 -5.4641933e+117 -5.5188564e+117 -5.5094892e+117 -5.516783e+117 -5.5114222e+117 -5.524459e+117 -5.5323591e+117 -5.5344549e+117 -5.5265382e+117 -5.5240445e+117 -5.5138084e+117 -5.5212891e+117 -5.5166061e+117 -5.5290162e+117 -5.5369652e+117 -5.5317329e+117 -5.539673e+117 -5.519775e+117 -5.5271384e+117 -5.5303684e+117 -5.5230682e+117 -5.5297135e+117 -5.5263922e+117 -5.5336924e+117 -5.5370191e+117 -5.542671e+117 -5.5457658e+117 -5.534778e+117 -5.537937e+117 -5.5445575e+117 -5.5412434e+117 -5.5490304e+117 -5.5523025e+117 -5.4343361e+117 -5.428895e+117 -5.4350655e+117 -5.4402415e+117 -5.4238868e+117 -5.4187785e+117 -5.4256723e+117 -5.4302394e+117 -5.4385948e+117 -5.4321004e+117 -5.4365711e+117 -5.4428863e+117 -5.446228e+117 -5.4412594e+117 -5.4474847e+117 -5.452245e+117 -5.4566904e+117 -5.4509494e+117 -5.4556401e+117 -5.461037e+117 -5.4445338e+117 -5.4394582e+117 -5.4451543e+117 -5.4500018e+117 -5.4543594e+117 -5.449015e+117 -5.4531182e+117 -5.4583358e+117 -5.4650709e+117 -5.4597386e+117 -5.4635884e+117 -5.4688789e+117 -5.4148556e+117 -5.411038e+117 -5.415971e+117 -5.4197479e+117 -5.4055085e+117 -5.3996102e+117 -5.4037198e+117 -5.4094011e+117 -5.4125851e+117 -5.4080074e+117 -5.4137298e+117 -5.4181979e+117 -5.4236342e+117 -5.4188798e+117 -5.423258e+117 -5.4278385e+117 -5.3908194e+117 -5.3864692e+117 -5.3935553e+117 -5.3977755e+117 -5.3794527e+117 -5.3718599e+117 -5.3640663e+117 -5.3760646e+117 -5.3840856e+117 -5.3861131e+117 -5.3808613e+117 -5.3888496e+117 -5.3937237e+117 -5.4020645e+117 -5.395302e+117 -5.4001267e+117 -5.4067537e+117 -5.4117988e+117 -5.4074845e+117 -5.4045409e+117 -5.4001194e+117 -5.4109782e+117 -5.4174096e+117 -5.3975518e+117 -5.3916265e+117 -5.3989727e+117 -5.4045991e+117 -5.4107414e+117 -5.4052725e+117 -5.4118206e+117 -5.4170949e+117 -5.4226771e+117 -5.416598e+117 -5.4226891e+117 -5.4284431e+117 -5.4329437e+117 -5.4279813e+117 -5.4324733e+117 -5.4373114e+117 -5.4230449e+117 -5.4175105e+117 -5.4227011e+117 -5.428116e+117 -5.4337737e+117 -5.4281675e+117 -5.4335135e+117 -5.4389718e+117 -5.4424565e+117 -5.4381831e+117 -5.4435538e+117 -5.4477129e+117 -5.4333104e+117 -5.43193e+117 -5.4356498e+117 -5.4370808e+117 -5.4304208e+117 -5.4290894e+117 -5.4328182e+117 -5.4341524e+117 -5.4411021e+117 -5.4368406e+117 -5.4382043e+117 -5.4424769e+117 -5.4438831e+117 -5.4396494e+117 -5.4410569e+117 -5.4452241e+117 -5.428023e+117 -5.4260507e+117 -5.4296015e+117 -5.4316349e+117 -5.4232583e+117 -5.4197527e+117 -5.4234822e+117 -5.4268475e+117 -5.4315567e+117 -5.427388e+117 -5.4307398e+117 -5.4348616e+117 -5.4355325e+117 -5.4334685e+117 -5.4376005e+117 -5.4396853e+117 -5.4511171e+117 -5.4459941e+117 -5.4491629e+117 -5.4541884e+117 -5.4393969e+117 -5.4361164e+117 -5.4409226e+117 -5.4441387e+117 -5.4467899e+117 -5.4420844e+117 -5.444208e+117 -5.4489215e+117 -5.4539195e+117 -5.4517485e+117 -5.4568051e+117 -5.4590117e+117 -5.4606975e+117 -5.4555694e+117 -5.4570467e+117 -5.4622106e+117 -5.4471155e+117 -5.4457021e+117 -5.4505083e+117 -5.4519404e+117 -5.4497518e+117 -5.4484518e+117 -5.4532544e+117 -5.4544836e+117 -5.4595509e+117 -5.4583479e+117 -5.4635623e+117 -5.4647633e+117 -5.5977633e+117 -5.6070337e+117 -5.6101867e+117 -5.6009175e+117 -5.6075264e+117 -5.6040867e+117 -5.6133257e+117 -5.6168124e+117 -5.6291263e+117 -5.6164632e+117 -5.6259722e+117 -5.6195848e+117 -5.626333e+117 -5.6360221e+117 -5.6227933e+117 -5.6324449e+117 -5.5876334e+117 -5.5760114e+117 -5.5843658e+117 -5.5792427e+117 -5.5929911e+117 -5.6018395e+117 -5.6051303e+117 -5.5962709e+117 -5.5851105e+117 -5.593613e+117 -5.5822789e+117 -5.5907119e+117 -5.599379e+117 -5.6082635e+117 -5.6023309e+117 -5.6112424e+117 -5.6236411e+117 -5.6109929e+117 -5.6203151e+117 -5.614277e+117 -5.6298895e+117 -5.6396036e+117 -5.6429668e+117 -5.6332222e+117 -5.6204311e+117 -5.6298431e+117 -5.6174048e+117 -5.6267896e+117 -5.6363783e+117 -5.6461443e+117 -5.639462e+117 -5.6492205e+117 -5.5633656e+117 -5.5715434e+117 -5.5745369e+117 -5.5662891e+117 -5.5693725e+117 -5.5776663e+117 -5.5726608e+117 -5.5809917e+117 -5.5918326e+117 -5.5800125e+117 -5.5887138e+117 -5.5830568e+117 -5.5895873e+117 -5.5862135e+117 -5.5950229e+117 -5.5984193e+117 -5.48267e+117 -5.354981e+117 -5.2233569e+117 -4.3826475e+117 -4.5758179e+117 -4.5741148e+117 -4.7031891e+117 -4.7031864e+117 -4.5755873e+117 -4.7019046e+117 -4.6994623e+117 -4.5703068e+117 -4.8313475e+117 -4.8299705e+117 -4.8307679e+117 -4.95965e+117 -4.9590569e+117 -4.9605216e+117 -4.8265869e+117 -4.8289947e+117 -4.9573428e+117 -4.9549058e+117 -5.0914338e+117 -5.0886297e+117 -5.0871639e+117 -5.0877239e+117 -5.2156357e+117 -5.2193042e+117 -5.2155448e+117 -5.086956e+117 -5.2173817e+117 -5.2196735e+117 -5.0866848e+117 -5.3503795e+117 -5.3445011e+117 -5.3405922e+117 -5.3431285e+117 -5.4729693e+117 -5.4680438e+117 -5.4782994e+117 -5.4707197e+117 -5.4755559e+117 -5.3475675e+117 -5.3519465e+117 -5.4807843e+117 -4.1304581e+117 -4.3174238e+117 -4.3115772e+117 -4.4365039e+117 -4.4432589e+117 -4.5696548e+117 -4.695903e+117 -4.6912586e+117 -4.5632048e+117 -4.8245345e+117 -4.9544773e+117 -4.9542112e+117 -4.8223497e+117 -5.0876339e+117 -5.222038e+117 -5.2254249e+117 -5.0888145e+117 -3.8897215e+117 -4.0654995e+117 -4.0599015e+117 -4.1790948e+117 -4.1859747e+117 -4.308447e+117 -4.4318058e+117 -4.4254895e+117 -4.3014186e+117 -4.5588368e+117 -4.6834908e+117 -4.6875531e+117 -4.5539353e+117 -4.8193596e+117 -4.8165584e+117 -4.9532533e+117 -4.9535575e+117 -5.3863821e+117 -5.3431635e+117 -5.3415725e+117 -5.3609476e+117 -5.3538102e+117 -5.3692871e+117 -5.3782808e+117 -5.3966325e+117 -5.4002437e+117 -5.3841839e+117 -5.4254021e+117 -5.4658013e+117 -5.4324034e+117 -5.4144427e+117 -5.4324564e+117 -5.416065e+117 -5.450559e+117 -5.4699232e+117 -5.4495759e+117 -5.4674908e+117 -5.5589429e+117 -5.5422612e+117 -5.5257091e+117 -5.5091096e+117 -5.5557774e+117 -5.5473519e+117 -5.5417737e+117 -5.5502294e+117 -5.539067e+117 -5.531304e+117 -5.5256888e+117 -5.5334885e+117 -5.5233868e+117 -5.5154272e+117 -5.5111993e+117 -5.5180754e+117 -5.4988398e+117 -5.5077986e+117 -5.5009567e+117 -5.4938818e+117 -5.6326048e+117 -5.6128723e+117 -5.5941028e+117 -5.5759162e+117 -5.5759407e+117 -5.581717e+117 -5.5910984e+117 -5.5851388e+117 -5.5641835e+117 -5.5586079e+117 -5.567135e+117 -5.5726881e+117 -5.6003689e+117 -5.609821e+117 -5.6036935e+117 -5.5942417e+117 -5.6195813e+117 -5.629498e+117 -5.6133506e+117 -5.623164e+117 -4.97925e+117 -5.0493604e+117 -5.0608514e+117 -4.9811214e+117 -5.0698542e+117 -4.985661e+117 -5.0773374e+117 -4.9934619e+117 -5.0876718e+117 -5.1396723e+117 -5.1071907e+117 -5.1724465e+117 -5.0061157e+117 -4.9988017e+117 -3.6588e+117 -3.8235075e+117 -3.8285503e+117 -3.9375573e+117 -3.9431887e+117 -4.0514618e+117 -4.0575964e+117 -4.1739149e+117 -4.1671924e+117 -4.2949606e+117 -4.2878488e+117 -4.4119665e+117 -4.4189214e+117 -4.5474052e+117 -4.5416474e+117 -4.6754928e+117 -4.6787553e+117 -4.9906945e+117 -4.9953442e+117 -5.3109457e+117 -5.3055745e+117 -5.3172264e+117 -5.3256179e+117 -5.2810124e+117 -5.2952672e+117 -5.3312524e+117 -5.3162462e+117 -5.3217323e+117 -5.336486e+117 -5.3335455e+117 -5.327769e+117 -5.3420575e+117 -5.3473101e+117 -5.3095223e+117 -5.3242395e+117 -5.3526407e+117 -5.3401346e+117 -5.3467605e+117 -5.3566444e+117 -5.3165105e+117 -5.3310212e+117 -5.2853847e+117 -5.301137e+117 -5.2457859e+117 -5.2217876e+117 -5.2387037e+117 -5.2641639e+117 -5.1878882e+117 -5.2185171e+117 -5.2796194e+117 -5.2905265e+117 -5.2660702e+117 -5.2535727e+117 -5.2442264e+117 -5.2659542e+117 -5.2630599e+117 -5.2427253e+117 -5.2763805e+117 -5.2847212e+117 -5.3063697e+117 -5.3012682e+117 -5.3079591e+117 -5.2917505e+117 -5.299165e+117 -5.3141813e+117 -5.1844927e+117 -5.2182474e+117 -5.1542965e+117 -5.1889453e+117 -5.1745814e+117 -5.2096432e+117 -5.2480553e+117 -5.2177686e+117 -5.2371538e+117 -5.2617043e+117 -5.3001599e+117 -5.2765221e+117 -5.2842698e+117 -5.303271e+117 -5.3209883e+117 -5.3393216e+117 -5.3206624e+117 -5.3364206e+117 -5.1861517e+117 -5.1281448e+117 -5.2184751e+117 -5.1576923e+117 -5.2405335e+117 -5.2450622e+117 -5.272383e+117 -5.264898e+117 -5.2915142e+117 -5.2961747e+117 -5.319992e+117 -5.3343956e+117 -5.3139303e+117 -5.2961669e+117 -3.4328671e+117 -3.7122942e+117 -3.5995009e+117 -3.5953248e+117 -3.7074656e+117 -3.8174161e+117 -3.8227871e+117 -3.9282122e+117 -3.9329588e+117 -4.0412449e+117 -4.0457351e+117 -4.1565348e+117 -4.1613262e+117 -4.2814974e+117 -4.4061844e+117 -4.4024988e+117 -4.2768074e+117 -5.0795568e+117 -5.0831578e+117 -5.1054394e+117 -5.1013034e+117 -5.0855492e+117 -5.0887233e+117 -5.111083e+117 -5.1080497e+117 -5.0991139e+117 -5.0955012e+117 -5.1020472e+117 -5.106318e+117 -5.1030766e+117 -5.0956667e+117 -5.0949836e+117 -5.1011857e+117 -5.1070418e+117 -5.1025534e+117 -5.1165905e+117 -5.1180476e+117 -5.1100918e+117 -5.104275e+117 -5.1171285e+117 -5.1221885e+117 -5.097251e+117 -5.0996955e+117 -5.104543e+117 -5.107081e+117 -5.0983467e+117 -5.1034242e+117 -5.1107105e+117 -5.1056254e+117 -5.1114072e+117 -5.1090046e+117 -5.1233633e+117 -5.1204897e+117 -5.1102835e+117 -5.1153556e+117 -5.1219099e+117 -5.1273448e+117 -5.2395533e+117 -5.1926946e+117 -5.2353498e+117 -5.190465e+117 -5.1901547e+117 -5.2411773e+117 -5.2436272e+117 -5.192637e+117 -5.1926178e+117 -5.1910452e+117 -5.2432764e+117 -5.2430687e+117 -5.2457025e+117 -5.1943062e+117 -5.2005042e+117 -5.2501102e+117 -5.2019299e+117 -5.2515677e+117 -5.2492368e+117 -5.1973793e+117 -5.2518204e+117 -5.1967194e+117 -5.2494784e+117 -5.2000111e+117 -5.2542405e+117 -5.2015794e+117 -5.2537295e+117 -5.2005555e+117 -5.2032623e+117 -5.2571809e+117 -5.2613601e+117 -5.2097301e+117 -5.2611311e+117 -5.3843733e+117 -5.380246e+117 -5.3840887e+117 -5.38844e+117 -5.3757046e+117 -5.3703463e+117 -5.3738512e+117 -5.3793537e+117 -5.3806931e+117 -5.3771872e+117 -5.3828678e+117 -5.386437e+117 -5.391489e+117 -5.3877639e+117 -5.3923434e+117 -5.3962158e+117 -5.363865e+117 -5.3560679e+117 -5.3598219e+117 -5.3674091e+117 -5.3358294e+117 -5.3223745e+117 -5.3411007e+117 -5.3303316e+117 -5.3515374e+117 -5.3473678e+117 -5.3500245e+117 -5.34505e+117 -5.3550231e+117 -5.358816e+117 -5.3707315e+117 -5.363098e+117 -5.366804e+117 -5.3742414e+117 -5.3679947e+117 -5.3613026e+117 -5.3635043e+117 -5.3708348e+117 -5.3748872e+117 -5.362662e+117 -5.3544602e+117 -5.3590158e+117 -5.3667267e+117 -5.3742794e+117 -5.3704485e+117 -5.3778341e+117 -5.3815541e+117 -5.3853332e+117 -5.3781053e+117 -5.3821437e+117 -5.3893205e+117 -5.3956765e+117 -5.3918318e+117 -5.3978495e+117 -5.4016467e+117 -5.390129e+117 -5.3842532e+117 -5.3880355e+117 -5.3939591e+117 -5.4001486e+117 -5.395274e+117 -5.3992227e+117 -5.4041122e+117 -5.4081123e+117 -5.4031893e+117 -5.4071185e+117 -5.4120451e+117 -5.3652765e+117 -5.3626767e+117 -5.3674349e+117 -5.3703312e+117 -5.3551918e+117 -5.3592793e+117 -5.3637005e+117 -5.3593688e+117 -5.3752117e+117 -5.3717763e+117 -5.3761338e+117 -5.3799432e+117 -5.3676973e+117 -5.3628772e+117 -5.3666954e+117 -5.3717953e+117 -5.3416361e+117 -5.3450531e+117 -5.3530877e+117 -5.3493723e+117 -5.3215035e+117 -5.3245322e+117 -5.3353306e+117 -5.3323594e+117 -5.3563652e+117 -5.3482365e+117 -5.352134e+117 -5.360121e+117 -5.3386026e+117 -5.3281665e+117 -5.315472e+117 -5.342855e+117 -5.3315518e+117 -5.3195875e+117 -5.328726e+117 -5.3153777e+117 -5.3188783e+117 -5.3020475e+117 -5.3285576e+117 -5.2904196e+117 -5.3049873e+117 -5.3206543e+117 -5.3034421e+117 -5.3066103e+117 -5.3050004e+117 -5.3262631e+117 -5.3276353e+117 -5.3395619e+117 -5.3449959e+117 -5.3357259e+117 -5.3377545e+117 -5.3329772e+117 -5.304436e+117 -5.3300209e+117 -5.3084413e+117 -5.3277903e+117 -5.3021955e+117 -5.3270752e+117 -5.3021424e+117 -5.3417965e+117 -5.3501922e+117 -5.3538482e+117 -5.343999e+117 -5.3461446e+117 -5.3568227e+117 -5.3591844e+117 -5.348827e+117 -5.3174412e+117 -5.3206247e+117 -5.3430071e+117 -5.3449861e+117 -5.3131816e+117 -5.3388808e+117 -5.3409888e+117 -5.3147741e+117 -5.3607819e+117 -5.3721031e+117 -5.3594263e+117 -5.3713253e+117 -5.3579598e+117 -5.3557101e+117 -5.368281e+117 -5.3698742e+117 -5.3091737e+117 -5.3113916e+117 -5.3351324e+117 -5.3370112e+117 -5.3345645e+117 -5.3096395e+117 -5.3341844e+117 -5.3087854e+117 -5.3500334e+117 -5.3611998e+117 -5.3628634e+117 -5.351271e+117 -5.353829e+117 -5.3665402e+117 -5.3520613e+117 -5.3647113e+117 -5.3718458e+117 -5.3781228e+117 -5.373851e+117 -5.3802238e+117 -5.3757495e+117 -5.3676634e+117 -5.3732897e+117 -5.3697105e+117 -5.3812169e+117 -5.3784521e+117 -5.3834597e+117 -5.3864854e+117 -5.3860058e+117 -5.3837686e+117 -5.3891752e+117 -5.391465e+117 -5.377112e+117 -5.3755521e+117 -5.3819825e+117 -5.3834669e+117 -5.389198e+117 -5.3877593e+117 -5.3932318e+117 -5.3945448e+117 -5.3908581e+117 -5.3901727e+117 -5.3952852e+117 -5.39603e+117 -5.3846471e+117 -5.3783953e+117 -5.3791057e+117 -5.3852883e+117 -5.3965066e+117 -5.3941449e+117 -5.39884e+117 -5.4012211e+117 -5.3924409e+117 -5.3880807e+117 -5.3913634e+117 -5.3959364e+117 -5.4005145e+117 -5.3964971e+117 -5.4001943e+117 -5.4043112e+117 -5.4073424e+117 -5.4031666e+117 -5.4055803e+117 -5.4097108e+117 -5.4159908e+117 -5.4122294e+117 -5.4159623e+117 -5.4195902e+117 -5.4083866e+117 -5.4044172e+117 -5.4082758e+117 -5.4121752e+117 -5.413607e+117 -5.4112898e+117 -5.4151434e+117 -5.417308e+117 -5.4224645e+117 -5.4188559e+117 -5.4209049e+117 -5.4244228e+117 -5.4254561e+117 -5.422011e+117 -5.4232983e+117 -5.4267238e+117 -5.4185697e+117 -5.4150476e+117 -5.4163595e+117 -5.4197985e+117 -5.4179559e+117 -5.41729e+117 -5.4209053e+117 -5.4218238e+117 -5.4282092e+117 -5.4245729e+117 -5.42567e+117 -5.4294573e+117 -5.4113509e+117 -5.4072856e+117 -5.4085014e+117 -5.4125905e+117 -5.3994923e+117 -5.3982405e+117 -5.40296e+117 -5.4041571e+117 -5.4008784e+117 -5.4001842e+117 -5.4048499e+117 -5.4054248e+117 -5.4134112e+117 -5.4092087e+117 -5.4097126e+117 -5.4139204e+117 -5.4657791e+117 -5.4605782e+117 -5.4620415e+117 -5.4671864e+117 -5.4555574e+117 -5.4508704e+117 -5.4524267e+117 -5.457058e+117 -5.4563546e+117 -5.4543304e+117 -5.4589051e+117 -5.4608881e+117 -5.4689957e+117 -5.4638388e+117 -5.4657849e+117 -5.4709211e+117 -5.4463724e+117 -5.4422087e+117 -5.4436977e+117 -5.4478998e+117 -5.4381906e+117 -5.4342992e+117 -5.4354789e+117 -5.4395225e+117 -5.4385076e+117 -5.4368007e+117 -5.4411077e+117 -5.443004e+117 -5.449822e+117 -5.4454601e+117 -5.4474275e+117 -5.4518267e+117 -5.4726616e+117 -5.4675299e+117 -5.469589e+117 -5.4746996e+117 -5.4626519e+117 -5.4581168e+117 -5.4601816e+117 -5.4646881e+117 -5.4769973e+117 -5.471864e+117 -5.4743318e+117 -5.4795468e+117 -5.453675e+117 -5.449359e+117 -5.4515489e+117 -5.4557479e+117 -5.5133112e+117 -5.5072037e+117 -5.5092772e+117 -5.5154356e+117 -5.4967359e+117 -5.4949283e+117 -5.501022e+117 -5.5029266e+117 -5.5050308e+117 -5.4987414e+117 -5.5008967e+117 -5.5073077e+117 -5.5138115e+117 -5.5114172e+117 -5.5177283e+117 -5.5202678e+117 -5.4887914e+117 -5.4828233e+117 -5.4844627e+117 -5.4905096e+117 -5.4727333e+117 -5.4712685e+117 -5.476914e+117 -5.4784564e+117 -5.4764529e+117 -5.4745262e+117 -5.4802706e+117 -5.4821892e+117 -5.4882583e+117 -5.4862963e+117 -5.4924214e+117 -5.4944606e+117 -5.4851902e+117 -5.4825671e+117 -5.4884493e+117 -5.4910856e+117 -5.48029e+117 -5.4781986e+117 -5.4840075e+117 -5.48613e+117 -5.4964971e+117 -5.4901773e+117 -5.4923661e+117 -5.4987653e+117 -5.5011962e+117 -5.4947324e+117 -5.4973959e+117 -5.5038825e+117 -5.5227985e+117 -5.5162618e+117 -5.518848e+117 -5.5254262e+117 -5.5054208e+117 -5.5030461e+117 -5.5096107e+117 -5.5120941e+117 -5.5105932e+117 -5.5078988e+117 -5.5146279e+117 -5.5173045e+117 -5.5240926e+117 -5.5214268e+117 -5.5280602e+117 -5.5307173e+117 -5.4060987e+117 -5.4057604e+117 -5.401292e+117 -5.4015169e+117 -5.4059898e+117 -5.4141133e+117 -5.4098711e+117 -5.4101318e+117 -5.4142862e+117 -5.4144194e+117 -5.4102089e+117 -5.4112163e+117 -5.4154655e+117 -5.4303248e+117 -5.4263797e+117 -5.4270368e+117 -5.4312525e+117 -5.4223462e+117 -5.4182253e+117 -5.4184728e+117 -5.4227427e+117 -5.4199231e+117 -5.4187321e+117 -5.4232096e+117 -5.4245029e+117 -5.4323145e+117 -5.4277812e+117 -5.4291946e+117 -5.4338578e+117 -5.3427472e+117 -5.3201369e+117 -5.3161856e+117 -5.3447909e+117 -5.3605809e+117 -5.3720466e+117 -5.3713308e+117 -5.3595731e+117 -5.3853068e+117 -5.3790347e+117 -5.3785452e+117 -5.3850405e+117 -5.3909592e+117 -5.3909851e+117 -5.3963908e+117 -5.3965155e+117 -5.6352001e+117 -5.6232064e+117 -5.632654e+117 -5.6257717e+117 -5.6422854e+117 -5.6520204e+117 -5.6545268e+117 -5.6447836e+117 -5.6311783e+117 -5.6405173e+117 -5.6283871e+117 -5.6377294e+117 -5.6473242e+117 -5.6571456e+117 -5.6501401e+117 -5.6600025e+117 -5.5989171e+117 -5.607413e+117 -5.6102136e+117 -5.6018013e+117 -5.6073582e+117 -5.6046167e+117 -5.6129965e+117 -5.6157866e+117 -5.6276016e+117 -5.6160251e+117 -5.6248399e+117 -5.6187952e+117 -5.6244605e+117 -5.6333908e+117 -5.6216087e+117 -5.6304893e+117 -5.598894e+117 -5.5877772e+117 -5.5963385e+117 -5.5903141e+117 -5.6050854e+117 -5.6139914e+117 -5.6165432e+117 -5.6076316e+117 -5.6044941e+117 -5.5929935e+117 -5.6015343e+117 -5.5959218e+117 -5.6103192e+117 -5.6192358e+117 -5.6131815e+117 -5.6220413e+117 -5.6339799e+117 -5.6433634e+117 -5.6462296e+117 -5.6367796e+117 -5.662981e+117 -5.6530693e+117 -5.6559868e+117 -5.6659755e+117 -5.6396967e+117 -5.6426604e+117 -5.6491968e+117 -5.652214e+117 -5.6690588e+117 -5.6620897e+117 -5.6722174e+117 -5.658992e+117 -5.5777246e+117 -5.5854711e+117 -5.5877677e+117 -5.5801185e+117 -5.5823782e+117 -5.5847132e+117 -5.5899624e+117 -5.5922712e+117 -5.6036361e+117 -5.5934108e+117 -5.6014885e+117 -5.59558e+117 -5.6001336e+117 -5.608299e+117 -5.5977499e+117 -5.6058495e+117 -5.5725976e+117 -5.5639761e+117 -5.5543012e+117 -5.5614785e+117 -5.5701654e+117 -5.5567515e+117 -5.5663606e+117 -5.5749504e+117 -5.5773452e+117 -5.5396806e+117 -5.5465713e+117 -5.5490295e+117 -5.6110052e+117 -5.6098011e+117 -5.6182943e+117 -5.6205722e+117 -5.6119871e+117 -5.6142541e+117 -5.6229148e+117 -5.6167769e+117 -5.6254921e+117 -5.6385463e+117 -5.6270624e+117 -5.636072e+117 -5.6294279e+117 -5.6344739e+117 -5.6437139e+117 -5.6318335e+117 -5.6410276e+117 -5.665031e+117 -5.6752421e+117 -5.6779831e+117 -5.6677447e+117 -5.6454326e+117 -5.6550606e+117 -5.6577079e+117 -5.6479884e+117 -5.6505294e+117 -5.6603051e+117 -5.6532682e+117 -5.6630732e+117 -5.6731565e+117 -5.6703444e+117 -5.6805829e+117 -5.6834563e+117 -5.619512e+117 -5.6282547e+117 -5.6372661e+117 -5.6465303e+117 -5.6561049e+117 -5.6659231e+117 -5.6863563e+117 -5.6760252e+117 -5.5661387e+117 -5.5559985e+117 -5.5635915e+117 -5.5585676e+117 -5.5714089e+117 -5.5794404e+117 -5.5819496e+117 -5.5739067e+117 -5.5640265e+117 -5.5715746e+117 -5.561216e+117 -5.5687715e+117 -5.5765714e+117 -5.5846429e+117 -5.5794232e+117 -5.5875342e+117 -5.5622926e+117 -5.5537998e+117 -5.5437928e+117 -5.5508529e+117 -5.5594291e+117 -5.5466523e+117 -5.5591749e+117 -5.5519884e+117 -5.549358e+117 -5.5564572e+117 -5.5650424e+117 -5.5677111e+117 -5.5416666e+117 -5.534789e+117 -5.5374204e+117 -5.5443071e+117 -5.5320648e+117 -5.5294475e+117 -5.5362344e+117 -5.5389245e+117 -5.5333779e+117 -5.540235e+117 -5.5486377e+117 -5.5511929e+117 -5.5428086e+117 -5.5358295e+117 -5.5383767e+117 -5.5453328e+117 -5.5538311e+117 -5.5481779e+117 -5.5411279e+117 -5.5566259e+117 -5.5308918e+117 -5.5242093e+117 -5.5268603e+117 -5.5336148e+117 -5.5217603e+117 -5.5195885e+117 -5.5260684e+117 -5.5283561e+117 -5.5668836e+117 -5.5745327e+117 -5.5774538e+117 -5.5697469e+117 -5.5725416e+117 -5.5752362e+117 -5.5802897e+117 -5.5830181e+117 -5.5905561e+117 -5.5934902e+117 -5.5824341e+117 -5.5853576e+117 -5.5909657e+117 -5.588224e+117 -5.5963501e+117 -5.5990744e+117 -5.7695885e+117 -5.7840532e+117 -5.7875546e+117 -5.7731318e+117 -5.7801747e+117 -5.7765915e+117 -5.7910477e+117 -5.7947497e+117 -5.8195734e+117 -5.7997163e+117 -5.816036e+117 -5.8032266e+117 -5.8106419e+117 -5.8272217e+117 -5.8068344e+117 -5.8233466e+117 -5.7737319e+117 -5.7563528e+117 -5.7705341e+117 -5.7594383e+117 -5.7859804e+117 -5.8020167e+117 -5.8053431e+117 -5.7892331e+117 -5.7804748e+117 -5.7625614e+117 -5.776896e+117 -5.7660147e+117 -5.7925737e+117 -5.8088263e+117 -5.7961431e+117 -5.8124297e+117 -5.8425592e+117 -5.8197278e+117 -5.8389964e+117 -5.823177e+117 -5.8596393e+117 -5.8632753e+117 -5.830395e+117 -5.8499384e+117 -5.8267204e+117 -5.8461885e+117 -5.8669515e+117 -5.870816e+117 -5.8340739e+117 -5.8536954e+117 -5.857427e+117 -5.8377074e+117 -5.8784844e+117 -5.8746883e+117 -5.8415397e+117 -5.8454862e+117 -5.8613339e+117 -5.8653341e+117 -5.8864644e+117 -5.8824124e+117 -5.8491677e+117 -5.86909e+117 -5.8723488e+117 -5.8523861e+117 -5.8583725e+117 -5.8553578e+117 -5.875264e+117 -5.8783257e+117 -5.8902571e+117 -5.8934548e+117 -5.8995993e+117 -5.8964483e+117 -5.7952267e+117 -5.8100039e+117 -5.8127182e+117 -5.7979805e+117 -5.8031192e+117 -5.8005254e+117 -5.815243e+117 -5.8178796e+117 -5.8454192e+117 -5.8260419e+117 -5.8427691e+117 -5.8287102e+117 -5.8340077e+117 -5.8508985e+117 -5.8313104e+117 -5.8481537e+117 -5.8013297e+117 -5.7835511e+117 -5.7982343e+117 -5.7866006e+117 -5.8142146e+117 -5.8308245e+117 -5.8339393e+117 -5.8173001e+117 -5.8071461e+117 -5.7894871e+117 -5.8041677e+117 -5.792359e+117 -5.8202401e+117 -5.8369651e+117 -5.8232033e+117 -5.8399392e+117 -5.8612241e+117 -5.8812719e+117 -5.884104e+117 -5.8639491e+117 -5.9056453e+117 -5.9027153e+117 -5.8667303e+117 -5.8695277e+117 -5.8869618e+117 -5.8898074e+117 -5.9114767e+117 -5.9085556e+117 -5.7459976e+117 -5.7301973e+117 -5.7429268e+117 -5.7332332e+117 -5.7558899e+117 -5.7692481e+117 -5.7722425e+117 -5.7589025e+117 -5.7518489e+117 -5.736166e+117 -5.748908e+117 -5.7391602e+117 -5.7618454e+117 -5.7751978e+117 -5.7646714e+117 -5.7779784e+117 -5.6856516e+117 -5.6961989e+117 -5.6989562e+117 -5.6883745e+117 -5.6910765e+117 -5.7017883e+117 -5.704803e+117 -5.6940297e+117 -5.7070068e+117 -5.7181398e+117 -5.7210617e+117 -5.7098371e+117 -5.7127242e+117 -5.7239931e+117 -5.727015e+117 -5.7157688e+117 -5.6969952e+117 -5.7078212e+117 -5.7105463e+117 -5.6997717e+117 -5.7187533e+117 -5.7298884e+117 -5.7324374e+117 -5.7213554e+117 -5.7418755e+117 -5.7544418e+117 -5.7570564e+117 -5.7444437e+117 -5.749544e+117 -5.7469788e+117 -5.7596282e+117 -5.7621978e+117 -5.7808051e+117 -5.7835274e+117 -5.7673591e+117 -5.7700226e+117 -5.7751877e+117 -5.7726032e+117 -5.7861188e+117 -5.7886946e+117 -5.7201303e+117 -5.7049388e+117 -5.7171717e+117 -5.7078601e+117 -5.7296508e+117 -5.742531e+117 -5.7454971e+117 -5.7325806e+117 -5.7138016e+117 -5.7261373e+117 -5.7106824e+117 -5.7229549e+117 -5.7355217e+117 -5.7485828e+117 -5.7387986e+117 -5.7519402e+117 -5.6731742e+117 -5.6835905e+117 -5.6867466e+117 -5.6762525e+117 -5.6793971e+117 -5.6899406e+117 -5.6931603e+117 -5.6825969e+117 -5.7084941e+117 -5.694257e+117 -5.7052254e+117 -5.6974701e+117 -5.7150555e+117 -5.7007057e+117 -5.7117803e+117 -5.703951e+117 -5.67483e+117 -5.6620046e+117 -5.6721702e+117 -5.6645747e+117 -5.682597e+117 -5.6933165e+117 -5.6961558e+117 -5.6853347e+117 -5.6805204e+117 -5.6672417e+117 -5.6775647e+117 -5.6701535e+117 -5.6881152e+117 -5.6989835e+117 -5.6911274e+117 -5.7020381e+117 -5.7170802e+117 -5.7294843e+117 -5.7329033e+117 -5.7204002e+117 -5.723736e+117 -5.7362883e+117 -5.7270569e+117 -5.7396762e+117 -5.7554543e+117 -5.7589607e+117 -5.7422477e+117 -5.7456997e+117 -5.7525851e+117 -5.7491183e+117 -5.7624347e+117 -5.7659381e+117 -3.2088716e+117 -3.3729446e+117 -3.3759451e+117 -3.486799e+117 -3.4835758e+117 -3.5918017e+117 -3.5950905e+117 -3.7038702e+117 -3.7005394e+117 -3.8138294e+117 -3.8101322e+117 -3.9202827e+117 -3.9242717e+117 -4.0369647e+117 -4.1488059e+117 -4.1523026e+117 -4.0329406e+117 -3.6990354e+117 -3.590976e+117 -3.5867899e+117 -3.695335e+117 -3.8076103e+117 -3.8047617e+117 -3.9148821e+117 -3.9168306e+117 -5.7152808e+117 -5.7107733e+117 -5.7106139e+117 -5.7136806e+117 -5.5924043e+117 -5.592211e+117 -5.5973629e+117 -5.5946843e+117 -5.8160917e+117 -5.8152339e+117 -5.8171493e+117 -5.908924e+117 -5.9043246e+117 -5.9069099e+117 -6.1734056e+117 -6.144967e+117 -6.1045852e+117 -6.0391784e+117 -6.0938851e+117 -6.158666e+117 -6.0385547e+117 -6.1071867e+117 -6.163683e+117 -5.9785744e+117 -5.9782954e+117 -6.2347897e+117 -6.1831943e+117 -6.2187689e+117 -6.191639e+117 -6.2224816e+117 -6.2370393e+117 -6.2378129e+117 -6.2367213e+117 -6.2296183e+117 -6.2100336e+117 -6.2272054e+117 -6.2275882e+117 -6.23229e+117 -6.2398862e+117 -6.2287391e+117 -6.1716045e+117 -6.1776296e+117 -6.1181078e+117 -6.1471375e+117 -6.1477475e+117 -6.1718106e+117 -6.2341656e+117 -6.2377664e+117 -6.2233674e+117 -6.2081655e+117 -6.1930216e+117 -6.1876851e+117 -6.1764295e+117 -6.1448836e+117 -6.1495099e+117 -6.1139443e+117 -6.1325456e+117 -6.2060365e+117 -6.2018764e+117 -6.20217e+117 -6.1928936e+117 -6.1069063e+117 -6.0524828e+117 -5.7913295e+117 -6.1358571e+117 -6.0607319e+117 -5.5614486e+117 -6.0997361e+117 -6.1232052e+117 -6.2689557e+117 -6.1220034e+117 -5.6318697e+117 -6.1079053e+117 -6.0955741e+117 -6.0963038e+117 -6.1024925e+117 -6.07979e+117 -6.0965922e+117 -6.2567319e+117 -6.155998e+117 -4.9787101e+117 -5.8865268e+117 -5.5561852e+117 -4.6233052e+117 -2.932392e+117 -6.4829781e+117 -6.172714e+117 -5.9941101e+117 -6.14165e+117 -6.103613e+117 -6.0918263e+117 -5.9728469e+117 -5.9621997e+117 -6.0520225e+117 -4.6198741e+117 -6.3890991e+117 -6.154498e+117 -6.1441371e+117 -6.1220292e+117 -6.1297123e+117 -6.1138098e+117 -6.1150819e+117 -6.1342822e+117 -5.8634511e+117 -5.8847954e+117 -5.7978171e+117 -5.7615337e+117 -5.8792804e+117 -5.7300783e+117 -5.8611869e+117 -6.1589373e+117 -6.1255743e+117 -6.1177392e+117 -6.1483234e+117 -6.2019482e+117 -6.1789291e+117 -6.1610957e+117 -6.1672044e+117 -6.2087169e+117 -6.1836424e+117 -5.5162979e+117 -5.709279e+117 -5.6947735e+117 -6.1137941e+117 -6.1314016e+117 -6.1487996e+117 -7.2544557e+117 -6.5247129e+117 -6.0488654e+117 -7.7541743e+117 -6.5939505e+117 -7.3314047e+117 -4.8944291e+117 -5.6081262e+117 -7.2573464e+117 -6.5620174e+117 -6.5505923e+117 -8.3657911e+117 -6.0710199e+117 -5.510164e+117 -5.7502779e+117 -5.9725804e+117 -5.98411e+117 -6.0646376e+117 -5.9904718e+117 -6.0097112e+117 -5.9945318e+117 -5.9963416e+117 -6.0058958e+117 -5.9258436e+117 -6.1209417e+117 -6.958957e+117 -6.0381844e+117 -6.0196202e+117 -6.04715e+117 -6.1785378e+117 -5.8849234e+117 -5.8419133e+117 -6.2494886e+117 -6.217565e+117 -6.0510998e+117 -6.325175e+117 -7.1431021e+117 -6.0788591e+117 -6.1016395e+117 -6.1010093e+117 -6.0891952e+117 -6.1252939e+117 -6.0707042e+117 -6.0576869e+117 -6.056854e+117 -6.1118244e+117 -6.0841153e+117 -6.0870964e+117 -6.0481183e+117 -6.0538347e+117 -6.0792486e+117 -6.0499179e+117 -6.0834192e+117 -8.3015467e+117 -1.1706899e+118 -8.4463606e+117 -1.4024359e+117 -6.4663763e+117 -6.374519e+117 -4.6062979e+117 -4.6588219e+117 -4.5304478e+117 -4.3389663e+117 -4.5156451e+117 -4.6444901e+117 -4.3841641e+117 -4.2681751e+117 -4.094575e+117 -4.2567183e+117 -4.3714904e+117 -4.4972931e+117 -4.5087687e+117 -4.6361403e+117 -4.7677411e+117 -4.6275376e+117 -4.7617875e+117 -4.9276859e+117 -4.9262374e+117 -4.7698634e+117 -4.6232595e+117 -4.9299668e+117 -4.489743e+117 -4.3660644e+117 -3.8674526e+117 -4.0258041e+117 -4.0332718e+117 -4.1423165e+117 -4.1346602e+117 -4.2517563e+117 -4.2437095e+117 -4.3574195e+117 -4.4816713e+117 -4.6183971e+117 -4.7707928e+117 -4.9365104e+117 -3.6448313e+117 -3.9185967e+117 -3.8093154e+117 -3.8051518e+117 -3.9133312e+117 -4.0186657e+117 -4.0245693e+117 -4.1296343e+117 -4.1246096e+117 -4.3522841e+117 -4.2377426e+117 -4.2331353e+117 -4.3477522e+117 -4.4734821e+117 -4.4770174e+117 -4.7757653e+117 -4.9492074e+117 -4.6161382e+117 -4.6153838e+117 -4.7796885e+117 -4.9584399e+117 -4.7843265e+117 -4.9695965e+117 -4.3450431e+117 -4.2300353e+117 -4.1219004e+117 -4.0163835e+117 -3.9104746e+117 -3.5879416e+117 -3.6979593e+117 -3.695297e+117 -3.585664e+117 -3.8044085e+117 -3.8011063e+117 -3.9060752e+117 -4.0116339e+117 -4.1177039e+117 -4.2267198e+117 -4.3428747e+117 -4.7909423e+117 -4.9809483e+117 -3.9046882e+117 -3.7988492e+117 -3.7962009e+117 -3.9012368e+117 -4.0068965e+117 -4.0102783e+117 -4.1154259e+117 -4.113164e+117 -5.5630798e+117 -5.4026248e+117 -5.2408429e+117 -5.713189e+117 -5.837894e+117 -5.7021513e+117 -5.7067642e+117 -5.8310532e+117 -5.8234694e+117 -5.8254761e+117 -5.7266155e+117 -5.7094394e+117 -5.7534923e+117 -5.8425874e+117 -5.65009e+117 -5.9211741e+117 -5.9188351e+117 -5.9162978e+117 -5.9195504e+117 -5.822168e+117 -5.693076e+117 -5.6952427e+117 -5.6948003e+117 -5.5518318e+117 -5.4219329e+117 -5.5252047e+117 -5.5357226e+117 -5.6127156e+117 -5.5440528e+117 -5.420471e+117 -4.874163e+117 -5.0587372e+117 -5.0582334e+117 -5.2043899e+117 -5.1933053e+117 -5.06654e+117 -5.0734487e+117 -5.1845032e+117 -5.1902352e+117 -5.3303634e+117 -5.3169225e+117 -5.3027455e+117 -5.2978492e+117 -5.3100803e+117 -5.4357169e+117 -5.4399995e+117 -5.4558176e+117 -5.5639151e+117 -5.6954051e+117 -5.5845027e+117 -5.568775e+117 -5.5678778e+117 -5.577607e+117 -5.8188867e+117 -5.9299123e+117 -5.9332961e+117 -5.9577827e+117 -4.7999008e+117 -4.9309005e+117 -4.9283237e+117 -4.7932216e+117 -5.0606971e+117 -5.0584996e+117 -5.1898397e+117 -5.1950277e+117 -5.4481252e+117 -5.3200013e+117 -5.3305249e+117 -5.4648339e+117 -5.59898e+117 -5.578904e+117 -5.7097153e+117 -5.7344324e+117 -4.7826039e+117 -4.7901092e+117 -4.9233541e+117 -4.9231431e+117 -4.9247391e+117 -5.0807793e+117 -5.0695606e+117 -5.0946407e+117 -5.0618743e+117 -5.2031443e+117 -5.218765e+117 -5.3474166e+117 -5.3706624e+117 -5.5223632e+117 -5.4900193e+117 -5.6034144e+117 -5.4361632e+117 -5.2646927e+117 -5.4685903e+117 -5.287794e+117 -5.1073179e+117 -5.4996853e+117 -5.3100437e+117 -5.1220714e+117 -5.2532037e+117 -5.1369966e+117 -5.1488147e+117 -5.2750866e+117 -5.5245099e+117 -5.4959005e+117 -5.4574794e+117 -5.4868083e+117 -5.4042842e+117 -5.3760395e+117 -5.4189635e+117 -5.4479263e+117 -5.508224e+117 -5.5284873e+117 -5.5676973e+117 -5.5465767e+117 -5.4378276e+117 -5.4225371e+117 -5.4678751e+117 -5.4866004e+117 -5.5401216e+117 -5.5242565e+117 -5.5406611e+117 -5.5559068e+117 -5.5706271e+117 -5.5553472e+117 -5.5860772e+117 -5.5704439e+117 -5.5718926e+117 -5.5563012e+117 -5.5730315e+117 -5.5889712e+117 -5.5865346e+117 -5.602356e+117 -5.6199811e+117 -5.6038653e+117 -5.617288e+117 -5.6067961e+117 -5.6333616e+117 -5.6224854e+117 -5.5961615e+117 -5.5833017e+117 -5.6117154e+117 -5.5988275e+117 -5.6499005e+117 -5.6388627e+117 -5.6566334e+117 -5.6678893e+117 -5.6150707e+117 -5.6279418e+117 -5.645511e+117 -5.6326101e+117 -5.5834216e+117 -5.6341155e+117 -5.6252761e+117 -5.6414741e+117 -5.6506146e+117 -5.6677635e+117 -5.6583196e+117 -5.6765043e+117 -5.6861671e+117 -5.3315122e+117 -5.1366503e+117 -5.3534015e+117 -5.151843e+117 -5.1665631e+117 -5.182523e+117 -5.9909084e+117 -5.9816928e+117 -5.9845666e+117 -6.0000929e+117 -6.122951e+117 -6.0526519e+117 -6.1030921e+117 -6.0999987e+117 -6.0326218e+117 -6.0860645e+117 -6.0375913e+117 -6.0765191e+117 -6.0647691e+117 -6.107039e+117 -6.0924772e+117 -6.0845187e+117 -6.1454453e+117 -6.1249178e+117 -5.2785877e+117 -5.2924995e+117 -5.6838667e+117 -5.6599009e+117 -5.701976e+117 -5.6841414e+117 -5.2564486e+117 -4.1531419e+117 -5.6503545e+117 -5.3043558e+117 -3.2536221e+117 -5.918423e+117 -5.8920134e+117 -5.8993714e+117 -3.1891966e+117 -2.31335e+117 -5.2010673e+117 -5.6021817e+117 -5.8886742e+117 -5.5940096e+117 -5.2272214e+117 -5.9022841e+117 -5.6576694e+117 -5.383738e+117 -4.9322587e+117 -4.1654719e+117 -4.7785528e+117 -3.583883e+117 -4.2230966e+117 -4.6584038e+117 -4.6270375e+117 -3.9393709e+117 -3.5445975e+117 -3.1535795e+117 -2.8091585e+117 -3.8404593e+117 -4.7232753e+117 -3.9512237e+117 -3.2060126e+117 -2.8942582e+117 -1.9271541e+117 -3.3231355e+117 -4.4500889e+117 -5.2555327e+117 -4.4273761e+117 -2.6189268e+117 -2.4987952e+117 -3.2459817e+117 -2.6036794e+117 -1.3085976e+117 -2.2209809e+117 -4.6926445e+116 -6.1207923e+117 -6.0837e+117 -6.0756397e+117 -6.0706579e+117 -6.0599324e+117 -6.0827625e+117 -6.0278551e+117 -5.9108275e+117 -6.0160434e+117 -6.0099462e+117 -5.8983191e+117 -5.896737e+117 -6.0131162e+117 -6.0637885e+117 -6.077271e+117 -6.0657187e+117 -6.0906035e+117 -6.0190212e+117 -6.0988131e+117 -6.0453836e+117 -6.0435422e+117 -6.1016948e+117 -6.0568117e+117 -1.3078727e+117 -1.0444338e+117 -1.4242281e+117 -4.5014581e+117 -5.1493308e+117 -5.5816421e+116 -1.2207829e+117 -3.7762887e+117 -4.6656088e+117 -3.3585137e+116 -1.7148566e+117 -6.0279337e+117 -6.1063951e+117 -6.1333517e+117 -6.0609289e+117 -3.6585218e+116 -1.216494e+117 -5.7220469e+117 -5.7105012e+117 -5.6892365e+117 -5.6996262e+117 -5.6585687e+117 -5.6481324e+117 -5.6683225e+117 -5.6791743e+117 -5.7460275e+117 -5.7317897e+117 -5.7695507e+117 -5.7565422e+117 -5.7400897e+117 -5.7258638e+117 -5.5990665e+117 -5.4702365e+117 -4.9558216e+117 -4.9523727e+117 -4.8209604e+117 -4.8237915e+117 -4.623636e+117 -5.2178294e+117 -5.2113605e+117 -5.0822238e+117 -5.0871406e+117 -5.3498395e+117 -5.3414965e+117 -5.4803994e+117 -5.6116784e+117 -4.3610097e+117 -4.9967573e+117 -5.0050588e+117 -4.109288e+117 -5.7081772e+117 -5.7092148e+117 -5.7202293e+117 -5.6974303e+117 -5.6872368e+117 -5.6481691e+117 -5.6500364e+117 -5.6444063e+117 -5.6437154e+117 -5.6362122e+117 -5.6774195e+117 -5.6684184e+117 -5.6727744e+117 -5.6662066e+117 -5.6763373e+117 -5.6829505e+117 -5.7120776e+117 -5.7053573e+117 -5.7041965e+117 -5.6939684e+117 -5.6877284e+117 -5.6994558e+117 -5.693385e+117 -5.6783324e+117 -5.6821186e+117 -5.6892419e+117 -5.6573547e+117 -5.6608672e+117 -5.6711258e+117 -5.6675488e+117 -5.6255406e+117 -5.6308459e+117 -5.6415285e+117 -5.6356745e+117 -5.6520011e+117 -5.6459894e+117 -5.6561534e+117 -5.6623788e+117 -5.6508012e+117 -5.6372332e+117 -5.6409347e+117 -5.6471565e+117 -5.6176475e+117 -5.621259e+117 -5.6310645e+117 -5.627324e+117 -5.6864233e+117 -5.6733998e+117 -5.6754833e+117 -5.6844049e+117 -5.6545899e+117 -5.6647836e+117 -5.6626899e+117 -5.6525109e+117 -5.6510226e+117 -5.6508846e+117 -5.6604877e+117 -5.6610748e+117 -5.6718523e+117 -5.6831837e+117 -5.6711373e+117 -5.6826357e+117 -5.6128607e+117 -5.6149081e+117 -5.6245504e+117 -5.62243e+117 -5.6344146e+117 -5.6322776e+117 -5.642227e+117 -5.6443905e+117 -5.6304132e+117 -5.6308056e+117 -5.640712e+117 -5.6402528e+117 -5.6111695e+117 -5.611521e+117 -5.6210112e+117 -5.6206213e+117 -5.736421e+117 -5.7443269e+117 -5.7414553e+117 -5.734567e+117 -5.7673804e+117 -5.7242506e+117 -5.7435199e+117 -5.7112944e+117 -5.7317977e+117 -5.7181182e+117 -5.7006833e+117 -5.7052157e+117 -5.7126114e+117 -5.731897e+117 -5.7458739e+117 -5.7392517e+117 -5.7255585e+117 -5.6944102e+117 -5.6949472e+117 -5.7068719e+117 -5.7062425e+117 -5.6959712e+117 -5.697837e+117 -5.7096949e+117 -5.7078469e+117 -5.720472e+117 -5.722392e+117 -5.7358709e+117 -5.7337293e+117 -5.7325524e+117 -5.7194139e+117 -5.7187417e+117 -5.7317848e+117 -5.7764734e+117 -5.7775215e+117 -5.7949194e+117 -5.7935718e+117 -5.8042431e+117 -5.7845603e+117 -5.7800087e+117 -5.7989489e+117 -5.7479871e+117 -5.7505604e+117 -5.7662989e+117 -5.7631592e+117 -5.7457455e+117 -5.7465472e+117 -5.7613692e+117 -5.7604634e+117 -5.7795871e+117 -5.7556831e+117 -5.7605649e+117 -5.7912622e+117 -5.7728682e+117 -5.7902001e+117 -5.8172654e+117 -5.8100716e+117 -5.8129894e+117 -5.79111e+117 -5.7977955e+117 -5.8025998e+117 -5.8050909e+117 -5.784838e+117 -5.811256e+117 -5.8186232e+117 -5.8233403e+117 -5.8327506e+117 -5.8342704e+117 -5.8299354e+117 -5.8215205e+117 -5.6505788e+117 -5.6415741e+117 -5.6323374e+117 -5.6415106e+117 -5.6170965e+117 -5.6342182e+117 -5.6263712e+117 -5.6248339e+117 -5.6436989e+117 -5.6359923e+117 -5.6535251e+117 -5.6457186e+117 -5.6508644e+117 -5.65968e+117 -5.6696238e+117 -5.6607387e+117 -5.5986704e+117 -5.6067184e+117 -5.6158598e+117 -5.6079738e+117 -5.5977811e+117 -5.5894042e+117 -5.5805466e+117 -5.5889523e+117 -5.614868e+117 -5.6057049e+117 -5.5970047e+117 -5.6062316e+117 -5.614372e+117 -5.6234639e+117 -5.6327172e+117 -5.623453e+117 -5.6140739e+117 -5.6226963e+117 -5.6319731e+117 -5.6231719e+117 -5.6313001e+117 -5.6401136e+117 -5.6482832e+117 -5.639455e+117 -5.6585121e+117 -5.6490103e+117 -5.6571657e+117 -5.6667284e+117 -5.6315284e+117 -5.6408309e+117 -5.650246e+117 -5.6408409e+117 -5.6496391e+117 -5.6586119e+117 -5.6683016e+117 -5.6591353e+117 -5.6674673e+117 -5.6756743e+117 -5.6850905e+117 -5.6767338e+117 -5.6861766e+117 -5.6946685e+117 -5.7048357e+117 -5.6962305e+117 -5.667789e+117 -5.6776214e+117 -5.6875655e+117 -5.677728e+117 -5.7056504e+117 -5.7233744e+117 -5.714953e+117 -5.714041e+117 -5.7057856e+117 -5.6961755e+117 -5.6867756e+117 -5.6964672e+117 -5.7223665e+117 -5.7126839e+117 -5.7220612e+117 -5.7318656e+117 -5.7316415e+117 -5.7412665e+117 -5.7500527e+117 -5.7403416e+117 -5.6551487e+117 -5.6618831e+117 -5.6712011e+117 -5.6644868e+117 -5.678281e+117 -5.6861631e+117 -5.6950067e+117 -5.6868245e+117 -5.7035145e+117 -5.6942811e+117 -5.7033556e+117 -5.7127489e+117 -5.6690508e+117 -5.687051e+117 -5.6783531e+117 -5.6776571e+117 -5.7600383e+117 -5.7617065e+117 -5.7512631e+117 -5.770489e+117 -5.7651382e+117 -5.763351e+117 -5.7534238e+117 -5.7748681e+117 -5.7319369e+117 -5.7423183e+117 -5.752255e+117 -5.7418254e+117 -5.7841312e+117 -5.7726917e+117 -5.7815284e+117 -5.7930873e+117 -5.7046709e+117 -5.6965226e+117 -5.7065696e+117 -5.7148343e+117 -5.7256902e+117 -5.7172741e+117 -5.7288049e+117 -5.7372718e+117 -5.7438376e+117 -5.7342296e+117 -5.7459364e+117 -5.7555802e+117 -5.7130726e+117 -5.7232978e+117 -5.732804e+117 -5.7225118e+117 -5.7935563e+117 -5.7921872e+117 -5.7820577e+117 -5.8037716e+117 -5.8042823e+117 -5.8213033e+117 -5.8316209e+117 -5.8146471e+117 -5.8130227e+117 -5.8221866e+117 -5.8243277e+117 -5.8410258e+117 -5.8499964e+117 -5.8333285e+117 -5.8017352e+117 -5.8108428e+117 -5.7434305e+117 -5.7525296e+117 -5.7642033e+117 -5.7543386e+117 -5.765777e+117 -5.7821194e+117 -5.7924124e+117 -5.7750204e+117 -5.7732788e+117 -5.7837843e+117 -5.7836196e+117 -5.8013476e+117 -5.81148e+117 -5.7940087e+117 -5.7614943e+117 -5.7718541e+117 -5.6766015e+117 -5.6855363e+117 -5.679736e+117 -5.6707663e+117 -5.7054201e+117 -5.6999795e+117 -5.7096494e+117 -5.7150666e+117 -5.688673e+117 -5.6981113e+117 -5.7042621e+117 -5.6946218e+117 -5.6909075e+117 -5.6819304e+117 -5.6874007e+117 -5.6963743e+117 -5.6457984e+117 -5.6526962e+117 -5.6615778e+117 -5.6545922e+117 -5.6634805e+117 -5.6705793e+117 -5.6802192e+117 -5.6730869e+117 -5.6835636e+117 -5.6770074e+117 -5.6865815e+117 -5.6929199e+117 -5.6589638e+117 -5.6745445e+117 -5.6679099e+117 -5.6655182e+117 -5.695514e+117 -5.7017949e+117 -5.7112047e+117 -5.7048788e+117 -5.6821386e+117 -5.6915786e+117 -5.6986701e+117 -5.6892328e+117 -5.7144382e+117 -5.7246664e+117 -5.7312089e+117 -5.7208848e+117 -5.7012079e+117 -5.7184276e+117 -5.7113941e+117 -5.7082537e+117 -5.713223e+117 -5.7071126e+117 -5.7227375e+117 -5.7165678e+117 -5.7263105e+117 -5.7325142e+117 -5.7430269e+117 -5.7367176e+117 -5.7541006e+117 -5.748597e+117 -5.7379939e+117 -5.7435615e+117 -5.7185931e+117 -5.7240972e+117 -5.7336421e+117 -5.7281637e+117 -5.7469567e+117 -5.7530585e+117 -5.7626931e+117 -5.7565037e+117 -5.7740344e+117 -5.7838967e+117 -5.7901996e+117 -5.7803427e+117 -5.7958044e+117 -5.7859131e+117 -5.7908645e+117 -5.8008566e+117 -5.7587474e+117 -5.7683532e+117 -5.7732817e+117 -5.7638189e+117 -5.7214011e+117 -5.7282672e+117 -5.737757e+117 -5.7308513e+117 -5.7478524e+117 -5.7575793e+117 -5.764834e+117 -5.7550504e+117 -5.771476e+117 -5.7616974e+117 -5.7680295e+117 -5.7778168e+117 -5.7347109e+117 -5.7505842e+117 -5.7443013e+117 -5.7409975e+117 -5.7893717e+117 -5.7966751e+117 -5.8082435e+117 -5.8009928e+117 -5.7879292e+117 -5.7815422e+117 -5.7921212e+117 -5.7985819e+117 -5.7676619e+117 -5.7781945e+117 -5.7854909e+117 -5.7749477e+117 -5.8148993e+117 -5.8032857e+117 -5.8098379e+117 -5.8215516e+117 -5.7940869e+117 -5.800345e+117 -5.8109629e+117 -5.8047372e+117 -5.816044e+117 -5.8222825e+117 -5.8340476e+117 -5.8277909e+117 -5.8333888e+117 -5.8279968e+117 -5.8398209e+117 -5.8452382e+117 -5.8059225e+117 -5.8111019e+117 -5.8219376e+117 -5.8166234e+117 -5.8574079e+117 -5.8525958e+117 -5.8463595e+117 -5.8637389e+117 -5.8687781e+117 -5.8851499e+117 -5.8912752e+117 -5.8748591e+117 -5.8693917e+117 -5.8749007e+117 -5.8805699e+117 -5.8968207e+117 -5.9022509e+117 -5.8859691e+117 -5.8583285e+117 -5.863708e+117 -5.8300673e+117 -5.8265875e+117 -5.8190952e+117 -5.8377095e+117 -5.8414145e+117 -5.8579017e+117 -5.865568e+117 -5.8489832e+117 -5.844441e+117 -5.851244e+117 -5.8559436e+117 -5.872432e+117 -5.8791028e+117 -5.862559e+117 -5.8333483e+117 -5.8399846e+117 -5.6916646e+117 -5.7006788e+117 -5.7056818e+117 -5.6965838e+117 -5.8159536e+117 -5.8267946e+117 -5.8317615e+117 -5.8431864e+117 -5.8382557e+117 -5.8500863e+117 -5.8550197e+117 -5.8531271e+117 -5.8480847e+117 -5.8599766e+117 -5.8649709e+117 -5.897695e+117 -5.9086773e+117 -5.9135502e+117 -5.9024432e+117 -5.8991968e+117 -5.9040071e+117 -5.8929024e+117 -5.8881561e+117 -5.9265209e+117 -5.9103424e+117 -5.9312147e+117 -5.914973e+117 -5.9244829e+117 -5.9196814e+117 -5.9358577e+117 -5.9407292e+117 -5.8798068e+117 -5.8737932e+117 -5.8687324e+117 -5.8849718e+117 -5.8910541e+117 -5.8961364e+117 -5.9124007e+117 -5.9072491e+117 -5.8947617e+117 -5.8898214e+117 -5.9057882e+117 -5.9010453e+117 -5.9172075e+117 -5.9219985e+117 -5.8787312e+117 -5.8836263e+117 -5.9454992e+117 -5.950269e+117 -5.9545796e+117 -5.9587719e+117 -5.8133335e+117 -5.8231347e+117 -5.8322006e+117 -5.8231016e+117 -5.8414658e+117 -5.8326366e+117 -5.8401338e+117 -5.8493e+117 -5.8046571e+117 -5.79637e+117 -5.7895891e+117 -5.8229238e+117 -5.8141771e+117 -5.8050029e+117 -5.8166676e+117 -5.8081423e+117 -5.8221046e+117 -5.8300076e+117 -5.8331712e+117 -5.8435066e+117 -5.851485e+117 -5.8591257e+117 -5.8427088e+117 -5.8615533e+117 -5.8529943e+117 -5.8690133e+117 -5.8529985e+117 -5.861924e+117 -5.8710172e+117 -5.8624837e+117 -5.8797877e+117 -5.8713814e+117 -5.8869703e+117 -5.8782906e+117 -5.8378342e+117 -5.8483575e+117 -5.8297554e+117 -5.839419e+117 -5.8578646e+117 -5.8675558e+117 -5.8490266e+117 -5.8587879e+117 -5.877226e+117 -5.8861496e+117 -5.8675796e+117 -5.8769031e+117 -5.8862842e+117 -5.8948903e+117 -5.8948271e+117 -5.9031632e+117 -5.8556725e+117 -5.8644366e+117 -5.8453637e+117 -5.8544028e+117 -5.8748626e+117 -5.8822069e+117 -5.8664679e+117 -5.8739641e+117 -5.8839514e+117 -5.8907326e+117 -5.8927936e+117 -5.8991309e+117 -5.9070642e+117 -5.9012325e+117 -5.9091321e+117 -5.9144456e+117 -5.9025757e+117 -5.9105921e+117 -5.9096962e+117 -5.9174153e+117 -5.916072e+117 -5.9236048e+117 -5.9221345e+117 -5.9294893e+117 -5.8842697e+117 -5.9018962e+117 -5.8936303e+117 -5.8907693e+117 -5.9081615e+117 -5.9000342e+117 -5.914884e+117 -5.9087092e+117 -5.8698969e+117 -5.8877747e+117 -5.8793656e+117 -5.8774544e+117 -5.8951668e+117 -5.8868731e+117 -5.9021411e+117 -5.8948432e+117 -5.9212298e+117 -5.9162495e+117 -5.9227846e+117 -5.9274619e+117 -5.933309e+117 -5.9288067e+117 -5.9345092e+117 -5.9387974e+117 -5.9278446e+117 -5.9350479e+117 -5.933357e+117 -5.9404182e+117 -5.9385049e+117 -5.9454414e+117 -5.9435014e+117 -5.9503054e+117 -5.9135577e+117 -5.9303751e+117 -5.9225728e+117 -5.9082094e+117 -5.9252025e+117 -5.917277e+117 -5.9367057e+117 -5.9316e+117 -5.9027201e+117 -5.9198319e+117 -5.911866e+117 -5.8967721e+117 -5.9140956e+117 -5.9059948e+117 -5.9263396e+117 -5.9207017e+117 -5.9441113e+117 -5.9399657e+117 -5.9451754e+117 -5.949163e+117 -5.9540416e+117 -5.9501287e+117 -5.9549069e+117 -5.9587016e+117 -5.9518256e+117 -5.9470047e+117 -5.9682078e+117 -5.9606644e+117 -5.9636159e+117 -5.9559192e+117 -5.9696651e+117 -5.9741875e+117 -5.9377353e+117 -5.9423808e+117 -5.9590377e+117 -5.9513207e+117 -5.9544438e+117 -5.9466858e+117 -5.9651544e+117 -5.9605683e+117 -5.9285002e+117 -5.9332324e+117 -5.9452104e+117 -5.937453e+117 -5.9498725e+117 -5.9421692e+117 -5.9560142e+117 -5.9513523e+117 -5.9237149e+117 -5.9186172e+117 -5.9354123e+117 -5.9276191e+117 -5.9404188e+117 -5.9326999e+117 -5.9466056e+117 -5.9416484e+117 -5.9564632e+117 -5.9610419e+117 -5.9727146e+117 -5.9652222e+117 -5.9771029e+117 -5.9696976e+117 -5.9829657e+117 -5.9786125e+117 -5.9652475e+117 -5.9693976e+117 -5.9812881e+117 -5.9738475e+117 -5.9853895e+117 -5.9779846e+117 -5.9871351e+117 -5.9912604e+117 -5.9483522e+117 -5.9551356e+117 -5.9532636e+117 -5.960025e+117 -5.9579702e+117 -5.9647204e+117 -5.9626289e+117 -5.9693478e+117 -5.9671683e+117 -5.9738662e+117 -5.9717301e+117 -5.978391e+117 -5.9761947e+117 -5.9827705e+117 -5.9806421e+117 -5.9871161e+117 -5.9634448e+117 -5.9597471e+117 -5.9645424e+117 -5.9681176e+117 -5.9727858e+117 -5.9692194e+117 -5.9737995e+117 -5.9773018e+117 -5.9818272e+117 -5.9783183e+117 -5.9827599e+117 -5.9862069e+117 -5.9905349e+117 -5.9871183e+117 -5.9913913e+117 -5.9946869e+117 -5.985005e+117 -5.9914034e+117 -5.9893095e+117 -5.9956603e+117 -5.9934541e+117 -5.9997689e+117 -5.997576e+117 -6.0038491e+117 -6.0016638e+117 -6.0078048e+117 -6.0056234e+117 -6.0116662e+117 -6.0094048e+117 -6.015334e+117 -5.998859e+117 -5.9956406e+117 -5.9997888e+117 -6.0028645e+117 -6.0078848e+117 -6.0108564e+117 -6.0038574e+117 -6.0068979e+117 -6.0155125e+117 -6.0183261e+117 -6.0117521e+117 -6.0146541e+117 -6.0227702e+117 -6.0254137e+117 -6.0191603e+117 -6.0219097e+117 -5.1542252e+117 -4.8792042e+117 -5.0234001e+117 -5.3293907e+117 -4.9405533e+117 -4.6576377e+117 -5.6466494e+117 -4.9693258e+117 -5.63727e+117 -5.0800583e+117 -4.3192546e+117 -5.7007795e+117 -5.1803564e+117 -4.568884e+117 -5.6671325e+117 -5.3603443e+117 -5.4847527e+117 -5.9078507e+117 -4.6412548e+117 -4.8258857e+117 -4.9564081e+117 -4.6564623e+117 -4.2520327e+117 -4.2056078e+117 -3.32905e+117 -1.9159059e+117 -4.0106549e+117 -2.2553405e+117 -4.7335757e+117 -4.689666e+117 -4.8769072e+117 -4.7701285e+117 -4.6630728e+117 -4.8536626e+117 -4.9773442e+117 -5.1238407e+117 -5.2214593e+117 -4.879912e+117 -5.3352565e+117 -4.9447927e+117 -4.937909e+117 -3.2720824e+117 -3.8767308e+117 -3.6507957e+117 -3.4268204e+117 -5.8851107e+117 -5.8813216e+117 -5.892802e+117 -5.8888757e+117 -5.9006688e+117 -5.8967687e+117 -5.9086428e+117 -5.9046109e+117 -5.9156995e+117 -5.9124559e+117 -5.9220654e+117 -5.9188457e+117 -5.9252842e+117 -5.9283546e+117 -5.9342799e+117 -5.9313186e+117 -5.806995e+117 -5.7950491e+117 -5.8097139e+117 -5.8023501e+117 -5.8196084e+117 -5.8134113e+117 -5.8312376e+117 -5.8256344e+117 -5.8367538e+117 -5.8419007e+117 -5.8512943e+117 -5.8467235e+117 -5.8603102e+117 -5.8558379e+117 -5.8689633e+117 -5.8647217e+117 -5.8772894e+117 -5.8731128e+117 -5.4874542e+117 -4.8301601e+117 -4.7006142e+117 -4.9586251e+117 -4.96151e+117 -4.8324797e+117 -4.7025846e+117 -4.5707483e+117 -4.3786319e+117 -4.5723335e+117 -5.2224021e+117 -5.0903061e+117 -5.0926814e+117 -5.2234232e+117 -5.3554221e+117 -5.3556227e+117 -5.4859148e+117 -4.1265287e+117 -3.8874777e+117 -5.6484415e+117 -5.6590683e+117 -1.1079645e+117 -5.5790509e+117 -4.9502531e+117 -3.3936927e+117 -5.5499462e+117 -4.351585e+117 -5.1728626e+117 -7.7816606e+116 -3.2080629e+117 -3.4323139e+117 -3.6580706e+117 -5.7263774e+117 -5.7400724e+117 -5.7441633e+117 -5.7304299e+117 -5.7342965e+117 -5.7479968e+117 -5.7381652e+117 -5.7518909e+117 -5.7551163e+117 -5.7704923e+117 -5.7591247e+117 -5.7744888e+117 -5.7670295e+117 -5.7785733e+117 -5.7826494e+117 -5.7630477e+117 -5.787588e+117 -5.7917259e+117 -5.8104514e+117 -5.8061767e+117 -5.8258918e+117 -5.8302914e+117 -5.8189317e+117 -5.7958704e+117 -5.8146964e+117 -5.8000153e+117 -5.8346563e+117 -5.8390009e+117 -5.7597516e+117 -5.7419814e+117 -5.7558321e+117 -5.7458301e+117 -5.7711167e+117 -5.7867727e+117 -5.7906304e+117 -5.774968e+117 -5.7530459e+117 -5.7670253e+117 -5.7494247e+117 -5.7633005e+117 -5.7786451e+117 -5.794477e+117 -5.7824719e+117 -5.7983672e+117 -5.8272003e+117 -5.8042093e+117 -5.8231693e+117 -5.8081507e+117 -5.8433301e+117 -5.8474366e+117 -5.8160291e+117 -5.8352347e+117 -5.8120677e+117 -5.8312132e+117 -5.8515034e+117 -5.8556272e+117 -5.6495263e+117 -5.6595762e+117 -5.6528951e+117 -5.6629251e+117 -5.6730775e+117 -5.6696576e+117 -5.6800378e+117 -5.6835168e+117 -5.6591465e+117 -5.6692607e+117 -5.6560399e+117 -5.6660952e+117 -5.6868907e+117 -5.6763626e+117 -5.6795756e+117 -5.6901611e+117 -5.6356747e+117 -5.6389087e+117 -5.6455221e+117 -5.6488251e+117 -5.6554222e+117 -5.6588965e+117 -5.665611e+117 -5.6691948e+117 -5.6422693e+117 -5.6522632e+117 -5.6559296e+117 -5.6458958e+117 -5.6728729e+117 -5.6765113e+117 -5.6625029e+117 -5.6661159e+117 -5.6766992e+117 -5.6884009e+117 -5.6922161e+117 -5.6804216e+117 -5.6841383e+117 -5.6959742e+117 -5.6996207e+117 -5.6877588e+117 -5.7168285e+117 -5.7003776e+117 -5.7128605e+117 -5.7042791e+117 -5.7245017e+117 -5.7081177e+117 -5.7207204e+117 -5.7118141e+117 -5.6913511e+117 -5.7033073e+117 -5.7069871e+117 -5.6949467e+117 -5.7017194e+117 -5.6983921e+117 -5.7105173e+117 -5.7139315e+117 -5.7155341e+117 -5.7282609e+117 -5.7320357e+117 -5.7192775e+117 -5.7263725e+117 -5.7228826e+117 -5.7356919e+117 -5.7392331e+117 -5.6350877e+117 -5.6220715e+117 -5.631804e+117 -5.62529e+117 -5.641611e+117 -5.6515344e+117 -5.6549554e+117 -5.6449357e+117 -5.6419723e+117 -5.6286893e+117 -5.6384784e+117 -5.6322134e+117 -5.6484106e+117 -5.6585059e+117 -5.6620842e+117 -5.6519151e+117 -5.6771532e+117 -5.6622762e+117 -5.6735523e+117 -5.6657798e+117 -5.6851448e+117 -5.6971224e+117 -5.7009652e+117 -5.6888447e+117 -5.6846196e+117 -5.6694257e+117 -5.6809119e+117 -5.6730645e+117 -5.6926877e+117 -5.7049122e+117 -5.6965018e+117 -5.7088546e+117 -5.6103462e+117 -5.6197355e+117 -5.629177e+117 -5.6380312e+117 -5.6473894e+117 -5.6405274e+117 -5.6310104e+117 -5.6330298e+117 -5.6426439e+117 -5.6214759e+117 -5.6119341e+117 -5.6137686e+117 -5.6234094e+117 -5.6287515e+117 -5.6162158e+117 -5.6258874e+117 -5.61901e+117 -5.6452942e+117 -5.6356218e+117 -5.6384593e+117 -5.6482406e+117 -5.6736428e+117 -5.6839972e+117 -5.6628835e+117 -5.6653647e+117 -5.6593756e+117 -5.6518435e+117 -5.651852e+117 -5.6645423e+117 -5.6532726e+117 -5.6588441e+117 -5.65581e+117 -5.6669097e+117 -5.6700282e+117 -5.6869124e+117 -5.6731582e+117 -5.6835907e+117 -5.6757333e+117 -5.6814928e+117 -5.6933307e+117 -5.6781962e+117 -5.6897674e+117 -5.7468595e+117 -5.761726e+117 -5.7696387e+117 -5.7491743e+117 -5.7654121e+117 -5.7530321e+117 -5.7777766e+117 -5.7828901e+117 -5.7874664e+117 -5.762914e+117 -5.7804303e+117 -5.757678e+117 -5.77481e+117 -5.7932499e+117 -5.7992611e+117 -5.6956303e+117 -5.7073851e+117 -5.7110036e+117 -5.6954622e+117 -5.7074896e+117 -5.6989341e+117 -5.719891e+117 -5.7328903e+117 -5.7208176e+117 -5.7342234e+117 -5.7378597e+117 -5.7243179e+117 -5.7020912e+117 -5.7144779e+117 -5.7186222e+117 -5.7059631e+117 -5.7280643e+117 -5.7420285e+117 -5.7325526e+117 -5.7468914e+117 -5.7099668e+117 -5.7228454e+117 -5.7139601e+117 -5.7270641e+117 -5.7416154e+117 -5.7566154e+117 -5.737091e+117 -5.7517888e+117 -5.7221771e+117 -5.7356853e+117 -5.7180385e+117 -5.7313606e+117 -5.7461383e+117 -5.7613676e+117 -5.7660025e+117 -5.7506381e+117 -5.7681735e+117 -5.7860507e+117 -5.7914924e+117 -5.7733119e+117 -5.7782902e+117 -5.7966876e+117 -5.7830492e+117 -5.8015626e+117 -5.805198e+117 -5.8108314e+117 -5.821186e+117 -5.8161833e+117 -5.5731433e+117 -5.573013e+117 -5.5822704e+117 -5.5820734e+117 -5.5856919e+117 -5.5748524e+117 -5.5838764e+117 -5.5767148e+117 -5.5918895e+117 -5.5913995e+117 -5.6013758e+117 -5.6007601e+117 -5.5930773e+117 -5.6023848e+117 -5.6041867e+117 -5.5948546e+117 -5.5817894e+117 -5.5907405e+117 -5.579129e+117 -5.5880438e+117 -5.5972125e+117 -5.6066093e+117 -5.5999508e+117 -5.6093708e+117 -5.5734924e+117 -5.5826781e+117 -5.6018085e+117 -5.592255e+117 -5.5507807e+117 -5.558992e+117 -5.5619022e+117 -5.5537735e+117 -5.5602404e+117 -5.5569694e+117 -5.5650531e+117 -5.5683641e+117 -5.5787383e+117 -5.5673079e+117 -5.5758259e+117 -5.5702087e+117 -5.5767486e+117 -5.5853926e+117 -5.5733864e+117 -5.58199e+117 -5.538086e+117 -5.5385343e+117 -5.5463277e+117 -5.546798e+117 -5.5509416e+117 -5.5407037e+117 -5.5489733e+117 -5.5426514e+117 -5.5550996e+117 -5.5638493e+117 -5.5553208e+117 -5.5639918e+117 -5.5573908e+117 -5.5659566e+117 -5.5678927e+117 -5.5593498e+117 -5.5561286e+117 -5.545132e+117 -5.5533891e+117 -5.5478446e+117 -5.5618242e+117 -5.5703723e+117 -5.5644869e+117 -5.5730066e+117 -5.5384537e+117 -5.5467817e+117 -5.5554843e+117 -5.5642794e+117 -5.5408013e+117 -5.5493386e+117 -5.5477263e+117 -5.539306e+117 -5.5670382e+117 -5.5580906e+117 -5.556421e+117 -5.5652457e+117 -5.5762409e+117 -5.5744909e+117 -5.5837478e+117 -5.5855783e+117 -5.5953103e+117 -5.6050885e+117 -5.5934248e+117 -5.603079e+117 -5.5846494e+117 -5.5936695e+117 -5.5967203e+117 -5.5876153e+117 -5.6124225e+117 -5.6060651e+117 -5.602961e+117 -5.6155854e+117 -5.5909031e+117 -5.5943648e+117 -5.6000664e+117 -5.6035756e+117 -5.6189909e+117 -5.612989e+117 -5.6225276e+117 -5.6094381e+117 -5.4435113e+117 -5.4360831e+117 -5.441622e+117 -5.448523e+117 -5.4510932e+117 -5.4590478e+117 -5.4555841e+117 -5.4626246e+117 -5.4714066e+117 -5.4701561e+117 -5.4910862e+117 -5.4791948e+117 -5.4770918e+117 -5.4844891e+117 -5.4924525e+117 -5.4954202e+117 -5.4933926e+117 -5.487636e+117 -5.4963519e+117 -5.4964678e+117 -5.4984654e+117 -5.5007727e+117 -5.512836e+117 -5.505075e+117 -5.5074339e+117 -5.5145325e+117 -5.5211918e+117 -5.5222429e+117 -5.5294747e+117 -5.5302302e+117 -5.5213962e+117 -5.5298847e+117 -5.5040182e+117 -5.5127236e+117 -5.4373971e+117 -5.4398878e+117 -5.4473886e+117 -5.4448162e+117 -5.4551257e+117 -5.4632766e+117 -5.4604884e+117 -5.4525067e+117 -5.4875024e+117 -5.4894091e+117 -5.4975845e+117 -5.4958371e+117 -5.4714488e+117 -5.4733995e+117 -5.4812875e+117 -5.479245e+117 -5.4217263e+117 -5.4288591e+117 -5.4081035e+117 -5.4149481e+117 -5.4148545e+117 -5.4082496e+117 -5.421351e+117 -5.4279632e+117 -5.4346357e+117 -5.4117407e+117 -5.4161457e+117 -5.4184409e+117 -5.4094073e+117 -5.4252307e+117 -5.432568e+117 -5.4300516e+117 -5.4229509e+117 -5.5130491e+117 -5.5144623e+117 -5.5059345e+117 -5.5043198e+117 -5.5232671e+117 -5.5320723e+117 -5.5306413e+117 -5.5219419e+117 -5.3734271e+117 -5.3676486e+117 -5.3570902e+117 -5.3621724e+117 -5.3601133e+117 -5.3641677e+117 -5.3603037e+117 -5.3712323e+117 -5.3766769e+117 -5.3823478e+117 -5.3879938e+117 -5.3795506e+117 -5.3866242e+117 -5.3938433e+117 -5.3968605e+117 -5.3940138e+117 -5.401006e+117 -5.4008653e+117 -5.3975006e+117 -5.4043182e+117 -5.4034449e+117 -5.3921919e+117 -5.386164e+117 -5.3823598e+117 -5.3888284e+117 -5.4024598e+117 -5.4050089e+117 -5.3983651e+117 -5.3955575e+117 -5.3594367e+117 -5.3642009e+117 -5.3693538e+117 -5.3648527e+117 -5.3801474e+117 -5.3745001e+117 -5.3702081e+117 -5.3761365e+117 -5.4073704e+117 -5.4029906e+117 -5.4037166e+117 -5.3991709e+117 -5.4149058e+117 -5.410596e+117 -5.4173455e+117 -5.4225652e+117 -5.3992487e+117 -5.3943359e+117 -5.3898349e+117 -5.3953952e+117 -5.4055912e+117 -5.4014095e+117 -5.4077704e+117 -5.4116978e+117 -5.3979848e+117 -5.3938067e+117 -5.3901003e+117 -5.3934514e+117 -5.3828232e+117 -5.3891396e+117 -5.3810329e+117 -5.3800273e+117 -5.3805733e+117 -5.3738861e+117 -5.369224e+117 -5.3766946e+117 -5.3846145e+117 -5.3887663e+117 -5.3840558e+117 -5.3788384e+117 -5.4497421e+117 -5.4428347e+117 -5.4366073e+117 -5.4437603e+117 -5.4361066e+117 -5.428761e+117 -5.4235673e+117 -5.4298318e+117 -5.4392969e+117 -5.4353332e+117 -5.4279689e+117 -5.4319718e+117 -5.4183655e+117 -5.4250494e+117 -5.4210448e+117 -5.4143768e+117 -5.4725695e+117 -5.4803775e+117 -5.4747837e+117 -5.4667342e+117 -5.4587794e+117 -5.4646543e+117 -5.457338e+117 -5.4513456e+117 -5.4543063e+117 -5.4466895e+117 -5.4426403e+117 -5.4501805e+117 -5.4621476e+117 -5.4579931e+117 -5.4662013e+117 -5.4703091e+117 -5.4981938e+117 -5.5017329e+117 -5.4908725e+117 -5.4847824e+117 -5.4922528e+117 -5.5003485e+117 -5.5068119e+117 -5.5146191e+117 -5.5084621e+117 -5.4799564e+117 -5.487704e+117 -5.4761753e+117 -5.4840307e+117 -5.4920261e+117 -5.4956468e+117 -5.5037624e+117 -5.5001205e+117 -5.5166408e+117 -5.5224874e+117 -5.5304089e+117 -5.5247849e+117 -5.5332071e+117 -5.5387232e+117 -5.5471455e+117 -5.5416491e+117 -5.5374121e+117 -5.5254644e+117 -5.5288337e+117 -5.5341664e+117 -5.5119834e+117 -5.5202648e+117 -5.516748e+117 -5.5083701e+117 -5.5676363e+117 -5.5730022e+117 -5.5819798e+117 -5.5766014e+117 -5.5556452e+117 -5.5641883e+117 -5.5587456e+117 -5.5501756e+117 -5.5460212e+117 -5.55154e+117 -5.5546568e+117 -5.5429256e+117 -5.5635856e+117 -5.5726573e+117 -5.5694085e+117 -5.560395e+117 -5.5952662e+117 -5.6005521e+117 -5.5912039e+117 -5.5858667e+117 -5.5819212e+117 -5.591344e+117 -5.5880429e+117 -5.5786637e+117 -5.5978319e+117 -5.6011777e+117 -5.6111669e+117 -5.6076863e+117 -5.6102758e+117 -5.6202759e+117 -5.615203e+117 -5.6051214e+117 -5.533195e+117 -5.5402768e+117 -5.5433037e+117 -5.5363004e+117 -5.5393803e+117 -5.5424969e+117 -5.5463344e+117 -5.5494369e+117 -5.5583001e+117 -5.5477174e+117 -5.5553894e+117 -5.5506451e+117 -5.5568238e+117 -5.5645731e+117 -5.5536693e+117 -5.5613569e+117 -5.5297321e+117 -5.5227195e+117 -5.5121007e+117 -5.5195035e+117 -5.5265808e+117 -5.5152281e+117 -5.5289072e+117 -5.5212853e+117 -5.5182578e+117 -5.5257601e+117 -5.5328395e+117 -5.5359468e+117 -5.4938568e+117 -5.4885486e+117 -5.49152e+117 -5.4968315e+117 -5.5023459e+117 -5.4993313e+117 -5.5051105e+117 -5.5081972e+117 -5.4831045e+117 -5.477674e+117 -5.480644e+117 -5.4860462e+117 -5.4887551e+117 -5.4833002e+117 -5.4857194e+117 -5.4912548e+117 -5.4996433e+117 -5.4942213e+117 -5.4968024e+117 -5.5023383e+117 -5.5080414e+117 -5.5052422e+117 -5.5111422e+117 -5.514083e+117 -5.4974652e+117 -5.4916044e+117 -5.4933712e+117 -5.4993373e+117 -5.4897724e+117 -5.4878085e+117 -5.4934318e+117 -5.4955076e+117 -5.5048228e+117 -5.4991473e+117 -5.5013673e+117 -5.5071484e+117 -5.5053391e+117 -5.5033698e+117 -5.5092659e+117 -5.5113367e+117 -5.5130698e+117 -5.5106431e+117 -5.524087e+117 -5.5317781e+117 -5.5167674e+117 -5.5267575e+117 -5.5193089e+117 -5.5346203e+117 -5.538942e+117 -5.541808e+117 -5.5291409e+117 -5.5370734e+117 -5.5444335e+117 -5.5469222e+117 -5.5395329e+117 -5.5314257e+117 -5.5216762e+117 -5.5153257e+117 -5.5174918e+117 -5.523914e+117 -5.4744909e+117 -5.4691284e+117 -5.470372e+117 -5.4758477e+117 -5.4676967e+117 -5.4661376e+117 -5.471343e+117 -5.4729583e+117 -5.4821775e+117 -5.4767018e+117 -5.4784631e+117 -5.4840346e+117 -5.4815335e+117 -5.4800337e+117 -5.4857346e+117 -5.4873624e+117 -5.4672472e+117 -5.4621698e+117 -5.4644264e+117 -5.4695603e+117 -5.4594928e+117 -5.4565321e+117 -5.4616826e+117 -5.4645727e+117 -5.4722379e+117 -5.4669272e+117 -5.4698833e+117 -5.4751976e+117 -5.4748027e+117 -5.4724727e+117 -5.4778132e+117 -5.4801716e+117 -5.5556751e+117 -5.5455453e+117 -5.5526144e+117 -5.5484927e+117 -5.5600999e+117 -5.5632124e+117 -5.5678983e+117 -5.5710756e+117 -5.561198e+117 -5.5512357e+117 -5.5585309e+117 -5.5537888e+117 -5.5740758e+117 -5.5661574e+117 -5.5688731e+117 -5.5768369e+117 -5.4985462e+117 -5.5060552e+117 -5.5133123e+117 -5.5167071e+117 -5.5096885e+117 -5.5021842e+117 -5.5056179e+117 -5.5129782e+117 -5.5200448e+117 -5.5163722e+117 -5.5089549e+117 -5.5233698e+117 -5.4853391e+117 -5.4816091e+117 -5.4870573e+117 -5.4906934e+117 -5.4985628e+117 -5.492659e+117 -5.4962266e+117 -5.5020184e+117 -5.4794802e+117 -5.4739061e+117 -5.4778092e+117 -5.4832981e+117 -5.4889264e+117 -5.4852202e+117 -5.4912823e+117 -5.4949371e+117 -5.4744021e+117 -5.4706301e+117 -5.4760604e+117 -5.4798364e+117 -5.4666639e+117 -5.462556e+117 -5.4682393e+117 -5.472197e+117 -5.486327e+117 -5.4947494e+117 -5.5030746e+117 -5.4967968e+117 -5.504749e+117 -5.4887642e+117 -5.4994417e+117 -5.4917646e+117 -5.5071487e+117 -5.5026638e+117 -5.5100468e+117 -5.4950508e+117 -5.4699923e+117 -5.4660781e+117 -5.4719997e+117 -5.4756914e+117 -5.4843346e+117 -5.4780364e+117 -5.4816169e+117 -5.4877782e+117 -5.4787592e+117 -5.4655117e+117 -5.4721307e+117 -5.4589826e+117 -5.4623751e+117 -5.4685421e+117 -5.4747606e+117 -5.4811943e+117 -5.4495343e+117 -5.4456302e+117 -5.4522937e+117 -5.4559143e+117 -5.4600164e+117 -5.4539187e+117 -5.4583928e+117 -5.4642449e+117 -5.5190321e+117 -5.5100298e+117 -5.5171222e+117 -5.5117748e+117 -5.524692e+117 -5.5325336e+117 -5.5345115e+117 -5.5266354e+117 -5.5241652e+117 -5.5141172e+117 -5.5214329e+117 -5.5168836e+117 -5.5290855e+117 -5.5370006e+117 -5.5317789e+117 -5.539686e+117 -5.5200564e+117 -5.5272592e+117 -5.5304827e+117 -5.5233377e+117 -5.5299811e+117 -5.5266707e+117 -5.5338075e+117 -5.537127e+117 -5.5426821e+117 -5.5457684e+117 -5.5348223e+117 -5.537974e+117 -5.5445874e+117 -5.5412812e+117 -5.5490338e+117 -5.5522997e+117 -5.4344773e+117 -5.4291564e+117 -5.4353217e+117 -5.440379e+117 -5.4242972e+117 -5.4198478e+117 -5.4263673e+117 -5.4306374e+117 -5.4390596e+117 -5.4326739e+117 -5.4369049e+117 -5.4431717e+117 -5.446344e+117 -5.4415015e+117 -5.4477021e+117 -5.4523523e+117 -5.4568201e+117 -5.4510876e+117 -5.4557388e+117 -5.4611365e+117 -5.4446865e+117 -5.4396509e+117 -5.445306e+117 -5.4501341e+117 -5.4545423e+117 -5.4492246e+117 -5.4532795e+117 -5.4584842e+117 -5.4651991e+117 -5.4598813e+117 -5.463701e+117 -5.4689817e+117 -5.4153082e+117 -5.4115531e+117 -5.4164244e+117 -5.4201516e+117 -5.4059359e+117 -5.4000175e+117 -5.4040821e+117 -5.4097938e+117 -5.4129293e+117 -5.408364e+117 -5.414083e+117 -5.4185391e+117 -5.423986e+117 -5.4192707e+117 -5.4236102e+117 -5.4281637e+117 -5.3911809e+117 -5.3868676e+117 -5.3938891e+117 -5.3980707e+117 -5.3798986e+117 -5.3725821e+117 -5.3680072e+117 -5.3658635e+117 -5.3766393e+117 -5.3845518e+117 -5.3863449e+117 -5.3811781e+117 -5.3892333e+117 -5.3940599e+117 -5.4023291e+117 -5.3956286e+117 -5.4004246e+117 -5.4070033e+117 -5.4123402e+117 -5.4063896e+117 -5.4058038e+117 -5.4044483e+117 -5.4000898e+117 -5.3996455e+117 -5.4111621e+117 -5.4177161e+117 -5.3976173e+117 -5.3916793e+117 -5.3992147e+117 -5.4048221e+117 -5.4109729e+117 -5.4055406e+117 -5.4120344e+117 -5.4172862e+117 -5.4229186e+117 -5.4168205e+117 -5.4228534e+117 -5.4286121e+117 -5.4332325e+117 -5.4283026e+117 -5.4327536e+117 -5.4375646e+117 -5.4233317e+117 -5.4178226e+117 -5.4229752e+117 -5.4283725e+117 -5.4340026e+117 -5.4284175e+117 -5.4337289e+117 -5.439171e+117 -5.4426733e+117 -5.4384442e+117 -5.443795e+117 -5.447915e+117 -5.4337212e+117 -5.432382e+117 -5.4360417e+117 -5.4374499e+117 -5.4309185e+117 -5.4295997e+117 -5.433278e+117 -5.4346072e+117 -5.4414931e+117 -5.4372619e+117 -5.4386114e+117 -5.4428556e+117 -5.4442241e+117 -5.4400134e+117 -5.4413907e+117 -5.4455397e+117 -5.4284973e+117 -5.4265486e+117 -5.4300105e+117 -5.4320458e+117 -5.423713e+117 -5.4202132e+117 -5.423904e+117 -5.4272651e+117 -5.4319476e+117 -5.4277964e+117 -5.4311239e+117 -5.4352299e+117 -5.4358966e+117 -5.4338403e+117 -5.4379434e+117 -5.4400198e+117 -5.4513615e+117 -5.4462681e+117 -5.4493997e+117 -5.4544055e+117 -5.4397136e+117 -5.4364651e+117 -5.4412315e+117 -5.4444202e+117 -5.4470694e+117 -5.4423971e+117 -5.444502e+117 -5.4491853e+117 -5.4541474e+117 -5.4519991e+117 -5.4570358e+117 -5.4592216e+117 -5.4609339e+117 -5.4558346e+117 -5.45729e+117 -5.4624321e+117 -5.4474402e+117 -5.4460459e+117 -5.450811e+117 -5.452227e+117 -5.4500241e+117 -5.4487548e+117 -5.4535218e+117 -5.4547287e+117 -5.45976e+117 -5.4585833e+117 -5.4637782e+117 -5.4649586e+117 -5.5977447e+117 -5.6070211e+117 -5.6101833e+117 -5.600908e+117 -5.6075065e+117 -5.6040733e+117 -5.6133163e+117 -5.616797e+117 -5.6291144e+117 -5.6164475e+117 -5.6259566e+117 -5.6195748e+117 -5.6263137e+117 -5.6360025e+117 -5.6227801e+117 -5.6324307e+117 -5.5876179e+117 -5.5760036e+117 -5.5843553e+117 -5.5792302e+117 -5.5929734e+117 -5.6018215e+117 -5.6051084e+117 -5.5962502e+117 -5.585093e+117 -5.5935926e+117 -5.5822647e+117 -5.5906935e+117 -5.5993541e+117 -5.6082374e+117 -5.6023042e+117 -5.611215e+117 -5.6236282e+117 -5.6109778e+117 -5.6203047e+117 -5.6142614e+117 -5.6298756e+117 -5.6395898e+117 -5.6429494e+117 -5.6332062e+117 -5.6204057e+117 -5.629822e+117 -5.6173812e+117 -5.6267694e+117 -5.6363549e+117 -5.6461202e+117 -5.6394376e+117 -5.6491957e+117 -5.5633523e+117 -5.5715282e+117 -5.5745314e+117 -5.5662896e+117 -5.5693695e+117 -5.5776594e+117 -5.5726493e+117 -5.5809777e+117 -5.5918205e+117 -5.5799911e+117 -5.5886927e+117 -5.5830466e+117 -5.5895664e+117 -5.5861996e+117 -5.5950081e+117 -5.5983977e+117 -5.2233677e+117 -4.1402012e+117 -4.4517505e+117 -4.3249331e+117 -4.3280312e+117 -4.4519093e+117 -4.4511894e+117 -4.3260017e+117 -4.4486904e+117 -4.3226129e+117 -4.579106e+117 -4.577196e+117 -4.5785274e+117 -4.7038132e+117 -4.7049765e+117 -4.7057695e+117 -4.5782934e+117 -4.7029309e+117 -4.6994722e+117 -4.5743001e+117 -4.8339417e+117 -4.8316019e+117 -4.8328963e+117 -4.830813e+117 -4.9596543e+117 -4.9601137e+117 -4.9588928e+117 -4.9601153e+117 -4.8265139e+117 -4.8290033e+117 -4.9569132e+117 -4.9546669e+117 -5.0914232e+117 -5.0885869e+117 -5.0868388e+117 -5.0897394e+117 -5.087622e+117 -5.2147995e+117 -5.2145326e+117 -5.2192589e+117 -5.2146844e+117 -5.0869044e+117 -5.2173241e+117 -5.2196575e+117 -5.0866536e+117 -5.3444153e+117 -5.340381e+117 -5.3399271e+117 -5.3429966e+117 -5.4729001e+117 -5.4676547e+117 -5.4664526e+117 -5.4706109e+117 -3.898909e+117 -4.0767446e+117 -4.1984758e+117 -4.193169e+117 -4.0716303e+117 -4.3213591e+117 -4.3161439e+117 -4.4381316e+117 -4.4444244e+117 -4.5700077e+117 -4.6962992e+117 -4.6917357e+117 -4.5636596e+117 -4.8245657e+117 -4.9544975e+117 -4.9542381e+117 -4.8223834e+117 -3.6666691e+117 -3.8329745e+117 -3.837794e+117 -3.9482003e+117 -3.9529986e+117 -4.0686488e+117 -4.0633243e+117 -4.1803479e+117 -4.186866e+117 -4.3089126e+117 -4.4323456e+117 -4.4262187e+117 -4.3019677e+117 -4.5588814e+117 -4.6835434e+117 -4.6875985e+117 -4.5539876e+117 -5.4042213e+117 -5.4210254e+117 -5.3885532e+117 -5.3715168e+117 -5.388214e+117 -5.4001705e+117 -5.4230409e+117 -5.415263e+117 -5.4264676e+117 -5.4169864e+117 -5.4112949e+117 -5.4382678e+117 -5.4554139e+117 -5.4911024e+117 -5.4728611e+117 -5.4472449e+117 -5.4551996e+117 -5.4540162e+117 -5.446886e+117 -5.4313585e+117 -5.4393819e+117 -5.4392473e+117 -5.4336455e+117 -5.4635456e+117 -5.4715033e+117 -5.4617963e+117 -5.4692147e+117 -5.4801034e+117 -5.4889127e+117 -5.4852822e+117 -5.4773072e+117 -5.5645978e+117 -5.5564475e+117 -5.5483537e+117 -5.5409233e+117 -5.5255317e+117 -5.5331797e+117 -5.5175299e+117 -5.50827e+117 -5.5450417e+117 -5.5532178e+117 -5.5292152e+117 -5.5368182e+117 -5.5151758e+117 -5.5064692e+117 -5.5217905e+117 -5.50704e+117 -5.502319e+117 -5.5030103e+117 -5.6287692e+117 -5.6385931e+117 -5.6098304e+117 -5.6191439e+117 -5.6005861e+117 -5.5911495e+117 -5.5818406e+117 -5.5730475e+117 -5.5791961e+117 -5.5883075e+117 -5.5617489e+117 -5.5702332e+117 -5.6069977e+117 -5.5976576e+117 -5.6166363e+117 -5.6264047e+117 -5.0688156e+117 -5.0858687e+117 -5.0721098e+117 -5.1191014e+117 -5.1331708e+117 -5.0783546e+117 -5.1449286e+117 -5.0877023e+117 -5.0945822e+117 -5.1496453e+117 -5.1115309e+117 -5.1711693e+117 -5.2025929e+117 -5.1854582e+117 -5.2228401e+117 -5.1038e+117 -5.0879199e+117 -5.096402e+117 -3.4390995e+117 -3.6023737e+117 -3.6069586e+117 -3.7199782e+117 -3.7153224e+117 -3.8260015e+117 -3.8311236e+117 -3.9376664e+117 -3.9432474e+117 -4.0516981e+117 -4.0577957e+117 -4.1742707e+117 -4.1675886e+117 -4.2949928e+117 -4.2878848e+117 -4.4120302e+117 -4.4189745e+117 -5.3154391e+117 -5.3231516e+117 -5.3111664e+117 -5.317165e+117 -5.3218888e+117 -5.3172841e+117 -5.3281843e+117 -5.3253956e+117 -5.3204047e+117 -5.3261917e+117 -5.3358284e+117 -5.3412587e+117 -5.3379464e+117 -5.3322161e+117 -5.3465143e+117 -5.3515171e+117 -5.3440894e+117 -5.3507936e+117 -5.3564495e+117 -5.3575297e+117 -5.3558809e+117 -5.3596502e+117 -5.3412223e+117 -5.3465301e+117 -5.3413757e+117 -5.3357063e+117 -5.3521214e+117 -5.3580248e+117 -5.3532298e+117 -5.3469713e+117 -5.3159093e+117 -5.322114e+117 -5.3182714e+117 -5.3130826e+117 -5.3286725e+117 -5.3347831e+117 -5.3295674e+117 -5.323682e+117 -5.2693311e+117 -5.2467253e+117 -5.2518119e+117 -5.2796978e+117 -5.2727104e+117 -5.2611179e+117 -5.288728e+117 -5.2945219e+117 -5.2975047e+117 -5.2891657e+117 -5.28338e+117 -5.2861244e+117 -5.2940592e+117 -5.2915655e+117 -5.2992719e+117 -5.3021347e+117 -5.3060532e+117 -5.3084021e+117 -5.29734e+117 -5.3047195e+117 -5.2815311e+117 -5.2897074e+117 -5.3141404e+117 -5.3089623e+117 -5.3101565e+117 -5.3138211e+117 -5.3070091e+117 -5.3132959e+117 -5.3164155e+117 -5.3153287e+117 -5.2268954e+117 -5.252445e+117 -5.2533246e+117 -5.2419102e+117 -5.274175e+117 -5.2611966e+117 -5.2642561e+117 -5.2746282e+117 -5.1823004e+117 -5.2227343e+117 -5.2151442e+117 -5.2312234e+117 -5.249995e+117 -5.2534519e+117 -5.2703156e+117 -5.2884216e+117 -5.2570111e+117 -5.2654168e+117 -5.2782724e+117 -5.2833742e+117 -5.2919521e+117 -5.2914272e+117 -5.3007942e+117 -5.308742e+117 -5.3037264e+117 -5.3383151e+117 -5.3244331e+117 -5.3321968e+117 -5.3439693e+117 -5.3164285e+117 -5.314672e+117 -5.3248292e+117 -5.3254168e+117 -5.3177482e+117 -5.3357253e+117 -5.3401083e+117 -5.343589e+117 -5.3335369e+117 -5.3583943e+117 -5.3492746e+117 -5.3612234e+117 -5.352605e+117 -5.3661195e+117 -5.373578e+117 -5.3737636e+117 -5.3679311e+117 -5.3515105e+117 -5.3576203e+117 -5.3514523e+117 -5.3467482e+117 -5.3640798e+117 -5.3698911e+117 -5.3629486e+117 -5.3572327e+117 -5.206372e+117 -5.1438559e+117 -5.2693917e+117 -5.2952348e+117 -5.2531552e+117 -5.1829261e+117 -5.3015109e+117 -5.2657169e+117 -5.3274832e+117 -5.3278901e+117 -5.3508791e+117 -5.3713599e+117 -5.3526475e+117 -5.3269578e+117 -3.2145195e+117 -3.3785537e+117 -3.3814928e+117 -3.492743e+117 -3.4891078e+117 -3.7118928e+117 -3.601714e+117 -3.597457e+117 -3.7069482e+117 -3.8175645e+117 -3.8228267e+117 -3.9283769e+117 -3.9330696e+117 -4.041259e+117 -4.0457481e+117 -4.1565579e+117 -4.161347e+117 -5.1534685e+117 -5.1622858e+117 -5.1656729e+117 -5.1955471e+117 -5.1547309e+117 -5.1592398e+117 -5.1595234e+117 -5.1648486e+117 -5.207723e+117 -5.1695442e+117 -5.1729117e+117 -5.2025026e+117 -5.1675816e+117 -5.1674263e+117 -5.1849972e+117 -5.1883436e+117 -5.1795336e+117 -5.1829816e+117 -5.18457e+117 -5.1834081e+117 -5.2066923e+117 -5.2175784e+117 -5.1800831e+117 -5.1797064e+117 -5.1916526e+117 -5.1961285e+117 -5.1977788e+117 -5.1973845e+117 -5.20186e+117 -5.2097718e+117 -5.1831647e+117 -5.1894337e+117 -5.18463e+117 -5.1912909e+117 -5.1863969e+117 -5.180691e+117 -5.1798689e+117 -5.1811696e+117 -5.1940342e+117 -5.1887875e+117 -5.1930108e+117 -5.199938e+117 -5.1894012e+117 -5.1899926e+117 -5.1952003e+117 -5.1915601e+117 -5.1925664e+117 -5.1905706e+117 -5.1864276e+117 -5.1883541e+117 -5.1858085e+117 -5.189035e+117 -5.1910036e+117 -5.1877957e+117 -5.2014708e+117 -5.1969595e+117 -5.1963215e+117 -5.1995526e+117 -5.1890993e+117 -5.1902293e+117 -5.1923426e+117 -5.1914575e+117 -5.1914092e+117 -5.1940199e+117 -5.1998558e+117 -5.1971012e+117 -5.2010981e+117 -5.2001295e+117 -5.2090579e+117 -5.2027862e+117 -5.2668322e+117 -5.2652896e+117 -5.2647258e+117 -5.2623211e+117 -5.2591015e+117 -5.2568602e+117 -5.2599822e+117 -5.2653605e+117 -5.2668909e+117 -5.2643679e+117 -5.2669718e+117 -5.2644819e+117 -5.2693557e+117 -5.2688854e+117 -5.2724063e+117 -5.2767814e+117 -5.2762045e+117 -5.3855205e+117 -5.3813512e+117 -5.3850754e+117 -5.389461e+117 -5.3767304e+117 -5.3713587e+117 -5.3747501e+117 -5.3802664e+117 -5.381518e+117 -5.3780672e+117 -5.383738e+117 -5.3872603e+117 -5.3923769e+117 -5.3887155e+117 -5.3932975e+117 -5.3971027e+117 -5.364804e+117 -5.3570722e+117 -5.3607625e+117 -5.3682573e+117 -5.3373593e+117 -5.3248771e+117 -5.3226301e+117 -5.3429673e+117 -5.3307665e+117 -5.3288302e+117 -5.3527178e+117 -5.3485498e+117 -5.3517068e+117 -5.3474025e+117 -5.3562865e+117 -5.3599307e+117 -5.3715659e+117 -5.3640966e+117 -5.3677347e+117 -5.3750339e+117 -5.3688408e+117 -5.3640053e+117 -5.3624623e+117 -5.3645637e+117 -5.3714387e+117 -5.3753115e+117 -5.3636205e+117 -5.3558751e+117 -5.3602181e+117 -5.3675241e+117 -5.3749887e+117 -5.3712983e+117 -5.3785546e+117 -5.3821714e+117 -5.3858415e+117 -5.3786772e+117 -5.3825846e+117 -5.3897247e+117 -5.3961638e+117 -5.392429e+117 -5.3984321e+117 -5.402148e+117 -5.390875e+117 -5.3850178e+117 -5.3887059e+117 -5.394626e+117 -5.4009489e+117 -5.3960944e+117 -5.3999496e+117 -5.4048212e+117 -5.4087321e+117 -5.4038514e+117 -5.4076935e+117 -5.4125759e+117 -5.3676656e+117 -5.365029e+117 -5.3691607e+117 -5.3721904e+117 -5.3574577e+117 -5.3608953e+117 -5.3654487e+117 -5.3616652e+117 -5.3767525e+117 -5.3732385e+117 -5.3773635e+117 -5.3812436e+117 -5.3690988e+117 -5.3642277e+117 -5.3678172e+117 -5.372959e+117 -5.3437396e+117 -5.3466126e+117 -5.3546274e+117 -5.3515083e+117 -5.3249431e+117 -5.3272501e+117 -5.3371689e+117 -5.3347328e+117 -5.3576136e+117 -5.3494902e+117 -5.3531702e+117 -5.3611565e+117 -5.3398706e+117 -5.3299318e+117 -5.3209815e+117 -5.3182444e+117 -5.3440306e+117 -5.3330959e+117 -5.3230058e+117 -5.3205721e+117 -5.3321315e+117 -5.3311684e+117 -5.3235598e+117 -5.3201714e+117 -5.3017984e+117 -5.3072082e+117 -5.321706e+117 -5.303651e+117 -5.3362904e+117 -5.3079209e+117 -5.3158622e+117 -5.3314416e+117 -5.3242407e+117 -5.3285229e+117 -5.3269675e+117 -5.3379435e+117 -5.3389095e+117 -5.3479672e+117 -5.3457346e+117 -5.3476451e+117 -5.3405782e+117 -5.3444481e+117 -5.3401889e+117 -5.3417663e+117 -5.3226621e+117 -5.3390316e+117 -5.3262196e+117 -5.3369172e+117 -5.3210008e+117 -5.3367351e+117 -5.320579e+117 -5.3490855e+117 -5.3491807e+117 -5.353042e+117 -5.356792e+117 -5.3519401e+117 -5.350478e+117 -5.3525455e+117 -5.3545015e+117 -5.3598981e+117 -5.362297e+117 -5.3569713e+117 -5.3549092e+117 -5.3353908e+117 -5.338055e+117 -5.3518209e+117 -5.3536418e+117 -5.3311037e+117 -5.3477076e+117 -5.3496965e+117 -5.332894e+117 -5.3695057e+117 -5.3669398e+117 -5.3753671e+117 -5.3655791e+117 -5.3684043e+117 -5.3746456e+117 -5.366916e+117 -5.3638129e+117 -5.3618221e+117 -5.3649527e+117 -5.3716674e+117 -5.3732321e+117 -5.3272442e+117 -5.3293495e+117 -5.3440699e+117 -5.3459025e+117 -5.343316e+117 -5.3272208e+117 -5.3429406e+117 -5.3267724e+117 -5.3562429e+117 -5.3585827e+117 -5.3644015e+117 -5.3661793e+117 -5.3600563e+117 -5.357233e+117 -5.3632037e+117 -5.3600243e+117 -5.3699429e+117 -5.3582759e+117 -5.3613669e+117 -5.3681023e+117 -5.3744966e+117 -5.3801999e+117 -5.3764739e+117 -5.3822954e+117 -5.3777784e+117 -5.3701598e+117 -5.3752415e+117 -5.3722863e+117 -5.3829128e+117 -5.3801034e+117 -5.3848363e+117 -5.3879029e+117 -5.3877642e+117 -5.3855389e+117 -5.3906588e+117 -5.3929565e+117 -5.3797077e+117 -5.3781978e+117 -5.3840601e+117 -5.3855132e+117 -5.3909085e+117 -5.3895314e+117 -5.3947177e+117 -5.3959705e+117 -5.3925062e+117 -5.3918221e+117 -5.3966102e+117 -5.397383e+117 -5.3866719e+117 -5.3809981e+117 -5.3816369e+117 -5.3872766e+117 -5.3978321e+117 -5.3954754e+117 -5.3999986e+117 -5.4023827e+117 -5.393516e+117 -5.389315e+117 -5.3926229e+117 -5.397042e+117 -5.4014248e+117 -5.3975034e+117 -5.4012155e+117 -5.4052376e+117 -5.4083157e+117 -5.4042476e+117 -5.4066472e+117 -5.410668e+117 -5.4165138e+117 -5.4128697e+117 -5.4166057e+117 -5.4201296e+117 -5.4091125e+117 -5.4052439e+117 -5.409112e+117 -5.4129126e+117 -5.4144616e+117 -5.4121811e+117 -5.4159235e+117 -5.4180544e+117 -5.4230503e+117 -5.4195517e+117 -5.4215582e+117 -5.42498e+117 -5.4260367e+117 -5.4226666e+117 -5.4239388e+117 -5.4273005e+117 -5.4192971e+117 -5.4158761e+117 -5.4171609e+117 -5.4205156e+117 -5.41871e+117 -5.4180738e+117 -5.4215657e+117 -5.4224817e+117 -5.4287245e+117 -5.425165e+117 -5.4262429e+117 -5.4299428e+117 -5.4122964e+117 -5.408352e+117 -5.4095116e+117 -5.4134989e+117 -5.4007498e+117 -5.3995703e+117 -5.4041134e+117 -5.4052569e+117 -5.4020651e+117 -5.4013626e+117 -5.405887e+117 -5.4064598e+117 -5.4142831e+117 -5.4101816e+117 -5.410656e+117 -5.4147647e+117 -5.4660017e+117 -5.4608168e+117 -5.4622783e+117 -5.4674128e+117 -5.4558309e+117 -5.4511705e+117 -5.452729e+117 -5.4573348e+117 -5.4566315e+117 -5.4546285e+117 -5.4591605e+117 -5.4611392e+117 -5.4692196e+117 -5.4640722e+117 -5.4660063e+117 -5.4711333e+117 -5.4467103e+117 -5.4425615e+117 -5.4440711e+117 -5.448254e+117 -5.4385669e+117 -5.434705e+117 -5.4359315e+117 -5.4399374e+117 -5.4390148e+117 -5.437311e+117 -5.4415355e+117 -5.4434128e+117 -5.4501654e+117 -5.4458404e+117 -5.4477859e+117 -5.4521498e+117 -5.4729071e+117 -5.4677895e+117 -5.4698358e+117 -5.4749367e+117 -5.462948e+117 -5.4584351e+117 -5.4604853e+117 -5.4649758e+117 -5.4772425e+117 -5.4721083e+117 -5.474566e+117 -5.4797756e+117 -5.4540294e+117 -5.4497271e+117 -5.4519081e+117 -5.456092e+117 -5.5133251e+117 -5.5072371e+117 -5.5092976e+117 -5.515434e+117 -5.4968149e+117 -5.4950178e+117 -5.5011002e+117 -5.502996e+117 -5.5051139e+117 -5.4988385e+117 -5.5009744e+117 -5.5073731e+117 -5.5138219e+117 -5.5114485e+117 -5.5177329e+117 -5.5202496e+117 -5.4889245e+117 -5.4829682e+117 -5.4846006e+117 -5.4906357e+117 -5.4729198e+117 -5.4714552e+117 -5.4770894e+117 -5.4786315e+117 -5.4766265e+117 -5.4747177e+117 -5.4804469e+117 -5.4823512e+117 -5.4883889e+117 -5.4864449e+117 -5.4925583e+117 -5.4945814e+117 -5.4853778e+117 -5.482777e+117 -5.4886492e+117 -5.4912621e+117 -5.480487e+117 -5.4784065e+117 -5.4842031e+117 -5.4863167e+117 -5.4966506e+117 -5.4903427e+117 -5.4925161e+117 -5.4989024e+117 -5.5013549e+117 -5.4949022e+117 -5.4975336e+117 -5.5040092e+117 -5.5228122e+117 -5.516308e+117 -5.5188689e+117 -5.5254167e+117 -5.5055128e+117 -5.5031583e+117 -5.5097082e+117 -5.5121706e+117 -5.5106749e+117 -5.5080169e+117 -5.5147305e+117 -5.5173733e+117 -5.5241065e+117 -5.5214778e+117 -5.5280817e+117 -5.5307042e+117 -5.4071342e+117 -5.4067667e+117 -5.4024752e+117 -5.4027079e+117 -5.4070149e+117 -5.4149206e+117 -5.4107811e+117 -5.4110678e+117 -5.4151377e+117 -5.4153407e+117 -5.4111835e+117 -5.4307874e+117 -5.4269405e+117 -5.4276493e+117 -5.431777e+117 -5.4229871e+117 -5.4189601e+117 -5.4192521e+117 -5.4234351e+117 -5.4195924e+117 -5.4239911e+117 -5.432912e+117 -5.4284804e+117 -5.4344622e+117 -5.3513964e+117 -5.3374801e+117 -5.3342532e+117 -5.3534478e+117 -5.3667032e+117 -5.3693511e+117 -5.3752966e+117 -5.3746002e+117 -5.3683815e+117 -5.3653514e+117 -5.3872912e+117 -5.3815811e+117 -5.3810982e+117 -5.3870341e+117 -5.3926136e+117 -5.3926072e+117 -5.3977285e+117 -5.3978814e+117 -5.635206e+117 -5.6231948e+117 -5.6326495e+117 -5.6257696e+117 -5.6422776e+117 -5.6520124e+117 -5.6545259e+117 -5.6447843e+117 -5.6311695e+117 -5.6405125e+117 -5.6283801e+117 -5.6377288e+117 -5.6473209e+117 -5.6571424e+117 -5.6501312e+117 -5.6599935e+117 -5.5989078e+117 -5.6074173e+117 -5.610216e+117 -5.6017992e+117 -5.607337e+117 -5.6046052e+117 -5.6129813e+117 -5.6157629e+117 -5.6275893e+117 -5.6160206e+117 -5.6248318e+117 -5.6187894e+117 -5.6244303e+117 -5.63336e+117 -5.6215864e+117 -5.6304652e+117 -5.5989012e+117 -5.5877684e+117 -5.5963311e+117 -5.5903154e+117 -5.6050722e+117 -5.613978e+117 -5.6165401e+117 -5.6076325e+117 -5.6044808e+117 -5.5929854e+117 -5.6015277e+117 -5.5959046e+117 -5.610309e+117 -5.6192264e+117 -5.6131761e+117 -5.6220327e+117 -5.633972e+117 -5.6433592e+117 -5.6462199e+117 -5.6367677e+117 -5.6629741e+117 -5.6530619e+117 -5.6559748e+117 -5.665963e+117 -5.6396747e+117 -5.6426323e+117 -5.6491786e+117 -5.6521905e+117 -5.6690384e+117 -5.6620637e+117 -5.6721921e+117 -5.6589713e+117 -5.5780368e+117 -5.5855915e+117 -5.5878897e+117 -5.5804264e+117 -5.5826843e+117 -5.5850229e+117 -5.5900877e+117 -5.5924037e+117 -5.6036452e+117 -5.5934437e+117 -5.6014881e+117 -5.5956263e+117 -5.6001799e+117 -5.6083127e+117 -5.5977919e+117 -5.6058593e+117 -5.5733481e+117 -5.5656423e+117 -5.5545635e+117 -5.5631646e+117 -5.570928e+117 -5.5569906e+117 -5.5680073e+117 -5.575692e+117 -5.5780805e+117 -5.5396193e+117 -5.5465051e+117 -5.5489569e+117 -5.6110321e+117 -5.6097827e+117 -5.6182749e+117 -5.6205616e+117 -5.6119809e+117 -5.614246e+117 -5.622904e+117 -5.6167716e+117 -5.6254828e+117 -5.6385315e+117 -5.6270382e+117 -5.6360487e+117 -5.6294145e+117 -5.6344569e+117 -5.643695e+117 -5.6318166e+117 -5.64101e+117 -5.6650144e+117 -5.6752278e+117 -5.6779774e+117 -5.667735e+117 -5.6454127e+117 -5.6550461e+117 -5.6576999e+117 -5.6479777e+117 -5.6505141e+117 -5.6602937e+117 -5.6532508e+117 -5.663059e+117 -5.6731382e+117 -5.67033e+117 -5.6805686e+117 -5.6834372e+117 -5.6195171e+117 -5.6282546e+117 -5.6372574e+117 -5.6465193e+117 -5.6560953e+117 -5.6659168e+117 -5.6863446e+117 -5.6760142e+117 -5.5662686e+117 -5.5563033e+117 -5.5637162e+117 -5.5588758e+117 -5.5714498e+117 -5.5794493e+117 -5.5819668e+117 -5.573961e+117 -5.5643243e+117 -5.5716914e+117 -5.561521e+117 -5.5688964e+117 -5.576613e+117 -5.5846519e+117 -5.5794531e+117 -5.5875327e+117 -5.5630398e+117 -5.555448e+117 -5.5440422e+117 -5.5525101e+117 -5.5601776e+117 -5.5468914e+117 -5.560809e+117 -5.5522126e+117 -5.5496092e+117 -5.5581172e+117 -5.5657945e+117 -5.5684529e+117 -5.541602e+117 -5.5347311e+117 -5.5373494e+117 -5.5442318e+117 -5.5319949e+117 -5.5293866e+117 -5.5361684e+117 -5.5388479e+117 -5.5336134e+117 -5.5418372e+117 -5.5493715e+117 -5.5519284e+117 -5.5444143e+117 -5.5360563e+117 -5.5386146e+117 -5.5469582e+117 -5.5545697e+117 -5.549787e+117 -5.5413473e+117 -5.5573565e+117 -5.5308247e+117 -5.524147e+117 -5.5267882e+117 -5.5335389e+117 -5.5216958e+117 -5.5195305e+117 -5.5260047e+117 -5.528283e+117 -5.5671935e+117 -5.5746606e+117 -5.5775888e+117 -5.5700594e+117 -5.5728553e+117 -5.5755363e+117 -5.5804205e+117 -5.5831368e+117 -5.5905646e+117 -5.5935006e+117 -5.5824775e+117 -5.5854072e+117 -5.5909989e+117 -5.5882693e+117 -5.5963588e+117 -5.5990723e+117 -5.769684e+117 -5.7840918e+117 -5.7875845e+117 -5.773223e+117 -5.7802519e+117 -5.7766737e+117 -5.7910629e+117 -5.7947604e+117 -5.8196188e+117 -5.7998647e+117 -5.8160913e+117 -5.8033679e+117 -5.8107625e+117 -5.8272455e+117 -5.8069602e+117 -5.8233769e+117 -5.7737677e+117 -5.7564424e+117 -5.7705611e+117 -5.7595338e+117 -5.7861191e+117 -5.8020657e+117 -5.8054022e+117 -5.7893828e+117 -5.7804999e+117 -5.7626547e+117 -5.7769258e+117 -5.7661012e+117 -5.7927173e+117 -5.8088804e+117 -5.7962855e+117 -5.8124789e+117 -5.8426533e+117 -5.8198062e+117 -5.8390839e+117 -5.8232655e+117 -5.8595803e+117 -5.8632251e+117 -5.8304713e+117 -5.8500176e+117 -5.8268042e+117 -5.8462782e+117 -5.8668963e+117 -5.870745e+117 -5.834157e+117 -5.8537824e+117 -5.8574986e+117 -5.8377792e+117 -5.878405e+117 -5.8746237e+117 -5.8415949e+117 -5.8455341e+117 -5.8613891e+117 -5.8653821e+117 -5.8863588e+117 -5.8823151e+117 -5.8492408e+117 -5.8691676e+117 -5.8724387e+117 -5.8524696e+117 -5.8584349e+117 -5.855432e+117 -5.8753417e+117 -5.878391e+117 -5.8901829e+117 -5.8934055e+117 -5.8995083e+117 -5.8963777e+117 -5.7953123e+117 -5.8100317e+117 -5.8127386e+117 -5.7980621e+117 -5.8031949e+117 -5.800601e+117 -5.8152526e+117 -5.8178898e+117 -5.8454541e+117 -5.8261807e+117 -5.8428108e+117 -5.8288437e+117 -5.8341281e+117 -5.8509214e+117 -5.8314315e+117 -5.8481776e+117 -5.8013651e+117 -5.7836432e+117 -5.7982634e+117 -5.7866954e+117 -5.8143554e+117 -5.8308715e+117 -5.833995e+117 -5.81745e+117 -5.8071642e+117 -5.7895774e+117 -5.8041938e+117 -5.7924402e+117 -5.8203809e+117 -5.837013e+117 -5.8233399e+117 -5.8399785e+117 -5.8612902e+117 -5.8813379e+117 -5.8841589e+117 -5.8640088e+117 -5.9055439e+117 -5.9026238e+117 -5.8667777e+117 -5.8695737e+117 -5.8870048e+117 -5.8898495e+117 -5.9113576e+117 -5.90844e+117 -5.7460286e+117 -5.7301462e+117 -5.7429531e+117 -5.7331849e+117 -5.7559245e+117 -5.7692686e+117 -5.7722645e+117 -5.7589392e+117 -5.7518716e+117 -5.7361131e+117 -5.7489325e+117 -5.7391038e+117 -5.7618783e+117 -5.775216e+117 -5.764699e+117 -5.7779887e+117 -5.685635e+117 -5.6961846e+117 -5.6989452e+117 -5.6883634e+117 -5.691059e+117 -5.7017723e+117 -5.704782e+117 -5.6940067e+117 -5.7069657e+117 -5.7180396e+117 -5.7209636e+117 -5.7097985e+117 -5.7126811e+117 -5.7238902e+117 -5.7269057e+117 -5.7157201e+117 -5.696981e+117 -5.7078097e+117 -5.7105394e+117 -5.6997603e+117 -5.7187141e+117 -5.7297877e+117 -5.7323352e+117 -5.7213169e+117 -5.7418228e+117 -5.7544641e+117 -5.7570738e+117 -5.7443876e+117 -5.7494814e+117 -5.7469185e+117 -5.759642e+117 -5.7622106e+117 -5.7808184e+117 -5.7835357e+117 -5.7673881e+117 -5.7700473e+117 -5.7752076e+117 -5.7726237e+117 -5.7861228e+117 -5.7886988e+117 -5.7201643e+117 -5.7048894e+117 -5.7171974e+117 -5.707818e+117 -5.7296838e+117 -5.7425499e+117 -5.7455211e+117 -5.732619e+117 -5.71375e+117 -5.7261614e+117 -5.7106373e+117 -5.722984e+117 -5.7355581e+117 -5.7486051e+117 -5.7388296e+117 -5.7519566e+117 -5.6731636e+117 -5.6835817e+117 -5.6867313e+117 -5.6762357e+117 -5.679374e+117 -5.6899193e+117 -5.693135e+117 -5.6825692e+117 -5.7083929e+117 -5.6942208e+117 -5.7051303e+117 -5.6974277e+117 -5.7149438e+117 -5.7006579e+117 -5.711673e+117 -5.7038989e+117 -5.6748255e+117 -5.6619919e+117 -5.6721592e+117 -5.6645691e+117 -5.6825588e+117 -5.6932203e+117 -5.6960669e+117 -5.6853039e+117 -5.6805085e+117 -5.6672344e+117 -5.6775587e+117 -5.6701401e+117 -5.688082e+117 -5.6988915e+117 -5.6910883e+117 -5.7019398e+117 -5.7170334e+117 -5.7295129e+117 -5.7329272e+117 -5.7203492e+117 -5.7236781e+117 -5.7363055e+117 -5.7269974e+117 -5.7396915e+117 -5.7554772e+117 -5.7589784e+117 -5.7422839e+117 -5.7457314e+117 -5.7526067e+117 -5.7491432e+117 -5.7624452e+117 -5.7659445e+117 -3.1581353e+117 -3.2697891e+117 -3.2671342e+117 -3.1556013e+117 -3.3756657e+117 -3.3785788e+117 -3.4864855e+117 -3.4832324e+117 -3.5919387e+117 -3.5951959e+117 -3.7039594e+117 -3.7006631e+117 -3.8138359e+117 -3.810143e+117 -3.9202923e+117 -3.9242778e+117 -3.6990393e+117 -3.5909811e+117 -3.5868009e+117 -3.6953434e+117 -5.7106621e+117 -5.7102302e+117 -5.7104743e+117 -5.5923383e+117 -5.5922008e+117 -5.5920581e+117 -5.8150059e+117 -5.8150761e+117 -5.9038471e+117 -5.9037352e+117 -6.170327e+117 -6.0907471e+117 -6.1551803e+117 -6.0368717e+117 -6.0905171e+117 -6.1518392e+117 -6.1611992e+117 -5.9773837e+117 -6.1864919e+117 -6.1684735e+117 -6.2197894e+117 -6.1938516e+117 -6.2266544e+117 -6.170878e+117 -6.1990806e+117 -6.2291871e+117 -6.2033213e+117 -6.2383272e+117 -6.237059e+117 -6.2376649e+117 -6.2102835e+117 -6.2271289e+117 -6.2256901e+117 -6.2273524e+117 -6.2400003e+117 -6.2312342e+117 -6.1972614e+117 -6.2051985e+117 -6.185458e+117 -6.186499e+117 -6.1239428e+117 -6.1443251e+117 -6.1389546e+117 -6.1748263e+117 -6.1400759e+117 -6.1442779e+117 -6.1854574e+117 -6.1139447e+117 -6.1102459e+117 -6.1087659e+117 -6.1352381e+117 -6.1379331e+117 -6.2237798e+117 -6.2093534e+117 -6.1942401e+117 -6.1744518e+117 -6.1667772e+117 -6.1325674e+117 -6.1097039e+117 -6.1324495e+117 -6.1086955e+117 -6.2005199e+117 -6.1983819e+117 -6.2016576e+117 -6.1397876e+117 -6.0613111e+117 -5.5036792e+117 -6.1052044e+117 -6.1395527e+117 -6.3501161e+117 -6.1573908e+117 -5.5060464e+117 -6.0990397e+117 -6.2002007e+117 -6.0970323e+117 -6.3101304e+117 -6.5822258e+117 -6.2152154e+117 -5.6122176e+117 -6.4262862e+117 -6.1362456e+117 -6.0935447e+117 -6.138262e+117 -6.2187086e+117 -6.1741605e+117 -6.2056024e+117 -6.0874315e+117 -6.0972967e+117 -6.0920809e+117 -6.2344762e+117 -6.0979894e+117 -6.0708889e+117 -6.0787572e+117 -6.4804994e+117 -6.4123979e+117 -6.2434132e+117 -6.1677279e+117 -4.9176372e+117 -4.5358831e+117 -2.6557279e+117 -1.2145436e+117 -6.1944774e+117 -6.0246201e+117 -6.16986e+117 -5.9731918e+117 -6.1306982e+117 -6.1120143e+117 -6.0791143e+117 -5.9903102e+117 -6.1532855e+117 -6.142785e+117 -6.1198256e+117 -6.1264452e+117 -6.114908e+117 -6.1337756e+117 -5.8637752e+117 -5.8878352e+117 -5.7936564e+117 -5.7540937e+117 -5.7355353e+117 -5.8713481e+117 -6.1581021e+117 -6.1227966e+117 -6.1152045e+117 -6.1475878e+117 -6.1802461e+117 -6.1612488e+117 -6.1673597e+117 -6.18481e+117 -5.7054979e+117 -5.6959851e+117 -6.1123265e+117 -6.1475378e+117 -7.9032505e+117 -6.6386536e+117 -7.474242e+117 -2.6193219e+117 -5.5643035e+117 -7.8739527e+117 -6.7117189e+117 -6.7772525e+117 -1.3430698e+118 -6.8987811e+117 -5.3447705e+117 -5.7336312e+117 -6.5937942e+117 -6.5724391e+117 -6.9818606e+117 -7.5718526e+117 -7.776065e+117 -5.5841298e+117 -6.0161064e+117 -6.0794708e+117 -6.0807856e+117 -6.0547176e+117 -6.0034743e+117 -6.0348063e+117 -6.036686e+117 -6.0290515e+117 -6.043106e+117 -6.0363981e+117 -6.0230722e+117 -5.7676285e+117 -6.2597187e+117 -6.1067887e+117 -6.9100648e+117 -6.0542285e+117 -6.0204041e+117 -6.0463124e+117 -6.1836081e+117 -6.4891428e+117 -5.8797396e+117 -5.8218889e+117 -6.2206573e+117 -6.2366714e+117 -6.0462688e+117 -6.0649901e+117 -6.0899871e+117 -6.0731617e+117 -6.0714896e+117 -6.0775795e+117 -6.0529856e+117 -6.0372192e+117 -6.0938524e+117 -6.0826554e+117 -6.0837328e+117 -6.0458846e+117 -6.0521107e+117 -6.0490349e+117 -6.0826409e+117 -1.3521069e+118 -1.2197825e+118 -6.187678e+117 -4.6205633e+117 -4.3617302e+117 -4.5407799e+117 -4.5511832e+117 -4.6682765e+117 -4.676833e+117 -4.6606805e+117 -4.5361195e+117 -4.4125209e+117 -4.2926854e+117 -4.1111006e+117 -4.2795338e+117 -4.3980217e+117 -4.5225112e+117 -4.648766e+117 -4.3880025e+117 -4.2729892e+117 -4.1604381e+117 -4.0482181e+117 -3.8776653e+117 -4.0389946e+117 -4.1501416e+117 -4.261578e+117 -4.3758907e+117 -4.49834e+117 -4.5096953e+117 -4.637171e+117 -4.7754304e+117 -4.6286911e+117 -4.7713261e+117 -4.9264176e+117 -4.7718459e+117 -4.9333351e+117 -4.62342e+117 -4.4898312e+117 -4.3666637e+117 -3.6518552e+117 -3.9286298e+117 -3.8181173e+117 -3.8132114e+117 -3.9221581e+117 -4.028474e+117 -4.0362456e+117 -4.1427123e+117 -4.1349942e+117 -4.2519646e+117 -4.2439569e+117 -4.3580986e+117 -4.4817718e+117 -4.6185705e+117 -4.7732313e+117 -4.941105e+117 -3.428167e+117 -3.5942565e+117 -3.7047001e+117 -3.7014375e+117 -3.5915691e+117 -3.9183291e+117 -3.8117481e+117 -3.8075899e+117 -3.9128852e+117 -4.0187409e+117 -4.0245763e+117 -4.1296895e+117 -4.1247029e+117 -4.3523303e+117 -4.2377586e+117 -4.2331528e+117 -4.3478033e+117 -4.7759773e+117 -4.9513773e+117 -4.7798927e+117 -4.9606802e+117 -4.9696965e+117 -4.1219023e+117 -4.0163853e+117 -3.9105324e+117 -3.5902594e+117 -3.6975545e+117 -3.6951542e+117 -3.5883582e+117 -3.8045199e+117 -3.8011539e+117 -3.9061154e+117 -4.0116392e+117 -4.1177087e+117 -4.9810313e+117 -3.9046903e+117 -3.7988558e+117 -3.7962047e+117 -3.9012401e+117 -5.4025954e+117 -5.2408144e+117 -5.7132064e+117 -5.7023827e+117 -5.709243e+117 -5.7341791e+117 -5.8303834e+117 -5.8428189e+117 -5.8235495e+117 -5.7791192e+117 -5.8434902e+117 -5.9186393e+117 -5.9163555e+117 -5.9150434e+117 -5.9192484e+117 -5.6936889e+117 -5.7097272e+117 -5.6317419e+117 -5.5514683e+117 -5.4154669e+117 -5.5266372e+117 -5.4003146e+117 -5.4949283e+117 -5.5145562e+117 -5.574045e+117 -5.4030558e+117 -5.4243764e+117 -4.8086399e+117 -4.9343891e+117 -4.9486654e+117 -4.9420906e+117 -4.8153532e+117 -4.8183896e+117 -4.804308e+117 -4.9337121e+117 -5.0569359e+117 -5.0534546e+117 -5.0578851e+117 -5.2030618e+117 -5.1844892e+117 -5.1928082e+117 -5.0682706e+117 -5.0761866e+117 -5.1758048e+117 -5.1841478e+117 -5.3296856e+117 -5.3029078e+117 -5.3154446e+117 -5.2902416e+117 -5.293497e+117 -5.2838028e+117 -5.3073187e+117 -5.4311956e+117 -5.4355112e+117 -5.4547348e+117 -5.5635177e+117 -5.6951791e+117 -5.5844294e+117 -5.5702469e+117 -5.5580394e+117 -5.5674973e+117 -4.8007927e+117 -4.9281538e+117 -4.9262308e+117 -4.7955773e+117 -5.060048e+117 -5.0576661e+117 -5.1895777e+117 -5.1944082e+117 -5.4477963e+117 -5.3198207e+117 -5.330425e+117 -5.464603e+117 -4.7835645e+117 -4.7907575e+117 -4.9235132e+117 -4.9250722e+117 -4.9237793e+117 -5.0940514e+117 -5.0811884e+117 -5.0695561e+117 -5.0618289e+117 -5.2030602e+117 -5.2187238e+117 -5.436157e+117 -5.2649564e+117 -5.2877724e+117 -5.1077578e+117 -5.3100307e+117 -5.1227807e+117 -5.3528085e+117 -5.2864936e+117 -5.2221065e+117 -5.2315109e+117 -5.2390305e+117 -5.3682324e+117 -5.2989601e+117 -5.3087435e+117 -5.3806689e+117 -5.5394763e+117 -5.5242141e+117 -5.53921e+117 -5.5545874e+117 -5.5073136e+117 -5.4904104e+117 -5.5087309e+117 -5.5244594e+117 -5.4774457e+117 -5.457624e+117 -5.4740135e+117 -5.4931171e+117 -5.4935176e+117 -5.5085633e+117 -5.5239516e+117 -5.5089348e+117 -5.4311464e+117 -5.4466122e+117 -5.4616385e+117 -5.4457774e+117 -5.409916e+117 -5.3939499e+117 -5.4148815e+117 -5.4304356e+117 -5.4446713e+117 -5.4242894e+117 -5.4403961e+117 -5.4603337e+117 -5.4610408e+117 -5.4763525e+117 -5.4913238e+117 -5.4760676e+117 -5.5358321e+117 -5.5327596e+117 -5.5201705e+117 -5.5484305e+117 -5.559252e+117 -5.5692385e+117 -5.5535853e+117 -5.5435624e+117 -5.5900737e+117 -5.5742118e+117 -5.5842214e+117 -5.6003338e+117 -5.551013e+117 -5.5667892e+117 -5.5795169e+117 -5.563637e+117 -5.4746627e+117 -5.4929923e+117 -5.5021946e+117 -5.4829929e+117 -5.4726569e+117 -5.4565948e+117 -5.4662318e+117 -5.4835777e+117 -5.4987975e+117 -5.4872204e+117 -5.5026765e+117 -5.514798e+117 -5.5090872e+117 -5.5354585e+117 -5.5253991e+117 -5.5188614e+117 -5.5407012e+117 -5.5485904e+117 -5.5413298e+117 -5.5332964e+117 -5.5251081e+117 -5.5334193e+117 -5.5250583e+117 -5.5161775e+117 -5.5415642e+117 -5.5505231e+117 -5.5430341e+117 -5.5337562e+117 -5.5490877e+117 -5.556292e+117 -5.5651836e+117 -5.5577859e+117 -5.5659374e+117 -5.5738485e+117 -5.5820351e+117 -5.5739875e+117 -5.5503426e+117 -5.5578598e+117 -5.5661006e+117 -5.5582359e+117 -5.5814825e+117 -5.5891521e+117 -5.5973418e+117 -5.5896364e+117 -5.5652882e+117 -5.5727504e+117 -5.5812673e+117 -5.5736604e+117 -5.5806862e+117 -5.5716056e+117 -5.5638195e+117 -5.5727872e+117 -5.5557279e+117 -5.5483464e+117 -5.5561018e+117 -5.5637853e+117 -5.5719638e+117 -5.563779e+117 -5.5720041e+117 -5.5804132e+117 -5.5798802e+117 -5.5884447e+117 -5.5977144e+117 -5.5889855e+117 -5.5883445e+117 -5.5804064e+117 -5.589047e+117 -5.5971468e+117 -5.6050932e+117 -5.5969611e+117 -5.6051216e+117 -5.6132587e+117 -5.6218319e+117 -5.6136622e+117 -5.6308386e+117 -5.6226368e+117 -5.5967443e+117 -5.6056677e+117 -5.6145627e+117 -5.6055452e+117 -5.6155787e+117 -5.6238477e+117 -5.6289879e+117 -5.6206144e+117 -5.6052925e+117 -5.613293e+117 -5.6187546e+117 -5.610558e+117 -5.6315945e+117 -5.6393645e+117 -5.6446458e+117 -5.6367937e+117 -5.6208657e+117 -5.6284929e+117 -5.6341265e+117 -5.6264249e+117 -5.5941285e+117 -5.6020734e+117 -5.6083184e+117 -5.6003852e+117 -5.5806376e+117 -5.5886831e+117 -5.5958624e+117 -5.5877912e+117 -5.6095281e+117 -5.6170485e+117 -5.6233661e+117 -5.6157836e+117 -5.5962914e+117 -5.6039036e+117 -5.6108798e+117 -5.6033586e+117 -5.6525011e+117 -5.6471748e+117 -5.6553968e+117 -5.6607533e+117 -5.6419338e+117 -5.6362225e+117 -5.6443457e+117 -5.6501366e+117 -5.6620439e+117 -5.6588039e+117 -5.6529761e+117 -5.6678951e+117 -5.6640662e+117 -5.6694859e+117 -5.6786694e+117 -5.673212e+117 -5.6196724e+117 -5.6116145e+117 -5.6185766e+117 -5.6266247e+117 -5.6310992e+117 -5.6247428e+117 -5.6327956e+117 -5.6391959e+117 -5.6477592e+117 -5.6412988e+117 -5.6502719e+117 -5.6567915e+117 -5.6282225e+117 -5.6351259e+117 -5.6440498e+117 -5.6371736e+117 -5.5766056e+117 -5.5608466e+117 -5.6001948e+117 -5.5918867e+117 -5.6167429e+117 -5.6082595e+117 -5.5426813e+117 -5.6334808e+117 -5.6420394e+117 -5.6470012e+117 -5.6383029e+117 -5.6245642e+117 -5.6329811e+117 -5.6376063e+117 -5.629087e+117 -5.6454232e+117 -5.6408404e+117 -5.6487067e+117 -5.6533085e+117 -5.6578369e+117 -5.6499019e+117 -5.6549507e+117 -5.6629887e+117 -5.6711009e+117 -5.6658952e+117 -5.6795732e+117 -5.67431e+117 -5.6613299e+117 -5.6566071e+117 -5.6697053e+117 -5.664901e+117 -5.6736749e+117 -5.6785052e+117 -5.6877251e+117 -5.6828745e+117 -5.6831348e+117 -5.6924274e+117 -5.6978031e+117 -5.6884749e+117 -5.1367106e+117 -5.1519099e+117 -5.9807416e+117 -5.9780977e+117 -5.9838625e+117 -6.0990555e+117 -6.0307214e+117 -6.0852464e+117 -6.0270364e+117 -6.0694636e+117 -6.0361219e+117 -6.0690192e+117 -6.0795688e+117 -6.1062826e+117 -6.0922532e+117 -6.0828501e+117 -6.0793446e+117 -5.2828319e+117 -4.9925988e+117 -5.3111594e+117 -5.2575403e+117 -5.0120155e+117 -5.2434507e+117 -5.7289247e+117 -5.6844384e+117 -5.7118119e+117 -5.4485049e+117 -5.3649688e+117 -5.6938076e+117 -5.6832628e+117 -5.4065691e+117 -5.4365292e+117 -5.2785945e+117 -4.9816469e+117 -5.0327611e+117 -5.2853714e+117 -2.7259816e+117 -2.5076987e+117 -2.6531689e+117 -2.6384016e+117 -5.6471337e+117 -5.2695773e+117 -5.3034795e+117 -5.0602268e+117 -2.3464543e+117 -2.0088101e+117 -1.5414829e+117 -5.9216904e+117 -5.890359e+117 -5.8944898e+117 -1.8319529e+117 -2.3331221e+117 -2.3144374e+117 -2.1590739e+117 -5.1738172e+117 -5.2598873e+117 -5.0019828e+117 -5.5948642e+117 -5.884944e+117 -5.2132903e+117 -4.1540413e+117 -4.7704564e+117 -3.2959333e+117 -4.1733386e+117 -4.635985e+117 -2.3116822e+117 -3.4837582e+117 -4.0070673e+117 -4.7312575e+117 -4.3854817e+117 -3.8048228e+117 -4.7137697e+117 -4.6689373e+117 -4.2982609e+117 -4.3436859e+117 -4.7367551e+117 -4.3359723e+117 -4.3970664e+117 -4.8218828e+117 -3.5493884e+117 -3.1180307e+117 -2.2702898e+117 -2.724274e+117 -4.8053417e+117 -4.3209369e+117 -4.3721575e+117 -4.0747392e+117 -3.9803437e+117 -4.0485996e+117 -4.1524941e+117 -4.4265186e+117 -4.8134119e+117 -4.7517502e+117 -2.9208548e+117 -3.4644595e+117 -3.6158055e+117 -2.9110158e+117 -2.5177068e+117 -3.1845052e+117 -2.3243663e+117 -2.5490604e+117 -3.4004284e+117 -2.8465295e+117 -1.7525139e+117 -1.8553107e+117 -3.1387113e+117 -4.4505481e+117 -2.3706642e+117 -6.084113e+117 -6.0761569e+117 -6.0580389e+117 -6.0752056e+117 -6.0608272e+117 -6.0270086e+117 -5.9185543e+117 -6.0159745e+117 -5.9107863e+117 -6.0107339e+117 -6.0086364e+117 -5.9054106e+117 -5.9004743e+117 -6.0115687e+117 -6.0591748e+117 -6.0643707e+117 -6.077188e+117 -6.0904234e+117 -6.0170077e+117 -6.0990182e+117 -6.0451228e+117 -6.314638e+116 -1.0032989e+117 -1.2362472e+117 -3.7760968e+117 -4.6793934e+117 -3.3682221e+116 -2.0701744e+117 -5.7633464e+116 -5.6558537e+117 -5.6463695e+117 -5.7523e+117 -5.4702531e+117 -4.9567481e+117 -4.9531544e+117 -4.8255305e+117 -4.6966595e+117 -4.8283636e+117 -4.6990801e+117 -4.5696552e+117 -4.5672907e+117 -4.3750754e+117 -5.2182371e+117 -5.2116143e+117 -5.0824394e+117 -5.0875408e+117 -5.3498761e+117 -5.3414736e+117 -5.4804156e+117 -4.1247047e+117 -3.886703e+117 -5.7061306e+117 -5.7072719e+117 -5.7164618e+117 -5.695836e+117 -5.6864156e+117 -5.6472425e+117 -5.6485807e+117 -5.6361937e+117 -5.646653e+117 -5.6774299e+117 -5.6624105e+117 -5.6689979e+117 -5.6728993e+117 -5.6666822e+117 -5.6766881e+117 -5.6829342e+117 -5.7089698e+117 -5.6936451e+117 -5.7061848e+117 -5.687782e+117 -5.6998341e+117 -5.7085871e+117 -5.693814e+117 -5.6787864e+117 -5.6824991e+117 -5.689698e+117 -5.6578151e+117 -5.6612997e+117 -5.671529e+117 -5.668053e+117 -5.6260015e+117 -5.6309944e+117 -5.6422542e+117 -5.6487924e+117 -5.6363566e+117 -5.6526366e+117 -5.6466874e+117 -5.6567707e+117 -5.6627297e+117 -5.6512918e+117 -5.637737e+117 -5.6414752e+117 -5.6476528e+117 -5.6180989e+117 -5.6217285e+117 -5.6316283e+117 -5.6278554e+117 -5.6869081e+117 -5.6740217e+117 -5.6759643e+117 -5.6850797e+117 -5.6550699e+117 -5.6653037e+117 -5.6633284e+117 -5.6530993e+117 -5.6516118e+117 -5.6514056e+117 -5.6610379e+117 -5.6616824e+117 -5.6725969e+117 -5.6840719e+117 -5.6722779e+117 -5.6838577e+117 -5.6134776e+117 -5.6153984e+117 -5.6250624e+117 -5.6230607e+117 -5.6349154e+117 -5.6328789e+117 -5.6428367e+117 -5.6448844e+117 -5.6311927e+117 -5.6314359e+117 -5.6413199e+117 -5.6409003e+117 -5.6121104e+117 -5.6122217e+117 -5.6216807e+117 -5.6215245e+117 -5.7415738e+117 -5.7399664e+117 -5.7584985e+117 -5.7664295e+117 -5.7795198e+117 -5.7240432e+117 -5.7391338e+117 -5.7416374e+117 -5.7114401e+117 -5.731133e+117 -5.723383e+117 -5.7183103e+117 -5.7010851e+117 -5.7055785e+117 -5.7130567e+117 -5.7418771e+117 -5.7321994e+117 -5.7451083e+117 -5.739351e+117 -5.7259142e+117 -5.6956026e+117 -5.6958697e+117 -5.7078596e+117 -5.7074398e+117 -5.6966612e+117 -5.698337e+117 -5.7102606e+117 -5.7086332e+117 -5.7212433e+117 -5.7229153e+117 -5.7362654e+117 -5.734465e+117 -5.7335256e+117 -5.7203984e+117 -5.7198978e+117 -5.7329461e+117 -5.7773641e+117 -5.7781996e+117 -5.7950886e+117 -5.7939712e+117 -5.8021773e+117 -5.7840721e+117 -5.7802618e+117 -5.7984917e+117 -5.7486645e+117 -5.750854e+117 -5.7664251e+117 -5.7638005e+117 -5.7468666e+117 -5.7474918e+117 -5.7622953e+117 -5.7615737e+117 -5.7757499e+117 -5.7552302e+117 -5.7583735e+117 -5.7797645e+117 -5.7721162e+117 -5.7938414e+117 -5.7866404e+117 -5.7717532e+117 -5.7915059e+117 -5.7881671e+117 -5.8142132e+117 -5.8082812e+117 -5.8109666e+117 -5.7845981e+117 -5.8021885e+117 -5.8084868e+117 -5.8161046e+117 -5.819845e+117 -5.8293249e+117 -5.6493442e+117 -5.6406388e+117 -5.6316747e+117 -5.6405573e+117 -5.6171819e+117 -5.6331596e+117 -5.6263087e+117 -5.6240609e+117 -5.6428036e+117 -5.6359817e+117 -5.6524932e+117 -5.6456527e+117 -5.650092e+117 -5.6585928e+117 -5.6683647e+117 -5.6597901e+117 -5.598587e+117 -5.6058365e+117 -5.6150122e+117 -5.60797e+117 -5.5965654e+117 -5.5890239e+117 -5.5801421e+117 -5.5878248e+117 -5.6138807e+117 -5.6049113e+117 -5.5963523e+117 -5.6054395e+117 -5.6137733e+117 -5.6226313e+117 -5.6317501e+117 -5.6227902e+117 -5.6142402e+117 -5.6226802e+117 -5.6317568e+117 -5.6231748e+117 -5.631634e+117 -5.6402779e+117 -5.6481282e+117 -5.6394786e+117 -5.6589135e+117 -5.6494414e+117 -5.6572891e+117 -5.6668091e+117 -5.6316864e+117 -5.640854e+117 -5.6502183e+117 -5.6409207e+117 -5.649747e+117 -5.6584515e+117 -5.668005e+117 -5.65917e+117 -5.667916e+117 -5.6758478e+117 -5.6849852e+117 -5.6769148e+117 -5.6865098e+117 -5.6947281e+117 -5.7047687e+117 -5.696421e+117 -5.6677082e+117 -5.6774394e+117 -5.6872348e+117 -5.6774978e+117 -5.7051736e+117 -5.7222883e+117 -5.7337214e+117 -5.7138572e+117 -5.7251188e+117 -5.7135545e+117 -5.7045604e+117 -5.7157611e+117 -5.694795e+117 -5.7060358e+117 -5.6859973e+117 -5.6958444e+117 -5.7249367e+117 -5.7149089e+117 -5.7230415e+117 -5.7331545e+117 -5.7345146e+117 -5.7428063e+117 -5.7516814e+117 -5.7433073e+117 -5.6545787e+117 -5.6608766e+117 -5.6696459e+117 -5.67987e+117 -5.6633585e+117 -5.6729664e+117 -5.6808922e+117 -5.687755e+117 -5.6953158e+117 -5.6881713e+117 -5.6966321e+117 -5.7050835e+117 -5.6874767e+117 -5.6954398e+117 -5.7033552e+117 -5.7131217e+117 -5.6679172e+117 -5.6853358e+117 -5.6766217e+117 -5.6765384e+117 -5.7610637e+117 -5.7622882e+117 -5.7521852e+117 -5.7711816e+117 -5.7640005e+117 -5.7636818e+117 -5.7533638e+117 -5.7741618e+117 -5.7322592e+117 -5.7422485e+117 -5.7525664e+117 -5.7424838e+117 -5.7837589e+117 -5.7733252e+117 -5.7822789e+117 -5.7928515e+117 -5.7041979e+117 -5.6970922e+117 -5.7065577e+117 -5.713912e+117 -5.7247685e+117 -5.7171e+117 -5.7273894e+117 -5.7353595e+117 -5.7430533e+117 -5.7330507e+117 -5.7436481e+117 -5.7537117e+117 -5.7123802e+117 -5.7221496e+117 -5.7320248e+117 -5.722185e+117 -5.7943006e+117 -5.7846483e+117 -5.7944793e+117 -5.7743394e+117 -5.7839345e+117 -5.8047347e+117 -5.8032729e+117 -5.8137847e+117 -5.8230054e+117 -5.8243782e+117 -5.8336277e+117 -5.8138649e+117 -5.8145276e+117 -5.8236446e+117 -5.8237291e+117 -5.8340959e+117 -5.8433541e+117 -5.8431531e+117 -5.8524178e+117 -5.8328324e+117 -5.794385e+117 -5.8043443e+117 -5.803545e+117 -5.8135873e+117 -5.7365848e+117 -5.7459296e+117 -5.744596e+117 -5.7537616e+117 -5.763965e+117 -5.7552223e+117 -5.7655524e+117 -5.774965e+117 -5.7853345e+117 -5.7843446e+117 -5.7941303e+117 -5.7739162e+117 -5.7730265e+117 -5.7836768e+117 -5.7821611e+117 -5.7929664e+117 -5.8025299e+117 -5.8035371e+117 -5.8127407e+117 -5.7926977e+117 -5.7531365e+117 -5.7624355e+117 -5.7637728e+117 -5.7731517e+117 -5.6770602e+117 -5.6857695e+117 -5.6803001e+117 -5.6715051e+117 -5.7057637e+117 -5.7005987e+117 -5.7102277e+117 -5.7154026e+117 -5.6894932e+117 -5.6989173e+117 -5.7047385e+117 -5.6951325e+117 -5.6912376e+117 -5.6824596e+117 -5.6876585e+117 -5.6964506e+117 -5.6464653e+117 -5.6531873e+117 -5.6618721e+117 -5.6550998e+117 -5.6642551e+117 -5.671168e+117 -5.6807882e+117 -5.6738336e+117 -5.6840691e+117 -5.6778505e+117 -5.6874043e+117 -5.6934381e+117 -5.6596463e+117 -5.6747385e+117 -5.668432e+117 -5.6658605e+117 -5.6964102e+117 -5.7023851e+117 -5.7115172e+117 -5.7054936e+117 -5.6829708e+117 -5.6921549e+117 -5.6990402e+117 -5.689891e+117 -5.7152345e+117 -5.725332e+117 -5.7315349e+117 -5.7213408e+117 -5.7019645e+117 -5.7188998e+117 -5.71205e+117 -5.7088199e+117 -5.7138049e+117 -5.7080176e+117 -5.7230157e+117 -5.7172145e+117 -5.7271274e+117 -5.7329851e+117 -5.7433811e+117 -5.7374206e+117 -5.7543664e+117 -5.7490593e+117 -5.7385809e+117 -5.7439225e+117 -5.7192661e+117 -5.72456e+117 -5.7338443e+117 -5.7285427e+117 -5.7466391e+117 -5.7526749e+117 -5.7616899e+117 -5.7735483e+117 -5.755564e+117 -5.7672965e+117 -5.7774113e+117 -5.7859825e+117 -5.7921711e+117 -5.7836334e+117 -5.7977391e+117 -5.7791059e+117 -5.7891828e+117 -5.7839307e+117 -5.7940694e+117 -5.80276e+117 -5.7583648e+117 -5.7673466e+117 -5.7722501e+117 -5.7633928e+117 -5.7210877e+117 -5.7279651e+117 -5.7368364e+117 -5.7484494e+117 -5.7299333e+117 -5.7413781e+117 -5.7511354e+117 -5.7595481e+117 -5.7668504e+117 -5.7583934e+117 -5.7735138e+117 -5.7550593e+117 -5.7650604e+117 -5.7612872e+117 -5.7712916e+117 -5.7798027e+117 -5.7344078e+117 -5.7495755e+117 -5.7433626e+117 -5.7406042e+117 -5.7904468e+117 -5.7978159e+117 -5.8084069e+117 -5.8010922e+117 -5.7893295e+117 -5.7829838e+117 -5.7932503e+117 -5.7996556e+117 -5.7690068e+117 -5.7792125e+117 -5.7865676e+117 -5.7763351e+117 -5.8151138e+117 -5.8044853e+117 -5.8109663e+117 -5.8216827e+117 -5.7955683e+117 -5.8017033e+117 -5.8120236e+117 -5.8059119e+117 -5.8172725e+117 -5.8234004e+117 -5.8341696e+117 -5.8280174e+117 -5.8344118e+117 -5.8290867e+117 -5.8398943e+117 -5.8452314e+117 -5.8072694e+117 -5.8124178e+117 -5.8229149e+117 -5.8176545e+117 -5.8593456e+117 -5.8451961e+117 -5.8555543e+117 -5.8390422e+117 -5.8493987e+117 -5.8654615e+117 -5.8683976e+117 -5.87849e+117 -5.887694e+117 -5.8845767e+117 -5.8937284e+117 -5.8744529e+117 -5.8712007e+117 -5.8765753e+117 -5.8801509e+117 -5.8902163e+117 -5.8992929e+117 -5.8956315e+117 -5.9046717e+117 -5.8855508e+117 -5.8509089e+117 -5.8612674e+117 -5.8562576e+117 -5.8666093e+117 -5.8319216e+117 -5.8193218e+117 -5.8295499e+117 -5.8119358e+117 -5.8220094e+117 -5.839464e+117 -5.841014e+117 -5.8511799e+117 -5.8604806e+117 -5.8588287e+117 -5.8681408e+117 -5.8486045e+117 -5.8463929e+117 -5.8530053e+117 -5.8555631e+117 -5.8657647e+117 -5.8750602e+117 -5.8724009e+117 -5.8816432e+117 -5.8621647e+117 -5.8260542e+117 -5.8363888e+117 -5.8326369e+117 -5.8430004e+117 -5.692418e+117 -5.701262e+117 -5.706154e+117 -5.6972564e+117 -5.8173899e+117 -5.8279178e+117 -5.8328889e+117 -5.8443885e+117 -5.8394397e+117 -5.8502597e+117 -5.8552332e+117 -5.8542673e+117 -5.8493093e+117 -5.8601947e+117 -5.8650626e+117 -5.8902395e+117 -5.9005602e+117 -5.9104321e+117 -5.9152071e+117 -5.9053042e+117 -5.9010363e+117 -5.9056857e+117 -5.8854041e+117 -5.8957964e+117 -5.8806852e+117 -5.8910882e+117 -5.9199062e+117 -5.9289501e+117 -5.9099473e+117 -5.9245253e+117 -5.9335942e+117 -5.9145519e+117 -5.9240612e+117 -5.9340346e+117 -5.9192558e+117 -5.9292053e+117 -5.9382517e+117 -5.9430826e+117 -5.8817106e+117 -5.8663401e+117 -5.876835e+117 -5.8613435e+117 -5.8717449e+117 -5.8867826e+117 -5.8906752e+117 -5.9006778e+117 -5.895762e+117 -5.905795e+117 -5.9148852e+117 -5.9097442e+117 -5.8964935e+117 -5.8917306e+117 -5.9053957e+117 -5.9153924e+117 -5.9006652e+117 -5.910662e+117 -5.9197224e+117 -5.9244455e+117 -5.8712735e+117 -5.8817904e+117 -5.8761166e+117 -5.8865864e+117 -5.9437201e+117 -5.9388946e+117 -5.947858e+117 -5.9525664e+117 -5.9523477e+117 -5.948163e+117 -5.9568842e+117 -5.9610277e+117 -5.8122792e+117 -5.8221193e+117 -5.8313972e+117 -5.8215048e+117 -5.8406887e+117 -5.8310949e+117 -5.8395304e+117 -5.8487039e+117 -5.8036828e+117 -5.7838828e+117 -5.7957856e+117 -5.8219795e+117 -5.8123869e+117 -5.7925727e+117 -5.8159255e+117 -5.8064335e+117 -5.7883678e+117 -5.8217857e+117 -5.8291603e+117 -5.8323975e+117 -5.8429166e+117 -5.8509009e+117 -5.8586549e+117 -5.8413986e+117 -5.8611006e+117 -5.8518232e+117 -5.8686147e+117 -5.8526169e+117 -5.8615964e+117 -5.8707016e+117 -5.8614776e+117 -5.8795213e+117 -5.870399e+117 -5.8867153e+117 -5.8780002e+117 -5.8367249e+117 -5.8473386e+117 -5.8292492e+117 -5.8385508e+117 -5.8570698e+117 -5.8668288e+117 -5.8480832e+117 -5.8580012e+117 -5.8765925e+117 -5.8855827e+117 -5.8668831e+117 -5.8762718e+117 -5.8857439e+117 -5.894416e+117 -5.8943004e+117 -5.902715e+117 -5.9020849e+117 -5.9101792e+117 -5.9091974e+117 -5.9169956e+117 -5.9155882e+117 -5.923199e+117 -5.9216349e+117 -5.9290729e+117 -5.8840567e+117 -5.9016825e+117 -5.892714e+117 -5.8905147e+117 -5.9079359e+117 -5.8990884e+117 -5.9146542e+117 -5.9084915e+117 -5.86966e+117 -5.8875581e+117 -5.8784504e+117 -5.8772057e+117 -5.8949485e+117 -5.8859337e+117 -5.9019204e+117 -5.8946289e+117 -5.9273583e+117 -5.9346472e+117 -5.9328541e+117 -5.9400016e+117 -5.9380113e+117 -5.9450351e+117 -5.9430044e+117 -5.9498958e+117 -5.9132836e+117 -5.9301246e+117 -5.9216185e+117 -5.9079591e+117 -5.9249601e+117 -5.9163418e+117 -5.93646e+117 -5.9313639e+117 -5.9024459e+117 -5.919585e+117 -5.9109001e+117 -5.8965378e+117 -5.9138737e+117 -5.9050744e+117 -5.9260977e+117 -5.9204839e+117 -5.9515161e+117 -5.9467292e+117 -5.9679206e+117 -5.959681e+117 -5.9633442e+117 -5.9549599e+117 -5.9694112e+117 -5.9739238e+117 -5.9374742e+117 -5.9420818e+117 -5.9587617e+117 -5.9503306e+117 -5.9541845e+117 -5.9457365e+117 -5.964891e+117 -5.9603243e+117 -5.9282649e+117 -5.9329553e+117 -5.9449615e+117 -5.9365239e+117 -5.9496091e+117 -5.941204e+117 -5.955763e+117 -5.9511125e+117 -5.9234581e+117 -5.9183831e+117 -5.9351757e+117 -5.9267071e+117 -5.9401648e+117 -5.9317495e+117 -5.9463629e+117 -5.9414215e+117 -5.9561792e+117 -5.960726e+117 -5.9724414e+117 -5.9642718e+117 -5.9768192e+117 -5.9687141e+117 -5.9827081e+117 -5.9783676e+117 -5.9649608e+117 -5.9690857e+117 -5.9810154e+117 -5.9728938e+117 -5.9851056e+117 -5.9770022e+117 -5.9868838e+117 -5.9909988e+117 -5.9478715e+117 -5.9547456e+117 -5.952763e+117 -5.9596179e+117 -5.9574756e+117 -5.9643187e+117 -5.9621183e+117 -5.9689343e+117 -5.9666657e+117 -5.9734624e+117 -5.9712062e+117 -5.9779672e+117 -5.9756796e+117 -5.9823594e+117 -5.9801232e+117 -5.9867025e+117 -5.9845044e+117 -5.9910079e+117 -5.9887942e+117 -5.995247e+117 -5.9929447e+117 -5.999362e+117 -5.9970562e+117 -6.0034359e+117 -6.0011598e+117 -6.0074035e+117 -6.0051059e+117 -6.0112474e+117 -6.0088983e+117 -6.0149282e+117 -4.8688666e+117 -4.9404502e+117 -4.6639668e+117 -4.6952634e+117 -5.0940515e+117 -4.2545506e+117 -5.6619916e+117 -5.1271656e+117 -3.4876137e+117 -4.5532667e+117 -5.3495139e+117 -4.4907809e+117 -4.634791e+117 -4.3649017e+117 -4.7857097e+117 -4.8005751e+117 -4.4551415e+117 -4.947089e+117 -4.6813533e+117 -4.2622291e+117 -3.8634977e+117 -4.7374457e+117 -4.6537238e+117 -4.2600077e+117 -4.3820273e+117 -3.6423094e+117 -4.229645e+117 -2.1759797e+117 -1.6035239e+117 -2.2987688e+117 -8.1366999e+116 -2.7026996e+117 -3.4738512e+117 -2.503151e+117 -2.4563339e+117 -2.7535861e+117 -8.5410633e+116 -4.9326558e+117 -4.866527e+117 -5.139497e+117 -4.7301672e+117 -4.8593994e+117 -4.8941648e+117 -4.9161081e+117 -3.6582389e+117 -3.432918e+117 -3.2088185e+117 -5.7940009e+117 -4.8304215e+117 -4.7018551e+117 -4.9590723e+117 -4.961826e+117 -4.8326402e+117 -4.7036738e+117 -4.5753923e+117 -4.4490472e+117 -4.3231577e+117 -4.1371512e+117 -4.3241007e+117 -4.4500793e+117 -4.5765964e+117 -5.2224467e+117 -5.0903461e+117 -5.092718e+117 -5.2234646e+117 -3.8968681e+117 -3.6655034e+117 -3.0371638e+117 -5.5931715e+117 -3.6283537e+117 -3.2137135e+117 -3.4386038e+117 -5.6102785e+117 -5.6196094e+117 -5.6289907e+117 -5.637525e+117 -5.646555e+117 -5.6750411e+117 -5.6850221e+117 -5.6675503e+117 -5.6603297e+117 -5.6516755e+117 -5.747211e+117 -5.7619095e+117 -5.7775865e+117 -5.6964248e+117 -5.7080375e+117 -5.7204561e+117 -5.7333446e+117 -5.5742802e+117 -5.5730287e+117 -5.5834175e+117 -5.5820899e+117 -5.5929554e+117 -5.5913963e+117 -5.6024016e+117 -5.600719e+117 -5.5743565e+117 -5.5835484e+117 -5.6025791e+117 -5.5930672e+117 -5.5393601e+117 -5.5386028e+117 -5.5476138e+117 -5.5468598e+117 -5.5563116e+117 -5.5650717e+117 -5.5553644e+117 -5.5640198e+117 -5.5394761e+117 -5.5477762e+117 -5.5564168e+117 -5.5652087e+117 -5.5414002e+117 -5.5499262e+117 -5.5485198e+117 -5.5401165e+117 -5.5675808e+117 -5.5586479e+117 -5.5571492e+117 -5.5659992e+117 -5.5767749e+117 -5.5752015e+117 -5.5844936e+117 -5.5861393e+117 -5.5958302e+117 -5.6055869e+117 -5.5941135e+117 -5.6037395e+117 -5.4485017e+117 -5.4413372e+117 -5.4423258e+117 -5.4491621e+117 -5.4559446e+117 -5.4636091e+117 -5.4561557e+117 -5.4631053e+117 -5.4726799e+117 -5.4702992e+117 -5.4948157e+117 -5.4803206e+117 -5.4771573e+117 -5.484813e+117 -5.494339e+117 -5.49611e+117 -5.4886286e+117 -5.4974014e+117 -5.500704e+117 -5.5016422e+117 -5.5146254e+117 -5.507141e+117 -5.5079627e+117 -5.5147987e+117 -5.5227262e+117 -5.5224233e+117 -5.5308856e+117 -5.530333e+117 -5.5226558e+117 -5.5310405e+117 -5.505429e+117 -5.5141198e+117 -5.4410226e+117 -5.442623e+117 -5.449887e+117 -5.4481808e+117 -5.4575311e+117 -5.4654315e+117 -5.4635399e+117 -5.4557874e+117 -5.488198e+117 -5.4899913e+117 -5.4981954e+117 -5.4965848e+117 -5.4722596e+117 -5.4739869e+117 -5.4818754e+117 -5.4799842e+117 -5.4272935e+117 -5.4341197e+117 -5.4140729e+117 -5.4206345e+117 -5.4085508e+117 -5.416322e+117 -5.4071443e+117 -5.4224266e+117 -5.4288914e+117 -5.4354315e+117 -5.4154374e+117 -5.4203918e+117 -5.4217654e+117 -5.4141305e+117 -5.4284107e+117 -5.4354367e+117 -5.4338332e+117 -5.4269421e+117 -5.5140958e+117 -5.5152072e+117 -5.5065971e+117 -5.5052079e+117 -5.5239725e+117 -5.5327127e+117 -5.5315575e+117 -5.5229236e+117 -5.3810982e+117 -5.3753455e+117 -5.3646211e+117 -5.3696804e+117 -5.3635063e+117 -5.3733038e+117 -5.3786228e+117 -5.3841434e+117 -5.387129e+117 -5.3896512e+117 -5.3940316e+117 -5.3955311e+117 -5.4012229e+117 -5.4077675e+117 -5.4000773e+117 -5.3966362e+117 -5.3908688e+117 -5.3886404e+117 -5.3949008e+117 -5.4077903e+117 -5.4090612e+117 -5.4027237e+117 -5.401378e+117 -5.3658935e+117 -5.3697052e+117 -5.3745296e+117 -5.3711771e+117 -5.3851307e+117 -5.3796658e+117 -5.3767315e+117 -5.3825412e+117 -5.4160963e+117 -5.413015e+117 -5.4091932e+117 -5.4059051e+117 -5.4259128e+117 -5.4234798e+117 -5.4156683e+117 -5.4212419e+117 -5.4249163e+117 -5.4287556e+117 -5.4273413e+117 -5.4031345e+117 -5.3987005e+117 -5.3941148e+117 -5.3993465e+117 -5.4090975e+117 -5.4052907e+117 -5.4113569e+117 -5.4148768e+117 -5.4136836e+117 -5.4025092e+117 -5.3995597e+117 -5.3870412e+117 -5.4110118e+117 -5.4015014e+117 -5.4075289e+117 -5.3892775e+117 -5.3991937e+117 -5.3859841e+117 -5.3847929e+117 -5.3873356e+117 -5.3792831e+117 -5.3753657e+117 -5.3853549e+117 -5.3903847e+117 -5.3941626e+117 -5.3887814e+117 -5.3838224e+117 -5.4550615e+117 -5.4488745e+117 -5.440899e+117 -5.4475878e+117 -5.44286e+117 -5.4339973e+117 -5.4303959e+117 -5.4335483e+117 -5.4304311e+117 -5.4276376e+117 -5.43407e+117 -5.4420014e+117 -5.4380491e+117 -5.4310732e+117 -5.4350241e+117 -5.4214812e+117 -5.4280767e+117 -5.4243165e+117 -5.417825e+117 -5.4762092e+117 -5.4832484e+117 -5.4769198e+117 -5.4693659e+117 -5.4617576e+117 -5.468841e+117 -5.4620066e+117 -5.4546859e+117 -5.4564672e+117 -5.4491589e+117 -5.4452337e+117 -5.4525675e+117 -5.4641651e+117 -5.4602773e+117 -5.468196e+117 -5.4720104e+117 -5.4985925e+117 -5.5063938e+117 -5.5058772e+117 -5.4913763e+117 -5.5005628e+117 -5.4852397e+117 -5.4926735e+117 -5.5007841e+117 -5.5074438e+117 -5.5152468e+117 -5.5089317e+117 -5.4803555e+117 -5.4881055e+117 -5.4766398e+117 -5.4845124e+117 -5.4925204e+117 -5.4960843e+117 -5.5042018e+117 -5.50062e+117 -5.517116e+117 -5.5230657e+117 -5.5309972e+117 -5.5253011e+117 -5.5336909e+117 -5.5392715e+117 -5.547661e+117 -5.542122e+117 -5.5378736e+117 -5.5260143e+117 -5.529308e+117 -5.534686e+117 -5.5124466e+117 -5.5207794e+117 -5.5173313e+117 -5.5088971e+117 -5.5681319e+117 -5.5735379e+117 -5.5825018e+117 -5.5770927e+117 -5.556155e+117 -5.5647275e+117 -5.5592636e+117 -5.5506455e+117 -5.5464814e+117 -5.5520667e+117 -5.5551615e+117 -5.5434212e+117 -5.5640753e+117 -5.5731338e+117 -5.569898e+117 -5.5608985e+117 -5.5957792e+117 -5.6010856e+117 -5.5917299e+117 -5.5863486e+117 -5.5823896e+117 -5.591829e+117 -5.5885501e+117 -5.5791391e+117 -5.5982905e+117 -5.6016193e+117 -5.6116218e+117 -5.6081618e+117 -5.6106976e+117 -5.6206324e+117 -5.6156337e+117 -5.6055583e+117 -5.5235783e+117 -5.5122565e+117 -5.5203804e+117 -5.5153797e+117 -5.52977e+117 -5.5214395e+117 -5.5184167e+117 -5.5266409e+117 -5.4938337e+117 -5.4885428e+117 -5.4915101e+117 -5.4968051e+117 -5.4831236e+117 -5.4777017e+117 -5.4806648e+117 -5.4860609e+117 -5.4887745e+117 -5.4833234e+117 -5.4857339e+117 -5.4912669e+117 -5.4996229e+117 -5.4942188e+117 -5.4967912e+117 -5.5023099e+117 -5.4974807e+117 -5.4916238e+117 -5.4933826e+117 -5.499345e+117 -5.4897941e+117 -5.4878366e+117 -5.4934525e+117 -5.4955227e+117 -5.5048029e+117 -5.4991454e+117 -5.5013578e+117 -5.5071194e+117 -5.5053217e+117 -5.5033613e+117 -5.5092385e+117 -5.5113006e+117 -5.5242531e+117 -5.5326718e+117 -5.5269202e+117 -5.5355036e+117 -5.5293091e+117 -5.5379887e+117 -5.540439e+117 -5.5315904e+117 -5.4745503e+117 -5.4691919e+117 -5.4704277e+117 -5.4759003e+117 -5.4677618e+117 -5.4662074e+117 -5.4714069e+117 -5.4730209e+117 -5.482229e+117 -5.4767567e+117 -5.4785147e+117 -5.4840816e+117 -5.4815732e+117 -5.4800805e+117 -5.4857748e+117 -5.4873968e+117 -5.4673108e+117 -5.4622381e+117 -5.4644867e+117 -5.4696162e+117 -5.4595553e+117 -5.4566012e+117 -5.4617452e+117 -5.4646341e+117 -5.472289e+117 -5.4669822e+117 -5.4699346e+117 -5.4752448e+117 -5.4748462e+117 -5.4725248e+117 -5.4778578e+117 -5.48021e+117 -5.4987054e+117 -5.5069545e+117 -5.510552e+117 -5.5023401e+117 -5.5057715e+117 -5.513858e+117 -5.5172265e+117 -5.5091048e+117 -5.4853187e+117 -5.4815915e+117 -5.4870265e+117 -5.4906599e+117 -5.4794422e+117 -5.4738843e+117 -5.477782e+117 -5.4832547e+117 -5.4744081e+117 -5.47064e+117 -5.4760606e+117 -5.4798385e+117 -5.4666637e+117 -5.462558e+117 -5.4682341e+117 -5.4721936e+117 -5.4865758e+117 -5.4958127e+117 -5.4977423e+117 -5.4889638e+117 -5.5003691e+117 -5.4919403e+117 -5.503555e+117 -5.4952157e+117 -5.4699689e+117 -5.466081e+117 -5.4719823e+117 -5.4756502e+117 -5.4656278e+117 -5.4591412e+117 -5.4624076e+117 -5.468554e+117 -5.4496305e+117 -5.4458593e+117 -5.4524929e+117 -5.4559839e+117 -5.4600515e+117 -5.4539752e+117 -5.458399e+117 -5.4642444e+117 -5.4345255e+117 -5.4292695e+117 -5.4354337e+117 -5.4404263e+117 -5.424541e+117 -5.4206259e+117 -5.4268454e+117 -5.4308675e+117 -5.4393468e+117 -5.4330479e+117 -5.4370915e+117 -5.4433183e+117 -5.4463828e+117 -5.4416037e+117 -5.4477881e+117 -5.452383e+117 -5.4568476e+117 -5.4511189e+117 -5.4557663e+117 -5.4611593e+117 -5.4447361e+117 -5.4397057e+117 -5.4453409e+117 -5.4501754e+117 -5.4546014e+117 -5.4492938e+117 -5.4533366e+117 -5.4585366e+117 -5.4652318e+117 -5.4599201e+117 -5.4637383e+117 -5.4690129e+117 -5.415472e+117 -5.4117368e+117 -5.4165919e+117 -5.4203023e+117 -5.4060883e+117 -5.400136e+117 -5.4041901e+117 -5.4099313e+117 -5.413038e+117 -5.4084726e+117 -5.4142073e+117 -5.4186597e+117 -5.424116e+117 -5.4194048e+117 -5.4237322e+117 -5.4282846e+117 -5.3913032e+117 -5.3869947e+117 -5.3939908e+117 -5.3981595e+117 -5.3801167e+117 -5.3731005e+117 -5.370116e+117 -5.3649749e+117 -5.3771091e+117 -5.3847969e+117 -5.3865827e+117 -5.3814836e+117 -5.3894278e+117 -5.3942167e+117 -5.402414e+117 -5.3957388e+117 -5.4005213e+117 -5.4070781e+117 -5.4127018e+117 -5.4074903e+117 -5.401286e+117 -5.4044119e+117 -5.4008553e+117 -5.4112284e+117 -5.417876e+117 -5.3976943e+117 -5.3918007e+117 -5.3993147e+117 -5.4048987e+117 -5.411033e+117 -5.4056217e+117 -5.4120982e+117 -5.4173332e+117 -5.4230094e+117 -5.4168827e+117 -5.422897e+117 -5.4286641e+117 -5.4333268e+117 -5.4284137e+117 -5.4328566e+117 -5.437651e+117 -5.4234321e+117 -5.4179169e+117 -5.4230531e+117 -5.4284561e+117 -5.4340727e+117 -5.4284897e+117 -5.4337994e+117 -5.4392383e+117 -5.4427482e+117 -5.4385285e+117 -5.4438763e+117 -5.4479872e+117 -5.4338694e+117 -5.432549e+117 -5.4361892e+117 -5.4375852e+117 -5.4311064e+117 -5.4297911e+117 -5.4334526e+117 -5.4347812e+117 -5.4416425e+117 -5.4374208e+117 -5.4387672e+117 -5.4430015e+117 -5.444352e+117 -5.4401483e+117 -5.4415129e+117 -5.4456563e+117 -5.4286742e+117 -5.4267329e+117 -5.4301633e+117 -5.4322013e+117 -5.4238833e+117 -5.4203776e+117 -5.4240568e+117 -5.4274227e+117 -5.4320903e+117 -5.4279436e+117 -5.4312676e+117 -5.4353682e+117 -5.4360328e+117 -5.4339758e+117 -5.4380695e+117 -5.4401459e+117 -5.4514487e+117 -5.4463626e+117 -5.4494843e+117 -5.4544849e+117 -5.439832e+117 -5.4365913e+117 -5.4413374e+117 -5.4445194e+117 -5.4471643e+117 -5.4425099e+117 -5.4446119e+117 -5.4492774e+117 -5.4542281e+117 -5.452085e+117 -5.4571169e+117 -5.4592981e+117 -5.4610213e+117 -5.4559299e+117 -5.4573789e+117 -5.4625147e+117 -5.4475645e+117 -5.4461756e+117 -5.4509191e+117 -5.4523305e+117 -5.4501239e+117 -5.4488669e+117 -5.4536146e+117 -5.4548127e+117 -5.4598329e+117 -5.458666e+117 -5.463856e+117 -5.4650287e+117 -3.906231e+117 -4.0844414e+117 -4.0843204e+117 -4.206052e+117 -4.2073315e+117 -4.0863687e+117 -4.2052726e+117 -4.2035545e+117 -4.0808197e+117 -4.4528008e+117 -4.3289075e+117 -4.3307137e+117 -4.3275981e+117 -4.4538102e+117 -4.4541178e+117 -4.452272e+117 -4.3278172e+117 -4.4495447e+117 -4.3265126e+117 -4.5795797e+117 -4.5802053e+117 -4.5793386e+117 -4.5788878e+117 -4.7040937e+117 -4.7055412e+117 -4.7072718e+117 -4.7060659e+117 -4.5787724e+117 -4.7033646e+117 -4.6998371e+117 -4.5748389e+117 -4.8347987e+117 -4.8360715e+117 -4.831657e+117 -4.8337845e+117 -4.8308292e+117 -4.9596417e+117 -4.9635466e+117 -4.960504e+117 -4.9589058e+117 -4.9606316e+117 -4.8265372e+117 -4.8290524e+117 -4.9569087e+117 -4.9546491e+117 -5.0868619e+117 -5.0900129e+117 -5.0907111e+117 -5.087678e+117 -5.2147382e+117 -5.2145015e+117 -5.2149081e+117 -5.2146309e+117 -5.340367e+117 -5.3400205e+117 -5.3399252e+117 -5.4676141e+117 -5.466953e+117 -5.466336e+117 -3.6733527e+117 -3.8450983e+117 -3.8414773e+117 -3.9580141e+117 -3.9623906e+117 -4.0797324e+117 -4.1990678e+117 -4.1941147e+117 -4.0749433e+117 -4.3217676e+117 -4.3165593e+117 -4.4385914e+117 -4.4448237e+117 -4.5700427e+117 -4.69633e+117 -4.6917773e+117 -4.5637047e+117 -3.4454509e+117 -3.728906e+117 -3.6154762e+117 -3.6103941e+117 -3.7239079e+117 -3.8356587e+117 -3.8404923e+117 -3.9482504e+117 -3.9528567e+117 -4.0689092e+117 -4.0635901e+117 -4.1807656e+117 -4.1872571e+117 -4.3089479e+117 -4.4323881e+117 -4.4262699e+117 -4.3020037e+117 -5.4279227e+117 -5.436035e+117 -5.4170148e+117 -5.4263877e+117 -5.4382054e+117 -5.4292406e+117 -5.435761e+117 -5.419057e+117 -5.417713e+117 -5.4519815e+117 -5.4444055e+117 -5.4670247e+117 -5.4597919e+117 -5.4905213e+117 -5.4985499e+117 -5.4823115e+117 -5.4747967e+117 -5.4662704e+117 -5.4598863e+117 -5.4530614e+117 -5.4463181e+117 -5.4732217e+117 -5.4802346e+117 -5.4952089e+117 -5.487874e+117 -5.5629448e+117 -5.5547344e+117 -5.5464709e+117 -5.5390432e+117 -5.5245407e+117 -5.5314879e+117 -5.5183131e+117 -5.5456079e+117 -5.5537506e+117 -5.5298754e+117 -5.5374546e+117 -5.5120432e+117 -5.5161471e+117 -5.5099061e+117 -5.5225442e+117 -5.5102223e+117 -5.5128401e+117 -5.6272338e+117 -5.6369223e+117 -5.6084682e+117 -5.6176432e+117 -5.5991653e+117 -5.589739e+117 -5.5802919e+117 -5.5715555e+117 -5.579672e+117 -5.588767e+117 -5.5622306e+117 -5.5707252e+117 -5.6073919e+117 -5.5980819e+117 -5.6169087e+117 -5.6266008e+117 -5.1419945e+117 -5.1642737e+117 -5.1666035e+117 -5.1992386e+117 -5.2437743e+117 -5.2049164e+117 -5.1910098e+117 -5.2328335e+117 -5.212498e+117 -5.2567919e+117 -5.1808141e+117 -5.2388469e+117 -3.2199007e+117 -3.3841421e+117 -3.3873891e+117 -3.4994896e+117 -3.4953397e+117 -3.6045559e+117 -3.6092817e+117 -3.7196184e+117 -3.7148358e+117 -3.8261486e+117 -3.8312496e+117 -3.9378502e+117 -3.9433923e+117 -4.0517132e+117 -4.0578095e+117 -4.1742922e+117 -4.1676127e+117 -5.326839e+117 -5.3282891e+117 -5.3223071e+117 -5.3218491e+117 -5.3317631e+117 -5.3373194e+117 -5.3302136e+117 -5.338878e+117 -5.3437434e+117 -5.3482691e+117 -5.3428976e+117 -5.3486436e+117 -5.3534123e+117 -5.3538963e+117 -5.3597211e+117 -5.3580448e+117 -5.3604069e+117 -5.3598255e+117 -5.3498112e+117 -5.3545744e+117 -5.3501343e+117 -5.3448847e+117 -5.3594445e+117 -5.3644364e+117 -5.3605337e+117 -5.3550749e+117 -5.329436e+117 -5.3346401e+117 -5.3296747e+117 -5.324856e+117 -5.3402545e+117 -5.3452816e+117 -5.3397238e+117 -5.3346568e+117 -5.2849611e+117 -5.2701306e+117 -5.2926705e+117 -5.2880874e+117 -5.2979999e+117 -5.2859237e+117 -5.2931895e+117 -5.3008973e+117 -5.3047667e+117 -5.3097945e+117 -5.3153454e+117 -5.3106471e+117 -5.3160568e+117 -5.3211295e+117 -5.3199488e+117 -5.3241319e+117 -5.3139151e+117 -5.3178915e+117 -5.3027892e+117 -5.3083708e+117 -5.3168329e+117 -5.3181611e+117 -5.3145533e+117 -5.3150984e+117 -5.3047356e+117 -5.3179328e+117 -5.2647987e+117 -5.2818446e+117 -5.2580576e+117 -5.2858494e+117 -5.2712532e+117 -5.3014215e+117 -5.2914539e+117 -5.2974417e+117 -5.2994762e+117 -5.1989494e+117 -5.2753375e+117 -5.2527773e+117 -5.2445312e+117 -5.2786374e+117 -5.2682868e+117 -5.2396537e+117 -5.2706458e+117 -5.3004869e+117 -5.3162126e+117 -5.327573e+117 -5.3180391e+117 -5.3034264e+117 -5.2916583e+117 -5.2828822e+117 -5.3124352e+117 -5.3192272e+117 -5.3259544e+117 -5.3282098e+117 -5.3620338e+117 -5.34666e+117 -5.3554017e+117 -5.3688938e+117 -5.3489485e+117 -5.3473315e+117 -5.3375068e+117 -5.3407916e+117 -5.3345531e+117 -5.3585742e+117 -5.353186e+117 -5.3618071e+117 -5.3479317e+117 -5.3806266e+117 -5.3729203e+117 -5.3850757e+117 -5.3714262e+117 -5.3877425e+117 -5.3936161e+117 -5.3946142e+117 -5.3905726e+117 -5.3653048e+117 -5.3709528e+117 -5.3612095e+117 -5.3567311e+117 -5.3765772e+117 -5.3809356e+117 -5.3706619e+117 -5.3661226e+117 -5.287361e+117 -5.3210573e+117 -5.2739727e+117 -5.3032156e+117 -5.3424025e+117 -5.3040457e+117 -5.34184e+117 -5.2088038e+117 -5.2600223e+117 -5.3230475e+117 -5.3421789e+117 -5.3580261e+117 -5.3506778e+117 -5.3739207e+117 -5.4026038e+117 -5.384593e+117 -5.3715086e+117 -5.3949787e+117 -3.1633375e+117 -3.2750751e+117 -3.2727789e+117 -3.1613035e+117 -3.3811559e+117 -3.3839488e+117 -3.4922661e+117 -3.4886028e+117 -3.7119637e+117 -3.6018302e+117 -3.5975788e+117 -3.7070594e+117 -3.8175739e+117 -3.8228294e+117 -3.9283865e+117 -3.933076e+117 -5.2142615e+117 -5.2186884e+117 -5.2682558e+117 -5.2740018e+117 -5.2923042e+117 -5.2252705e+117 -5.2857526e+117 -5.2832065e+117 -5.2282356e+117 -5.2852229e+117 -5.222773e+117 -5.2212895e+117 -5.2803942e+117 -5.2775347e+117 -5.2532876e+117 -5.2405757e+117 -5.2413508e+117 -5.2434793e+117 -5.2476388e+117 -5.2567344e+117 -5.2390717e+117 -5.2436021e+117 -5.243664e+117 -5.2422353e+117 -5.2498182e+117 -5.2827197e+117 -5.2708956e+117 -5.2365399e+117 -5.2698878e+117 -5.2828414e+117 -5.2480372e+117 -5.254147e+117 -5.2513088e+117 -5.2456355e+117 -5.246027e+117 -5.2482437e+117 -5.2592711e+117 -5.2484261e+117 -5.2459622e+117 -5.2583064e+117 -5.2523819e+117 -5.2558861e+117 -5.2648501e+117 -5.2497448e+117 -5.2499515e+117 -5.2618572e+117 -5.2551966e+117 -5.2519347e+117 -5.2548181e+117 -5.2517949e+117 -5.2564539e+117 -5.256448e+117 -5.259493e+117 -5.2644788e+117 -5.3056246e+117 -5.2899046e+117 -5.2702935e+117 -5.3052255e+117 -5.2987989e+117 -5.2911774e+117 -5.2887929e+117 -5.2910274e+117 -5.2956571e+117 -5.2970306e+117 -5.2952382e+117 -5.297627e+117 -5.2954686e+117 -5.3004054e+117 -5.2995601e+117 -5.3031215e+117 -5.3065303e+117 -5.3059158e+117 -5.3859391e+117 -5.3817384e+117 -5.3854254e+117 -5.3898361e+117 -5.377084e+117 -5.3716975e+117 -5.375055e+117 -5.3805842e+117 -5.3818113e+117 -5.3783675e+117 -5.3840433e+117 -5.3875578e+117 -5.392703e+117 -5.389053e+117 -5.3936478e+117 -5.3974372e+117 -5.3651291e+117 -5.3574296e+117 -5.3611155e+117 -5.3685583e+117 -5.3382242e+117 -5.3265606e+117 -5.3239756e+117 -5.3441368e+117 -5.3334126e+117 -5.3532986e+117 -5.349106e+117 -5.352757e+117 -5.3489521e+117 -5.3569372e+117 -5.3604945e+117 -5.3718726e+117 -5.3645003e+117 -5.368115e+117 -5.3753307e+117 -5.3692632e+117 -5.365302e+117 -5.3652062e+117 -5.3717192e+117 -5.3754706e+117 -5.3640965e+117 -5.3567257e+117 -5.3609289e+117 -5.3679094e+117 -5.3752667e+117 -5.3716433e+117 -5.378829e+117 -5.3824004e+117 -5.3860243e+117 -5.3788852e+117 -5.3827186e+117 -5.3898474e+117 -5.3963161e+117 -5.3926365e+117 -5.3986477e+117 -5.4023232e+117 -5.3911481e+117 -5.3852857e+117 -5.3889449e+117 -5.3948725e+117 -5.4012537e+117 -5.3963955e+117 -5.4002202e+117 -5.4050933e+117 -5.4089693e+117 -5.4040973e+117 -5.4078992e+117 -5.4127707e+117 -5.3684877e+117 -5.3658294e+117 -5.3697511e+117 -5.3728413e+117 -5.3581606e+117 -5.3614163e+117 -5.3660218e+117 -5.3623836e+117 -5.377294e+117 -5.3737358e+117 -5.3777893e+117 -5.3817105e+117 -5.3695663e+117 -5.3646654e+117 -5.3681862e+117 -5.3733522e+117 -5.344351e+117 -5.3471375e+117 -5.3551159e+117 -5.3521166e+117 -5.326856e+117 -5.328828e+117 -5.3379571e+117 -5.3356594e+117 -5.3580089e+117 -5.3499007e+117 -5.3535082e+117 -5.3614978e+117 -5.3403516e+117 -5.3308144e+117 -5.3235635e+117 -5.3198761e+117 -5.3445051e+117 -5.3338737e+117 -5.3245588e+117 -5.3346361e+117 -5.3318009e+117 -5.3246724e+117 -5.3030538e+117 -5.3233926e+117 -5.3040833e+117 -5.2994583e+117 -5.3001381e+117 -5.297708e+117 -5.3108912e+117 -5.3226139e+117 -5.3375063e+117 -5.3138576e+117 -5.318471e+117 -5.3337014e+117 -5.3294579e+117 -5.3347876e+117 -5.3334116e+117 -5.3406333e+117 -5.3415196e+117 -5.3497899e+117 -5.3492373e+117 -5.348273e+117 -5.3437224e+117 -5.3461339e+117 -5.3406447e+117 -5.3442892e+117 -5.3290904e+117 -5.3416642e+117 -5.3323986e+117 -5.3395779e+117 -5.3275354e+117 -5.3394134e+117 -5.3271168e+117 -5.3509906e+117 -5.3527193e+117 -5.3539753e+117 -5.3578115e+117 -5.3554593e+117 -5.3522144e+117 -5.3544281e+117 -5.3581147e+117 -5.3610906e+117 -5.363499e+117 -5.3604142e+117 -5.3565176e+117 -5.341648e+117 -5.3440409e+117 -5.3543828e+117 -5.3560883e+117 -5.3373719e+117 -5.3502964e+117 -5.3522544e+117 -5.3392455e+117 -5.3731057e+117 -5.3686778e+117 -5.376692e+117 -5.3673973e+117 -5.3721159e+117 -5.3760075e+117 -5.3705452e+117 -5.3654431e+117 -5.3636706e+117 -5.3687715e+117 -5.3730638e+117 -5.3745777e+117 -5.3336146e+117 -5.3356382e+117 -5.3467408e+117 -5.3485289e+117 -5.3459026e+117 -5.3333421e+117 -5.3454717e+117 -5.3330959e+117 -5.3580497e+117 -5.3621945e+117 -5.3657015e+117 -5.3675089e+117 -5.3636823e+117 -5.3589031e+117 -5.3670775e+117 -5.3619284e+117 -5.371349e+117 -5.3602029e+117 -5.3652492e+117 -5.369511e+117 -5.3754504e+117 -5.3809398e+117 -5.3773991e+117 -5.3830205e+117 -5.378498e+117 -5.3710449e+117 -5.375931e+117 -5.373194e+117 -5.3835257e+117 -5.3806888e+117 -5.3853346e+117 -5.3884251e+117 -5.3883864e+117 -5.3861711e+117 -5.3912012e+117 -5.3934981e+117 -5.3806149e+117 -5.3791383e+117 -5.3847905e+117 -5.3862251e+117 -5.3915085e+117 -5.3901567e+117 -5.3952554e+117 -5.3964824e+117 -5.3930778e+117 -5.392408e+117 -5.3970942e+117 -5.397868e+117 -5.3873806e+117 -5.3819179e+117 -5.3825132e+117 -5.3879595e+117 -5.3983209e+117 -5.3959663e+117 -5.4004307e+117 -5.4028159e+117 -5.3939115e+117 -5.3897652e+117 -5.3930923e+117 -5.3974569e+117 -5.401769e+117 -5.3978716e+117 -5.4015983e+117 -5.4055941e+117 -5.4086888e+117 -5.4046498e+117 -5.4070467e+117 -5.411036e+117 -5.4167012e+117 -5.4131114e+117 -5.4168562e+117 -5.4203308e+117 -5.4093894e+117 -5.4055565e+117 -5.4094349e+117 -5.4132e+117 -5.4147909e+117 -5.4125226e+117 -5.4162259e+117 -5.4183442e+117 -5.4232682e+117 -5.4198197e+117 -5.4218104e+117 -5.4251869e+117 -5.426252e+117 -5.4229194e+117 -5.424186e+117 -5.4275145e+117 -5.4195802e+117 -5.4161968e+117 -5.4174687e+117 -5.4207926e+117 -5.4189936e+117 -5.4183736e+117 -5.4218212e+117 -5.4227315e+117 -5.4289125e+117 -5.42539e+117 -5.4264582e+117 -5.4301162e+117 -5.41266e+117 -5.4087471e+117 -5.4098838e+117 -5.4138445e+117 -5.4012069e+117 -5.4000566e+117 -5.40454e+117 -5.4056603e+117 -5.4024935e+117 -5.401791e+117 -5.4062675e+117 -5.4068351e+117 -5.4146128e+117 -5.4105378e+117 -5.410998e+117 -5.4150797e+117 -5.4660833e+117 -5.4609016e+117 -5.4623648e+117 -5.4674975e+117 -5.455927e+117 -5.4512819e+117 -5.4528444e+117 -5.4574342e+117 -5.4567317e+117 -5.4547392e+117 -5.4592494e+117 -5.4612255e+117 -5.4693e+117 -5.4641534e+117 -5.4660837e+117 -5.4712098e+117 -5.4468368e+117 -5.442692e+117 -5.4442131e+117 -5.4483895e+117 -5.4387063e+117 -5.4348525e+117 -5.4361014e+117 -5.4400952e+117 -5.4392083e+117 -5.4375039e+117 -5.4416976e+117 -5.4435496e+117 -5.4502942e+117 -5.4459818e+117 -5.4479091e+117 -5.4522653e+117 -5.4729969e+117 -5.4678815e+117 -5.4699248e+117 -5.4750251e+117 -5.4630516e+117 -5.4585529e+117 -5.4605991e+117 -5.4650776e+117 -5.4773321e+117 -5.4721941e+117 -5.474651e+117 -5.4798606e+117 -5.454161e+117 -5.4498617e+117 -5.4520428e+117 -5.4562217e+117 -5.5132977e+117 -5.5072265e+117 -5.5092845e+117 -5.5154025e+117 -5.4968326e+117 -5.4950384e+117 -5.5011139e+117 -5.5030087e+117 -5.5051291e+117 -5.4988602e+117 -5.5009904e+117 -5.5073829e+117 -5.5138035e+117 -5.5114373e+117 -5.5177001e+117 -5.5202092e+117 -5.488969e+117 -5.4830189e+117 -5.4846509e+117 -5.4906793e+117 -5.4729884e+117 -5.4715216e+117 -5.477152e+117 -5.4786964e+117 -5.4766883e+117 -5.474785e+117 -5.4805092e+117 -5.4824092e+117 -5.4884345e+117 -5.4864961e+117 -5.4926031e+117 -5.4946214e+117 -5.4854462e+117 -5.4828526e+117 -5.4887216e+117 -5.4913268e+117 -5.4805599e+117 -5.4784807e+117 -5.4842732e+117 -5.4863863e+117 -5.4967026e+117 -5.4904009e+117 -5.4925713e+117 -5.4989507e+117 -5.5014097e+117 -5.4949629e+117 -5.4975831e+117 -5.5040525e+117 -5.5227829e+117 -5.5163018e+117 -5.518856e+117 -5.5253812e+117 -5.5055358e+117 -5.5031864e+117 -5.509729e+117 -5.5121858e+117 -5.5106929e+117 -5.5080479e+117 -5.5147538e+117 -5.5173845e+117 -5.5240897e+117 -5.5214743e+117 -5.5280561e+117 -5.530666e+117 -5.4075219e+117 -5.4071384e+117 -5.402903e+117 -5.4031335e+117 -5.4073875e+117 -5.4152258e+117 -5.4111152e+117 -5.4114093e+117 -5.415458e+117 -5.4156971e+117 -5.4115474e+117 -5.430955e+117 -5.4271533e+117 -5.4278846e+117 -5.431971e+117 -5.4232318e+117 -5.4192379e+117 -5.4195473e+117 -5.4237006e+117 -5.4199274e+117 -5.4242981e+117 -5.4331402e+117 -5.4287553e+117 -5.4346945e+117 -5.3539529e+117 -5.3435164e+117 -5.3406258e+117 -5.355912e+117 -5.3684631e+117 -5.3729572e+117 -5.3766182e+117 -5.3719095e+117 -5.3669038e+117 -5.3879816e+117 -5.3824725e+117 -5.381937e+117 -5.3876971e+117 -5.3931707e+117 -5.3931759e+117 -5.3982069e+117 -5.3983587e+117 -5.5666035e+117 -5.5547546e+117 -5.5641491e+117 -5.5571704e+117 -5.5689679e+117 -5.5564008e+117 -5.5442263e+117 -5.5534795e+117 -5.547074e+117 -5.5617572e+117 -5.5523897e+117 -5.5497937e+117 -5.5590895e+117 -5.5337898e+117 -5.5427796e+117 -5.5453489e+117 -5.5362322e+117 -5.5387917e+117 -5.5479142e+117 -5.5507229e+117 -5.5415202e+117 -3.1608252e+117 -3.2698173e+117 -3.267326e+117 -3.1585227e+117 -3.3757796e+117 -3.3787269e+117 -3.4865883e+117 -3.4833457e+117 -3.5919484e+117 -3.5952025e+117 -3.7039641e+117 -3.700671e+117 -5.7101935e+117 -5.7101708e+117 -5.5922264e+117 -5.5921615e+117 -5.8148568e+117 -5.9032862e+117 -6.0874927e+117 -6.1483642e+117 -6.1494168e+117 -6.1889074e+117 -6.1686575e+117 -6.1959599e+117 -6.2281014e+117 -6.1704426e+117 -6.2022932e+117 -6.2332713e+117 -6.209107e+117 -6.1776017e+117 -6.2328256e+117 -6.2128966e+117 -6.1800668e+117 -6.2373847e+117 -6.2374261e+117 -6.2378041e+117 -6.2255131e+117 -6.2253062e+117 -6.2320962e+117 -6.2035642e+117 -6.2075848e+117 -6.1969775e+117 -6.1711576e+117 -6.1782261e+117 -6.1715085e+117 -6.1004924e+117 -6.130565e+117 -6.1280615e+117 -6.0915434e+117 -6.1293442e+117 -6.1714503e+117 -6.1275507e+117 -6.0824005e+117 -6.1307998e+117 -6.0941919e+117 -6.0626642e+117 -6.0848997e+117 -6.1299558e+117 -6.1332391e+117 -6.2108943e+117 -6.1959716e+117 -6.1722639e+117 -6.1647732e+117 -6.1274174e+117 -6.0900259e+117 -6.1264843e+117 -6.0816429e+117 -6.1967416e+117 -6.197659e+117 -6.106827e+117 -6.145855e+117 -6.3627893e+117 -6.1593358e+117 -5.4485623e+117 -6.0980578e+117 -6.2422156e+117 -6.0972561e+117 -6.4107137e+117 -6.924112e+117 -6.3145982e+117 -5.5134646e+117 -6.1405009e+117 -6.6817968e+117 -6.2309594e+117 -7.0718423e+117 -7.2359122e+117 -6.2268185e+117 -6.497496e+117 -6.3390927e+117 -6.0793202e+117 -6.0657353e+117 -6.1050945e+117 -6.1640586e+117 -6.0728561e+117 -6.272581e+117 -6.1872623e+117 -6.11411e+117 -6.2623157e+117 -6.0579604e+117 -6.1234667e+117 -6.2426449e+117 -6.0938155e+117 -6.0653394e+117 -6.0468018e+117 -6.7792059e+117 -6.4383297e+117 -6.314131e+117 -2.4920454e+117 -9.7675656e+116 -6.037604e+117 -6.1798685e+117 -5.9856615e+117 -6.1485668e+117 -6.1274292e+117 -6.1001142e+117 -6.0154995e+117 -6.1526356e+117 -6.141636e+117 -6.1181194e+117 -6.1241328e+117 -5.8697937e+117 -5.8931795e+117 -5.7909175e+117 -5.7600216e+117 -6.1572731e+117 -6.1203394e+117 -6.1129339e+117 -6.1462838e+117 -8.0168234e+117 -6.7584989e+117 -6.8023526e+117 -1.5203946e+118 -7.4191214e+117 -5.1775709e+117 -5.7231379e+117 -6.7374217e+117 -6.6986239e+117 -7.8956976e+117 -7.9608775e+117 -1.0165449e+118 -4.7821914e+117 -6.5760774e+117 -6.8102633e+117 -6.6171717e+117 -6.7793103e+117 -7.1071365e+117 -7.1842611e+117 -6.0350262e+117 -6.0801573e+117 -6.0632211e+117 -6.0956995e+117 -6.0685712e+117 -6.0338741e+117 -6.0502041e+117 -6.0363381e+117 -6.0655105e+117 -6.0346383e+117 -6.0226398e+117 -6.0702713e+117 -6.100687e+117 -6.0396283e+117 -6.0242447e+117 -6.0092003e+117 -5.6755408e+117 -6.3443878e+117 -6.2345226e+117 -6.0958154e+117 -6.5630434e+117 -6.7769121e+117 -6.0563049e+117 -6.0220209e+117 -6.0469952e+117 -6.3746927e+117 -6.1761376e+117 -6.5956009e+117 -5.8862678e+117 -5.8341187e+117 -6.2439502e+117 -6.0536898e+117 -6.029274e+117 -6.0307874e+117 -6.0555138e+117 -6.0546454e+117 -6.0361735e+117 -6.0258288e+117 -6.0274196e+117 -6.085547e+117 -6.0811976e+117 -6.0808699e+117 -6.0439218e+117 -6.0513391e+117 -1.4475591e+118 -4.6941194e+117 -4.6910253e+117 -4.5625718e+117 -4.3742165e+117 -4.5560696e+117 -4.6825414e+117 -4.6867153e+117 -4.5644853e+117 -4.5640424e+117 -4.1264983e+117 -4.4316942e+117 -4.3090262e+117 -4.3015462e+117 -4.4222329e+117 -4.5452487e+117 -4.5549371e+117 -4.6685987e+117 -4.6765403e+117 -4.6616834e+117 -4.4149861e+117 -4.5370757e+117 -4.297285e+117 -4.1791409e+117 -3.8882596e+117 -4.0623169e+117 -4.0547896e+117 -4.1686031e+117 -4.2840051e+117 -4.4008205e+117 -4.5235929e+117 -4.6499108e+117 -4.3886455e+117 -4.273321e+117 -4.1613992e+117 -4.0517091e+117 -3.9409119e+117 -3.6594353e+117 -3.8283026e+117 -3.8227387e+117 -3.9332692e+117 -4.0419992e+117 -4.1508267e+117 -4.2618831e+117 -4.3765868e+117 -4.4984186e+117 -4.5097725e+117 -4.6372953e+117 -4.7766369e+117 -4.62883e+117 -4.7728851e+117 -4.928663e+117 -4.7720364e+117 -4.9348697e+117 -4.366697e+117 -3.4342079e+117 -3.6011829e+117 -3.7124421e+117 -3.7087432e+117 -3.5982797e+117 -3.9284957e+117 -3.8206913e+117 -3.8157751e+117 -3.9218265e+117 -4.028574e+117 -4.0362821e+117 -4.1427959e+117 -4.1351179e+117 -4.2519789e+117 -4.2439742e+117 -4.3581414e+117 -4.7734439e+117 -4.9432358e+117 -3.3763289e+117 -3.4879721e+117 -3.4854682e+117 -3.3737334e+117 -3.596617e+117 -3.704351e+117 -3.7013335e+117 -3.5943093e+117 -3.9183892e+117 -3.8118544e+117 -3.8076433e+117 -3.9129399e+117 -4.0187468e+117 -4.0245772e+117 -4.1296928e+117 -4.124709e+117 -4.9515244e+117 -4.9608154e+117 -3.9105348e+117 -3.5903571e+117 -3.6976557e+117 -3.6952129e+117 -3.5884343e+117 -3.8045267e+117 -3.8011577e+117 -3.9061185e+117 -5.2407812e+117 -5.7093443e+117 -5.7283735e+117 -5.7593162e+117 -5.8304944e+117 -5.8410169e+117 -5.8440971e+117 -5.7822532e+117 -5.9163297e+117 -5.9157278e+117 -5.914914e+117 -5.711699e+117 -5.6477454e+117 -5.6168486e+117 -5.414729e+117 -5.5275122e+117 -5.3964746e+117 -5.5046012e+117 -5.3833337e+117 -5.4922752e+117 -5.4752793e+117 -5.3902567e+117 -5.4140992e+117 -4.8081993e+117 -4.8108618e+117 -4.9308204e+117 -4.9375439e+117 -4.949231e+117 -4.9433422e+117 -4.8185922e+117 -4.8229344e+117 -4.8048922e+117 -4.9296467e+117 -5.0555303e+117 -5.051787e+117 -5.0502341e+117 -5.0537382e+117 -5.0602081e+117 -5.2030935e+117 -5.1733531e+117 -5.1825454e+117 -5.1929337e+117 -5.0683436e+117 -5.0762996e+117 -5.1730342e+117 -5.1674667e+117 -5.182876e+117 -5.3295622e+117 -5.3003358e+117 -5.315242e+117 -5.286007e+117 -5.292969e+117 -5.2791046e+117 -5.2776765e+117 -5.3069375e+117 -5.430692e+117 -5.434912e+117 -5.4546208e+117 -5.5469422e+117 -5.556288e+117 -4.8008404e+117 -4.927663e+117 -4.9261335e+117 -4.7960826e+117 -5.0599787e+117 -5.0575702e+117 -5.1894818e+117 -5.1943247e+117 -4.7836801e+117 -4.7908475e+117 -4.9235516e+117 -4.9261361e+117 -4.9238528e+117 -5.0947017e+117 -5.0812016e+117 -5.2649496e+117 -5.1077955e+117 -5.1228515e+117 -5.4002893e+117 -5.3870737e+117 -5.4110095e+117 -5.4248716e+117 -5.3163357e+117 -5.3567685e+117 -5.3685206e+117 -5.3262579e+117 -5.434768e+117 -5.4165084e+117 -5.409212e+117 -5.4434166e+117 -5.3765719e+117 -5.3329752e+117 -5.3381789e+117 -5.3828863e+117 -5.3427693e+117 -5.3884949e+117 -5.3935606e+117 -5.3469453e+117 -5.4227102e+117 -5.42883e+117 -5.458024e+117 -5.4507326e+117 -5.5422222e+117 -5.5433409e+117 -5.5353301e+117 -5.5500749e+117 -5.5285855e+117 -5.5221799e+117 -5.5303973e+117 -5.5367452e+117 -5.5452785e+117 -5.5376889e+117 -5.5439814e+117 -5.5515879e+117 -5.5507285e+117 -5.5584007e+117 -5.565485e+117 -5.5575658e+117 -5.5087468e+117 -5.4991076e+117 -5.5068674e+117 -5.5162045e+117 -5.4913908e+117 -5.4841512e+117 -5.4944428e+117 -5.5014283e+117 -5.5041575e+117 -5.5108499e+117 -5.5207569e+117 -5.5141835e+117 -5.5180215e+117 -5.5251524e+117 -5.5347625e+117 -5.5276999e+117 -5.4775006e+117 -5.4841718e+117 -5.4945992e+117 -5.4882335e+117 -5.4625548e+117 -5.4552139e+117 -5.4668767e+117 -5.4738053e+117 -5.4807097e+117 -5.4698929e+117 -5.4872989e+117 -5.4768303e+117 -5.4908824e+117 -5.5011139e+117 -5.5073691e+117 -5.4972344e+117 -5.5113383e+117 -5.5027118e+117 -5.4966923e+117 -5.505386e+117 -5.5200154e+117 -5.5188123e+117 -5.5128483e+117 -5.5262476e+117 -5.5310323e+117 -5.5249725e+117 -5.5324833e+117 -5.5386794e+117 -5.5092305e+117 -5.5154344e+117 -5.5237041e+117 -5.5176354e+117 -5.4612596e+117 -5.4694754e+117 -5.4856132e+117 -5.477049e+117 -5.4413516e+117 -5.4496909e+117 -5.4590773e+117 -5.4389153e+117 -5.4506682e+117 -5.4588066e+117 -5.4470543e+117 -5.4616664e+117 -5.4696829e+117 -5.4805338e+117 -5.4725002e+117 -5.4787255e+117 -5.4892949e+117 -5.4899642e+117 -5.4815602e+117 -5.4978139e+117 -5.4975008e+117 -5.5051987e+117 -5.5122748e+117 -5.5045118e+117 -5.4944619e+117 -5.5389443e+117 -5.5459188e+117 -5.5517478e+117 -5.5450519e+117 -5.5469926e+117 -5.546204e+117 -5.5400657e+117 -5.5529655e+117 -5.5262268e+117 -5.5325023e+117 -5.5395981e+117 -5.5333771e+117 -5.5580877e+117 -5.5522725e+117 -5.5589746e+117 -5.5648848e+117 -5.5644775e+117 -5.5697053e+117 -5.5753403e+117 -5.5702653e+117 -5.5797875e+117 -5.5740921e+117 -5.5786573e+117 -5.5843717e+117 -5.5680809e+117 -5.5620716e+117 -5.5726218e+117 -5.5666419e+117 -5.5524504e+117 -5.5584072e+117 -5.5636248e+117 -5.5577059e+117 -5.596587e+117 -5.5947112e+117 -5.5895289e+117 -5.6018523e+117 -5.5816029e+117 -5.5765046e+117 -5.5826556e+117 -5.587779e+117 -5.5906915e+117 -5.5861231e+117 -5.5923687e+117 -5.597054e+117 -5.5993889e+117 -5.6066864e+117 -5.6116268e+117 -5.6041688e+117 -5.5582529e+117 -5.5515219e+117 -5.5577888e+117 -5.5646404e+117 -5.5717009e+117 -5.5647765e+117 -5.5719679e+117 -5.5790288e+117 -5.5845154e+117 -5.5780725e+117 -5.5853944e+117 -5.5916668e+117 -5.5646486e+117 -5.571035e+117 -5.5776317e+117 -5.5713288e+117 -5.5112658e+117 -5.5220303e+117 -5.5311888e+117 -5.5198663e+117 -5.4984954e+117 -5.4895207e+117 -5.5011432e+117 -5.5109217e+117 -5.5209985e+117 -5.5076303e+117 -5.510732e+117 -5.5172101e+117 -5.5253597e+117 -5.5185321e+117 -5.5238291e+117 -5.532088e+117 -5.5390272e+117 -5.5306512e+117 -5.5325747e+117 -5.5542798e+117 -5.5460404e+117 -5.5505463e+117 -5.5588092e+117 -5.5362755e+117 -5.5446091e+117 -5.5497564e+117 -5.5413588e+117 -5.5417571e+117 -5.5403497e+117 -5.5481562e+117 -5.5413531e+117 -5.5334588e+117 -5.5260983e+117 -5.533972e+117 -5.5220451e+117 -5.5425065e+117 -5.5511188e+117 -5.5409485e+117 -5.5316268e+117 -5.5495968e+117 -5.5563675e+117 -5.56498e+117 -5.5580531e+117 -5.5644369e+117 -5.5753089e+117 -5.5832666e+117 -5.5723832e+117 -5.5488404e+117 -5.5591577e+117 -5.567221e+117 -5.5565563e+117 -5.5826483e+117 -5.5898825e+117 -5.5977788e+117 -5.5905595e+117 -5.5662887e+117 -5.5733435e+117 -5.5816833e+117 -5.574498e+117 -5.579998e+117 -5.5711549e+117 -5.5636106e+117 -5.5723435e+117 -5.5549943e+117 -5.5476975e+117 -5.555349e+117 -5.5627533e+117 -5.5709349e+117 -5.5631582e+117 -5.5714434e+117 -5.5792411e+117 -5.5794654e+117 -5.5878247e+117 -5.5969112e+117 -5.5883803e+117 -5.5885771e+117 -5.5808243e+117 -5.5892802e+117 -5.5971546e+117 -5.6054298e+117 -5.5974996e+117 -5.605355e+117 -5.6132741e+117 -5.6219735e+117 -5.614122e+117 -5.6308091e+117 -5.6229483e+117 -5.5970501e+117 -5.6057934e+117 -5.6145331e+117 -5.6056983e+117 -5.6146084e+117 -5.6256803e+117 -5.6305873e+117 -5.6194179e+117 -5.604451e+117 -5.6151936e+117 -5.6204751e+117 -5.6096028e+117 -5.6330978e+117 -5.6403548e+117 -5.6453674e+117 -5.6380463e+117 -5.6224877e+117 -5.6296327e+117 -5.6350535e+117 -5.6278426e+117 -5.5933695e+117 -5.6039827e+117 -5.6099159e+117 -5.5993297e+117 -5.5797289e+117 -5.590571e+117 -5.5975956e+117 -5.5868773e+117 -5.6111423e+117 -5.6181874e+117 -5.6241644e+117 -5.6170741e+117 -5.5978587e+117 -5.6049883e+117 -5.6118143e+117 -5.6047585e+117 -5.6530087e+117 -5.6479584e+117 -5.6559505e+117 -5.6610389e+117 -5.6426407e+117 -5.6371749e+117 -5.6450871e+117 -5.6506052e+117 -5.6627307e+117 -5.6593961e+117 -5.6538349e+117 -5.6683159e+117 -5.6647514e+117 -5.6698881e+117 -5.6788854e+117 -5.6737112e+117 -5.620359e+117 -5.612508e+117 -5.6192877e+117 -5.6271077e+117 -5.6316581e+117 -5.6256533e+117 -5.6334821e+117 -5.6395324e+117 -5.6482226e+117 -5.6421154e+117 -5.6509295e+117 -5.6570895e+117 -5.6290125e+117 -5.6357301e+117 -5.6445058e+117 -5.6377993e+117 -5.5864018e+117 -5.582347e+117 -5.5880867e+117 -5.5922397e+117 -5.5764016e+117 -5.570496e+117 -5.574294e+117 -5.5803751e+117 -5.6097575e+117 -5.6142746e+117 -5.594484e+117 -5.5988181e+117 -5.6053521e+117 -5.6008949e+117 -5.6214294e+117 -5.616875e+117 -5.6243399e+117 -5.629015e+117 -5.6155608e+117 -5.6080807e+117 -5.6125596e+117 -5.620044e+117 -5.5497031e+117 -5.5577271e+117 -5.5544093e+117 -5.562699e+117 -5.5662508e+117 -5.632894e+117 -5.6442186e+117 -5.6489817e+117 -5.6375093e+117 -5.6237739e+117 -5.6350018e+117 -5.6395832e+117 -5.6283426e+117 -5.6471155e+117 -5.6425607e+117 -5.6499127e+117 -5.654502e+117 -5.6592229e+117 -5.651805e+117 -5.6566198e+117 -5.6641131e+117 -5.6719519e+117 -5.6670078e+117 -5.6801679e+117 -5.6751714e+117 -5.6622859e+117 -5.6576092e+117 -5.6703997e+117 -5.6656771e+117 -5.6745713e+117 -5.6793266e+117 -5.6883723e+117 -5.683589e+117 -5.6841377e+117 -5.6932484e+117 -5.698332e+117 -5.6891909e+117 -5.9772217e+117 -5.9775046e+117 -6.0253458e+117 -6.068025e+117 -6.025896e+117 -6.0629693e+117 -6.0783017e+117 -6.0675415e+117 -6.078907e+117 -6.0825323e+117 -6.0798012e+117 -5.2449848e+117 -4.6854303e+117 -4.9618072e+117 -5.3096073e+117 -5.3111798e+117 -4.9763822e+117 -4.9311827e+117 -5.2210823e+117 -5.1897745e+117 -4.9572557e+117 -4.5951899e+117 -4.9182049e+117 -5.293567e+117 -5.2857279e+117 -4.9522931e+117 -5.7441247e+117 -5.4696375e+117 -5.4851866e+117 -5.750862e+117 -5.7455934e+117 -5.728991e+117 -5.4527916e+117 -5.4741167e+117 -5.4389152e+117 -5.363312e+117 -5.6930484e+117 -5.6842874e+117 -5.391009e+117 -5.4344602e+117 -5.1991124e+117 -5.186425e+117 -4.8949676e+117 -4.9567593e+117 -1.6492744e+117 -1.0931309e+117 -9.6356522e+116 -1.3905523e+117 -5.2609575e+117 -5.2857565e+117 -5.0322789e+117 -1.7362438e+117 -6.241589e+116 -4.1663117e+116 -5.9212345e+117 -5.8888033e+117 -6.9851226e+116 -1.379928e+117 -1.1581405e+117 -5.1684155e+117 -5.2498321e+117 -4.9847873e+117 -3.3656635e+117 -4.1672431e+117 -4.629713e+117 -1.8183078e+117 -3.2105855e+117 -4.006854e+117 -4.7035407e+117 -4.378612e+117 -7.6724021e+116 -2.2783692e+117 -3.5155276e+117 -4.0236348e+117 -3.5355412e+117 -4.6545865e+117 -4.2879519e+117 -3.2834324e+117 -3.1733593e+117 -3.9581172e+117 -3.8641021e+117 -3.9720989e+117 -3.8924912e+117 -3.4374453e+117 -3.3969142e+117 -3.0595955e+117 -2.9426618e+117 -3.3562961e+117 -3.4616155e+117 -4.595308e+117 -4.6255146e+117 -4.2125901e+117 -4.2196354e+117 -4.2695052e+117 -3.4481503e+117 -3.2778064e+117 -3.3264461e+117 -3.0225794e+117 -2.0919043e+117 -4.7173776e+117 -4.2621561e+117 -4.1857541e+117 -3.8823188e+117 -3.8873377e+117 -3.9963833e+117 -3.409351e+117 -2.4987907e+117 -2.8531823e+117 -2.8913034e+117 -1.8207932e+117 -1.4103221e+117 -2.3974861e+117 -2.2093206e+117 -1.3446281e+117 -4.1990777e+117 -6.7063888e+116 -1.8191688e+117 -3.083718e+117 -6.0768015e+117 -6.0558823e+117 -5.9201609e+117 -6.0156242e+117 -5.9227092e+117 -6.0115285e+117 -5.924337e+117 -6.0117658e+117 -6.0080192e+117 -5.9097267e+117 -5.9008391e+117 -6.0588808e+117 -6.0604851e+117 -6.0646676e+117 -3.4710627e+116 -2.2285277e+117 -1.6157739e+117 -5.6556005e+117 -5.6465505e+117 -5.7524722e+117 -4.9571201e+117 -4.9534982e+117 -4.8258895e+117 -4.6983954e+117 -4.8286926e+117 -4.7009315e+117 -4.574734e+117 -4.4471375e+117 -4.5722574e+117 -4.4449644e+117 -4.1350881e+117 -4.3205685e+117 -4.3186301e+117 -5.2182656e+117 -5.2116245e+117 -5.0824797e+117 -5.0875744e+117 -3.8963724e+117 -3.6656097e+117 -5.7067972e+117 -5.716275e+117 -5.6967251e+117 -5.687744e+117 -5.6350674e+117 -5.6461579e+117 -5.679253e+117 -5.6628379e+117 -5.6710577e+117 -5.6722713e+117 -5.6668131e+117 -5.6766989e+117 -5.6819233e+117 -5.6921436e+117 -5.7054774e+117 -5.6874868e+117 -5.6997612e+117 -5.7084046e+117 -5.6939153e+117 -5.6789783e+117 -5.6825588e+117 -5.689881e+117 -5.6580271e+117 -5.6614402e+117 -5.6716317e+117 -5.6682612e+117 -5.6261446e+117 -5.6307842e+117 -5.6425217e+117 -5.6489989e+117 -5.6366691e+117 -5.6530275e+117 -5.6470465e+117 -5.6570477e+117 -5.6625806e+117 -5.6514986e+117 -5.6379809e+117 -5.6417254e+117 -5.6478835e+117 -5.6183327e+117 -5.621941e+117 -5.6318845e+117 -5.6281039e+117 -5.6871511e+117 -5.6743815e+117 -5.6762065e+117 -5.6854542e+117 -5.6553138e+117 -5.6655509e+117 -5.6636754e+117 -5.6534205e+117 -5.6519965e+117 -5.6521063e+117 -5.6614395e+117 -5.662048e+117 -5.6731045e+117 -5.6846386e+117 -5.6730645e+117 -5.68461e+117 -5.6138262e+117 -5.6156488e+117 -5.6253229e+117 -5.6234085e+117 -5.6351674e+117 -5.6332009e+117 -5.6431653e+117 -5.6451303e+117 -5.6321828e+117 -5.6318595e+117 -5.6417211e+117 -5.6416964e+117 -5.613343e+117 -5.6127251e+117 -5.6221494e+117 -5.6226372e+117 -5.759583e+117 -5.7685194e+117 -5.7228109e+117 -5.7385227e+117 -5.7431652e+117 -5.7111226e+117 -5.7332377e+117 -5.72388e+117 -5.7181113e+117 -5.7012212e+117 -5.7056328e+117 -5.7131619e+117 -5.7421416e+117 -5.732063e+117 -5.7439131e+117 -5.739076e+117 -5.7259199e+117 -5.6962625e+117 -5.6964362e+117 -5.7084338e+117 -5.7081007e+117 -5.6970682e+117 -5.6985906e+117 -5.7105148e+117 -5.7090471e+117 -5.7216232e+117 -5.7231159e+117 -5.736319e+117 -5.7348042e+117 -5.7340513e+117 -5.7209422e+117 -5.7205265e+117 -5.7335509e+117 -5.7775751e+117 -5.7782977e+117 -5.7946352e+117 -5.7936086e+117 -5.7992094e+117 -5.783076e+117 -5.7799731e+117 -5.79747e+117 -5.7489316e+117 -5.7507541e+117 -5.7660107e+117 -5.7638807e+117 -5.7473891e+117 -5.7479413e+117 -5.762638e+117 -5.7620423e+117 -5.7544969e+117 -5.7549988e+117 -5.7773921e+117 -5.7708437e+117 -5.769883e+117 -5.7883842e+117 -5.7851184e+117 -5.7965078e+117 -5.8032253e+117 -5.8118486e+117 -5.6486689e+117 -5.6399144e+117 -5.6309802e+117 -5.6399088e+117 -5.6168962e+117 -5.6324684e+117 -5.6260227e+117 -5.6234016e+117 -5.6420603e+117 -5.6356119e+117 -5.65178e+117 -5.645352e+117 -5.6493135e+117 -5.657857e+117 -5.6676187e+117 -5.6590078e+117 -5.5983413e+117 -5.6052474e+117 -5.6145309e+117 -5.6078489e+117 -5.5959108e+117 -5.5887309e+117 -5.57978e+117 -5.5871299e+117 -5.6133697e+117 -5.6043071e+117 -5.5957209e+117 -5.6049102e+117 -5.6131891e+117 -5.6221057e+117 -5.6312979e+117 -5.6222893e+117 -5.6139975e+117 -5.6224452e+117 -5.6315821e+117 -5.6229844e+117 -5.63151e+117 -5.6401731e+117 -5.6479798e+117 -5.6393081e+117 -5.6589707e+117 -5.6493669e+117 -5.6571836e+117 -5.6668318e+117 -5.6314414e+117 -5.64069e+117 -5.6501809e+117 -5.6407778e+117 -5.6494146e+117 -5.6580879e+117 -5.6677545e+117 -5.6589511e+117 -5.6677982e+117 -5.6757008e+117 -5.684813e+117 -5.6767712e+117 -5.6863275e+117 -5.694523e+117 -5.7046342e+117 -5.6963053e+117 -5.667272e+117 -5.6771267e+117 -5.6869786e+117 -5.677087e+117 -5.7049993e+117 -5.7216001e+117 -5.7320127e+117 -5.7131402e+117 -5.7234547e+117 -5.7133959e+117 -5.7037571e+117 -5.7139781e+117 -5.6938658e+117 -5.7041573e+117 -5.6856166e+117 -5.695579e+117 -5.7249263e+117 -5.7147743e+117 -5.7231952e+117 -5.7334572e+117 -5.7346366e+117 -5.7432422e+117 -5.7521595e+117 -5.7434459e+117 -5.6550867e+117 -5.6604041e+117 -5.6686634e+117 -5.6777964e+117 -5.6635799e+117 -5.6714074e+117 -5.6812661e+117 -5.6874792e+117 -5.6952525e+117 -5.6887371e+117 -5.6944575e+117 -5.7047069e+117 -5.6852387e+117 -5.6949584e+117 -5.7031042e+117 -5.7130125e+117 -5.6673516e+117 -5.6842142e+117 -5.6755211e+117 -5.6759698e+117 -5.7613454e+117 -5.7623261e+117 -5.7524146e+117 -5.7712774e+117 -5.7626883e+117 -5.7635099e+117 -5.7529761e+117 -5.7730784e+117 -5.7321706e+117 -5.7419363e+117 -5.7524585e+117 -5.7425726e+117 -5.7828495e+117 -5.7733072e+117 -5.7823303e+117 -5.7920141e+117 -5.7038657e+117 -5.6974087e+117 -5.70666e+117 -5.7133566e+117 -5.7241484e+117 -5.7171567e+117 -5.7266287e+117 -5.7339204e+117 -5.7423358e+117 -5.7321543e+117 -5.741848e+117 -5.752068e+117 -5.7118513e+117 -5.7213623e+117 -5.7313924e+117 -5.7218057e+117 -5.7941493e+117 -5.7829321e+117 -5.7940912e+117 -5.7724439e+117 -5.783347e+117 -5.8047978e+117 -5.8028985e+117 -5.8120835e+117 -5.8223212e+117 -5.8228594e+117 -5.8331163e+117 -5.81364e+117 -5.8147452e+117 -5.8239406e+117 -5.8236274e+117 -5.8327545e+117 -5.8430177e+117 -5.8418274e+117 -5.8521181e+117 -5.8327854e+117 -5.7928038e+117 -5.8041033e+117 -5.8020075e+117 -5.8134108e+117 -5.7351238e+117 -5.7462049e+117 -5.7425351e+117 -5.7530553e+117 -5.7637019e+117 -5.7559074e+117 -5.7650471e+117 -5.7738945e+117 -5.7855805e+117 -5.7825473e+117 -5.7934516e+117 -5.773426e+117 -5.7724481e+117 -5.7832502e+117 -5.7815135e+117 -5.7908475e+117 -5.8015741e+117 -5.8015565e+117 -5.811829e+117 -5.7921397e+117 -5.7507656e+117 -5.761466e+117 -5.7616041e+117 -5.7723115e+117 -5.6770317e+117 -5.6857525e+117 -5.6803502e+117 -5.6715299e+117 -5.7056986e+117 -5.7006035e+117 -5.7103823e+117 -5.7154977e+117 -5.689574e+117 -5.6991443e+117 -5.7048938e+117 -5.6951422e+117 -5.6912003e+117 -5.6824112e+117 -5.6875436e+117 -5.6963526e+117 -5.6464626e+117 -5.6531869e+117 -5.661893e+117 -5.6551214e+117 -5.6643062e+117 -5.6712209e+117 -5.6809858e+117 -5.6740241e+117 -5.684085e+117 -5.6779313e+117 -5.6876386e+117 -5.6936141e+117 -5.6596597e+117 -5.6746981e+117 -5.6684682e+117 -5.6657901e+117 -5.6964634e+117 -5.7023761e+117 -5.7114741e+117 -5.7055194e+117 -5.6829836e+117 -5.692148e+117 -5.6990386e+117 -5.6899104e+117 -5.7152258e+117 -5.7254063e+117 -5.7315223e+117 -5.7212559e+117 -5.7019226e+117 -5.718959e+117 -5.7120912e+117 -5.7087863e+117 -5.7137786e+117 -5.7080605e+117 -5.7229606e+117 -5.7172339e+117 -5.7271079e+117 -5.732892e+117 -5.7433717e+117 -5.7374784e+117 -5.7542978e+117 -5.74904e+117 -5.7384808e+117 -5.7437685e+117 -5.7192324e+117 -5.7244733e+117 -5.7337272e+117 -5.7284739e+117 -5.7465817e+117 -5.7525871e+117 -5.7610559e+117 -5.7717987e+117 -5.7549583e+117 -5.7656228e+117 -5.7776689e+117 -5.786627e+117 -5.7927608e+117 -5.783842e+117 -5.7983274e+117 -5.7773721e+117 -5.7893978e+117 -5.7821709e+117 -5.794253e+117 -5.8033346e+117 -5.7582738e+117 -5.766708e+117 -5.7716044e+117 -5.7632884e+117 -5.7210199e+117 -5.7279121e+117 -5.7362435e+117 -5.7468194e+117 -5.7293333e+117 -5.7397879e+117 -5.7513902e+117 -5.7601567e+117 -5.7674669e+117 -5.7586447e+117 -5.774148e+117 -5.7534239e+117 -5.7653282e+117 -5.7595792e+117 -5.7715131e+117 -5.7804124e+117 -5.7343546e+117 -5.7489418e+117 -5.7427602e+117 -5.740515e+117 -5.7906178e+117 -5.7980062e+117 -5.8076956e+117 -5.8003716e+117 -5.7897527e+117 -5.7834238e+117 -5.7935069e+117 -5.7998917e+117 -5.7694113e+117 -5.7794281e+117 -5.7868011e+117 -5.7767498e+117 -5.8144218e+117 -5.8046983e+117 -5.8111587e+117 -5.8209635e+117 -5.7960177e+117 -5.802096e+117 -5.8122391e+117 -5.8061775e+117 -5.8174959e+117 -5.8235764e+117 -5.8334321e+117 -5.8273262e+117 -5.8345624e+117 -5.8292534e+117 -5.8391369e+117 -5.8444525e+117 -5.8076645e+117 -5.8128037e+117 -5.823108e+117 -5.8178634e+117 -5.859733e+117 -5.8436133e+117 -5.8554074e+117 -5.8375079e+117 -5.8492798e+117 -5.8658211e+117 -5.8683982e+117 -5.8772097e+117 -5.8874583e+117 -5.8832657e+117 -5.8934658e+117 -5.874442e+117 -5.8715427e+117 -5.8769191e+117 -5.8801396e+117 -5.8889297e+117 -5.8990515e+117 -5.8943125e+117 -5.9044018e+117 -5.8855354e+117 -5.8493058e+117 -5.8611113e+117 -5.8546448e+117 -5.8664439e+117 -5.8322942e+117 -5.8178027e+117 -5.8294271e+117 -5.8104551e+117 -5.8218902e+117 -5.8398515e+117 -5.8410232e+117 -5.8499277e+117 -5.8602507e+117 -5.8575651e+117 -5.8679063e+117 -5.8486159e+117 -5.8467853e+117 -5.8533848e+117 -5.8555741e+117 -5.8645221e+117 -5.8748546e+117 -5.8710969e+117 -5.8813945e+117 -5.8621611e+117 -5.8245372e+117 -5.8362824e+117 -5.8310928e+117 -5.8428804e+117 -5.6924389e+117 -5.7013035e+117 -5.7062146e+117 -5.6972966e+117 -5.8690135e+117 -5.817819e+117 -5.8281589e+117 -5.8331232e+117 -5.8445885e+117 -5.8396447e+117 -5.8495433e+117 -5.8545164e+117 -5.8544556e+117 -5.8495194e+117 -5.8594787e+117 -5.8643059e+117 -5.8886081e+117 -5.9003711e+117 -5.9107571e+117 -5.9155355e+117 -5.9051228e+117 -5.9013928e+117 -5.9060168e+117 -5.8837522e+117 -5.895608e+117 -5.8790613e+117 -5.8909213e+117 -5.9186008e+117 -5.9286975e+117 -5.9099375e+117 -5.9231725e+117 -5.9333149e+117 -5.914516e+117 -5.9240191e+117 -5.9326985e+117 -5.9192313e+117 -5.9278954e+117 -5.9379996e+117 -5.9428001e+117 -5.882091e+117 -5.864756e+117 -5.876703e+117 -5.8597777e+117 -5.871612e+117 -5.8871654e+117 -5.8906832e+117 -5.8994046e+117 -5.8957668e+117 -5.9045193e+117 -5.9146433e+117 -5.9095079e+117 -5.8968475e+117 -5.8921046e+117 -5.9053881e+117 -5.9140854e+117 -5.9006689e+117 -5.9093995e+117 -5.9195006e+117 -5.9241847e+117 -5.8696786e+117 -5.8816605e+117 -5.874479e+117 -5.8864217e+117 -5.9423988e+117 -5.9375753e+117 -5.9475818e+117 -5.9522706e+117 -5.9510636e+117 -5.9468946e+117 -5.9566254e+117 -5.9607459e+117 -5.8118553e+117 -5.8217578e+117 -5.8310362e+117 -5.8208587e+117 -5.8404011e+117 -5.8305363e+117 -5.8030377e+117 -5.7814416e+117 -5.7974874e+117 -5.8214681e+117 -5.8115029e+117 -5.815974e+117 -5.80723e+117 -5.7855943e+117 -5.8321822e+117 -5.8428233e+117 -5.8507116e+117 -5.8409558e+117 -5.8609914e+117 -5.8514686e+117 -5.8526416e+117 -5.8616455e+117 -5.870667e+117 -5.8612172e+117 -5.8795163e+117 -5.870154e+117 -5.8841491e+117 -5.9016869e+117 -5.8924832e+117 -5.8905772e+117 -5.9079365e+117 -5.8988457e+117 -5.8697501e+117 -5.8875733e+117 -5.8782316e+117 -5.8772882e+117 -5.8949597e+117 -5.8856989e+117 -5.9133281e+117 -5.9301065e+117 -5.9213585e+117 -5.9080192e+117 -5.924944e+117 -5.9160923e+117 -5.9024967e+117 -5.9195682e+117 -5.9106341e+117 -5.8966071e+117 -5.9138712e+117 -5.9048322e+117 -5.95153e+117 -5.946766e+117 -5.967881e+117 -5.9593957e+117 -5.9633109e+117 -5.9546879e+117 -5.9375133e+117 -5.9420976e+117 -5.9587265e+117 -5.9500513e+117 -5.9541561e+117 -5.9454703e+117 -5.9283234e+117 -5.9329878e+117 -5.9449404e+117 -5.9362746e+117 -5.9495833e+117 -5.9409393e+117 -5.9235124e+117 -5.9184459e+117 -5.9351657e+117 -5.9264682e+117 -5.9401429e+117 -5.931483e+117 -5.9561998e+117 -5.960726e+117 -5.9724078e+117 -5.9640009e+117 -5.9767787e+117 -5.9684302e+117 -5.9649818e+117 -5.9690928e+117 -5.9809794e+117 -5.9726247e+117 -5.9850646e+117 -5.9767196e+117 -4.6578553e+117 -4.6270216e+117 -4.7334115e+117 -5.1405228e+117 -3.1213802e+117 -3.0959212e+117 -4.7003981e+117 -4.5179247e+117 -3.9714406e+117 -4.6337391e+117 -4.382464e+117 -3.6304274e+117 -4.1742478e+117 -4.7542357e+117 -4.6275732e+117 -4.7944642e+117 -4.4288081e+117 -4.3031228e+117 -4.5819886e+117 -4.140515e+117 -3.8251222e+117 -4.0432479e+117 -3.8500396e+117 -3.1643028e+117 -3.339868e+117 -2.4789847e+117 -3.2356999e+117 -3.4769252e+117 -2.6877057e+117 -2.7185427e+117 -2.6418166e+117 -4.5448609e+117 -4.1613407e+117 -2.6485703e+117 -2.4156419e+117 -3.5934643e+117 -4.2637162e+117 -1.4756539e+117 -1.1352749e+117 -5.3078936e+116 -1.1959298e+117 -1.6994045e+117 -1.7901755e+117 -2.6773789e+117 -1.7377287e+117 -4.9422869e+117 -5.3312677e+117 -4.9352056e+117 -4.7356185e+117 -3.439123e+117 -3.2143729e+117 -4.8304501e+117 -4.7020865e+117 -4.9590918e+117 -4.9618314e+117 -4.8326541e+117 -4.7038941e+117 -4.5756388e+117 -4.4505706e+117 -4.3276616e+117 -4.2041507e+117 -3.9043891e+117 -4.0818915e+117 -4.0834355e+117 -4.2051333e+117 -4.3282213e+117 -4.4512772e+117 -4.5768814e+117 -3.6721582e+117 -3.4446825e+117 -3.438354e+117 -3.2192765e+117 -5.6455959e+117 -5.6621631e+117 -5.5758657e+117 -5.5849405e+117 -5.5943835e+117 -5.6037338e+117 -5.5749962e+117 -5.5841758e+117 -5.6031397e+117 -5.5936529e+117 -5.5412588e+117 -5.5494458e+117 -5.5580567e+117 -5.5667445e+117 -5.5402328e+117 -5.5485028e+117 -5.557113e+117 -5.5658837e+117 -5.5417115e+117 -5.5502253e+117 -5.5489831e+117 -5.5406036e+117 -5.5678599e+117 -5.5589374e+117 -5.5575861e+117 -5.56643e+117 -5.5770424e+117 -5.5756143e+117 -5.5849132e+117 -5.5864181e+117 -5.5961015e+117 -5.6058493e+117 -5.5945042e+117 -5.6041242e+117 -5.4500798e+117 -5.4429983e+117 -5.4427283e+117 -5.4495097e+117 -5.4574342e+117 -5.4650126e+117 -5.4564554e+117 -5.4633299e+117 -5.4739528e+117 -5.4813866e+117 -5.4849592e+117 -5.4949314e+117 -5.4981391e+117 -5.4894284e+117 -5.4980468e+117 -5.5047629e+117 -5.5170384e+117 -5.5099118e+117 -5.52493e+117 -5.5329189e+117 -5.5235661e+117 -5.5318604e+117 -5.5064142e+117 -5.5151007e+117 -5.442157e+117 -5.4434401e+117 -5.4506699e+117 -5.4492499e+117 -5.4582639e+117 -5.4660821e+117 -5.4644626e+117 -5.456777e+117 -5.4886854e+117 -5.490319e+117 -5.4985348e+117 -5.4970518e+117 -5.4728435e+117 -5.4743201e+117 -5.4822028e+117 -5.4805105e+117 -5.4291236e+117 -5.4358608e+117 -5.4162731e+117 -5.4226017e+117 -5.4099389e+117 -5.4174814e+117 -5.4231653e+117 -5.4294912e+117 -5.4358944e+117 -5.4166341e+117 -5.4218673e+117 -5.4228431e+117 -5.4157839e+117 -5.4294331e+117 -5.4363441e+117 -5.4350941e+117 -5.4282716e+117 -5.5147561e+117 -5.5156073e+117 -5.5069786e+117 -5.5057833e+117 -5.5243521e+117 -5.5330598e+117 -5.5321102e+117 -5.5235414e+117 -5.3841837e+117 -5.3785005e+117 -5.3667748e+117 -5.3726366e+117 -5.3769307e+117 -5.3821205e+117 -5.3872057e+117 -5.3900971e+117 -5.3927231e+117 -5.3967603e+117 -5.3983404e+117 -5.4036709e+117 -5.4101126e+117 -5.3982173e+117 -5.3925335e+117 -5.3910118e+117 -5.3972019e+117 -5.4096906e+117 -5.4104362e+117 -5.4042435e+117 -5.4035036e+117 -5.3680717e+117 -5.3716773e+117 -5.3764198e+117 -5.373462e+117 -5.3869409e+117 -5.3815304e+117 -5.3792018e+117 -5.3850099e+117 -5.41762e+117 -5.4182688e+117 -5.4208907e+117 -5.4181832e+117 -5.4153106e+117 -5.4157159e+117 -5.4101709e+117 -5.4172387e+117 -5.4075046e+117 -5.4148482e+117 -5.42381e+117 -5.4383372e+117 -5.4327198e+117 -5.4287801e+117 -5.4164387e+117 -5.4300066e+117 -5.4225302e+117 -5.428942e+117 -5.4318939e+117 -5.4315703e+117 -5.404335e+117 -5.4000437e+117 -5.3954661e+117 -5.4006008e+117 -5.4101452e+117 -5.4064886e+117 -5.4124951e+117 -5.4159991e+117 -5.4138145e+117 -5.4267279e+117 -5.4048248e+117 -5.3997046e+117 -5.4024326e+117 -5.4119117e+117 -5.3950672e+117 -5.4253101e+117 -5.4180472e+117 -5.4106442e+117 -5.4224529e+117 -5.3987321e+117 -5.4052633e+117 -5.4190965e+117 -5.392843e+117 -5.3894017e+117 -5.3965679e+117 -5.3810959e+117 -5.3774578e+117 -5.3880695e+117 -5.3921849e+117 -5.3958903e+117 -5.3903494e+117 -5.3854736e+117 -5.4565053e+117 -5.4654715e+117 -5.4505707e+117 -5.4593769e+117 -5.4423199e+117 -5.4488112e+117 -5.4411746e+117 -5.4450978e+117 -5.4531765e+117 -5.437629e+117 -5.4341291e+117 -5.4292566e+117 -5.4363998e+117 -5.4356945e+117 -5.4428532e+117 -5.4388048e+117 -5.4319539e+117 -5.4360029e+117 -5.422571e+117 -5.4291629e+117 -5.425272e+117 -5.4188484e+117 -5.4771488e+117 -5.486509e+117 -5.4839926e+117 -5.4935495e+117 -5.4775317e+117 -5.4701009e+117 -5.4626616e+117 -5.4699581e+117 -5.4790051e+117 -5.4632015e+117 -5.4721469e+117 -5.4556793e+117 -5.4571092e+117 -5.4498746e+117 -5.4459051e+117 -5.4532028e+117 -5.4647012e+117 -5.4608591e+117 -5.4687001e+117 -5.4724691e+117 -5.4986255e+117 -5.5071122e+117 -5.4915463e+117 -5.5012639e+117 -5.5103129e+117 -5.4853882e+117 -5.4927927e+117 -5.500928e+117 -5.5077103e+117 -5.5154636e+117 -5.5090973e+117 -5.4805116e+117 -5.4882642e+117 -5.4768625e+117 -5.4847405e+117 -5.492751e+117 -5.4962413e+117 -5.5043786e+117 -5.5008578e+117 -5.517269e+117 -5.5232583e+117 -5.5312003e+117 -5.5254617e+117 -5.5338495e+117 -5.5394562e+117 -5.5478245e+117 -5.5422634e+117 -5.5380604e+117 -5.5262765e+117 -5.5295043e+117 -5.5349275e+117 -5.5126354e+117 -5.5209746e+117 -5.5175992e+117 -5.5091491e+117 -5.5682977e+117 -5.573701e+117 -5.5826457e+117 -5.5772384e+117 -5.5563207e+117 -5.5648972e+117 -5.5594252e+117 -5.5507919e+117 -5.5466738e+117 -5.5523048e+117 -5.5553605e+117 -5.5436538e+117 -5.5642802e+117 -5.5733245e+117 -5.5701203e+117 -5.5611283e+117 -5.5959169e+117 -5.6012115e+117 -5.5918802e+117 -5.5864881e+117 -5.5825723e+117 -5.592017e+117 -5.588778e+117 -5.5793509e+117 -5.5985162e+117 -5.6018049e+117 -5.6117906e+117 -5.6083815e+117 -5.610784e+117 -5.620606e+117 -5.6157144e+117 -5.6056748e+117 -5.3753041e+117 -5.3668367e+117 -5.4084512e+117 -5.4026645e+117 -5.4054241e+117 -3.9699962e+117 -3.8519447e+117 -3.6788325e+117 -3.8536291e+117 -3.9700913e+117 -3.8484805e+117 -3.8524589e+117 -3.9662752e+117 -3.9681497e+117 -4.0862118e+117 -4.0868153e+117 -4.0877742e+117 -4.2065505e+117 -4.2085282e+117 -4.2087318e+117 -4.0888009e+117 -4.2058382e+117 -4.203815e+117 -4.0838823e+117 -4.4531729e+117 -4.3291401e+117 -4.3294063e+117 -4.3306424e+117 -4.3287572e+117 -4.4534511e+117 -4.453891e+117 -4.4526785e+117 -4.4524835e+117 -4.3278395e+117 -4.4500335e+117 -4.3267859e+117 -4.5795902e+117 -4.5802008e+117 -4.5784367e+117 -4.5789157e+117 -4.5789177e+117 -4.7041134e+117 -4.7055862e+117 -4.707909e+117 -4.7074715e+117 -4.7065353e+117 -4.578782e+117 -4.7034107e+117 -4.6998868e+117 -4.5748838e+117 -4.8348422e+117 -4.8364871e+117 -4.8364345e+117 -4.8338242e+117 -4.9646018e+117 -4.9641477e+117 -4.9605624e+117 -4.9607096e+117 -5.0900605e+117 -5.0905619e+117 -5.0907886e+117 -5.2145334e+117 -5.2146915e+117 -5.2149742e+117 -5.3400177e+117 -5.3400284e+117 -5.4669978e+117 -5.4668954e+117 -3.4508471e+117 -3.6173666e+117 -3.6213137e+117 -3.7349416e+117 -3.7315565e+117 -3.8475817e+117 -3.8440782e+117 -3.9579873e+117 -3.9623031e+117 -4.0800308e+117 -4.1994922e+117 -4.1945721e+117 -4.075274e+117 -4.3218041e+117 -4.3165972e+117 -4.4386359e+117 -4.444863e+117 -3.2251326e+117 -3.5068773e+117 -3.3935436e+117 -3.3909331e+117 -3.5028336e+117 -3.7290641e+117 -3.6184323e+117 -3.6129704e+117 -3.7237699e+117 -3.835865e+117 -3.8406355e+117 -3.9484737e+117 -3.9530586e+117 -4.0689316e+117 -4.0636088e+117 -4.1807923e+117 -4.1872868e+117 -5.4366497e+117 -5.4337885e+117 -5.4406997e+117 -5.4390044e+117 -5.4495797e+117 -5.4366638e+117 -5.4409526e+117 -5.454264e+117 -5.4337197e+117 -5.4487371e+117 -5.4442608e+117 -5.4301654e+117 -5.4240057e+117 -5.4222252e+117 -5.4774143e+117 -5.4714128e+117 -5.4651943e+117 -5.4481994e+117 -5.4575514e+117 -5.4838669e+117 -5.4906814e+117 -5.5050354e+117 -5.4978977e+117 -5.5633193e+117 -5.5549786e+117 -5.5466283e+117 -5.5391341e+117 -5.525151e+117 -5.5317127e+117 -5.5196466e+117 -5.5454329e+117 -5.5535105e+117 -5.5297876e+117 -5.5373358e+117 -5.5132662e+117 -5.5162101e+117 -5.5225269e+117 -5.5185671e+117 -5.5120749e+117 -5.6276232e+117 -5.6373442e+117 -5.6089531e+117 -5.6181165e+117 -5.5997561e+117 -5.5902232e+117 -5.580737e+117 -5.5719276e+117 -5.5793652e+117 -5.5883859e+117 -5.561948e+117 -5.5704583e+117 -5.6068371e+117 -5.5976213e+117 -5.6162261e+117 -5.6257025e+117 -5.2283897e+117 -5.2514081e+117 -5.2324016e+117 -5.2523495e+117 -5.2509401e+117 -5.2593825e+117 -5.2648707e+117 -5.231815e+117 -5.232444e+117 -3.000997e+117 -3.1674422e+117 -3.2799228e+117 -3.2777907e+117 -3.1659081e+117 -3.3865681e+117 -3.3897411e+117 -3.4991028e+117 -3.4947939e+117 -3.6046697e+117 -3.6093927e+117 -3.7197269e+117 -3.714934e+117 -3.8261589e+117 -3.8312591e+117 -3.9378616e+117 -3.9434021e+117 -5.3307327e+117 -5.3261557e+117 -5.3357476e+117 -5.3410774e+117 -5.3330885e+117 -5.3411133e+117 -5.3453916e+117 -5.3515468e+117 -5.3463791e+117 -5.3499692e+117 -5.3545452e+117 -5.3568963e+117 -5.3622458e+117 -5.3590117e+117 -5.3613798e+117 -5.3529155e+117 -5.3574805e+117 -5.35323e+117 -5.3482246e+117 -5.3620029e+117 -5.3667382e+117 -5.3630603e+117 -5.3579269e+117 -5.3343658e+117 -5.3391688e+117 -5.3338058e+117 -5.3291414e+117 -5.3441608e+117 -5.3488511e+117 -5.3433701e+117 -5.3384564e+117 -5.2933515e+117 -5.2831778e+117 -5.2771269e+117 -5.2991308e+117 -5.3049266e+117 -5.3140359e+117 -5.320839e+117 -5.3190894e+117 -5.3237162e+117 -5.3256602e+117 -5.3185235e+117 -5.3223367e+117 -5.3281522e+117 -5.329973e+117 -5.324668e+117 -5.3297498e+117 -5.3188565e+117 -5.3216339e+117 -5.310162e+117 -5.314501e+117 -5.3202558e+117 -5.3207265e+117 -5.3182477e+117 -5.3092495e+117 -5.2791928e+117 -5.2781198e+117 -5.2705771e+117 -5.2944123e+117 -5.2844924e+117 -5.2750122e+117 -5.265888e+117 -5.286791e+117 -5.2956297e+117 -5.2816027e+117 -5.2779631e+117 -5.2824214e+117 -5.3131348e+117 -5.3066551e+117 -5.3126353e+117 -5.3026498e+117 -5.3125851e+117 -5.3076241e+117 -5.3086442e+117 -5.2924157e+117 -5.2671238e+117 -5.2793981e+117 -5.3066654e+117 -5.2972106e+117 -5.2766253e+117 -5.3124272e+117 -5.2952616e+117 -5.274209e+117 -5.2799649e+117 -5.3062552e+117 -5.2853287e+117 -5.322325e+117 -5.3335794e+117 -5.336489e+117 -5.3444246e+117 -5.3518284e+117 -5.3629537e+117 -5.3210109e+117 -5.3091294e+117 -5.3252295e+117 -5.3385134e+117 -5.3340229e+117 -5.3402311e+117 -5.3341922e+117 -5.3454212e+117 -5.3354699e+117 -5.3810748e+117 -5.3639126e+117 -5.3748516e+117 -5.3916082e+117 -5.3688232e+117 -5.3769318e+117 -5.3546229e+117 -5.3653742e+117 -5.3855154e+117 -5.3738171e+117 -5.3756252e+117 -5.3799504e+117 -5.3929503e+117 -5.3504731e+117 -5.343266e+117 -5.3462728e+117 -5.3407115e+117 -5.3584986e+117 -5.365084e+117 -5.3782058e+117 -5.3569765e+117 -5.3651317e+117 -5.366812e+117 -5.3680642e+117 -5.3522923e+117 -5.3996964e+117 -5.3924019e+117 -5.3769659e+117 -5.3869797e+117 -5.3796558e+117 -5.4079076e+117 -5.3770444e+117 -5.4061849e+117 -5.4113703e+117 -5.3955815e+117 -5.415415e+117 -5.3920094e+117 -5.4123656e+117 -5.3701987e+117 -5.3682411e+117 -5.3778838e+117 -5.3750855e+117 -5.3646086e+117 -5.3598443e+117 -5.3804945e+117 -5.3843421e+117 -5.3732871e+117 -5.3691579e+117 -5.3146458e+117 -5.3577309e+117 -5.3687736e+117 -5.3222806e+117 -5.3679989e+117 -5.3573588e+117 -5.3366504e+117 -5.3507907e+117 -5.3613082e+117 -5.3455451e+117 -5.3651712e+117 -5.3770294e+117 -5.3898228e+117 -5.376878e+117 -5.3814173e+117 -5.2871864e+117 -5.2924576e+117 -5.3238586e+117 -5.3166527e+117 -5.3985128e+117 -5.428027e+117 -5.4285326e+117 -5.4243649e+117 -5.4102557e+117 -5.410853e+117 -5.4184704e+117 -3.1658948e+117 -3.274937e+117 -3.2729383e+117 -3.1642376e+117 -3.381267e+117 -3.3840823e+117 -3.4923644e+117 -3.4887089e+117 -3.7119666e+117 -3.6018367e+117 -3.5975872e+117 -3.7070661e+117 -5.2959832e+117 -5.2978277e+117 -5.3315471e+117 -5.3287065e+117 -5.3001128e+117 -5.3026086e+117 -5.3343345e+117 -5.3369711e+117 -5.3872043e+117 -5.3909445e+117 -5.3369466e+117 -5.3342668e+117 -5.3832704e+117 -5.3866429e+117 -5.3465229e+117 -5.3103959e+117 -5.3121035e+117 -5.3479358e+117 -5.3081483e+117 -5.3440497e+117 -5.3451366e+117 -5.3089931e+117 -5.3767574e+117 -5.3824925e+117 -5.3309133e+117 -5.3270893e+117 -5.3742096e+117 -5.3795284e+117 -5.3404914e+117 -5.3047117e+117 -5.3066559e+117 -5.3424434e+117 -5.3038441e+117 -5.3037322e+117 -5.3391312e+117 -5.3385938e+117 -5.3294444e+117 -5.3307507e+117 -5.312819e+117 -5.2803016e+117 -5.2803516e+117 -5.3137357e+117 -5.2747273e+117 -5.2726445e+117 -5.2740778e+117 -5.2816347e+117 -5.2779182e+117 -5.2842955e+117 -5.3328518e+117 -5.3346602e+117 -5.3149587e+117 -5.3170461e+117 -5.2856442e+117 -5.2965283e+117 -5.2945694e+117 -5.2826023e+117 -5.285896e+117 -5.2817726e+117 -5.3215216e+117 -5.3262954e+117 -5.3107754e+117 -5.31276e+117 -5.301551e+117 -5.2930749e+117 -5.2737229e+117 -5.2592421e+117 -5.2952062e+117 -5.3062019e+117 -5.2721085e+117 -5.2781062e+117 -5.2753364e+117 -5.2705123e+117 -5.2764369e+117 -5.2835784e+117 -5.2786804e+117 -5.2854071e+117 -5.3379469e+117 -5.3363847e+117 -5.3169798e+117 -5.3187449e+117 -5.27831e+117 -5.2846301e+117 -5.2764355e+117 -5.283303e+117 -5.3170876e+117 -5.3355737e+117 -5.3355786e+117 -5.3168461e+117 -5.2835113e+117 -5.2899259e+117 -5.2867417e+117 -5.2922091e+117 -5.3436226e+117 -5.3424018e+117 -5.3234107e+117 -5.3250028e+117 -5.2801179e+117 -5.2868017e+117 -5.2810277e+117 -5.2879011e+117 -5.3408067e+117 -5.3395285e+117 -5.3199635e+117 -5.3217389e+117 -5.278252e+117 -5.2758607e+117 -5.2789248e+117 -5.2754838e+117 -5.280053e+117 -5.2809747e+117 -5.2838323e+117 -5.2888087e+117 -5.3197513e+117 -5.3038463e+117 -5.3208225e+117 -5.314617e+117 -5.3052376e+117 -5.3035236e+117 -5.3048831e+117 -5.3088525e+117 -5.3101721e+117 -5.3088486e+117 -5.3112374e+117 -5.3092348e+117 -5.314279e+117 -5.3132015e+117 -5.3168371e+117 -5.3197503e+117 -5.3191539e+117 -5.3324839e+117 -5.3264986e+117 -5.335562e+117 -5.3661706e+117 -5.3250801e+117 -5.3222584e+117 -5.3278996e+117 -5.3348407e+117 -5.3249597e+117 -5.3091788e+117 -5.3241259e+117 -5.3111082e+117 -5.3039555e+117 -5.3122788e+117 -5.3376968e+117 -5.3160789e+117 -5.3192568e+117 -5.3345981e+117 -5.3313721e+117 -5.3372112e+117 -5.3365248e+117 -5.3416821e+117 -5.3428371e+117 -5.350312e+117 -5.3498905e+117 -5.3439444e+117 -5.3463717e+117 -5.3459435e+117 -5.333024e+117 -5.3433734e+117 -5.3362565e+117 -5.3412628e+117 -5.3313411e+117 -5.3410983e+117 -5.3309065e+117 -5.3518623e+117 -5.3538107e+117 -5.3566646e+117 -5.353087e+117 -5.3554299e+117 -5.359517e+117 -5.3617286e+117 -5.3574075e+117 -5.3456491e+117 -5.347876e+117 -5.3560562e+117 -5.3576963e+117 -5.3413815e+117 -5.3519879e+117 -5.3539391e+117 -5.3433033e+117 -5.3744995e+117 -5.3696181e+117 -5.3683931e+117 -5.3736079e+117 -5.3719806e+117 -5.3663739e+117 -5.3646847e+117 -5.370327e+117 -5.3376929e+117 -5.3396406e+117 -5.3484823e+117 -5.3502312e+117 -5.3476116e+117 -5.3372444e+117 -5.347144e+117 -5.3371337e+117 -5.3590426e+117 -5.3636451e+117 -5.36512e+117 -5.3598489e+117 -5.3686384e+117 -5.3629663e+117 -5.3612628e+117 -5.3668479e+117 -5.3557084e+117 -5.3474047e+117 -5.3447204e+117 -5.3575909e+117 -5.3694518e+117 -5.3743849e+117 -3.1609697e+117 -3.269962e+117 -3.2674318e+117 -3.1586463e+117 -3.3757873e+117 -3.3787363e+117 -3.4865939e+117 -3.4833527e+117 -5.7101445e+117 -5.5922028e+117 -6.145887e+117 -6.1682695e+117 -6.1702892e+117 -6.204798e+117 -6.2346316e+117 -6.2125271e+117 -6.1770946e+117 -6.2357757e+117 -6.2206292e+117 -6.1808752e+117 -6.233868e+117 -6.2211673e+117 -6.191374e+117 -6.1728848e+117 -6.237591e+117 -6.2374063e+117 -6.2250755e+117 -6.2062508e+117 -6.209247e+117 -6.2068097e+117 -6.1723502e+117 -6.1769552e+117 -6.1832414e+117 -6.1797496e+117 -6.164287e+117 -6.1533643e+117 -6.1685379e+117 -6.0767917e+117 -6.1252157e+117 -6.1222135e+117 -6.1196955e+117 -6.0715771e+117 -6.0685554e+117 -6.037172e+117 -6.117116e+117 -6.1636445e+117 -6.1219469e+117 -6.0593092e+117 -6.0237061e+117 -6.0699129e+117 -6.1259358e+117 -6.0242324e+117 -6.0737925e+117 -6.1258442e+117 -6.1295962e+117 -6.1718732e+117 -6.1641059e+117 -6.1241669e+117 -6.080335e+117 -6.1230472e+117 -6.0701747e+117 -6.195906e+117 -6.097289e+117 -6.2564605e+117 -6.0974665e+117 -6.4467983e+117 -6.882657e+117 -6.3150088e+117 -5.4572967e+117 -6.1440502e+117 -7.1733463e+117 -6.2451593e+117 -7.9312411e+117 -8.0230117e+117 -6.3276394e+117 -6.5640535e+117 -6.4550384e+117 -6.2449727e+117 -6.5452241e+117 -8.1586824e+117 -7.3005479e+117 -6.5124379e+117 -6.3910778e+117 -6.2740278e+117 -6.3793693e+117 -6.0305306e+117 -6.0710852e+117 -6.0859932e+117 -6.0436418e+117 -6.0774861e+117 -6.129801e+117 -6.0505201e+117 -6.0130841e+117 -6.2877542e+117 -6.192988e+117 -6.1181404e+117 -6.2829851e+117 -6.0304648e+117 -6.0546264e+117 -6.1082101e+117 -6.233665e+117 -6.0908167e+117 -6.0621571e+117 -6.0327055e+117 -6.8599632e+117 -6.3393007e+117 -8.451998e+116 -5.9961415e+117 -6.1602408e+117 -6.1368758e+117 -6.112093e+117 -6.0302135e+117 -6.7839388e+117 -6.7199422e+117 -8.0414888e+117 -8.1762733e+117 -1.1026914e+118 -2.3847885e+117 -6.67866e+117 -7.2732859e+117 -6.857946e+117 -6.9018092e+117 -7.8766835e+117 -6.7917434e+117 -6.4474853e+117 -6.3718478e+117 -6.9508098e+117 -6.0442663e+117 -6.0794219e+117 -6.0599519e+117 -6.1022817e+117 -6.0862077e+117 -6.0497005e+117 -6.057891e+117 -6.0577527e+117 -6.0189179e+117 -6.0205599e+117 -6.0922582e+117 -6.0614373e+117 -6.0261533e+117 -6.0546424e+117 -6.0279388e+117 -6.1145916e+117 -6.1315736e+117 -6.0062922e+117 -6.0055144e+117 -6.0067238e+117 -5.6787907e+117 -6.3759655e+117 -6.2927271e+117 -6.1483943e+117 -6.3480784e+117 -6.0869869e+117 -6.510404e+117 -6.0526297e+117 -6.0220877e+117 -6.0510685e+117 -6.2582514e+117 -6.1739108e+117 -6.0134265e+117 -6.0255173e+117 -5.9911821e+117 -6.0109262e+117 -6.0105398e+117 -6.0132159e+117 -6.022921e+117 -6.0802229e+117 -4.6953003e+117 -4.6911459e+117 -4.6926147e+117 -4.5647565e+117 -4.5639974e+117 -4.4407573e+117 -4.1356105e+117 -4.3174955e+117 -4.3180024e+117 -4.3173582e+117 -4.3146539e+117 -4.4373548e+117 -4.4414657e+117 -4.4429035e+117 -4.5593435e+117 -4.6814411e+117 -4.6864268e+117 -4.5687047e+117 -4.566871e+117 -4.0756904e+117 -4.1936009e+117 -4.1877496e+117 -4.0702041e+117 -3.8980931e+117 -4.4328674e+117 -4.3127149e+117 -4.3058727e+117 -4.4236815e+117 -4.5462695e+117 -4.5557204e+117 -4.6695447e+117 -4.6770625e+117 -4.6617923e+117 -4.4157644e+117 -4.5371719e+117 -4.2979148e+117 -4.1803752e+117 -3.8387113e+117 -3.9523183e+117 -3.9464151e+117 -3.8332932e+117 -3.667037e+117 -4.0657895e+117 -4.0582277e+117 -4.169528e+117 -4.2845394e+117 -4.4016453e+117 -4.5236824e+117 -4.6500323e+117 -4.3886889e+117 -4.2733491e+117 -4.1616141e+117 -3.941173e+117 -4.0518783e+117 -3.4403857e+117 -3.6085194e+117 -3.7209636e+117 -3.7169256e+117 -3.6054788e+117 -3.8311249e+117 -3.8254866e+117 -3.9332023e+117 -4.0421769e+117 -4.1510454e+117 -4.2619058e+117 -4.3766242e+117 -4.7767697e+117 -4.7730504e+117 -4.9301129e+117 -4.9350014e+117 -3.2160518e+117 -3.3820918e+117 -3.494238e+117 -3.4916784e+117 -3.3796179e+117 -3.6035869e+117 -3.7121984e+117 -3.70876e+117 -3.6010834e+117 -3.9285932e+117 -3.8208186e+117 -3.8158383e+117 -3.9219092e+117 -4.0285812e+117 -4.0362855e+117 -4.1428024e+117 -4.1351258e+117 -4.9434091e+117 -3.3785446e+117 -3.487512e+117 -3.4852383e+117 -3.3761232e+117 -3.5967246e+117 -3.7044559e+117 -3.7013988e+117 -3.5943882e+117 -3.9183919e+117 -3.8118607e+117 -3.8076472e+117 -3.9129439e+117 -3.5903634e+117 -3.6976619e+117 -3.6952159e+117 -3.5884379e+117 -5.7273798e+117 -5.7550387e+117 -5.7621536e+117 -5.8409075e+117 -5.8423099e+117 -5.915788e+117 -5.9156989e+117 -5.6509194e+117 -5.6376667e+117 -5.6142668e+117 -5.3960705e+117 -5.5071184e+117 -5.3844877e+117 -5.5023347e+117 -5.3817998e+117 -5.4708234e+117 -5.3885416e+117 -5.4124819e+117 -4.8084471e+117 -4.8099011e+117 -4.8114305e+117 -4.8142188e+117 -4.9304103e+117 -4.930851e+117 -4.9327602e+117 -4.93709e+117 -4.9494744e+117 -4.9434598e+117 -4.818795e+117 -4.8232067e+117 -4.8049391e+117 -4.9289832e+117 -5.055376e+117 -5.0515936e+117 -5.0489659e+117 -5.0491124e+117 -5.0524339e+117 -5.0595499e+117 -5.2031005e+117 -5.1709326e+117 -5.1815575e+117 -5.1929399e+117 -5.0683527e+117 -5.0763258e+117 -5.1727225e+117 -5.1648278e+117 -5.1650755e+117 -5.1826601e+117 -5.2998498e+117 -5.2853621e+117 -5.2785244e+117 -5.2749112e+117 -5.2770859e+117 -5.5437317e+117 -4.8008713e+117 -4.9276224e+117 -4.9261427e+117 -4.7961486e+117 -4.9262194e+117 -5.0947303e+117 -5.4442591e+117 -5.4299454e+117 -5.4477118e+117 -5.4624944e+117 -5.3999851e+117 -5.4127168e+117 -5.4743821e+117 -5.463523e+117 -5.4551575e+117 -5.484556e+117 -5.422334e+117 -5.4291592e+117 -5.4350653e+117 -5.4397333e+117 -5.4704256e+117 -5.4764449e+117 -5.5006729e+117 -5.4932636e+117 -5.5422802e+117 -5.5439884e+117 -5.5360535e+117 -5.5499879e+117 -5.5297439e+117 -5.5237172e+117 -5.531916e+117 -5.5377917e+117 -5.547074e+117 -5.5394716e+117 -5.5452608e+117 -5.5528378e+117 -5.5515896e+117 -5.5592451e+117 -5.5655384e+117 -5.5577222e+117 -5.5077987e+117 -5.5145847e+117 -5.4942766e+117 -5.5008313e+117 -5.5048538e+117 -5.5111424e+117 -5.5210267e+117 -5.5148808e+117 -5.5179903e+117 -5.5244911e+117 -5.5341324e+117 -5.5276962e+117 -5.481345e+117 -5.487201e+117 -5.4975958e+117 -5.4923206e+117 -5.4693115e+117 -5.476326e+117 -5.4822914e+117 -5.4880608e+117 -5.4930616e+117 -5.5031783e+117 -5.5088349e+117 -5.4987842e+117 -5.5156835e+117 -5.5068992e+117 -5.5020275e+117 -5.5109828e+117 -5.5260199e+117 -5.5235142e+117 -5.518766e+117 -5.5308678e+117 -5.5337799e+117 -5.5284377e+117 -5.5359972e+117 -5.5413853e+117 -5.51217e+117 -5.5177285e+117 -5.5260713e+117 -5.5206936e+117 -5.4711035e+117 -5.4732717e+117 -5.4838111e+117 -5.4813875e+117 -5.4874304e+117 -5.4769709e+117 -5.4750663e+117 -5.4855751e+117 -5.4937891e+117 -5.4954789e+117 -5.5031258e+117 -5.501518e+117 -5.4893568e+117 -5.4920029e+117 -5.4997395e+117 -5.4969983e+117 -5.4469983e+117 -5.4492033e+117 -5.4623244e+117 -5.4602727e+117 -5.4531308e+117 -5.4661838e+117 -5.4641878e+117 -5.4512349e+117 -5.478205e+117 -5.4666643e+117 -5.4740457e+117 -5.4611711e+117 -5.4696064e+117 -5.4564863e+117 -5.4623727e+117 -5.4747243e+117 -5.4859406e+117 -5.4885434e+117 -5.4974718e+117 -5.4847123e+117 -5.4802348e+117 -5.494659e+117 -5.4905635e+117 -5.4959792e+117 -5.5048637e+117 -5.5052592e+117 -5.5125923e+117 -5.5198128e+117 -5.5124389e+117 -5.5100876e+117 -5.502498e+117 -5.5060411e+117 -5.4983936e+117 -5.5432668e+117 -5.5503029e+117 -5.5553108e+117 -5.5484907e+117 -5.5547367e+117 -5.5523669e+117 -5.5478806e+117 -5.5590165e+117 -5.5332786e+117 -5.5380882e+117 -5.5453931e+117 -5.5407197e+117 -5.5619652e+117 -5.5569717e+117 -5.5636633e+117 -5.5686282e+117 -5.5695578e+117 -5.5745252e+117 -5.5792657e+117 -5.5743354e+117 -5.5836177e+117 -5.5788566e+117 -5.5831908e+117 -5.5879513e+117 -5.5742814e+117 -5.5700595e+117 -5.5786743e+117 -5.5745024e+117 -5.5606663e+117 -5.5649104e+117 -5.5699495e+117 -5.5658255e+117 -5.5976759e+117 -5.5966421e+117 -5.591588e+117 -5.6028109e+117 -5.5846689e+117 -5.5797038e+117 -5.5853292e+117 -5.5903149e+117 -5.5933589e+117 -5.5890018e+117 -5.594758e+117 -5.5991874e+117 -5.6012088e+117 -5.6075921e+117 -5.6122823e+117 -5.6057556e+117 -5.5609819e+117 -5.5541529e+117 -5.559962e+117 -5.5668652e+117 -5.5734286e+117 -5.5664328e+117 -5.572804e+117 -5.5798961e+117 -5.586178e+117 -5.5799617e+117 -5.5864295e+117 -5.5924006e+117 -5.5675339e+117 -5.573427e+117 -5.5798295e+117 -5.5740807e+117 -5.5270327e+117 -5.5313437e+117 -5.5366948e+117 -5.532161e+117 -5.5340684e+117 -5.5365769e+117 -5.5421039e+117 -5.5395089e+117 -5.5438434e+117 -5.5463476e+117 -5.5504723e+117 -5.5479327e+117 -5.5361612e+117 -5.5409082e+117 -5.5449496e+117 -5.5401589e+117 -5.5078894e+117 -5.5096147e+117 -5.5167715e+117 -5.5148658e+117 -5.5030104e+117 -5.5059352e+117 -5.5127265e+117 -5.5094692e+117 -5.5154793e+117 -5.5191544e+117 -5.5258345e+117 -5.5218353e+117 -5.521467e+117 -5.5235612e+117 -5.5307253e+117 -5.5283277e+117 -5.5407375e+117 -5.533742e+117 -5.53884e+117 -5.5315542e+117 -5.5342791e+117 -5.5269211e+117 -5.5194073e+117 -5.5264596e+117 -5.5243812e+117 -5.5169134e+117 -5.5199958e+117 -5.5126264e+117 -5.5342473e+117 -5.5269696e+117 -5.5416043e+117 -5.548599e+117 -5.5519284e+117 -5.5467849e+117 -5.5448123e+117 -5.5401261e+117 -5.5456654e+117 -5.5502387e+117 -5.5640885e+117 -5.5563047e+117 -5.5605256e+117 -5.568346e+117 -5.5546433e+117 -5.5598021e+117 -5.5543198e+117 -5.5497305e+117 -5.5539293e+117 -5.5585208e+117 -5.5402865e+117 -5.5480217e+117 -5.5415164e+117 -5.5337081e+117 -5.5270909e+117 -5.5269223e+117 -5.5347228e+117 -5.5197505e+117 -5.5363313e+117 -5.5431843e+117 -5.5454037e+117 -5.5517351e+117 -5.5395736e+117 -5.5299795e+117 -5.5497998e+117 -5.5562904e+117 -5.5648985e+117 -5.5582442e+117 -5.5632381e+117 -5.5692456e+117 -5.5762411e+117 -5.5772287e+117 -5.5842064e+117 -5.57113e+117 -5.5476937e+117 -5.5533659e+117 -5.5599609e+117 -5.5612072e+117 -5.5680662e+117 -5.5553236e+117 -5.583141e+117 -5.5901063e+117 -5.5979725e+117 -5.5910516e+117 -5.5666701e+117 -5.5734769e+117 -5.581845e+117 -5.5749148e+117 -5.5796459e+117 -5.5707698e+117 -5.5632718e+117 -5.572018e+117 -5.5546446e+117 -5.5473661e+117 -5.5549347e+117 -5.5622779e+117 -5.5703875e+117 -5.5628092e+117 -5.5711832e+117 -5.578706e+117 -5.5790264e+117 -5.5873759e+117 -5.5965438e+117 -5.5879984e+117 -5.5884796e+117 -5.580737e+117 -5.5892124e+117 -5.5970824e+117 -5.6054163e+117 -5.5975001e+117 -5.6053103e+117 -5.6132146e+117 -5.6219095e+117 -5.6141038e+117 -5.6307819e+117 -5.6229715e+117 -5.5969256e+117 -5.6057082e+117 -5.614495e+117 -5.60561e+117 -5.6135894e+117 -5.6197042e+117 -5.6267966e+117 -5.6245178e+117 -5.6316723e+117 -5.6182858e+117 -5.6035239e+117 -5.6093624e+117 -5.6163269e+117 -5.6145501e+117 -5.6215906e+117 -5.6086099e+117 -5.6337488e+117 -5.6406935e+117 -5.64565e+117 -5.6386581e+117 -5.6231788e+117 -5.630031e+117 -5.6354142e+117 -5.6285074e+117 -5.5924482e+117 -5.5983249e+117 -5.6051056e+117 -5.6041906e+117 -5.6109802e+117 -5.5983027e+117 -5.5787343e+117 -5.5847288e+117 -5.5916771e+117 -5.591878e+117 -5.5987002e+117 -5.5858965e+117 -5.6118297e+117 -5.6185849e+117 -5.6244832e+117 -5.6177001e+117 -5.5985108e+117 -5.6053571e+117 -5.6121894e+117 -5.6054231e+117 -5.6530438e+117 -5.64806e+117 -5.6560298e+117 -5.661054e+117 -5.6427539e+117 -5.6373375e+117 -5.6452347e+117 -5.6507021e+117 -5.6629107e+117 -5.6594847e+117 -5.653974e+117 -5.6684475e+117 -5.6648284e+117 -5.6698979e+117 -5.6789288e+117 -5.6738229e+117 -5.62048e+117 -5.6126442e+117 -5.6194164e+117 -5.6272218e+117 -5.6317263e+117 -5.6258094e+117 -5.633615e+117 -5.6395801e+117 -5.6482674e+117 -5.6422453e+117 -5.6510995e+117 -5.6571733e+117 -5.6291216e+117 -5.6358373e+117 -5.6446611e+117 -5.637949e+117 -5.5916735e+117 -5.5873011e+117 -5.5920957e+117 -5.5965222e+117 -5.5828322e+117 -5.5786094e+117 -5.5825726e+117 -5.5869789e+117 -5.6125969e+117 -5.6168901e+117 -5.597605e+117 -5.6021303e+117 -5.6080589e+117 -5.6034876e+117 -5.623555e+117 -5.6192016e+117 -5.6257265e+117 -5.6302019e+117 -5.6166612e+117 -5.6101171e+117 -5.614712e+117 -5.6212352e+117 -5.5646194e+117 -5.5625316e+117 -5.5578669e+117 -5.5681357e+117 -5.5662101e+117 -5.5616857e+117 -5.5724506e+117 -5.5761597e+117 -5.6320358e+117 -5.6382026e+117 -5.6454631e+117 -5.642861e+117 -5.650199e+117 -5.6365505e+117 -5.6228023e+117 -5.6289219e+117 -5.6361924e+117 -5.6335553e+117 -5.6407882e+117 -5.6274359e+117 -5.6478756e+117 -5.6432867e+117 -5.6503273e+117 -5.6549501e+117 -5.6596999e+117 -5.6525952e+117 -5.6573739e+117 -5.6645336e+117 -5.6721078e+117 -5.6672225e+117 -5.6802947e+117 -5.6753617e+117 -5.6624811e+117 -5.6577804e+117 -5.6705725e+117 -5.6658298e+117 -5.6747164e+117 -5.6794914e+117 -5.6885824e+117 -5.6837745e+117 -5.6843278e+117 -5.6934776e+117 -5.6984859e+117 -5.6893093e+117 -5.9766515e+117 -6.0242814e+117 -6.0615307e+117 -6.0782363e+117 -6.0617049e+117 -6.0779814e+117 -6.0789061e+117 -6.080169e+117 -4.582371e+117 -4.5105101e+117 -5.3189378e+117 -5.3167143e+117 -4.8672669e+117 -4.9333544e+117 -4.8511919e+117 -5.3039791e+117 -5.3056227e+117 -4.9019216e+117 -4.6252165e+117 -4.5809325e+117 -4.8687229e+117 -5.2270832e+117 -5.222048e+117 -4.8886752e+117 -4.9028435e+117 -5.2056356e+117 -5.1804427e+117 -4.9337755e+117 -4.5057947e+117 -4.8212243e+117 -5.1969595e+117 -5.193077e+117 -4.8566206e+117 -5.7511442e+117 -5.4733492e+117 -5.4993883e+117 -5.7811482e+117 -5.5064589e+117 -5.8015332e+117 -5.5425073e+117 -5.7692235e+117 -5.4937201e+117 -5.5119822e+117 -5.7354952e+117 -5.4604135e+117 -5.4853713e+117 -5.4459154e+117 -5.3709191e+117 -5.3908063e+117 -5.4404517e+117 -5.1865885e+117 -5.1725625e+117 -4.8608871e+117 -4.9255387e+117 -9.8370241e+116 -5.2145827e+116 -5.0563963e+116 -7.9749735e+116 -5.2798726e+117 -5.0200467e+117 -8.2207893e+116 -1.5757081e+116 -5.1356971e+116 -3.7771645e+116 -5.2461203e+117 -4.9762986e+117 -2.2053054e+117 -3.1643343e+117 -4.0033539e+117 -4.6913484e+117 -4.3715544e+117 -3.718858e+116 -1.8707469e+117 -3.4621522e+117 -4.0059473e+117 -3.5495872e+117 -4.6343042e+117 -4.2612443e+117 -9.3333816e+116 -3.2574434e+117 -3.2901982e+117 -3.8818869e+117 -3.2485105e+117 -3.3753387e+117 -3.0031046e+117 -2.9051423e+117 -3.0480502e+117 -3.7853628e+117 -3.8022199e+117 -3.8362817e+117 -3.3143181e+117 -2.9090357e+117 -3.3199758e+117 -3.3195554e+117 -2.8718355e+117 -2.8272225e+117 -2.6577243e+117 -2.8241375e+117 -3.2831186e+117 -3.11264e+117 -4.5204457e+117 -4.5622572e+117 -4.1198562e+117 -4.1691858e+117 -4.1581383e+117 -4.1781012e+117 -3.4294308e+117 -3.2909378e+117 -3.0895951e+117 -4.1373681e+117 -3.7822408e+117 -3.7348376e+117 -4.0400513e+117 -3.2786696e+117 -2.7225507e+117 -2.4240244e+117 -2.4207565e+117 -1.9676604e+117 -1.181908e+117 -8.9015594e+116 -2.1488988e+117 -3.6301493e+116 -2.5758377e+117 -1.4164213e+117 -1.885532e+117 -6.0550673e+117 -5.9257647e+117 -6.0116488e+117 -5.9348997e+117 -6.013612e+117 -5.9318667e+117 -6.0118264e+117 -5.9108983e+117 -6.0588274e+117 -6.0604965e+117 -6.0612079e+117 -1.8027374e+117 -5.6606477e+117 -5.6508959e+117 -5.7615408e+117 -4.957155e+117 -4.9535309e+117 -4.8259206e+117 -4.6986788e+117 -4.8287237e+117 -4.7012031e+117 -4.5749826e+117 -4.4485661e+117 -4.5725008e+117 -4.4461048e+117 -3.9039579e+117 -4.0804761e+117 -4.0797064e+117 -4.2006205e+117 -4.2019055e+117 -4.3244468e+117 -4.3222656e+117 -3.6723917e+117 -3.4451245e+117 -5.7129551e+117 -5.7239871e+117 -5.7021321e+117 -5.6931703e+117 -5.6443425e+117 -5.6844908e+117 -5.6700791e+117 -5.6760167e+117 -5.7031115e+117 -5.7084259e+117 -5.6494385e+117 -5.7705474e+117 -5.7746759e+117 -5.736323e+117 -5.7498984e+117 -5.7394333e+117 -5.7336779e+117 -5.7422633e+117 -5.7700373e+117 -5.7834333e+117 -5.7839743e+117 -5.6483233e+117 -5.639571e+117 -5.6307054e+117 -5.6396365e+117 -5.6174212e+117 -5.6322017e+117 -5.6265256e+117 -5.6232098e+117 -5.6417294e+117 -5.6360743e+117 -5.6516475e+117 -5.6460614e+117 -5.6489038e+117 -5.6574484e+117 -5.667426e+117 -5.6588147e+117 -5.5987842e+117 -5.6050621e+117 -5.6145435e+117 -5.6085181e+117 -5.595668e+117 -5.5890887e+117 -5.580126e+117 -5.586907e+117 -5.6130935e+117 -5.6040123e+117 -5.5954468e+117 -5.6046678e+117 -5.6129183e+117 -5.6218362e+117 -5.6312382e+117 -5.6222205e+117 -5.6138924e+117 -5.6223004e+117 -5.6314916e+117 -5.6229268e+117 -5.6314994e+117 -5.6401298e+117 -5.6479359e+117 -5.6392957e+117 -5.6592035e+117 -5.6493581e+117 -5.657179e+117 -5.6670724e+117 -5.6313103e+117 -5.6406174e+117 -5.6503468e+117 -5.6408677e+117 -5.6492959e+117 -5.6578898e+117 -5.6676417e+117 -5.658914e+117 -5.6678256e+117 -5.6757369e+117 -5.6847738e+117 -5.6767243e+117 -5.6862506e+117 -5.6944571e+117 -5.7048354e+117 -5.6964901e+117 -5.6670257e+117 -5.676972e+117 -5.6870743e+117 -5.6770728e+117 -5.7312246e+117 -5.722659e+117 -5.713076e+117 -5.7031448e+117 -5.7250762e+117 -5.7148287e+117 -5.7234443e+117 -5.7338155e+117 -5.7348856e+117 -5.7437018e+117 -5.7526577e+117 -5.7437235e+117 -5.6767931e+117 -5.6716491e+117 -5.6819674e+117 -5.6875062e+117 -5.6954258e+117 -5.6895181e+117 -5.6932935e+117 -5.7046213e+117 -5.684072e+117 -5.6948164e+117 -5.7031051e+117 -5.7131025e+117 -5.7615752e+117 -5.76231e+117 -5.7526044e+117 -5.7713042e+117 -5.7619561e+117 -5.7636142e+117 -5.7529195e+117 -5.772501e+117 -5.7321323e+117 -5.7416731e+117 -5.7523406e+117 -5.7426622e+117 -5.7824072e+117 -5.7735148e+117 -5.7826021e+117 -5.7916348e+117 -5.7037079e+117 -5.6978392e+117 -5.7067776e+117 -5.712951e+117 -5.7238525e+117 -5.7173948e+117 -5.7265455e+117 -5.7329886e+117 -5.7420723e+117 -5.7317577e+117 -5.7408165e+117 -5.751125e+117 -5.7115501e+117 -5.7208179e+117 -5.7309317e+117 -5.7215911e+117 -5.7944075e+117 -5.7821493e+117 -5.7939514e+117 -5.7714995e+117 -5.7830635e+117 -5.8052025e+117 -5.8113657e+117 -5.8219784e+117 -5.822306e+117 -5.8329048e+117 -5.8152484e+117 -5.8245015e+117 -5.8322857e+117 -5.842907e+117 -5.8413738e+117 -5.8520316e+117 -5.79214e+117 -5.8040674e+117 -5.8014066e+117 -5.8134289e+117 -5.7344866e+117 -5.7460024e+117 -5.7412424e+117 -5.752601e+117 -5.7638638e+117 -5.7560419e+117 -5.7725623e+117 -5.7851411e+117 -5.7815619e+117 -5.7929035e+117 -5.7724175e+117 -5.7833338e+117 -5.7898946e+117 -5.8010525e+117 -5.8006533e+117 -5.8113415e+117 -5.7495453e+117 -5.7609448e+117 -5.7604834e+117 -5.7718702e+117 -5.6771101e+117 -5.6857914e+117 -5.680422e+117 -5.6716293e+117 -5.7057406e+117 -5.7006746e+117 -5.7107207e+117 -5.715812e+117 -5.6896836e+117 -5.6995136e+117 -5.7052314e+117 -5.6952173e+117 -5.6912244e+117 -5.6824757e+117 -5.687584e+117 -5.6963554e+117 -5.6465352e+117 -5.6532702e+117 -5.6619435e+117 -5.6551633e+117 -5.6643837e+117 -5.6713082e+117 -5.6813288e+117 -5.6743524e+117 -5.6841649e+117 -5.6780312e+117 -5.6880017e+117 -5.6939629e+117 -5.6597497e+117 -5.6747257e+117 -5.6685252e+117 -5.6658474e+117 -5.6966109e+117 -5.7025049e+117 -5.7115178e+117 -5.7055871e+117 -5.6831e+117 -5.6921902e+117 -5.6990923e+117 -5.6900397e+117 -5.7152663e+117 -5.7257299e+117 -5.7318149e+117 -5.7212686e+117 -5.7019383e+117 -5.7192719e+117 -5.7123847e+117 -5.7088151e+117 -5.7138977e+117 -5.70821e+117 -5.7229955e+117 -5.717302e+117 -5.7271485e+117 -5.7328993e+117 -5.7436654e+117 -5.7378016e+117 -5.7545692e+117 -5.7493267e+117 -5.7384786e+117 -5.7437494e+117 -5.7193462e+117 -5.7245694e+117 -5.7337372e+117 -5.7284992e+117 -5.7710562e+117 -5.7649e+117 -5.7780368e+117 -5.787232e+117 -5.7933376e+117 -5.7841887e+117 -5.7989082e+117 -5.7766331e+117 -5.7897499e+117 -5.7814155e+117 -5.7945907e+117 -5.80391e+117 -5.746116e+117 -5.7390722e+117 -5.7517388e+117 -5.7607295e+117 -5.7680498e+117 -5.7590014e+117 -5.7747453e+117 -5.7527261e+117 -5.7656997e+117 -5.7588523e+117 -5.7718633e+117 -5.7809992e+117 -5.7909555e+117 -5.7983499e+117 -5.8073845e+117 -5.8000544e+117 -5.7900677e+117 -5.7837453e+117 -5.7936191e+117 -5.7999953e+117 -5.7697081e+117 -5.7795182e+117 -5.7869028e+117 -5.7770554e+117 -5.8141217e+117 -5.8050576e+117 -5.8115113e+117 -5.8206536e+117 -5.7963426e+117 -5.8023917e+117 -5.8123297e+117 -5.806293e+117 -5.81786e+117 -5.8239186e+117 -5.8331112e+117 -5.8270264e+117 -5.8348909e+117 -5.8295903e+117 -5.8387998e+117 -5.8441089e+117 -5.8079658e+117 -5.8131009e+117 -5.8231889e+117 -5.8179525e+117 -5.8603236e+117 -5.843043e+117 -5.8554497e+117 -5.8369517e+117 -5.8493342e+117 -5.8663974e+117 -5.8767995e+117 -5.8874054e+117 -5.8828842e+117 -5.8934146e+117 -5.8721078e+117 -5.8774877e+117 -5.8885215e+117 -5.8990001e+117 -5.8938788e+117 -5.9043319e+117 -5.8487231e+117 -5.8611491e+117 -5.854051e+117 -5.8664787e+117 -5.8328904e+117 -5.817242e+117 -5.8294782e+117 -5.809894e+117 -5.821942e+117 -5.8404533e+117 -5.8495173e+117 -5.8602017e+117 -5.8571967e+117 -5.86787e+117 -5.8473833e+117 -5.8539779e+117 -5.8641383e+117 -5.8748234e+117 -5.8706737e+117 -5.8813365e+117 -5.8239883e+117 -5.8363422e+117 -5.8305373e+117 -5.8429364e+117 -5.6925394e+117 -5.7013667e+117 -5.7062915e+117 -5.6974109e+117 -5.8686927e+117 -5.818134e+117 -5.8282556e+117 -5.8332173e+117 -5.8449258e+117 -5.839994e+117 -5.8492268e+117 -5.8541939e+117 -5.8548e+117 -5.8498714e+117 -5.8591559e+117 -5.8639651e+117 -5.8880324e+117 -5.9003908e+117 -5.9112966e+117 -5.9160747e+117 -5.9051394e+117 -5.9019537e+117 -5.9065577e+117 -5.883168e+117 -5.8956199e+117 -5.8784893e+117 -5.8909539e+117 -5.9181805e+117 -5.9286336e+117 -5.922743e+117 -5.9332386e+117 -5.9322782e+117 -5.9275144e+117 -5.9379517e+117 -5.9427266e+117 -5.8826741e+117 -5.8641842e+117 -5.8767507e+117 -5.8592016e+117 -5.8716601e+117 -5.8877471e+117 -5.898986e+117 -5.9041558e+117 -5.9146017e+117 -5.9094525e+117 -5.8974118e+117 -5.8926782e+117 -5.9136608e+117 -5.9090017e+117 -5.9194549e+117 -5.9241152e+117 -5.8691098e+117 -5.8817089e+117 -5.873887e+117 -5.8864527e+117 -5.9420104e+117 -5.9371784e+117 -5.9474934e+117 -5.9521709e+117 -5.95064e+117 -5.9464761e+117 -5.9565621e+117 -5.9606698e+117 -5.7914191e+117 -5.7803884e+117 -4.5730321e+117 -4.6365202e+117 -2.2031488e+117 -4.7826323e+117 -4.7915459e+117 -4.0582552e+117 -4.5238311e+117 -4.0540135e+117 -3.1670516e+117 -4.389477e+117 -3.6908809e+117 -4.149954e+117 -3.2902008e+117 -3.9391777e+117 -4.7424694e+117 -4.5939947e+117 -4.419756e+117 -4.2773738e+117 -4.4588373e+117 -4.0162602e+117 -3.6744256e+117 -3.709106e+117 -3.1088412e+117 -3.0065563e+117 -2.326689e+117 -2.5156958e+117 -1.7501252e+117 -2.4589098e+117 -3.0471859e+117 -2.8719477e+117 -1.6863911e+117 -1.7668442e+117 -1.7379675e+117 -2.6380129e+117 -4.5013158e+117 -4.113725e+117 -1.6945367e+117 -2.7623794e+117 -2.0805793e+117 -3.6413144e+117 -1.232446e+117 -4.2688131e+116 -4.6022375e+116 -1.0156068e+117 -1.9295325e+117 -1.1856461e+117 -1.5056882e+117 -5.0293041e+117 -4.8783294e+117 -3.21985e+117 -4.7021113e+117 -4.7038975e+117 -4.5756625e+117 -4.4508255e+117 -4.3279117e+117 -4.2051612e+117 -3.6779321e+117 -3.8512097e+117 -3.8504721e+117 -3.9677162e+117 -3.9688184e+117 -4.08537e+117 -4.0869125e+117 -4.2061925e+117 -4.3284855e+117 -4.4515546e+117 -4.5769111e+117 -3.4501037e+117 -3.2245692e+117 -3.0001427e+117 -5.4516937e+117 -5.4447155e+117 -5.4589535e+117 -5.4664153e+117 -5.5002286e+117 -5.4429077e+117 -5.4438899e+117 -5.4510946e+117 -5.4499604e+117 -5.4586644e+117 -5.4664543e+117 -5.4651092e+117 -5.4574483e+117 -5.4310192e+117 -5.4376501e+117 -5.418502e+117 -5.4246295e+117 -5.4106502e+117 -5.4173032e+117 -5.4227818e+117 -5.4234356e+117 -5.4168294e+117 -5.429989e+117 -5.436847e+117 -5.4359012e+117 -5.4291056e+117 -5.3860024e+117 -5.3804499e+117 -5.3684706e+117 -5.3745676e+117 -5.3918554e+117 -5.3984997e+117 -5.4057101e+117 -5.412357e+117 -5.399079e+117 -5.3934391e+117 -5.3923415e+117 -5.3985187e+117 -5.4108967e+117 -5.4112082e+117 -5.4050889e+117 -5.4047861e+117 -5.3694161e+117 -5.3728426e+117 -5.3775042e+117 -5.3748335e+117 -5.3879355e+117 -5.3826029e+117 -5.3806764e+117 -5.3864253e+117 -5.4217581e+117 -5.4197584e+117 -5.4105096e+117 -5.4182933e+117 -5.4203968e+117 -5.4225135e+117 -5.4090237e+117 -5.415455e+117 -5.4236597e+117 -5.4373605e+117 -5.4304811e+117 -5.4545798e+117 -5.4429404e+117 -5.4313252e+117 -5.4377888e+117 -5.4320634e+117 -5.4164414e+117 -5.4303875e+117 -5.4390357e+117 -5.432036e+117 -5.4231959e+117 -5.4313623e+117 -5.4342702e+117 -5.4337235e+117 -5.4048233e+117 -5.400621e+117 -5.3961673e+117 -5.401223e+117 -5.4105739e+117 -5.407106e+117 -5.4130772e+117 -5.4165029e+117 -5.4275965e+117 -5.4152401e+117 -5.4068878e+117 -5.4034746e+117 -5.4050667e+117 -5.4136022e+117 -5.4268513e+117 -5.4131458e+117 -5.4249399e+117 -5.4192029e+117 -5.4009038e+117 -5.4073905e+117 -5.4220929e+117 -5.4357456e+117 -5.3906653e+117 -5.3998253e+117 -5.3820476e+117 -5.378565e+117 -5.3904671e+117 -5.3929821e+117 -5.3966655e+117 -5.3911823e+117 -5.386353e+117 -5.457301e+117 -5.4662899e+117 -5.4770216e+117 -5.451553e+117 -5.460403e+117 -5.4714058e+117 -5.4429332e+117 -5.4493185e+117 -5.4442047e+117 -5.4464482e+117 -5.4546901e+117 -5.4657874e+117 -5.4301928e+117 -5.43898e+117 -5.440042e+117 -5.4364742e+117 -5.4432526e+117 -5.4391721e+117 -5.4323767e+117 -5.4364647e+117 -5.4231136e+117 -5.429718e+117 -5.4257521e+117 -5.4193701e+117 -5.4775615e+117 -5.4871037e+117 -5.4968657e+117 -5.484287e+117 -5.4940681e+117 -5.5035196e+117 -5.4777495e+117 -5.4703944e+117 -5.4630501e+117 -5.4704786e+117 -5.4796395e+117 -5.4897827e+117 -5.463831e+117 -5.4728573e+117 -5.4831654e+117 -5.4560843e+117 -5.4573959e+117 -5.450185e+117 -5.4462246e+117 -5.4535011e+117 -5.4649332e+117 -5.46113e+117 -5.4689453e+117 -5.4726562e+117 -5.507712e+117 -5.5025299e+117 -5.5102499e+117 -5.3709606e+117 -5.4066549e+117 -3.9702655e+117 -3.8552272e+117 -3.740889e+117 -3.4552231e+117 -3.6263955e+117 -3.6255611e+117 -3.7405082e+117 -3.7398852e+117 -3.6260799e+117 -3.6224146e+117 -3.7375534e+117 -3.8559234e+117 -3.8540612e+117 -3.9712896e+117 -3.9719956e+117 -3.8511876e+117 -3.8541718e+117 -3.9660776e+117 -3.9686914e+117 -4.0864428e+117 -4.0890492e+117 -4.0896009e+117 -4.0879229e+117 -4.2067273e+117 -4.2084831e+117 -4.2086575e+117 -4.2080298e+117 -4.0890616e+117 -4.2059521e+117 -4.2041095e+117 -4.0841644e+117 -4.4531924e+117 -4.3291536e+117 -4.3289659e+117 -4.329266e+117 -4.3306392e+117 -4.3286238e+117 -4.4530427e+117 -4.4512678e+117 -4.4538828e+117 -4.4520368e+117 -4.4524769e+117 -4.3278412e+117 -4.4500637e+117 -4.3268046e+117 -4.5801685e+117 -4.5777789e+117 -4.5772733e+117 -4.5788608e+117 -4.7079142e+117 -4.7071669e+117 -4.7067384e+117 -4.7065162e+117 -4.8364746e+117 -4.8366751e+117 -4.8364267e+117 -4.9646427e+117 -4.9647734e+117 -4.9641703e+117 -5.0905888e+117 -5.0906237e+117 -5.2146966e+117 -5.2147471e+117 -5.3400286e+117 -5.4669531e+117 -3.2299721e+117 -3.512082e+117 -3.3981066e+117 -3.3958049e+117 -3.5086421e+117 -3.6200941e+117 -3.6242169e+117 -3.7349749e+117 -3.7314692e+117 -3.8477997e+117 -3.8442893e+117 -3.9582564e+117 -3.9625526e+117 -4.0800589e+117 -4.1995258e+117 -4.1946066e+117 -4.0753028e+117 -3.0058553e+117 -3.1728008e+117 -3.2854767e+117 -3.2829985e+117 -3.1698455e+117 -3.5068893e+117 -3.3961111e+117 -3.3936877e+117 -3.5027831e+117 -3.7292094e+117 -3.6185764e+117 -3.6131551e+117 -3.7239613e+117 -3.8358812e+117 -3.8406501e+117 -3.9484899e+117 -3.9530767e+117 -5.4383699e+117 -5.4411119e+117 -5.4399642e+117 -5.4468776e+117 -5.4400992e+117 -5.4375068e+117 -5.4331988e+117 -5.4483544e+117 -5.4438399e+117 -5.4302415e+117 -5.4507656e+117 -5.4585661e+117 -5.5657226e+117 -5.557012e+117 -5.5483914e+117 -5.5407532e+117 -5.5268612e+117 -5.5333534e+117 -5.521414e+117 -5.5136497e+117 -5.5199486e+117 -5.5140896e+117 -5.631305e+117 -5.6416345e+117 -5.6124483e+117 -5.6217166e+117 -5.6031627e+117 -5.5931483e+117 -5.5834416e+117 -5.5744815e+117 -5.2749094e+117 -5.2629806e+117 -5.2498946e+117 -5.271266e+117 -2.9485307e+117 -3.060161e+117 -3.0584741e+117 -2.9462498e+117 -3.1695313e+117 -3.2794116e+117 -3.2776352e+117 -3.1684197e+117 -3.3866591e+117 -3.3898636e+117 -3.4992122e+117 -3.494902e+117 -3.6046782e+117 -3.6094012e+117 -3.7197346e+117 -3.7149411e+117 -5.3346507e+117 -5.3301645e+117 -5.339994e+117 -5.3450341e+117 -5.3350955e+117 -5.3549045e+117 -5.3499838e+117 -5.3598742e+117 -5.3649158e+117 -5.3614812e+117 -5.355052e+117 -5.3592452e+117 -5.3551083e+117 -5.3505806e+117 -5.3635476e+117 -5.3681467e+117 -5.3647373e+117 -5.3598342e+117 -5.3371285e+117 -5.34163e+117 -5.3368812e+117 -5.3324703e+117 -5.3463165e+117 -5.3508332e+117 -5.3459918e+117 -5.3412554e+117 -5.3030491e+117 -5.2933881e+117 -5.2781216e+117 -5.3060589e+117 -5.3099689e+117 -5.3197399e+117 -5.3425705e+117 -5.3249776e+117 -5.326182e+117 -5.3292753e+117 -5.3293173e+117 -5.3463152e+117 -5.3235219e+117 -5.32668e+117 -5.3314905e+117 -5.3335279e+117 -5.3499322e+117 -5.3280517e+117 -5.3327486e+117 -5.3235863e+117 -5.3251191e+117 -5.3162219e+117 -5.319979e+117 -5.3216393e+117 -5.3119125e+117 -5.2829155e+117 -5.3063049e+117 -5.293702e+117 -5.292173e+117 -5.2879799e+117 -5.2731068e+117 -5.2958091e+117 -5.2943146e+117 -5.306071e+117 -5.288029e+117 -5.3189877e+117 -5.3356807e+117 -5.329549e+117 -5.3153366e+117 -5.3205411e+117 -5.3101471e+117 -5.3238369e+117 -5.3307196e+117 -5.3155543e+117 -5.3136115e+117 -5.3399516e+117 -5.311868e+117 -5.2980596e+117 -5.3069132e+117 -5.3255769e+117 -5.3405063e+117 -5.3543203e+117 -5.3666762e+117 -5.3732599e+117 -5.3531935e+117 -5.3605401e+117 -5.3522219e+117 -5.3396052e+117 -5.3394085e+117 -5.4111482e+117 -5.3913267e+117 -5.4040079e+117 -5.3763977e+117 -5.3817812e+117 -5.3874058e+117 -5.3613172e+117 -5.3690289e+117 -5.3901172e+117 -5.399579e+117 -5.4012953e+117 -5.3810118e+117 -5.3884104e+117 -5.3933717e+117 -5.4092032e+117 -5.4070623e+117 -5.4236283e+117 -5.3940047e+117 -5.4158788e+117 -5.4023316e+117 -5.3527055e+117 -5.3462271e+117 -5.3485051e+117 -5.3437478e+117 -5.3598263e+117 -5.3780697e+117 -5.3586296e+117 -5.3663438e+117 -5.387479e+117 -5.3746665e+117 -5.3723168e+117 -5.3537148e+117 -5.4111631e+117 -5.390304e+117 -5.4282751e+117 -5.3977969e+117 -5.416588e+117 -5.4334388e+117 -5.4145473e+117 -5.3945294e+117 -5.4314306e+117 -5.3717112e+117 -5.3835975e+117 -5.3720684e+117 -5.3799735e+117 -5.3797252e+117 -5.3661794e+117 -5.361311e+117 -5.3846673e+117 -5.3876616e+117 -5.3745999e+117 -5.3705951e+117 -5.3511522e+117 -5.36754e+117 -5.3728949e+117 -5.3550001e+117 -5.4066196e+117 -5.376819e+117 -5.3583865e+117 -5.3615088e+117 -5.3806349e+117 -5.4115642e+117 -5.3955639e+117 -5.4167066e+117 -5.4001433e+117 -5.3843585e+117 -5.3908234e+117 -5.4059743e+117 -5.3986917e+117 -5.3661974e+117 -5.374402e+117 -5.3853395e+117 -5.3756307e+117 -5.3813993e+117 -5.3930666e+117 -5.4013232e+117 -5.3883281e+117 -5.412663e+117 -5.4265418e+117 -5.3589183e+117 -5.3515714e+117 -5.4523375e+117 -5.4386839e+117 -5.4423485e+117 -5.4558449e+117 -5.4391266e+117 -5.4251175e+117 -5.4329162e+117 -5.4467686e+117 -5.4229923e+117 -3.1660501e+117 -3.2750814e+117 -3.2730609e+117 -3.16438e+117 -3.3812746e+117 -3.3840912e+117 -3.4923698e+117 -3.4887155e+117 -5.3662912e+117 -5.3636595e+117 -5.3688836e+117 -5.3709259e+117 -5.4249787e+117 -5.4289357e+117 -5.3934268e+117 -5.3724596e+117 -5.3740075e+117 -5.395129e+117 -5.392015e+117 -5.3904343e+117 -5.3697985e+117 -5.3710469e+117 -5.4114315e+117 -5.4130912e+117 -5.4318364e+117 -5.4300415e+117 -5.4146552e+117 -5.4167826e+117 -5.435925e+117 -5.4336853e+117 -5.3805119e+117 -5.3815309e+117 -5.3774929e+117 -5.3789685e+117 -5.4143415e+117 -5.4205499e+117 -5.3888876e+117 -5.3863327e+117 -5.3659352e+117 -5.3682174e+117 -5.3632836e+117 -5.3826855e+117 -5.3845433e+117 -5.3643474e+117 -5.4026178e+117 -5.404867e+117 -5.4225917e+117 -5.420014e+117 -5.4069091e+117 -5.4250482e+117 -5.4279977e+117 -5.4098258e+117 -5.3741185e+117 -5.3757451e+117 -5.3729258e+117 -5.3722956e+117 -5.3438419e+117 -5.3451007e+117 -5.3296478e+117 -5.3032759e+117 -5.303385e+117 -5.3305111e+117 -5.2936448e+117 -5.2919644e+117 -5.2927888e+117 -5.3047009e+117 -5.2962492e+117 -5.3072131e+117 -5.3463801e+117 -5.3481589e+117 -5.3313409e+117 -5.3332043e+117 -5.3050384e+117 -5.3131526e+117 -5.3116473e+117 -5.3078873e+117 -5.3039521e+117 -5.3057755e+117 -5.3383034e+117 -5.3424555e+117 -5.32916e+117 -5.3302932e+117 -5.3061438e+117 -5.296826e+117 -5.293181e+117 -5.2680566e+117 -5.3055311e+117 -5.3150778e+117 -5.2762758e+117 -5.2820489e+117 -5.2815808e+117 -5.27527e+117 -5.2952022e+117 -5.3064251e+117 -5.2974514e+117 -5.3082597e+117 -5.3506513e+117 -5.3489371e+117 -5.3330071e+117 -5.3347331e+117 -5.2964721e+117 -5.307337e+117 -5.2952161e+117 -5.3063124e+117 -5.3331267e+117 -5.3483991e+117 -5.3486419e+117 -5.3330164e+117 -5.3026014e+117 -5.3134936e+117 -5.305463e+117 -5.3155797e+117 -5.3565691e+117 -5.3553162e+117 -5.339816e+117 -5.3412652e+117 -5.2988354e+117 -5.3097406e+117 -5.3002478e+117 -5.3112355e+117 -5.3538641e+117 -5.3519513e+117 -5.3360891e+117 -5.3381133e+117 -5.2813953e+117 -5.2793584e+117 -5.2823533e+117 -5.2786427e+117 -5.2830286e+117 -5.2844361e+117 -5.2872012e+117 -5.2922495e+117 -5.3287962e+117 -5.3216609e+117 -5.3333354e+117 -5.3308965e+117 -5.3179641e+117 -5.3155131e+117 -5.3164979e+117 -5.3201495e+117 -5.3213206e+117 -5.3203007e+117 -5.3228194e+117 -5.3207952e+117 -5.3260554e+117 -5.3247421e+117 -5.3285495e+117 -5.3312896e+117 -5.3305568e+117 -5.3307765e+117 -5.326176e+117 -5.3157602e+117 -5.3156786e+117 -5.3088473e+117 -3.1609786e+117 -3.2699707e+117 -3.2674375e+117 -3.1586531e+117 -6.1772428e+117 -6.2367877e+117 -6.2240397e+117 -6.1814399e+117 -6.2364184e+117 -6.2265171e+117 -6.196609e+117 -6.1769548e+117 -6.2242608e+117 -6.2007588e+117 -6.1613682e+117 -6.1562398e+117 -6.2375158e+117 -6.2105835e+117 -6.1725177e+117 -6.1772036e+117 -6.1914557e+117 -6.1654487e+117 -6.1721773e+117 -6.1594959e+117 -6.0671891e+117 -6.1223724e+117 -6.119217e+117 -6.1145265e+117 -6.063364e+117 -6.1103138e+117 -6.0516559e+117 -6.0162889e+117 -6.049311e+117 -6.0068901e+117 -5.9921801e+117 -6.1115911e+117 -6.1178205e+117 -6.0511555e+117 -6.0043927e+117 -5.9954958e+117 -6.0601101e+117 -6.1224383e+117 -6.0665568e+117 -6.0756034e+117 -6.0652697e+117 -6.1471975e+117 -7.1535495e+117 -6.2508937e+117 -7.9589557e+117 -8.025264e+117 -6.3357573e+117 -6.5662402e+117 -6.2243632e+117 -6.3960719e+117 -1.0052566e+118 -8.1283694e+117 -6.4558456e+117 -6.1152142e+117 -6.5772942e+117 -8.3930118e+117 -6.5091841e+117 -6.3878319e+117 -6.2163009e+117 -6.2882374e+117 -6.0151579e+117 -6.0654391e+117 -6.0774817e+117 -6.0411045e+117 -6.0280333e+117 -5.9692592e+117 -5.9417217e+117 -5.9745209e+117 -6.1110399e+117 -5.9786621e+117 -5.9858849e+117 -5.9851852e+117 -6.1956126e+117 -6.1217153e+117 -6.296235e+117 -6.0237927e+117 -6.0510877e+117 -6.0985756e+117 -6.2249243e+117 -6.0278274e+117 -6.1168748e+117 -6.698726e+117 -7.4263441e+117 -6.7667074e+117 -6.9760029e+117 -8.3807526e+117 -7.1518106e+117 -6.1417757e+117 -6.4030121e+117 -6.5118257e+117 -6.2026552e+117 -6.0807071e+117 -6.0612372e+117 -6.1034586e+117 -6.0911757e+117 -6.0639288e+117 -6.0797665e+117 -6.0627393e+117 -6.0537681e+117 -5.9926701e+117 -6.026741e+117 -6.0113884e+117 -6.1040219e+117 -6.0964591e+117 -6.0554689e+117 -6.0257626e+117 -6.092425e+117 -6.0529876e+117 -6.0302673e+117 -6.1375184e+117 -6.1476986e+117 -5.986047e+117 -5.9979457e+117 -6.0071071e+117 -6.3033653e+117 -6.1946441e+117 -6.1186619e+117 -6.1975909e+117 -6.078116e+117 -6.2347582e+117 -6.008276e+117 -6.012836e+117 -5.9751812e+117 -5.9804189e+117 -6.0020653e+117 -6.0057769e+117 -4.6956177e+117 -4.6898106e+117 -4.6909998e+117 -4.6928989e+117 -4.4414478e+117 -4.5649703e+117 -4.5667351e+117 -4.5668404e+117 -4.5668625e+117 -4.443536e+117 -3.9050368e+117 -4.0795384e+117 -4.0804369e+117 -4.2000978e+117 -4.1992921e+117 -4.08026e+117 -4.1989128e+117 -4.1983944e+117 -4.0781736e+117 -4.3206668e+117 -4.3200256e+117 -4.3177454e+117 -4.3193471e+117 -4.3184974e+117 -4.4378013e+117 -4.4424065e+117 -4.4433438e+117 -4.56007e+117 -4.6820833e+117 -4.6866942e+117 -4.6887849e+117 -4.5689737e+117 -4.5671227e+117 -4.0794782e+117 -3.9626363e+117 -4.1948045e+117 -4.1893707e+117 -4.0745245e+117 -3.9582223e+117 -3.6738467e+117 -3.8459376e+117 -3.8421488e+117 -4.4337777e+117 -4.3134536e+117 -4.306541e+117 -4.4245894e+117 -4.546372e+117 -4.5558106e+117 -4.6696501e+117 -4.6771367e+117 -4.4158444e+117 -4.2979811e+117 -4.180975e+117 -3.8419953e+117 -3.7295075e+117 -3.9530076e+117 -3.9469175e+117 -3.8364895e+117 -3.7255766e+117 -3.4464272e+117 -3.6155084e+117 -3.612796e+117 -4.0662683e+117 -4.0585225e+117 -4.1699677e+117 -4.2845914e+117 -4.4017161e+117 -4.1616335e+117 -3.9413728e+117 -4.0518937e+117 -3.2215121e+117 -3.3880975e+117 -3.5006949e+117 -3.4981011e+117 -3.3855368e+117 -3.6109867e+117 -3.7208764e+117 -3.7170873e+117 -3.6083744e+117 -3.8313144e+117 -3.8255896e+117 -3.933351e+117 -4.0421905e+117 -4.1510618e+117 -4.9302193e+117 -3.1623783e+117 -3.164963e+117 -3.2732948e+117 -3.2756338e+117 -3.3842731e+117 -3.4937817e+117 -3.4914564e+117 -3.3819841e+117 -3.6036973e+117 -3.7123208e+117 -3.7088363e+117 -3.6011672e+117 -3.9285987e+117 -3.8208269e+117 -3.8158428e+117 -3.9219146e+117 -3.3786519e+117 -3.4876083e+117 -3.4853496e+117 -3.3762603e+117 -3.5967312e+117 -3.7044621e+117 -3.7014019e+117 -3.594392e+117 -5.7538242e+117 -5.7580129e+117 -5.8421642e+117 -5.9157605e+117 -5.6418402e+117 -5.635372e+117 -5.3845545e+117 -5.5049785e+117 -5.3831419e+117 -4.8084472e+117 -4.810106e+117 -4.8100446e+117 -4.8112773e+117 -4.814186e+117 -4.9303348e+117 -4.9306803e+117 -4.9311039e+117 -4.932341e+117 -4.9367629e+117 -4.9494959e+117 -4.943481e+117 -4.8188244e+117 -4.8232323e+117 -4.8049585e+117 -4.9289298e+117 -5.0487323e+117 -5.0486717e+117 -5.0490119e+117 -5.0522489e+117 -5.059443e+117 -5.1706372e+117 -5.1813886e+117 -5.1644855e+117 -5.1639598e+117 -5.1648817e+117 -5.2742696e+117 -5.2744221e+117 -5.4733654e+117 -5.4660287e+117 -5.4738866e+117 -5.4813479e+117 -5.4587125e+117 -5.4496802e+117 -5.4573122e+117 -5.4665102e+117 -5.472281e+117 -5.4628019e+117 -5.4663468e+117 -5.476323e+117 -5.4873103e+117 -5.4797974e+117 -5.4839679e+117 -5.4915998e+117 -5.4170454e+117 -5.4370849e+117 -5.4453931e+117 -5.4240569e+117 -5.4524652e+117 -5.4305982e+117 -5.4378313e+117 -5.4596325e+117 -5.4988176e+117 -5.4931715e+117 -5.4976201e+117 -5.5037783e+117 -5.4921125e+117 -5.4873029e+117 -5.4966643e+117 -5.5017946e+117 -5.4786321e+117 -5.4831232e+117 -5.4869103e+117 -5.4920896e+117 -5.5093069e+117 -5.503817e+117 -5.5091247e+117 -5.5150906e+117 -5.4682685e+117 -5.4646627e+117 -5.4423136e+117 -5.444571e+117 -5.4720803e+117 -5.4479196e+117 -5.4529413e+117 -5.4767529e+117 -5.4555668e+117 -5.4797751e+117 -5.4818364e+117 -5.4563237e+117 -5.4843904e+117 -5.4585177e+117 -5.4626379e+117 -5.4880538e+117 -5.4983763e+117 -5.4954622e+117 -5.5057487e+117 -5.5094296e+117 -5.5012516e+117 -5.5126619e+117 -5.5162191e+117 -5.5048986e+117 -5.5252051e+117 -5.5215241e+117 -5.528442e+117 -5.5323092e+117 -5.517979e+117 -5.5137616e+117 -5.5199059e+117 -5.5246937e+117 -5.5418001e+117 -5.5439212e+117 -5.5359887e+117 -5.549475e+117 -5.5296925e+117 -5.523822e+117 -5.5320552e+117 -5.5377526e+117 -5.547421e+117 -5.5397517e+117 -5.5453033e+117 -5.5529464e+117 -5.5516067e+117 -5.5592991e+117 -5.5650768e+117 -5.5572645e+117 -5.5069409e+117 -5.5131972e+117 -5.4937237e+117 -5.5000716e+117 -5.5045993e+117 -5.5107024e+117 -5.5206785e+117 -5.5146909e+117 -5.5175502e+117 -5.5235867e+117 -5.5334144e+117 -5.5273752e+117 -5.4825944e+117 -5.4879991e+117 -5.4984559e+117 -5.4936267e+117 -5.4700791e+117 -5.4769087e+117 -5.48241e+117 -5.4878606e+117 -5.4933881e+117 -5.5035359e+117 -5.5089324e+117 -5.4988257e+117 -5.5169228e+117 -5.5080799e+117 -5.5036164e+117 -5.5126765e+117 -5.5281448e+117 -5.5249601e+117 -5.5207141e+117 -5.5324419e+117 -5.5344104e+117 -5.5294025e+117 -5.5370645e+117 -5.5420953e+117 -5.5128522e+117 -5.5181263e+117 -5.5265398e+117 -5.5214518e+117 -5.4763838e+117 -5.4766224e+117 -5.4871352e+117 -5.4868668e+117 -5.4894563e+117 -5.4791679e+117 -5.47759e+117 -5.4879672e+117 -5.4967048e+117 -5.4979836e+117 -5.5054372e+117 -5.5042647e+117 -5.4954394e+117 -5.4959104e+117 -5.5034965e+117 -5.5029854e+117 -5.4507248e+117 -5.4517811e+117 -5.4647343e+117 -5.4644084e+117 -5.4545822e+117 -5.467458e+117 -5.4658389e+117 -5.453089e+117 -5.4803646e+117 -5.4677126e+117 -5.4746485e+117 -5.461699e+117 -5.4703994e+117 -5.4573697e+117 -5.4612705e+117 -5.4742212e+117 -5.4860418e+117 -5.4910166e+117 -5.5006853e+117 -5.486019e+117 -5.4819879e+117 -5.4959622e+117 -5.4921343e+117 -5.4965614e+117 -5.5058677e+117 -5.5085173e+117 -5.5138492e+117 -5.5213211e+117 -5.5161376e+117 -5.5117404e+117 -5.504256e+117 -5.5079776e+117 -5.5005502e+117 -5.5445598e+117 -5.5516223e+117 -5.5563305e+117 -5.5494479e+117 -5.5571744e+117 -5.554347e+117 -5.5503704e+117 -5.5609974e+117 -5.5356076e+117 -5.5399325e+117 -5.5472788e+117 -5.5431222e+117 -5.5630775e+117 -5.5584387e+117 -5.5651116e+117 -5.5696974e+117 -5.5710606e+117 -5.575998e+117 -5.5804148e+117 -5.5755109e+117 -5.584775e+117 -5.5803812e+117 -5.5846456e+117 -5.5890424e+117 -5.5763933e+117 -5.5727204e+117 -5.5807357e+117 -5.5770211e+117 -5.56319e+117 -5.5669533e+117 -5.5720369e+117 -5.5683754e+117 -5.5976202e+117 -5.5971272e+117 -5.592114e+117 -5.6027074e+117 -5.5854701e+117 -5.5805349e+117 -5.5859385e+117 -5.5908915e+117 -5.5940747e+117 -5.5897744e+117 -5.5952924e+117 -5.5996523e+117 -5.6016662e+117 -5.6074569e+117 -5.6120581e+117 -5.6061354e+117 -5.5616507e+117 -5.5547699e+117 -5.5603655e+117 -5.5673175e+117 -5.5738038e+117 -5.5667696e+117 -5.5726116e+117 -5.5797354e+117 -5.5865471e+117 -5.5804e+117 -5.5863241e+117 -5.5922105e+117 -5.5682744e+117 -5.5739279e+117 -5.5802744e+117 -5.5747725e+117 -5.5337955e+117 -5.5360919e+117 -5.541331e+117 -5.5388523e+117 -5.5377549e+117 -5.5397843e+117 -5.5450779e+117 -5.5430084e+117 -5.5474702e+117 -5.5493999e+117 -5.5533022e+117 -5.5513269e+117 -5.5429668e+117 -5.5456972e+117 -5.5494756e+117 -5.5466617e+117 -5.5111346e+117 -5.51243e+117 -5.5194092e+117 -5.5179871e+117 -5.5092892e+117 -5.5101453e+117 -5.5168497e+117 -5.5156698e+117 -5.5219683e+117 -5.5236438e+117 -5.5302031e+117 -5.5282653e+117 -5.5249762e+117 -5.5266604e+117 -5.5336037e+117 -5.5316812e+117 -5.5454344e+117 -5.5381225e+117 -5.5408126e+117 -5.533659e+117 -5.5366461e+117 -5.5295511e+117 -5.5231744e+117 -5.5307776e+117 -5.5262432e+117 -5.5188948e+117 -5.5221998e+117 -5.5150549e+117 -5.5361882e+117 -5.5286212e+117 -5.5437015e+117 -5.5508242e+117 -5.5568904e+117 -5.5514659e+117 -5.547039e+117 -5.5428692e+117 -5.5481566e+117 -5.5523489e+117 -5.5665374e+117 -5.5609812e+117 -5.5652201e+117 -5.570673e+117 -5.5569907e+117 -5.5622927e+117 -5.5566025e+117 -5.5524457e+117 -5.5563934e+117 -5.5606366e+117 -5.5406535e+117 -5.5481011e+117 -5.5418185e+117 -5.5342236e+117 -5.5278773e+117 -5.5280341e+117 -5.5353108e+117 -5.5195198e+117 -5.5374107e+117 -5.5436748e+117 -5.5464572e+117 -5.5521729e+117 -5.5394915e+117 -5.5298318e+117 -5.5500526e+117 -5.5563146e+117 -5.5649143e+117 -5.5584801e+117 -5.5632798e+117 -5.5705614e+117 -5.5768807e+117 -5.5785423e+117 -5.5848623e+117 -5.5711778e+117 -5.5476823e+117 -5.5545703e+117 -5.5605004e+117 -5.5624536e+117 -5.5686331e+117 -5.5553249e+117 -5.5835693e+117 -5.5903067e+117 -5.5981807e+117 -5.5915003e+117 -5.567006e+117 -5.5735962e+117 -5.5819936e+117 -5.5752808e+117 -5.5794295e+117 -5.5705548e+117 -5.563107e+117 -5.5718422e+117 -5.5548501e+117 -5.5475929e+117 -5.5548331e+117 -5.5621069e+117 -5.570234e+117 -5.5630985e+117 -5.5716232e+117 -5.5786396e+117 -5.5788419e+117 -5.5872679e+117 -5.5964629e+117 -5.5878256e+117 -5.5883819e+117 -5.5806733e+117 -5.5891754e+117 -5.5970144e+117 -5.6053931e+117 -5.5975136e+117 -5.605324e+117 -5.6131885e+117 -5.6219442e+117 -5.6141391e+117 -5.6309283e+117 -5.623119e+117 -5.5968744e+117 -5.6056965e+117 -5.614596e+117 -5.605664e+117 -5.6137031e+117 -5.6211291e+117 -5.627575e+117 -5.6259113e+117 -5.6324406e+117 -5.6183766e+117 -5.6036403e+117 -5.6107727e+117 -5.6171106e+117 -5.6159478e+117 -5.622363e+117 -5.6087135e+117 -5.6343128e+117 -5.6409997e+117 -5.6459368e+117 -5.6392093e+117 -5.6237591e+117 -5.6303633e+117 -5.6357297e+117 -5.6290749e+117 -5.5925816e+117 -5.5997433e+117 -5.6058802e+117 -5.6055552e+117 -5.611728e+117 -5.5984101e+117 -5.5788523e+117 -5.5861739e+117 -5.5924315e+117 -5.5933084e+117 -5.59946e+117 -5.5860177e+117 -5.6124029e+117 -5.6189142e+117 -5.6247818e+117 -5.6182499e+117 -5.5990507e+117 -5.6056582e+117 -5.6125036e+117 -5.6059796e+117 -5.6531228e+117 -5.6481618e+117 -5.6560851e+117 -5.6610855e+117 -5.6428645e+117 -5.6374675e+117 -5.645322e+117 -5.6507684e+117 -5.6631815e+117 -5.6596147e+117 -5.6541249e+117 -5.6686985e+117 -5.6649494e+117 -5.6699943e+117 -5.6791431e+117 -5.6740621e+117 -5.620544e+117 -5.6127486e+117 -5.6195287e+117 -5.6272923e+117 -5.631819e+117 -5.625935e+117 -5.6336949e+117 -5.6396267e+117 -5.6483778e+117 -5.6423879e+117 -5.6513593e+117 -5.6574002e+117 -5.6292447e+117 -5.6359692e+117 -5.6449121e+117 -5.6381876e+117 -5.5932781e+117 -5.5888619e+117 -5.5933171e+117 -5.597804e+117 -5.5849074e+117 -5.5810876e+117 -5.5850859e+117 -5.589084e+117 -5.613265e+117 -5.6174841e+117 -5.5984617e+117 -5.6030292e+117 -5.6087133e+117 -5.6041025e+117 -5.6240884e+117 -5.6198167e+117 -5.6257628e+117 -5.6301545e+117 -5.6165983e+117 -5.6106504e+117 -5.6152847e+117 -5.6212214e+117 -5.5690409e+117 -5.564536e+117 -5.5603994e+117 -5.5727018e+117 -5.5680624e+117 -5.5640016e+117 -5.5745245e+117 -5.5782409e+117 -5.632198e+117 -5.6397469e+117 -5.6463147e+117 -5.6444024e+117 -5.6510386e+117 -5.6367023e+117 -5.6229333e+117 -5.6303867e+117 -5.637015e+117 -5.6350599e+117 -5.6416155e+117 -5.6275822e+117 -5.6484998e+117 -5.6438905e+117 -5.6506704e+117 -5.6553127e+117 -5.6600778e+117 -5.6532367e+117 -5.6580017e+117 -5.6648892e+117 -5.6722441e+117 -5.6673826e+117 -5.6803807e+117 -5.6754721e+117 -5.6626318e+117 -5.6579149e+117 -5.6706763e+117 -5.6659198e+117 -5.6748719e+117 -5.6796615e+117 -5.6888782e+117 -5.6840529e+117 -5.6845072e+117 -5.6937811e+117 -5.6987602e+117 -5.6894611e+117 -6.0602786e+117 -6.0779802e+117 -6.0780163e+117 -4.4670364e+117 -4.3990824e+117 -4.0457687e+117 -4.3914426e+117 -5.2350446e+117 -5.2667607e+117 -5.2505059e+117 -4.7950948e+117 -4.7554233e+117 -4.8398473e+117 -4.5064689e+117 -4.7655775e+117 -5.1874593e+117 -5.2573152e+117 -5.204605e+117 -4.8011542e+117 -4.4643167e+117 -4.8431389e+117 -5.222266e+117 -5.2118703e+117 -4.8624906e+117 -4.878401e+117 -5.195859e+117 -5.1728341e+117 -4.9159708e+117 -4.3880632e+117 -4.7927438e+117 -5.188695e+117 -5.1827089e+117 -4.8251337e+117 -5.484963e+117 -5.5140297e+117 -5.7919688e+117 -5.5273341e+117 -5.833262e+117 -5.5812297e+117 -5.8250102e+117 -5.6283702e+117 -5.7780184e+117 -5.5203266e+117 -5.5450898e+117 -5.5149082e+117 -5.4716774e+117 -5.4979529e+117 -5.1741837e+117 -5.161691e+117 -4.8330578e+117 -4.9001061e+117 -3.2770225e+116 -1.8409254e+116 -3.891174e+116 -2.4671209e+116 -6.6268493e+116 -1.7855969e+117 -3.4399707e+117 -3.9962333e+117 -3.5581463e+117 -4.6147319e+117 -4.2377149e+117 -8.7613839e+116 -3.1567866e+117 -3.3126091e+117 -3.8550397e+117 -3.2485102e+117 -3.3507586e+117 -3.1480877e+117 -3.3140579e+117 -2.571729e+117 -2.7646166e+117 -3.1609106e+117 -2.7204173e+117 -2.9317653e+117 -2.8475564e+117 -2.4017489e+117 -2.6407624e+117 -2.8055789e+117 -3.6965374e+117 -3.7383574e+117 -3.718438e+117 -3.6827809e+117 -3.196774e+117 -2.739956e+117 -2.6601148e+117 -3.135158e+117 -3.2123773e+117 -2.7406349e+117 -3.2407407e+117 -2.764644e+117 -2.5945372e+117 -2.7787748e+117 -2.4252755e+117 -2.6275456e+117 -2.7370268e+117 -3.2370772e+117 -2.7609085e+117 -4.4794183e+117 -4.5318016e+117 -4.03553e+117 -4.0674818e+117 -4.1357833e+117 -4.0418804e+117 -3.3181742e+117 -3.0509105e+117 -3.9849927e+117 -3.6346711e+117 -3.5433929e+117 -3.9217659e+117 -2.5680514e+117 -2.2405764e+117 -2.4638752e+117 -2.3133095e+117 -1.3318741e+117 -5.4019825e+116 -3.0838164e+116 -2.120842e+117 -1.6227092e+117 -5.9380396e+117 -6.0140531e+117 -5.9417968e+117 -6.0140086e+117 -5.9339252e+117 -6.0607477e+117 -6.0614403e+117 -4.6987031e+117 -4.7012284e+117 -4.5750048e+117 -4.4488658e+117 -4.572521e+117 -4.446385e+117 -3.8511667e+117 -3.9669304e+117 -3.8513089e+117 -3.6782691e+117 -3.9673798e+117 -4.0837226e+117 -4.0827982e+117 -4.2009883e+117 -4.2025279e+117 -4.3247234e+117 -4.3225043e+117 -3.4506607e+117 -3.2250998e+117 -4.5613784e+117 -4.9222087e+117 -4.1468583e+117 -4.7675744e+117 -4.2578769e+117 -3.1524574e+117 -4.0910745e+117 -3.288411e+117 -2.661639e+117 -3.7323741e+117 -4.1447483e+117 -3.2748932e+117 -3.9260309e+117 -2.6818115e+117 -4.5633252e+117 -4.2524857e+117 -4.4120257e+117 -3.9544579e+117 -3.5088435e+117 -3.6404294e+117 -3.0499987e+117 -2.4630138e+117 -2.9805742e+117 -2.8542029e+117 -2.165884e+117 -1.7086927e+117 -1.5912135e+117 -1.4820381e+117 -1.74531e+117 -2.2735117e+117 -2.4561069e+117 -2.9587866e+117 -2.6942056e+117 -2.6638383e+117 -1.1037655e+117 -1.133065e+117 -1.1192456e+117 -1.9961e+117 -2.2044785e+117 -4.4683498e+117 -4.082064e+117 -7.2981467e+116 -2.5413145e+117 -2.4719226e+117 -2.0488958e+117 -1.1369536e+117 -3.3602386e+116 -1.6889511e+117 -4.5361139e+116 -1.3981942e+117 -4.9449298e+117 -3.000722e+117 -4.4508467e+117 -4.3279308e+117 -4.2054565e+117 -3.4549076e+117 -3.6250391e+117 -3.6259884e+117 -3.7401642e+117 -3.7400623e+117 -3.8542229e+117 -3.8535561e+117 -3.9681457e+117 -3.9693025e+117 -4.0856183e+117 -4.0871233e+117 -4.2064434e+117 -4.3285013e+117 -4.4515777e+117 -3.2294683e+117 -3.0051136e+117 -5.4202949e+117 -5.4208949e+117 -5.4237306e+117 -5.4156424e+117 -5.423528e+117 -5.4367641e+117 -5.4313835e+117 -5.4532976e+117 -5.4426964e+117 -5.4397042e+117 -5.4431303e+117 -5.4508872e+117 -5.4363372e+117 -5.4316591e+117 -5.4409764e+117 -5.4494085e+117 -5.4369403e+117 -5.4283706e+117 -5.4163854e+117 -5.4084546e+117 -5.4146816e+117 -5.4275894e+117 -5.4147493e+117 -5.4261424e+117 -5.4366981e+117 -5.4197099e+117 -5.4030535e+117 -5.4087352e+117 -5.4229011e+117 -5.4370973e+117 -5.4028182e+117 -5.467302e+117 -5.4771181e+117 -5.4615428e+117 -5.471704e+117 -5.4468991e+117 -5.4561493e+117 -5.4665034e+117 -5.4411538e+117 -5.4423696e+117 -5.488206e+117 -5.4967686e+117 -5.4951557e+117 -5.5032854e+117 -5.4805498e+117 -5.4896745e+117 -5.4738122e+117 -5.4831372e+117 -5.5105121e+117 -3.9704844e+117 -3.8554202e+117 -3.7411068e+117 -3.5168601e+117 -3.4032748e+117 -3.2334633e+117 -3.4024934e+117 -3.5151611e+117 -3.5144299e+117 -3.4010302e+117 -3.399715e+117 -3.513432e+117 -3.6283904e+117 -3.6263216e+117 -3.6287097e+117 -3.7415255e+117 -3.7420943e+117 -3.7406426e+117 -3.6278165e+117 -3.6249741e+117 -3.7373426e+117 -3.8563983e+117 -3.8561133e+117 -3.8558054e+117 -3.9715442e+117 -3.9722841e+117 -3.9715878e+117 -3.8514505e+117 -3.8543371e+117 -3.966378e+117 -3.9689611e+117 -4.0864687e+117 -4.0894148e+117 -4.0907144e+117 -4.0899029e+117 -4.0879362e+117 -4.2067423e+117 -4.2086246e+117 -4.2095902e+117 -4.208672e+117 -4.2082861e+117 -4.0890822e+117 -4.2059726e+117 -4.2041363e+117 -4.0841934e+117 -4.3291308e+117 -4.3292544e+117 -4.3292751e+117 -4.3286406e+117 -4.4530132e+117 -4.4510621e+117 -4.4507517e+117 -4.4520038e+117 -4.5777426e+117 -4.5771484e+117 -4.5772072e+117 -4.7071174e+117 -4.7067119e+117 -4.7066619e+117 -4.8366791e+117 -4.8366713e+117 -4.9648107e+117 -4.9647917e+117 -5.0906404e+117 -5.2147415e+117 -3.0104117e+117 -3.1767839e+117 -3.2895806e+117 -3.2881828e+117 -3.1754796e+117 -3.5120562e+117 -3.4004953e+117 -3.3984004e+117 -3.5084833e+117 -3.6202905e+117 -3.6243571e+117 -3.7351681e+117 -3.7316871e+117 -3.8478225e+117 -3.8443095e+117 -3.9582811e+117 -3.9625776e+117 -2.9536281e+117 -2.950658e+117 -3.0623552e+117 -3.0652229e+117 -3.1750065e+117 -3.2852191e+117 -3.2826868e+117 -3.172006e+117 -3.5070696e+117 -3.3962951e+117 -3.3937836e+117 -3.5029242e+117 -3.7292224e+117 -3.6185887e+117 -3.6131703e+117 -3.7239763e+117 -5.4390684e+117 -5.4411786e+117 -5.4402831e+117 -5.4426707e+117 -5.4469009e+117 -5.4392491e+117 -5.4325502e+117 -5.4479443e+117 -5.4434456e+117 -5.4302258e+117 -5.4531133e+117 -5.4604665e+117 -5.5208944e+117 -5.2977459e+117 -2.9506693e+117 -3.0595537e+117 -3.0580369e+117 -2.9485431e+117 -3.169662e+117 -3.2795384e+117 -3.2777276e+117 -3.1685495e+117 -3.3866657e+117 -3.3898723e+117 -3.4992197e+117 -3.4949091e+117 -5.301819e+117 -5.2935227e+117 -5.3637842e+117 -5.3445596e+117 -5.337057e+117 -5.34021e+117 -5.3472038e+117 -5.3687811e+117 -5.3409513e+117 -5.3502383e+117 -5.3739149e+117 -5.2956622e+117 -5.3193431e+117 -5.2948779e+117 -5.2926322e+117 -5.3119626e+117 -5.3028849e+117 -5.3310319e+117 -5.3398651e+117 -5.3560331e+117 -5.352276e+117 -5.3342049e+117 -5.3318797e+117 -5.3236271e+117 -5.3288885e+117 -5.3444317e+117 -5.3197451e+117 -5.3083035e+117 -5.3172606e+117 -5.3345118e+117 -5.3496006e+117 -5.3570942e+117 -5.3737788e+117 -5.3769258e+117 -5.3538933e+117 -5.3503096e+117 -5.4277114e+117 -5.4128501e+117 -5.3977657e+117 -5.4076247e+117 -5.3627301e+117 -5.3693527e+117 -5.391515e+117 -5.4065604e+117 -5.4011167e+117 -5.4166578e+117 -5.396555e+117 -5.3833448e+117 -5.4422878e+117 -5.434793e+117 -5.4319099e+117 -5.4120656e+117 -5.442555e+117 -5.4265119e+117 -5.4352414e+117 -5.4202443e+117 -5.4211254e+117 -5.4103047e+117 -5.3597717e+117 -5.3544897e+117 -5.3652431e+117 -5.3771202e+117 -5.3703925e+117 -5.3859667e+117 -5.377047e+117 -5.4119958e+117 -5.4316075e+117 -5.4134089e+117 -5.3936904e+117 -5.4441739e+117 -5.3997204e+117 -5.4174446e+117 -5.4349665e+117 -5.4491239e+117 -5.4335985e+117 -5.4157969e+117 -5.3967061e+117 -5.4473683e+117 -5.3800733e+117 -5.3853107e+117 -5.3815042e+117 -5.3814898e+117 -5.3922565e+117 -5.397673e+117 -5.3855922e+117 -5.4568571e+117 -5.4498873e+117 -5.4261522e+117 -5.4318301e+117 -5.4479278e+117 -5.4418058e+117 -5.4014428e+117 -5.3886599e+117 -5.3913519e+117 -5.404917e+117 -5.4249042e+117 -5.4126865e+117 -5.4300038e+117 -5.4169268e+117 -5.4015566e+117 -5.4079557e+117 -5.4189413e+117 -5.4114291e+117 -5.377374e+117 -5.383337e+117 -5.3946345e+117 -5.3871334e+117 -5.3892016e+117 -5.3892766e+117 -5.4011595e+117 -5.4016734e+117 -5.4056062e+117 -5.3923785e+117 -5.376743e+117 -5.3685409e+117 -5.4614226e+117 -5.4629736e+117 -5.4533151e+117 -5.4387839e+117 -5.4582853e+117 -5.4272484e+117 -3.1660595e+117 -3.2750899e+117 -3.2730675e+117 -3.1643876e+117 -5.3844332e+117 -5.3813135e+117 -5.3867709e+117 -5.3887479e+117 -5.4468091e+117 -5.4765295e+117 -5.4751828e+117 -5.4645307e+117 -5.4669367e+117 -5.4489604e+117 -5.4826907e+117 -5.4790117e+117 -5.4509378e+117 -5.4691782e+117 -5.4717295e+117 -5.4533818e+117 -5.4178133e+117 -5.4025509e+117 -5.4037605e+117 -5.419349e+117 -5.4163044e+117 -5.4144061e+117 -5.3993855e+117 -5.4010914e+117 -5.4279777e+117 -5.4298939e+117 -5.4458866e+117 -5.4437809e+117 -5.4316412e+117 -5.4336115e+117 -5.4502974e+117 -5.4480381e+117 -5.3987551e+117 -5.399638e+117 -5.3954227e+117 -5.397296e+117 -5.4642519e+117 -5.4616086e+117 -5.4522017e+117 -5.4356724e+117 -5.4387779e+117 -5.4556936e+117 -5.4724893e+117 -5.4679614e+117 -5.4586597e+117 -5.4413915e+117 -5.4619253e+117 -5.4444462e+117 -5.4126752e+117 -5.4103616e+117 -5.3956465e+117 -5.3976505e+117 -5.3930112e+117 -5.4069688e+117 -5.4088125e+117 -5.3943065e+117 -5.4195682e+117 -5.4217027e+117 -5.4363164e+117 -5.433722e+117 -5.4235242e+117 -5.4387721e+117 -5.4414633e+117 -5.4260835e+117 -5.391977e+117 -5.3936539e+117 -5.390946e+117 -5.389955e+117 -5.3554261e+117 -5.3714182e+117 -5.3567944e+117 -5.3737899e+117 -5.33832e+117 -5.314508e+117 -5.3147521e+117 -5.3390727e+117 -5.3035041e+117 -5.302116e+117 -5.3027466e+117 -5.3160725e+117 -5.3057693e+117 -5.3184009e+117 -5.3576559e+117 -5.3753559e+117 -5.359129e+117 -5.3771104e+117 -5.3397273e+117 -5.3413452e+117 -5.3161717e+117 -5.3192043e+117 -5.3180676e+117 -5.3179029e+117 -5.3118241e+117 -5.3161632e+117 -5.3512294e+117 -5.362458e+117 -5.3547189e+117 -5.3688523e+117 -5.3377971e+117 -5.3387956e+117 -5.2865664e+117 -5.2922815e+117 -5.3051975e+117 -5.3177902e+117 -5.3072503e+117 -5.3195783e+117 -5.3613193e+117 -5.3805551e+117 -5.3597128e+117 -5.3788813e+117 -5.3413187e+117 -5.342961e+117 -5.3060972e+117 -5.3185331e+117 -5.3051747e+117 -5.3176813e+117 -5.3592369e+117 -5.3413119e+117 -5.377647e+117 -5.359554e+117 -5.3783683e+117 -5.3413255e+117 -5.3125469e+117 -5.3250553e+117 -5.3149795e+117 -5.3269488e+117 -5.3674754e+117 -5.3866629e+117 -5.3664084e+117 -5.3857e+117 -5.3482114e+117 -5.3494759e+117 -5.3087321e+117 -5.321131e+117 -5.3103e+117 -5.3227717e+117 -5.3649452e+117 -5.3842602e+117 -5.3627999e+117 -5.3821256e+117 -5.3444256e+117 -5.3465581e+117 -6.2372295e+117 -6.2291899e+117 -6.1996518e+117 -6.1786044e+117 -6.2286948e+117 -6.2056659e+117 -6.1614214e+117 -6.1546108e+117 -6.2054438e+117 -6.1644952e+117 -6.195824e+117 -6.1659595e+117 -6.0635851e+117 -6.1121968e+117 -6.0603899e+117 -6.1078306e+117 -6.0458882e+117 -6.0082816e+117 -6.1061658e+117 -6.040392e+117 -5.9974543e+117 -5.9838838e+117 -5.9950508e+117 -6.0441102e+117 -5.9769168e+117 -6.1076269e+117 -6.0468628e+117 -5.9994707e+117 -5.9896049e+117 -6.0542644e+117 -6.5783273e+117 -6.20968e+117 -6.3853067e+117 -1.0722303e+118 -8.3250561e+117 -6.0740299e+117 -6.2465523e+117 -1.1760007e+118 -6.0852285e+117 -6.682469e+117 -6.3973379e+117 -6.1828671e+117 -6.0107076e+117 -6.0454017e+117 -6.016101e+117 -5.9595983e+117 -5.8949751e+117 -5.8906491e+117 -5.960973e+117 -5.936898e+117 -5.7098544e+117 -5.9270156e+117 -6.0997271e+117 -5.9458208e+117 -5.9641471e+117 -5.9858889e+117 -6.1236626e+117 -6.038674e+117 -6.0569976e+117 -6.0966272e+117 -7.3509169e+117 -4.0533109e+117 -6.408721e+117 -6.2746826e+117 -6.2028189e+117 -6.1287533e+117 -6.0836806e+117 -6.066529e+117 -6.0922882e+117 -6.1143966e+117 -6.1203425e+117 -6.0960263e+117 -6.0800892e+117 -6.1180611e+117 -6.0794523e+117 -6.0130727e+117 -6.033451e+117 -6.0543845e+117 -6.0151829e+117 -6.1095921e+117 -6.1246214e+117 -6.1034965e+117 -6.0543475e+117 -6.0244675e+117 -6.0821037e+117 -6.1202656e+117 -6.0514175e+117 -6.1489124e+117 -5.9825701e+117 -5.9920814e+117 -6.2031467e+117 -6.153786e+117 -6.1057831e+117 -6.1357417e+117 -6.0091788e+117 -5.9723808e+117 -5.9694009e+117 -5.9977785e+117 -4.6956455e+117 -4.6898014e+117 -4.6910695e+117 -4.6929301e+117 -4.4416351e+117 -4.4429281e+117 -4.5649912e+117 -4.5669332e+117 -4.5668095e+117 -4.5669209e+117 -4.4429504e+117 -4.567005e+117 -4.4427942e+117 -3.8516923e+117 -3.8524771e+117 -3.8526492e+117 -3.6794122e+117 -3.8483986e+117 -3.9653296e+117 -3.9668543e+117 -3.9666967e+117 -3.967312e+117 -4.0823859e+117 -4.0822256e+117 -4.0804064e+117 -4.2000646e+117 -4.2010406e+117 -4.1998496e+117 -4.0823895e+117 -4.1996903e+117 -4.1988666e+117 -4.0814793e+117 -4.3208372e+117 -4.3199943e+117 -4.3201671e+117 -4.3201652e+117 -4.3194923e+117 -4.3203158e+117 -4.3188896e+117 -4.4383803e+117 -4.4425792e+117 -4.4435632e+117 -4.5601348e+117 -4.6821378e+117 -4.6867087e+117 -4.6890983e+117 -4.6889756e+117 -4.568998e+117 -4.5671495e+117 -4.0798658e+117 -3.963436e+117 -4.195327e+117 -4.1899818e+117 -3.9590519e+117 -4.0750555e+117 -3.4521812e+117 -3.618096e+117 -3.6214519e+117 -3.7351478e+117 -3.7321603e+117 -3.8486878e+117 -3.8451662e+117 -4.4338648e+117 -4.3135285e+117 -4.3066126e+117 -4.424682e+117 -4.1810353e+117 -3.7297917e+117 -3.8422374e+117 -3.9533627e+117 -3.9472015e+117 -3.7259754e+117 -3.8367307e+117 -3.2267031e+117 -3.3941969e+117 -3.5068721e+117 -3.5045051e+117 -3.3914465e+117 -3.618116e+117 -3.615783e+117 -4.06632e+117 -4.0585505e+117 -4.1700093e+117 -3.9413878e+117 -3.0028975e+117 -3.1676396e+117 -3.1707715e+117 -3.2787893e+117 -3.2815671e+117 -3.3903243e+117 -3.500318e+117 -3.4979581e+117 -3.3879777e+117 -3.6111387e+117 -3.7210508e+117 -3.7171951e+117 -3.6084716e+117 -3.8313292e+117 -3.8255977e+117 -3.9333618e+117 -3.1649796e+117 -3.1674512e+117 -3.2730021e+117 -3.2751266e+117 -3.3843684e+117 -3.493879e+117 -3.4915711e+117 -3.3821194e+117 -3.6037046e+117 -3.7123287e+117 -3.7088401e+117 -3.6011712e+117 -3.3786584e+117 -3.4876134e+117 -3.4853541e+117 -3.3762677e+117 -5.75671e+117 -5.6396226e+117 -5.3833397e+117 -4.8100812e+117 -4.8101332e+117 -4.8100561e+117 -4.8112363e+117 -4.8141619e+117 -4.9306086e+117 -4.9312146e+117 -4.9310963e+117 -4.9322833e+117 -4.9367365e+117 -5.0484998e+117 -5.0486245e+117 -5.1636399e+117 -5.163851e+117 -5.2738017e+117 -5.4902481e+117 -5.4829024e+117 -5.4876422e+117 -5.4951172e+117 -5.4746536e+117 -5.465036e+117 -5.4697928e+117 -5.4793363e+117 -5.4828851e+117 -5.4729939e+117 -5.4747023e+117 -5.4849202e+117 -5.4987393e+117 -5.491205e+117 -5.4933196e+117 -5.5008766e+117 -5.4540942e+117 -5.4629579e+117 -5.4709101e+117 -5.4779605e+117 -5.5105832e+117 -5.504856e+117 -5.5070607e+117 -5.5131646e+117 -5.5100246e+117 -5.5052919e+117 -5.5113144e+117 -5.5165525e+117 -5.4959108e+117 -5.5006459e+117 -5.5009963e+117 -5.506221e+117 -5.5216082e+117 -5.516007e+117 -5.5190049e+117 -5.5249899e+117 -5.4871286e+117 -5.4833291e+117 -5.4912822e+117 -5.4956685e+117 -5.4989332e+117 -5.5013334e+117 -5.5042518e+117 -5.507652e+117 -5.5170332e+117 -5.513815e+117 -5.5210447e+117 -5.5248766e+117 -5.5203506e+117 -5.5284553e+117 -5.5319145e+117 -5.523789e+117 -5.5381911e+117 -5.5346403e+117 -5.5389144e+117 -5.542559e+117 -5.5308699e+117 -5.5265079e+117 -5.5302029e+117 -5.5349866e+117 -5.5415634e+117 -5.5438608e+117 -5.5358871e+117 -5.5492632e+117 -5.5294957e+117 -5.5236789e+117 -5.5319675e+117 -5.5376004e+117 -5.5474643e+117 -5.5397429e+117 -5.5452066e+117 -5.5529027e+117 -5.5516027e+117 -5.5593367e+117 -5.5649299e+117 -5.5570962e+117 -5.5066592e+117 -5.5127504e+117 -5.4934763e+117 -5.4997419e+117 -5.5043251e+117 -5.5103583e+117 -5.5203635e+117 -5.5144367e+117 -5.5173026e+117 -5.5231931e+117 -5.5330823e+117 -5.527168e+117 -5.4776744e+117 -5.4831646e+117 -5.4881874e+117 -5.4986161e+117 -5.4893977e+117 -5.4941402e+117 -5.4638843e+117 -5.4712605e+117 -5.4772568e+117 -5.4824416e+117 -5.4877391e+117 -5.4933403e+117 -5.5034877e+117 -5.5087734e+117 -5.4986544e+117 -5.5172415e+117 -5.508333e+117 -5.4997881e+117 -5.5041976e+117 -5.5091055e+117 -5.5133228e+117 -5.5246706e+117 -5.529003e+117 -5.5253871e+117 -5.5172143e+117 -5.5214914e+117 -5.5329682e+117 -5.5345145e+117 -5.5296329e+117 -5.5373664e+117 -5.5422581e+117 -5.5129129e+117 -5.5180775e+117 -5.5265587e+117 -5.5215841e+117 -5.4791031e+117 -5.4777403e+117 -5.4775247e+117 -5.4881414e+117 -5.4884462e+117 -5.4897552e+117 -5.4899733e+117 -5.4795958e+117 -5.4781581e+117 -5.4886304e+117 -5.4975115e+117 -5.4986301e+117 -5.5061181e+117 -5.50511e+117 -5.4985307e+117 -5.4973125e+117 -5.4971035e+117 -5.504712e+117 -5.5048579e+117 -5.5059787e+117 -5.4525378e+117 -5.4517291e+117 -5.4524609e+117 -5.4653956e+117 -5.4653329e+117 -5.4665782e+117 -5.4547163e+117 -5.4676551e+117 -5.4661916e+117 -5.4534378e+117 -5.4800654e+117 -5.467283e+117 -5.4746378e+117 -5.4615979e+117 -5.4703994e+117 -5.4572672e+117 -5.4588613e+117 -5.4729756e+117 -5.4852489e+117 -5.4912373e+117 -5.5009139e+117 -5.4862737e+117 -5.4822572e+117 -5.4962898e+117 -5.4924712e+117 -5.4961074e+117 -5.5055459e+117 -5.5091845e+117 -5.5137664e+117 -5.521225e+117 -5.5166942e+117 -5.5122517e+117 -5.5047666e+117 -5.5084946e+117 -5.5010609e+117 -5.5449247e+117 -5.5520157e+117 -5.5566042e+117 -5.549694e+117 -5.5542228e+117 -5.5580897e+117 -5.5549678e+117 -5.547198e+117 -5.551315e+117 -5.5616146e+117 -5.5320843e+117 -5.5365258e+117 -5.5405169e+117 -5.5478801e+117 -5.5397441e+117 -5.5440578e+117 -5.5633775e+117 -5.5588733e+117 -5.5655264e+117 -5.569982e+117 -5.5714848e+117 -5.5764415e+117 -5.5807348e+117 -5.5758266e+117 -5.5851039e+117 -5.5808462e+117 -5.5850914e+117 -5.5893546e+117 -5.5770953e+117 -5.5699268e+117 -5.5737056e+117 -5.5813895e+117 -5.5741108e+117 -5.5779597e+117 -5.5603585e+117 -5.5641175e+117 -5.5675817e+117 -5.5726871e+117 -5.5656751e+117 -5.5693145e+117 -5.5976036e+117 -5.5973262e+117 -5.5923231e+117 -5.6026836e+117 -5.5856737e+117 -5.5807389e+117 -5.5860624e+117 -5.5910108e+117 -5.5942622e+117 -5.5899733e+117 -5.5954037e+117 -5.5997469e+117 -5.6018605e+117 -5.6074272e+117 -5.6120025e+117 -5.6063092e+117 -5.5618082e+117 -5.5549013e+117 -5.5604194e+117 -5.5673941e+117 -5.5739574e+117 -5.566904e+117 -5.5725514e+117 -5.579688e+117 -5.5867097e+117 -5.5805766e+117 -5.5862981e+117 -5.5921618e+117 -5.5684563e+117 -5.5740233e+117 -5.5803547e+117 -5.5749389e+117 -5.536882e+117 -5.5368263e+117 -5.5376788e+117 -5.5429095e+117 -5.5420219e+117 -5.5419334e+117 -5.5388659e+117 -5.5406882e+117 -5.5459566e+117 -5.5441151e+117 -5.5485634e+117 -5.5502728e+117 -5.5541431e+117 -5.552389e+117 -5.5460385e+117 -5.5462851e+117 -5.5473116e+117 -5.5510193e+117 -5.5498987e+117 -5.5494822e+117 -5.5120998e+117 -5.5132148e+117 -5.5202148e+117 -5.5189815e+117 -5.5123519e+117 -5.5113137e+117 -5.5115095e+117 -5.5182433e+117 -5.5178408e+117 -5.5186886e+117 -5.5250639e+117 -5.5245402e+117 -5.5251266e+117 -5.5316963e+117 -5.5310267e+117 -5.5312481e+117 -5.5260306e+117 -5.5275314e+117 -5.5344713e+117 -5.5327529e+117 -5.5461552e+117 -5.53902e+117 -5.5414388e+117 -5.5343263e+117 -5.5373058e+117 -5.5302479e+117 -5.524007e+117 -5.5314874e+117 -5.526843e+117 -5.5195186e+117 -5.5228209e+117 -5.5156888e+117 -5.536206e+117 -5.5286494e+117 -5.5437777e+117 -5.5508651e+117 -5.5577768e+117 -5.5524149e+117 -5.5477399e+117 -5.5435961e+117 -5.5488365e+117 -5.5530132e+117 -5.5667931e+117 -5.5620476e+117 -5.5661326e+117 -5.5708556e+117 -5.5571455e+117 -5.5624772e+117 -5.55733e+117 -5.5531676e+117 -5.5570615e+117 -5.561305e+117 -5.5287652e+117 -5.519552e+117 -5.5380554e+117 -5.5470588e+117 -5.539508e+117 -5.5298325e+117 -5.5633927e+117 -5.5713379e+117 -5.5793284e+117 -5.5713131e+117 -5.5477251e+117 -5.5552475e+117 -5.5631703e+117 -5.5554046e+117 -5.6138818e+117 -5.6219902e+117 -5.6267665e+117 -5.6185501e+117 -5.6038149e+117 -5.6116305e+117 -5.6167952e+117 -5.6088885e+117 -5.5927654e+117 -5.6005966e+117 -5.606384e+117 -5.5985869e+117 -5.5790237e+117 -5.5870305e+117 -5.5941564e+117 -5.5861945e+117 -5.5937348e+117 -5.5893226e+117 -5.5936549e+117 -5.59815e+117 -5.5855552e+117 -5.5779477e+117 -5.5820149e+117 -5.5817902e+117 -5.5860311e+117 -5.5897393e+117 -5.6134034e+117 -5.6176072e+117 -5.5986812e+117 -5.6032547e+117 -5.6088514e+117 -5.6042334e+117 -5.6243067e+117 -5.6200536e+117 -5.6257764e+117 -5.6301493e+117 -5.6165853e+117 -5.6108648e+117 -5.6155082e+117 -5.6212201e+117 -5.5698156e+117 -5.5651592e+117 -5.561048e+117 -5.5733802e+117 -5.5686377e+117 -5.5646078e+117 -5.5745508e+117 -5.5782029e+117 -5.6324021e+117 -5.6406674e+117 -5.6453205e+117 -5.6369068e+117 -5.623126e+117 -5.6312769e+117 -5.6359539e+117 -5.6277805e+117 -6.0779706e+117 -4.346239e+117 -4.3113587e+117 -4.306639e+117 -3.9262699e+117 -3.915883e+117 -3.5404184e+117 -4.2994676e+117 -5.2348046e+117 -5.0533072e+117 -5.2054375e+117 -5.3800783e+117 -5.2218589e+117 -5.2553672e+117 -4.7631809e+117 -4.6942668e+117 -4.6993262e+117 -4.3918127e+117 -4.8142781e+117 -4.7317423e+117 -5.1050998e+117 -5.1734358e+117 -5.1313544e+117 -5.1963146e+117 -4.7700709e+117 -4.4194667e+117 -4.8200333e+117 -5.2202139e+117 -5.2066407e+117 -4.8393327e+117 -4.3409255e+117 -4.7656737e+117 -5.18272e+117 -5.1752962e+117 -4.7972313e+117 -5.5464305e+117 -5.8438696e+117 -5.6075741e+117 -5.8492373e+117 -5.667849e+117 -5.833127e+117 -5.6783583e+117 -5.3901238e+117 -5.5377603e+117 -5.5655313e+117 -5.5641896e+117 -5.3564538e+117 -1.2741017e+117 -3.103695e+117 -3.3338556e+117 -3.8303196e+117 -3.2632406e+117 -3.3320942e+117 -3.030271e+117 -3.3120878e+117 -2.6258236e+117 -2.7638386e+117 -2.7012534e+117 -3.3435301e+117 -2.531104e+117 -1.9549783e+117 -2.8430308e+117 -2.9161405e+117 -2.8184921e+117 -2.2726677e+117 -2.1498184e+117 -2.4578707e+117 -3.5900384e+117 -3.6354581e+117 -3.702401e+117 -3.5549791e+117 -2.5779866e+117 -2.5127621e+117 -2.6183787e+117 -3.0348131e+117 -2.9830148e+117 -2.5906708e+117 -3.1158974e+117 -2.6338835e+117 -2.407457e+117 -3.1763285e+117 -2.7428088e+117 -2.4604504e+117 -2.5440316e+117 -2.7661543e+117 -2.3288416e+117 -2.2783184e+117 -2.6298184e+117 -2.6843376e+117 -3.2044234e+117 -4.449006e+117 -3.9742306e+117 -3.9326551e+117 -4.0323973e+117 -3.8655639e+117 -3.465779e+117 -3.4341491e+117 -3.8584133e+117 -2.0029241e+117 -2.1287961e+117 -2.3024656e+117 -6.1371015e+116 -5.9448579e+117 -6.014571e+117 -5.9437521e+117 -6.0617595e+117 -4.4488879e+117 -4.4464049e+117 -3.8543584e+117 -3.7408996e+117 -3.9671284e+117 -3.8546628e+117 -3.7405266e+117 -3.4556711e+117 -3.6261367e+117 -3.6254413e+117 -3.9678895e+117 -4.0839025e+117 -4.0829531e+117 -4.2011707e+117 -4.2027425e+117 -4.3247436e+117 -4.3225215e+117 -3.2300912e+117 -3.005692e+117 -4.878755e+117 -4.4052067e+117 -3.2363717e+117 -4.2985421e+117 -3.3057241e+117 -2.6983548e+117 -3.3844685e+117 -2.7719482e+117 -2.1203452e+117 -3.2805108e+117 -3.9209595e+117 -2.7277602e+117 -2.4038102e+117 -4.3770808e+117 -3.9124677e+117 -3.4256621e+117 -3.6047813e+117 -2.9319217e+117 -2.4801662e+117 -2.058389e+117 -2.3219265e+117 -2.8858069e+117 -2.7839796e+117 -2.112805e+117 -1.1662865e+117 -1.4594974e+117 -9.6529118e+116 -1.3835436e+117 -1.27707e+117 -1.6497891e+117 -2.1937456e+117 -2.4499546e+117 -2.9018431e+117 -2.4160493e+117 -4.1348828e+116 -4.2587901e+116 -4.23677e+116 -1.842164e+117 -2.4434276e+117 -2.48423e+117 -1.618273e+117 -4.2054752e+117 -3.2338529e+117 -3.5167415e+117 -3.4029037e+117 -3.4030804e+117 -3.5159641e+117 -3.6279955e+117 -3.6293272e+117 -3.7406351e+117 -3.740388e+117 -3.8544134e+117 -3.8536939e+117 -3.9683113e+117 -3.969503e+117 -4.0856357e+117 -4.0871371e+117 -4.2064565e+117 -3.0098345e+117 -5.4211435e+117 -5.4255791e+117 -5.4365797e+117 -5.433505e+117 -5.4529777e+117 -5.442699e+117 -5.4392705e+117 -5.4428214e+117 -5.4520129e+117 -5.4291578e+117 -5.4283146e+117 -5.4271642e+117 -5.4367903e+117 -5.4202618e+117 -5.423665e+117 -5.4374701e+117 -5.4774063e+117 -5.4721484e+117 -5.4672573e+117 -5.4444791e+117 -5.4970032e+117 -5.5034169e+117 -5.4897746e+117 -5.4833286e+117 -3.9704997e+117 -3.8554333e+117 -3.7412829e+117 -3.5171389e+117 -3.4064755e+117 -3.2946724e+117 -3.0139343e+117 -3.1808508e+117 -3.1805829e+117 -3.2921858e+117 -3.1789351e+117 -3.2905466e+117 -3.2909492e+117 -3.177302e+117 -3.4042888e+117 -3.4015972e+117 -3.5159381e+117 -3.5160344e+117 -3.5146187e+117 -3.4020785e+117 -3.4020705e+117 -3.5130327e+117 -3.6280663e+117 -3.6284814e+117 -3.6277096e+117 -3.6288467e+117 -3.7416475e+117 -3.7416487e+117 -3.7412519e+117 -3.7407692e+117 -3.6279192e+117 -3.6251604e+117 -3.7376046e+117 -3.856455e+117 -3.8562969e+117 -3.8561243e+117 -3.8558567e+117 -3.971561e+117 -3.9724841e+117 -3.9727163e+117 -3.9717752e+117 -3.851477e+117 -3.8543516e+117 -3.9664072e+117 -3.9689835e+117 -4.0894318e+117 -4.0909444e+117 -4.090889e+117 -4.0899204e+117 -4.2086488e+117 -4.2100525e+117 -4.2100797e+117 -4.2083146e+117 -4.3291612e+117 -4.3293226e+117 -4.3292919e+117 -4.4510837e+117 -4.4508081e+117 -4.4507563e+117 -4.5771287e+117 -4.5771017e+117 -4.7066911e+117 -4.7066655e+117 -4.8366813e+117 -4.9648306e+117 -2.7929118e+117 -2.9579668e+117 -3.0693199e+117 -3.0675998e+117 -2.9553125e+117 -3.1789342e+117 -3.2891793e+117 -3.2880981e+117 -3.1779837e+117 -3.5122426e+117 -3.4006705e+117 -3.3985268e+117 -3.5086687e+117 -3.6203079e+117 -3.6243714e+117 -3.7351874e+117 -3.7317059e+117 -2.9557309e+117 -2.9527372e+117 -3.0617349e+117 -3.0646795e+117 -3.175139e+117 -3.2853648e+117 -3.2828448e+117 -3.1721873e+117 -3.5070821e+117 -3.3963086e+117 -3.3937912e+117 -3.5029352e+117 -5.4396221e+117 -5.4412136e+117 -5.4405267e+117 -5.4423222e+117 -5.4322095e+117 -5.447695e+117 -5.4431421e+117 -5.4302839e+117 -5.4621063e+117 -5.3064632e+117 -2.9508254e+117 -3.0596526e+117 -3.0581987e+117 -2.9487469e+117 -3.1696705e+117 -3.279546e+117 -3.2777326e+117 -3.1685565e+117 -5.3306929e+117 -5.3671705e+117 -5.3461793e+117 -5.3480188e+117 -5.370999e+117 -5.3506568e+117 -5.375663e+117 -5.2999638e+117 -5.3454448e+117 -5.3227969e+117 -5.3429656e+117 -5.3617808e+117 -5.3604188e+117 -5.3372694e+117 -5.3318387e+117 -5.3510794e+117 -5.3240875e+117 -5.3123616e+117 -5.3213533e+117 -5.3391287e+117 -5.3590519e+117 -5.3768862e+117 -5.3791323e+117 -5.3552075e+117 -5.4302077e+117 -5.4208495e+117 -5.3977752e+117 -5.4093048e+117 -5.3638074e+117 -5.3698016e+117 -5.3922975e+117 -5.4082038e+117 -5.4013232e+117 -5.418641e+117 -5.3991255e+117 -5.3846656e+117 -5.4455338e+117 -5.4434262e+117 -5.4339566e+117 -5.4209796e+117 -5.4526008e+117 -5.4325133e+117 -5.4413507e+117 -5.4292625e+117 -5.4228854e+117 -5.4129365e+117 -5.3768119e+117 -5.3852976e+117 -5.3847784e+117 -5.4120636e+117 -5.429806e+117 -5.4475601e+117 -5.4326995e+117 -5.4154595e+117 -5.4182619e+117 -5.4353251e+117 -5.4512005e+117 -5.4498061e+117 -5.4341939e+117 -5.4169386e+117 -5.3866654e+117 -5.3930905e+117 -5.4020552e+117 -5.4074303e+117 -5.3972907e+117 -5.466497e+117 -5.4598353e+117 -5.4354779e+117 -5.4410679e+117 -5.4541543e+117 -5.4481526e+117 -5.4111701e+117 -5.4002867e+117 -5.4028361e+117 -5.4144808e+117 -5.4241828e+117 -5.4299935e+117 -5.4209024e+117 -5.428995e+117 -5.4352247e+117 -5.425094e+117 -5.4101139e+117 -5.4116218e+117 -5.4163391e+117 -5.4187251e+117 -5.4239157e+117 -5.4161001e+117 -5.3811276e+117 -5.3859679e+117 -5.3975207e+117 -5.3911392e+117 -5.3913544e+117 -5.3929146e+117 -5.4036074e+117 -5.4057479e+117 -5.4078458e+117 -5.3944881e+117 -5.3834941e+117 -5.3748447e+117 -5.4639797e+117 -5.4652739e+117 -5.4576768e+117 -5.4430628e+117 -5.4617437e+117 -5.4287426e+117 -5.3916248e+117 -5.388178e+117 -5.3939239e+117 -5.3959443e+117 -5.4565466e+117 -5.4874636e+117 -5.4849211e+117 -5.4711228e+117 -5.4737146e+117 -5.4589424e+117 -5.492957e+117 -5.4900093e+117 -5.4612107e+117 -5.4762116e+117 -5.4786924e+117 -5.4635646e+117 -5.4275431e+117 -5.4142929e+117 -5.4153688e+117 -5.4290096e+117 -5.425967e+117 -5.4238959e+117 -5.4109147e+117 -5.4128302e+117 -5.4356986e+117 -5.4412685e+117 -5.4378865e+117 -5.4434524e+117 -5.4515402e+117 -5.4492411e+117 -5.439697e+117 -5.4454709e+117 -5.441736e+117 -5.4477463e+117 -5.4561251e+117 -5.4538118e+117 -5.4062007e+117 -5.4070764e+117 -5.4027671e+117 -5.4048002e+117 -5.4749421e+117 -5.4713061e+117 -5.4587367e+117 -5.4453134e+117 -5.4484551e+117 -5.4622641e+117 -5.4820237e+117 -5.4783616e+117 -5.4651779e+117 -5.4511069e+117 -5.4682712e+117 -5.4539245e+117 -5.4220226e+117 -5.419901e+117 -5.4072289e+117 -5.4091062e+117 -5.4045168e+117 -5.4166143e+117 -5.4184275e+117 -5.4059479e+117 -5.4277248e+117 -5.4321873e+117 -5.4296849e+117 -5.4344944e+117 -5.4417684e+117 -5.4390625e+117 -5.4313649e+117 -5.436527e+117 -5.4442282e+117 -5.4391374e+117 -5.4468487e+117 -5.4337043e+117 -5.3992589e+117 -5.4009992e+117 -5.398278e+117 -5.3971172e+117 -5.3623104e+117 -5.3813688e+117 -5.3638123e+117 -5.3843035e+117 -5.3427749e+117 -5.3207686e+117 -5.3212869e+117 -5.3435511e+117 -5.3223459e+117 -5.3244554e+117 -5.3646127e+117 -5.3858825e+117 -5.3659802e+117 -5.3876654e+117 -5.3440948e+117 -5.3455687e+117 -5.322351e+117 -5.321249e+117 -5.3579471e+117 -5.371455e+117 -5.3615548e+117 -5.3785791e+117 -5.3419913e+117 -5.3428933e+117 -5.2849861e+117 -5.3242197e+117 -5.3258911e+117 -5.3682729e+117 -5.3914007e+117 -5.3666731e+117 -5.389664e+117 -5.3457505e+117 -5.3473175e+117 -5.3247195e+117 -5.3240873e+117 -5.3660862e+117 -5.3456215e+117 -5.3882073e+117 -5.3665381e+117 -5.3891748e+117 -5.3457385e+117 -5.3314275e+117 -5.3330824e+117 -5.3744864e+117 -5.3976269e+117 -5.3735079e+117 -5.3967237e+117 -5.3526472e+117 -5.3537753e+117 -5.3275292e+117 -5.329255e+117 -5.3720956e+117 -5.3953652e+117 -5.3698148e+117 -5.3930274e+117 -5.3488655e+117 -5.3510477e+117 -6.2309337e+117 -6.2086229e+117 -6.1600788e+117 -6.1510961e+117 -6.2100044e+117 -6.1657076e+117 -6.1669126e+117 -6.1073838e+117 -6.0441235e+117 -6.0064234e+117 -6.1052755e+117 -6.0381535e+117 -5.9962734e+117 -5.9835943e+117 -6.1029702e+117 -6.0377651e+117 -5.9928492e+117 -5.9921947e+117 -5.9928975e+117 -5.9858787e+117 -6.0413289e+117 -5.9965711e+117 -5.993679e+117 -6.0744196e+117 -5.9997543e+117 -1.3058316e+118 -6.0541034e+117 -6.0617382e+117 -6.0958329e+117 -6.1802262e+117 -5.9706075e+117 -5.9450073e+117 -5.8709429e+117 -5.9571925e+117 -6.0183379e+117 -5.4471146e+117 -5.8390702e+117 -5.9710767e+117 -6.0640536e+117 -5.6381196e+117 -5.9210512e+117 -5.9706265e+117 -5.9774638e+117 -6.0286303e+117 -6.0611149e+117 -6.0758574e+117 -3.5917554e+117 -6.1934947e+117 -6.1200147e+117 -6.0713333e+117 -6.1511083e+117 -6.1841763e+117 -6.2582174e+117 -6.1693555e+117 -6.2545863e+117 -6.1064212e+117 -6.0983986e+117 -6.2212067e+117 -6.2414122e+117 -6.1607464e+117 -6.0285393e+117 -6.0933237e+117 -6.0941963e+117 -6.0789404e+117 -6.0183337e+117 -6.1383841e+117 -6.161081e+117 -6.1069234e+117 -6.0526244e+117 -6.0770133e+117 -6.1172876e+117 -6.1317004e+117 -5.9819878e+117 -6.1678665e+117 -6.1392615e+117 -5.9687799e+117 -4.6897582e+117 -4.6910798e+117 -4.4416556e+117 -4.4430435e+117 -4.4430713e+117 -4.5669357e+117 -4.5669925e+117 -4.5668239e+117 -4.5669513e+117 -4.4430732e+117 -4.5670446e+117 -4.4429339e+117 -3.8548354e+117 -3.7411293e+117 -3.853036e+117 -3.8544306e+117 -3.7404677e+117 -3.8549349e+117 -3.7400586e+117 -3.4572597e+117 -3.6259126e+117 -3.6229654e+117 -3.7376542e+117 -3.6270121e+117 -3.6259549e+117 -3.8512525e+117 -3.9654478e+117 -3.9679778e+117 -3.9691023e+117 -3.9672169e+117 -3.967409e+117 -4.0825347e+117 -4.0824597e+117 -4.0823434e+117 -4.0829203e+117 -4.2002145e+117 -4.2003503e+117 -4.2000336e+117 -4.199964e+117 -4.0826076e+117 -4.083289e+117 -4.1998199e+117 -4.2005339e+117 -4.1992608e+117 -4.0818059e+117 -4.3208518e+117 -4.3201605e+117 -4.3201807e+117 -4.3204118e+117 -4.31951e+117 -4.3203768e+117 -4.3206209e+117 -4.3189356e+117 -4.4384398e+117 -4.4425963e+117 -4.443582e+117 -4.689104e+117 -4.6891838e+117 -4.6889432e+117 -4.0799093e+117 -3.9638658e+117 -4.1953864e+117 -4.1900513e+117 -3.9595403e+117 -4.0751151e+117 -3.2320563e+117 -3.3967432e+117 -3.4007649e+117 -3.5128086e+117 -3.5095565e+117 -3.6206657e+117 -3.6239359e+117 -3.7353911e+117 -3.7321432e+117 -3.8490782e+117 -3.8455149e+117 -3.7300426e+117 -3.8422637e+117 -3.9534006e+117 -3.9472273e+117 -3.7261778e+117 -3.8367531e+117 -3.0078815e+117 -3.1727968e+117 -3.1750875e+117 -3.2842602e+117 -3.2867361e+117 -3.3964463e+117 -3.5066576e+117 -3.5044055e+117 -3.3938812e+117 -3.6183473e+117 -3.6159474e+117 -3.0638638e+117 -2.9520417e+117 -2.9499484e+117 -3.0611552e+117 -3.1702414e+117 -3.1734245e+117 -3.2785862e+117 -3.2813687e+117 -3.3904561e+117 -3.5004514e+117 -3.4980885e+117 -3.3881243e+117 -3.6111503e+117 -3.7210638e+117 -3.7172019e+117 -3.6084773e+117 -3.1651276e+117 -3.1675353e+117 -3.2731269e+117 -3.275225e+117 -3.3843746e+117 -3.4938847e+117 -3.4915758e+117 -3.3821267e+117 -4.810099e+117 -4.8101266e+117 -4.9311763e+117 -4.9312352e+117 -5.0484673e+117 -5.163547e+117 -5.4958546e+117 -5.4885261e+117 -5.4924411e+117 -5.4998616e+117 -5.4799668e+117 -5.4698387e+117 -5.4737472e+117 -5.483829e+117 -5.4863818e+117 -5.4761276e+117 -5.4775842e+117 -5.488078e+117 -5.5024663e+117 -5.495006e+117 -5.4967589e+117 -5.5042205e+117 -5.4577149e+117 -5.467396e+117 -5.4753454e+117 -5.4822896e+117 -5.5146026e+117 -5.5087748e+117 -5.5105124e+117 -5.5166259e+117 -5.5160237e+117 -5.5114328e+117 -5.5165545e+117 -5.5216038e+117 -5.5017392e+117 -5.5067856e+117 -5.5060013e+117 -5.5114506e+117 -5.5255413e+117 -5.5200911e+117 -5.5226076e+117 -5.5284641e+117 -5.491799e+117 -5.4876153e+117 -5.4956319e+117 -5.4995758e+117 -5.5029819e+117 -5.5059293e+117 -5.5089122e+117 -5.5119566e+117 -5.5237461e+117 -5.5200999e+117 -5.5262267e+117 -5.5302944e+117 -5.5272374e+117 -5.5339743e+117 -5.5372917e+117 -5.5304762e+117 -5.5421912e+117 -5.5388682e+117 -5.5425942e+117 -5.5459917e+117 -5.5350308e+117 -5.5305611e+117 -5.5338061e+117 -5.5386173e+117 -5.5414346e+117 -5.5439093e+117 -5.5358842e+117 -5.5491784e+117 -5.5292582e+117 -5.5234984e+117 -5.5318347e+117 -5.5373986e+117 -5.5474308e+117 -5.5396638e+117 -5.5450453e+117 -5.5527906e+117 -5.5516931e+117 -5.5594722e+117 -5.5649135e+117 -5.5570479e+117 -5.506649e+117 -5.5126122e+117 -5.4933555e+117 -5.499539e+117 -5.5041046e+117 -5.5100612e+117 -5.520063e+117 -5.5142023e+117 -5.5172428e+117 -5.5230086e+117 -5.5329071e+117 -5.5271026e+117 -5.4784515e+117 -5.4835255e+117 -5.4882732e+117 -5.4986467e+117 -5.4902011e+117 -5.4944302e+117 -5.4651378e+117 -5.4721875e+117 -5.47755e+117 -5.4825166e+117 -5.4877029e+117 -5.4932777e+117 -5.5033834e+117 -5.5085969e+117 -5.4985044e+117 -5.5173692e+117 -5.5084092e+117 -5.500667e+117 -5.5045235e+117 -5.510026e+117 -5.5136922e+117 -5.5257066e+117 -5.5294991e+117 -5.5255867e+117 -5.5182518e+117 -5.5219464e+117 -5.5332303e+117 -5.5345024e+117 -5.5296982e+117 -5.5374887e+117 -5.5422952e+117 -5.5128577e+117 -5.5179534e+117 -5.5264892e+117 -5.5215855e+117 -5.4795763e+117 -5.4785514e+117 -5.4781245e+117 -5.4888035e+117 -5.4893928e+117 -5.4903566e+117 -5.4902133e+117 -5.4797557e+117 -5.4784633e+117 -5.4890079e+117 -5.4979831e+117 -5.4989234e+117 -5.5064502e+117 -5.5056071e+117 -5.4992301e+117 -5.4984446e+117 -5.4978869e+117 -5.5055043e+117 -5.5059878e+117 -5.5066689e+117 -5.4526694e+117 -5.4521515e+117 -5.4529542e+117 -5.4658581e+117 -5.4658404e+117 -5.466835e+117 -5.4547057e+117 -5.4676947e+117 -5.4663803e+117 -5.4536225e+117 -5.4798048e+117 -5.4669442e+117 -5.4746221e+117 -5.4615105e+117 -5.470289e+117 -5.4570751e+117 -5.4587404e+117 -5.4727856e+117 -5.4851508e+117 -5.4911604e+117 -5.5009118e+117 -5.4863967e+117 -5.4822777e+117 -5.4964893e+117 -5.492569e+117 -5.4961264e+117 -5.5056127e+117 -5.5093427e+117 -5.513938e+117 -5.5213946e+117 -5.516852e+117 -5.5125604e+117 -5.5050607e+117 -5.5086906e+117 -5.5012448e+117 -5.5450866e+117 -5.5521983e+117 -5.5567066e+117 -5.5497763e+117 -5.5553058e+117 -5.5586375e+117 -5.5552935e+117 -5.5483367e+117 -5.5518761e+117 -5.5619395e+117 -5.533223e+117 -5.537066e+117 -5.5408139e+117 -5.5481937e+117 -5.5408882e+117 -5.5446124e+117 -5.5634917e+117 -5.5590713e+117 -5.5657197e+117 -5.5700935e+117 -5.5716861e+117 -5.5766542e+117 -5.5808652e+117 -5.5759506e+117 -5.5852397e+117 -5.5810689e+117 -5.585305e+117 -5.589484e+117 -5.5774662e+117 -5.5710419e+117 -5.5742876e+117 -5.5817348e+117 -5.5752345e+117 -5.5785216e+117 -5.561452e+117 -5.5646734e+117 -5.5679134e+117 -5.5730314e+117 -5.5667687e+117 -5.5698806e+117 -5.5976709e+117 -5.5975726e+117 -5.5925733e+117 -5.6027521e+117 -5.5857319e+117 -5.5807937e+117 -5.5860404e+117 -5.5909899e+117 -5.5943157e+117 -5.5900307e+117 -5.5953782e+117 -5.5997153e+117 -5.6021031e+117 -5.6074891e+117 -5.6120547e+117 -5.6065455e+117 -5.5618392e+117 -5.5549125e+117 -5.5603565e+117 -5.5673482e+117 -5.5741651e+117 -5.5670945e+117 -5.5725814e+117 -5.5797298e+117 -5.5869368e+117 -5.5807989e+117 -5.5863533e+117 -5.592213e+117 -5.5685003e+117 -5.5739873e+117 -5.5803163e+117 -5.5749791e+117 -5.5376898e+117 -5.5383588e+117 -5.5387109e+117 -5.5439293e+117 -5.5435788e+117 -5.5427619e+117 -5.5395224e+117 -5.5411555e+117 -5.5464166e+117 -5.5447644e+117 -5.549214e+117 -5.5507095e+117 -5.5545657e+117 -5.5530099e+117 -5.5468792e+117 -5.5478991e+117 -5.5483599e+117 -5.5520156e+117 -5.5514202e+117 -5.5502524e+117 -5.5126634e+117 -5.5135938e+117 -5.5206192e+117 -5.5195649e+117 -5.513074e+117 -5.512531e+117 -5.5123956e+117 -5.5191459e+117 -5.5190906e+117 -5.51943e+117 -5.5258447e+117 -5.525938e+117 -5.5260947e+117 -5.5326657e+117 -5.5324543e+117 -5.5320152e+117 -5.5266536e+117 -5.5279811e+117 -5.5349259e+117 -5.5333842e+117 -5.5463715e+117 -5.5392828e+117 -5.5418327e+117 -5.5347322e+117 -5.5376024e+117 -5.5305554e+117 -5.5242493e+117 -5.5317073e+117 -5.5272096e+117 -5.5198893e+117 -5.5230798e+117 -5.5159497e+117 -5.5364253e+117 -5.5288786e+117 -5.5440168e+117 -5.5510693e+117 -5.5580396e+117 -5.5526905e+117 -5.5481642e+117 -5.5439186e+117 -5.5491393e+117 -5.5534216e+117 -5.5670662e+117 -5.5623663e+117 -5.5664041e+117 -5.5711025e+117 -5.5573834e+117 -5.562712e+117 -5.5577609e+117 -5.5534784e+117 -5.5573392e+117 -5.561702e+117 -5.5939467e+117 -5.5895364e+117 -5.5937897e+117 -5.5982864e+117 -5.5858941e+117 -5.5790555e+117 -5.5825726e+117 -5.5829231e+117 -5.5865992e+117 -5.5900812e+117 -5.6133833e+117 -5.6175838e+117 -5.5987434e+117 -5.6033186e+117 -5.6088335e+117 -5.6042131e+117 -5.6245685e+117 -5.6203207e+117 -5.6258585e+117 -5.6302255e+117 -5.6166543e+117 -5.6111178e+117 -5.6157671e+117 -5.6212953e+117 -5.5700359e+117 -5.5655484e+117 -5.5613319e+117 -5.5735776e+117 -5.5689975e+117 -5.5648759e+117 -5.574755e+117 -5.5783991e+117 -4.3000302e+117 -4.2800309e+117 -3.8439927e+117 -4.2333201e+117 -4.2431762e+117 -3.8374886e+117 -3.4340286e+117 -3.8300179e+117 -3.4118448e+117 -4.264678e+117 -5.2367076e+117 -5.0890855e+117 -5.2681274e+117 -5.2328702e+117 -5.0381115e+117 -5.2593743e+117 -4.7354906e+117 -4.6605986e+117 -4.655623e+117 -4.6764349e+117 -4.3510014e+117 -4.7918201e+117 -4.7019466e+117 -5.0591458e+117 -5.1000429e+117 -5.1629793e+117 -5.1904371e+117 -4.7416466e+117 -4.3886685e+117 -4.3072792e+117 -5.8591278e+117 -5.6930843e+117 -5.8562809e+117 -5.7091843e+117 -5.4160155e+117 -5.700688e+117 -5.4339364e+117 -5.5866053e+117 -5.3888054e+117 -2.9782298e+117 -3.3131481e+117 -2.6812359e+117 -2.7948673e+117 -2.692892e+117 -3.3290345e+117 -2.5984046e+117 -1.9604894e+117 -2.5482781e+117 -1.4255992e+117 -2.2356201e+117 -1.8433522e+117 -3.5204093e+117 -3.4481055e+117 -3.595608e+117 -2.2914899e+117 -2.4808035e+117 -2.6083444e+117 -2.9538174e+117 -2.9146708e+117 -2.50312e+117 -2.4391482e+117 -2.8849121e+117 -2.2972348e+117 -3.0526272e+117 -2.5945034e+117 -2.3172973e+117 -2.3453815e+117 -3.133718e+117 -2.6910828e+117 -2.4125817e+117 -2.4727242e+117 -2.5428158e+117 -2.3257911e+117 -2.064195e+117 -2.2020318e+117 -2.6467782e+117 -3.9379585e+117 -3.8801065e+117 -3.8094473e+117 -3.349991e+117 -3.3621443e+117 -3.8214788e+117 -1.8612155e+117 -2.1161909e+117 -5.9467126e+117 -3.7412685e+117 -3.8544747e+117 -3.96728e+117 -3.8547754e+117 -3.7410279e+117 -3.5175194e+117 -3.4044324e+117 -3.4042766e+117 -3.2345179e+117 -3.5168194e+117 -3.6292922e+117 -3.6285672e+117 -3.9680229e+117 -4.0839153e+117 -4.0829634e+117 -4.201183e+117 -4.2027578e+117 -3.0104772e+117 -4.4248243e+117 -3.3880036e+117 -2.7549443e+117 -3.4203969e+117 -2.8155215e+117 -2.0346488e+117 -2.8368325e+117 -2.1890931e+117 -2.7561961e+117 -2.3730262e+117 -3.3718369e+117 -2.8500958e+117 -2.4174955e+117 -2.1837361e+117 -1.9124328e+117 -1.749494e+117 -2.2843386e+117 -2.8205684e+117 -2.7328498e+117 -2.0862833e+117 -1.4351588e+117 -6.919628e+116 -1.3250713e+117 -3.9967623e+116 -6.1655704e+116 -1.3755013e+117 -1.6361842e+117 -2.123511e+117 -1.7671489e+117 -2.448984e+117 -3.1828616e+117 -3.295117e+117 -3.2952972e+117 -3.1825645e+117 -3.0139511e+117 -3.5171787e+117 -3.4060615e+117 -3.4061527e+117 -3.5161944e+117 -3.6281458e+117 -3.6294197e+117 -3.7407421e+117 -3.7405535e+117 -3.8544262e+117 -3.8537028e+117 -3.9683228e+117 -3.9695164e+117 -2.7917076e+117 -5.4529307e+117 -5.442995e+117 -5.454105e+117 -5.4368242e+117 -5.4377869e+117 -3.7412935e+117 -3.5172367e+117 -3.4065323e+117 -3.2946396e+117 -2.7968974e+117 -2.9615274e+117 -2.9607636e+117 -3.0730293e+117 -3.0715624e+117 -2.959634e+117 -2.9617711e+117 -3.0707101e+117 -3.0703453e+117 -3.1833903e+117 -3.1820894e+117 -3.1796635e+117 -3.292798e+117 -3.2925728e+117 -3.1798349e+117 -3.2903658e+117 -3.2900613e+117 -3.1792346e+117 -3.4033837e+117 -3.4043364e+117 -3.4027823e+117 -3.5159985e+117 -3.5153884e+117 -3.5149052e+117 -3.5147323e+117 -3.4021755e+117 -3.4021257e+117 -3.5131556e+117 -3.6280931e+117 -3.6278671e+117 -3.6284861e+117 -3.6277368e+117 -3.6288548e+117 -3.741423e+117 -3.7416309e+117 -3.7416547e+117 -3.7412405e+117 -3.7407807e+117 -3.6279284e+117 -3.6251775e+117 -3.737629e+117 -3.856454e+117 -3.8561908e+117 -3.8561926e+117 -3.8558599e+117 -3.9724877e+117 -3.9726266e+117 -3.9726359e+117 -3.9717798e+117 -4.0909323e+117 -4.0909895e+117 -4.09088e+117 -4.2100652e+117 -4.210217e+117 -4.2100878e+117 -4.3293421e+117 -4.3293455e+117 -4.450814e+117 -4.4508018e+117 -4.5770875e+117 -4.7066552e+117 -2.7417959e+117 -2.7400206e+117 -2.8493973e+117 -2.8519036e+117 -2.9600492e+117 -3.068791e+117 -3.0670471e+117 -2.9574542e+117 -3.1790269e+117 -3.2892983e+117 -3.2882168e+117 -3.1780992e+117 -3.5122578e+117 -3.400685e+117 -3.3985389e+117 -3.5086847e+117 -2.955871e+117 -2.9528957e+117 -3.0618623e+117 -3.0647993e+117 -3.1751506e+117 -3.2853761e+117 -3.2828544e+117 -3.1721994e+117 -2.9508363e+117 -3.0596586e+117 -3.0582064e+117 -2.9487599e+117 -5.3690318e+117 -5.3719748e+117 -5.3764199e+117 -5.3652597e+117 -5.3641717e+117 -5.3544373e+117 -5.3782788e+117 -5.4377246e+117 -5.4225761e+117 -5.3982301e+117 -5.410686e+117 -5.408997e+117 -5.4013751e+117 -5.4190447e+117 -5.4003567e+117 -5.4454119e+117 -5.4531169e+117 -5.4461461e+117 -5.4345187e+117 -5.4239417e+117 -5.4555061e+117 -5.4345725e+117 -5.4435676e+117 -5.4323685e+117 -5.4237415e+117 -5.4142261e+117 -5.4120645e+117 -5.4302164e+117 -5.4484142e+117 -5.4335228e+117 -5.4355367e+117 -5.4515071e+117 -5.4502305e+117 -5.4346017e+117 -5.3971818e+117 -5.4052396e+117 -5.4106911e+117 -5.4015069e+117 -5.4694781e+117 -5.4630279e+117 -5.438702e+117 -5.4443044e+117 -5.4564567e+117 -5.4504546e+117 -5.4144461e+117 -5.4044992e+117 -5.4070472e+117 -5.417747e+117 -5.4292735e+117 -5.4326278e+117 -5.4238241e+117 -5.4343077e+117 -5.4379797e+117 -5.4281316e+117 -5.4129059e+117 -5.4162418e+117 -5.4192003e+117 -5.4236373e+117 -5.4265242e+117 -5.4185459e+117 -5.3830594e+117 -5.3870785e+117 -5.3987628e+117 -5.3932058e+117 -5.3923313e+117 -5.3944592e+117 -5.4047016e+117 -5.407517e+117 -5.3871691e+117 -5.3783063e+117 -5.4644584e+117 -5.4656571e+117 -5.4590195e+117 -5.44441e+117 -5.4626164e+117 -5.4297195e+117 -5.3955883e+117 -5.3919678e+117 -5.3979079e+117 -5.399946e+117 -5.4599686e+117 -5.4908595e+117 -5.4881084e+117 -5.4735925e+117 -5.4762943e+117 -5.4624802e+117 -5.4963755e+117 -5.4937118e+117 -5.4648434e+117 -5.4788788e+117 -5.4813542e+117 -5.4671914e+117 -5.4309234e+117 -5.4186444e+117 -5.4197048e+117 -5.4323903e+117 -5.4293352e+117 -5.4271842e+117 -5.4151915e+117 -5.4172003e+117 -5.4387286e+117 -5.4468937e+117 -5.4410055e+117 -5.4492364e+117 -5.4545622e+117 -5.4521656e+117 -5.4428622e+117 -5.4513782e+117 -5.4450043e+117 -5.4537889e+117 -5.4592365e+117 -5.456887e+117 -5.4103893e+117 -5.4112499e+117 -5.4069e+117 -5.4090051e+117 -5.4782558e+117 -5.4743567e+117 -5.4611659e+117 -5.4486905e+117 -5.451866e+117 -5.4647326e+117 -5.4848756e+117 -5.4814473e+117 -5.4676289e+117 -5.4545275e+117 -5.4706673e+117 -5.4572846e+117 -5.4252686e+117 -5.423189e+117 -5.4115007e+117 -5.4133629e+117 -5.4087516e+117 -5.4199167e+117 -5.4217495e+117 -5.4102578e+117 -5.4308157e+117 -5.4376879e+117 -5.4327249e+117 -5.4400301e+117 -5.4446768e+117 -5.4419148e+117 -5.4343853e+117 -5.442094e+117 -5.4471248e+117 -5.44465e+117 -5.4496948e+117 -5.4366899e+117 -5.4033556e+117 -5.4051117e+117 -5.4023819e+117 -5.4011407e+117 -5.3657313e+117 -5.3861282e+117 -5.3673522e+117 -5.3893226e+117 -5.3681346e+117 -5.3909592e+117 -5.3694581e+117 -5.3927524e+117 -5.3611859e+117 -5.3756531e+117 -5.3648522e+117 -5.3831038e+117 -5.3718553e+117 -5.3966682e+117 -5.3702712e+117 -5.3949085e+117 -5.3696009e+117 -5.3933364e+117 -5.370129e+117 -5.3944049e+117 -5.3780857e+117 -5.4029373e+117 -5.3771652e+117 -5.4020625e+117 -5.3757738e+117 -5.4007322e+117 -5.3734422e+117 -5.3983278e+117 -6.2129492e+117 -6.1657034e+117 -6.1689873e+117 -6.1058326e+117 -6.0383706e+117 -5.9971922e+117 -5.9872408e+117 -6.1031282e+117 -6.0360246e+117 -5.99461e+117 -6.0025643e+117 -6.0359982e+117 -5.9912144e+117 -6.006611e+117 -5.9914667e+117 -6.0016662e+117 -5.995885e+117 -6.0506497e+117 -3.8935694e+117 -6.0736329e+117 -5.963674e+117 -6.1566528e+117 -6.0853267e+117 -5.8240401e+117 -5.9791266e+117 -6.3524947e+117 -5.2064525e+117 -5.8306565e+117 -5.9908841e+117 -6.2252848e+117 -6.0081397e+117 -6.0979598e+117 -6.0736144e+117 -6.0754494e+117 -6.0882274e+117 -6.1709522e+117 -6.2517048e+117 -6.3525207e+117 -6.2338526e+117 -6.523232e+117 -6.5975947e+117 -6.1923e+117 -6.379693e+117 -6.3986293e+117 -6.1065594e+117 -6.2965494e+117 -6.4560473e+117 -6.368068e+117 -6.2011701e+117 -6.0416824e+117 -6.1194412e+117 -6.156429e+117 -6.1418347e+117 -6.0912006e+117 -6.1861624e+117 -6.1858055e+117 -6.1179341e+117 -6.1135798e+117 -6.1307982e+117 -6.1565108e+117 -4.4430514e+117 -4.4432297e+117 -4.4431165e+117 -4.5669909e+117 -4.5670033e+117 -4.4430869e+117 -4.442951e+117 -3.7412535e+117 -3.854955e+117 -3.8556235e+117 -3.7421986e+117 -3.8551193e+117 -3.7411927e+117 -3.8545196e+117 -3.8551529e+117 -3.7407821e+117 -3.8560704e+117 -3.2369011e+117 -3.4029221e+117 -3.4047836e+117 -3.5159013e+117 -3.5147808e+117 -3.517166e+117 -3.4061546e+117 -3.4054877e+117 -3.517739e+117 -3.6274012e+117 -3.6261197e+117 -3.6253851e+117 -3.7375059e+117 -3.6289237e+117 -3.628798e+117 -3.8516543e+117 -3.9658474e+117 -3.9682169e+117 -3.9691008e+117 -3.9687647e+117 -3.9681461e+117 -3.9673328e+117 -3.9675392e+117 -4.0825448e+117 -4.082575e+117 -4.0823527e+117 -4.0830904e+117 -4.200225e+117 -4.2004799e+117 -4.2001085e+117 -4.1999726e+117 -4.082623e+117 -4.0833825e+117 -4.0835138e+117 -4.1998332e+117 -4.2005622e+117 -4.2007908e+117 -4.1993e+117 -4.0818355e+117 -4.3201778e+117 -4.3204307e+117 -4.3203786e+117 -4.3206185e+117 -4.3206311e+117 -4.6891719e+117 -4.6891873e+117 -3.9639078e+117 -3.95959e+117 -3.0127235e+117 -3.1789353e+117 -3.181572e+117 -3.2932645e+117 -3.2899227e+117 -3.3993653e+117 -3.4034427e+117 -3.5130007e+117 -3.5093833e+117 -3.6209427e+117 -3.6242153e+117 -3.7356915e+117 -3.7324341e+117 -3.8491179e+117 -3.84555e+117 -3.7300646e+117 -3.7261957e+117 -2.954831e+117 -2.957561e+117 -3.0682174e+117 -3.0660917e+117 -3.1754085e+117 -3.1775529e+117 -3.2840905e+117 -3.2865919e+117 -3.3966465e+117 -3.5068623e+117 -3.5045982e+117 -3.3940761e+117 -3.6183671e+117 -3.6159618e+117 -3.0638397e+117 -2.9547766e+117 -2.9528394e+117 -3.0612151e+117 -3.1703981e+117 -3.1735252e+117 -3.2787214e+117 -3.2814694e+117 -3.3904662e+117 -3.5004608e+117 -3.4980949e+117 -3.3881332e+117 -3.1651364e+117 -3.1675408e+117 -3.2731333e+117 -3.2752308e+117 -4.810096e+117 -4.9312047e+117 -5.4977928e+117 -5.491385e+117 -5.4904191e+117 -5.4841877e+117 -5.4939077e+117 -5.5013543e+117 -5.4817158e+117 -5.4758235e+117 -5.4713513e+117 -5.4655614e+117 -5.4748339e+117 -5.4851534e+117 -5.4872859e+117 -5.4768378e+117 -5.478203e+117 -5.4888579e+117 -5.5035134e+117 -5.496043e+117 -5.497656e+117 -5.5051136e+117 -5.4579618e+117 -5.4678326e+117 -5.4758754e+117 -5.4826474e+117 -5.5157719e+117 -5.5098902e+117 -5.5114567e+117 -5.5175937e+117 -5.5182093e+117 -5.509986e+117 -5.513617e+117 -5.5057823e+117 -5.5182238e+117 -5.5232199e+117 -5.503774e+117 -5.4969728e+117 -5.5089595e+117 -5.5017196e+117 -5.5075819e+117 -5.513131e+117 -5.5266545e+117 -5.5212602e+117 -5.5235899e+117 -5.5293994e+117 -5.4921901e+117 -5.4878907e+117 -5.4957458e+117 -5.499499e+117 -5.5030816e+117 -5.5138123e+117 -5.5061794e+117 -5.5172738e+117 -5.5093245e+117 -5.5205874e+117 -5.512163e+117 -5.5236874e+117 -5.5262548e+117 -5.5224268e+117 -5.5279062e+117 -5.5320699e+117 -5.5298006e+117 -5.5357858e+117 -5.539048e+117 -5.5330035e+117 -5.5433056e+117 -5.5400921e+117 -5.5435991e+117 -5.5469047e+117 -5.5362348e+117 -5.5317144e+117 -5.5347762e+117 -5.5396101e+117 -5.4789408e+117 -5.4906524e+117 -5.4661446e+117 -5.5011606e+117 -5.5105366e+117 -5.5262998e+117 -5.5188368e+117 -5.4797297e+117 -5.4789121e+117 -5.4898157e+117 -5.4905906e+117 -5.4995223e+117 -5.4989771e+117 -5.506519e+117 -5.5069664e+117 -5.4526514e+117 -5.4523789e+117 -5.4660643e+117 -5.4668767e+117 -5.4796983e+117 -5.4668036e+117 -5.4589284e+117 -5.4727659e+117 -5.4851626e+117 -5.491163e+117 -5.5009801e+117 -5.4962031e+117 -5.5057301e+117 -5.5095083e+117 -5.5141182e+117 -5.5215864e+117 -5.5170288e+117 -5.5559233e+117 -5.5489884e+117 -5.5338772e+117 -5.5415381e+117 -5.5716828e+117 -5.5758717e+117 -5.5620773e+117 -5.5673852e+117 -5.5380601e+117 -5.5391114e+117 -5.5443234e+117 -5.5431431e+117 -5.5472677e+117 -5.5486885e+117 -5.5521636e+117 -5.5506099e+117 -5.5133898e+117 -5.5131384e+117 -5.5197119e+117 -5.5197648e+117 -5.5261978e+117 -5.52663e+117 -5.5331474e+117 -5.5323655e+117 -5.5466025e+117 -5.5395379e+117 -5.5244802e+117 -5.5319321e+117 -5.5366553e+117 -5.5291089e+117 -5.5442616e+117 -5.5512958e+117 -5.5582971e+117 -5.5529548e+117 -5.567328e+117 -5.5626461e+117 -5.5666593e+117 -5.5713497e+117 -5.5576282e+117 -5.5629533e+117 -5.5796962e+117 -5.5835744e+117 -5.5702664e+117 -5.5737988e+117 -5.5749816e+117 -5.5786252e+117 -4.2675624e+117 -4.2561682e+117 -3.8068958e+117 -4.2107621e+117 -3.3640172e+117 -3.7860853e+117 -4.2032485e+117 -4.2207344e+117 -3.7909224e+117 -3.3633139e+117 -3.79076e+117 -3.3349788e+117 -4.2362161e+117 -5.2373122e+117 -5.007636e+117 -4.6344556e+117 -4.6288091e+117 -4.6416865e+117 -4.6552679e+117 -4.3221448e+117 -5.0479479e+117 -5.0765335e+117 -5.0951125e+117 -5.8651767e+117 -5.7323952e+117 -5.4370983e+117 -5.7278528e+117 -5.4614156e+117 -5.4648048e+117 -5.4122052e+117 -3.3171269e+117 -2.6693742e+117 -1.9599472e+117 -2.6237622e+117 -1.4000029e+117 -6.9107732e+116 -1.7246812e+117 -3.4800975e+117 -3.3971427e+117 -2.3073795e+117 -2.4690635e+117 -2.8745971e+117 -2.4598624e+117 -2.9072184e+117 -2.8672402e+117 -2.371694e+117 -2.1950191e+117 -2.0404414e+117 -2.3206751e+117 -2.8286497e+117 -2.2275938e+117 -3.0152048e+117 -2.5607263e+117 -2.3186678e+117 -2.2629538e+117 -2.3455195e+117 -2.660182e+117 -2.3724282e+117 -2.3088383e+117 -2.5113759e+117 -1.9964701e+117 -2.0050487e+117 -2.1480773e+117 -3.8481536e+117 -3.7772478e+117 -3.2933948e+117 -3.3167099e+117 -1.8559907e+117 -3.7414177e+117 -3.8544811e+117 -3.9672885e+117 -3.8547814e+117 -3.7412076e+117 -3.5178817e+117 -3.4075851e+117 -3.2962875e+117 -3.4077365e+117 -3.2958738e+117 -3.1830868e+117 -3.0146012e+117 -3.1823928e+117 -3.5174405e+117 -3.6294432e+117 -3.6287636e+117 -3.9680309e+117 -2.7922996e+117 -3.4858368e+117 -2.8805175e+117 -2.0320133e+117 -2.8839309e+117 -2.1478608e+117 -2.2136599e+117 -2.3581536e+117 -2.795659e+117 -2.348985e+117 -1.859467e+117 -2.0702287e+117 -1.8622951e+117 -1.5013975e+117 -1.768806e+117 -2.2441366e+117 -2.7819881e+117 -2.0534238e+117 -1.4621484e+117 -1.1245518e+117 -2.720024e+116 -1.2471572e+117 -1.4735916e+117 -1.6178804e+117 -3.1862413e+117 -3.0747401e+117 -3.2957356e+117 -3.2959216e+117 -3.1857922e+117 -3.0743599e+117 -2.7959475e+117 -2.9619766e+117 -2.9617131e+117 -3.5173363e+117 -3.406229e+117 -3.4062792e+117 -3.5163446e+117 -3.6281543e+117 -3.6294242e+117 -3.7407476e+117 -3.7405632e+117 -3.5172405e+117 -3.406532e+117 -3.2947248e+117 -2.5816013e+117 -2.7458228e+117 -2.7455871e+117 -2.8552048e+117 -2.8542804e+117 -2.8544051e+117 -2.8543974e+117 -2.7452245e+117 -2.7442965e+117 -2.9628691e+117 -2.9613195e+117 -2.9630534e+117 -3.0725177e+117 -3.0718947e+117 -3.0722962e+117 -2.9619406e+117 -2.9632028e+117 -3.0708729e+117 -3.0694842e+117 -3.1834736e+117 -3.1813688e+117 -3.1821499e+117 -3.1808386e+117 -3.2928428e+117 -3.291995e+117 -3.2913834e+117 -3.1799054e+117 -3.2904195e+117 -3.2901685e+117 -3.1793365e+117 -3.4034425e+117 -3.4031026e+117 -3.4043362e+117 -3.4028199e+117 -3.5160005e+117 -3.5154134e+117 -3.5151435e+117 -3.5149162e+117 -3.5147405e+117 -3.4021826e+117 -3.4021314e+117 -3.5131665e+117 -3.6280956e+117 -3.627905e+117 -3.6278953e+117 -3.6277405e+117 -3.7414137e+117 -3.7414132e+117 -3.7416294e+117 -3.7412421e+117 -3.8561893e+117 -3.8561798e+117 -3.856193e+117 -3.9726162e+117 -3.9726296e+117 -3.9726252e+117 -4.0909907e+117 -4.090992e+117 -4.210232e+117 -4.210231e+117 -4.3293581e+117 -4.4508058e+117 -2.7443576e+117 -2.7428204e+117 -2.8490706e+117 -2.8516625e+117 -2.9602164e+117 -3.0689144e+117 -3.0672066e+117 -2.9576173e+117 -3.1790344e+117 -3.2893077e+117 -3.288227e+117 -3.178109e+117 -2.955882e+117 -2.9529085e+117 -3.0618714e+117 -3.0648084e+117 -5.4396431e+117 -5.4234124e+117 -5.4191637e+117 -5.4459855e+117 -5.4551054e+117 -5.4469913e+117 -5.4347283e+117 -5.4254089e+117 -5.4564816e+117 -5.4355825e+117 -5.4446825e+117 -5.4339428e+117 -5.4304379e+117 -5.4489894e+117 -5.4515922e+117 -5.4504362e+117 -5.399315e+117 -5.4066703e+117 -5.4121825e+117 -5.403729e+117 -5.4705501e+117 -5.4641249e+117 -5.4402881e+117 -5.4459316e+117 -5.4576159e+117 -5.4515904e+117 -5.4159611e+117 -5.4067425e+117 -5.4092833e+117 -5.4192462e+117 -5.4315282e+117 -5.4252775e+117 -5.4366981e+117 -5.4296595e+117 -5.4142496e+117 -5.4182651e+117 -5.4205931e+117 -5.4258199e+117 -5.4646742e+117 -5.4657553e+117 -5.4597373e+117 -5.4451673e+117 -5.4631671e+117 -5.4617244e+117 -5.4920999e+117 -5.4892783e+117 -5.4748439e+117 -5.4776048e+117 -5.464298e+117 -5.4976405e+117 -5.4950591e+117 -5.466707e+117 -5.4802264e+117 -5.4827166e+117 -5.4690767e+117 -5.4324994e+117 -5.420994e+117 -5.4220359e+117 -5.433952e+117 -5.4309031e+117 -5.4287158e+117 -5.4174961e+117 -5.4195548e+117 -5.4402705e+117 -5.4494653e+117 -5.4425815e+117 -5.4518781e+117 -5.4444627e+117 -5.4540896e+117 -5.4466629e+117 -5.4565656e+117 -5.4794555e+117 -5.4754464e+117 -5.4624095e+117 -5.4504293e+117 -5.4536196e+117 -5.4659896e+117 -5.4859547e+117 -5.482552e+117 -5.4688754e+117 -5.4562759e+117 -5.4718812e+117 -5.4589811e+117 -5.4267727e+117 -5.4247172e+117 -5.4137937e+117 -5.4156408e+117 -5.4110158e+117 -5.4214396e+117 -5.4232882e+117 -5.4125654e+117 -5.4323781e+117 -5.4401929e+117 -5.4342611e+117 -5.4425538e+117 -5.435918e+117 -5.4446397e+117 -5.4471374e+117 -5.4382096e+117 -6.1698667e+117 -6.1043816e+117 -6.0363607e+117 -5.9967047e+117 -6.0093183e+117 -6.0345331e+117 -5.9930963e+117 -6.0175068e+117 -5.9899399e+117 -6.0151621e+117 -6.0090433e+117 -6.0488683e+117 -6.0016437e+117 -7.9563085e+117 -7.6252837e+117 -5.8176735e+117 -5.989387e+117 -6.2247624e+117 -5.3555288e+117 -6.0150486e+117 -7.2155137e+117 -6.1139959e+117 -6.2780486e+117 -6.3878426e+117 -6.321365e+117 -6.7645774e+117 -6.8920759e+117 -6.2621399e+117 -6.74128e+117 -7.4441898e+117 -6.7317383e+117 -6.4531646e+117 -6.5426729e+117 -6.442122e+117 -6.339798e+117 -6.6305188e+117 -6.5678505e+117 -6.4060184e+117 -6.2272868e+117 -6.1336206e+117 -6.1754497e+117 -6.1849308e+117 -6.1587924e+117 -6.2230684e+117 -6.2138243e+117 -6.1314449e+117 -4.4432554e+117 -4.4432608e+117 -4.5670007e+117 -3.7414414e+117 -3.8549614e+117 -3.8557363e+117 -3.7415326e+117 -3.7413763e+117 -3.8552052e+117 -3.7413026e+117 -3.8545253e+117 -3.855175e+117 -3.7409878e+117 -3.8561215e+117 -3.7417273e+117 -3.856214e+117 -3.2976324e+117 -3.2976272e+117 -3.1872294e+117 -3.2968937e+117 -3.2966474e+117 -3.1848523e+117 -3.0171102e+117 -3.184307e+117 -3.1867865e+117 -3.4057931e+117 -3.4064375e+117 -3.4056916e+117 -3.5161707e+117 -3.5179943e+117 -3.5143509e+117 -3.5179245e+117 -3.4082482e+117 -3.4087087e+117 -3.5179362e+117 -3.6275978e+117 -3.6280285e+117 -3.6279196e+117 -3.6281718e+117 -3.625623e+117 -3.7378373e+117 -3.6290302e+117 -3.628986e+117 -3.8516972e+117 -3.9658847e+117 -3.9682331e+117 -3.969183e+117 -3.969284e+117 -3.9688641e+117 -3.9682167e+117 -3.9673397e+117 -3.9675462e+117 -4.0825879e+117 -4.0831098e+117 -4.200494e+117 -4.2001172e+117 -4.0833871e+117 -4.0835577e+117 -4.0835277e+117 -4.2005679e+117 -4.2007709e+117 -4.2008019e+117 -4.3206168e+117 -4.3206257e+117 -4.6891924e+117 -2.7946573e+117 -2.9618031e+117 -3.0737855e+117 -3.0718532e+117 -2.9598848e+117 -3.1821921e+117 -3.1844738e+117 -3.2937463e+117 -3.2901796e+117 -3.3996985e+117 -3.4038383e+117 -3.5133284e+117 -3.5096998e+117 -3.6209717e+117 -3.6242455e+117 -3.7357243e+117 -3.7324631e+117 -2.9577728e+117 -2.9604304e+117 -3.0682884e+117 -3.0662027e+117 -3.1755901e+117 -3.1777911e+117 -3.2842669e+117 -3.286808e+117 -3.3966663e+117 -3.5068807e+117 -3.5046124e+117 -3.3940919e+117 -3.0640231e+117 -2.9549998e+117 -2.9530471e+117 -3.0613944e+117 -3.1704083e+117 -3.1735323e+117 -3.2787294e+117 -3.2814765e+117 -5.4988977e+117 -5.4941121e+117 -5.4914878e+117 -5.4868569e+117 -5.4947934e+117 -5.5022656e+117 -5.4826765e+117 -5.4782793e+117 -5.4721787e+117 -5.4677769e+117 -5.4754878e+117 -5.4859433e+117 -5.4877326e+117 -5.4771703e+117 -5.4784275e+117 -5.4891788e+117 -5.5040623e+117 -5.4965732e+117 -5.4980476e+117 -5.5055154e+117 -5.4587666e+117 -5.4687684e+117 -5.4769353e+117 -5.4836991e+117 -5.5163938e+117 -5.5104811e+117 -5.5118855e+117 -5.5180388e+117 -5.5194711e+117 -5.51306e+117 -5.5148667e+117 -5.5087965e+117 -5.5192413e+117 -5.5242136e+117 -5.5049336e+117 -5.4997747e+117 -5.5102022e+117 -5.5047001e+117 -5.5085462e+117 -5.5141475e+117 -5.5272429e+117 -5.5218762e+117 -5.5240381e+117 -5.529822e+117 -5.4933467e+117 -5.4889553e+117 -5.4968427e+117 -5.5005948e+117 -5.5042637e+117 -5.5170448e+117 -5.5074382e+117 -5.5207005e+117 -5.5106708e+117 -5.5241409e+117 -5.5134589e+117 -5.5272327e+117 -5.5277052e+117 -5.5237797e+117 -5.5289513e+117 -5.5331669e+117 -5.531286e+117 -5.5369056e+117 -5.5401411e+117 -5.5344743e+117 -5.5438966e+117 -5.540741e+117 -5.5440534e+117 -5.5473132e+117 -5.5368732e+117 -5.5323273e+117 -5.5352137e+117 -5.5400589e+117 -3.7839571e+117 -4.1935987e+117 -3.3283747e+117 -3.7634615e+117 -4.1873703e+117 -3.3335893e+117 -3.7621093e+117 -4.1894566e+117 -4.1999049e+117 -3.766784e+117 -3.3301205e+117 -3.7637003e+117 -3.3007043e+117 -4.9773199e+117 -4.6082898e+117 -4.6230279e+117 -4.6278913e+117 -5.0364828e+117 -5.0770693e+117 -5.0869065e+117 -5.7491003e+117 -5.4836889e+117 -5.4939355e+117 -2.7237434e+117 -1.3784662e+117 -6.0654108e+116 -3.366384e+117 -2.3385557e+117 -2.8424928e+117 -2.3318449e+117 -2.8499061e+117 -2.1455387e+117 -2.4136333e+117 -2.8789442e+117 -2.8414003e+117 -2.2947288e+117 -1.9414345e+117 -2.1104553e+117 -1.8726392e+117 -1.6069313e+117 -2.2378538e+117 -2.7894821e+117 -2.2109073e+117 -2.5413878e+117 -2.3141072e+117 -2.268735e+117 -2.2629217e+117 -2.3611271e+117 -2.2700678e+117 -2.304192e+117 -1.9439445e+117 -1.9639888e+117 -3.2642847e+117 -3.7414254e+117 -3.7412167e+117 -3.5180283e+117 -3.40772e+117 -3.2965661e+117 -3.4078379e+117 -3.2964614e+117 -3.1860532e+117 -3.075393e+117 -2.9632542e+117 -2.7967209e+117 -2.9617415e+117 -3.0741817e+117 -3.1853863e+117 -3.5175773e+117 -3.6294511e+117 -3.6287756e+117 -2.9515952e+117 -2.1628336e+117 -2.1785182e+117 -2.7627808e+117 -2.2947332e+117 -1.7909124e+117 -1.3324874e+117 -1.9971133e+117 -1.3884613e+117 -1.5571311e+117 -1.7661699e+117 -2.2199436e+117 -1.4777347e+117 -1.2381845e+117 -9.6671493e+116 -1.4285743e+117 -1.5013594e+117 -3.1863271e+117 -3.0750648e+117 -3.2958522e+117 -3.2960256e+117 -3.1858843e+117 -3.0745551e+117 -2.580146e+117 -2.7446498e+117 -2.7447036e+117 -2.8552816e+117 -2.8550691e+117 -2.9647412e+117 -2.9642939e+117 -3.5173427e+117 -3.4062374e+117 -3.4062863e+117 -3.5163524e+117 -3.2947235e+117 -2.6405196e+117 -2.5304711e+117 -2.5319074e+117 -2.5332079e+117 -2.6401996e+117 -2.6392266e+117 -2.6391185e+117 -2.5292105e+117 -2.747724e+117 -2.7458828e+117 -2.7485557e+117 -2.8550135e+117 -2.8548523e+117 -2.8556342e+117 -2.8542709e+117 -2.8548103e+117 -2.7467928e+117 -2.7472013e+117 -2.9627724e+117 -2.962982e+117 -2.9627219e+117 -2.9631665e+117 -3.0725828e+117 -3.0719633e+117 -3.0715459e+117 -3.0712951e+117 -2.962051e+117 -2.9632638e+117 -3.0709299e+117 -3.0696e+117 -3.1834728e+117 -3.181424e+117 -3.1811496e+117 -3.1821506e+117 -3.180877e+117 -3.2928413e+117 -3.2920283e+117 -3.2917116e+117 -3.2913888e+117 -3.1799128e+117 -3.2904246e+117 -3.2901759e+117 -3.1793443e+117 -3.4034447e+117 -3.4031284e+117 -3.4030831e+117 -3.4028226e+117 -3.5154144e+117 -3.5151771e+117 -3.515151e+117 -3.5149169e+117 -3.6279075e+117 -3.6279055e+117 -3.6278977e+117 -3.7414176e+117 -3.7414174e+117 -3.7414183e+117 -3.8561773e+117 -3.8561783e+117 -3.9726271e+117 -3.9726257e+117 -4.0909944e+117 -4.210242e+117 -2.744569e+117 -2.742976e+117 -2.8492279e+117 -2.8518507e+117 -2.9602317e+117 -3.068924e+117 -3.0672185e+117 -2.9576314e+117 -5.4405799e+117 -5.446306e+117 -5.4560332e+117 -5.4473688e+117 -5.4569363e+117 -5.4710742e+117 -5.4646445e+117 -5.4927006e+117 -5.4898506e+117 -5.4982593e+117 -5.4957128e+117 -5.4800467e+117 -5.4759835e+117 -5.4864873e+117 -5.4830942e+117 -6.0349171e+117 -5.9955421e+117 -6.0235684e+117 -5.9921058e+117 -6.023406e+117 -6.0181684e+117 -6.0487111e+117 -1.1541383e+118 -6.0930246e+117 -5.985748e+117 -6.3813398e+117 -6.0836639e+117 -6.3506787e+117 -6.8816033e+117 -7.0365744e+117 -6.3694249e+117 -7.0985003e+117 -8.2284523e+117 -6.9357607e+117 -6.8385761e+117 -8.1322791e+117 -7.2795336e+117 -6.7423804e+117 -6.6367876e+117 -6.5750911e+117 -6.4713322e+117 -6.6505692e+117 -6.6709323e+117 -6.5780111e+117 -6.4247136e+117 -6.1860105e+117 -6.1950893e+117 -6.1888037e+117 -6.2491584e+117 -4.4432525e+117 -3.7414513e+117 -3.8557519e+117 -3.7415955e+117 -3.7414317e+117 -3.8552151e+117 -3.7413095e+117 -3.7410077e+117 -3.8561266e+117 -3.7418209e+117 -3.8562222e+117 -3.7419302e+117 -3.8562223e+117 -3.2979916e+117 -3.2984899e+117 -3.2997411e+117 -3.1899854e+117 -3.1879075e+117 -3.0794495e+117 -3.2978167e+117 -3.2972426e+117 -3.1887778e+117 -3.0774084e+117 -2.9683146e+117 -2.7983974e+117 -2.9643612e+117 -3.0784972e+117 -2.9674413e+117 -2.9641796e+117 -3.0766043e+117 -3.1874027e+117 -3.1888816e+117 -3.4060421e+117 -3.4066051e+117 -3.4073554e+117 -3.4077758e+117 -3.4079483e+117 -3.5162929e+117 -3.5167788e+117 -3.5168564e+117 -3.5171878e+117 -3.5146035e+117 -3.5180244e+117 -3.4083569e+117 -3.4088128e+117 -3.5180633e+117 -3.6276147e+117 -3.6281163e+117 -3.6282247e+117 -3.6279947e+117 -3.6282305e+117 -3.6256489e+117 -3.7378741e+117 -3.6290379e+117 -3.628998e+117 -3.9691886e+117 -3.9693165e+117 -3.9692946e+117 -3.9688796e+117 -3.9682247e+117 -4.0835595e+117 -4.0835649e+117 -4.2007752e+117 -4.2007805e+117 -4.3206269e+117 -2.7423472e+117 -2.7451618e+117 -2.8533263e+117 -2.8551806e+117 -2.9646328e+117 -3.0743071e+117 -3.0723683e+117 -2.9630266e+117 -3.1824665e+117 -3.1849098e+117 -3.2941915e+117 -3.2905053e+117 -3.3997337e+117 -3.4038774e+117 -3.5133607e+117 -3.5097317e+117 -2.9580082e+117 -2.9606362e+117 -3.0685263e+117 -3.0664062e+117 -3.1756045e+117 -3.1778147e+117 -3.2842809e+117 -3.2868289e+117 -3.064034e+117 -2.9550148e+117 -2.9530597e+117 -3.0614049e+117 -5.4954429e+117 -5.4881535e+117 -5.4794424e+117 -5.4688337e+117 -5.4592251e+117 -5.469309e+117 -5.4775541e+117 -5.484331e+117 -5.5145864e+117 -5.5102849e+117 -5.5011528e+117 -5.5061586e+117 -5.4940399e+117 -5.4896004e+117 -5.4975145e+117 -5.5012759e+117 -5.5049819e+117 -5.5186566e+117 -5.5081878e+117 -5.5223963e+117 -5.5114659e+117 -5.5258975e+117 -5.5142355e+117 -5.5289928e+117 -3.3070323e+117 -3.7480084e+117 -4.175065e+117 -3.3146339e+117 -3.7478049e+117 -4.1740838e+117 -3.313421e+117 -3.7467379e+117 -4.1747566e+117 -3.7476567e+117 -3.3082367e+117 -3.2780145e+117 -4.6092117e+117 -4.6162276e+117 -5.0752612e+117 -5.0962752e+117 -5.5177794e+117 -5.7227002e+116 -2.8209748e+117 -2.2902948e+117 -2.8281604e+117 -1.7650819e+117 -2.2335982e+117 -2.8211684e+117 -2.0528671e+117 -2.1291835e+117 -2.3871218e+117 -2.8158025e+117 -2.2231181e+117 -1.6813085e+117 -1.7621238e+117 -2.0984495e+117 -1.8032027e+117 -1.0437513e+117 -1.5814165e+117 -2.177399e+117 -2.7637721e+117 -2.307737e+117 -2.2658774e+117 -2.2607883e+117 -2.2577622e+117 -2.2820033e+117 -1.908951e+117 -3.5180354e+117 -3.4077271e+117 -3.2966936e+117 -3.4078425e+117 -3.2966263e+117 -3.0754407e+117 -3.1861751e+117 -2.9659992e+117 -2.8570439e+117 -2.7462624e+117 -2.7450961e+117 -2.5808835e+117 -2.8552239e+117 -2.9643686e+117 -3.0743277e+117 -3.1855657e+117 -3.5175846e+117 -2.2036609e+117 -2.2591419e+117 -1.8291493e+117 -1.4432748e+117 -6.1473124e+116 -1.4762861e+117 -1.562103e+117 -1.7470942e+117 -1.2895652e+117 -1.1617069e+117 -1.4773698e+117 -3.1863322e+117 -3.0752081e+117 -3.2958582e+117 -3.296029e+117 -3.1858855e+117 -3.0746789e+117 -2.5293053e+117 -2.5297953e+117 -2.6392737e+117 -2.6390732e+117 -2.7471361e+117 -2.7474268e+117 -2.8553506e+117 -2.8550331e+117 -2.9649094e+117 -2.9644536e+117 -2.6407738e+117 -2.5334566e+117 -2.5336276e+117 -2.5341335e+117 -2.535481e+117 -2.6413605e+117 -2.6421608e+117 -2.6392716e+117 -2.6396838e+117 -2.5319809e+117 -2.7479823e+117 -2.7479039e+117 -2.7475692e+117 -2.7486968e+117 -2.8551321e+117 -2.8550375e+117 -2.8549736e+117 -2.8548724e+117 -2.8544178e+117 -2.8549422e+117 -2.7469624e+117 -2.7473589e+117 -2.9628612e+117 -2.9628246e+117 -2.962989e+117 -2.9627888e+117 -2.9631725e+117 -3.0725825e+117 -3.071965e+117 -3.0715849e+117 -3.0714473e+117 -3.0713114e+117 -2.962063e+117 -2.9632688e+117 -3.0709355e+117 -3.0696103e+117 -3.181426e+117 -3.1811895e+117 -3.1811318e+117 -3.1808807e+117 -3.2920279e+117 -3.2917408e+117 -3.2916843e+117 -3.2913894e+117 -3.4031284e+117 -3.4030961e+117 -3.4030809e+117 -3.5151771e+117 -3.5151622e+117 -3.5151498e+117 -3.6279063e+117 -3.6279063e+117 -3.7414173e+117 -3.7414185e+117 -3.8561772e+117 -3.9726257e+117 -2.7445876e+117 -2.7429896e+117 -2.8492417e+117 -2.8518681e+117 -5.9946704e+117 -6.0283575e+117 -6.0246796e+117 -6.0683201e+117 -8.7878354e+117 -6.0176404e+117 -6.4028482e+117 -7.2609809e+117 -8.5522717e+117 -7.0254571e+117 -7.2514713e+117 -9.3053809e+117 -7.7234503e+117 -6.9094942e+117 -8.2566819e+117 -7.6303221e+117 -7.164404e+117 -6.7500965e+117 -6.6654004e+117 -6.5999765e+117 -6.6879871e+117 -6.6499086e+117 -6.5808962e+117 -6.2033662e+117 -6.1983113e+117 -3.7416031e+117 -3.7414348e+117 -3.741826e+117 -3.8562252e+117 -3.7419513e+117 -3.8562286e+117 -3.7419402e+117 -3.2981701e+117 -3.2990894e+117 -3.2986011e+117 -3.2993873e+117 -3.1902334e+117 -3.0812993e+117 -3.1914561e+117 -3.1910204e+117 -3.0820094e+117 -3.1900585e+117 -3.2980005e+117 -3.299061e+117 -3.2975939e+117 -3.0782909e+117 -3.1892127e+117 -2.9712311e+117 -2.9689301e+117 -2.8586307e+117 -2.7454804e+117 -2.7471294e+117 -2.745562e+117 -2.8571429e+117 -2.8580168e+117 -2.7467264e+117 -2.8570807e+117 -2.9678759e+117 -3.079326e+117 -2.9694366e+117 -2.9669331e+117 -3.0767547e+117 -3.1876159e+117 -3.1890114e+117 -3.4060639e+117 -3.4066202e+117 -3.4073571e+117 -3.4074433e+117 -3.4078031e+117 -3.4080015e+117 -3.5163054e+117 -3.5167955e+117 -3.5168705e+117 -3.5168264e+117 -3.5171817e+117 -3.5146283e+117 -3.5180303e+117 -3.4083639e+117 -3.4088174e+117 -3.5180702e+117 -3.6281205e+117 -3.6282397e+117 -3.6282337e+117 -3.6279994e+117 -3.6282339e+117 -3.9693191e+117 -3.969323e+117 -4.0835677e+117 -4.2007816e+117 -2.745378e+117 -2.7482305e+117 -2.8537434e+117 -2.8558124e+117 -2.96497e+117 -3.0746945e+117 -3.0726892e+117 -2.9633193e+117 -3.1824973e+117 -3.1849544e+117 -3.2942371e+117 -3.2905399e+117 -2.9580267e+117 -2.9606559e+117 -3.0685486e+117 -3.0664213e+117 -3.3006893e+117 -3.7374404e+117 -4.1648992e+117 -3.3002383e+117 -3.7347671e+117 -4.1625457e+117 -3.2961832e+117 -3.7327372e+117 -3.2912398e+117 -4.6085605e+117 -5.1021538e+117 -2.2649046e+117 -2.8121659e+117 -1.7225378e+117 -2.1860884e+117 -2.8010994e+117 -1.369964e+117 -1.4865625e+117 -2.1480656e+117 -2.7962672e+117 -2.0222976e+117 -2.0456737e+117 -2.1154916e+117 -2.7974763e+117 -2.169052e+117 -1.4828311e+117 -1.3512951e+117 -1.6701451e+117 -4.1987814e+116 -1.2015586e+117 -1.5315524e+117 -2.1346127e+117 -2.2649086e+117 -2.2592199e+117 -2.2599452e+117 -3.296699e+117 -3.2966336e+117 -3.0755578e+117 -3.1861815e+117 -2.9661453e+117 -2.8572255e+117 -2.7491962e+117 -2.6405179e+117 -2.7478746e+117 -2.6398223e+117 -2.5305286e+117 -2.53068e+117 -2.8552373e+117 -2.9645119e+117 -3.074458e+117 -3.1855763e+117 -1.8282393e+117 -1.5847314e+117 -1.2497202e+117 -1.4905037e+117 -1.5397385e+117 -1.2251018e+117 -3.075215e+117 -3.0746809e+117 -2.5318715e+117 -2.5325763e+117 -2.6394249e+117 -2.6391094e+117 -2.7473361e+117 -2.7475776e+117 -2.8554896e+117 -2.8551885e+117 -2.9649184e+117 -2.9644604e+117 -2.6410444e+117 -2.5337738e+117 -2.5361811e+117 -2.5337844e+117 -2.5366917e+117 -2.5356803e+117 -2.6415625e+117 -2.642306e+117 -2.6417403e+117 -2.6394969e+117 -2.6398458e+117 -2.5322281e+117 -2.7481468e+117 -2.748241e+117 -2.7479159e+117 -2.7476981e+117 -2.7487054e+117 -2.8551385e+117 -2.8551599e+117 -2.855116e+117 -2.8549816e+117 -2.8549175e+117 -2.8544303e+117 -2.8549501e+117 -2.7469739e+117 -2.7473708e+117 -2.9628662e+117 -2.9628927e+117 -2.9628545e+117 -2.9627933e+117 -3.071586e+117 -3.0714974e+117 -3.0714506e+117 -3.0713128e+117 -3.1811914e+117 -3.1811509e+117 -3.1811309e+117 -3.291742e+117 -3.2916997e+117 -3.2916824e+117 -3.4030962e+117 -3.4030935e+117 -3.5151627e+117 -3.5151612e+117 -3.6279066e+117 -3.7414183e+117 -6.0287115e+117 -6.0895294e+117 -7.4777746e+117 -1.0091582e+118 -7.9317372e+117 -6.9797866e+117 -9.6957572e+117 -8.2471197e+117 -7.4774276e+117 -6.9017856e+117 -7.7173377e+117 -7.4002125e+117 -7.1184563e+117 -6.6873967e+117 -6.6610626e+117 -6.6412841e+117 -6.2059846e+117 -3.7419536e+117 -3.85623e+117 -3.7419581e+117 -3.2981771e+117 -3.2991715e+117 -3.2986053e+117 -3.2994734e+117 -3.1902537e+117 -3.0815885e+117 -3.1915168e+117 -3.0830405e+117 -3.1916236e+117 -3.0825091e+117 -3.1912681e+117 -3.0811788e+117 -3.190242e+117 -3.2980159e+117 -3.2990783e+117 -3.2991813e+117 -3.2976267e+117 -3.0788288e+117 -3.1892543e+117 -2.9715403e+117 -2.8598595e+117 -2.9727597e+117 -2.9721893e+117 -2.9709809e+117 -2.8605187e+117 -2.7479089e+117 -2.7489603e+117 -2.7467937e+117 -2.7483659e+117 -2.8575013e+117 -2.8584639e+117 -2.748184e+117 -2.8569648e+117 -2.9683478e+117 -3.0794347e+117 -2.9695727e+117 -2.9671224e+117 -3.0769297e+117 -3.1876279e+117 -3.1890182e+117 -3.4073591e+117 -3.4074282e+117 -3.4074469e+117 -3.4077996e+117 -3.4080052e+117 -3.5167936e+117 -3.5168645e+117 -3.5168754e+117 -3.5168223e+117 -3.5171779e+117 -3.6282411e+117 -3.628246e+117 -3.9693252e+117 -2.745654e+117 -2.7484243e+117 -2.8540155e+117 -2.8560616e+117 -2.9650047e+117 -3.0747345e+117 -3.0727197e+117 -2.9633454e+117 -3.2901287e+117 -3.7274987e+117 -4.1561028e+117 -3.2866353e+117 -3.723605e+117 -3.2825251e+117 -1.7096301e+117 -2.1587154e+117 -2.7874518e+117 -1.3956349e+117 -1.4126945e+117 -2.1049957e+117 -2.7809653e+117 -7.5184966e+116 -9.9066031e+116 -1.32108e+117 -2.0970436e+117 -2.7800248e+117 -2.0073696e+117 -2.0420448e+117 -2.1395747e+117 -1.3855633e+117 -9.9169753e+116 -1.1752037e+117 -9.2505152e+116 -1.1674359e+117 -1.475636e+117 -2.2619435e+117 -3.0755637e+117 -2.9661564e+117 -2.857381e+117 -2.7493955e+117 -2.6407011e+117 -2.7480067e+117 -2.640116e+117 -2.5335442e+117 -2.5335524e+117 -2.8553833e+117 -2.9645213e+117 -3.0744663e+117 -1.6180385e+117 -1.4397502e+117 -1.4707332e+117 -2.5320757e+117 -2.5327442e+117 -2.6395739e+117 -2.6392966e+117 -2.7473494e+117 -2.7475863e+117 -2.8554965e+117 -2.8551964e+117 -2.6410617e+117 -2.5337976e+117 -2.5372962e+117 -2.5362836e+117 -2.5338007e+117 -2.5368292e+117 -2.535696e+117 -2.6415765e+117 -2.6424444e+117 -2.6427589e+117 -2.6418248e+117 -2.6395119e+117 -2.6398597e+117 -2.5322469e+117 -2.7481584e+117 -2.7483685e+117 -2.7483111e+117 -2.7477083e+117 -2.8551964e+117 -2.85524e+117 -2.8551211e+117 -2.8549206e+117 -2.9628966e+117 -2.9629097e+117 -2.9628566e+117 -3.0714999e+117 -3.0714811e+117 -3.0714511e+117 -3.1811515e+117 -3.181148e+117 -3.2916998e+117 -3.2916964e+117 -3.4030935e+117 -3.5151615e+117 -1.0839808e+118 -8.5957996e+117 -7.6188027e+117 -6.963703e+117 -8.4104338e+117 -7.8080384e+117 -7.3823152e+117 -7.4582937e+117 -7.3079383e+117 -6.6501147e+117 -3.7419603e+117 -3.2991771e+117 -3.2994755e+117 -3.0816139e+117 -3.191521e+117 -3.0831462e+117 -3.1916374e+117 -3.0832537e+117 -3.1916324e+117 -3.0827022e+117 -3.1912932e+117 -3.0813194e+117 -3.1902614e+117 -3.2990824e+117 -3.2991723e+117 -3.2991854e+117 -3.0788807e+117 -2.9715671e+117 -2.8600991e+117 -2.9729005e+117 -2.8607821e+117 -2.9729911e+117 -2.9724289e+117 -2.8603487e+117 -2.9711675e+117 -2.8595305e+117 -2.7481127e+117 -2.7491575e+117 -2.7492632e+117 -2.7488736e+117 -2.7485029e+117 -2.7485284e+117 -2.8578122e+117 -2.8586452e+117 -2.7483754e+117 -2.8571699e+117 -2.9683967e+117 -3.079436e+117 -2.9695758e+117 -2.9671372e+117 -3.0769403e+117 -3.4074298e+117 -3.4074337e+117 -3.5168599e+117 -3.5168669e+117 -3.6282472e+117 -2.7456784e+117 -2.748443e+117 -2.8540388e+117 -2.8560866e+117 -3.2788784e+117 -3.718937e+117 -3.2753742e+117 -1.4212093e+117 -1.3895882e+117 -2.0834369e+117 -2.7690973e+117 -1.1285696e+117 -9.3425227e+116 -1.2655527e+117 -2.0651738e+117 -2.7666653e+117 -4.4540529e+116 -7.9278146e+116 -1.2509063e+117 -2.0728689e+117 -2.0129015e+117 -1.3455709e+117 -8.7593184e+116 -4.669111e+116 -8.8763796e+116 -1.0800957e+117 -2.8573936e+117 -2.7494114e+117 -2.6409235e+117 -2.7480165e+117 -2.6402669e+117 -2.5337143e+117 -2.5337927e+117 -2.8553909e+117 -1.5148596e+117 -2.5320895e+117 -2.532753e+117 -2.6395812e+117 -2.6393088e+117 -2.5373912e+117 -2.5373353e+117 -2.5362934e+117 -2.5368397e+117 -2.6424539e+117 -2.6428845e+117 -2.6428173e+117 -2.6418326e+117 -2.7483771e+117 -2.7484394e+117 -2.7483165e+117 -2.8551995e+117 -2.8552795e+117 -2.8552453e+117 -2.9629132e+117 -2.9629112e+117 -3.0714827e+117 -3.0714802e+117 -3.1811484e+117 -3.2916964e+117 -8.8848128e+117 -8.0069863e+117 -7.4977839e+117 -7.8909605e+117 -7.6316457e+117 -7.3589619e+117 -3.0831525e+117 -3.1916407e+117 -3.0832938e+117 -3.1916433e+117 -3.0832668e+117 -3.0827306e+117 -3.081334e+117 -3.2991761e+117 -3.2991786e+117 -2.8601179e+117 -2.9729077e+117 -2.8609382e+117 -2.9730522e+117 -2.8610136e+117 -2.9730065e+117 -2.9724609e+117 -2.8605361e+117 -2.971186e+117 -2.8596871e+117 -2.7481313e+117 -2.749171e+117 -2.749405e+117 -2.7494692e+117 -2.7490688e+117 -2.7486596e+117 -2.7485423e+117 -2.8578437e+117 -2.8586554e+117 -2.7483896e+117 -2.8571898e+117 -3.4074339e+117 -3.516865e+117 -3.2700418e+117 -1.2354022e+117 -9.7522796e+116 -1.247762e+117 -2.0483862e+117 -2.7572152e+117 -4.2897021e+116 -7.5671053e+116 -1.2108202e+117 -2.046418e+117 -2.8467991e+116 -7.3155049e+116 -1.2297642e+117 -8.3838521e+116 -3.3577647e+116 -5.6569782e+116 -2.6409366e+117 -2.6402762e+117 -2.5337231e+117 -2.5338093e+117 -2.5373982e+117 -2.5374644e+117 -2.5373391e+117 -2.6428931e+117 -2.6429577e+117 -2.6428218e+117 -2.7484484e+117 -2.748445e+117 -2.8552827e+117 -2.8552853e+117 -2.9629145e+117 -3.0714816e+117 -8.1446675e+117 -7.7805242e+117 -7.6966859e+117 -3.0832975e+117 -3.1916479e+117 -3.0833011e+117 -3.299181e+117 -2.8609471e+117 -2.973057e+117 -2.8610848e+117 -2.9730597e+117 -2.8610278e+117 -2.8605593e+117 -2.8597004e+117 -2.7494085e+117 -2.7495258e+117 -2.7494807e+117 -2.749091e+117 -2.7486749e+117 -6.9805402e+116 -7.5868542e+116 -1.1978538e+117 -2.0345179e+117 -2.6833904e+116 -7.0984537e+116 -1.1969127e+117 -2.2975304e+116 -7.2610697e+116 -2.9358939e+116 -2.5374752e+117 -2.5374721e+117 -2.6429678e+117 -2.6429638e+117 -2.748454e+117 -2.8552884e+117 -7.8766325e+117 -3.0833045e+117 -2.8610898e+117 -2.9730643e+117 -2.861092e+117 -2.7495258e+117 -2.7495288e+117 -2.9750921e+116 -7.1199433e+116 -1.1884569e+117 -2.2028039e+116 -7.1232188e+116 -2.2100972e+116 -2.5374837e+117 -2.6429741e+117 -2.8610952e+117 -2.7495313e+117 -2.3095939e+116 -7.1985217e+116 -2.176754e+116 -2.2887313e+116 ) ; boundaryField { frontAndBack { type zeroGradient; } inlet { type freestreamPressure; freestreamValue uniform 100000; supersonic 0; value nonuniform List<scalar> 971 ( -9.1630719e+117 -6.6946053e+117 -2.3964296e+115 -6.7425471e+117 -6.0761299e+117 -1.9648956e+116 -6.4976864e+114 -2.6990481e+115 -7.3705585e+117 -1.3070075e+114 -6.6979335e+113 -9.3951803e+115 -3.9585134e+113 -6.4976882e+117 -2.4194883e+114 -1.8353885e+115 2.1581897e+113 -5.4413445e+117 -2.0329328e+115 -5.4452218e+114 -4.301574e+114 -1.738121e+115 -1.4886876e+114 -5.9559013e+117 -7.5219657e+117 -2.2224422e+115 -6.3857254e+115 -4.9153052e+115 -6.0737347e+117 -7.439673e+117 -3.2706691e+112 -6.8648371e+117 -7.7608042e+117 -8.4074454e+117 -7.1865134e+117 -6.7503522e+117 -1.5152182e+116 -6.0018003e+117 -1.1933229e+115 -7.08501e+115 -7.0587275e+115 -4.5969304e+117 -9.4329936e+117 -1.8507044e+118 -7.2194765e+117 -8.8167939e+117 -5.4434367e+117 -6.8263858e+114 -6.9514849e+117 -9.9001069e+117 -6.5414562e+117 -7.4502846e+117 -3.0849162e+114 -3.2700688e+114 -8.4856252e+117 -7.24931e+117 -6.890026e+117 -2.108215e+114 -4.869516e+117 -7.2325297e+114 -9.8945927e+114 -6.2563585e+117 -9.6835772e+113 -6.292924e+117 -1.2435755e+115 -9.6861813e+117 -6.1620033e+117 -7.0694136e+117 -7.741271e+114 -7.5005835e+117 -6.6473258e+117 -6.8032553e+117 -6.5266176e+117 -4.21566e+114 -6.0501258e+117 -6.3201388e+117 -5.9192476e+117 -5.6716406e+117 -6.6491268e+117 -6.7675197e+117 -6.9758044e+117 -6.9737647e+117 -6.6377455e+117 -6.4716074e+117 -6.7707372e+117 -6.8054193e+117 -7.1446995e+117 -7.0924006e+117 -7.2304633e+117 -7.624814e+117 -5.8137338e+117 -6.3709753e+117 -6.286687e+114 -1.739421e+116 -6.7466897e+117 -6.5038363e+117 -6.8340583e+117 -6.7042356e+117 -6.4057788e+117 -5.7958162e+117 -6.5213219e+117 -6.0016229e+117 -6.864918e+117 -6.6355363e+117 -5.869288e+117 -5.9272012e+117 -6.2003733e+117 -6.1529009e+114 -6.154027e+117 -2.9711513e+115 -5.9826793e+117 -5.8617407e+117 -6.238225e+117 -8.6379484e+117 -5.4916251e+117 -6.0155867e+117 -5.9207474e+117 -5.3878371e+117 -2.9041687e+115 -5.6261631e+114 -6.2374185e+117 -6.1339851e+117 -1.8186252e+114 -1.1074476e+114 -5.5476579e+117 -2.9699545e+114 -7.0034664e+117 -6.2880907e+117 9.743965e+113 -1.5851496e+115 -6.4231543e+117 -9.7996936e+114 -1.1651974e+118 -6.7347183e+112 -4.1407362e+115 -5.8183271e+117 -1.2574659e+114 -9.3606255e+113 -5.3156578e+117 -1.3650689e+115 -3.7613217e+114 -4.2266927e+114 -3.8763546e+114 -3.9918937e+117 -8.6766053e+115 -5.6140022e+117 -6.0218711e+113 -1.2355308e+112 -3.0579663e+114 -9.2468444e+115 -2.1748212e+115 -4.3188487e+113 -7.188491e+117 -6.0234237e+117 -6.4676804e+117 -6.65345e+117 -6.5247129e+117 -7.474242e+117 -5.5882224e+117 -5.5042457e+117 -5.5187649e+117 -1.2800824e+115 -4.6064042e+117 -8.7628178e+115 -5.9124788e+117 -6.0488654e+117 -4.9059801e+117 -5.5162979e+117 -6.9760029e+117 -1.1026914e+118 -8.3807526e+117 -6.3033653e+117 -6.1489124e+117 -6.1383841e+117 -8.1762733e+117 -1.5203946e+118 -6.3759655e+117 -3.8925919e+115 -7.4191214e+117 -5.6787907e+117 -6.1476986e+117 -6.1095921e+117 -6.0639288e+117 -6.0922882e+117 -6.1709522e+117 -6.3878426e+117 -7.0365744e+117 -6.1064212e+117 -6.1923e+117 -6.0713333e+117 -6.0754494e+117 -6.4531646e+117 -6.1139959e+117 -5.1775709e+117 -1.1234698e+115 -5.8341187e+117 -5.7231379e+117 -5.5643035e+117 -5.8862678e+117 -6.057891e+117 -6.1034586e+117 -6.0442663e+117 -6.1168748e+117 -5.7909175e+117 -5.7054979e+117 -5.8931795e+117 -5.7600216e+117 -5.6959851e+117 -5.7355353e+117 -5.8697937e+117 -5.8713481e+117 -6.0302135e+117 -6.1368758e+117 -5.9961415e+117 -6.037604e+117 -6.1602408e+117 -6.1798685e+117 -6.0836806e+117 -6.0758574e+117 -6.1236626e+117 -6.0966272e+117 -6.0979598e+117 -5.9706265e+117 -6.1956126e+117 -6.2249243e+117 -6.296235e+117 -6.3393007e+117 -6.5091841e+117 -6.8599632e+117 -6.0997271e+117 -6.1802262e+117 -6.3973379e+117 -5.2825804e+117 -5.5928526e+117 -5.9457718e+117 -3.743243e+117 -6.7732482e+114 -3.7041366e+117 -2.0052034e+114 -1.1849262e+115 -7.8982046e+115 -1.8313274e+115 -1.9282152e+115 -5.254606e+117 -4.134997e+115 -5.6461055e+117 -1.5751317e+115 -5.1968394e+117 -3.8427765e+117 -6.1268005e+115 -5.0295983e+114 -4.0890443e+117 -5.1110101e+117 -6.0914231e+117 -5.1619785e+117 -6.8519696e+117 -6.3401309e+117 -6.742186e+117 -6.348889e+117 -6.1259843e+117 -4.3489104e+117 -4.5250729e+114 -4.3099123e+115 -2.9739154e+114 -5.7588393e+117 -5.8030192e+117 -7.1603582e+117 -8.3541032e+117 -5.8792804e+117 -6.1944774e+117 -6.3890991e+117 -6.4829781e+117 -6.4383297e+117 -6.1677279e+117 -6.5790766e+117 -6.1443311e+117 -6.2322016e+117 -6.0891624e+117 -5.983739e+117 -5.9102989e+117 -5.8865268e+117 -4.9176372e+117 -4.6198741e+117 -5.9696046e+117 -5.7877801e+117 -5.4344807e+117 -7.3055865e+115 -5.0316679e+117 -4.2303945e+117 -2.3142166e+114 -6.8301086e+113 -4.3321503e+117 -7.3848219e+114 -1.0046102e+118 -5.0687181e+117 -5.0359193e+117 -5.0796121e+117 -2.2876815e+115 -1.0295542e+114 -3.176456e+117 -1.1225382e+115 -7.7373664e+114 -7.5538514e+117 -2.6226126e+114 -9.9240257e+113 -5.7312301e+117 -4.1480728e+117 -5.6232449e+115 -2.912818e+113 -4.9945945e+113 -4.8404373e+117 -2.9160369e+114 -2.8133337e+117 -2.9554386e+117 -7.5094176e+115 -8.4711587e+114 -4.4238702e+117 -4.854853e+117 -4.8424466e+117 -4.0854742e+117 -3.4558637e+117 -3.4778761e+117 -7.653742e+115 -6.7482087e+117 -6.1541475e+117 -3.0321164e+114 -5.9528645e+117 -7.7569591e+115 -6.3094975e+115 -1.9791017e+115 -3.0038853e+114 -1.0507532e+118 -5.2120509e+117 -7.3779011e+117 -2.0565978e+115 -1.9310103e+115 -6.2025925e+117 -7.241445e+117 -1.2112772e+118 -6.9582363e+117 -8.8453614e+117 -4.9649318e+117 -5.9572889e+117 -1.6456896e+114 -4.7205681e+117 -5.4145085e+117 -5.9171899e+117 -1.0067169e+116 -4.6044291e+117 -9.5312799e+117 -1.0764818e+115 -3.19766e+117 -2.0246638e+115 -3.5283388e+117 -5.4852817e+117 -7.0428876e+117 -6.8647194e+117 -6.4251065e+117 -5.8539697e+117 -3.759903e+114 -2.0496686e+115 -7.4916143e+114 -6.6412751e+117 -4.799504e+115 -1.4962401e+114 -1.239757e+114 -4.4563564e+117 -6.6200006e+114 -6.6029469e+117 -1.5531785e+114 -5.6455532e+117 -6.4345251e+117 -6.5901464e+117 -6.7878966e+117 -4.1172432e+114 -2.0798885e+114 -6.331223e+117 -1.9569516e+113 -5.5503043e+113 -6.3947173e+117 -6.8952903e+117 -3.611812e+114 -6.9656041e+117 -7.0261028e+117 -4.8810464e+117 -7.2587961e+117 -7.1003952e+114 -5.6111876e+117 -7.3086794e+117 -1.3878052e+114 -1.0575186e+115 -3.3034974e+117 -2.3442579e+114 -7.9689479e+117 -4.9729273e+114 -1.087618e+114 -1.3490425e+114 -2.8298261e+114 -4.5082743e+117 -6.0573483e+117 -6.4428095e+117 -4.7855431e+117 -6.1711481e+117 -4.4548223e+117 -3.983496e+117 -6.0988627e+114 -1.145537e+116 -3.7392073e+117 -3.6311229e+117 -3.3478465e+115 -5.3809436e+117 -6.1161947e+117 -2.4815492e+115 -3.5583926e+117 -4.3337659e+117 -5.3454326e+117 -5.7374032e+117 -5.2999722e+117 -5.5116907e+117 -4.3321485e+117 -4.7718469e+117 -3.2705927e+117 -3.2115367e+117 -1.2880536e+114 -2.4478431e+117 -2.8675251e+117 -3.9276827e+114 -1.3464196e+116 -3.2720824e+117 -2.2209809e+117 -2.1590739e+117 -5.7776223e+117 -5.7059842e+117 -5.3352565e+117 -5.5112032e+117 -5.2214593e+117 -5.4185413e+117 -4.7335757e+117 -4.689666e+117 -4.8941648e+117 -4.9422869e+117 -4.9326558e+117 -1.5805462e+115 -1.1606187e+116 -1.8139199e+114 -1.01776e+114 -4.2637162e+117 -3.6413144e+117 -2.0744313e+113 -3.9633689e+117 -1.3115748e+115 -3.6449216e+117 -1.0858494e+116 -2.6189268e+117 -3.5538258e+117 -3.2459817e+117 -1.7525139e+117 -4.829438e+114 -2.8465295e+117 -2.2093206e+117 -2.0919043e+117 -2.3706642e+117 -2.724274e+117 -3.0225794e+117 -3.4294308e+117 -3.891174e+116 -5.6084664e+114 -3.479652e+115 -2.5072297e+115 -1.837233e+115 -2.6277057e+114 -1.2010356e+114 -2.8234974e+114 -1.1369536e+117 -1.8078844e+115 -3.7154161e+114 -1.1767584e+115 -1.3981942e+117 -1.4940416e+115 -7.6781923e+114 -1.4214309e+113 -1.4449884e+115 -2.120842e+117 -1.1968871e+115 -2.4638752e+117 -2.5982341e+115 -1.618273e+117 -2.3024656e+117 -2.1161909e+117 -2.3140522e+115 -2.0488958e+117 -2.1866348e+115 -2.0547858e+115 -1.0589935e+115 -1.3835436e+117 -1.7671489e+117 -2.4434276e+117 -2.448984e+117 -2.641512e+114 -5.1250157e+115 -1.3250713e+117 -1.8559907e+117 -1.8622951e+117 -2.7668096e+114 -1.3884613e+117 -2.9161405e+117 -3.0509105e+117 -2.7661543e+117 -2.8184921e+117 -3.3181742e+117 -2.6298184e+117 -2.6083444e+117 -2.4690635e+117 -2.5428158e+117 -2.3455195e+117 -1.7246812e+117 -2.2356201e+117 -2.3257911e+117 -2.5113759e+117 -2.2629217e+117 -2.3385557e+117 -1.9971133e+117 -2.2109073e+117 -1.8032027e+117 -1.724674e+115 -1.8634775e+115 -2.0984495e+117 -1.6701451e+117 -1.1752037e+117 -9.170154e+114 -6.458705e+117 -1.4203853e+114 -6.4942602e+117 -1.9649043e+115 -7.7332123e+117 -6.4095101e+117 -9.1250614e+117 -5.2646853e+113 -5.7554453e+117 -7.1353835e+117 -4.739847e+113 -6.0063289e+117 -1.0712338e+116 -5.6165147e+117 -1.0174039e+115 -1.4480096e+115 -2.1427701e+115 -4.5003686e+117 -1.2468324e+115 -9.1762693e+117 -5.8092196e+117 -5.4843019e+117 -5.2444277e+117 9.0703765e+113 -1.8501595e+115 -4.4245521e+116 -4.5287045e+117 -1.4481564e+116 -4.9831762e+117 -3.1991072e+117 -4.1774665e+117 -6.3865541e+117 -5.6184728e+117 -6.0039398e+117 -6.7211111e+117 -6.2563815e+117 -4.9073943e+117 -1.3728866e+114 -9.8652215e+114 -1.1296675e+115 -6.4568802e+115 -7.5590397e+117 -5.2512681e+114 -5.0951738e+114 -1.8418064e+115 -4.050494e+114 -1.2211132e+117 -5.3686929e+117 -3.3148785e+117 -3.1730043e+117 -2.5160921e+115 -2.1857136e+113 -4.701683e+113 -1.1652491e+115 -3.063734e+117 -2.8236227e+117 -2.5527086e+116 -5.7790151e+117 -5.8091449e+117 -5.8714135e+117 -7.4777746e+117 -7.2609809e+117 -6.8816033e+117 -6.4028482e+117 -6.3506787e+117 -6.2780486e+117 -1.0839808e+118 -1.0091582e+118 -8.5522717e+117 -6.963703e+117 -6.9797866e+117 -7.0254571e+117 -6.6873967e+117 -6.6654004e+117 -6.6367876e+117 -6.0895294e+117 -6.0176404e+117 -6.0836639e+117 -5.1927209e+116 -6.3813398e+117 -7.2155137e+117 -3.1254044e+117 -3.0279589e+117 -1.8246894e+115 -3.357573e+117 -3.1723336e+117 -1.1371491e+116 -4.8422299e+114 -6.2985646e+116 -4.3370676e+117 -1.9388531e+117 -2.3509597e+115 -5.9383706e+117 -1.985234e+115 -3.1259051e+115 -6.1765928e+117 1.2527161e+117 1.5125785e+117 -7.6674178e+113 -1.1863515e+117 -1.0048382e+117 -1.8521517e+115 -1.2454506e+115 -3.4555337e+115 -5.3678938e+117 -3.4858368e+117 -3.3880036e+117 -3.2363717e+117 -2.9515952e+117 -2.8805175e+117 -2.7549443e+117 -1.2251018e+117 -1.1617069e+117 -9.6671493e+116 -1.4773698e+117 -1.4285743e+117 -1.2471572e+117 -1.4707332e+117 -1.4905037e+117 -1.4762861e+117 -1.5148596e+117 -1.4397502e+117 -1.2497202e+117 -2.7237434e+117 -2.6237622e+117 -2.5482781e+117 -3.3171269e+117 -3.3290345e+117 -3.3435301e+117 -1.3101218e+116 -9.225626e+116 -7.9774092e+117 -6.6728651e+114 -7.72652e+116 -1.4848609e+114 -7.506681e+117 -7.479074e+117 -7.3592189e+117 -6.8588521e+117 -6.814587e+117 -6.7311084e+117 -5.1959203e+115 -2.2095934e+116 -6.5161872e+117 -1.7413588e+116 -3.3044401e+117 -7.0141874e+117 -6.8605986e+117 -6.8764571e+117 -6.9997274e+117 -6.1761339e+117 -6.1803753e+117 -6.1653199e+117 -6.1643279e+117 -6.1552302e+117 -6.031977e+117 -5.2944999e+117 -5.1235857e+117 -1.0431121e+114 -6.1195536e+117 -6.10188e+117 -5.9366871e+117 -3.0861557e+117 -9.2695187e+115 -6.6079684e+117 -2.5529746e+117 -2.390303e+117 -2.8558452e+114 -4.0026155e+115 -4.3278658e+116 -6.6180801e+117 -2.8478882e+116 -5.3555288e+117 -6.0081397e+117 -5.8176735e+117 -5.8306565e+117 -5.9210512e+117 -6.8442349e+117 -6.8533104e+117 -4.7432996e+117 -4.7617498e+117 -4.7990519e+117 -4.8942514e+117 -7.7539835e+116 -2.7375409e+117 -5.4091877e+117 -2.1940317e+117 -7.0094363e+116 -6.3093915e+117 -7.4172045e+117 -7.4614311e+117 -8.3372027e+117 -7.0708019e+117 -7.0568884e+117 -6.6757723e+117 -5.4232148e+117 -5.0639998e+117 -1.1484704e+115 -1.0032989e+117 -8.7235309e+114 -1.6423281e+114 -2.197059e+115 -1.0444338e+117 -8.4849049e+114 -3.3435263e+114 -1.9395858e+114 -3.2294767e+114 -2.1010641e+115 -1.4168837e+115 -3.9987245e+115 -1.908951e+117 -1.9439445e+117 -1.9964701e+117 -2.2599452e+117 -2.2820033e+117 -2.304192e+117 -2.2619435e+117 -2.2592199e+117 -2.2607883e+117 -2.0129015e+117 -2.0073696e+117 -2.0222976e+117 -6.4447064e+117 -6.4417782e+117 -6.5759396e+117 -4.9623537e+114 -3.9193246e+114 -4.3932661e+115 -1.6605527e+117 -2.3512637e+117 -8.4025484e+117 -6.5003209e+117 -6.5070624e+117 -6.7495576e+117 -6.2923472e+117 -6.2947574e+117 -6.2129064e+117 -5.9237584e+117 -5.911718e+117 -5.8572997e+117 -2.1789178e+116 -3.7424586e+117 -5.6978783e+117 -6.187678e+117 -6.4663763e+117 -6.5232634e+117 -1.4475591e+118 -1.3521069e+118 -8.3015467e+117 -8.0168234e+117 -7.9032505e+117 -7.2544557e+117 -6.7839388e+117 -6.7584989e+117 -6.6386536e+117 -6.698726e+117 -6.7199422e+117 -6.8023526e+117 -7.3509169e+117 -7.4263441e+117 -8.0414888e+117 -1.3058316e+118 -1.1760007e+118 -8.3930118e+117 -2.8030373e+116 -6.0617382e+117 -6.682469e+117 -8.3250561e+117 -8.1283694e+117 -7.3005479e+117 -6.0488683e+117 -6.0736329e+117 -6.0958329e+117 -6.3357573e+117 -6.3276394e+117 -6.2268185e+117 -5.4572967e+117 -5.5134646e+117 -5.6122176e+117 -5.5931715e+117 -5.5790509e+117 -5.5652085e+117 -3.438354e+117 -3.0371638e+117 -8.7593887e+115 -4.9502531e+117 -5.0333395e+117 -5.2290923e+117 -1.5324608e+115 -3.3606705e+115 -8.2560435e+115 -5.6793061e+117 -5.8725709e+117 -7.6728426e+117 -1.4499198e+116 -9.0777008e+116 -8.2478464e+117 -5.7812091e+117 -5.8291983e+117 -6.2580831e+117 -6.1495447e+117 -6.0720323e+117 -5.8191316e+117 -1.6201854e+114 -2.1165869e+114 -2.858425e+115 -1.0499313e+117 -3.3331626e+115 -4.4509406e+117 -3.8732824e+117 -3.608381e+117 -4.0810725e+114 -5.4909901e+115 -9.0842754e+116 -6.3817039e+114 -4.5524343e+117 -4.5719386e+117 -4.5694071e+117 -5.6619916e+117 -5.7007795e+117 -5.4762384e+117 -4.9161081e+117 -4.937909e+117 -5.1966097e+117 -5.1405228e+117 -5.1271656e+117 -5.1803564e+117 -1.3036083e+117 -3.0959212e+117 -4.5532667e+117 -1.8027374e+117 -1.6157739e+117 -6.3889815e+114 -1.6227092e+117 -1.4164213e+117 -4.534154e+114 -5.1809612e+114 -8.2587051e+114 -5.4227408e+115 -1.2741017e+117 -3.3894642e+114 -4.0526285e+115 -2.9782298e+117 -3.030271e+117 -3.1480877e+117 -1.158928e+116 -8.8763796e+116 -9.2505152e+116 -2.7983286e+115 -4.5735656e+115 -8.3290098e+115 -1.2354022e+117 -1.1285696e+117 -6.5533345e+115 -6.9805402e+116 -6.3947334e+115 -6.1897703e+115 -6.3891612e+112 -2.7052345e+113 -3.7529273e+114 -1.0005261e+116 -2.7564973e+117 -6.6141446e+117 -6.6809941e+117 -6.6811857e+117 -6.7332249e+117 -6.7665816e+117 -6.863728e+117 -6.7123211e+117 -5.3187323e+117 -5.3093351e+117 -5.1773621e+117 -2.3547845e+116 -1.0057065e+117 -6.7667074e+117 -6.0882274e+117 -6.1934947e+117 -6.408721e+117 -6.1565108e+117 -6.1678665e+117 -6.2031467e+117 -6.1314449e+117 -6.1307982e+117 -6.1317004e+117 -6.2491584e+117 -6.2230684e+117 -6.1861624e+117 -4.2449752e+115 -1.0561803e+117 -3.2253571e+115 -1.0262799e+118 -1.0021586e+118 -5.6257705e+117 -3.1973343e+117 -3.0864879e+117 -1.4237065e+117 -3.5321541e+117 -3.4623203e+117 -1.1423303e+115 -4.799214e+117 -4.8004027e+117 -4.7693802e+117 -1.1352364e+116 -2.2746998e+117 -4.7425803e+117 -1.3610925e+115 -6.0110206e+116 -2.677076e+115 -4.5613784e+117 -4.6365202e+117 -4.7334115e+117 -4.9449298e+117 -5.0293041e+117 -5.3312677e+117 -4.878755e+117 -4.9222087e+117 -4.7826323e+117 -4.4248243e+117 -4.4052067e+117 -4.1468583e+117 -2.2036609e+117 -2.1628336e+117 -2.0320133e+117 -7.8766325e+117 -8.1446675e+117 -8.8848128e+117 -7.7805242e+117 -8.0069863e+117 -8.5957996e+117 -7.4977839e+117 -7.6188027e+117 -7.9317372e+117 -1.7267646e+115 -1.6950818e+115 -1.6368911e+115 -2.8944827e+115 -2.6142938e+115 -2.6641138e+115 -5.5103074e+115 -4.312453e+115 -4.503356e+115 ) ; } outlet { type freestreamPressure; freestreamValue nonuniform 0(); supersonic 0; value nonuniform 0(); } solidWall { type zeroGradient; } procBoundary0to1 { type processor; value nonuniform List<scalar> 449 ( -4.9381789e+117 -4.5727189e+117 -4.8670429e+117 -5.0607469e+117 -5.0670664e+117 -5.0732136e+117 -4.2998508e+117 -4.5269434e+117 -4.6931842e+117 -4.8804345e+117 -5.0670664e+117 -5.0683139e+117 -5.0742586e+117 -4.2998508e+117 -4.3844152e+117 -4.3855265e+117 -4.5418751e+117 -4.7045196e+117 -4.8819672e+117 -5.0683139e+117 -5.0684922e+117 -5.0743949e+117 -4.2707317e+117 -4.0660557e+117 -4.2528435e+117 -4.3844152e+117 -4.3912789e+117 -4.3920839e+117 -4.5432957e+117 -4.7067577e+117 -4.8821608e+117 -5.0684922e+117 -4.2707317e+117 -4.0593151e+117 -3.8465899e+117 -4.0164464e+117 -4.1350173e+117 -4.2606564e+117 -4.3912789e+117 -4.3919242e+117 -4.392687e+117 -4.5433955e+117 -4.7069514e+117 -4.2594202e+117 -4.0593151e+117 -3.8465899e+117 -3.9084691e+117 -3.9075931e+117 -4.0208793e+117 -4.1378563e+117 -4.2611381e+117 -4.3919242e+117 -4.3919873e+117 -4.3927478e+117 -4.2631736e+117 -4.0549187e+117 -3.8441013e+117 -3.6330953e+117 -3.7947276e+117 -3.9084691e+117 -3.9088997e+117 -3.9081527e+117 -4.0211923e+117 -4.1383491e+117 -4.2611827e+117 -4.3919873e+117 -4.3349467e+117 -4.0537629e+117 -4.2170233e+117 -3.8430405e+117 -3.6321735e+117 -3.6330953e+117 -3.6929656e+117 -3.6900759e+117 -3.7974241e+117 -3.9088997e+117 -3.9090837e+117 -3.9083625e+117 -4.0212091e+117 -4.1383786e+117 -4.340972e+117 -3.8428662e+117 -4.003944e+117 -4.1120535e+117 -4.2221043e+117 -3.6324517e+117 -3.6321735e+117 -3.4213267e+117 -3.5818073e+117 -3.6929656e+117 -3.6926818e+117 -3.6897016e+117 -3.7975831e+117 -3.9090837e+117 -3.9090935e+117 -3.9083725e+117 -3.6333621e+117 -4.3418445e+117 -3.9009643e+117 -3.7920434e+117 -4.0065778e+117 -4.1122615e+117 -4.2222443e+117 -3.6324517e+117 -3.4204625e+117 -3.4213267e+117 -3.4820212e+117 -3.4786089e+117 -3.5842425e+117 -3.6926818e+117 -3.6927633e+117 -3.6898078e+117 -3.797593e+117 -3.9090935e+117 -3.6333621e+117 -3.6924096e+117 -3.690289e+117 -4.341887e+117 -3.9005781e+117 -3.7944171e+117 -4.0065714e+117 -4.1122659e+117 -4.2222555e+117 -3.4210662e+117 -3.4204625e+117 -3.2032612e+117 -3.4820212e+117 -3.3705479e+117 -3.4819567e+117 -3.4785767e+117 -3.5843631e+117 -3.6927633e+117 -3.6927677e+117 -3.6898146e+117 -3.422385e+117 -3.5824872e+117 -3.6924096e+117 -3.6920412e+117 -3.6901835e+117 -3.9006285e+117 -3.7945331e+117 -4.0065719e+117 -4.1122669e+117 -3.4210662e+117 -3.2024974e+117 -2.9902559e+117 -3.1522436e+117 -3.2640728e+117 -3.4819567e+117 -3.373252e+117 -3.4820869e+117 -3.4786874e+117 -3.5843709e+117 -3.6927677e+117 -3.422385e+117 -3.4819663e+117 -3.4797805e+117 -3.5848278e+117 -3.6920412e+117 -3.6921362e+117 -3.6902313e+117 -3.900631e+117 -3.7945401e+117 -3.2032838e+117 -2.9895373e+117 -2.9958378e+117 -3.0508852e+117 -3.0482391e+117 -3.1547456e+117 -3.2639986e+117 -3.4820869e+117 -3.3734068e+117 -3.4820924e+117 -3.4786937e+117 -3.2106289e+117 -3.3704664e+117 -3.4819663e+117 -3.4814956e+117 -3.4795344e+117 -3.5849327e+117 -3.6921362e+117 -3.692142e+117 -3.6902337e+117 -3.2106289e+117 -2.9904109e+117 -2.9949458e+117 -2.9958378e+117 -3.0561836e+117 -3.0539192e+117 -3.0506368e+117 -3.048036e+117 -3.1548681e+117 -3.2640961e+117 -3.4820924e+117 -3.3734159e+117 -3.2106289e+117 -3.2705733e+117 -3.2676413e+117 -3.3726278e+117 -3.4814956e+117 -3.4815803e+117 -3.4796368e+117 -3.5849392e+117 -3.692142e+117 -2.9956454e+117 -2.9949458e+117 -2.7834821e+117 -2.9443694e+117 -3.0561836e+117 -3.0559231e+117 -3.0537489e+117 -3.0507481e+117 -3.0481881e+117 -3.1548755e+117 -3.2641016e+117 -2.9978877e+117 -3.1601904e+117 -3.2705733e+117 -3.2702946e+117 -3.26739e+117 -3.3727252e+117 -3.4815803e+117 -3.4815849e+117 -3.4796408e+117 -2.9956454e+117 -2.7819416e+117 -2.7883065e+117 -2.8432345e+117 -2.84039e+117 -2.9467548e+117 -3.0559231e+117 -3.0560458e+117 -3.0539139e+117 -3.0507534e+117 -3.0481949e+117 -2.9978877e+117 -3.0561116e+117 -3.0588326e+117 -3.1628461e+117 -3.2702946e+117 -3.2703742e+117 -3.267506e+117 -3.3727311e+117 -3.4815849e+117 -2.7825381e+117 -2.7868918e+117 -2.7883065e+117 -2.847647e+117 -2.8449835e+117 -2.8431596e+117 -2.8402295e+117 -2.9469061e+117 -3.0560458e+117 -3.0560518e+117 -3.0539212e+117 -2.7852198e+117 -3.0588326e+117 -2.9477574e+117 -3.0561847e+117 -3.0588088e+117 -3.1629275e+117 -3.2703742e+117 -3.2703781e+117 -3.2675119e+117 -2.7874797e+117 -2.7868918e+117 -2.5776041e+117 -2.7378744e+117 -2.847647e+117 -2.8473622e+117 -2.8446279e+117 -2.8432905e+117 -2.8403955e+117 -2.9469149e+117 -3.0560518e+117 -2.7901449e+117 -2.8462088e+117 -2.8438896e+117 -3.0588088e+117 -2.9506818e+117 -3.0563444e+117 -3.0589382e+117 -3.1629315e+117 -3.2703781e+117 -2.7874797e+117 -2.5756622e+117 -2.5776041e+117 -2.637178e+117 -2.6357377e+117 -2.7404463e+117 -2.8473622e+117 -2.8475273e+117 -2.8447944e+117 -2.8432983e+117 -2.8404063e+117 -2.7901449e+117 -2.8486081e+117 -2.8516586e+117 -2.8466307e+117 -2.8443019e+117 -3.0589382e+117 -2.9508394e+117 -3.0563531e+117 -3.0589454e+117 -2.5760823e+117 -2.5756622e+117 -2.368327e+117 -2.5284447e+117 -2.637178e+117 -2.6375481e+117 -2.636411e+117 -2.7406786e+117 -2.8475273e+117 -2.847539e+117 -2.8448061e+117 -2.5784304e+117 -2.8516586e+117 -2.7412267e+117 -2.8490342e+117 -2.8523468e+117 -2.8467981e+117 -2.8445196e+117 -3.0589454e+117 -2.9508487e+117 -2.5760823e+117 -2.3671426e+117 -2.4261116e+117 -2.4260223e+117 -2.4270445e+117 -2.4246981e+117 -2.531568e+117 -2.6375481e+117 -2.637727e+117 -2.6366094e+117 -2.7406958e+117 -2.847539e+117 -2.5823008e+117 -2.6362106e+117 -2.6387964e+117 -2.8523468e+117 -2.7445356e+117 -2.849295e+117 -2.852555e+117 -2.8468093e+117 -2.8445323e+117 -2.5823008e+117 -2.3679926e+117 -2.4251537e+117 -2.4257427e+117 -2.4262817e+117 -2.4267175e+117 -2.4291254e+117 -2.4280757e+117 -2.4246297e+117 -2.5317102e+117 -2.637727e+117 -2.6377409e+117 -2.6366246e+117 -2.6399338e+117 -2.639266e+117 -2.6396044e+117 -2.6391893e+117 -2.6365219e+117 -2.6393216e+117 -2.852555e+117 -2.7447591e+117 -2.8493145e+117 -2.8525727e+117 -2.6399338e+117 -2.4269984e+117 -2.5310645e+117 -2.4270787e+117 -2.4252857e+117 -2.4261259e+117 -2.426519e+117 -2.4288248e+117 -2.4268918e+117 -2.4291014e+117 -2.4282879e+117 -2.4248323e+117 -2.5317206e+117 -2.6377409e+117 -2.6396056e+117 -2.6396681e+117 -2.6405744e+117 -2.6393816e+117 -2.6395171e+117 -2.6367964e+117 -2.6395736e+117 -2.8525727e+117 -2.7447771e+117 -2.6396056e+117 -2.4278381e+117 -2.5336881e+117 -2.4275435e+117 -2.4254454e+117 -2.4262686e+117 -2.4265369e+117 -2.4296151e+117 -2.42894e+117 -2.426908e+117 -2.4292231e+117 -2.4283026e+117 -2.4248494e+117 -2.6397639e+117 -2.6397788e+117 -2.6397182e+117 -2.6395836e+117 -2.639535e+117 -2.6395294e+117 -2.6396489e+117 -2.6368203e+117 -2.6395952e+117 -2.6397639e+117 -2.4279665e+117 -2.5338235e+117 -2.4277423e+117 -2.4254547e+117 -2.4262747e+117 -2.4297098e+117 -2.4296874e+117 -2.4289485e+117 -2.4292311e+117 -2.6397758e+117 -2.6397822e+117 -2.6397941e+117 -2.6398627e+117 -2.639644e+117 -2.6395812e+117 -2.6395389e+117 -2.6396585e+117 -2.6397758e+117 -2.4279715e+117 -2.5338373e+117 -2.4277567e+117 -2.4297165e+117 -2.4298078e+117 -2.4296928e+117 -2.6397971e+117 -2.6398818e+117 -2.6398738e+117 -2.6396554e+117 -2.6395839e+117 -2.4298196e+117 -2.4298189e+117 -2.6398828e+117 -2.6398851e+117 -2.4298322e+117 -2.6398859e+117 ) ; } procBoundary0to2 { type processor; value nonuniform List<scalar> 52 ( -6.4347911e+117 -6.0258194e+117 -6.4347911e+117 -6.480551e+117 -6.4347911e+117 -5.6153374e+117 -5.8239809e+117 -6.2047519e+117 -6.1713869e+117 -5.9981914e+117 -5.9668832e+117 -6.480551e+117 -6.1713869e+117 -5.8013118e+117 -5.5756506e+117 -5.5962256e+117 -5.7739391e+117 -5.4126007e+117 -5.1876818e+117 -5.1999517e+117 -6.2956051e+117 -6.335483e+117 -5.3983053e+117 -5.1781413e+117 -4.7482563e+117 -4.977805e+117 -6.0647296e+117 -6.0988942e+117 -4.74388e+117 -4.7454267e+117 -4.9722198e+117 -6.0647296e+117 -6.0988942e+117 -4.4823007e+117 -5.8637888e+117 -5.8926584e+117 -5.6939586e+117 -4.4823007e+117 -5.650874e+117 -5.6731064e+117 -4.4560521e+117 -4.4560521e+117 -5.4223212e+117 -5.4384892e+117 -4.680448e+117 -4.6822066e+117 -4.9608365e+117 -4.9530505e+117 -5.1852388e+117 -5.1970653e+117 -4.9608365e+117 -4.9530505e+117 ) ; } procBoundary0to3 { type processor; value nonuniform List<scalar> 1277 ( -6.4011856e+117 -6.4011856e+117 -6.1866558e+117 -6.2322828e+117 -5.9024388e+117 -5.9368103e+117 -6.4011856e+117 -6.4011856e+117 -6.1866558e+117 -5.9024388e+117 -6.1866558e+117 -6.2322828e+117 -5.9368103e+117 -5.5553383e+117 -5.7207494e+117 -5.5319417e+117 -5.7491582e+117 -5.3832225e+117 -5.170006e+117 -5.9024388e+117 -6.2579747e+117 -6.2107962e+117 -6.2107962e+117 -6.2219735e+117 -6.0937364e+117 -6.0276448e+117 -5.7207494e+117 -5.3680424e+117 -5.3504942e+117 -5.1498031e+117 -5.1602807e+117 -5.5319417e+117 -4.9682103e+117 -5.9154497e+117 -5.9857872e+117 -6.0283556e+117 -6.1069126e+117 -6.0716484e+117 -6.1269676e+117 -6.1229596e+117 -6.0452298e+117 -5.9995284e+117 -5.8152247e+117 -5.7127513e+117 -4.9636142e+117 -4.9588589e+117 -4.7440416e+117 -4.7435995e+117 -5.3504942e+117 -5.1498031e+117 -5.6278419e+117 -5.5413075e+117 -5.9329226e+117 -5.9857872e+117 -5.9857872e+117 -6.0283556e+117 -6.0167405e+117 -5.9778041e+117 -6.0586205e+117 -6.0743392e+117 -6.0780221e+117 -6.0675456e+117 -6.0171302e+117 -5.9869364e+117 -5.3564877e+117 -5.4463289e+117 -5.1540155e+117 -5.2644701e+117 -5.4463289e+117 -5.547065e+117 -5.58441e+117 -5.6209442e+117 -5.8723306e+117 -5.8103962e+117 -5.7599779e+117 -5.7120643e+117 -4.9588589e+117 -4.7440416e+117 -4.4883745e+117 -5.6706471e+117 -5.9460915e+117 -5.7514638e+117 -5.7950248e+117 -5.8320923e+117 -5.8332141e+117 -5.8639203e+117 -5.8995768e+117 -6.0164546e+117 -6.0365281e+117 -6.0494025e+117 -6.0530602e+117 -6.0481863e+117 -6.0349637e+117 -5.9943706e+117 -5.9783402e+117 -4.4883745e+117 -4.4883745e+117 -5.0360783e+117 -4.8866785e+117 -4.8801871e+117 -4.6961609e+117 -5.3564877e+117 -5.3871335e+117 -5.4463289e+117 -5.2644701e+117 -5.3037978e+117 -5.3480302e+117 -5.1540155e+117 -5.1890952e+117 -5.2549023e+117 -5.58441e+117 -5.547065e+117 -5.5012529e+117 -5.5614942e+117 -5.5438096e+117 -5.6209442e+117 -5.6209442e+117 -5.6634452e+117 -5.684462e+117 -5.7053056e+117 -5.7276387e+117 -5.8699701e+117 -5.9083851e+117 -5.8072386e+117 -5.8376917e+117 -5.7547488e+117 -5.7807233e+117 -5.953979e+117 -5.7514638e+117 -5.7514638e+117 -5.5953869e+117 -5.6256122e+117 -5.8332141e+117 -5.8332141e+117 -5.8995768e+117 -5.7799258e+117 -5.8995768e+117 -5.9588914e+117 -5.9914876e+117 -5.9828535e+117 -5.9930127e+117 -6.0012822e+117 -6.0309916e+117 -6.03722e+117 -6.0387978e+117 -6.037132e+117 -6.0333832e+117 -6.024877e+117 -6.0088357e+117 -4.4629109e+117 -4.4629109e+117 -4.4629109e+117 -5.964412e+117 -4.6961609e+117 -4.6961609e+117 -4.8801871e+117 -5.0360783e+117 -4.8801871e+117 -5.108299e+117 -5.001203e+117 -5.429837e+117 -5.3871335e+117 -5.3871335e+117 -5.4641073e+117 -5.5012529e+117 -5.3037978e+117 -5.3453705e+117 -5.3480302e+117 -5.1890952e+117 -5.2291665e+117 -5.2704326e+117 -5.2549023e+117 -5.3240257e+117 -5.2991404e+117 -5.5614942e+117 -5.5832317e+117 -5.6012748e+117 -5.5614942e+117 -5.5614942e+117 -5.5614942e+117 -5.5438096e+117 -5.5232112e+117 -5.6193352e+117 -5.6382653e+117 -5.6193352e+117 -5.6193352e+117 -5.6382653e+117 -5.6382653e+117 -5.6382653e+117 -5.6634452e+117 -5.6677244e+117 -5.6577513e+117 -5.684462e+117 -5.688501e+117 -5.677906e+117 -5.7053056e+117 -5.7276387e+117 -5.7276387e+117 -5.8684277e+117 -5.8883733e+117 -5.9086028e+117 -5.9317105e+117 -5.8038299e+117 -5.8188141e+117 -5.8339094e+117 -5.8511814e+117 -5.7510638e+117 -5.7635866e+117 -5.7762738e+117 -5.7901445e+117 -5.5604674e+117 -5.7408173e+117 -5.5604674e+117 -5.3814245e+117 -5.4035401e+117 -5.7799258e+117 -5.7799258e+117 -5.895945e+117 -5.8372971e+117 -5.895945e+117 -5.9588914e+117 -5.9828535e+117 -5.9930127e+117 -5.9991438e+117 -6.0072249e+117 -6.0280374e+117 -6.0299233e+117 -6.0314429e+117 -6.0298532e+117 -6.0187565e+117 -5.9942093e+117 -4.6817823e+117 -4.6836518e+117 -4.6779647e+117 -4.6905099e+117 -5.9652995e+117 -5.9370087e+117 -4.6779647e+117 -4.8630712e+117 -5.108299e+117 -5.104767e+117 -5.1771616e+117 -5.001203e+117 -4.8630712e+117 -5.0078621e+117 -5.4618304e+117 -5.4478814e+117 -5.4125233e+117 -5.4265336e+117 -5.4265336e+117 -5.4311308e+117 -5.4579023e+117 -5.4265336e+117 -5.4763238e+117 -5.4913343e+117 -5.5069205e+117 -5.5232112e+117 -5.3652988e+117 -5.3453705e+117 -5.3453705e+117 -5.3812782e+117 -5.3971466e+117 -5.2291665e+117 -5.2704326e+117 -5.2991404e+117 -5.3240257e+117 -5.5830239e+117 -5.5912931e+117 -5.5999857e+117 -5.6087005e+117 -5.560193e+117 -5.5627049e+117 -5.560193e+117 -5.5744405e+117 -5.5479834e+117 -5.5284827e+117 -5.6087005e+117 -5.6204698e+117 -5.629405e+117 -5.6385899e+117 -5.6480736e+117 -5.6577513e+117 -5.6677244e+117 -5.688501e+117 -5.688501e+117 -5.677906e+117 -5.7123037e+117 -5.7015361e+117 -5.7346836e+117 -5.723111e+117 -5.7346836e+117 -5.737395e+117 -5.8715926e+117 -5.891715e+117 -5.9134223e+117 -5.8053055e+117 -5.8201669e+117 -5.8360646e+117 -5.8530833e+117 -5.7520347e+117 -5.7644748e+117 -5.777481e+117 -5.7909979e+117 -4.939423e+117 -4.9460518e+117 -5.3560985e+117 -5.5558784e+117 -5.6526324e+117 -5.3560985e+117 -5.159021e+117 -5.1726953e+117 -5.6959947e+117 -5.7747342e+117 -5.7747342e+117 -5.8372971e+117 -5.8242087e+117 -5.8970011e+117 -5.8667842e+117 -5.8567793e+117 -5.9207889e+117 -5.9207889e+117 -5.9299906e+117 -5.9594225e+117 -5.9318014e+117 -5.9693292e+117 -5.9409633e+117 -5.9991438e+117 -6.0043268e+117 -6.0084421e+117 -6.0122843e+117 -6.0159041e+117 -6.0193137e+117 -6.0273644e+117 -6.030066e+117 -6.0286266e+117 -6.0175361e+117 -5.990877e+117 -4.6905099e+117 -4.6905099e+117 -5.9379286e+117 -5.9628561e+117 -4.8524061e+117 -4.8543719e+117 -5.0078621e+117 -5.104767e+117 -5.0078621e+117 -5.1771616e+117 -5.0078621e+117 -5.4737422e+117 -5.4318703e+117 -5.4579023e+117 -5.4579023e+117 -5.4318703e+117 -5.4469853e+117 -5.4864701e+117 -5.4999475e+117 -5.5140886e+117 -5.5284827e+117 -5.3959121e+117 -5.3807899e+117 -5.3807899e+117 -5.3807899e+117 -5.4081055e+117 -5.4200692e+117 -5.2732781e+117 -5.3185808e+117 -5.3457627e+117 -5.3649912e+117 -5.5853853e+117 -5.5936454e+117 -5.6019861e+117 -5.610411e+117 -5.5617312e+117 -5.5641707e+117 -5.5617312e+117 -5.5766162e+117 -5.5446881e+117 -5.5355032e+117 -5.5329201e+117 -5.5518716e+117 -5.610411e+117 -5.610411e+117 -5.6219728e+117 -5.630784e+117 -5.6398992e+117 -5.6491975e+117 -5.6588423e+117 -5.6686379e+117 -5.689125e+117 -5.689125e+117 -5.6787877e+117 -5.7129378e+117 -5.7022876e+117 -5.7351547e+117 -5.7238762e+117 -5.7351547e+117 -5.7377504e+117 -5.8720936e+117 -5.8924636e+117 -5.9143323e+117 -5.8054902e+117 -5.8203599e+117 -5.8364444e+117 -5.8534202e+117 -5.7520076e+117 -5.7645904e+117 -5.7775821e+117 -5.7910834e+117 -4.9339518e+117 -4.9460518e+117 -4.939423e+117 -5.144161e+117 -5.4579083e+117 -5.3482044e+117 -5.610131e+117 -5.144161e+117 -5.610131e+117 -5.610131e+117 -5.6958127e+117 -5.7357836e+117 -5.792558e+117 -5.7715703e+117 -5.6958127e+117 -5.6958127e+117 -5.792558e+117 -5.8567793e+117 -5.8242087e+117 -5.8242087e+117 -5.8765015e+117 -5.9095464e+117 -5.896698e+117 -5.8813944e+117 -5.8716653e+117 -5.8665987e+117 -5.9318014e+117 -5.9397607e+117 -5.9445975e+117 -5.9489879e+117 -5.9683572e+117 -5.9532239e+117 -5.9795973e+117 -5.9839333e+117 -6.0043268e+117 -5.9955512e+117 -6.0084421e+117 -6.0043268e+117 -6.0122843e+117 -6.0193137e+117 -6.0197054e+117 -6.0265387e+117 -6.0292242e+117 -6.0281635e+117 -6.0171584e+117 -5.9911581e+117 -4.8724694e+117 -4.8635434e+117 -5.9372523e+117 -5.961064e+117 -4.9933211e+117 -4.9972349e+117 -4.9973156e+117 -5.0054435e+117 -5.120577e+117 -5.1270146e+117 -5.2065868e+117 -5.2096803e+117 -5.2557792e+117 -5.2022166e+117 -5.4812064e+117 -5.4756072e+117 -5.438592e+117 -5.4433547e+117 -5.4611558e+117 -5.4659141e+117 -5.4659141e+117 -5.468324e+117 -5.4433547e+117 -5.4456788e+117 -5.4520999e+117 -5.4565816e+117 -5.4869106e+117 -5.4930847e+117 -5.4993174e+117 -5.5059819e+117 -5.5125347e+117 -5.5194191e+117 -5.526052e+117 -5.5329201e+117 -5.4142729e+117 -5.4094833e+117 -5.3975882e+117 -5.3975882e+117 -5.4032681e+117 -5.4032681e+117 -5.4189931e+117 -5.4239139e+117 -5.4287739e+117 -5.4337579e+117 -5.322244e+117 -5.2913898e+117 -5.2557792e+117 -5.3612488e+117 -5.3450672e+117 -5.3705047e+117 -5.3787552e+117 -5.3855751e+117 -5.3920384e+117 -5.586573e+117 -5.5945203e+117 -5.6026079e+117 -5.5599985e+117 -5.5599985e+117 -5.5785081e+117 -5.5688603e+117 -5.5448049e+117 -5.5354617e+117 -5.5421144e+117 -5.5329923e+117 -5.5516044e+117 -5.6136997e+117 -5.6026079e+117 -5.6222937e+117 -5.631064e+117 -5.6400991e+117 -5.6493647e+117 -5.6589455e+117 -5.668745e+117 -5.6891584e+117 -5.6891584e+117 -5.6788395e+117 -5.7129421e+117 -5.7022697e+117 -5.7350196e+117 -5.7238236e+117 -5.7350196e+117 -5.7375788e+117 -5.8720868e+117 -5.8924008e+117 -5.9140883e+117 -5.8055567e+117 -5.8203827e+117 -5.8365367e+117 -5.8534202e+117 -5.7520085e+117 -5.7646536e+117 -5.7776338e+117 -5.7911149e+117 -4.9339518e+117 -4.9339518e+117 -5.1215797e+117 -5.2405869e+117 -5.5159739e+117 -5.4107244e+117 -5.5159739e+117 -5.6379481e+117 -5.6776762e+117 -5.7131809e+117 -5.7520466e+117 -5.7316502e+117 -5.7893348e+117 -5.801989e+117 -5.7780171e+117 -5.7677234e+117 -5.7044119e+117 -5.7131809e+117 -5.7044119e+117 -5.801989e+117 -5.8072693e+117 -5.8665987e+117 -5.8548296e+117 -5.8228818e+117 -5.8210186e+117 -5.8338728e+117 -5.8389671e+117 -5.8338728e+117 -5.879252e+117 -5.9153665e+117 -5.9013438e+117 -5.8840496e+117 -5.8743948e+117 -5.8695981e+117 -5.9284868e+117 -5.9397607e+117 -5.9397607e+117 -5.9445975e+117 -5.9489879e+117 -5.9532239e+117 -5.9723816e+117 -5.9878314e+117 -5.9958565e+117 -5.9958565e+117 -5.9998934e+117 -6.0037467e+117 -6.0141049e+117 -6.0197054e+117 -6.0189352e+117 -6.0262598e+117 -6.028826e+117 -5.0075867e+117 -5.0191169e+117 -5.9369569e+117 -5.0904326e+117 -5.1119884e+117 -5.1032008e+117 -5.1103411e+117 -5.1148063e+117 -5.1270146e+117 -5.2096803e+117 -5.2096803e+117 -5.2557792e+117 -5.4820505e+117 -5.4766855e+117 -5.4404606e+117 -5.4449202e+117 -5.4623607e+117 -5.4669113e+117 -5.4669113e+117 -5.4692626e+117 -5.4449202e+117 -5.4472035e+117 -5.4535745e+117 -5.4578889e+117 -5.4877614e+117 -5.4937328e+117 -5.5000233e+117 -5.5064477e+117 -5.5130778e+117 -5.519718e+117 -5.526423e+117 -5.5329923e+117 -5.4174798e+117 -5.412947e+117 -5.4016829e+117 -5.4016829e+117 -5.4068332e+117 -5.4068332e+117 -5.4121941e+117 -5.4164224e+117 -5.4219734e+117 -5.4208119e+117 -5.4265935e+117 -5.4253085e+117 -5.4312042e+117 -5.4299042e+117 -5.4358653e+117 -5.3407353e+117 -5.3136683e+117 -5.270413e+117 -5.3709624e+117 -5.3582691e+117 -5.3783941e+117 -5.3850283e+117 -5.3910311e+117 -5.3966467e+117 -5.5871638e+117 -5.5948386e+117 -5.6027852e+117 -5.5592146e+117 -5.5688603e+117 -5.5592146e+117 -5.5797186e+117 -5.570482e+117 -5.5421144e+117 -5.5421144e+117 -5.5330082e+117 -5.551544e+117 -5.6138099e+117 -5.6027852e+117 -5.6223515e+117 -5.6311073e+117 -5.6401243e+117 -5.6493852e+117 -5.6589556e+117 -5.6687595e+117 -5.6891587e+117 -5.6891587e+117 -5.6788435e+117 -5.7129312e+117 -5.7022539e+117 -5.7349551e+117 -5.7237925e+117 -5.7349551e+117 -5.7375056e+117 -5.8721576e+117 -5.8924717e+117 -5.9140007e+117 -5.8056506e+117 -5.8204132e+117 -5.8366783e+117 -5.8534669e+117 -5.7519604e+117 -5.7646826e+117 -5.7776698e+117 -5.791137e+117 -5.1583386e+117 -5.2909151e+117 -5.5430907e+117 -5.4492278e+117 -5.4999197e+117 -5.5430907e+117 -5.5430907e+117 -5.5430907e+117 -5.5987505e+117 -5.4999197e+117 -5.6428663e+117 -5.6598681e+117 -5.677283e+117 -5.6959048e+117 -5.7098362e+117 -5.7194199e+117 -5.7582727e+117 -5.7478248e+117 -5.7284018e+117 -5.7379276e+117 -5.7954367e+117 -5.8055494e+117 -5.7777866e+117 -5.7683512e+117 -5.7098362e+117 -5.71048e+117 -5.714777e+117 -5.7013416e+117 -5.7013416e+117 -5.7067137e+117 -5.8055494e+117 -5.8695981e+117 -5.8578743e+117 -5.8210186e+117 -5.8210186e+117 -5.836674e+117 -5.8417111e+117 -5.836674e+117 -5.9180172e+117 -5.9069778e+117 -5.8949958e+117 -5.9292166e+117 -5.9627283e+117 -5.9340544e+117 -5.9292166e+117 -5.9429036e+117 -5.9386225e+117 -5.973448e+117 -5.9894851e+117 -5.9820594e+117 -5.995352e+117 -5.995352e+117 -5.9993779e+117 -6.003229e+117 -6.0130272e+117 -6.0189352e+117 -6.0185311e+117 -5.1683925e+117 -5.2102621e+117 -5.172936e+117 -5.1944553e+117 -5.1992565e+117 -5.1965739e+117 -5.2087599e+117 -5.2087599e+117 -5.270413e+117 -5.482285e+117 -5.4769542e+117 -5.440954e+117 -5.4453291e+117 -5.4626636e+117 -5.4671784e+117 -5.4671784e+117 -5.469531e+117 -5.4453291e+117 -5.447616e+117 -5.4539466e+117 -5.4582314e+117 -5.4879583e+117 -5.4939123e+117 -5.5001724e+117 -5.5065835e+117 -5.5131769e+117 -5.5198075e+117 -5.5264646e+117 -5.5330082e+117 -5.4028603e+117 -5.4028603e+117 -5.4078736e+117 -5.4164224e+117 -5.4121941e+117 -5.4208119e+117 -5.4253085e+117 -5.4299042e+117 -5.4299042e+117 -5.4364365e+117 -5.349471e+117 -5.3318573e+117 -5.3010211e+117 -5.374229e+117 -5.3758705e+117 -5.3674279e+117 -5.3639732e+117 -5.3809097e+117 -5.3869865e+117 -5.3926721e+117 -5.3979868e+117 -5.5874896e+117 -5.5949839e+117 -5.6028476e+117 -5.5594535e+117 -5.570482e+117 -5.5594535e+117 -5.5804775e+117 -5.5714235e+117 -5.5420459e+117 -5.5420459e+117 -5.5329786e+117 -5.5514743e+117 -5.6138368e+117 -5.6028476e+117 -5.6223563e+117 -5.6311067e+117 -5.6401148e+117 -5.6493733e+117 -5.6589447e+117 -5.6687518e+117 -5.6891462e+117 -5.6891462e+117 -5.6788319e+117 -5.7129142e+117 -5.7022354e+117 -5.7348475e+117 -5.7237473e+117 -5.7348475e+117 -5.7373957e+117 -5.2444093e+117 -5.3159676e+117 -5.3899108e+117 -5.5086487e+117 -5.4890084e+117 -5.5256418e+117 -5.58435e+117 -5.5679267e+117 -5.58435e+117 -5.6073417e+117 -5.6076769e+117 -5.6032186e+117 -5.6246827e+117 -5.5256418e+117 -5.5256418e+117 -5.5493251e+117 -5.6425414e+117 -5.651345e+117 -5.6594058e+117 -5.6675293e+117 -5.6756542e+117 -5.6841439e+117 -5.693094e+117 -5.7024423e+117 -5.7107117e+117 -5.7202867e+117 -5.7589627e+117 -5.7486483e+117 -5.7293444e+117 -5.7386018e+117 -5.7885138e+117 -5.7988071e+117 -5.8076088e+117 -5.7768315e+117 -5.7680174e+117 -5.7107117e+117 -5.7111254e+117 -5.7155453e+117 -5.7021768e+117 -5.7021768e+117 -5.7072495e+117 -5.8076088e+117 -5.8697379e+117 -5.8697379e+117 -5.8697379e+117 -5.8590976e+117 -5.8744946e+117 -5.8793298e+117 -5.8224235e+117 -5.8224235e+117 -5.8378218e+117 -5.8427972e+117 -5.8378218e+117 -5.8949958e+117 -5.9198974e+117 -5.8949958e+117 -5.9099731e+117 -5.9288209e+117 -5.9563074e+117 -5.9650217e+117 -5.9336584e+117 -5.9288209e+117 -5.9425081e+117 -5.9382289e+117 -5.9731721e+117 -5.989216e+117 -5.9811141e+117 -5.9951e+117 -5.9951e+117 -5.9991106e+117 -6.0029727e+117 -6.0125212e+117 -6.0185311e+117 -5.2968815e+117 -5.2864043e+117 -5.2283477e+117 -5.2550481e+117 -5.2637027e+117 -5.2632498e+117 -5.3010211e+117 -5.2632498e+117 -5.4823707e+117 -5.4770511e+117 -5.441139e+117 -5.445482e+117 -5.4627751e+117 -5.4672712e+117 -5.4672712e+117 -5.4696265e+117 -5.445482e+117 -5.4477715e+117 -5.4540841e+117 -5.4583589e+117 -5.4880266e+117 -5.4939743e+117 -5.5002223e+117 -5.5066272e+117 -5.5131975e+117 -5.5198234e+117 -5.5264551e+117 -5.5329786e+117 -5.4032873e+117 -5.4032873e+117 -5.4082579e+117 -5.4168003e+117 -5.4125584e+117 -5.4211649e+117 -5.425629e+117 -5.4301862e+117 -5.4301862e+117 -5.4366498e+117 -5.3521143e+117 -5.3383209e+117 -5.3148061e+117 -5.3758705e+117 -5.3758705e+117 -5.3710866e+117 -5.3732321e+117 -5.3656101e+117 -5.3677936e+117 -5.3817712e+117 -5.3876526e+117 -5.3932354e+117 -5.398464e+117 -5.5596336e+117 -5.5714235e+117 -5.5596336e+117 -5.3974831e+117 -5.3500569e+117 -5.4333985e+117 -5.4634049e+117 -5.5386257e+117 -5.5268656e+117 -5.590486e+117 -5.5964847e+117 -5.5778999e+117 -5.584206e+117 -5.6076769e+117 -5.6032186e+117 -5.6032186e+117 -5.6177505e+117 -5.6252257e+117 -5.6330611e+117 -5.5386257e+117 -5.5562453e+117 -5.5609743e+117 -5.5696286e+117 -5.6420019e+117 -5.6536045e+117 -5.6613485e+117 -5.6689172e+117 -5.6768207e+117 -5.6850699e+117 -5.6941353e+117 -5.7032877e+117 -5.7107884e+117 -5.7205249e+117 -5.7590164e+117 -5.7486216e+117 -5.7293909e+117 -5.738616e+117 -5.7868072e+117 -5.7990435e+117 -5.8082395e+117 -5.7762232e+117 -5.767961e+117 -5.7107884e+117 -5.7112007e+117 -5.7156485e+117 -5.7022356e+117 -5.7022356e+117 -5.7072312e+117 -5.8082395e+117 -5.859316e+117 -5.8737511e+117 -5.859316e+117 -5.8737511e+117 -5.8785835e+117 -5.8228309e+117 -5.8228309e+117 -5.8380688e+117 -5.8430267e+117 -5.8380688e+117 -5.8933702e+117 -5.9202705e+117 -5.8933702e+117 -5.9098397e+117 -5.9288111e+117 -5.9550287e+117 -5.9647627e+117 -5.933641e+117 -5.9288111e+117 -5.9424847e+117 -5.9382106e+117 -5.9731959e+117 -5.9891834e+117 -5.9808475e+117 -5.3941492e+117 -5.338287e+117 -5.3886109e+117 -5.3118696e+117 -5.348028e+117 -5.2855378e+117 -5.2912273e+117 -5.3430165e+117 -5.3238334e+117 -5.286906e+117 -5.3148061e+117 -5.286906e+117 -5.3539194e+117 -5.3424775e+117 -5.3677936e+117 -5.3265649e+117 -5.3677936e+117 -5.3732321e+117 -5.4440199e+117 -5.4815938e+117 -5.5068081e+117 -5.5542333e+117 -5.5514581e+117 -5.5483049e+117 -5.5433941e+117 -5.5959402e+117 -5.601001e+117 -5.5864025e+117 -5.5910268e+117 -5.610866e+117 -5.6066636e+117 -5.6066636e+117 -5.6207716e+117 -5.6276691e+117 -5.6345167e+117 -5.5542333e+117 -5.5579949e+117 -5.571507e+117 -5.5693382e+117 -5.564653e+117 -5.5797789e+117 -5.6411261e+117 -5.647507e+117 -5.6548793e+117 -5.6621505e+117 -5.6693942e+117 -5.677046e+117 -5.6852746e+117 -5.6943304e+117 -5.7035199e+117 -5.7108932e+117 -5.7209069e+117 -5.7593496e+117 -5.7486649e+117 -5.7295519e+117 -5.7386884e+117 -5.7860703e+117 -5.7994067e+117 -5.8088429e+117 -5.7108932e+117 -5.7112827e+117 -5.7157734e+117 -5.7023553e+117 -5.7023553e+117 -5.7073225e+117 -5.8088429e+117 -5.8596716e+117 -5.8734264e+117 -5.8596716e+117 -5.8734264e+117 -5.8782582e+117 -5.8231343e+117 -5.8231343e+117 -5.8381736e+117 -5.8431249e+117 -5.8381736e+117 -5.8927675e+117 -5.9208371e+117 -5.8927675e+117 -5.909887e+117 -5.9546118e+117 -5.9646929e+117 -5.4316855e+117 -5.3741991e+117 -5.3954879e+117 -5.4173589e+117 -5.4370379e+117 -5.3813365e+117 -5.3040883e+117 -5.31432e+117 -5.3555993e+117 -5.3400303e+117 -5.2899873e+117 -5.3265649e+117 -5.2899873e+117 -5.4644404e+117 -5.4901627e+117 -5.5188679e+117 -5.5071971e+117 -5.5280801e+117 -5.5353664e+117 -5.5572399e+117 -5.5549672e+117 -5.5528123e+117 -5.5497767e+117 -5.5975645e+117 -5.6022829e+117 -5.5890298e+117 -5.5931784e+117 -5.6116926e+117 -5.6075697e+117 -5.6075697e+117 -5.6214938e+117 -5.6283128e+117 -5.6345567e+117 -5.5572399e+117 -5.560822e+117 -5.5761362e+117 -5.5715508e+117 -5.5672993e+117 -5.5819768e+117 -5.6413013e+117 -5.6491028e+117 -5.6557516e+117 -5.6628024e+117 -5.6697744e+117 -5.6772094e+117 -5.6853903e+117 -5.6945124e+117 -5.7038275e+117 -5.4843687e+117 -5.4731894e+117 -5.4546548e+117 -5.4037488e+117 -5.4196181e+117 -5.4343175e+117 -5.4516114e+117 -5.3993604e+117 -5.3136856e+117 -5.3256717e+117 -5.3664729e+117 -5.3859431e+117 -5.3483111e+117 -5.5097457e+117 -5.5346851e+117 -5.5262446e+117 -5.5411741e+117 -5.5456664e+117 -5.5580686e+117 -5.5560211e+117 -5.5543562e+117 -5.5529084e+117 -5.5525018e+117 -5.5980244e+117 -5.602621e+117 -5.5857121e+117 -5.59002e+117 -5.5938473e+117 -5.6119008e+117 -5.6077912e+117 -5.6077912e+117 -5.62165e+117 -5.628558e+117 -5.6345709e+117 -5.5580686e+117 -5.5616271e+117 -5.5771254e+117 -5.572249e+117 -5.567993e+117 -5.5820889e+117 -5.6415143e+117 -5.6500479e+117 -5.4945815e+117 -5.4803342e+117 -5.4650369e+117 -5.4154625e+117 -5.4294473e+117 -5.4425786e+117 -5.4488833e+117 -5.4574772e+117 -5.4067792e+117 -5.3319138e+117 -5.3734931e+117 -5.396897e+117 -5.3526914e+117 -5.5139436e+117 -5.5400835e+117 -5.533005e+117 -5.5451673e+117 -5.5490873e+117 -5.5584968e+117 -5.556643e+117 -5.5553701e+117 -5.554367e+117 -5.5532497e+117 -5.5982391e+117 -5.602753e+117 -5.5869211e+117 -5.5906176e+117 -5.5941982e+117 -5.611959e+117 -5.6078515e+117 -5.6078515e+117 -5.6216372e+117 -5.6288297e+117 -5.6346526e+117 -5.5584968e+117 -5.5620476e+117 -5.5774126e+117 -5.5726681e+117 -5.5682901e+117 -5.5823445e+117 -5.4982468e+117 -5.4830717e+117 -5.4687465e+117 -5.4198529e+117 -5.4329e+117 -5.4459358e+117 -5.4550828e+117 -5.4606361e+117 -5.4109582e+117 -5.3771143e+117 -5.4022118e+117 -5.5142446e+117 -5.5259604e+117 -5.5418602e+117 -5.5355701e+117 -5.5462738e+117 -5.5499884e+117 -5.5551298e+117 -5.5536008e+117 -5.5876075e+117 -5.5776798e+117 -5.5826009e+117 -5.4996207e+117 -5.4844668e+117 -5.4706772e+117 -5.4222057e+117 -5.4344881e+117 -5.4476324e+117 -5.4579254e+117 -5.5156177e+117 -5.5295923e+117 -5.5429668e+117 -5.5370667e+117 -5.5468599e+117 -5.550394e+117 -5.5002932e+117 -5.5164313e+117 -5.5313912e+117 ) ; } procBoundary0to4 { type processor; value nonuniform List<scalar> 129 ( -6.0970845e+117 -6.0818366e+117 -6.0694063e+117 -6.0550854e+117 -6.066899e+117 -6.0822184e+117 -5.2412423e+117 -5.2533247e+117 -6.0223647e+117 -6.040289e+117 -6.0403957e+117 -6.0547646e+117 -6.065924e+117 -6.0824161e+117 -5.2131843e+117 -5.2283225e+117 -5.0168251e+117 -5.026228e+117 -4.7684243e+117 -4.7741344e+117 -6.0025477e+117 -5.9799023e+117 -6.004742e+117 -6.0244544e+117 -6.037343e+117 -6.0523397e+117 -6.0673992e+117 -6.0846414e+117 -4.7566152e+117 -4.9951552e+117 -5.0073524e+117 -4.7625087e+117 -4.4887892e+117 -5.9595368e+117 -5.9834302e+117 -5.9799023e+117 -5.9981862e+117 -6.0197229e+117 -6.0388077e+117 -6.0535297e+117 -6.0675371e+117 -6.0847828e+117 -4.7520055e+117 -4.986419e+117 -4.4840335e+117 -5.7204785e+117 -5.6987482e+117 -5.9522073e+117 -5.9595368e+117 -5.97593e+117 -5.9986776e+117 -6.0205309e+117 -6.0388912e+117 -6.0535569e+117 -4.4815103e+117 -5.6771644e+117 -5.6834025e+117 -5.7068989e+117 -5.9521254e+117 -5.9522073e+117 -5.9757735e+117 -5.9987412e+117 -6.0205607e+117 -4.4815103e+117 -5.6771644e+117 -5.4250192e+117 -5.6771644e+117 -5.6784671e+117 -5.6834025e+117 -5.703422e+117 -5.9521428e+117 -5.9521254e+117 -5.975807e+117 -4.4549616e+117 -4.481012e+117 -4.481012e+117 -5.4151208e+117 -5.4250192e+117 -5.4340946e+117 -5.6787616e+117 -5.6784671e+117 -5.7044174e+117 -5.9521428e+117 -4.4551016e+117 -4.4546029e+117 -4.4546029e+117 -4.6050835e+117 -4.7573057e+117 -4.7250645e+117 -5.4136192e+117 -5.4151208e+117 -5.1978443e+117 -5.4335476e+117 -5.6788101e+117 -5.6787616e+117 -5.7044942e+117 -4.4716225e+117 -4.47074e+117 -4.47074e+117 -4.6197011e+117 -4.7773412e+117 -4.976352e+117 -5.4137575e+117 -5.4136192e+117 -5.1956059e+117 -5.434672e+117 -5.6788101e+117 -4.4735185e+117 -4.472407e+117 -4.472407e+117 -4.7946761e+117 -4.6223126e+117 -4.9826872e+117 -5.413728e+117 -5.4137575e+117 -5.1981843e+117 -5.4347258e+117 -4.4736611e+117 -4.4725404e+117 -4.4725404e+117 -4.7972649e+117 -4.9909395e+117 -4.6225693e+117 -5.413728e+117 -5.1991433e+117 -4.7975282e+117 -4.9932058e+117 -5.1991635e+117 -4.9933678e+117 ) ; } procBoundary0to5 { type processor; value nonuniform List<scalar> 77 ( -6.6578217e+117 -6.1802156e+117 -6.6578217e+117 -6.1802156e+117 -6.6963504e+117 -6.5906752e+117 -6.1802156e+117 -6.1802156e+117 -6.1802156e+117 -6.1802156e+117 -6.5906752e+117 -6.1154739e+117 -6.6963504e+117 -6.6379393e+117 -6.5133054e+117 -5.7569736e+117 -6.1154739e+117 -6.1154739e+117 -6.1154739e+117 -6.1154739e+117 -6.1154739e+117 -5.8315684e+117 -5.8593722e+117 -6.5133054e+117 -6.5329123e+117 -6.5067635e+117 -6.6379393e+117 -6.5622266e+117 -5.7100011e+117 -5.7100011e+117 -5.4795069e+117 -5.4945872e+117 -5.6275946e+117 -5.6275946e+117 -5.8315684e+117 -5.8593722e+117 -5.6516639e+117 -5.6516639e+117 -6.2709814e+117 -6.238653e+117 -6.0555226e+117 -5.7768897e+117 -5.8059202e+117 -6.276168e+117 -6.2527523e+117 -6.4798784e+117 -6.5622266e+117 -6.4472427e+117 -5.8498796e+117 -5.636256e+117 -5.4637012e+117 -5.4468213e+117 -5.5829202e+117 -5.5829202e+117 -5.5829202e+117 -5.7768897e+117 -5.7768897e+117 -5.8059202e+117 -5.6057047e+117 -5.6057047e+117 -6.2259722e+117 -6.1957557e+117 -6.276168e+117 -6.2527523e+117 -6.3742239e+117 -6.412574e+117 -5.4298235e+117 -6.1310996e+117 -6.1639043e+117 -6.2259722e+117 -6.1957557e+117 -6.1310996e+117 -6.1639043e+117 -5.9993757e+117 -5.9742649e+117 -5.9201217e+117 -5.948031e+117 ) ; } procBoundary0to6 { type processor; value nonuniform List<scalar> 17 ( -6.8030922e+117 -6.8030922e+117 -6.8403215e+117 -6.4935749e+117 -6.5073704e+117 -5.8456492e+117 -6.2644682e+117 -6.2515944e+117 -6.8403215e+117 -5.9416719e+117 -5.9451536e+117 -6.649418e+117 -6.6327183e+117 -6.3759606e+117 -6.3606923e+117 -6.3759606e+117 -6.3606923e+117 ) ; } procBoundary0to7 { type processor; value nonuniform List<scalar> 45 ( -6.7707999e+117 -6.7707999e+117 -6.8010711e+117 -6.7230198e+117 -6.4632483e+117 -6.4800756e+117 -5.8292946e+117 -6.2384361e+117 -6.2227847e+117 -6.7230198e+117 -6.8010711e+117 -6.7589302e+117 -6.4442009e+117 -6.4201264e+117 -5.7994511e+117 -6.184511e+117 -6.2054244e+117 -5.9196418e+117 -5.9335493e+117 -6.6132321e+117 -6.5947139e+117 -6.7589302e+117 -5.8821906e+117 -5.9040723e+117 -6.3291812e+117 -6.3452233e+117 -6.5771166e+117 -6.5568281e+117 -5.3591122e+117 -5.671312e+117 -5.6894978e+117 -5.9040723e+117 -5.8821906e+117 -6.3139711e+117 -6.2957249e+117 -6.3452233e+117 -6.3291812e+117 -5.2576358e+117 -5.2576358e+117 -5.4667839e+117 -5.4667839e+117 -5.480194e+117 -5.266563e+117 -6.2957249e+117 -6.3139711e+117 ) ; } procBoundary0to8 { type processor; value nonuniform List<scalar> 122 ( -7.6310622e+117 -7.6170449e+117 -7.1600879e+117 -8.1849959e+117 -7.8128486e+117 -7.672159e+117 -7.4465306e+117 -7.5693903e+117 -7.2070141e+117 -8.0106589e+117 -7.8367454e+117 -7.2429845e+117 -7.0377226e+117 -8.3851689e+117 -7.2451868e+117 -7.6628808e+117 -7.689174e+117 -7.4651934e+117 -7.5767418e+117 -7.2323229e+117 -7.6853883e+117 -7.8523783e+117 -7.9164826e+117 -7.1538207e+117 -7.2495464e+117 -7.0405417e+117 -1.8923424e+117 -7.0745699e+117 -6.1483724e+117 -7.7172935e+117 -7.7036667e+117 -7.4769417e+117 -7.2540874e+117 -7.4814324e+117 -7.5431258e+117 -7.4706697e+117 -7.4832742e+117 -7.1094132e+117 -7.660993e+117 -1.8108078e+117 -6.7288434e+117 -7.258434e+117 -7.0481594e+117 -4.173973e+116 -8.0286404e+117 -6.688263e+117 -6.0621756e+117 -7.7736823e+117 -7.7048987e+117 -7.4783722e+117 -3.0232816e+116 -6.9476204e+117 -7.1557738e+117 -7.3296859e+117 -7.4554655e+117 -7.4574796e+117 -7.4148577e+117 -6.9026383e+117 -6.8117437e+117 -6.4016178e+117 -1.9074174e+117 -4.6632577e+116 -6.7286616e+117 -7.2594308e+117 -7.0489179e+117 -8.1936954e+117 -1.5739138e+117 -6.5136266e+117 -7.7751214e+117 -1.13214e+117 -2.6380431e+116 -6.9476204e+117 -7.0007755e+117 -7.0001661e+117 -7.1503075e+117 -7.3138023e+117 -7.4489473e+117 -7.2200719e+117 -7.4263188e+117 -7.1125492e+117 -7.8518421e+117 -6.9989088e+117 -6.3475406e+117 -5.5009629e+116 -5.3153473e+116 -1.0669224e+117 -6.4943062e+117 -6.8195821e+117 -7.0007755e+117 -6.991385e+117 -6.9901654e+117 -7.1544754e+117 -7.3224849e+117 -7.4488338e+117 -7.0338251e+117 -6.9535437e+117 -7.4239382e+117 -7.5916143e+117 -8.0182786e+117 -7.0304846e+117 -6.8102611e+117 -6.991385e+117 -6.9889092e+117 -6.9915096e+117 -7.1550225e+117 -7.3234311e+117 -7.0155266e+117 -6.3286309e+117 -6.8060717e+117 -7.6487122e+117 -6.8099532e+117 -6.9889092e+117 -6.9889423e+117 -6.9917412e+117 -6.2538868e+117 -6.5825175e+117 -6.7944121e+117 -6.8100495e+117 -6.9889423e+117 -6.5389645e+117 -6.601473e+117 -6.5519259e+117 ) ; } procBoundary0to12 { type processor; value nonuniform List<scalar> 2(-6.8906243e+117 -6.9500196e+117); } procBoundary0to14 { type processor; value nonuniform List<scalar> 101 ( -6.7766077e+117 -6.7799793e+117 -6.8418968e+117 -6.8417937e+117 -6.8926861e+117 -6.7630131e+117 -6.835608e+117 -6.8404857e+117 -6.836921e+117 -6.836317e+117 -6.9426446e+117 -6.8714945e+117 -6.7630131e+117 -6.8133419e+117 -6.8260975e+117 -6.8255514e+117 -6.8313563e+117 -6.8385608e+117 -6.8382337e+117 -6.9426446e+117 -6.9115573e+117 -6.8386054e+117 -6.8386054e+117 -6.3106065e+117 -6.5994102e+117 -6.8133419e+117 -6.8013971e+117 -6.8150322e+117 -6.8277027e+117 -6.8315155e+117 -6.8388441e+117 -6.8385465e+117 -6.680394e+117 -6.6917303e+117 -6.9115573e+117 -6.8785365e+117 -6.3106065e+117 -6.3808679e+117 -6.387053e+117 -6.5934516e+117 -6.8013971e+117 -6.8040163e+117 -6.8178095e+117 -6.8280337e+117 -6.8317942e+117 -6.680394e+117 -6.7178016e+117 -6.701905e+117 -6.8785365e+117 -6.3808679e+117 -6.1627779e+117 -6.3723162e+117 -6.3790871e+117 -6.5951423e+117 -6.8040163e+117 -6.8043971e+117 -6.8181939e+117 -6.4365787e+117 -6.4214111e+117 -6.683671e+117 -6.666394e+117 -6.3723162e+117 -6.1604127e+117 -6.3722868e+117 -6.3794522e+117 -6.5953346e+117 -6.8043971e+117 -6.4062773e+117 -6.3905586e+117 -5.9414899e+117 -5.9417797e+117 -6.3722868e+117 -6.160532e+117 -6.3722795e+117 -6.3794803e+117 -6.4062773e+117 -6.3905586e+117 -5.9161424e+117 -5.9335107e+117 -5.9426185e+117 -5.9428812e+117 -6.3722795e+117 -6.1605013e+117 -5.7033344e+117 -5.9161424e+117 -5.9172768e+117 -5.9353117e+117 -5.9426447e+117 -5.9429207e+117 -5.2807002e+117 -5.4877178e+117 -5.7000696e+117 -5.9172768e+117 -5.9173253e+117 -5.9354054e+117 -5.2821876e+117 -5.4868537e+117 -5.6998828e+117 -5.9173253e+117 -5.282322e+117 -5.4868025e+117 ) ; } procBoundary0to15 { type processor; value nonuniform List<scalar> 40 ( -6.6433702e+117 -6.6287463e+117 -6.5964987e+117 -6.6161942e+117 -6.6287463e+117 -6.3749629e+117 -6.3925729e+117 -6.5823183e+117 -6.5964987e+117 -6.5997952e+117 -6.352884e+117 -6.3696558e+117 -6.3749629e+117 -6.5823183e+117 -6.581114e+117 -6.5997689e+117 -6.1243055e+117 -6.1106716e+117 -6.3535989e+117 -6.352884e+117 -6.3652216e+117 -6.581114e+117 -6.5809067e+117 -6.5996592e+117 -6.0957249e+117 -6.1090048e+117 -6.3508612e+117 -6.3535989e+117 -6.3654523e+117 -6.5809067e+117 -6.0980676e+117 -6.1117807e+117 -6.3507578e+117 -6.3508612e+117 -6.3655208e+117 -6.1000104e+117 -6.1155352e+117 -6.3507578e+117 -6.100158e+117 -6.115398e+117 ) ; } } // ************************************************************************* //
dccd8e50dfea4bc563298260329fba8f43d92a8c
927442d1aadd124d1ec5b5a56b3c442ba2735841
/08_cocos2d-x/day13/Demo2_Code/Classes/Enemy.h
28b54b1c11f543943e0acf9c37f421ffb3aa0ec8
[]
no_license
yitian630/Tarena
2dc2fd276e1404330222d28fb10ddd0116eca74b
49b587ab58cb5e173d6dcd2701ea6db3b35cdf0b
refs/heads/master
2021-01-22T02:49:19.160833
2015-03-12T06:58:26
2015-03-12T06:58:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
796
h
// // Enemy.h // XiaoQianRun // // Created by tarena on 14-6-23. // // #ifndef __XiaoQianRun__Enemy__ #define __XiaoQianRun__Enemy__ #include <iostream> #include "cocos2d.h" #include "MySprite.h" USING_NS_CC; typedef enum { LEFT, RIGHT, }Enemy_Dir; class Enemy : public MySprite { public: bool initEnemy(float speed); void startMove(); //获取 敌人的碰撞区域 CCRect getCollisionArea(); protected: //创建敌人动画 CCAnimate* createAnimate(const char* imageName, int col, int row); private: Enemy_Dir m_currDir; float m_speed; void Move(); void update(float time); //敌人最大移动距离 float m_MaxDis; //敌人当前移动距离 float m_CurrDis; }; #endif /* defined(__XiaoQianRun__Enemy__) */
938f9a82a39478f648ab6df86c763899d8835d0e
73c7fe37bf6af775cac65f58b81d2284dae117f2
/LeetCode/62. Unique Paths.cpp
1925a26fd6e553ad16ca4d0115ee944c80ffe08e
[]
no_license
atique7465/Competetive_programming
9ad03427682270e889f751b8a8e2e9ab3b309be2
840b8b9133f5b993730ecde186ef4d4fdfca9c46
refs/heads/master
2023-08-03T15:16:47.582253
2023-07-25T04:07:01
2023-07-25T04:07:01
186,138,178
3
0
null
null
null
null
UTF-8
C++
false
false
419
cpp
class Solution { vector<vector<int>>dp; public: int uniquePaths(int m, int n) { dp.resize(101, vector<int>(101,-1)); return solve(0,0,m,n); } int solve(int i, int j, int m, int n){ if(i >= m || j >= n) return 0; if(i == m-1 && j == n-1) return 1; if(dp[i][j]!=-1) return dp[i][j]; return dp[i][j] = solve(i+1, j, m, n) + solve(i, j+1, m, n); } };
7dd56b27ff673b9bb07a1e71ea707827b620ea68
707286e6928f194e8a711016269f9c8744fbbdfb
/binary_tree/main.cpp
36450402f7d7c84aeaaa1f9248bc97207c8193bb
[]
no_license
DethleSS/projects_qt
acda22f88751bf1466d4266269c8c3f9bac1c46a
955b4f636a018a3ec12f06de6e526369dc95b5b2
refs/heads/master
2020-04-28T19:22:35.154443
2019-05-15T11:35:19
2019-05-15T11:35:19
175,508,683
0
0
null
null
null
null
UTF-8
C++
false
false
307
cpp
#include <QCoreApplication> #include "binary_tree.h" int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); stu::Binary_tree b; b.insert(4); b.insert(2); b.insert(6); b.print_all(); //std::cout << b.size(); std::cout << b.contains(2); return a.exec(); }
0f21125e1cd3aa2e7b1b57cee99c9f08eae92738
94c536f8fbe0d43e848db623a78dc3735036e404
/data structures/convex_hull_trick.cpp
b348eca6072bdf655da515f1c56fd8524104bb96
[]
no_license
a-nogikh/competitive_programming_helpers
a9392b898566c936bd4ee99e28af7b185aa3bd0b
15360c45336b6a3175de352d44cb554dbaf89521
refs/heads/master
2021-04-14T15:26:05.297983
2020-05-05T16:02:50
2020-05-05T16:02:50
249,241,758
2
0
null
null
null
null
UTF-8
C++
false
false
4,273
cpp
/* Data structures to facilitate convex hull trick implementation. */ template<class CoordinateType = long long, class FractionType = long double> class ConvexHullOptimization { template<class CoordinateType = long long, class FractionType = long double> struct Line { CoordinateType slope, x0; FractionType left, right; FractionType intersection_point(const Line& other) const { // TODO: handle parallel lines case return static_cast<FractionType>(x0 - other.x0) / static_cast<FractionType>( other.slope - slope ); } CoordinateType evaluate(const CoordinateType x) { return x * slope + x0; } }; deque<Line<CoordinateType, FractionType>> lines; FractionType leftmost, rightmost; public: ConvexHullOptimization(FractionType leftmost, FractionType rightmost) : leftmost(leftmost), rightmost(rightmost) {} void add_left(CoordinateType slope, CoordinateType x0) { Line<CoordinateType, FractionType> candidate = { slope, x0, leftmost, rightmost }; while (lines.size() > 0 && lines.front().intersection_point(candidate) >= lines.front().right) lines.pop_front(); if (lines.size() > 0) { candidate.right = lines.front().intersection_point(candidate); lines.front().left = candidate.right; } lines.push_front(candidate); } void add_right(CoordinateType slope, CoordinateType x0) { // TODO: test! Line<CoordinateType, FractionType> candidate = { slope, x0, leftmost, rightmost }; while (lines.size() > 0 && lines.back().intersection_point(candidate) <= lines.front().left) lines.pop_back(); if (lines.size() > 0) { candidate.left = lines.front().intersection_point(candidate); lines.back().right = candidate.left; } lines.push_back(candidate); } CoordinateType evaluate(CoordinateType x) { assert(lines.size() > 0); auto it = partition_point(lines.begin(), lines.end(), [x](auto& line) { return line.left <= static_cast<FractionType>(x); }); it--; return it->evaluate(x); } }; template<class CoordinateType = long long, class FractionType = long long> class ConvexHullDynamic { using LineCoordinateType = typename CoordinateType; using LineFractionType = typename FractionType; struct Line { LineCoordinateType slope; LineCoordinateType x0; mutable LineFractionType left; Line(LineCoordinateType slope, LineCoordinateType x0, LineFractionType left) : slope(slope), x0(x0), left(left) { } LineFractionType intersect(const Line& other) const { if (is_integral<LineFractionType>::value) { auto nom = static_cast<LineCoordinateType>(x0 - other.x0), denom = static_cast<LineCoordinateType>(other.slope - slope); return nom / denom - ((nom < 0) == (denom < 0) ? 0 : (nom % denom) != 0); } else { return static_cast<LineFractionType>(x0 - other.x0) / static_cast<LineFractionType>(other.slope - slope); } } bool operator< (const Line& rhs) const { return slope < rhs.slope; } bool operator< (const LineCoordinateType& rhs) const { return left < rhs; } }; CoordinateType min_value; set<Line, std::less<>> lines; public: ConvexHullDynamic(CoordinateType min_coord) : min_value(min_coord) {} CoordinateType evaluate(CoordinateType x) { auto it = lines.lower_bound(x); it--; return it->slope * x + it->x0; } void add_line(CoordinateType slope, CoordinateType x0) { Line candidate(slope, x0, min_value); auto it = lines.lower_bound(candidate); if (it != lines.end() && it->slope == slope) { if (it->x0 >= x0) return; lines.erase(it++); } decltype(it) new_it; std::tie(new_it, std::ignore) = lines.insert(candidate); auto prev_it = new_it; while (it != lines.end()) { auto new_left = it->intersect(candidate); if (prev_it->left > it->left) lines.erase(prev_it++); else prev_it++; if (new_left <= it->left) break; it->left = new_left; it++; } if (new_it != lines.begin()) { it = std::prev(new_it); while (true) { auto new_left = it->intersect(candidate); if (new_left <= it->left) { if (it != lines.begin()) lines.erase(it--); else { lines.erase(it); break; } } else { new_it->left = new_left; return; } } lines.erase(new_it); } } };
3615f8e7bf581dcbd4561fd284fe923f4270f2c6
a122119df649ee4fe543951c7e702e85b3427670
/install/include/baxter_core_msgs/SolvePositionIKRequest.h
0bd39344527efde7bc8a4b9044c0ef79f99983b8
[]
no_license
Sean-Skilling/baxter-project
e126de1cf80aabebc176628182a23841b2a1a930
e86ff6015aaf9c301de5ef9a92538974319ff2b3
refs/heads/master
2020-04-11T13:03:33.841852
2019-03-27T14:58:13
2019-03-27T14:58:13
161,802,645
0
0
null
null
null
null
UTF-8
C++
false
false
10,116
h
// Generated by gencpp from file baxter_core_msgs/SolvePositionIKRequest.msg // DO NOT EDIT! #ifndef BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H #define BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <geometry_msgs/PoseStamped.h> #include <sensor_msgs/JointState.h> namespace baxter_core_msgs { template <class ContainerAllocator> struct SolvePositionIKRequest_ { typedef SolvePositionIKRequest_<ContainerAllocator> Type; SolvePositionIKRequest_() : pose_stamp() , seed_angles() , seed_mode(0) { } SolvePositionIKRequest_(const ContainerAllocator& _alloc) : pose_stamp(_alloc) , seed_angles(_alloc) , seed_mode(0) { (void)_alloc; } typedef std::vector< ::geometry_msgs::PoseStamped_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::geometry_msgs::PoseStamped_<ContainerAllocator> >::other > _pose_stamp_type; _pose_stamp_type pose_stamp; typedef std::vector< ::sensor_msgs::JointState_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::sensor_msgs::JointState_<ContainerAllocator> >::other > _seed_angles_type; _seed_angles_type seed_angles; typedef uint8_t _seed_mode_type; _seed_mode_type seed_mode; enum { SEED_AUTO = 0u, SEED_USER = 1u, SEED_CURRENT = 2u, SEED_NS_MAP = 3u, }; typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const> ConstPtr; }; // struct SolvePositionIKRequest_ typedef ::baxter_core_msgs::SolvePositionIKRequest_<std::allocator<void> > SolvePositionIKRequest; typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest > SolvePositionIKRequestPtr; typedef boost::shared_ptr< ::baxter_core_msgs::SolvePositionIKRequest const> SolvePositionIKRequestConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> & v) { ros::message_operations::Printer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace baxter_core_msgs namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False} // {'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'sensor_msgs': ['/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'baxter_core_msgs': ['/home/seanskilling/baxter_ws/src/baxter_common/baxter_core_msgs/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > { static const char* value() { return "2587e42983d0081d0a2288230991073b"; } static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0x2587e42983d0081dULL; static const uint64_t static_value2 = 0x0a2288230991073bULL; }; template<class ContainerAllocator> struct DataType< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > { static const char* value() { return "baxter_core_msgs/SolvePositionIKRequest"; } static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > { static const char* value() { return "\n\ geometry_msgs/PoseStamped[] pose_stamp\n\ \n\ \n\ \n\ \n\ sensor_msgs/JointState[] seed_angles\n\ \n\ \n\ \n\ \n\ \n\ uint8 SEED_AUTO = 0\n\ uint8 SEED_USER = 1\n\ uint8 SEED_CURRENT = 2\n\ uint8 SEED_NS_MAP = 3\n\ \n\ uint8 seed_mode\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/PoseStamped\n\ # A Pose with reference coordinate frame and timestamp\n\ Header header\n\ Pose pose\n\ \n\ ================================================================================\n\ MSG: std_msgs/Header\n\ # Standard metadata for higher-level stamped data types.\n\ # This is generally used to communicate timestamped data \n\ # in a particular coordinate frame.\n\ # \n\ # sequence ID: consecutively increasing ID \n\ uint32 seq\n\ #Two-integer timestamp that is expressed as:\n\ # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\ # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\ # time-handling sugar is provided by the client library\n\ time stamp\n\ #Frame this data is associated with\n\ # 0: no frame\n\ # 1: global frame\n\ string frame_id\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/Pose\n\ # A representation of pose in free space, composed of position and orientation. \n\ Point position\n\ Quaternion orientation\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/Point\n\ # This contains the position of a point in free space\n\ float64 x\n\ float64 y\n\ float64 z\n\ \n\ ================================================================================\n\ MSG: geometry_msgs/Quaternion\n\ # This represents an orientation in free space in quaternion form.\n\ \n\ float64 x\n\ float64 y\n\ float64 z\n\ float64 w\n\ \n\ ================================================================================\n\ MSG: sensor_msgs/JointState\n\ # This is a message that holds data to describe the state of a set of torque controlled joints. \n\ #\n\ # The state of each joint (revolute or prismatic) is defined by:\n\ # * the position of the joint (rad or m),\n\ # * the velocity of the joint (rad/s or m/s) and \n\ # * the effort that is applied in the joint (Nm or N).\n\ #\n\ # Each joint is uniquely identified by its name\n\ # The header specifies the time at which the joint states were recorded. All the joint states\n\ # in one message have to be recorded at the same time.\n\ #\n\ # This message consists of a multiple arrays, one for each part of the joint state. \n\ # The goal is to make each of the fields optional. When e.g. your joints have no\n\ # effort associated with them, you can leave the effort array empty. \n\ #\n\ # All arrays in this message should have the same size, or be empty.\n\ # This is the only way to uniquely associate the joint name with the correct\n\ # states.\n\ \n\ \n\ Header header\n\ \n\ string[] name\n\ float64[] position\n\ float64[] velocity\n\ float64[] effort\n\ "; } static const char* value(const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.pose_stamp); stream.next(m.seed_angles); stream.next(m.seed_mode); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct SolvePositionIKRequest_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::baxter_core_msgs::SolvePositionIKRequest_<ContainerAllocator>& v) { s << indent << "pose_stamp[]" << std::endl; for (size_t i = 0; i < v.pose_stamp.size(); ++i) { s << indent << " pose_stamp[" << i << "]: "; s << std::endl; s << indent; Printer< ::geometry_msgs::PoseStamped_<ContainerAllocator> >::stream(s, indent + " ", v.pose_stamp[i]); } s << indent << "seed_angles[]" << std::endl; for (size_t i = 0; i < v.seed_angles.size(); ++i) { s << indent << " seed_angles[" << i << "]: "; s << std::endl; s << indent; Printer< ::sensor_msgs::JointState_<ContainerAllocator> >::stream(s, indent + " ", v.seed_angles[i]); } s << indent << "seed_mode: "; Printer<uint8_t>::stream(s, indent + " ", v.seed_mode); } }; } // namespace message_operations } // namespace ros #endif // BAXTER_CORE_MSGS_MESSAGE_SOLVEPOSITIONIKREQUEST_H
0f156e9e79bbd7ba396e82d4142f3ba2c367de5b
455c92a3bd41f89c7e949c72c219d8e2992750ee
/ebalda.cpp
009cdddf35af0c0f4430c78301b5e6099720f448
[]
no_license
berkus/ebalda_uiskogo
b55f897fe0c946661154a1cd1c27a8205684a4f9
c6159a6fd75f7a6ecdf8568831db802c821644e4
refs/heads/master
2023-07-10T22:32:21.896507
2008-07-31T22:20:38
2008-07-31T22:20:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,389
cpp
#include "ebalda.h" #include "config.h" #include <gd.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> Ebalda::Ebalda() : name(0) , step(0) , grown(false) , headrow(0), headcol(0) , width(0), height(0) , ebalda_himself(0) , startrow(0), startcol(0) , endrow(0), endcol(0) { } Ebalda::~Ebalda() { delete ebalda_himself; } void Ebalda::allocate_himself() { delete ebalda_himself; ebalda_himself = 0; if (width > 0 && height > 0) { ebalda_himself = new char [ (width + 2) * (height + 2) ]; if (!ebalda_himself) abort(); // Хуякс!! memset(ebalda_himself, 'A', (width + 2) * (height + 2)); } } #ifdef DEBUG void Ebalda::dump() { fprintf(stderr, "Wild ebalda: %s @ step %d (grown: %d)\n" " Height %d x Width %d\n" " Head @ %d x %d\n" " Start @ %d x %d\n" " End @ %d x %d\n", name, step, grown, height, width, headrow, headcol, startrow, startcol, endrow, endcol); for(int row = 0; row < height+2; row++) // for(int row = startrow; row <= endrow; row++) { fprintf(stderr, "Row %02d: ", row); for(int col = 0; col < width+2; col++) // for(int col = startcol; col <= endcol; col++) { char c = ebalda_himself[ (width + 2) * row + col ]; fprintf(stderr, "%c", (row == headrow && col == headcol) ? toupper(c) : tolower(c)); } fprintf(stderr, "\n"); } fprintf(stderr, "\n"); } #endif // Hatch a fresh new ebalda with a name. void Ebalda::Hatch(const char *n) { name = strdup(n); width = height = 1; allocate_himself(); step = 0; headrow = headcol = 1; // At first, it's only the head. startrow = startcol = 1; endrow = endcol = 1; ebalda_himself[ (width + 2) * headrow + headcol ] = 'B'; grown = false; // Now you can save your newly hatched ebalda and let it live! } // Ebalda on-disk file format is as follows: // NB: Not portable between architectures. // // 'EBAlDA' id // 1 bytes length // length bytes \0 terminated ebalda name // 4 bytes step // 2 bytes head row // 2 bytes head column // 2 bytes width // 2 bytes height // width*height bytes field // Load ebalda from file. bool Ebalda::LoadState(const char *fname) { short temp = 0; char buf[6]; FILE *file = fopen(fname, "rb"); if (!file) return false; fread(buf, 6, 1, file); if (strncmp(buf, "EBAlDA", 6)) return false; fread(&temp, 1, 1, file); // NOT PORTABLE if (temp == 0) return false; name = new char [temp]; if (!name) return false; fread(name, temp, 1, file); fread(&step, 4, 1, file); fread(&headrow, 2, 1, file); fread(&headcol, 2, 1, file); fread(&width, 2, 1, file); fread(&height, 2, 1, file); allocate_himself(); startrow = startcol = 1; endrow = height; endcol = width; grown = false; if (headrow == 0) headrow = 1; if (headcol == 0) headcol = 1; #ifdef DEBUG fprintf(stderr, "**BEFORE LOAD**\n"); dump(); #endif // Now the funky read loop. for(int row = startrow; row <= endrow; row++) { #ifdef DEBUG fprintf(stderr, "reading at %d for %d\n",(width + 2) * row + startcol, endcol - startcol + 1); #endif fread(&ebalda_himself[ (width + 2) * row + startcol ], endcol - startcol + 1, 1, file); } fclose(file); #ifdef DEBUG fprintf(stderr, "**LOADED**\n"); dump(); #endif return true; } // Save ebalda to file. void Ebalda::SaveState(const char *fname) { FILE *file = fopen(fname, "wb"); if (!file) return; short temp; fwrite("EBAlDA", 6, 1, file); temp = strlen(name) + 1; // ughmm, this relies on a) strlen(name) being < 255, b) x86 arch to take address of LSB of temp fwrite(&temp, 1, 1, file); // NOT PORTABLE fwrite(name, strlen(name)+1, 1, file); fwrite(&step, 4, 1, file); fwrite(&headrow, 2, 1, file); fwrite(&headcol, 2, 1, file); temp = endcol - startcol + 1; // new width fwrite(&temp, 2, 1, file); temp = endrow - startrow + 1; // new height fwrite(&temp, 2, 1, file); // Now the funky write loop. for(int row = startrow; row <= endrow; row++) fwrite(&ebalda_himself[ (width + 2) * row + startcol ], endcol - startcol + 1, 1, file); fclose(file); #ifdef DEBUG fprintf(stderr, "**TRANSFORMED**\n"); dump(); #endif } void Ebalda::Grow() { if (grown) return; // Save us from biiig memory trouble. int which = rand() % 2; int dir = rand() % 2; #ifdef DEBUG fprintf(stderr, "Prev row: %d prev col: %d\n", headrow, headcol); #endif if (which == 0) { // change row headrow += dir ? +1 : -1; if (headrow < startrow) startrow--; else if (headrow > endrow) endrow++; } else { // change column headcol += dir ? +1 : -1; if (headcol < startcol) startcol--; else if (headcol > endcol) endcol++; } #ifdef DEBUG fprintf(stderr, "Next row: %d next col: %d\n\n", headrow, headcol); #endif char *p = &ebalda_himself[ (width + 2) * headrow + headcol ]; (*p)++; if (*p > 'J') *p = 'J'; step++; grown = true; } void Ebalda::Draw(const char *outfile) { gdImagePtr im; FILE *pngout; int black, white; char buf[512]; snprintf(buf, 512, "%s Age: %d Size %d x %d", name, step, endcol - startcol + 1, endrow - startrow + 1); im = gdImageCreateTrueColor((width + 1) * DOT_SIZE, (height + 1) * DOT_SIZE + 20); white = gdImageColorAllocate(im, 255, 255, 255); // first allocated color is background black = gdImageColorAllocate(im, 0, 0, 0); int brect[8]; gdImageStringFT(im, brect, white, (char *)FONT_FILE, 11.0, 0.0, /*x*/5, /*y*/(height + 1) * DOT_SIZE + 10, buf); for(int row = startrow; row <= endrow; row++) { for(int col = startcol; col <= endcol; col++) { int color; int c = ebalda_himself[ (width + 2) * row + col ] - 'A'; if (row == headrow && col == headcol) color = gdImageColorAllocate(im, 255, 0, 0); else color = gdImageColorAllocate(im, 250 - c * 25, 250 - c * 25, 250 - c * 25); gdImageFilledRectangle(im, (col - startcol) * DOT_SIZE, (row - startrow) * DOT_SIZE, (col - startcol) * DOT_SIZE + DOT_SIZE - 1, (row - startrow) * DOT_SIZE + DOT_SIZE - 1, color); } } pngout = fopen(outfile, "wb"); gdImagePng(im, pngout); fclose(pngout); if (step % SCREENSHOT_EACH == 0) { snprintf(buf, 512, "%s/%08d.png", SCREENSHOT_DIR, step); pngout = fopen(buf, "wb"); gdImagePng(im, pngout); fclose(pngout); } gdImageDestroy(im); }
96a0a372d4eeeb7afb125b26175e9d4bdc78b2f9
db8d7a002615ffe62f24c5b93a5ace86abe2a95c
/cpp/src/bindings/bindings_artboard.cpp
d6d18de94862e594245f8cab920536134fe2bc24
[]
no_license
callstack-internal/rive-android
ef611b53d9cdb6d955e22a077b6fbeb2536a848c
cecaf66fd34c16b7f93a8e8d4b507aa684ad3d8e
refs/heads/master
2023-04-19T02:29:38.165842
2021-04-27T08:14:27
2021-04-27T08:14:27
357,198,435
0
0
null
2021-04-20T12:50:44
2021-04-12T13:10:54
C++
UTF-8
C++
false
false
2,810
cpp
#include "jni_refs.hpp" #include "helpers/general.hpp" #include "models/jni_renderer.hpp" // From rive-cpp #include "artboard.hpp" #include "animation/linear_animation_instance.hpp" // #include <jni.h> #ifdef __cplusplus extern "C" { #endif using namespace rive_android; // ARTBOARD JNIEXPORT jstring JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeName( JNIEnv *env, jobject thisObj, jlong ref) { rive::Artboard *artboard = (rive::Artboard *)ref; return env->NewStringUTF(artboard->name().c_str()); } JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeFirstAnimation( JNIEnv *env, jobject thisObj, jlong ref) { rive::Artboard *artboard = (rive::Artboard *)ref; return (jlong)artboard->firstAnimation(); } JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationByIndex( JNIEnv *env, jobject thisObj, jlong ref, jint index) { rive::Artboard *artboard = (rive::Artboard *)ref; return (jlong)artboard->animation(index); } JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationByName( JNIEnv *env, jobject thisObj, jlong ref, jstring name) { rive::Artboard *artboard = (rive::Artboard *)ref; return (jlong)artboard->animation( jstring2string(env, name)); } JNIEXPORT jint JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAnimationCount( JNIEnv *env, jobject thisObj, jlong ref) { rive::Artboard *artboard = (rive::Artboard *)ref; return (jint)artboard->animationCount(); } JNIEXPORT void JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeAdvance( JNIEnv *env, jobject thisObj, jlong ref, jfloat elapsedTime) { rive::Artboard *artboard = (rive::Artboard *)ref; artboard->advance(elapsedTime); } JNIEXPORT jlong JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeBounds( JNIEnv *env, jobject thisObj, jlong ref) { rive::Artboard *artboard = (rive::Artboard *)ref; // TODO: garbage collection? auto bounds = new rive::AABB(artboard->bounds()); return (jlong)bounds; } JNIEXPORT void JNICALL Java_app_rive_runtime_kotlin_core_Artboard_nativeDraw( JNIEnv *env, jobject thisObj, jlong ref, jlong rendererRef, jobject rendererObj) { rive::Artboard *artboard = (rive::Artboard *)ref; ::JNIRenderer *renderer = (::JNIRenderer *)rendererRef; artboard->draw(renderer); } #ifdef __cplusplus } #endif
b3dc8bef83d320b25a8b04257498a1aeb545c164
bddae8e711e4daa339e19938a65648bdbff6fe63
/EventHandler.h
027f1202e7a042745b378db7015d7a4753a6c380
[]
no_license
rrcmenezes/BeeSmartIOTIR
475d11cc3a0bf5c68a6d76f8abc67e6340cc2ae8
336abea6d2b7c8afbee3f5baf799d259119420d9
refs/heads/main
2023-04-16T16:17:25.668318
2021-04-22T17:02:58
2021-04-22T17:02:58
360,517,646
0
0
null
null
null
null
UTF-8
C++
false
false
664
h
#ifndef _EVENTHANDLER_H_ #define _EVENTHANDLER_H_ #include <arduino.h> class CEventHandler { unsigned long ulLstMillis; unsigned long ulCurrMillis; protected: unsigned long ulMinutes; bool bConditionsOK; CEventHandler(unsigned long ulMinutesParam); public: virtual void Save(int *pi_FilePointerPatam); virtual void Load(int *pi_FilePointerPatam); void Update(); virtual int GetEventType() = 0; virtual void CheckConditions() = 0; virtual String PrintExpression() = 0; bool ConditionsOK() { return bConditionsOK; }; void SetInterval(unsigned long ulMinutesParam) { ulMinutes = ulMinutesParam; ulLstMillis = millis();} ; }; #endif
0d741b53ca7fec076487b7a33ea07e9d2d2821c5
8be1079a694a31c1c69d296b3afb8180e5969238
/BFSDFS/game.cpp
fc4e9cc21c3079f34f6359ae22bf5c5c7da5c84d
[]
no_license
haoyuanz13/Codings
7a2a2b47f95ea7a1e4e419f7aab90eb1d8771c8c
ba8d20df6bf27089c9b5bce9d87cd9de44cc2897
refs/heads/master
2022-04-17T21:08:32.256496
2020-04-12T04:10:46
2020-04-12T04:10:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,276
cpp
#include <vector> #include <iostream> #include <queue> #include <unordered_map> using namespace std; void pascalTriangle(int k) { vector<vector<int>> pas; vector<int> init {1}; pas.push_back(init); vector<int> pre = pas.front(); for (int i = 1; i < k; i ++) { vector<int> cur {1}; for (int c = 1; c < i; c ++) { cur.push_back(pre[c - 1] + pre[c]); } cur.push_back(1); pre = cur; pas.push_back(cur); } for (int i = 0; i < k; i ++) { for (int c = 0; c < pas[i].size(); c ++) cout << pas[i][c] << " "; cout << "\n"; } return; } // check circle vector<int> turnR(vector<int> dir) { int x = 1 * dir[1]; int y = -1 * dir[0]; vector<int> res {x, y}; return res; } vector<int> turnL(vector<int> dir) { int x = -1 * dir[1]; int y = 1 * dir[0]; vector<int> res {x, y}; return res; } vector <string> doesCircleExist(vector <string> commands) { vector<string> res; for (int i = 0; i < commands.size(); i ++) { string cmd_cur = commands[i]; int len = cmd_cur.size(); vector<int> dir {0, 1}; int x = 0, y = 0; for (int j = 0; j < 4; j ++) { for (int k = 0; k < len; k ++) { char cc = cmd_cur.at(k); if (cc == 'G') { x += dir[0]; y += dir[1]; } else if (cc == 'R') dir = turnR(dir); else if (cc == 'L') dir = turnL(dir); } } if (x == 0 && y == 0) res.push_back("YES"); else res.push_back("NO"); } return res; } // struct UndirectedGraphNode { // int label; // vector<UndirectedGraphNode*> neighbors; // UndirectedGraphNode(int x) : label(x) {}; // }; // UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { // if(node == nullptr) // return node; // UndirectedGraphNode* newnode = new UndirectedGraphNode(node->label); // unordered_map<int, UndirectedGraphNode*> hash; // hash[node->label] = newnode; // // store original node list // queue<UndirectedGraphNode*> que; // que.push(node); // while (!que.empty()) { // UndirectedGraphNode* cur = que.front(); // que.pop(); // vector<UndirectedGraphNode*> cur_nei = cur->neighbors; // // traverse all neighbors // for (int i = 0; i < cur_nei.size(); i ++) { // UndirectedGraphNode* cur_node_nei = cur_nei[i]; // if (hash.count(cur_node_nei->label) <= 0) { // // clone // UndirectedGraphNode* clone_nei = new UndirectedGraphNode(cur_node_nei->label); // hash[clone_nei->label] = clone_nei; // // push original node into queue // que.push(cur_node_nei); // } // end if // hash[cur->label]->neighbors.push_back(hash[cur_node_nei->label]); // } // end for // } // end while // return newnode; // } // int bombGame(vector<vector<char>>& grid) { // if (grid.empty() || grid[0].empty()) // return 0; // int row = grid.size(), col = grid[0].size(); // int maxE = 0; // // count killed enemy in row direction // int kill_r = 0; // // count killed enemy in col direction // int kill_c[col] = {}; // for (int r = 0; r < row; r ++) { // for (int c = 0; c < col; c ++) { // // count killed enemy in row direction // if (c == 0 || grid[r][c - 1] == 'W') { // kill_r = 0; // for (int k = c; k < col && grid[r][k] != 'W'; k ++) // kill_r += (grid[r][k] == 'E')? 1 : 0; // } // // count killed enemy in column direction // if (r == 0 || grid[r - 1][c] == 'W') { // kill_c[c] = 0; // for (int k = r; k < row && grid[k][c] != 'W'; k ++) // kill_c[c] += (grid[k][c] == 'E')? 1 : 0; // } // // only count for empty space // if (grid[r][c] == '0') // maxE = (maxE > kill_r + kill_c[c])? maxE : kill_r + kill_c[c]; // } // } // return maxE; // } // vector<vector<int>> dir {{1, 0}, {-1, 0}, {0, -1}, {0, 1}, // {1, 1}, {-1, -1}, {-1, 1}, {1, -1}}; // int detect(vector<vector<int>> board, int row, int col, int r, int c) { // int live = 0; // for (int i = 0; i < 8; i ++) { // int next_r = r + dir[i][0]; // int next_c = c + dir[i][1]; // if (next_r < 0 || next_r >= row || next_c < 0 || next_c >= col) // continue; // live += (board[next_r][next_c]) & 1; // } // return live; // } // void gameOfLife(vector<vector<int>>& board) { // if (board.empty() || board[0].empty()) // return; // int row = board,size(), col = board[0].size(); // for (int r = 0; r < row; r ++) { // for (int c = 0; c < col; c ++) { // int num_live = detect(board, row, col, r, c); // if (board[r][c] == 1 && num_live >= 2 && num_live <= 3) // board[r][c] = 3; // else if (board[r][c] == 0 && num_live == 3) // board[r][c] = 2; // } // } // for (int r = 0; r < row; r ++) { // for (int c = 0; c < col; c ++) // board[r][c] >>= 1; // } // return; // } int main() { // vector<vector<char>> grid {{'0', 'E', '0', '0'}, // {'E', '0', 'W', 'E'}, // {'0', 'E', '0', '0'}}; // cout << bombGame(grid) << endl; pascalTriangle(4); }
26dea91ff8a4979f4ee9d77d9d7ff8457dcc60ee
97bd2bc90481e59da387772cd414f07516e6f2cd
/pastel/sys/bit/highest_bit.h
664ea7b759f78e72034ead473b4a8407493e6358
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
kaba2/pastel
c0371639be222cfa00252420c54057a54a93a4a3
c7fb78fff3cbd977b884e54e21651f6346165ff5
refs/heads/master
2021-11-12T00:12:49.343600
2021-10-31T04:18:28
2021-10-31T04:18:28
231,507,632
3
2
null
null
null
null
UTF-8
C++
false
false
559
h
// Description: Index of the highest bit // Documentation: bit_tricks.txt #ifndef PASTELSYS_HIGHEST_BIT_H #define PASTELSYS_HIGHEST_BIT_H #include "pastel/sys/integer/finite_integer_concept.h" #include "pastel/sys/mytypes.h" namespace Pastel { //! Returns the index of the highest 1-bit of the given integer. /*! returns: The index of the highest 1-bit, if non-zero. Otherwise -1. */ template <typename Finite_Integer> integer highestBit(const Finite_Integer& data); } #include "pastel/sys/bit/highest_bit.hpp" #endif
f04df0e8a6dffbf5669c909593bc581f97fe720a
143da2290a541ddaf270b3ce81523b41bd9345df
/test/camera_corner_detect/source/main.cpp
d03cbf81836963bb61d780f5293d0fbab488b18e
[]
no_license
premsasidharan/mmfcpp
1edaaf6f9fc0578edddc36a163c0bf3a2d3a8afc
d0a9619c8d3ee467ec9e7dcddc9bd5ecd87c4aa7
refs/heads/master
2021-01-01T06:54:07.492622
2013-04-13T19:14:12
2013-04-13T19:14:12
33,697,553
1
1
null
null
null
null
UTF-8
C++
false
false
658
cpp
#include <QApplication> #include <gl_widget.h> #include <X11/Xlib.h> int main(int argc, char** argv) { if (argc < 4) { printf("\nUsage\n%s [V4L2 camera path] [width] [height]", argv[0]); printf("\nEg:- %s /dev/video0 640 480\n", argv[0]); exit(0); } int w, h; XInitThreads(); QApplication app(argc, argv); QGLFormat format; format.setVersion(3, 1); format.setProfile(QGLFormat::CoreProfile); format.setSampleBuffers(true); w = atoi(argv[2]); h = atoi(argv[3]); Gl_widget window(w, h, QString(argv[1]), format); window.resize(w, h); window.show(); return app.exec(); }
[ "[email protected]@7add919e-d01b-36b3-b92c-1f8e5742f5db" ]
[email protected]@7add919e-d01b-36b3-b92c-1f8e5742f5db
3d2cc237fc9cccde02dcb5906fce2f8e4793b046
dbf7546520435e088b47e19bfd04c0c6abdd0e05
/5_pySerialRead/pythonArduino/pythonArduino.ino
6eb22ca9ee4df2e72756748e9c9c1f304a1d34f8
[]
no_license
heitorrapela/ArduinoWorkshop
fa85b16b81b09a3096f088c5a3e7439143cacdef
caa0fa24baba5aca48457df91b7e0969ea56bef2
refs/heads/master
2021-09-05T23:27:17.596877
2018-01-31T16:36:23
2018-01-31T16:36:23
105,684,389
1
1
null
null
null
null
UTF-8
C++
false
false
903
ino
/* Blink - Modificado Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ // Pin 13 has an LED connected on most Arduino boards. // give it a name: int led = 13; // the setup routine runs once when you press reset: void setup() { // initialize the digital pin as an output. Serial.begin(9600); pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void loop() { int i = 1; if(i == 1) { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) Serial.println("Led Aceso"); delay(1000); // wait for a second i = 0; } if(i == 0) { digitalWrite(led, LOW); // turn the LED off by making the voltage LOW Serial.println("Led Apagado"); delay(1000); // wait for a second i = 0; } }
88e612514df15a2fa60d8b12f546f3cb8273c674
12c080b81ca5a7aaf87d4199e58dfe08b9670b7f
/80-Remove Duplicates from Sorted Array II.cpp
e4e2816a2822a26b96c4878183adb5d962e4281c
[]
no_license
PhoenixDD/LeetCode
23970d3d5485f0c67ecc46afbf07c296a14f7a4d
04d78870f56dc7c5057a8b22e5c3ed87ae04a8bf
refs/heads/master
2021-01-01T19:21:32.795867
2020-11-26T05:12:48
2020-11-26T05:12:48
98,563,765
0
0
null
null
null
null
UTF-8
C++
false
false
413
cpp
class Solution { public: int removeDuplicates(vector<int>& nums) { int start=0; for(int i=0;i<nums.size();i++) { if(i<nums.size()-2&&nums[i]==nums[i+1]&&nums[i]==nums[i+2]) while(i<nums.size()-2&&nums[i+1]==nums[i+2]) i++; if(i<nums.size()) nums[start++]=nums[i]; } return start; } };
fa54ebbd5f937f492a866928b951dca737a616f9
2f49e6f93a99523636f14f399d784f682adfd142
/Sources/3rdparty/PhysX-3.2.2_PC_SDK_Core/Samples/SampleBase/Picking.cpp
c00489481241fc9402b7513236c57b90a59fce61
[]
no_license
overflowsc/inf4715
26a1e1850b0fda13a19c1562c73d56ee5f26bcde
d9dc62793dfa58f3bb7b146033e4084a8ecc4bc7
refs/heads/master
2021-01-18T07:43:49.197883
2015-02-08T08:55:53
2015-02-08T08:55:53
30,485,685
0
0
null
2015-02-08T08:45:44
2015-02-08T08:45:43
null
UTF-8
C++
false
false
8,618
cpp
// This code contains NVIDIA Confidential Information and is disclosed to you // under a form of NVIDIA software license agreement provided separately to you. // // Notice // NVIDIA Corporation and its licensors retain all intellectual property and // proprietary rights in and to this software and related documentation and // any modifications thereto. Any use, reproduction, disclosure, or // distribution of this software and related documentation without an express // license agreement from NVIDIA Corporation is strictly prohibited. // // ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES // NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO // THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, // MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. // // Information and code furnished is believed to be accurate and reliable. // However, NVIDIA Corporation assumes no responsibility for the consequences of use of such // information or for any infringement of patents or other rights of third parties that may // result from its use. No license is granted by implication or otherwise under any patent // or patent rights of NVIDIA Corporation. Details are subject to change without notice. // This code supersedes and replaces all information previously supplied. // NVIDIA Corporation products are not authorized for use as critical // components in life support devices or systems without express written approval of // NVIDIA Corporation. // // Copyright (c) 2008-2012 NVIDIA Corporation. All rights reserved. // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. #include "PxScene.h" #include "PxSceneQueryReport.h" #include "PxBatchQueryDesc.h" #include "extensions/PxJoint.h" #include "PxRigidDynamic.h" #include "extensions/PxDistanceJoint.h" #include "extensions/PxSphericalJoint.h" #include "PxArticulationLink.h" #include "PxShape.h" #include "Picking.h" #include "RendererMemoryMacros.h" #if defined(PX_X360) || defined(PX_LINUX) || defined(PX_APPLE) #include <stdio.h> #endif using namespace physx; // PT: please DO NOT indent the whole file Picking::Picking(PhysXSample& frame) : mSelectedActor (NULL), mMouseJoint (NULL), mMouseActor (NULL), mDistanceToPicked (0.0f), mMouseScreenX (0), mMouseScreenY (0), mFrame (frame) { } Picking::~Picking() {} bool Picking::isPicked() const { return mMouseJoint!=0; } void Picking::moveCursor(PxI32 x, PxI32 y) { mMouseScreenX = x; mMouseScreenY = y; } /*void Picking::moveCursor(PxReal deltaDepth) { const PxReal range[2] = { 0.0f, 1.0f }; const PxReal r = (range[1] - range[0]); const PxReal d = (mMouseDepth - range[0])/r; const PxReal delta = deltaDepth*0.02f*(1.0f - d); mMouseDepth = PxClamp(mMouseDepth + delta, range[0], range[1]); }*/ void Picking::tick() { if(mMouseJoint) moveActor(mMouseScreenX,mMouseScreenY); } void Picking::computeCameraRay(PxVec3& orig, PxVec3& dir, PxI32 x, PxI32 y) const { const PxVec3& camPos = mFrame.getCamera().getPos(); // compute picking ray // const PxVec3 rayOrig = unProject(x, y, 0.0f); // PT: what the frell is that? const PxVec3 rayOrig = camPos; const PxVec3 rayDir = (unProject(x, y, 1.0f) - rayOrig).getNormalized(); orig = rayOrig; dir = rayDir; } bool Picking::pick(int x, int y) { PxScene& scene = mFrame.getActiveScene(); PxVec3 rayOrig, rayDir; computeCameraRay(rayOrig, rayDir, x, y); // raycast rigid bodies in scene PxRaycastHit hit; scene.raycastSingle(rayOrig, rayDir, PX_MAX_F32, PxSceneQueryFlag::eIMPACT, hit, PxSceneQueryFilterData()); if(hit.shape) { const char* shapeName = hit.shape->getName(); if(shapeName) printf("Picked shape name: %s\n", shapeName); PxRigidActor& actor = hit.shape->getActor(); mSelectedActor = static_cast<PxRigidActor*>(hit.shape->getActor().is<PxRigidDynamic>()); if(!mSelectedActor) mSelectedActor = static_cast<PxRigidActor*>(hit.shape->getActor().is<PxArticulationLink>()); } else mSelectedActor = 0; if(mSelectedActor) { printf("Actor '%s' picked! (userData: %p)\n", mSelectedActor->getName(), mSelectedActor->userData); //if its a dynamic rigid body, joint it for dragging purposes: grabActor(hit.impact, rayOrig); } #ifdef VISUALIZE_PICKING_RAYS Ray ray; ray.origin = rayOrig; ray.dir = rayDir; mRays.push_back(ray); #endif return true; } //----------------------------------------------------------------------------// PxActor* Picking::letGo() { // let go any picked actor if(mMouseJoint) { mMouseJoint->release(); mMouseJoint = NULL; // SAFE_RELEASE(mMouseActor); // PT: releasing immediately crashes mFrame.removeActor(mMouseActor); mMouseActor = NULL; } PxActor* returnedActor = mSelectedActor; mSelectedActor = NULL; return returnedActor; } //----------------------------------------------------------------------------// void Picking::grabActor(const PxVec3& worldImpact, const PxVec3& rayOrigin) { if(!mSelectedActor || (mSelectedActor->getType() != PxActorType::eRIGID_DYNAMIC && mSelectedActor->getType() != PxActorType::eARTICULATION_LINK)) return; PxScene& scene = mFrame.getActiveScene(); PxPhysics& physics = scene.getPhysics(); //create a shape less actor for the mouse { mMouseActor = physics.createRigidDynamic(PxTransform(worldImpact, PxQuat::createIdentity())); mMouseActor->setRigidDynamicFlag(PxRigidDynamicFlag::eKINEMATIC, true); mMouseActor->setMass(1.0f); mMouseActor->setMassSpaceInertiaTensor(PxVec3(1.0f, 1.0f, 1.0f)); scene.addActor(*mMouseActor); mFrame.addPhysicsActors(mMouseActor); } PxRigidActor* pickedActor = static_cast<PxRigidActor*>(mSelectedActor); #if USE_D6_JOINT_FOR_MOUSE mMouseJoint = PxD6JointCreate( physics, mMouseActor, PxTransform::createIdentity(), pickedActor, PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact))); #elif USE_SPHERICAL_JOINT_FOR_MOUSE mMouseJoint = PxSphericalJointCreate(physics, mMouseActor, PxTransform::createIdentity(), pickedActor, PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact))); #else mMouseJoint = PxDistanceJointCreate(physics, mMouseActor, PxTransform::createIdentity(), pickedActor, PxTransform(pickedActor->getGlobalPose().transformInv(worldImpact))); mMouseJoint->setMaxDistance(0.0f); mMouseJoint->setMinDistance(0.0f); mMouseJoint->setDistanceJointFlags(PxDistanceJointFlag::eMAX_DISTANCE_ENABLED); #endif mDistanceToPicked = (worldImpact - rayOrigin).magnitude(); } //----------------------------------------------------------------------------// void Picking::moveActor(int x, int y) { if(!mMouseActor) return; PxVec3 rayOrig, rayDir; computeCameraRay(rayOrig, rayDir, x, y); const PxVec3 pos = rayOrig + mDistanceToPicked * rayDir; mMouseActor->setKinematicTarget(PxTransform(pos, PxQuat::createIdentity())); } //----------------------------------------------------------------------------// PxVec3 Picking::unProject(int x, int y, float depth) const { SampleRenderer::Renderer* renderer = mFrame.getRenderer(); const SampleRenderer::RendererProjection& projection = mFrame.getCamera().getProjMatrix(); const PxTransform view = mFrame.getCamera().getViewMatrix().getInverse(); PxU32 windowWidth = 0; PxU32 windowHeight = 0; renderer->getWindowSize(windowWidth, windowHeight); const PxF32 outX = (float)x / (float)windowWidth; const PxF32 outY = (float)y / (float)windowHeight; return SampleRenderer::unproject(projection, view, outX * 2 -1, outY * 2 -1, depth * 2 - 1); } //----------------------------------------------------------------------------// void Picking::project(const physx::PxVec3& v, int& xi, int& yi, float& depth) const { SampleRenderer::Renderer* renderer = mFrame.getRenderer(); SampleRenderer::RendererProjection projection = mFrame.getCamera().getProjMatrix(); const PxTransform view = mFrame.getCamera().getViewMatrix().getInverse(); PxVec3 pos = SampleRenderer::project(projection, view, v); ///* Map x, y and z to range 0-1 */ pos.x = (pos.x + 1 ) * 0.5f; pos.y = (pos.y + 1 ) * 0.5f; pos.z = (pos.z + 1 ) * 0.5f; PxU32 windowWidth = 0; PxU32 windowHeight = 0; renderer->getWindowSize(windowWidth, windowHeight); /* Map x,y to viewport */ pos.x *= windowWidth; pos.y *= windowHeight; depth = (float)pos.z; xi = (int)(pos.x + 0.5); yi = (int)(pos.y + 0.5); }
01e687a434933f16c637d79bd1defea7045450cf
d15cf536963fab11e42d85bda423da5f2a58dc57
/c6/overload1.cpp
ee2f604cd53481c3dc5ae90543bdad91bdeb529b
[]
no_license
mcmiloy/cpp_primer
5692e8857961e1c7a7dba46e1553e7aace61bc4d
c93a50cd84d195e8cf997da7a925030925731cc7
refs/heads/master
2020-03-15T18:41:10.377834
2018-05-15T19:32:15
2018-05-15T19:32:15
132,289,904
0
0
null
null
null
null
UTF-8
C++
false
false
491
cpp
#include <iostream> #include <vector> #include <string> using std::cin; using std::cout; using std::endl; using std::vector; using std::string; int mysum(int i, int j){ return i + j; } void default_args(int i = 0){ cout << i << endl; } int mysum(double i, const int j){ return i*j; } int main(){ cout << mysum(3,4) << endl; // this uses mysum with two ints cout << mysum(3.0,4) << endl; // this use mysun with one int, two doubles default_args(); return 0; }
56e00354071db7b2ffa95ab6e93995ab650dcb4e
202087279de4b66457eac88cf1b7d7c21769fa53
/ExploringScaleSymmetry/Chapter6/ch6_figure17.cpp
f0b2846dface5171f388c69b95d5c8860fdcd988
[ "MIT" ]
permissive
TGlad/ExploringScaleSymmetry
433475d0661914a010c55f4f06e03b53fde476e4
25b2dae0279a0ac26f6bae2277d3b76a1cda8b04
refs/heads/master
2021-07-02T09:13:26.160214
2021-01-27T11:07:14
2021-01-27T11:07:14
217,837,988
0
0
null
null
null
null
UTF-8
C++
false
false
5,721
cpp
// Thomas Lowe, 2020. // Generates an image of the colour-symmetric and scale-symmetric three-colour automaton, on a symmetric hexagon of seed points. // The method generates to a larger image first (called out), then downscales to a smaller one. The result of this is that // the dense and repeated mixture of all three colours in the Koch-like fractal regions appears as as a constant colour (a mix of all three). #include "stdafx.h" #define STB_IMAGE_WRITE_IMPLEMENTATION #include "imagewrite.h" #include <set> // resolution: static int automataSize = 81 * 3 * 3 * 3; // the colours of the states (colours[0] is just background). static Vector3d colours[5] = { Vector3d(0.5, 0.5, 0.5), Vector3d(40, 220, 70) / 255.0, Vector3d(250, 210, 0) / 255.0, Vector3d(255, 0, 0) / 255.0, Vector3d(20, 0, 255) / 255.0 }; static int width = (automataSize * 31) / 10; static int height = width; static int fullWidth = width; static void putpixel(vector<BYTE> &image, const Vector2i &pos, const Vector3d &col) { if (pos[0] < 0 || pos[0] >= width || pos[1] < 0 || pos[1] >= height) return; int ind = 3 * (pos[0] + width*pos[1]); for (int i = 0; i < 3; i++) image[ind + i] = (BYTE)(255.0*col[i]); } static void putpix(vector<BYTE> &out, const Vector2i &pos, int shade) { if (pos[0] < 0 || pos[0] >= fullWidth || pos[1] < 0 || pos[1] >= fullWidth) return; out[pos[0] + fullWidth*pos[1]] = shade; } static int getpix(vector<BYTE> &out, const Vector2i &pos) { if (pos[0] < 0 || pos[0] >= fullWidth || pos[1] < 0 || pos[1] >= fullWidth) return 0; return out[pos[0] + fullWidth*pos[1]]; } static Vector2i toVector2i(const Vector2d &pos) { Vector2i vec; vec[0] = (int)pos[0]; if ((double)vec[0] > pos[0]) vec[0]--; vec[1] = (int)pos[1]; if ((double)vec[1] > pos[1]) vec[1]--; return vec; } // adds a mid pixel between three parent pixels bool addMid(vector<BYTE> &out, const Vector2i &pos0, const Vector2i &pos1, const Vector2i &pos2) { Vector2i mid = (pos0 + pos1 + pos2) / 3; if (mid[0] < 0 || mid[0] >= width || mid[1] < 0 || mid[1] >= width) return false; if (getpix(out, mid) > 0) return false; int col0 = getpix(out, pos0); int col1 = getpix(out, pos1); int col2 = getpix(out, pos2); if (col0 == 0) col0 = 1; if (col1 == 0) col1 = 1; if (col2 == 0) col2 = 1; if (col0 == 0 || col1 == 0 || col2 == 0) return false; int colour; if (col0 == col1 && col0 == col2) // positivity colour = col0; // ambiguous case else if (col0 == col1) colour = col0; else if (col0 == col2) colour = col0; else if (col1 == col2) colour = col1; // if there's not 3 the same, or 2 the same, then there must be 1 of each else // 012=3, 013=4, 023=5 123=6 --> 3, 2, 1, 0, i.e. 6 - sum. .: 10-sum colour = 10 - (col0 + col1 + col2); putpix(out, mid, colour); return true; } int chapter6Figure17() { vector<BYTE> out(width*height); // .bmp pixel buffer int startWidth = width; memset(&out[0], 0, out.size() * sizeof(BYTE)); Vector2d xaxis[2] = { Vector2d(1, 0), Vector2d(cos(30.0*pi / 180.0), sin(30.0*pi / 180.0)) }; Vector2d yaxis[2] = { Vector2d(cos(60.0*pi / 180.0), sin(60.0*pi / 180.0)), Vector2d(cos(30.0*pi / 180.0), -sin(30.0*pi / 180.0)) }; srand(120); bool found = true; int scale = automataSize; Vector2i offset(width / 2, width / 2); // initialise int count = 1; for (int i = -count; i <= count; i++) { for (int j = -count; j <= count; j++) { int col = 0; if (i == 0 && abs(j) == 1) col = 2; else if (abs(i) == 1 && j == 0) col = 3; else if (i == 1 && j == -1) col = 4; else if (i == -1 && j == 1) col = 4; else col = 1; putpix(out, offset + Vector2i(i, j)*scale, col); } } int k = 0; do { found = false; int count = (int)(1.0*(double)width / (double)scale); for (int i = -count; i < count; i++) { for (int j = -count; j < count; j++) { Vector2i pos0 = Vector2i(i, j)*scale; Vector2i pos1 = Vector2i(i+1, j)*scale; Vector2i pos2 = Vector2i(i, j+1)*scale; Vector2i pos3 = Vector2i(i+1, j+1)*scale; found |= addMid(out, offset + pos0, offset + pos1, offset + pos2); found |= addMid(out, offset + pos1, offset + pos2, offset + pos3); } } if (!found) break; scale /= 3; count = (int)(1.0*(double)width / scale); for (int i = -count; i < count; i++) { for (int j = -count; j < count; j++) { Vector2i xAxis = Vector2i(2, -1)*scale; Vector2i yAxis = Vector2i(1, 1)*scale; Vector2i pos0 = i*xAxis + j*yAxis; Vector2i pos1 = (i+1)*xAxis + j*yAxis; Vector2i pos2 = i*xAxis + (j+1)*yAxis; Vector2i pos3 = (i+1)*xAxis + (j+1)*yAxis; found |= addMid(out, offset + pos0, offset + pos1, offset + pos2); found |= addMid(out, offset + pos1, offset + pos2, offset + pos3); } } } while (found); width /= 2; height /= 2; vector<BYTE> image(width*height*3); // .bmp pixel buffer memset(&image[0], 0, image.size() * sizeof(BYTE)); for (int i = 0; i < width; i++) { for (int j = 0; j < height; j++) { int x = 2 * i + (height / 2 - j); int y = 2 * j; Vector3d col(0, 0, 0); col += colours[getpix(out, Vector2i(x, y))]; col += colours[getpix(out, Vector2i(x, y + 1))]; col += colours[getpix(out, Vector2i(x + 1, y))]; col += colours[getpix(out, Vector2i(x + 1, y + 1))]; putpixel(image, Vector2i(i, j), col / 4.0); } } stbi_write_png("three_colour_automaton.png", width, height, 3, &image[0], 3*width); return 0; }
83abb6b2b3e2535e54107d735bf91fb685646541
59424c01a2f918da51f16cce7bbb465af22103d6
/Server/server_state.cc
9336a64d162bf61553be17303d83094b38f11660
[]
no_license
henlindemreed/rtchat
522997478b9b83f0ab7e3a9e95c35825e6a85847
74a6cd006ee5928bb51eabc6d27b10ab9f952691
refs/heads/main
2023-05-01T05:47:48.595012
2021-05-10T18:13:27
2021-05-10T18:13:27
347,539,463
0
0
null
null
null
null
UTF-8
C++
false
false
2,504
cc
#include "server_state.hh" #include <algorithm> // Constructor sstate::sstate() : rooms{rmls(0)}, next_id{1}, mtx{} {} // Destructor sstate::~sstate(){} std::string sstate::to_string(){ std::shared_lock<std::shared_mutex> state_lock(mtx); std::string ans = ""; for(auto &rm : rooms) { ans += std::to_string(rm.id) + SEP; for(auto &user: rm.users) { ans += user.name + SEP; } ans += '\n'; } return ans; } std::string sstate::rm_string(id_t id){ std::shared_lock<std::shared_mutex> state_lock(mtx); std::string ans = ""; auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;}); for(auto &user : rm->users) { char buf[80]; inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf)); ans += user.name + SEP + buf + SEP; } return ans; } sstate::id_t sstate::new_room(sstate::user_info user){ std::unique_lock<std::shared_mutex> state_lock(mtx); rooms.emplace_back(sstate::room{std::vector<sstate::user_info>(1), next_id}); rooms.back().users.push_back(user); return next_id++; } void sstate::add_to_room(sstate::id_t id, sstate::user_info user){ std::unique_lock<std::shared_mutex> state_lock(mtx); auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;}); if(rm != rooms.end()) { char buf[80]; inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf)); std::string msg = std::string(NEWUSER) + SEP + user.name + SEP + buf; for(auto &user: rm->users){ send(user.sock, msg.c_str(), msg.length(), 0); } rm->users.push_back(user); } } void sstate::rem_from_room(sstate::id_t id, sstate::user_info user){ std::unique_lock<std::shared_mutex> state_lock(mtx); auto rm = std::find_if(rooms.begin(), rooms.end(), [id](auto &x){return x.id == id;}); if(rm != rooms.end()) { rm->users.erase(std::find(rm->users.begin(), rm->users.end(), user)); char buf[80]; inet_ntop(AF_INET6, &user.addr.sin6_addr, buf, sizeof(buf)); std::string msg = std::string(LEAVEUSER) + SEP + user.name + SEP + buf; for(auto &user: rm->users){ send(user.sock, msg.c_str(), msg.length(), 0); } } } bool operator==(const sstate::room &a, const sstate::room &b){ return a.id == b.id; } bool operator==(const sstate::user_info &a, const sstate::user_info &b){ return a.sock == b.sock; }
2f3dc314d8496fad4e45507f20a430b9b7f31b4c
630e5fa4fec4cee4b6936eec74a726550406c11f
/src/libzerocoin/Denominations.cpp
2f0dfa562643c3d2e1e23e77f55d07b8f04050fb
[ "MIT" ]
permissive
crypTuron/PengolinCoin-Core
4d815d25de927d42dc890379d15738ee728c525e
3d6c66dd930110075ff44ee6f5a4364c533becd7
refs/heads/master
2022-11-24T21:17:56.271853
2020-07-23T13:49:52
2020-07-23T13:49:52
282,408,670
0
0
MIT
2020-07-25T09:04:22
2020-07-25T09:04:21
null
UTF-8
C++
false
false
3,978
cpp
// Copyright (c) 2017-2019 The PENGOLINCOIN developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "Denominations.h" #include "amount.h" namespace libzerocoin { // All denomination values should only exist in these routines for consistency. // For serialization/unserialization enums are converted to int (denoted enumvalue in function name) CoinDenomination IntToZerocoinDenomination(int64_t amount) { CoinDenomination denomination; switch (amount) { case 1: denomination = CoinDenomination::ZQ_ONE; break; case 5: denomination = CoinDenomination::ZQ_FIVE; break; case 10: denomination = CoinDenomination::ZQ_TEN; break; case 50: denomination = CoinDenomination::ZQ_FIFTY; break; case 100: denomination = CoinDenomination::ZQ_ONE_HUNDRED; break; case 500: denomination = CoinDenomination::ZQ_FIVE_HUNDRED; break; case 1000: denomination = CoinDenomination::ZQ_ONE_THOUSAND; break; case 5000: denomination = CoinDenomination::ZQ_FIVE_THOUSAND; break; default: //not a valid denomination denomination = CoinDenomination::ZQ_ERROR; break; } return denomination; } int64_t ZerocoinDenominationToInt(const CoinDenomination& denomination) { int64_t Value = 0; switch (denomination) { case CoinDenomination::ZQ_ONE: Value = 1; break; case CoinDenomination::ZQ_FIVE: Value = 5; break; case CoinDenomination::ZQ_TEN: Value = 10; break; case CoinDenomination::ZQ_FIFTY : Value = 50; break; case CoinDenomination::ZQ_ONE_HUNDRED: Value = 100; break; case CoinDenomination::ZQ_FIVE_HUNDRED: Value = 500; break; case CoinDenomination::ZQ_ONE_THOUSAND: Value = 1000; break; case CoinDenomination::ZQ_FIVE_THOUSAND: Value = 5000; break; default: // Error Case Value = 0; break; } return Value; } CoinDenomination AmountToZerocoinDenomination(CAmount amount) { // Check to make sure amount is an exact integer number of COINS CAmount residual_amount = amount - COIN * (amount / COIN); if (residual_amount == 0) { return IntToZerocoinDenomination(amount/COIN); } else { return CoinDenomination::ZQ_ERROR; } } // return the highest denomination that is less than or equal to the amount given // use case: converting PGO to zPGO without user worrying about denomination math themselves CoinDenomination AmountToClosestDenomination(CAmount nAmount, CAmount& nRemaining) { if (nAmount < 1 * COIN) return ZQ_ERROR; CAmount nConvert = nAmount / COIN; CoinDenomination denomination = ZQ_ERROR; for (unsigned int i = 0; i < zerocoinDenomList.size(); i++) { denomination = zerocoinDenomList[i]; //exact match if (nConvert == denomination) { nRemaining = 0; return denomination; } //we are beyond the value, use previous denomination if (denomination > nConvert && i) { CoinDenomination d = zerocoinDenomList[i - 1]; nRemaining = nConvert - d; return d; } } //last denomination, the highest value possible nRemaining = nConvert - denomination; return denomination; } CAmount ZerocoinDenominationToAmount(const CoinDenomination& denomination) { CAmount nValue = COIN * ZerocoinDenominationToInt(denomination); return nValue; } CoinDenomination get_denomination(std::string denomAmount) { int64_t val = std::stoi(denomAmount); return IntToZerocoinDenomination(val); } int64_t get_amount(std::string denomAmount) { int64_t nAmount = 0; CoinDenomination denom = get_denomination(denomAmount); if (denom == ZQ_ERROR) { // SHOULD WE THROW EXCEPTION or Something? nAmount = 0; } else { nAmount = ZerocoinDenominationToAmount(denom); } return nAmount; } } /* namespace libzerocoin */
f13815ffc9392357b78252eac9e6699e068b7c5d
24004e1c3b8005af26d5890091d3c207427a799e
/Win32/NXOPEN/NXOpen/Mechatronics_ObjectSinkBuilder.hxx
0a248ab3b8fd29a65401c510f875bafa1d3b4eaf
[]
no_license
15831944/PHStart
068ca6f86b736a9cc857d7db391b2f20d2f52ba9
f79280bca2ec7e5f344067ead05f98b7d592ae39
refs/heads/master
2022-02-20T04:07:46.994182
2019-09-29T06:15:37
2019-09-29T06:15:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,318
hxx
#ifndef NXOpen_MECHATRONICS_OBJECTSINKBUILDER_HXX_INCLUDED #define NXOpen_MECHATRONICS_OBJECTSINKBUILDER_HXX_INCLUDED //-------------------------------------------------------------------------- // Header for C++ interface to JA API //-------------------------------------------------------------------------- // // Source File: // Mechatronics_ObjectSinkBuilder.ja // // Generated by: // apiwrap // // WARNING: // This file is automatically generated - do not edit by hand // #ifdef _MSC_VER #pragma once #endif #include <NXOpen/NXDeprecation.hxx> #include <vector> #include <NXOpen/NXString.hxx> #include <NXOpen/Callback.hxx> #include <NXOpen/Builder.hxx> #include <NXOpen/Mechatronics_ObjectSinkBuilder.hxx> #include <NXOpen/SelectObjectList.hxx> #include <NXOpen/libnxopencpp_mechatronics_exports.hxx> #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable:4996) #endif #ifdef __GNUC__ #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif namespace NXOpen { namespace Mechatronics { class ObjectSinkBuilder; } class Builder; namespace Mechatronics { class CollisionSensor; } namespace Mechatronics { class SelectCollisionSensorList; } class NXObject; class SelectNXObjectList; namespace Mechatronics { class _ObjectSinkBuilderBuilder; class ObjectSinkBuilderImpl; /** Represents a @link Mechatronics::ObjectSink Mechatronics::ObjectSink@endlink builder. <br> To create a new instance of this class, use @link Mechatronics::ObjectSinkCollection::CreateObjectSinkBuilder Mechatronics::ObjectSinkCollection::CreateObjectSinkBuilder@endlink <br> <br> Created in NX7.5.1. <br> */ class NXOPENCPP_MECHATRONICSEXPORT ObjectSinkBuilder : public Builder { /** the delete option. */ public: enum DeleteSourceType { DeleteSourceTypeAnycopiedobjects/** Any copied objects */, DeleteSourceTypeSelectedsources/** Selected sources */ }; private: ObjectSinkBuilderImpl * m_objectsinkbuilder_impl; private: friend class _ObjectSinkBuilderBuilder; protected: ObjectSinkBuilder(); public: ~ObjectSinkBuilder(); /**Returns the object select. This can be a @link CollisionSensor CollisionSensor@endlink . <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: NXOpen::Mechatronics::SelectCollisionSensorList * CollisionSensor ( ); /** Sets the collision sensor object. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: void SetCollisionSensor ( const std::vector<NXOpen::Mechatronics::CollisionSensor *> & objects /** Collision Sensor objects*/ ); /**Returns the option to delete source. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: NXOpen::Mechatronics::ObjectSinkBuilder::DeleteSourceType DeleteSource ( ); /**Sets the option to delete source. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: void SetDeleteSource ( NXOpen::Mechatronics::ObjectSinkBuilder::DeleteSourceType deleteSource /** deletesource */ ); /**Returns the source select. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: NXOpen::SelectNXObjectList * Source ( ); /** Sets the source. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: void SetSource ( const std::vector<NXOpen::NXObject *> & objects /**Source objects*/ ); /**Returns the name. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: NXString Name ( ); /**Sets the name. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ public: void SetName ( const NXString & name /** name */ ); /**Sets the name. <br> Created in NX7.5.1. <br> <br> License requirements : nx_mcd_core ("MECHATRONICS CONCEPT DESIGNER") */ void SetName ( const char * name /** name */ ); }; } } #ifdef _MSC_VER #pragma warning(pop) #endif #ifdef __GNUC__ #ifndef NX_NO_GCC_DEPRECATION_WARNINGS #pragma GCC diagnostic warning "-Wdeprecated-declarations" #endif #endif #undef EXPORTLIBRARY #endif
e362f5605021cc7b6919984f2dc1812d5a63ec49
ba18d2d6c57823c5ff0919fb8578980c44b84e50
/BattleTank/Source/BattleTank/Public/TankTurret.h
2d4ed374aeac45ace8dd5d29a0ebbcb21212a518
[]
no_license
LearningUnrealTutorials/BattleTankGame
54be9c10e1e37a70993fcf436330a28d68a9219d
aec413a9f589594800fe430197f9488678551a71
refs/heads/master
2018-09-30T07:55:37.253656
2018-07-24T11:14:44
2018-07-24T11:14:44
103,753,946
0
0
null
null
null
null
UTF-8
C++
false
false
482
h
// Written in 2017 by Aleksander Naumenok while following a tutorial on udemy. #pragma once #include "CoreMinimal.h" #include "Components/StaticMeshComponent.h" #include "TankTurret.generated.h" /** * */ UCLASS(meta = (BlueprintSpawnableComponent)) class BATTLETANK_API UTankTurret : public UStaticMeshComponent { GENERATED_BODY() public: void Rotate(float RelativeSpeed); private: UPROPERTY(EditDefaultsOnly, Category = "Setup") float MaxDegreesPerSecond = 20.0f; };
d3ab50d1d066feb3fade551b6218ba302254c4ba
9ead5fcc5efaf7a73c4c585d813c1cddcb89666d
/m5/src/base/compiler.hh
2c655af608959070d0642cb30c6cb1fcfd3c206c
[ "BSD-3-Clause" ]
permissive
x10an14/tdt4260Group
b539b6271c8f01f80a9f75249779fb277fa521a4
1c4dc24acac3fe6df749e0f41f4d7ab69f443514
refs/heads/master
2016-09-06T02:48:04.929661
2014-04-08T10:40:22
2014-04-08T10:40:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,504
hh
/* * Copyright (c) 2006 The Regents of The University of Michigan * 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 copyright holders 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. * * Authors: Ali Saidi */ #ifndef __BASE_COMPILER_HH__ #define __BASE_COMPILER_HH__ //http://msdn2.microsoft.com/en-us/library/ms937669.aspx //http://msdn2.microsoft.com/en-us/library/aa448724.aspx //http://docs.sun.com/source/819-3688/sun.specific.html#marker-998278 //http://gcc.gnu.org/onlinedocs/gcc-3.3.1/gcc/Function-Attributes.html#Function%20Attributes #if defined(__GNUC__) #define M5_ATTR_NORETURN __attribute__((noreturn)) #define M5_PRAGMA_NORETURN(x) #define M5_DUMMY_RETURN #define M5_VAR_USED __attribute__((unused)) #elif defined(__SUNPRO_CC) // this doesn't do anything with sun cc, but why not #define M5_ATTR_NORETURN __sun_attr__((__noreturn__)) #define M5_DUMMY_RETURN return (0); #define DO_PRAGMA(x) _Pragma(#x) #define M5_VAR_USED #define M5_PRAGMA_NORETURN(x) DO_PRAGMA(does_not_return(x)) #else #error "Need to define compiler options in base/compiler.hh" #endif #endif // __BASE_COMPILER_HH__
c63c6a4ec0de641274b12f6e897ba831fa58517d
238185b2c5e09228e6aeafbd808df41032887ac8
/21210_Spring2018/hello.cpp
d4e543f930025e9cac33be751bed840a7d8eb6bf
[]
no_license
zmiksis/SciComp
ffdbaf8d0e777485457d9e5d3a4dbd3792a84e39
661141e1014cd75d861ccdb1e18ad448617f24d1
refs/heads/master
2020-12-15T16:57:25.414177
2020-01-20T19:50:42
2020-01-20T19:50:42
235,185,895
0
0
null
null
null
null
UTF-8
C++
false
false
98
cpp
#include <iostream> using namespace std; int main(){ cout << "Hello there" << endl; return 0; }
296f78f0a53e90c255c7aa9d979bd96fb83ff0c4
789ec1a342e7ba9e571e240696d62f998c0efe65
/apps/ogr2ogr_lib.cpp
2de843f9e0f0317525682e992dd5893c6de4241b
[ "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "MIT", "SunPro", "LicenseRef-scancode-info-zip-2005-02", "BSD-3-Clause" ]
permissive
speakeasy/gdal
a76384f3e3862f6a5d1e2067357e0d10fdcb61f4
294b6b399f93e1d9403859cf64fba80c95156cd1
refs/heads/master
2020-03-08T00:11:19.509823
2018-04-02T19:02:55
2018-04-02T19:02:55
127,800,245
0
0
null
null
null
null
UTF-8
C++
false
false
185,986
cpp
/****************************************************************************** * $Id: ogr2ogr_lib.cpp 39041 2017-06-09 21:44:01Z rouault $ * * Project: OpenGIS Simple Features Reference Implementation * Purpose: Simple client for translating between formats. * Author: Frank Warmerdam, [email protected] * ****************************************************************************** * Copyright (c) 1999, Frank Warmerdam * Copyright (c) 2008-2015, Even Rouault <even dot rouault at mines-paris dot org> * Copyright (c) 2015, Faza Mahamood * * 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 "ogrsf_frmts.h" #include "ogr_p.h" #include "cpl_conv.h" #include "cpl_string.h" #include "cpl_error.h" #include "ogr_api.h" #include "gdal.h" #include "gdal_utils_priv.h" #include "gdal_alg.h" #include "commonutils.h" #include <map> #include <vector> CPL_CVSID("$Id: ogr2ogr_lib.cpp 39041 2017-06-09 21:44:01Z rouault $"); typedef enum { GEOMOP_NONE, GEOMOP_SEGMENTIZE, GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY, } GeomOperation; typedef enum { GTC_DEFAULT, GTC_PROMOTE_TO_MULTI, GTC_CONVERT_TO_LINEAR, GTC_CONVERT_TO_CURVE, } GeomTypeConversion; #define GEOMTYPE_UNCHANGED -2 #define COORD_DIM_UNCHANGED -1 #define COORD_DIM_LAYER_DIM -2 #define COORD_DIM_XYM -3 /************************************************************************/ /* GDALVectorTranslateOptions */ /************************************************************************/ /** Options for use with GDALVectorTranslate(). GDALVectorTranslateOptions* must be allocated and * freed with GDALVectorTranslateOptionsNew() and GDALVectorTranslateOptionsFree() respectively. */ struct GDALVectorTranslateOptions { /*! continue after a failure, skipping the failed feature */ bool bSkipFailures; /*! use layer level transaction. If set to FALSE, then it is interpreted as dataset level transaction. */ int nLayerTransaction; /*! force the use of particular transaction type based on GDALVectorTranslate::nLayerTransaction */ bool bForceTransaction; /*! group nGroupTransactions features per transaction (default 20000). Increase the value for better performance when writing into DBMS drivers that have transaction support. nGroupTransactions can be set to -1 to load the data into a single transaction */ int nGroupTransactions; /*! If provided, only the feature with this feature id will be reported. Operates exclusive of the spatial or attribute queries. Note: if you want to select several features based on their feature id, you can also use the fact the 'fid' is a special field recognized by OGR SQL. So GDALVectorTranslateOptions::pszWHERE = "fid in (1,3,5)" would select features 1, 3 and 5. */ GIntBig nFIDToFetch; /*! allow or suppress progress monitor and other non-error output */ bool bQuiet; /*! output file format name (default is ESRI Shapefile) */ char *pszFormat; /*! list of layers of the source dataset which needs to be selected */ char **papszLayers; /*! dataset creation option (format specific) */ char **papszDSCO; /*! layer creation option (format specific) */ char **papszLCO; /*! access modes */ GDALVectorTranslateAccessMode eAccessMode; /*! It has the effect of adding, to existing target layers, the new fields found in source layers. This option is useful when merging files that have non-strictly identical structures. This might not work for output formats that don't support adding fields to existing non-empty layers. */ bool bAddMissingFields; /*! It must be set to true to trigger reprojection, otherwise only SRS assignment is done. */ bool bTransform; /*! output SRS. GDALVectorTranslateOptions::bTransform must be set to true to trigger reprojection, otherwise only SRS assignment is done. */ char *pszOutputSRSDef; /*! override source SRS */ char *pszSourceSRSDef; bool bNullifyOutputSRS; /*! If set to false, then field name matching between source and existing target layer is done in a more relaxed way if the target driver has an implementation for it. */ bool bExactFieldNameMatch; /*! an alternate name to the new layer */ char *pszNewLayerName; /*! attribute query (like SQL WHERE) */ char *pszWHERE; /*! name of the geometry field on which the spatial filter operates on. */ char *pszGeomField; /*! list of fields from input layer to copy to the new layer. A field is skipped if mentioned previously in the list even if the input layer has duplicate field names. (Defaults to all; any field is skipped if a subsequent field with same name is found.) Geometry fields can also be specified in the list. */ char **papszSelFields; /*! SQL statement to execute. The resulting table/layer will be saved to the output. */ char *pszSQLStatement; /*! SQL dialect. In some cases can be used to use (unoptimized) OGR SQL instead of the native SQL of an RDBMS by using "OGRSQL". The "SQLITE" dialect can also be used with any datasource. */ char *pszDialect; /*! the geometry type for the created layer */ int eGType; GeomTypeConversion eGeomTypeConversion; /*! Geometric operation to perform */ GeomOperation eGeomOp; /*! the parameter to geometric operation */ double dfGeomOpParam; /*! list of field types to convert to a field of type string in the destination layer. Valid types are: Integer, Integer64, Real, String, Date, Time, DateTime, Binary, IntegerList, Integer64List, RealList, StringList. Special value "All" can be used to convert all fields to strings. This is an alternate way to using the CAST operator of OGR SQL, that may avoid typing a long SQL query. Note that this does not influence the field types used by the source driver, and is only an afterwards conversion. */ char **papszFieldTypesToString; /*! list of field types and the field type after conversion in the destination layer. ("srctype1=dsttype1","srctype2=dsttype2",...). Valid types are : Integer, Integer64, Real, String, Date, Time, DateTime, Binary, IntegerList, Integer64List, RealList, StringList. Types can also include subtype between parenthesis, such as Integer(Boolean), Real(Float32), ... Special value "All" can be used to convert all fields to another type. This is an alternate way to using the CAST operator of OGR SQL, that may avoid typing a long SQL query. This is a generalization of GDALVectorTranslateOptions::papszFieldTypeToString. Note that this does not influence the field types used by the source driver, and is only an afterwards conversion. */ char **papszMapFieldType; /*! set field width and precision to 0 */ bool bUnsetFieldWidth; /*! display progress on terminal. Only works if input layers have the "fast feature count" capability */ bool bDisplayProgress; /*! split geometries crossing the dateline meridian */ bool bWrapDateline; /*! offset from dateline in degrees (default long. = +/- 10deg, geometries within 170deg to -170deg will be split) */ double dfDateLineOffset; /*! clip geometries when it is set to true */ bool bClipSrc; OGRGeometryH hClipSrc; /*! clip datasource */ char *pszClipSrcDS; /*! select desired geometries using an SQL query */ char *pszClipSrcSQL; /*! selected named layer from the source clip datasource */ char *pszClipSrcLayer; /*! restrict desired geometries based on attribute query */ char *pszClipSrcWhere; OGRGeometryH hClipDst; /*! destination clip datasource */ char *pszClipDstDS; /*! select desired geometries using an SQL query */ char *pszClipDstSQL; /*! selected named layer from the destination clip datasource */ char *pszClipDstLayer; /*! restrict desired geometries based on attribute query */ char *pszClipDstWhere; /*! split fields of type StringList, RealList or IntegerList into as many fields of type String, Real or Integer as necessary. */ bool bSplitListFields; /*! limit the number of subfields created for each split field. */ int nMaxSplitListSubFields; /*! produce one feature for each geometry in any kind of geometry collection in the source file */ bool bExplodeCollections; /*! uses the specified field to fill the Z coordinates of geometries */ char *pszZField; /*! the list of field indexes to be copied from the source to the destination. The (n)th value specified in the list is the index of the field in the target layer definition in which the n(th) field of the source layer must be copied. Index count starts at zero. There must be exactly as many values in the list as the count of the fields in the source layer. We can use the "identity" option to specify that the fields should be transferred by using the same order. This option should be used along with the GDALVectorTranslateOptions::eAccessMode = ACCESS_APPEND option. */ char **papszFieldMap; /*! force the coordinate dimension to nCoordDim (valid values are 2 or 3). This affects both the layer geometry type, and feature geometries. */ int nCoordDim; /*! destination dataset open option (format specific), only valid in update mode */ char **papszDestOpenOptions; /*! If set to true, does not propagate not-nullable constraints to target layer if they exist in source layer */ bool bForceNullable; /*! If set to true, does not propagate default field values to target layer if they exist in source layer */ bool bUnsetDefault; /*! to prevent the new default behaviour that consists in, if the output driver has a FID layer creation option and we are not in append mode, to preserve the name of the source FID column and source feature IDs */ bool bUnsetFid; /*! use the FID of the source features instead of letting the output driver to automatically assign a new one. If not in append mode, this behaviour becomes the default if the output driver has a FID layer creation option. In which case the name of the source FID column will be used and source feature IDs will be attempted to be preserved. This behaviour can be disabled by option GDALVectorTranslateOptions::bUnsetFid */ bool bPreserveFID; /*! set it to false to disable copying of metadata from source dataset and layers into target dataset and layers, when supported by output driver. */ bool bCopyMD; /*! list of metadata key and value to set on the output dataset, when supported by output driver. ("META-TAG1=VALUE1","META-TAG2=VALUE2") */ char **papszMetadataOptions; /*! override spatial filter SRS */ char *pszSpatSRSDef; /*! size of the list GDALVectorTranslateOptions::pasGCPs */ int nGCPCount; /*! list of ground control points to be added */ GDAL_GCP *pasGCPs; /*! order of polynomial used for warping (1 to 3). The default is to select a polynomial order based on the number of GCPs */ int nTransformOrder; /*! spatial query extents, in the SRS of the source layer(s) (or the one specified with GDALVectorTranslateOptions::pszSpatSRSDef). Only features whose geometry intersects the extents will be selected. The geometries will not be clipped unless GDALVectorTranslateOptions::bClipSrc is true. */ OGRGeometryH hSpatialFilter; /*! the progress function to use */ GDALProgressFunc pfnProgress; /*! pointer to the progress data variable */ void *pProgressData; /*! Whether layer and feature native data must be transferred. */ bool bNativeData; }; typedef struct { OGRLayer * poSrcLayer; GIntBig nFeaturesRead; bool bPerFeatureCT; OGRLayer *poDstLayer; OGRCoordinateTransformation **papoCT; // size: poDstLayer->GetLayerDefn()->GetFieldCount(); char ***papapszTransformOptions; // size: poDstLayer->GetLayerDefn()->GetFieldCount(); int *panMap; int iSrcZField; int iSrcFIDField; int iRequestedSrcGeomField; bool bPreserveFID; } TargetLayerInfo; typedef struct { OGRLayer *poSrcLayer; TargetLayerInfo *psInfo; } AssociatedLayers; class SetupTargetLayer { public: GDALDataset *m_poDstDS; char **m_papszLCO; OGRSpatialReference *m_poOutputSRS; bool m_bNullifyOutputSRS; char **m_papszSelFields; bool m_bAppend; bool m_bAddMissingFields; int m_eGType; GeomTypeConversion m_eGeomTypeConversion; int m_nCoordDim; bool m_bOverwrite; char **m_papszFieldTypesToString; char **m_papszMapFieldType; bool m_bUnsetFieldWidth; bool m_bExplodeCollections; const char *m_pszZField; char **m_papszFieldMap; const char *m_pszWHERE; bool m_bExactFieldNameMatch; bool m_bQuiet; bool m_bForceNullable; bool m_bUnsetDefault; bool m_bUnsetFid; bool m_bPreserveFID; bool m_bCopyMD; bool m_bNativeData; bool m_bNewDataSource; TargetLayerInfo* Setup(OGRLayer * poSrcLayer, const char *pszNewLayerName, GDALVectorTranslateOptions *psOptions); }; class LayerTranslator { public: GDALDataset *m_poSrcDS; GDALDataset *m_poODS; bool m_bTransform; bool m_bWrapDateline; CPLString m_osDateLineOffset; OGRSpatialReference *m_poOutputSRS; bool m_bNullifyOutputSRS; OGRSpatialReference *m_poUserSourceSRS; OGRCoordinateTransformation *m_poGCPCoordTrans; int m_eGType; GeomTypeConversion m_eGeomTypeConversion; int m_nCoordDim; GeomOperation m_eGeomOp; double m_dfGeomOpParam; OGRGeometry *m_poClipSrc; OGRGeometry *m_poClipDst; bool m_bExplodeCollections; vsi_l_offset m_nSrcFileSize; bool m_bNativeData; int Translate(TargetLayerInfo* psInfo, GIntBig nCountLayerFeatures, GIntBig* pnReadFeatureCount, GDALProgressFunc pfnProgress, void *pProgressArg, GDALVectorTranslateOptions *psOptions); }; static OGRLayer* GetLayerAndOverwriteIfNecessary(GDALDataset *poDstDS, const char* pszNewLayerName, bool bOverwrite, bool* pbErrorOccurred); static void FreeTargetLayerInfo(TargetLayerInfo* psInfo); /************************************************************************/ /* LoadGeometry() */ /************************************************************************/ static OGRGeometry* LoadGeometry( const char* pszDS, const char* pszSQL, const char* pszLyr, const char* pszWhere) { GDALDataset *poDS = (GDALDataset*) OGROpen( pszDS, FALSE, NULL ); if (poDS == NULL) return NULL; OGRLayer *poLyr; if (pszSQL != NULL) poLyr = poDS->ExecuteSQL( pszSQL, NULL, NULL ); else if (pszLyr != NULL) poLyr = poDS->GetLayerByName(pszLyr); else poLyr = poDS->GetLayer(0); if (poLyr == NULL) { CPLError( CE_Failure, CPLE_AppDefined, "Failed to identify source layer from datasource." ); GDALClose(( GDALDatasetH) poDS); return NULL; } if (pszWhere) poLyr->SetAttributeFilter(pszWhere); OGRGeometry *poGeom = NULL; OGRFeature *poFeat; while ((poFeat = poLyr->GetNextFeature()) != NULL) { OGRGeometry* poSrcGeom = poFeat->GetGeometryRef(); if (poSrcGeom) { OGRwkbGeometryType eType = wkbFlatten( poSrcGeom->getGeometryType() ); if (poGeom == NULL) poGeom = OGRGeometryFactory::createGeometry( wkbMultiPolygon ); if( eType == wkbPolygon ) ((OGRGeometryCollection*)poGeom)->addGeometry( poSrcGeom ); else if( eType == wkbMultiPolygon ) { int iGeom; int nGeomCount = OGR_G_GetGeometryCount( (OGRGeometryH)poSrcGeom ); for( iGeom = 0; iGeom < nGeomCount; iGeom++ ) { ((OGRGeometryCollection*)poGeom)->addGeometry( ((OGRGeometryCollection*)poSrcGeom)->getGeometryRef(iGeom) ); } } else { CPLError( CE_Failure, CPLE_AppDefined, "Geometry not of polygon type." ); OGRGeometryFactory::destroyGeometry(poGeom); OGRFeature::DestroyFeature(poFeat); if( pszSQL != NULL ) poDS->ReleaseResultSet( poLyr ); GDALClose(( GDALDatasetH) poDS); return NULL; } } OGRFeature::DestroyFeature(poFeat); } if( pszSQL != NULL ) poDS->ReleaseResultSet( poLyr ); GDALClose(( GDALDatasetH) poDS); return poGeom; } /************************************************************************/ /* OGRSplitListFieldLayer */ /************************************************************************/ typedef struct { int iSrcIndex; OGRFieldType eType; int nMaxOccurrences; int nWidth; } ListFieldDesc; class OGRSplitListFieldLayer : public OGRLayer { OGRLayer *poSrcLayer; OGRFeatureDefn *poFeatureDefn; ListFieldDesc *pasListFields; int nListFieldCount; int nMaxSplitListSubFields; OGRFeature *TranslateFeature(OGRFeature* poSrcFeature); public: OGRSplitListFieldLayer(OGRLayer* poSrcLayer, int nMaxSplitListSubFields); ~OGRSplitListFieldLayer(); bool BuildLayerDefn(GDALProgressFunc pfnProgress, void *pProgressArg); virtual OGRFeature *GetNextFeature(); virtual OGRFeature *GetFeature(GIntBig nFID); virtual OGRFeatureDefn *GetLayerDefn(); virtual void ResetReading() { poSrcLayer->ResetReading(); } virtual int TestCapability(const char*) { return FALSE; } virtual GIntBig GetFeatureCount( int bForce = TRUE ) { return poSrcLayer->GetFeatureCount(bForce); } virtual OGRSpatialReference *GetSpatialRef() { return poSrcLayer->GetSpatialRef(); } virtual OGRGeometry *GetSpatialFilter() { return poSrcLayer->GetSpatialFilter(); } virtual OGRStyleTable *GetStyleTable() { return poSrcLayer->GetStyleTable(); } virtual void SetSpatialFilter( OGRGeometry *poGeom ) { poSrcLayer->SetSpatialFilter(poGeom); } virtual void SetSpatialFilter( int iGeom, OGRGeometry *poGeom ) { poSrcLayer->SetSpatialFilter(iGeom, poGeom); } virtual void SetSpatialFilterRect( double dfMinX, double dfMinY, double dfMaxX, double dfMaxY ) { poSrcLayer->SetSpatialFilterRect(dfMinX, dfMinY, dfMaxX, dfMaxY); } virtual void SetSpatialFilterRect( int iGeom, double dfMinX, double dfMinY, double dfMaxX, double dfMaxY ) { poSrcLayer->SetSpatialFilterRect(iGeom, dfMinX, dfMinY, dfMaxX, dfMaxY); } virtual OGRErr SetAttributeFilter( const char *pszFilter ) { return poSrcLayer->SetAttributeFilter(pszFilter); } }; /************************************************************************/ /* OGRSplitListFieldLayer() */ /************************************************************************/ OGRSplitListFieldLayer::OGRSplitListFieldLayer(OGRLayer* poSrcLayerIn, int nMaxSplitListSubFieldsIn) { poSrcLayer = poSrcLayerIn; nMaxSplitListSubFields = nMaxSplitListSubFieldsIn; if (nMaxSplitListSubFields < 0) nMaxSplitListSubFields = INT_MAX; poFeatureDefn = NULL; pasListFields = NULL; nListFieldCount = 0; } /************************************************************************/ /* ~OGRSplitListFieldLayer() */ /************************************************************************/ OGRSplitListFieldLayer::~OGRSplitListFieldLayer() { if( poFeatureDefn ) poFeatureDefn->Release(); CPLFree(pasListFields); } /************************************************************************/ /* BuildLayerDefn() */ /************************************************************************/ bool OGRSplitListFieldLayer::BuildLayerDefn(GDALProgressFunc pfnProgress, void *pProgressArg) { CPLAssert(poFeatureDefn == NULL); OGRFeatureDefn* poSrcFieldDefn = poSrcLayer->GetLayerDefn(); int nSrcFields = poSrcFieldDefn->GetFieldCount(); pasListFields = (ListFieldDesc*)CPLCalloc(sizeof(ListFieldDesc), nSrcFields); nListFieldCount = 0; /* Establish the list of fields of list type */ for( int i=0; i<nSrcFields; ++i ) { OGRFieldType eType = poSrcFieldDefn->GetFieldDefn(i)->GetType(); if (eType == OFTIntegerList || eType == OFTInteger64List || eType == OFTRealList || eType == OFTStringList) { pasListFields[nListFieldCount].iSrcIndex = i; pasListFields[nListFieldCount].eType = eType; if (nMaxSplitListSubFields == 1) pasListFields[nListFieldCount].nMaxOccurrences = 1; nListFieldCount++; } } if (nListFieldCount == 0) return false; /* No need for full scan if the limit is 1. We just to have to create */ /* one and a single one field */ if (nMaxSplitListSubFields != 1) { poSrcLayer->ResetReading(); OGRFeature* poSrcFeature; GIntBig nFeatureCount = 0; if (poSrcLayer->TestCapability(OLCFastFeatureCount)) nFeatureCount = poSrcLayer->GetFeatureCount(); GIntBig nFeatureIndex = 0; /* Scan the whole layer to compute the maximum number of */ /* items for each field of list type */ while( (poSrcFeature = poSrcLayer->GetNextFeature()) != NULL ) { for( int i=0; i<nListFieldCount; ++i ) { int nCount = 0; OGRField* psField = poSrcFeature->GetRawFieldRef(pasListFields[i].iSrcIndex); switch(pasListFields[i].eType) { case OFTIntegerList: nCount = psField->IntegerList.nCount; break; case OFTRealList: nCount = psField->RealList.nCount; break; case OFTStringList: { nCount = psField->StringList.nCount; char** paList = psField->StringList.paList; int j; for(j=0;j<nCount;j++) { int nWidth = static_cast<int>(strlen(paList[j])); if (nWidth > pasListFields[i].nWidth) pasListFields[i].nWidth = nWidth; } break; } default: CPLAssert(0); break; } if (nCount > pasListFields[i].nMaxOccurrences) { if (nCount > nMaxSplitListSubFields) nCount = nMaxSplitListSubFields; pasListFields[i].nMaxOccurrences = nCount; } } OGRFeature::DestroyFeature(poSrcFeature); nFeatureIndex ++; if (pfnProgress != NULL && nFeatureCount != 0) pfnProgress(nFeatureIndex * 1.0 / nFeatureCount, "", pProgressArg); } } /* Now let's build the target feature definition */ poFeatureDefn = OGRFeatureDefn::CreateFeatureDefn( poSrcFieldDefn->GetName() ); poFeatureDefn->Reference(); poFeatureDefn->SetGeomType( wkbNone ); for( int i=0; i < poSrcFieldDefn->GetGeomFieldCount(); ++i ) { poFeatureDefn->AddGeomFieldDefn(poSrcFieldDefn->GetGeomFieldDefn(i)); } int iListField = 0; for( int i=0;i<nSrcFields; ++i) { OGRFieldType eType = poSrcFieldDefn->GetFieldDefn(i)->GetType(); if (eType == OFTIntegerList || eType == OFTInteger64List || eType == OFTRealList || eType == OFTStringList) { int nMaxOccurrences = pasListFields[iListField].nMaxOccurrences; int nWidth = pasListFields[iListField].nWidth; iListField ++; int j; if (nMaxOccurrences == 1) { OGRFieldDefn oFieldDefn(poSrcFieldDefn->GetFieldDefn(i)->GetNameRef(), (eType == OFTIntegerList) ? OFTInteger : (eType == OFTInteger64List) ? OFTInteger64 : (eType == OFTRealList) ? OFTReal : OFTString); poFeatureDefn->AddFieldDefn(&oFieldDefn); } else { for(j=0;j<nMaxOccurrences;j++) { CPLString osFieldName; osFieldName.Printf("%s%d", poSrcFieldDefn->GetFieldDefn(i)->GetNameRef(), j+1); OGRFieldDefn oFieldDefn(osFieldName.c_str(), (eType == OFTIntegerList) ? OFTInteger : (eType == OFTInteger64List) ? OFTInteger64 : (eType == OFTRealList) ? OFTReal : OFTString); oFieldDefn.SetWidth(nWidth); poFeatureDefn->AddFieldDefn(&oFieldDefn); } } } else { poFeatureDefn->AddFieldDefn(poSrcFieldDefn->GetFieldDefn(i)); } } return true; } /************************************************************************/ /* OGR2OGRSpatialReferenceHolder */ /************************************************************************/ class OGR2OGRSpatialReferenceHolder { OGRSpatialReference* m_poSRS; public: OGR2OGRSpatialReferenceHolder() : m_poSRS(NULL) {} ~OGR2OGRSpatialReferenceHolder() { if( m_poSRS) m_poSRS->Release(); } void assignNoRefIncrease(OGRSpatialReference* poSRS) { CPLAssert(m_poSRS == NULL); m_poSRS = poSRS; } OGRSpatialReference* get() { return m_poSRS; } }; /************************************************************************/ /* TranslateFeature() */ /************************************************************************/ OGRFeature *OGRSplitListFieldLayer::TranslateFeature(OGRFeature* poSrcFeature) { if (poSrcFeature == NULL) return NULL; if (poFeatureDefn == NULL) return poSrcFeature; OGRFeature* poFeature = OGRFeature::CreateFeature(poFeatureDefn); poFeature->SetFID(poSrcFeature->GetFID()); for(int i=0;i<poFeature->GetGeomFieldCount();i++) { poFeature->SetGeomFieldDirectly(i, poSrcFeature->StealGeometry(i)); } poFeature->SetStyleString(poFeature->GetStyleString()); OGRFeatureDefn* poSrcFieldDefn = poSrcLayer->GetLayerDefn(); int nSrcFields = poSrcFeature->GetFieldCount(); int iDstField = 0; int iListField = 0; for( int iSrcField=0; iSrcField < nSrcFields; ++iSrcField) { const OGRFieldType eType = poSrcFieldDefn->GetFieldDefn(iSrcField)->GetType(); OGRField* psField = poSrcFeature->GetRawFieldRef(iSrcField); switch(eType) { case OFTIntegerList: { int nCount = psField->IntegerList.nCount; if (nCount > nMaxSplitListSubFields) nCount = nMaxSplitListSubFields; int* paList = psField->IntegerList.paList; for( int j=0;j<nCount; ++j) poFeature->SetField(iDstField + j, paList[j]); iDstField += pasListFields[iListField].nMaxOccurrences; iListField++; break; } case OFTInteger64List: { int nCount = psField->Integer64List.nCount; if (nCount > nMaxSplitListSubFields) nCount = nMaxSplitListSubFields; GIntBig* paList = psField->Integer64List.paList; for( int j=0; j < nCount; ++j ) poFeature->SetField(iDstField + j, paList[j]); iDstField += pasListFields[iListField].nMaxOccurrences; iListField++; break; } case OFTRealList: { int nCount = psField->RealList.nCount; if (nCount > nMaxSplitListSubFields) nCount = nMaxSplitListSubFields; double* paList = psField->RealList.paList; for( int j=0; j < nCount; ++j ) poFeature->SetField(iDstField + j, paList[j]); iDstField += pasListFields[iListField].nMaxOccurrences; iListField++; break; } case OFTStringList: { int nCount = psField->StringList.nCount; if (nCount > nMaxSplitListSubFields) nCount = nMaxSplitListSubFields; char** paList = psField->StringList.paList; for( int j=0; j < nCount; ++j ) poFeature->SetField(iDstField + j, paList[j]); iDstField += pasListFields[iListField].nMaxOccurrences; iListField++; break; } default: poFeature->SetField(iDstField, psField); iDstField ++; break; } } OGRFeature::DestroyFeature(poSrcFeature); return poFeature; } /************************************************************************/ /* GetNextFeature() */ /************************************************************************/ OGRFeature *OGRSplitListFieldLayer::GetNextFeature() { return TranslateFeature(poSrcLayer->GetNextFeature()); } /************************************************************************/ /* GetFeature() */ /************************************************************************/ OGRFeature *OGRSplitListFieldLayer::GetFeature(GIntBig nFID) { return TranslateFeature(poSrcLayer->GetFeature(nFID)); } /************************************************************************/ /* GetLayerDefn() */ /************************************************************************/ OGRFeatureDefn* OGRSplitListFieldLayer::GetLayerDefn() { if (poFeatureDefn == NULL) return poSrcLayer->GetLayerDefn(); return poFeatureDefn; } /************************************************************************/ /* GCPCoordTransformation() */ /* */ /* Apply GCP Transform to points */ /************************************************************************/ class GCPCoordTransformation : public OGRCoordinateTransformation { public: void *hTransformArg; bool bUseTPS; OGRSpatialReference* poSRS; GCPCoordTransformation( int nGCPCount, const GDAL_GCP *pasGCPList, int nReqOrder, OGRSpatialReference* poSRSIn) { if( nReqOrder < 0 ) { bUseTPS = true; hTransformArg = GDALCreateTPSTransformer( nGCPCount, pasGCPList, FALSE ); } else { bUseTPS = false; hTransformArg = GDALCreateGCPTransformer( nGCPCount, pasGCPList, nReqOrder, FALSE ); } poSRS = poSRSIn; if( poSRS) poSRS->Reference(); } bool IsValid() const { return hTransformArg != NULL; } virtual ~GCPCoordTransformation() { if( hTransformArg != NULL ) { if( bUseTPS ) GDALDestroyTPSTransformer(hTransformArg); else GDALDestroyGCPTransformer(hTransformArg); } if( poSRS) poSRS->Dereference(); } virtual OGRSpatialReference *GetSourceCS() { return poSRS; } virtual OGRSpatialReference *GetTargetCS() { return poSRS; } virtual int Transform( int nCount, double *x, double *y, double *z = NULL ) { int *pabSuccess = (int *) CPLMalloc(sizeof(int) * nCount ); bool bOverallSuccess = CPL_TO_BOOL(TransformEx( nCount, x, y, z, pabSuccess )); for( int i = 0; i < nCount; ++i ) { if( !pabSuccess[i] ) { bOverallSuccess = false; break; } } CPLFree( pabSuccess ); return bOverallSuccess; } virtual int TransformEx( int nCount, double *x, double *y, double *z = NULL, int *pabSuccess = NULL ) { if( bUseTPS ) return GDALTPSTransform( hTransformArg, FALSE, nCount, x, y, z, pabSuccess ); else return GDALGCPTransform( hTransformArg, FALSE, nCount, x, y, z, pabSuccess ); } }; /************************************************************************/ /* CompositeCT */ /************************************************************************/ class CompositeCT : public OGRCoordinateTransformation { public: OGRCoordinateTransformation* poCT1; OGRCoordinateTransformation* poCT2; CompositeCT( OGRCoordinateTransformation* poCT1In, /* will not be deleted */ OGRCoordinateTransformation* poCT2In /* deleted with OGRCoordinateTransformation::DestroyCT() */ ) { poCT1 = poCT1In; poCT2 = poCT2In; } virtual ~CompositeCT() { OGRCoordinateTransformation::DestroyCT(poCT2); } virtual OGRSpatialReference *GetSourceCS() { return poCT1 ? poCT1->GetSourceCS() : poCT2 ? poCT2->GetSourceCS() : NULL; } virtual OGRSpatialReference *GetTargetCS() { return poCT2 ? poCT2->GetTargetCS() : poCT1 ? poCT1->GetTargetCS() : NULL; } virtual int Transform( int nCount, double *x, double *y, double *z = NULL ) { int nResult = TRUE; if( poCT1 ) nResult = poCT1->Transform(nCount, x, y, z); if( nResult && poCT2 ) nResult = poCT2->Transform(nCount, x, y, z); return nResult; } virtual int TransformEx( int nCount, double *x, double *y, double *z = NULL, int *pabSuccess = NULL ) { int nResult = TRUE; if( poCT1 ) nResult = poCT1->TransformEx(nCount, x, y, z, pabSuccess); if( nResult && poCT2 ) nResult = poCT2->TransformEx(nCount, x, y, z, pabSuccess); return nResult; } }; /************************************************************************/ /* ApplySpatialFilter() */ /************************************************************************/ static void ApplySpatialFilter(OGRLayer* poLayer, OGRGeometry* poSpatialFilter, OGRSpatialReference* poSpatSRS, const char* pszGeomField, OGRSpatialReference* poSourceSRS) { if( poSpatialFilter != NULL ) { OGRGeometry* poSpatialFilterReprojected = NULL; if( poSpatSRS ) { poSpatialFilterReprojected = poSpatialFilter->clone(); poSpatialFilterReprojected->assignSpatialReference(poSpatSRS); OGRSpatialReference* poSpatialFilterTargetSRS = poSourceSRS ? poSourceSRS : poLayer->GetSpatialRef(); if( poSpatialFilterTargetSRS ) poSpatialFilterReprojected->transformTo(poSpatialFilterTargetSRS); else CPLError(CE_Warning, CPLE_AppDefined, "cannot determine layer SRS for %s.", poLayer->GetDescription()); } if( pszGeomField != NULL ) { int iGeomField = poLayer->GetLayerDefn()->GetGeomFieldIndex(pszGeomField); if( iGeomField >= 0 ) poLayer->SetSpatialFilter( iGeomField, poSpatialFilterReprojected ? poSpatialFilterReprojected : poSpatialFilter ); else CPLError( CE_Warning, CPLE_AppDefined,"Cannot find geometry field %s.", pszGeomField); } else poLayer->SetSpatialFilter( poSpatialFilterReprojected ? poSpatialFilterReprojected : poSpatialFilter ); delete poSpatialFilterReprojected; } } /************************************************************************/ /* GetFieldType() */ /************************************************************************/ static int GetFieldType(const char* pszArg, int* pnSubFieldType) { *pnSubFieldType = OFSTNone; int nLengthBeforeParenthesis = static_cast<int>(strlen(pszArg)); const char* pszOpenParenthesis = strchr(pszArg, '('); if( pszOpenParenthesis ) nLengthBeforeParenthesis = static_cast<int>(pszOpenParenthesis - pszArg); for( int iType = 0; iType <= (int) OFTMaxType; iType++ ) { const char* pszFieldTypeName = OGRFieldDefn::GetFieldTypeName( (OGRFieldType)iType); if( EQUALN(pszArg,pszFieldTypeName,nLengthBeforeParenthesis) && pszFieldTypeName[nLengthBeforeParenthesis] == '\0' ) { if( pszOpenParenthesis != NULL ) { *pnSubFieldType = -1; CPLString osArgSubType = pszOpenParenthesis + 1; if( osArgSubType.size() && osArgSubType[osArgSubType.size()-1] == ')' ) osArgSubType.resize(osArgSubType.size()-1); for( int iSubType = 0; iSubType <= (int) OFSTMaxSubType; iSubType++ ) { const char* pszFieldSubTypeName = OGRFieldDefn::GetFieldSubTypeName( (OGRFieldSubType)iSubType); if( EQUAL( pszFieldSubTypeName, osArgSubType ) ) { *pnSubFieldType = iSubType; break; } } } return iType; } } return -1; } /************************************************************************/ /* IsNumber() */ /************************************************************************/ static bool IsNumber(const char* pszStr) { if (*pszStr == '-' || *pszStr == '+') pszStr ++; if (*pszStr == '.') pszStr ++; return (*pszStr >= '0' && *pszStr <= '9'); } /************************************************************************/ /* IsFieldType() */ /************************************************************************/ static bool IsFieldType(const char* pszArg) { int iSubType; return GetFieldType(pszArg, &iSubType) >= 0 && iSubType >= 0; } /************************************************************************/ /* GDALVectorTranslateOptionsClone() */ /************************************************************************/ static GDALVectorTranslateOptions* GDALVectorTranslateOptionsClone(const GDALVectorTranslateOptions *psOptionsIn) { GDALVectorTranslateOptions* psOptions = (GDALVectorTranslateOptions*) CPLMalloc(sizeof(GDALVectorTranslateOptions)); memcpy(psOptions, psOptionsIn, sizeof(GDALVectorTranslateOptions)); psOptions->pszFormat = CPLStrdup(psOptionsIn->pszFormat); if( psOptionsIn->pszOutputSRSDef ) psOptions->pszOutputSRSDef = CPLStrdup(psOptionsIn->pszOutputSRSDef); if( psOptionsIn->pszSourceSRSDef ) psOptions->pszSourceSRSDef = CPLStrdup(psOptionsIn->pszSourceSRSDef); if( psOptionsIn->pszNewLayerName ) psOptions->pszNewLayerName = CPLStrdup(psOptionsIn->pszNewLayerName); if( psOptionsIn->pszWHERE ) psOptions->pszWHERE = CPLStrdup(psOptionsIn->pszWHERE); if( psOptionsIn->pszGeomField ) psOptions->pszGeomField = CPLStrdup(psOptionsIn->pszGeomField); if( psOptionsIn->pszSQLStatement ) psOptions->pszSQLStatement = CPLStrdup(psOptionsIn->pszSQLStatement); if( psOptionsIn->pszDialect ) psOptions->pszDialect = CPLStrdup(psOptionsIn->pszDialect); if( psOptionsIn->pszClipSrcDS ) psOptions->pszClipSrcDS = CPLStrdup(psOptionsIn->pszClipSrcDS); if( psOptionsIn->pszClipSrcSQL ) psOptions->pszClipSrcSQL = CPLStrdup(psOptionsIn->pszClipSrcSQL); if( psOptionsIn->pszClipSrcLayer ) psOptions->pszClipSrcLayer = CPLStrdup(psOptionsIn->pszClipSrcLayer); if( psOptionsIn->pszClipSrcWhere ) psOptions->pszClipSrcWhere = CPLStrdup(psOptionsIn->pszClipSrcWhere); if( psOptionsIn->pszClipDstDS ) psOptions->pszClipDstDS = CPLStrdup(psOptionsIn->pszClipDstDS); if( psOptionsIn->pszClipDstSQL ) psOptions->pszClipDstSQL = CPLStrdup(psOptionsIn->pszClipDstSQL); if( psOptionsIn->pszClipDstLayer ) psOptions->pszClipDstLayer = CPLStrdup(psOptionsIn->pszClipDstLayer); if( psOptionsIn->pszClipDstWhere ) psOptions->pszClipDstWhere = CPLStrdup(psOptionsIn->pszClipDstWhere); if( psOptionsIn->pszZField ) psOptions->pszZField = CPLStrdup(psOptionsIn->pszZField); if( psOptionsIn->pszSpatSRSDef ) psOptions->pszSpatSRSDef = CPLStrdup(psOptionsIn->pszSpatSRSDef); psOptions->papszSelFields = CSLDuplicate(psOptionsIn->papszSelFields); psOptions->papszFieldMap = CSLDuplicate(psOptionsIn->papszFieldMap); psOptions->papszMapFieldType = CSLDuplicate(psOptionsIn->papszMapFieldType); psOptions->papszLayers = CSLDuplicate(psOptionsIn->papszLayers); psOptions->papszDSCO = CSLDuplicate(psOptionsIn->papszDSCO); psOptions->papszLCO = CSLDuplicate(psOptionsIn->papszLCO); psOptions->papszDestOpenOptions = CSLDuplicate(psOptionsIn->papszDestOpenOptions); psOptions->papszFieldTypesToString = CSLDuplicate(psOptionsIn->papszFieldTypesToString); psOptions->papszMetadataOptions = CSLDuplicate(psOptionsIn->papszMetadataOptions); if( psOptionsIn->nGCPCount ) psOptions->pasGCPs = GDALDuplicateGCPs( psOptionsIn->nGCPCount, psOptionsIn->pasGCPs ); psOptions->hClipSrc = ( psOptionsIn->hClipSrc != NULL ) ? OGR_G_Clone(psOptionsIn->hClipSrc) : NULL; psOptions->hClipDst = ( psOptionsIn->hClipDst != NULL ) ? OGR_G_Clone(psOptionsIn->hClipDst) : NULL; psOptions->hSpatialFilter = ( psOptionsIn->hSpatialFilter != NULL ) ? OGR_G_Clone(psOptionsIn->hSpatialFilter) : NULL; return psOptions; } /************************************************************************/ /* GDALVectorTranslate() */ /************************************************************************/ /** * Converts vector data between file formats. * * This is the equivalent of the <a href="ogr2ogr.html">ogr2ogr</a> utility. * * GDALVectorTranslateOptions* must be allocated and freed with GDALVectorTranslateOptionsNew() * and GDALVectorTranslateOptionsFree() respectively. * pszDest and hDstDS cannot be used at the same time. * * @param pszDest the destination dataset path or NULL. * @param hDstDS the destination dataset or NULL. * @param nSrcCount the number of input datasets (only 1 supported currently) * @param pahSrcDS the list of input datasets. * @param psOptionsIn the options struct returned by GDALVectorTranslateOptionsNew() or NULL. * @param pbUsageError the pointer to int variable to determine any usage error has occurred * @return the output dataset (new dataset that must be closed using GDALClose(), or hDstDS is not NULL) or NULL in case of error. * * @since GDAL 2.1 */ GDALDatasetH GDALVectorTranslate( const char *pszDest, GDALDatasetH hDstDS, int nSrcCount, GDALDatasetH *pahSrcDS, const GDALVectorTranslateOptions *psOptionsIn, int *pbUsageError ) { OGR2OGRSpatialReferenceHolder oOutputSRSHolder; OGRSpatialReference oSourceSRS; OGRSpatialReference oSpatSRS; OGRSpatialReference *poSourceSRS = NULL; OGRSpatialReference* poSpatSRS = NULL; bool bAppend = false; bool bUpdate = false; bool bOverwrite = false; CPLString osDateLineOffset; int nRetCode = 0; if( pszDest == NULL && hDstDS == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "pszDest == NULL && hDstDS == NULL"); if(pbUsageError) *pbUsageError = TRUE; return NULL; } if( nSrcCount != 1 ) { CPLError( CE_Failure, CPLE_AppDefined, "nSrcCount != 1"); if(pbUsageError) *pbUsageError = TRUE; return NULL; } GDALDatasetH hSrcDS = pahSrcDS[0]; if( hSrcDS == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "hSrcDS == NULL"); if(pbUsageError) *pbUsageError = TRUE; return NULL; } GDALVectorTranslateOptions* psOptions = (psOptionsIn) ? GDALVectorTranslateOptionsClone(psOptionsIn) : GDALVectorTranslateOptionsNew(NULL, NULL); if( psOptions->eAccessMode == ACCESS_UPDATE ) { bUpdate = true; } else if ( psOptions->eAccessMode == ACCESS_APPEND ) { bAppend = true; bUpdate = true; } else if ( psOptions->eAccessMode == ACCESS_OVERWRITE ) { bOverwrite = true; bUpdate = true; } else if( hDstDS != NULL ) { bUpdate = true; } osDateLineOffset = CPLOPrintf("%g", psOptions->dfDateLineOffset); if( psOptions->bPreserveFID && psOptions->bExplodeCollections ) { CPLError( CE_Failure, CPLE_IllegalArg, "cannot use -preserve_fid and -explodecollections at the same time."); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } if (psOptions->papszFieldMap && !bAppend) { CPLError( CE_Failure, CPLE_IllegalArg, "if -fieldmap is specified, -append must also be specified"); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } if (psOptions->papszFieldMap && psOptions->bAddMissingFields) { CPLError( CE_Failure, CPLE_IllegalArg, "if -addfields is specified, -fieldmap cannot be used."); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } if( psOptions->papszFieldTypesToString && psOptions->papszMapFieldType ) { CPLError( CE_Failure, CPLE_IllegalArg, "-fieldTypeToString and -mapFieldType are exclusive."); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } if( psOptions->pszSourceSRSDef != NULL && psOptions->pszOutputSRSDef == NULL && psOptions->pszSpatSRSDef == NULL ) { CPLError( CE_Failure, CPLE_IllegalArg, "if -s_srs is specified, -t_srs and/or -spat_srs must also be specified."); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } if( psOptions->bClipSrc && psOptions->pszClipSrcDS != NULL) { psOptions->hClipSrc = (OGRGeometryH) LoadGeometry(psOptions->pszClipSrcDS, psOptions->pszClipSrcSQL, psOptions->pszClipSrcLayer, psOptions->pszClipSrcWhere); if (psOptions->hClipSrc == NULL) { CPLError( CE_Failure,CPLE_IllegalArg, "cannot load source clip geometry"); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } else if( psOptions->bClipSrc && psOptions->hClipSrc == NULL ) { if (psOptions->hSpatialFilter) psOptions->hClipSrc = (OGRGeometryH)((OGRGeometry *)(psOptions->hSpatialFilter))->clone(); if (psOptions->hClipSrc == NULL) { CPLError( CE_Failure, CPLE_IllegalArg, "-clipsrc must be used with -spat option or a\n" "bounding box, WKT string or datasource must be specified"); if(pbUsageError) *pbUsageError = TRUE; GDALVectorTranslateOptionsFree(psOptions); return NULL; } } if( psOptions->pszClipDstDS != NULL) { psOptions->hClipDst = (OGRGeometryH) LoadGeometry(psOptions->pszClipDstDS, psOptions->pszClipDstSQL, psOptions->pszClipDstLayer, psOptions->pszClipDstWhere); if (psOptions->hClipDst == NULL) { CPLError( CE_Failure, CPLE_IllegalArg, "cannot load dest clip geometry"); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } GDALDataset *poDS = (GDALDataset *) hSrcDS; GDALDataset *poODS = NULL; GDALDriver *poDriver = NULL; CPLString osDestFilename; if(hDstDS) { poODS = (GDALDataset *) hDstDS; osDestFilename = poODS->GetDescription(); } else osDestFilename = pszDest; /* Various tests to avoid overwriting the source layer(s) */ /* or to avoid appending a layer to itself */ if( bUpdate && strcmp(osDestFilename, poDS->GetDescription()) == 0 && (bOverwrite || bAppend) ) { bool bError = false; if (psOptions->pszNewLayerName == NULL) bError = true; else if (CSLCount(psOptions->papszLayers) == 1) bError = strcmp(psOptions->pszNewLayerName, psOptions->papszLayers[0]) == 0; else if (psOptions->pszSQLStatement == NULL) bError = true; if (bError) { CPLError( CE_Failure, CPLE_IllegalArg, "-nln name must be specified combined with " "a single source layer name,\nor a -sql statement, and " "name must be different from an existing layer."); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } /* -------------------------------------------------------------------- */ /* Try opening the output datasource as an existing, writable */ /* -------------------------------------------------------------------- */ if( bUpdate && poODS == NULL ) { poODS = (GDALDataset*) GDALOpenEx( osDestFilename, GDAL_OF_UPDATE | GDAL_OF_VECTOR, NULL, psOptions->papszDestOpenOptions, NULL ); if( poODS == NULL ) { if (bOverwrite || bAppend) { poODS = (GDALDataset*) GDALOpenEx( osDestFilename, GDAL_OF_VECTOR, NULL, psOptions->papszDestOpenOptions, NULL ); if (poODS == NULL) { /* OK the datasource doesn't exist at all */ bUpdate = false; } else { if( poODS != NULL ) poDriver = poODS->GetDriver(); GDALClose( (GDALDatasetH) poODS ); poODS = NULL; } } if (bUpdate) { CPLError( CE_Failure, CPLE_AppDefined, "Unable to open existing output datasource `%s'.", osDestFilename.c_str() ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } else if( CSLCount(psOptions->papszDSCO) > 0 ) { CPLError( CE_Warning, CPLE_AppDefined, "Datasource creation options ignored since an existing datasource\n" " being updated." ); } } if( poODS ) poDriver = poODS->GetDriver(); /* -------------------------------------------------------------------- */ /* Find the output driver. */ /* -------------------------------------------------------------------- */ bool bNewDataSource = false; if( !bUpdate ) { OGRSFDriverRegistrar *poR = OGRSFDriverRegistrar::GetRegistrar(); poDriver = poR->GetDriverByName(psOptions->pszFormat); if( poDriver == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Unable to find driver `%s'.", psOptions->pszFormat ); fprintf( stderr, "The following drivers are available:\n" ); for( int iDriver = 0; iDriver < poR->GetDriverCount(); iDriver++ ) { fprintf( stderr, " -> `%s'\n", poR->GetDriver(iDriver)->GetDescription() ); } GDALVectorTranslateOptionsFree(psOptions); return NULL; } if( !CPLTestBool( CSLFetchNameValueDef(poDriver->GetMetadata(), GDAL_DCAP_CREATE, "FALSE") ) ) { CPLError( CE_Failure, CPLE_AppDefined, "%s driver does not support data source creation.", psOptions->pszFormat ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } if( psOptions->papszDestOpenOptions != NULL ) { CPLError(CE_Warning, CPLE_AppDefined, "-doo ignored when creating the output datasource."); } /* -------------------------------------------------------------------- */ /* Special case to improve user experience when translating */ /* a datasource with multiple layers into a shapefile. If the */ /* user gives a target datasource with .shp and it does not exist, */ /* the shapefile driver will try to create a file, but this is not */ /* appropriate because here we have several layers, so create */ /* a directory instead. */ /* -------------------------------------------------------------------- */ VSIStatBufL sStat; if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") && psOptions->pszSQLStatement == NULL && (CSLCount(psOptions->papszLayers) > 1 || (CSLCount(psOptions->papszLayers) == 0 && poDS->GetLayerCount() > 1)) && psOptions->pszNewLayerName == NULL && EQUAL(CPLGetExtension(osDestFilename), "SHP") && VSIStatL(osDestFilename, &sStat) != 0) { if (VSIMkdir(osDestFilename, 0755) != 0) { CPLError( CE_Failure, CPLE_AppDefined, "Failed to create directory %s\n" "for shapefile datastore.", osDestFilename.c_str() ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } /* -------------------------------------------------------------------- */ /* Create the output data source. */ /* -------------------------------------------------------------------- */ poODS = poDriver->Create( osDestFilename, 0, 0, 0, GDT_Unknown, psOptions->papszDSCO ); if( poODS == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "%s driver failed to create %s", psOptions->pszFormat, osDestFilename.c_str() ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } bNewDataSource = true; if( psOptions->bCopyMD ) { char** papszDomains = poDS->GetMetadataDomainList(); for(char** papszIter = papszDomains; papszIter && *papszIter; ++papszIter ) { char** papszMD = poDS->GetMetadata(*papszIter); if( papszMD ) poODS->SetMetadata(papszMD, *papszIter); } CSLDestroy(papszDomains); } for(char** papszIter = psOptions->papszMetadataOptions; papszIter && *papszIter; ++papszIter ) { char *pszKey = NULL; const char *pszValue = CPLParseNameValue( *papszIter, &pszKey ); if( pszKey ) { poODS->SetMetadataItem(pszKey,pszValue); CPLFree( pszKey ); } } } if( psOptions->nLayerTransaction < 0 ) psOptions->nLayerTransaction = !poODS->TestCapability(ODsCTransactions); /* -------------------------------------------------------------------- */ /* Parse the output SRS definition if possible. */ /* -------------------------------------------------------------------- */ if( psOptions->pszOutputSRSDef != NULL ) { oOutputSRSHolder.assignNoRefIncrease(new OGRSpatialReference()); if( oOutputSRSHolder.get()-> SetFromUserInput( psOptions->pszOutputSRSDef ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "Failed to process SRS definition: %s", psOptions->pszOutputSRSDef ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); return NULL; } } /* -------------------------------------------------------------------- */ /* Parse the source SRS definition if possible. */ /* -------------------------------------------------------------------- */ if( psOptions->pszSourceSRSDef != NULL ) { if( oSourceSRS.SetFromUserInput( psOptions->pszSourceSRSDef ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "Failed to process SRS definition: %s", psOptions->pszSourceSRSDef ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); return NULL; } poSourceSRS = &oSourceSRS; } /* -------------------------------------------------------------------- */ /* Parse spatial filter SRS if needed. */ /* -------------------------------------------------------------------- */ if( psOptions->hSpatialFilter != NULL && psOptions->pszSpatSRSDef != NULL ) { if( psOptions->pszSQLStatement ) { CPLError( CE_Failure, CPLE_IllegalArg, "-spat_srs not compatible with -sql."); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); return NULL; } OGREnvelope sEnvelope; ((OGRGeometry*)psOptions->hSpatialFilter)->getEnvelope(&sEnvelope); if( oSpatSRS.SetFromUserInput( psOptions->pszSpatSRSDef ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "Failed to process SRS definition: %s", psOptions->pszSpatSRSDef ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); return NULL; } poSpatSRS = &oSpatSRS; } /* -------------------------------------------------------------------- */ /* Create a transformation object from the source to */ /* destination coordinate system. */ /* -------------------------------------------------------------------- */ GCPCoordTransformation *poGCPCoordTrans = NULL; if( psOptions->nGCPCount > 0 ) { poGCPCoordTrans = new GCPCoordTransformation( psOptions->nGCPCount, psOptions->pasGCPs, psOptions->nTransformOrder, poSourceSRS ? poSourceSRS : oOutputSRSHolder.get() ); if( !(poGCPCoordTrans->IsValid()) ) { delete poGCPCoordTrans; poGCPCoordTrans = NULL; } } /* -------------------------------------------------------------------- */ /* For OSM file. */ /* -------------------------------------------------------------------- */ int bSrcIsOSM = (strcmp(poDS->GetDriverName(), "OSM") == 0); vsi_l_offset nSrcFileSize = 0; if( bSrcIsOSM && strcmp(poDS->GetDescription(), "/vsistdin/") != 0) { VSIStatBufL sStat; if( VSIStatL(poDS->GetDescription(), &sStat) == 0 ) nSrcFileSize = sStat.st_size; } /* -------------------------------------------------------------------- */ /* Create layer setup and transformer objects. */ /* -------------------------------------------------------------------- */ SetupTargetLayer oSetup; oSetup.m_poDstDS = poODS; oSetup.m_papszLCO = psOptions->papszLCO; oSetup.m_poOutputSRS = oOutputSRSHolder.get(); oSetup.m_bNullifyOutputSRS = psOptions->bNullifyOutputSRS; oSetup.m_papszSelFields = psOptions->papszSelFields; oSetup.m_bAppend = bAppend; oSetup.m_bAddMissingFields = psOptions->bAddMissingFields; oSetup.m_eGType = psOptions->eGType; oSetup.m_eGeomTypeConversion = psOptions->eGeomTypeConversion; oSetup.m_nCoordDim = psOptions->nCoordDim; oSetup.m_bOverwrite = bOverwrite; oSetup.m_papszFieldTypesToString = psOptions->papszFieldTypesToString; oSetup.m_papszMapFieldType = psOptions->papszMapFieldType; oSetup.m_bUnsetFieldWidth = psOptions->bUnsetFieldWidth; oSetup.m_bExplodeCollections = psOptions->bExplodeCollections; oSetup.m_pszZField = psOptions->pszZField; oSetup.m_papszFieldMap = psOptions->papszFieldMap; oSetup.m_pszWHERE = psOptions->pszWHERE; oSetup.m_bExactFieldNameMatch = psOptions->bExactFieldNameMatch; oSetup.m_bQuiet = psOptions->bQuiet; oSetup.m_bForceNullable = psOptions->bForceNullable; oSetup.m_bUnsetDefault = psOptions->bUnsetDefault; oSetup.m_bUnsetFid = psOptions->bUnsetFid; oSetup.m_bPreserveFID = psOptions->bPreserveFID; oSetup.m_bCopyMD = psOptions->bCopyMD; oSetup.m_bNativeData = psOptions->bNativeData; oSetup.m_bNewDataSource = bNewDataSource; LayerTranslator oTranslator; oTranslator.m_poSrcDS = poDS; oTranslator.m_poODS = poODS; oTranslator.m_bTransform = psOptions->bTransform; oTranslator.m_bWrapDateline = psOptions->bWrapDateline; oTranslator.m_osDateLineOffset = osDateLineOffset; oTranslator.m_poOutputSRS = oOutputSRSHolder.get(); oTranslator.m_bNullifyOutputSRS = psOptions->bNullifyOutputSRS; oTranslator.m_poUserSourceSRS = poSourceSRS; oTranslator.m_poGCPCoordTrans = poGCPCoordTrans; oTranslator.m_eGType = psOptions->eGType; oTranslator.m_eGeomTypeConversion = psOptions->eGeomTypeConversion; oTranslator.m_nCoordDim = psOptions->nCoordDim; oTranslator.m_eGeomOp = psOptions->eGeomOp; oTranslator.m_dfGeomOpParam = psOptions->dfGeomOpParam; oTranslator.m_poClipSrc = (OGRGeometry *)psOptions->hClipSrc; oTranslator.m_poClipDst = (OGRGeometry *)psOptions->hClipDst; oTranslator.m_bExplodeCollections = psOptions->bExplodeCollections; oTranslator.m_nSrcFileSize = nSrcFileSize; oTranslator.m_bNativeData = psOptions->bNativeData; if( psOptions->nGroupTransactions ) { if( !psOptions->nLayerTransaction ) poODS->StartTransaction(psOptions->bForceTransaction); } /* -------------------------------------------------------------------- */ /* Special case for -sql clause. No source layers required. */ /* -------------------------------------------------------------------- */ if( psOptions->pszSQLStatement != NULL ) { /* Special case: if output=input, then we must likely destroy the */ /* old table before to avoid transaction issues. */ if( poDS == poODS && psOptions->pszNewLayerName != NULL && bOverwrite ) GetLayerAndOverwriteIfNecessary(poODS, psOptions->pszNewLayerName, bOverwrite, NULL); if( psOptions->pszWHERE != NULL ) CPLError( CE_Warning, CPLE_AppDefined, "-where clause ignored in combination with -sql." ); if( CSLCount(psOptions->papszLayers) > 0 ) CPLError( CE_Warning, CPLE_AppDefined, "layer names ignored in combination with -sql." ); OGRLayer *poResultSet = poDS->ExecuteSQL( psOptions->pszSQLStatement, (psOptions->pszGeomField == NULL) ? (OGRGeometry*)psOptions->hSpatialFilter : NULL, psOptions->pszDialect ); if( poResultSet != NULL ) { if( psOptions->hSpatialFilter != NULL && psOptions->pszGeomField != NULL ) { int iGeomField = poResultSet->GetLayerDefn()->GetGeomFieldIndex(psOptions->pszGeomField); if( iGeomField >= 0 ) poResultSet->SetSpatialFilter( iGeomField, (OGRGeometry*)psOptions->hSpatialFilter ); else CPLError( CE_Warning, CPLE_AppDefined, "Cannot find geometry field %s.", psOptions->pszGeomField); } GIntBig nCountLayerFeatures = 0; GDALProgressFunc pfnProgress = NULL; void *pProgressArg = NULL; if (psOptions->bDisplayProgress) { if (bSrcIsOSM) { pfnProgress = psOptions->pfnProgress; pProgressArg = psOptions->pProgressData; } else if (!poResultSet->TestCapability(OLCFastFeatureCount)) { CPLError( CE_Warning, CPLE_AppDefined, "Progress turned off as fast feature count is not available."); psOptions->bDisplayProgress = false; } else { nCountLayerFeatures = poResultSet->GetFeatureCount(); pfnProgress = psOptions->pfnProgress; pProgressArg = psOptions->pProgressData; } } OGRLayer* poPassedLayer = poResultSet; if (psOptions->bSplitListFields) { poPassedLayer = new OGRSplitListFieldLayer(poPassedLayer, psOptions->nMaxSplitListSubFields); int nRet = ((OGRSplitListFieldLayer*)poPassedLayer)->BuildLayerDefn(NULL, NULL); if (!nRet) { delete poPassedLayer; poPassedLayer = poResultSet; } } /* -------------------------------------------------------------------- */ /* Special case to improve user experience when translating into */ /* single file shapefile and source has only one layer, and that */ /* the layer name isn't specified */ /* -------------------------------------------------------------------- */ VSIStatBufL sStat; if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") && psOptions->pszNewLayerName == NULL && VSIStatL(osDestFilename, &sStat) == 0 && VSI_ISREG(sStat.st_mode)) { psOptions->pszNewLayerName = CPLStrdup(CPLGetBasename(osDestFilename)); } TargetLayerInfo* psInfo = oSetup.Setup(poPassedLayer, psOptions->pszNewLayerName, psOptions); poPassedLayer->ResetReading(); if( psInfo == NULL || !oTranslator.Translate( psInfo, nCountLayerFeatures, NULL, pfnProgress, pProgressArg, psOptions )) { CPLError( CE_Failure, CPLE_AppDefined, "Terminating translation prematurely after failed\n" "translation from sql statement." ); nRetCode = 1; } FreeTargetLayerInfo(psInfo); if (poPassedLayer != poResultSet) delete poPassedLayer; poDS->ReleaseResultSet( poResultSet ); } else { if( CPLGetLastErrorNo() != 0 ) nRetCode = 1; } } /* -------------------------------------------------------------------- */ /* Special case for layer interleaving mode. */ /* -------------------------------------------------------------------- */ else if( bSrcIsOSM && CPLTestBool(CPLGetConfigOption("OGR_INTERLEAVED_READING", "YES")) ) { CPLSetConfigOption("OGR_INTERLEAVED_READING", "YES"); if (psOptions->bSplitListFields) { CPLError( CE_Failure, CPLE_AppDefined, "-splitlistfields not supported in this mode" ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } int nSrcLayerCount = poDS->GetLayerCount(); AssociatedLayers* pasAssocLayers = (AssociatedLayers* ) CPLCalloc(nSrcLayerCount, sizeof(AssociatedLayers)); /* -------------------------------------------------------------------- */ /* Special case to improve user experience when translating into */ /* single file shapefile and source has only one layer, and that */ /* the layer name isn't specified */ /* -------------------------------------------------------------------- */ VSIStatBufL sStat; if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") && (CSLCount(psOptions->papszLayers) == 1 || nSrcLayerCount == 1) && psOptions->pszNewLayerName == NULL && VSIStatL(osDestFilename, &sStat) == 0 && VSI_ISREG(sStat.st_mode)) { psOptions->pszNewLayerName = CPLStrdup(CPLGetBasename(osDestFilename)); } GDALProgressFunc pfnProgress = NULL; void *pProgressArg = NULL; if ( psOptions->bDisplayProgress && bSrcIsOSM ) { pfnProgress = psOptions->pfnProgress; pProgressArg = psOptions->pProgressData; } /* -------------------------------------------------------------------- */ /* If no target layer specified, use all source layers. */ /* -------------------------------------------------------------------- */ int iLayer; if ( CSLCount(psOptions->papszLayers) == 0) { psOptions->papszLayers = (char**) CPLCalloc(sizeof(char*), nSrcLayerCount + 1); for( iLayer = 0; iLayer < nSrcLayerCount; iLayer++ ) { OGRLayer *poLayer = poDS->GetLayer(iLayer); if( poLayer == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Couldn't fetch advertised layer %d!", iLayer ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } psOptions->papszLayers[iLayer] = CPLStrdup(poLayer->GetName()); } } else { if ( bSrcIsOSM ) { CPLString osInterestLayers = "SET interest_layers ="; for( iLayer = 0; psOptions->papszLayers[iLayer] != NULL; iLayer++ ) { if( iLayer != 0 ) osInterestLayers += ","; osInterestLayers += psOptions->papszLayers[iLayer]; } poDS->ExecuteSQL(osInterestLayers.c_str(), NULL, NULL); } } /* -------------------------------------------------------------------- */ /* First pass to set filters and create target layers. */ /* -------------------------------------------------------------------- */ for( iLayer = 0; iLayer < nSrcLayerCount; iLayer++ ) { OGRLayer *poLayer = poDS->GetLayer(iLayer); if( poLayer == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Couldn't fetch advertised layer %d!", iLayer ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } pasAssocLayers[iLayer].poSrcLayer = poLayer; if( CSLFindString(psOptions->papszLayers, poLayer->GetName()) >= 0 ) { if( psOptions->pszWHERE != NULL ) { if( poLayer->SetAttributeFilter( psOptions->pszWHERE ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "SetAttributeFilter(%s) on layer '%s' failed.", psOptions->pszWHERE, poLayer->GetName() ); if (!psOptions->bSkipFailures) { GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } } } ApplySpatialFilter(poLayer, (OGRGeometry*)psOptions->hSpatialFilter, poSpatSRS, psOptions->pszGeomField, poSourceSRS ); TargetLayerInfo* psInfo = oSetup.Setup(poLayer, psOptions->pszNewLayerName, psOptions); if( psInfo == NULL && !psOptions->bSkipFailures ) { GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } pasAssocLayers[iLayer].psInfo = psInfo; } else { pasAssocLayers[iLayer].psInfo = NULL; } } /* -------------------------------------------------------------------- */ /* Second pass to process features in a interleaved layer mode. */ /* -------------------------------------------------------------------- */ bool bHasLayersNonEmpty; do { bHasLayersNonEmpty = false; for( iLayer = 0; iLayer < nSrcLayerCount; iLayer++ ) { OGRLayer *poLayer = pasAssocLayers[iLayer].poSrcLayer; TargetLayerInfo *psInfo = pasAssocLayers[iLayer].psInfo; GIntBig nReadFeatureCount = 0; if( psInfo ) { if( !oTranslator.Translate( psInfo, 0, &nReadFeatureCount, pfnProgress, pProgressArg, psOptions ) && !psOptions->bSkipFailures ) { CPLError( CE_Failure, CPLE_AppDefined, "Terminating translation prematurely after failed\n" "translation of layer %s (use -skipfailures to skip errors)", poLayer->GetName() ); nRetCode = 1; break; } } else { /* No matching target layer : just consumes the features */ OGRFeature* poFeature; while( (poFeature = poLayer->GetNextFeature()) != NULL ) { nReadFeatureCount ++; OGRFeature::DestroyFeature(poFeature); } } if( nReadFeatureCount != 0 ) bHasLayersNonEmpty = true; } } while( bHasLayersNonEmpty ); if (pfnProgress) { pfnProgress(1.0, "", pProgressArg); } /* -------------------------------------------------------------------- */ /* Cleanup. */ /* -------------------------------------------------------------------- */ for( iLayer = 0; iLayer < nSrcLayerCount; iLayer++ ) { if( pasAssocLayers[iLayer].psInfo ) FreeTargetLayerInfo(pasAssocLayers[iLayer].psInfo); } CPLFree(pasAssocLayers); } else { int nLayerCount = 0; OGRLayer** papoLayers = NULL; /* -------------------------------------------------------------------- */ /* Process each data source layer. */ /* -------------------------------------------------------------------- */ if ( CSLCount(psOptions->papszLayers) == 0) { nLayerCount = poDS->GetLayerCount(); papoLayers = (OGRLayer**)CPLMalloc(sizeof(OGRLayer*) * nLayerCount); for( int iLayer = 0; iLayer < nLayerCount; iLayer++ ) { OGRLayer *poLayer = poDS->GetLayer(iLayer); if( poLayer == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Couldn't fetch advertised layer %d!", iLayer ); GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } papoLayers[iLayer] = poLayer; } } /* -------------------------------------------------------------------- */ /* Process specified data source layers. */ /* -------------------------------------------------------------------- */ else { nLayerCount = CSLCount(psOptions->papszLayers); papoLayers = (OGRLayer**)CPLMalloc(sizeof(OGRLayer*) * nLayerCount); for( int iLayer = 0; psOptions->papszLayers[iLayer] != NULL; iLayer++ ) { OGRLayer *poLayer = poDS->GetLayerByName(psOptions->papszLayers[iLayer]); if( poLayer == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Couldn't fetch requested layer '%s'!", psOptions->papszLayers[iLayer] ); if (!psOptions->bSkipFailures) { GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } } papoLayers[iLayer] = poLayer; } } /* -------------------------------------------------------------------- */ /* Special case to improve user experience when translating into */ /* single file shapefile and source has only one layer, and that */ /* the layer name isn't specified */ /* -------------------------------------------------------------------- */ VSIStatBufL sStat; if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") && nLayerCount == 1 && psOptions->pszNewLayerName == NULL && VSIStatL(osDestFilename, &sStat) == 0 && VSI_ISREG(sStat.st_mode)) { psOptions->pszNewLayerName = CPLStrdup(CPLGetBasename(osDestFilename)); } GIntBig* panLayerCountFeatures = (GIntBig*) CPLCalloc(sizeof(GIntBig), nLayerCount); GIntBig nCountLayersFeatures = 0; GIntBig nAccCountFeatures = 0; int iLayer; /* First pass to apply filters and count all features if necessary */ for( iLayer = 0; iLayer < nLayerCount; iLayer++ ) { OGRLayer *poLayer = papoLayers[iLayer]; if (poLayer == NULL) continue; if( psOptions->pszWHERE != NULL ) { if( poLayer->SetAttributeFilter( psOptions->pszWHERE ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "SetAttributeFilter(%s) on layer '%s' failed.", psOptions->pszWHERE, poLayer->GetName() ); if (!psOptions->bSkipFailures) { GDALVectorTranslateOptionsFree(psOptions); if( hDstDS == NULL ) GDALClose( poODS ); delete poGCPCoordTrans; return NULL; } } } ApplySpatialFilter(poLayer, (OGRGeometry*)psOptions->hSpatialFilter, poSpatSRS, psOptions->pszGeomField, poSourceSRS); if (psOptions->bDisplayProgress && !bSrcIsOSM) { if (!poLayer->TestCapability(OLCFastFeatureCount)) { CPLError(CE_Warning, CPLE_NotSupported, "Progress turned off as fast feature count is not available."); psOptions->bDisplayProgress = false; } else { panLayerCountFeatures[iLayer] = poLayer->GetFeatureCount(); nCountLayersFeatures += panLayerCountFeatures[iLayer]; } } } /* Second pass to do the real job */ for( iLayer = 0; iLayer < nLayerCount && nRetCode == 0; iLayer++ ) { OGRLayer *poLayer = papoLayers[iLayer]; if (poLayer == NULL) continue; GDALProgressFunc pfnProgress = NULL; void *pProgressArg = NULL; OGRLayer* poPassedLayer = poLayer; if (psOptions->bSplitListFields) { poPassedLayer = new OGRSplitListFieldLayer(poPassedLayer, psOptions->nMaxSplitListSubFields); if (psOptions->bDisplayProgress && psOptions->nMaxSplitListSubFields != 1 && nCountLayersFeatures != 0) { pfnProgress = GDALScaledProgress; pProgressArg = GDALCreateScaledProgress(nAccCountFeatures * 1.0 / nCountLayersFeatures, (nAccCountFeatures + panLayerCountFeatures[iLayer] / 2) * 1.0 / nCountLayersFeatures, psOptions->pfnProgress, psOptions->pProgressData); } else { pfnProgress = NULL; pProgressArg = NULL; } int nRet = ((OGRSplitListFieldLayer*)poPassedLayer)->BuildLayerDefn(pfnProgress, pProgressArg); if (!nRet) { delete poPassedLayer; poPassedLayer = poLayer; } if (psOptions->bDisplayProgress) GDALDestroyScaledProgress(pProgressArg); pfnProgress = NULL; pProgressArg = NULL; } if (psOptions->bDisplayProgress) { if ( bSrcIsOSM ) { pfnProgress = psOptions->pfnProgress; pProgressArg = psOptions->pProgressData; } else if( nCountLayersFeatures != 0 ) { pfnProgress = GDALScaledProgress; GIntBig nStart = 0; if (poPassedLayer != poLayer && psOptions->nMaxSplitListSubFields != 1) nStart = panLayerCountFeatures[iLayer] / 2; pProgressArg = GDALCreateScaledProgress((nAccCountFeatures + nStart) * 1.0 / nCountLayersFeatures, (nAccCountFeatures + panLayerCountFeatures[iLayer]) * 1.0 / nCountLayersFeatures, psOptions->pfnProgress, psOptions->pProgressData); } } nAccCountFeatures += panLayerCountFeatures[iLayer]; TargetLayerInfo* psInfo = oSetup.Setup(poPassedLayer, psOptions->pszNewLayerName, psOptions); poPassedLayer->ResetReading(); if( (psInfo == NULL || !oTranslator.Translate( psInfo, panLayerCountFeatures[iLayer], NULL, pfnProgress, pProgressArg, psOptions )) && !psOptions->bSkipFailures ) { CPLError( CE_Failure, CPLE_AppDefined, "Terminating translation prematurely after failed\n" "translation of layer %s (use -skipfailures to skip errors)", poLayer->GetName() ); nRetCode = 1; } FreeTargetLayerInfo(psInfo); if (poPassedLayer != poLayer) delete poPassedLayer; if (psOptions->bDisplayProgress && !bSrcIsOSM) GDALDestroyScaledProgress(pProgressArg); } CPLFree(panLayerCountFeatures); CPLFree(papoLayers); } /* -------------------------------------------------------------------- */ /* Process DS style table */ /* -------------------------------------------------------------------- */ poODS->SetStyleTable( poDS->GetStyleTable () ); if( psOptions->nGroupTransactions ) { if( !psOptions->nLayerTransaction ) { if( nRetCode != 0 && !psOptions->bSkipFailures ) poODS->RollbackTransaction(); else poODS->CommitTransaction(); } } delete poGCPCoordTrans; GDALVectorTranslateOptionsFree(psOptions); if(nRetCode == 0) return (GDALDatasetH) poODS; else { if( hDstDS == NULL ) GDALClose( poODS ); return NULL; } } /************************************************************************/ /* SetZ() */ /************************************************************************/ static void SetZ (OGRGeometry* poGeom, double dfZ ) { if (poGeom == NULL) return; switch (wkbFlatten(poGeom->getGeometryType())) { case wkbPoint: ((OGRPoint*)poGeom)->setZ(dfZ); break; case wkbLineString: case wkbLinearRing: { int i; OGRLineString* poLS = (OGRLineString*) poGeom; for(i=0;i<poLS->getNumPoints();i++) poLS->setPoint(i, poLS->getX(i), poLS->getY(i), dfZ); break; } case wkbPolygon: { int i; OGRPolygon* poPoly = (OGRPolygon*) poGeom; SetZ(poPoly->getExteriorRing(), dfZ); for(i=0;i<poPoly->getNumInteriorRings();i++) SetZ(poPoly->getInteriorRing(i), dfZ); break; } case wkbMultiPoint: case wkbMultiLineString: case wkbMultiPolygon: case wkbGeometryCollection: { int i; OGRGeometryCollection* poGeomColl = (OGRGeometryCollection*) poGeom; for(i=0;i<poGeomColl->getNumGeometries();i++) SetZ(poGeomColl->getGeometryRef(i), dfZ); break; } default: break; } } /************************************************************************/ /* ForceCoordDimension() */ /************************************************************************/ static int ForceCoordDimension(int eGType, int nCoordDim) { if( nCoordDim == 2 && eGType != wkbNone ) return wkbFlatten(eGType); else if( nCoordDim == 3 && eGType != wkbNone ) return wkbSetZ(wkbFlatten((OGRwkbGeometryType)eGType)); else if( nCoordDim == COORD_DIM_XYM && eGType != wkbNone ) return wkbSetM(wkbFlatten((OGRwkbGeometryType)eGType)); else if( nCoordDim == 4 && eGType != wkbNone ) return OGR_GT_SetModifier((OGRwkbGeometryType)eGType, TRUE, TRUE); else return eGType; } /************************************************************************/ /* GetLayerAndOverwriteIfNecessary() */ /************************************************************************/ static OGRLayer* GetLayerAndOverwriteIfNecessary(GDALDataset *poDstDS, const char* pszNewLayerName, bool bOverwrite, bool* pbErrorOccurred) { if( pbErrorOccurred ) *pbErrorOccurred = false; /* GetLayerByName() can instantiate layers that would have been */ /* 'hidden' otherwise, for example, non-spatial tables in a */ /* PostGIS-enabled database, so this apparently useless command is */ /* not useless. (#4012) */ CPLPushErrorHandler(CPLQuietErrorHandler); OGRLayer* poDstLayer = poDstDS->GetLayerByName(pszNewLayerName); CPLPopErrorHandler(); CPLErrorReset(); int iLayer = -1; if (poDstLayer != NULL) { int nLayerCount = poDstDS->GetLayerCount(); for( iLayer = 0; iLayer < nLayerCount; iLayer++ ) { OGRLayer *poLayer = poDstDS->GetLayer(iLayer); if (poLayer == poDstLayer) break; } if (iLayer == nLayerCount) /* should not happen with an ideal driver */ poDstLayer = NULL; } /* -------------------------------------------------------------------- */ /* If the user requested overwrite, and we have the layer in */ /* question we need to delete it now so it will get recreated */ /* (overwritten). */ /* -------------------------------------------------------------------- */ if( poDstLayer != NULL && bOverwrite ) { if( poDstDS->DeleteLayer( iLayer ) != OGRERR_NONE ) { CPLError( CE_Failure, CPLE_AppDefined, "DeleteLayer() failed when overwrite requested." ); if( pbErrorOccurred ) *pbErrorOccurred = true; } poDstLayer = NULL; } return poDstLayer; } /************************************************************************/ /* ConvertType() */ /************************************************************************/ static OGRwkbGeometryType ConvertType(GeomTypeConversion eGeomTypeConversion, OGRwkbGeometryType eGType) { OGRwkbGeometryType eRetType = eGType; if ( eGeomTypeConversion == GTC_PROMOTE_TO_MULTI ) { if( !OGR_GT_IsSubClassOf(eGType, wkbGeometryCollection) ) eRetType = OGR_GT_GetCollection(eGType); } else if ( eGeomTypeConversion == GTC_CONVERT_TO_LINEAR ) eRetType = OGR_GT_GetLinear(eGType); if ( eGeomTypeConversion == GTC_CONVERT_TO_CURVE ) eRetType = OGR_GT_GetCurve(eGType); return eRetType; } /************************************************************************/ /* DoFieldTypeConversion() */ /************************************************************************/ static void DoFieldTypeConversion(GDALDataset* poDstDS, OGRFieldDefn& oFieldDefn, char** papszFieldTypesToString, char** papszMapFieldType, bool bUnsetFieldWidth, bool bQuiet, bool bForceNullable, bool bUnsetDefault) { if (papszFieldTypesToString != NULL ) { CPLString osLookupString; osLookupString.Printf("%s(%s)", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()), OGRFieldDefn::GetFieldSubTypeName(oFieldDefn.GetSubType())); int iIdx = CSLFindString(papszFieldTypesToString, osLookupString); if( iIdx < 0 ) iIdx = CSLFindString(papszFieldTypesToString, OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType())); if( iIdx < 0 ) iIdx = CSLFindString(papszFieldTypesToString, "All"); if( iIdx >= 0 ) { oFieldDefn.SetSubType(OFSTNone); oFieldDefn.SetType(OFTString); } } else if (papszMapFieldType != NULL) { CPLString osLookupString; osLookupString.Printf("%s(%s)", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()), OGRFieldDefn::GetFieldSubTypeName(oFieldDefn.GetSubType())); const char* pszType = CSLFetchNameValue(papszMapFieldType, osLookupString); if( pszType == NULL ) pszType = CSLFetchNameValue(papszMapFieldType, OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType())); if( pszType == NULL ) pszType = CSLFetchNameValue(papszMapFieldType, "All"); if( pszType != NULL ) { int iSubType; int iType = GetFieldType(pszType, &iSubType); if( iType >= 0 && iSubType >= 0 ) { oFieldDefn.SetSubType(OFSTNone); oFieldDefn.SetType((OGRFieldType)iType); oFieldDefn.SetSubType((OGRFieldSubType)iSubType); if( iType == OFTInteger ) oFieldDefn.SetWidth(0); } } } if( bUnsetFieldWidth ) { oFieldDefn.SetWidth(0); oFieldDefn.SetPrecision(0); } if( bForceNullable ) oFieldDefn.SetNullable(TRUE); if( bUnsetDefault ) oFieldDefn.SetDefault(NULL); if( poDstDS->GetDriver() != NULL && poDstDS->GetDriver()->GetMetadataItem(GDAL_DMD_CREATIONFIELDDATATYPES) != NULL && strstr(poDstDS->GetDriver()->GetMetadataItem(GDAL_DMD_CREATIONFIELDDATATYPES), OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType())) == NULL ) { if( oFieldDefn.GetType() == OFTInteger64 ) { if( !bQuiet ) { CPLError(CE_Warning, CPLE_AppDefined, "The output driver does not seem to natively support %s " "type for field %s. Converting it to Real instead. " "-mapFieldType can be used to control field type conversion.", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()), oFieldDefn.GetNameRef()); } oFieldDefn.SetType(OFTReal); } else if( !bQuiet ) { CPLError(CE_Warning, CPLE_AppDefined, "The output driver does not natively support %s type for " "field %s. Misconversion can happen. " "-mapFieldType can be used to control field type conversion.", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()), oFieldDefn.GetNameRef()); } } else if( poDstDS->GetDriver() != NULL && poDstDS->GetDriver()->GetMetadataItem(GDAL_DMD_CREATIONFIELDDATATYPES) == NULL ) { // All drivers supporting OFTInteger64 should advertise it theoretically if( oFieldDefn.GetType() == OFTInteger64 ) { if( !bQuiet ) { CPLError(CE_Warning, CPLE_AppDefined, "The output driver does not seem to natively support %s type " "for field %s. Converting it to Real instead. " "-mapFieldType can be used to control field type conversion.", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()), oFieldDefn.GetNameRef()); } oFieldDefn.SetType(OFTReal); } } } /************************************************************************/ /* SetupTargetLayer::Setup() */ /************************************************************************/ TargetLayerInfo* SetupTargetLayer::Setup(OGRLayer* poSrcLayer, const char* pszNewLayerName, GDALVectorTranslateOptions *psOptions) { OGRLayer *poDstLayer; OGRFeatureDefn *poSrcFDefn; OGRFeatureDefn *poDstFDefn = NULL; int eGType = m_eGType; bool bPreserveFID = m_bPreserveFID; bool bAppend = m_bAppend; if( pszNewLayerName == NULL ) pszNewLayerName = poSrcLayer->GetName(); /* -------------------------------------------------------------------- */ /* Get other info. */ /* -------------------------------------------------------------------- */ poSrcFDefn = poSrcLayer->GetLayerDefn(); /* -------------------------------------------------------------------- */ /* Find requested geometry fields. */ /* -------------------------------------------------------------------- */ std::vector<int> anRequestedGeomFields; int nSrcGeomFieldCount = poSrcFDefn->GetGeomFieldCount(); if (m_papszSelFields && !bAppend ) { for( int iField=0; m_papszSelFields[iField] != NULL; iField++) { int iSrcField = poSrcFDefn->GetFieldIndex(m_papszSelFields[iField]); if (iSrcField >= 0) { /* do nothing */ } else { iSrcField = poSrcFDefn->GetGeomFieldIndex(m_papszSelFields[iField]); if( iSrcField >= 0) { anRequestedGeomFields.push_back(iSrcField); } else { CPLError( CE_Failure, CPLE_AppDefined, "Field '%s' not found in source layer.", m_papszSelFields[iField] ); if( !psOptions->bSkipFailures ) return NULL; } } } if( anRequestedGeomFields.size() > 1 && !m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer) ) { CPLError( CE_Failure, CPLE_AppDefined, "Several geometry fields requested, but output " "datasource does not support multiple geometry " "fields." ); if( !psOptions->bSkipFailures ) return NULL; else anRequestedGeomFields.resize(0); } } OGRSpatialReference* poOutputSRS = m_poOutputSRS; if( poOutputSRS == NULL && !m_bNullifyOutputSRS ) { if( nSrcGeomFieldCount == 1 || anRequestedGeomFields.size() == 0 ) poOutputSRS = poSrcLayer->GetSpatialRef(); else if( anRequestedGeomFields.size() == 1 ) { int iSrcGeomField = anRequestedGeomFields[0]; poOutputSRS = poSrcFDefn->GetGeomFieldDefn(iSrcGeomField)-> GetSpatialRef(); } } int iSrcZField = -1; if (m_pszZField != NULL) { iSrcZField = poSrcFDefn->GetFieldIndex(m_pszZField); if( iSrcZField < 0 ) { CPLError(CE_Warning, CPLE_AppDefined, "zfield '%s' does not exist in layer %s", m_pszZField, poSrcLayer->GetName()); } } /* -------------------------------------------------------------------- */ /* Find the layer. */ /* -------------------------------------------------------------------- */ bool bErrorOccurred; poDstLayer = GetLayerAndOverwriteIfNecessary(m_poDstDS, pszNewLayerName, m_bOverwrite, &bErrorOccurred); if( bErrorOccurred ) return NULL; /* -------------------------------------------------------------------- */ /* If the layer does not exist, then create it. */ /* -------------------------------------------------------------------- */ if( poDstLayer == NULL ) { if( !m_poDstDS->TestCapability( ODsCCreateLayer ) ) { CPLError( CE_Failure, CPLE_AppDefined, "Layer %s not found, and CreateLayer not supported by driver.", pszNewLayerName ); return NULL; } bool bForceGType = ( eGType != GEOMTYPE_UNCHANGED ); if( !bForceGType ) { if( anRequestedGeomFields.size() == 0 ) { eGType = poSrcFDefn->GetGeomType(); } else if( anRequestedGeomFields.size() == 1 ) { int iSrcGeomField = anRequestedGeomFields[0]; eGType = poSrcFDefn->GetGeomFieldDefn(iSrcGeomField)->GetType(); } else eGType = wkbNone; bool bHasZ = CPL_TO_BOOL(wkbHasZ((OGRwkbGeometryType)eGType)); eGType = ConvertType(m_eGeomTypeConversion, (OGRwkbGeometryType)eGType); if ( m_bExplodeCollections ) { OGRwkbGeometryType eFGType = wkbFlatten(eGType); if (eFGType == wkbMultiPoint) { eGType = wkbPoint; } else if (eFGType == wkbMultiLineString) { eGType = wkbLineString; } else if (eFGType == wkbMultiPolygon) { eGType = wkbPolygon; } else if (eFGType == wkbGeometryCollection || eFGType == wkbMultiCurve || eFGType == wkbMultiSurface) { eGType = wkbUnknown; } } if ( bHasZ || (iSrcZField >= 0 && eGType != wkbNone) ) eGType = wkbSetZ((OGRwkbGeometryType)eGType); } eGType = ForceCoordDimension(eGType, m_nCoordDim); CPLErrorReset(); char** papszLCOTemp = CSLDuplicate(m_papszLCO); int eGCreateLayerType = eGType; if( anRequestedGeomFields.size() == 0 && nSrcGeomFieldCount > 1 && m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer) ) { eGCreateLayerType = wkbNone; } else if( anRequestedGeomFields.size() == 1 && m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer) ) { eGCreateLayerType = wkbNone; } // If the source feature has a single geometry column that is not nullable // and that ODsCCreateGeomFieldAfterCreateLayer is available, use it // so as to be able to set the not null constraint (if the driver supports it) else if( anRequestedGeomFields.size() == 0 && nSrcGeomFieldCount == 1 && m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer) && !poSrcFDefn->GetGeomFieldDefn(0)->IsNullable() && !m_bForceNullable) { anRequestedGeomFields.push_back(0); eGCreateLayerType = wkbNone; } // If the source feature first geometry column is not nullable // and that GEOMETRY_NULLABLE creation option is available, use it // so as to be able to set the not null constraint (if the driver supports it) else if( anRequestedGeomFields.size() == 0 && nSrcGeomFieldCount >= 1 && !poSrcFDefn->GetGeomFieldDefn(0)->IsNullable() && m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST) != NULL && strstr(m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST), "GEOMETRY_NULLABLE") != NULL && CSLFetchNameValue(m_papszLCO, "GEOMETRY_NULLABLE") == NULL&& !m_bForceNullable ) { papszLCOTemp = CSLSetNameValue(papszLCOTemp, "GEOMETRY_NULLABLE", "NO"); CPLDebug("GDALVectorTranslate", "Using GEOMETRY_NULLABLE=NO"); } // Force FID column as 64 bit if the source feature has a 64 bit FID, // the target driver supports 64 bit FID and the user didn't set it // manually. if( poSrcLayer->GetMetadataItem(OLMD_FID64) != NULL && EQUAL(poSrcLayer->GetMetadataItem(OLMD_FID64), "YES") && m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST) != NULL && strstr(m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST), "FID64") != NULL && CSLFetchNameValue(m_papszLCO, "FID64") == NULL ) { papszLCOTemp = CSLSetNameValue(papszLCOTemp, "FID64", "YES"); CPLDebug("GDALVectorTranslate", "Using FID64=YES"); } // If output driver supports FID layer creation option, set it with // the FID column name of the source layer if( !m_bUnsetFid && !bAppend && poSrcLayer->GetFIDColumn() != NULL && !EQUAL(poSrcLayer->GetFIDColumn(), "") && m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST) != NULL && strstr(m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST), "='FID'") != NULL && CSLFetchNameValue(m_papszLCO, "FID") == NULL ) { papszLCOTemp = CSLSetNameValue(papszLCOTemp, "FID", poSrcLayer->GetFIDColumn()); CPLDebug("GDALVectorTranslate", "Using FID=%s and -preserve_fid", poSrcLayer->GetFIDColumn()); bPreserveFID = true; } if( m_bNativeData && poSrcLayer->GetMetadataItem("NATIVE_DATA", "NATIVE_DATA") != NULL && poSrcLayer->GetMetadataItem("NATIVE_MEDIA_TYPE", "NATIVE_DATA") != NULL && m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST) != NULL && strstr(m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST), "NATIVE_DATA") != NULL && strstr(m_poDstDS->GetDriver()->GetMetadataItem(GDAL_DS_LAYER_CREATIONOPTIONLIST), "NATIVE_MEDIA_TYPE") != NULL ) { papszLCOTemp = CSLSetNameValue(papszLCOTemp, "NATIVE_DATA", poSrcLayer->GetMetadataItem("NATIVE_DATA", "NATIVE_DATA")); papszLCOTemp = CSLSetNameValue(papszLCOTemp, "NATIVE_MEDIA_TYPE", poSrcLayer->GetMetadataItem("NATIVE_MEDIA_TYPE", "NATIVE_DATA")); CPLDebug("GDALVectorTranslate", "Transferring layer NATIVE_DATA"); } OGRSpatialReference* poOutputSRSClone = NULL; if( poOutputSRS != NULL ) { poOutputSRSClone = poOutputSRS->Clone(); } poDstLayer = m_poDstDS->CreateLayer( pszNewLayerName, poOutputSRSClone, (OGRwkbGeometryType) eGCreateLayerType, papszLCOTemp ); CSLDestroy(papszLCOTemp); if( poOutputSRSClone != NULL ) { poOutputSRSClone->Release(); } if( poDstLayer == NULL ) { return NULL; } if( m_bCopyMD ) { char** papszDomains = poSrcLayer->GetMetadataDomainList(); for(char** papszIter = papszDomains; papszIter && *papszIter; ++papszIter ) { if( !EQUAL(*papszIter, "IMAGE_STRUCTURE") && !EQUAL(*papszIter, "SUBDATASETS") ) { char** papszMD = poSrcLayer->GetMetadata(*papszIter); if( papszMD ) poDstLayer->SetMetadata(papszMD, *papszIter); } } CSLDestroy(papszDomains); } if( anRequestedGeomFields.size() == 0 && nSrcGeomFieldCount > 1 && m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer) ) { for(int i = 0; i < nSrcGeomFieldCount; i ++) { anRequestedGeomFields.push_back(i); } } if( anRequestedGeomFields.size() > 1 || (anRequestedGeomFields.size() == 1 && m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer)) ) { for(int i = 0; i < (int)anRequestedGeomFields.size(); i ++) { int iSrcGeomField = anRequestedGeomFields[i]; OGRGeomFieldDefn oGFldDefn (poSrcFDefn->GetGeomFieldDefn(iSrcGeomField)); if( m_poOutputSRS != NULL ) { poOutputSRSClone = m_poOutputSRS->Clone(); oGFldDefn.SetSpatialRef(poOutputSRSClone); poOutputSRSClone->Release(); } if( bForceGType ) oGFldDefn.SetType((OGRwkbGeometryType) eGType); else { eGType = oGFldDefn.GetType(); eGType = ConvertType(m_eGeomTypeConversion, (OGRwkbGeometryType)eGType); eGType = ForceCoordDimension(eGType, m_nCoordDim); oGFldDefn.SetType((OGRwkbGeometryType) eGType); } if( m_bForceNullable ) oGFldDefn.SetNullable(TRUE); poDstLayer->CreateGeomField(&oGFldDefn); } } bAppend = false; } /* -------------------------------------------------------------------- */ /* Otherwise we will append to it, if append was requested. */ /* -------------------------------------------------------------------- */ else if( !bAppend && !m_bNewDataSource ) { CPLError( CE_Failure, CPLE_AppDefined, "Layer %s already exists, and -append not specified.\n" " Consider using -append, or -overwrite.", pszNewLayerName ); return NULL; } else { if( CSLCount(m_papszLCO) > 0 ) { CPLError( CE_Warning, CPLE_AppDefined, "Layer creation options ignored since an existing layer is\n" " being appended to." ); } } /* -------------------------------------------------------------------- */ /* Process Layer style table */ /* -------------------------------------------------------------------- */ poDstLayer->SetStyleTable( poSrcLayer->GetStyleTable () ); /* -------------------------------------------------------------------- */ /* Add fields. Default to copy all field. */ /* If only a subset of all fields requested, then output only */ /* the selected fields, and in the order that they were */ /* selected. */ /* -------------------------------------------------------------------- */ int nSrcFieldCount = poSrcFDefn->GetFieldCount(); int iSrcFIDField = -1; // Initialize the index-to-index map to -1's int *panMap = (int *) VSIMalloc( sizeof(int) * nSrcFieldCount ); for( int iField=0; iField < nSrcFieldCount; iField++) panMap[iField] = -1; /* Caution : at the time of writing, the MapInfo driver */ /* returns NULL until a field has been added */ poDstFDefn = poDstLayer->GetLayerDefn(); if (m_papszFieldMap && bAppend) { bool bIdentity = false; if (EQUAL(m_papszFieldMap[0], "identity")) bIdentity = true; else if (CSLCount(m_papszFieldMap) != nSrcFieldCount) { CPLError( CE_Failure, CPLE_AppDefined, "Field map should contain the value 'identity' or " "the same number of integer values as the source field count."); VSIFree(panMap); return NULL; } for( int iField=0; iField < nSrcFieldCount; iField++) { panMap[iField] = bIdentity? iField : atoi(m_papszFieldMap[iField]); if (panMap[iField] >= poDstFDefn->GetFieldCount()) { CPLError( CE_Failure, CPLE_AppDefined, "Invalid destination field index %d.", panMap[iField]); VSIFree(panMap); return NULL; } } } else if (m_papszSelFields && !bAppend ) { int nDstFieldCount = 0; if (poDstFDefn) nDstFieldCount = poDstFDefn->GetFieldCount(); for( int iField=0; m_papszSelFields[iField] != NULL; iField++) { int iSrcField = poSrcFDefn->GetFieldIndex(m_papszSelFields[iField]); if (iSrcField >= 0) { OGRFieldDefn* poSrcFieldDefn = poSrcFDefn->GetFieldDefn(iSrcField); OGRFieldDefn oFieldDefn( poSrcFieldDefn ); DoFieldTypeConversion(m_poDstDS, oFieldDefn, m_papszFieldTypesToString, m_papszMapFieldType, m_bUnsetFieldWidth, psOptions->bQuiet, m_bForceNullable, m_bUnsetDefault); /* The field may have been already created at layer creation */ int iDstField = -1; if (poDstFDefn) iDstField = poDstFDefn->GetFieldIndex(oFieldDefn.GetNameRef()); if (iDstField >= 0) { panMap[iSrcField] = iDstField; } else if (poDstLayer->CreateField( &oFieldDefn ) == OGRERR_NONE) { /* now that we've created a field, GetLayerDefn() won't return NULL */ if (poDstFDefn == NULL) poDstFDefn = poDstLayer->GetLayerDefn(); /* Sanity check : if it fails, the driver is buggy */ if (poDstFDefn != NULL && poDstFDefn->GetFieldCount() != nDstFieldCount + 1) { CPLError(CE_Warning, CPLE_AppDefined, "The output driver has claimed to have added the %s field, but it did not!", oFieldDefn.GetNameRef() ); } else { panMap[iSrcField] = nDstFieldCount; nDstFieldCount ++; } } } } /* -------------------------------------------------------------------- */ /* Use SetIgnoredFields() on source layer if available */ /* -------------------------------------------------------------------- */ if (poSrcLayer->TestCapability(OLCIgnoreFields)) { int iSrcField; char** papszIgnoredFields = NULL; bool bUseIgnoredFields = true; char** papszWHEREUsedFields = NULL; if (m_pszWHERE) { /* We must not ignore fields used in the -where expression (#4015) */ OGRFeatureQuery oFeatureQuery; if ( oFeatureQuery.Compile( poSrcLayer->GetLayerDefn(), m_pszWHERE, FALSE, NULL ) == OGRERR_NONE ) { papszWHEREUsedFields = oFeatureQuery.GetUsedFields(); } else { bUseIgnoredFields = false; } } for(iSrcField=0;bUseIgnoredFields && iSrcField<poSrcFDefn->GetFieldCount();iSrcField++) { const char* pszFieldName = poSrcFDefn->GetFieldDefn(iSrcField)->GetNameRef(); bool bFieldRequested = false; for( int iField=0; m_papszSelFields[iField] != NULL; iField++) { if (EQUAL(pszFieldName, m_papszSelFields[iField])) { bFieldRequested = true; break; } } bFieldRequested |= CSLFindString(papszWHEREUsedFields, pszFieldName) >= 0; bFieldRequested |= (m_pszZField != NULL && EQUAL(pszFieldName, m_pszZField)); /* If source field not requested, add it to ignored files list */ if (!bFieldRequested) papszIgnoredFields = CSLAddString(papszIgnoredFields, pszFieldName); } if (bUseIgnoredFields) poSrcLayer->SetIgnoredFields((const char**)papszIgnoredFields); CSLDestroy(papszIgnoredFields); CSLDestroy(papszWHEREUsedFields); } } else if( !bAppend || m_bAddMissingFields ) { int nDstFieldCount = 0; if (poDstFDefn) nDstFieldCount = poDstFDefn->GetFieldCount(); /* Save the map of existing fields, before creating new ones */ /* This helps when converting a source layer that has duplicated field names */ /* which is a bad idea */ std::map<CPLString, int> oMapExistingFields; for( int iField = 0; iField < nDstFieldCount; iField++ ) { const char* pszFieldName = poDstFDefn->GetFieldDefn(iField)->GetNameRef(); CPLString osUpperFieldName(CPLString(pszFieldName).toupper()); if( oMapExistingFields.find(osUpperFieldName) == oMapExistingFields.end() ) oMapExistingFields[osUpperFieldName] = iField; /*else CPLError(CE_Warning, CPLE_AppDefined, "The target layer has already a duplicated field name '%s' before " "adding the fields of the source layer", pszFieldName); */ } const char* pszFIDColumn = poDstLayer->GetFIDColumn(); for( int iField = 0; iField < nSrcFieldCount; iField++ ) { OGRFieldDefn* poSrcFieldDefn = poSrcFDefn->GetFieldDefn(iField); OGRFieldDefn oFieldDefn( poSrcFieldDefn ); // Avoid creating a field with the same name as the FID column if( pszFIDColumn != NULL && EQUAL(pszFIDColumn, oFieldDefn.GetNameRef()) && (oFieldDefn.GetType() == OFTInteger || oFieldDefn.GetType() == OFTInteger64) ) { iSrcFIDField = iField; continue; } DoFieldTypeConversion(m_poDstDS, oFieldDefn, m_papszFieldTypesToString, m_papszMapFieldType, m_bUnsetFieldWidth, psOptions->bQuiet, m_bForceNullable, m_bUnsetDefault); /* The field may have been already created at layer creation */ std::map<CPLString, int>::iterator oIter = oMapExistingFields.find(CPLString(oFieldDefn.GetNameRef()).toupper()); if( oIter != oMapExistingFields.end() ) { panMap[iField] = oIter->second; continue; } bool bHasRenamed = false; /* In case the field name already exists in the target layer, */ /* build a unique field name */ if( poDstFDefn != NULL && poDstFDefn->GetFieldIndex(oFieldDefn.GetNameRef()) >= 0 ) { int nTry = 1; while( true ) { ++nTry; CPLString osTmpName; osTmpName.Printf("%s%d", oFieldDefn.GetNameRef(), nTry); /* Check that the proposed name doesn't exist either in the already */ /* created fields or in the source fields */ if( poDstFDefn->GetFieldIndex(osTmpName) < 0 && poSrcFDefn->GetFieldIndex(osTmpName) < 0 ) { bHasRenamed = true; oFieldDefn.SetName(osTmpName); break; } } } if (poDstLayer->CreateField( &oFieldDefn ) == OGRERR_NONE) { /* now that we've created a field, GetLayerDefn() won't return NULL */ if (poDstFDefn == NULL) poDstFDefn = poDstLayer->GetLayerDefn(); /* Sanity check : if it fails, the driver is buggy */ if (poDstFDefn != NULL && poDstFDefn->GetFieldCount() != nDstFieldCount + 1) { CPLError(CE_Warning, CPLE_AppDefined, "The output driver has claimed to have added the %s field, but it did not!", oFieldDefn.GetNameRef() ); } else { if( bHasRenamed ) { const char* pszNewFieldName = poDstFDefn->GetFieldDefn(nDstFieldCount)->GetNameRef(); CPLError(CE_Warning, CPLE_AppDefined, "Field '%s' already exists. Renaming it as '%s'", poSrcFieldDefn->GetNameRef(), pszNewFieldName); } panMap[iField] = nDstFieldCount; nDstFieldCount ++; } } } } else { /* For an existing layer, build the map by fetching the index in the destination */ /* layer for each source field */ if (poDstFDefn == NULL) { CPLError( CE_Failure, CPLE_AppDefined, "poDstFDefn == NULL." ); VSIFree(panMap); return NULL; } for( int iField = 0; iField < nSrcFieldCount; iField++ ) { OGRFieldDefn* poSrcFieldDefn = poSrcFDefn->GetFieldDefn(iField); int iDstField = poDstLayer->FindFieldIndex(poSrcFieldDefn->GetNameRef(), m_bExactFieldNameMatch); if (iDstField >= 0) panMap[iField] = iDstField; else CPLDebug("GDALVectorTranslate", "Skipping field '%s' not found in destination layer '%s'.", poSrcFieldDefn->GetNameRef(), poDstLayer->GetName() ); } } TargetLayerInfo* psInfo = (TargetLayerInfo*) CPLMalloc(sizeof(TargetLayerInfo)); psInfo->nFeaturesRead = 0; psInfo->bPerFeatureCT = false; psInfo->poSrcLayer = poSrcLayer; psInfo->poDstLayer = poDstLayer; psInfo->papoCT = (OGRCoordinateTransformation**) CPLCalloc(poDstLayer->GetLayerDefn()->GetGeomFieldCount(), sizeof(OGRCoordinateTransformation*)); psInfo->papapszTransformOptions = (char***) CPLCalloc(poDstLayer->GetLayerDefn()->GetGeomFieldCount(), sizeof(char**)); psInfo->panMap = panMap; psInfo->iSrcZField = iSrcZField; psInfo->iSrcFIDField = iSrcFIDField; if( anRequestedGeomFields.size() == 1 ) psInfo->iRequestedSrcGeomField = anRequestedGeomFields[0]; else psInfo->iRequestedSrcGeomField = -1; psInfo->bPreserveFID = bPreserveFID; return psInfo; } /************************************************************************/ /* FreeTargetLayerInfo() */ /************************************************************************/ static void FreeTargetLayerInfo(TargetLayerInfo* psInfo) { if( psInfo == NULL ) return; for(int i=0;i<psInfo->poDstLayer->GetLayerDefn()->GetGeomFieldCount();i++) { delete psInfo->papoCT[i]; CSLDestroy(psInfo->papapszTransformOptions[i]); } CPLFree(psInfo->papoCT); CPLFree(psInfo->papapszTransformOptions); CPLFree(psInfo->panMap); CPLFree(psInfo); } /************************************************************************/ /* SetupCT() */ /************************************************************************/ static bool SetupCT( TargetLayerInfo* psInfo, OGRLayer* poSrcLayer, bool bTransform, bool bWrapDateline, const CPLString& osDateLineOffset, OGRSpatialReference* poUserSourceSRS, OGRFeature* poFeature, OGRSpatialReference* poOutputSRS, OGRCoordinateTransformation* poGCPCoordTrans) { OGRLayer *poDstLayer = psInfo->poDstLayer; int nDstGeomFieldCount = poDstLayer->GetLayerDefn()->GetGeomFieldCount(); for( int iGeom = 0; iGeom < nDstGeomFieldCount; iGeom ++ ) { /* -------------------------------------------------------------------- */ /* Setup coordinate transformation if we need it. */ /* -------------------------------------------------------------------- */ OGRSpatialReference* poSourceSRS = NULL; OGRCoordinateTransformation* poCT = NULL; char** papszTransformOptions = NULL; int iSrcGeomField; if( psInfo->iRequestedSrcGeomField >= 0 ) iSrcGeomField = psInfo->iRequestedSrcGeomField; else { iSrcGeomField = poSrcLayer->GetLayerDefn()->GetGeomFieldIndex( poDstLayer->GetLayerDefn()->GetGeomFieldDefn(iGeom)->GetNameRef()); if( iSrcGeomField < 0 ) { if( nDstGeomFieldCount == 1 && poSrcLayer->GetLayerDefn()->GetGeomFieldCount() > 0 ) { iSrcGeomField = 0; } else continue; } } if( bTransform || bWrapDateline ) { if( psInfo->nFeaturesRead == 0 ) { poSourceSRS = poUserSourceSRS; if( poSourceSRS == NULL ) { if( iSrcGeomField > 0 ) poSourceSRS = poSrcLayer->GetLayerDefn()-> GetGeomFieldDefn(iSrcGeomField)->GetSpatialRef(); else poSourceSRS = poSrcLayer->GetSpatialRef(); } } if( poSourceSRS == NULL ) { OGRGeometry* poSrcGeometry = poFeature->GetGeomFieldRef(iSrcGeomField); if( poSrcGeometry ) poSourceSRS = poSrcGeometry->getSpatialReference(); psInfo->bPerFeatureCT = true; } } if( bTransform ) { if( poSourceSRS == NULL ) { CPLError( CE_Failure, CPLE_AppDefined, "Can't transform coordinates, source layer has no\n" "coordinate system. Use -s_srs to set one." ); return false; } CPLAssert( NULL != poSourceSRS ); CPLAssert( NULL != poOutputSRS ); if( psInfo->papoCT[iGeom] != NULL && psInfo->papoCT[iGeom]->GetSourceCS() == poSourceSRS ) { poCT = psInfo->papoCT[iGeom]; } else { poCT = OGRCreateCoordinateTransformation( poSourceSRS, poOutputSRS ); if( poCT == NULL ) { char *pszWKT = NULL; CPLError( CE_Failure, CPLE_AppDefined, "Failed to create coordinate transformation between the\n" "following coordinate systems. This may be because they\n" "are not transformable, or because projection services\n" "(PROJ.4 DLL/.so) could not be loaded." ); poSourceSRS->exportToPrettyWkt( &pszWKT, FALSE ); CPLError( CE_Failure, CPLE_AppDefined, "Source:\n%s", pszWKT ); CPLFree(pszWKT); poOutputSRS->exportToPrettyWkt( &pszWKT, FALSE ); CPLError( CE_Failure, CPLE_AppDefined, "Target:\n%s", pszWKT ); CPLFree(pszWKT); return false; } if( poGCPCoordTrans != NULL ) poCT = new CompositeCT( poGCPCoordTrans, poCT ); } if( poCT != psInfo->papoCT[iGeom] ) { delete psInfo->papoCT[iGeom]; psInfo->papoCT[iGeom] = poCT; } } else { poCT = poGCPCoordTrans; } if (bWrapDateline) { if (bTransform && poCT != NULL && poOutputSRS != NULL && poOutputSRS->IsGeographic()) { papszTransformOptions = CSLAddString(papszTransformOptions, "WRAPDATELINE=YES"); if( osDateLineOffset.size() ) { CPLString soOffset("DATELINEOFFSET="); soOffset += osDateLineOffset; papszTransformOptions = CSLAddString(papszTransformOptions, soOffset); } } else if (poSourceSRS != NULL && poSourceSRS->IsGeographic()) { papszTransformOptions = CSLAddString(papszTransformOptions, "WRAPDATELINE=YES"); if( osDateLineOffset.size() ) { CPLString soOffset("DATELINEOFFSET="); soOffset += osDateLineOffset; papszTransformOptions = CSLAddString(papszTransformOptions, soOffset); } } else { static bool bHasWarned = false; if( !bHasWarned ) CPLError( CE_Failure, CPLE_IllegalArg, "-wrapdateline option only works when reprojecting to a geographic SRS"); bHasWarned = true; } CSLDestroy(psInfo->papapszTransformOptions[iGeom]); psInfo->papapszTransformOptions[iGeom] = papszTransformOptions; } } return true; } /************************************************************************/ /* LayerTranslator::Translate() */ /************************************************************************/ int LayerTranslator::Translate( TargetLayerInfo* psInfo, GIntBig nCountLayerFeatures, GIntBig* pnReadFeatureCount, GDALProgressFunc pfnProgress, void *pProgressArg, GDALVectorTranslateOptions *psOptions ) { OGRLayer *poSrcLayer; OGRLayer *poDstLayer; const int eGType = m_eGType; OGRSpatialReference* poOutputSRS = m_poOutputSRS; poSrcLayer = psInfo->poSrcLayer; poDstLayer = psInfo->poDstLayer; int* const panMap = psInfo->panMap; const int iSrcZField = psInfo->iSrcZField; const bool bPreserveFID = psInfo->bPreserveFID; const int nSrcGeomFieldCount = poSrcLayer->GetLayerDefn()->GetGeomFieldCount(); const int nDstGeomFieldCount = poDstLayer->GetLayerDefn()->GetGeomFieldCount(); const bool bExplodeCollections = m_bExplodeCollections && nDstGeomFieldCount <= 1; if( poOutputSRS == NULL && !m_bNullifyOutputSRS ) { if( nSrcGeomFieldCount == 1 ) { poOutputSRS = poSrcLayer->GetSpatialRef(); } else if( psInfo->iRequestedSrcGeomField > 0 ) { poOutputSRS = poSrcLayer->GetLayerDefn()->GetGeomFieldDefn( psInfo->iRequestedSrcGeomField)->GetSpatialRef(); } } /* -------------------------------------------------------------------- */ /* Transfer features. */ /* -------------------------------------------------------------------- */ OGRFeature *poFeature; int nFeaturesInTransaction = 0; GIntBig nCount = 0; /* written + failed */ GIntBig nFeaturesWritten = 0; if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { if( poDstLayer->StartTransaction() != OGRERR_NONE ) return false; } } bool bRet = true; while( true ) { OGRFeature *poDstFeature = NULL; if( psOptions->nFIDToFetch != OGRNullFID ) poFeature = poSrcLayer->GetFeature(psOptions->nFIDToFetch); else poFeature = poSrcLayer->GetNextFeature(); if( poFeature == NULL ) break; if( psInfo->nFeaturesRead == 0 || psInfo->bPerFeatureCT ) { if( !SetupCT( psInfo, poSrcLayer, m_bTransform, m_bWrapDateline, m_osDateLineOffset, m_poUserSourceSRS, poFeature, poOutputSRS, m_poGCPCoordTrans) ) { OGRFeature::DestroyFeature( poFeature ); return false; } } psInfo->nFeaturesRead ++; int nParts = 0; int nIters = 1; if (bExplodeCollections) { OGRGeometry* poSrcGeometry; if( psInfo->iRequestedSrcGeomField >= 0 ) poSrcGeometry = poFeature->GetGeomFieldRef( psInfo->iRequestedSrcGeomField); else poSrcGeometry = poFeature->GetGeometryRef(); if (poSrcGeometry && OGR_GT_IsSubClassOf(poSrcGeometry->getGeometryType(), wkbGeometryCollection) ) { nParts = ((OGRGeometryCollection*)poSrcGeometry)->getNumGeometries(); nIters = nParts; if (nIters == 0) nIters = 1; } } for(int iPart = 0; iPart < nIters; iPart++) { if( ++nFeaturesInTransaction == psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { if( poDstLayer->CommitTransaction() != OGRERR_NONE || poDstLayer->StartTransaction() != OGRERR_NONE ) { OGRFeature::DestroyFeature( poFeature ); return false; } } else { if( m_poODS->CommitTransaction() != OGRERR_NONE || m_poODS->StartTransaction(psOptions->bForceTransaction) != OGRERR_NONE ) { OGRFeature::DestroyFeature( poFeature ); return false; } } nFeaturesInTransaction = 0; } CPLErrorReset(); poDstFeature = OGRFeature::CreateFeature( poDstLayer->GetLayerDefn() ); /* Optimization to avoid duplicating the source geometry in the */ /* target feature : we steal it from the source feature for now... */ OGRGeometry* poStolenGeometry = NULL; if( !bExplodeCollections && nSrcGeomFieldCount == 1 && nDstGeomFieldCount == 1 ) { poStolenGeometry = poFeature->StealGeometry(); } else if( !bExplodeCollections && psInfo->iRequestedSrcGeomField >= 0 ) { poStolenGeometry = poFeature->StealGeometry( psInfo->iRequestedSrcGeomField); } if( poDstFeature->SetFrom( poFeature, panMap, TRUE ) != OGRERR_NONE ) { if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { if( poDstLayer->CommitTransaction() != OGRERR_NONE ) { OGRFeature::DestroyFeature( poFeature ); OGRFeature::DestroyFeature( poDstFeature ); OGRGeometryFactory::destroyGeometry( poStolenGeometry ); return false; } } } CPLError( CE_Failure, CPLE_AppDefined, "Unable to translate feature " CPL_FRMT_GIB " from layer %s.", poFeature->GetFID(), poSrcLayer->GetName() ); OGRFeature::DestroyFeature( poFeature ); OGRFeature::DestroyFeature( poDstFeature ); OGRGeometryFactory::destroyGeometry( poStolenGeometry ); return false; } /* ... and now we can attach the stolen geometry */ if( poStolenGeometry ) { poDstFeature->SetGeometryDirectly(poStolenGeometry); } if( bPreserveFID ) poDstFeature->SetFID( poFeature->GetFID() ); else if( psInfo->iSrcFIDField >= 0 && poFeature->IsFieldSet(psInfo->iSrcFIDField)) poDstFeature->SetFID( poFeature->GetFieldAsInteger64(psInfo->iSrcFIDField) ); /* Erase native data if asked explicitly */ if( !m_bNativeData ) { poDstFeature->SetNativeData(NULL); poDstFeature->SetNativeMediaType(NULL); } for( int iGeom = 0; iGeom < nDstGeomFieldCount; iGeom ++ ) { OGRGeometry* poDstGeometry = poDstFeature->StealGeometry(iGeom); if (poDstGeometry == NULL) continue; if (nParts > 0) { /* For -explodecollections, extract the iPart(th) of the geometry */ OGRGeometry* poPart = ((OGRGeometryCollection*)poDstGeometry)->getGeometryRef(iPart); ((OGRGeometryCollection*)poDstGeometry)->removeGeometry(iPart, FALSE); delete poDstGeometry; poDstGeometry = poPart; } if (iSrcZField != -1) { SetZ(poDstGeometry, poFeature->GetFieldAsDouble(iSrcZField)); /* This will correct the coordinate dimension to 3 */ OGRGeometry* poDupGeometry = poDstGeometry->clone(); delete poDstGeometry; poDstGeometry = poDupGeometry; } if (m_nCoordDim == 2 || m_nCoordDim == 3) poDstGeometry->setCoordinateDimension( m_nCoordDim ); else if (m_nCoordDim == 4) { poDstGeometry->set3D( TRUE ); poDstGeometry->setMeasured( TRUE ); } else if (m_nCoordDim == COORD_DIM_XYM) { poDstGeometry->set3D( FALSE ); poDstGeometry->setMeasured( TRUE ); } else if ( m_nCoordDim == COORD_DIM_LAYER_DIM ) { const OGRwkbGeometryType eDstLayerGeomType = poDstLayer->GetLayerDefn()->GetGeomFieldDefn(iGeom)->GetType(); poDstGeometry->set3D( wkbHasZ(eDstLayerGeomType) ); poDstGeometry->setMeasured( wkbHasM(eDstLayerGeomType) ); } if (m_eGeomOp == GEOMOP_SEGMENTIZE) { if (m_dfGeomOpParam > 0) poDstGeometry->segmentize(m_dfGeomOpParam); } else if (m_eGeomOp == GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY) { if (m_dfGeomOpParam > 0) { OGRGeometry* poNewGeom = poDstGeometry->SimplifyPreserveTopology(m_dfGeomOpParam); if (poNewGeom) { delete poDstGeometry; poDstGeometry = poNewGeom; } } } if (m_poClipSrc) { OGRGeometry* poClipped = poDstGeometry->Intersection(m_poClipSrc); delete poDstGeometry; if (poClipped == NULL || poClipped->IsEmpty()) { delete poClipped; goto end_loop; } poDstGeometry = poClipped; } OGRCoordinateTransformation* poCT = psInfo->papoCT[iGeom]; if( !m_bTransform ) poCT = m_poGCPCoordTrans; char** papszTransformOptions = psInfo->papapszTransformOptions[iGeom]; if( poCT != NULL || papszTransformOptions != NULL) { OGRGeometry* poReprojectedGeom = OGRGeometryFactory::transformWithOptions(poDstGeometry, poCT, papszTransformOptions); if( poReprojectedGeom == NULL ) { if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { if( poDstLayer->CommitTransaction() != OGRERR_NONE && !psOptions->bSkipFailures ) { OGRFeature::DestroyFeature( poFeature ); OGRFeature::DestroyFeature( poDstFeature ); delete poDstGeometry; return false; } } } CPLError( CE_Failure, CPLE_AppDefined, "Failed to reproject feature " CPL_FRMT_GIB " (geometry probably out of source or destination SRS).", poFeature->GetFID() ); if( !psOptions->bSkipFailures ) { OGRFeature::DestroyFeature( poFeature ); OGRFeature::DestroyFeature( poDstFeature ); delete poDstGeometry; return false; } } delete poDstGeometry; poDstGeometry = poReprojectedGeom; } else if (poOutputSRS != NULL) { poDstGeometry->assignSpatialReference(poOutputSRS); } if (m_poClipDst) { if( poDstGeometry == NULL ) goto end_loop; OGRGeometry* poClipped = poDstGeometry->Intersection(m_poClipDst); delete poDstGeometry; if (poClipped == NULL || poClipped->IsEmpty()) { delete poClipped; goto end_loop; } poDstGeometry = poClipped; } if( eGType != GEOMTYPE_UNCHANGED ) { poDstGeometry = OGRGeometryFactory::forceTo( poDstGeometry, (OGRwkbGeometryType)eGType); } else if( m_eGeomTypeConversion == GTC_PROMOTE_TO_MULTI || m_eGeomTypeConversion == GTC_CONVERT_TO_LINEAR || m_eGeomTypeConversion == GTC_CONVERT_TO_CURVE ) { if( poDstGeometry != NULL ) { OGRwkbGeometryType eTargetType = poDstGeometry->getGeometryType(); eTargetType = ConvertType(m_eGeomTypeConversion, eTargetType); poDstGeometry = OGRGeometryFactory::forceTo(poDstGeometry, eTargetType); } } poDstFeature->SetGeomFieldDirectly(iGeom, poDstGeometry); } CPLErrorReset(); if( poDstLayer->CreateFeature( poDstFeature ) == OGRERR_NONE ) { nFeaturesWritten ++; if( (bPreserveFID && poDstFeature->GetFID() != poFeature->GetFID()) || (!bPreserveFID && psInfo->iSrcFIDField >= 0 && poFeature->IsFieldSet(psInfo->iSrcFIDField) && poDstFeature->GetFID() != poFeature->GetFieldAsInteger64(psInfo->iSrcFIDField)) ) { CPLError( CE_Warning, CPLE_AppDefined, "Feature id not preserved"); } } else if( !psOptions->bSkipFailures ) { if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) poDstLayer->RollbackTransaction(); } CPLError( CE_Failure, CPLE_AppDefined, "Unable to write feature " CPL_FRMT_GIB " from layer %s.", poFeature->GetFID(), poSrcLayer->GetName() ); OGRFeature::DestroyFeature( poFeature ); OGRFeature::DestroyFeature( poDstFeature ); return false; } else { CPLDebug( "GDALVectorTranslate", "Unable to write feature " CPL_FRMT_GIB " into layer %s.", poFeature->GetFID(), poSrcLayer->GetName() ); if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { poDstLayer->RollbackTransaction(); CPL_IGNORE_RET_VAL(poDstLayer->StartTransaction()); } else { m_poODS->RollbackTransaction(); m_poODS->StartTransaction(psOptions->bForceTransaction); } } } end_loop: OGRFeature::DestroyFeature( poDstFeature ); } OGRFeature::DestroyFeature( poFeature ); /* Report progress */ nCount ++; bool bGoOn = true; if (pfnProgress) { if (m_nSrcFileSize != 0) { if ((nCount % 1000) == 0) { OGRLayer* poFCLayer = m_poSrcDS->ExecuteSQL("GetBytesRead()", NULL, NULL); if( poFCLayer != NULL ) { OGRFeature* poFeat = poFCLayer->GetNextFeature(); if( poFeat ) { const char* pszReadSize = poFeat->GetFieldAsString(0); GUIntBig nReadSize = CPLScanUIntBig( pszReadSize, 32 ); bGoOn = pfnProgress(nReadSize * 1.0 / m_nSrcFileSize, "", pProgressArg) != FALSE; OGRFeature::DestroyFeature( poFeat ); } } m_poSrcDS->ReleaseResultSet(poFCLayer); } } else { bGoOn = pfnProgress(nCount * 1.0 / nCountLayerFeatures, "", pProgressArg) != FALSE; } } if( !bGoOn ) { bRet = false; break; } if (pnReadFeatureCount) *pnReadFeatureCount = nCount; if( psOptions->nFIDToFetch != OGRNullFID ) break; } if( psOptions->nGroupTransactions ) { if( psOptions->nLayerTransaction ) { if( poDstLayer->CommitTransaction() != OGRERR_NONE ) bRet = false; } } CPLDebug("GDALVectorTranslate", CPL_FRMT_GIB " features written in layer '%s'", nFeaturesWritten, poDstLayer->GetName()); return bRet; } /************************************************************************/ /* RemoveBOM() */ /************************************************************************/ /* Remove potential UTF-8 BOM from data (must be NUL terminated) */ static void RemoveBOM(GByte* pabyData) { if( pabyData[0] == 0xEF && pabyData[1] == 0xBB && pabyData[2] == 0xBF ) { memmove(pabyData, pabyData + 3, strlen((const char*)pabyData + 3) + 1); } } /************************************************************************/ /* GDALVectorTranslateOptionsNew() */ /************************************************************************/ /** * allocates a GDALVectorTranslateOptions struct. * * @param papszArgv NULL terminated list of options (potentially including filename and open options too), or NULL. * The accepted options are the ones of the <a href="ogr2ogr.html">ogr2ogr</a> utility. * @param psOptionsForBinary (output) may be NULL (and should generally be NULL), * otherwise (gdal_translate_bin.cpp use case) must be allocated with * GDALVectorTranslateOptionsForBinaryNew() prior to this function. Will be * filled with potentially present filename, open options,... * @return pointer to the allocated GDALVectorTranslateOptions struct. Must be freed with GDALVectorTranslateOptionsFree(). * * @since GDAL 2.1 */ GDALVectorTranslateOptions *GDALVectorTranslateOptionsNew(char** papszArgv, GDALVectorTranslateOptionsForBinary* psOptionsForBinary) { GDALVectorTranslateOptions *psOptions = (GDALVectorTranslateOptions *) CPLCalloc( 1, sizeof(GDALVectorTranslateOptions) ); psOptions->eAccessMode = ACCESS_CREATION; psOptions->bSkipFailures = false; psOptions->nLayerTransaction = -1; psOptions->bForceTransaction = false; psOptions->nGroupTransactions = 20000; psOptions->nFIDToFetch = OGRNullFID; psOptions->bQuiet = false; psOptions->pszFormat = CPLStrdup("ESRI Shapefile"); psOptions->papszLayers = NULL; psOptions->papszDSCO = NULL; psOptions->papszLCO = NULL; psOptions->bTransform = false; psOptions->bAddMissingFields = false; psOptions->pszOutputSRSDef = NULL; psOptions->pszSourceSRSDef = NULL; psOptions->bNullifyOutputSRS = false; psOptions->bExactFieldNameMatch = true; psOptions->pszNewLayerName = NULL; psOptions->pszWHERE = NULL; psOptions->pszGeomField = NULL; psOptions->papszSelFields = NULL; psOptions->pszSQLStatement = NULL; psOptions->pszDialect = NULL; psOptions->eGType = GEOMTYPE_UNCHANGED; psOptions->eGeomTypeConversion = GTC_DEFAULT; psOptions->eGeomOp = GEOMOP_NONE; psOptions->dfGeomOpParam = 0; psOptions->papszFieldTypesToString = NULL; psOptions->papszMapFieldType = NULL; psOptions->bUnsetFieldWidth = false; psOptions->bDisplayProgress = false; psOptions->bWrapDateline = false; psOptions->dfDateLineOffset = 10.0; psOptions->bClipSrc = false; psOptions->hClipSrc = NULL; psOptions->pszClipSrcDS = NULL; psOptions->pszClipSrcSQL = NULL; psOptions->pszClipSrcLayer = NULL; psOptions->pszClipSrcWhere = NULL; psOptions->hClipDst = NULL; psOptions->pszClipDstDS = NULL; psOptions->pszClipDstSQL = NULL; psOptions->pszClipDstLayer = NULL; psOptions->pszClipDstWhere = NULL; psOptions->bSplitListFields = false; psOptions->nMaxSplitListSubFields = -1; psOptions->bExplodeCollections = false; psOptions->pszZField = NULL; psOptions->papszFieldMap = NULL; psOptions->nCoordDim = COORD_DIM_UNCHANGED; psOptions->papszDestOpenOptions = NULL; psOptions->bForceNullable = false; psOptions->bUnsetDefault = false; psOptions->bUnsetFid = false; psOptions->bPreserveFID = false; psOptions->bCopyMD = true; psOptions->papszMetadataOptions = NULL; psOptions->pszSpatSRSDef = NULL; psOptions->nGCPCount = 0; psOptions->pasGCPs = NULL; psOptions->nTransformOrder = 0; /* Default to 0 for now... let the lib decide */ psOptions->hSpatialFilter = NULL; psOptions->bNativeData = true; int nArgc = CSLCount(papszArgv); for( int i = 0; i < nArgc; i++ ) { if( EQUAL(papszArgv[i],"-q") || EQUAL(papszArgv[i],"-quiet") ) { if( psOptionsForBinary ) psOptionsForBinary->bQuiet = TRUE; } else if( EQUAL(papszArgv[i],"-f") && i+1 < nArgc ) { CPLFree(psOptions->pszFormat); psOptions->pszFormat = CPLStrdup(papszArgv[++i]); if( psOptionsForBinary ) { psOptionsForBinary->bFormatExplicitlySet = TRUE; } } else if( EQUAL(papszArgv[i],"-dsco") && i+1 < nArgc ) { psOptions->papszDSCO = CSLAddString(psOptions->papszDSCO, papszArgv[++i] ); } else if( EQUAL(papszArgv[i],"-lco") && i+1 < nArgc ) { psOptions->papszLCO = CSLAddString(psOptions->papszLCO, papszArgv[++i] ); } else if( EQUAL(papszArgv[i],"-oo") && i+1 < nArgc ) { ++i; if( psOptionsForBinary ) { psOptionsForBinary->papszOpenOptions = CSLAddString(psOptionsForBinary->papszOpenOptions, papszArgv[i] ); } } else if( EQUAL(papszArgv[i],"-doo") && i+1 < nArgc ) { ++i; psOptions->papszDestOpenOptions = CSLAddString(psOptions->papszDestOpenOptions, papszArgv[i] ); } else if( EQUAL(papszArgv[i],"-preserve_fid") ) { psOptions->bPreserveFID = true; } else if( STARTS_WITH_CI(papszArgv[i], "-skip") ) { psOptions->bSkipFailures = true; psOptions->nGroupTransactions = 1; /* #2409 */ } else if( EQUAL(papszArgv[i],"-append") ) { psOptions->eAccessMode = ACCESS_APPEND; } else if( EQUAL(papszArgv[i],"-overwrite") ) { psOptions->eAccessMode = ACCESS_OVERWRITE; } else if( EQUAL(papszArgv[i],"-addfields") ) { psOptions->bAddMissingFields = true; psOptions->eAccessMode = ACCESS_APPEND; } else if( EQUAL(papszArgv[i],"-update") ) { /* Don't reset -append or -overwrite */ if( psOptions->eAccessMode != ACCESS_APPEND && psOptions->eAccessMode != ACCESS_OVERWRITE ) psOptions->eAccessMode = ACCESS_UPDATE; } else if( EQUAL(papszArgv[i],"-relaxedFieldNameMatch") ) { psOptions->bExactFieldNameMatch = false; } else if( EQUAL(papszArgv[i],"-fid") && i+1 < nArgc ) { psOptions->nFIDToFetch = CPLAtoGIntBig(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-sql") && i+1 < nArgc ) { i++; CPLFree(psOptions->pszSQLStatement); GByte* pabyRet = NULL; if( papszArgv[i][0] == '@' && VSIIngestFile( NULL, papszArgv[i] + 1, &pabyRet, NULL, 1024*1024) ) { RemoveBOM(pabyRet); psOptions->pszSQLStatement = (char*)pabyRet; } else { psOptions->pszSQLStatement = CPLStrdup(papszArgv[i]); } } else if( EQUAL(papszArgv[i],"-dialect") && i+1 < nArgc ) { CPLFree(psOptions->pszDialect); psOptions->pszDialect = CPLStrdup(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-nln") && i+1 < nArgc ) { CPLFree(psOptions->pszNewLayerName); psOptions->pszNewLayerName = CPLStrdup(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-nlt") && i+1 < nArgc ) { bool bIs3D = false; CPLString osGeomName = papszArgv[i+1]; if (strlen(papszArgv[i+1]) > 3 && STARTS_WITH_CI(papszArgv[i+1] + strlen(papszArgv[i+1]) - 3, "25D")) { bIs3D = true; osGeomName.resize(osGeomName.size() - 3); } else if (strlen(papszArgv[i+1]) > 1 && STARTS_WITH_CI(papszArgv[i+1] + strlen(papszArgv[i+1]) - 1, "Z")) { bIs3D = true; osGeomName.resize(osGeomName.size() - 1); } if( EQUAL(osGeomName,"NONE") ) psOptions->eGType = wkbNone; else if( EQUAL(osGeomName,"GEOMETRY") ) psOptions->eGType = wkbUnknown; else if( EQUAL(osGeomName,"PROMOTE_TO_MULTI") ) psOptions->eGeomTypeConversion = GTC_PROMOTE_TO_MULTI; else if( EQUAL(osGeomName,"CONVERT_TO_LINEAR") ) psOptions->eGeomTypeConversion = GTC_CONVERT_TO_LINEAR; else if( EQUAL(osGeomName,"CONVERT_TO_CURVE") ) psOptions->eGeomTypeConversion = GTC_CONVERT_TO_CURVE; else { psOptions->eGType = OGRFromOGCGeomType(osGeomName); if (psOptions->eGType == wkbUnknown) { CPLError(CE_Failure, CPLE_IllegalArg, "-nlt %s: type not recognised.", papszArgv[i+1] ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } if (psOptions->eGType != GEOMTYPE_UNCHANGED && psOptions->eGType != wkbNone && bIs3D) psOptions->eGType = wkbSetZ((OGRwkbGeometryType)psOptions->eGType); i++; } else if( EQUAL(papszArgv[i],"-dim") && i+1 < nArgc ) { if( EQUAL(papszArgv[i+1], "layer_dim") ) psOptions->nCoordDim = COORD_DIM_LAYER_DIM; else if( EQUAL(papszArgv[i+1], "XY") || EQUAL(papszArgv[i+1], "2") ) psOptions->nCoordDim = 2; else if( EQUAL(papszArgv[i+1], "XYZ") || EQUAL(papszArgv[i+1], "3") ) psOptions->nCoordDim = 3; else if( EQUAL(papszArgv[i+1], "XYM") ) psOptions->nCoordDim = COORD_DIM_XYM; else if( EQUAL(papszArgv[i+1], "XYZM") ) psOptions->nCoordDim = 4; else { CPLError(CE_Failure, CPLE_IllegalArg,"-dim %s: value not handled.", papszArgv[i+1] ); GDALVectorTranslateOptionsFree(psOptions); return NULL; } i++; } else if( (EQUAL(papszArgv[i],"-tg") || EQUAL(papszArgv[i],"-gt")) && i+1 < nArgc ) { ++i; /* If skipfailures is already set we should not modify nGroupTransactions = 1 #2409 */ if ( !psOptions->bSkipFailures ) { if( EQUAL(papszArgv[i], "unlimited") ) psOptions->nGroupTransactions = -1; else psOptions->nGroupTransactions = atoi(papszArgv[i]); } } else if ( EQUAL(papszArgv[i],"-ds_transaction") ) { psOptions->nLayerTransaction = FALSE; psOptions->bForceTransaction = true; } /* Undocumented. Just a provision. Default behaviour should be OK */ else if ( EQUAL(papszArgv[i],"-lyr_transaction") ) { psOptions->nLayerTransaction = TRUE; } else if( EQUAL(papszArgv[i],"-s_srs") && i+1 < nArgc ) { CPLFree(psOptions->pszSourceSRSDef); psOptions->pszSourceSRSDef = CPLStrdup(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-a_srs") && i+1 < nArgc ) { CPLFree(psOptions->pszOutputSRSDef); psOptions->pszOutputSRSDef = CPLStrdup(papszArgv[++i]); if (EQUAL(psOptions->pszOutputSRSDef, "NULL") || EQUAL(psOptions->pszOutputSRSDef, "NONE")) { psOptions->pszOutputSRSDef = NULL; psOptions->bNullifyOutputSRS = true; } } else if( EQUAL(papszArgv[i],"-t_srs") && i+1 < nArgc ) { CPLFree(psOptions->pszOutputSRSDef); psOptions->pszOutputSRSDef = CPLStrdup(papszArgv[++i]); psOptions->bTransform = true; } else if( EQUAL(papszArgv[i],"-spat") && i+4 < nArgc ) { OGRLinearRing oRing; oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); OGRPolygon* poSpatialFilter = (OGRPolygon*) OGRGeometryFactory::createGeometry(wkbPolygon); poSpatialFilter->addRing( &oRing ); OGR_G_DestroyGeometry(psOptions->hSpatialFilter); psOptions->hSpatialFilter = (OGRGeometryH) poSpatialFilter; i += 4; } else if( EQUAL(papszArgv[i],"-spat_srs") && i+1 < nArgc ) { CPLFree(psOptions->pszSpatSRSDef); psOptions->pszSpatSRSDef = CPLStrdup(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-geomfield") && i+1 < nArgc ) { CPLFree(psOptions->pszGeomField); psOptions->pszGeomField = CPLStrdup(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-where") && i+1 < nArgc ) { i++; CPLFree(psOptions->pszWHERE); GByte* pabyRet = NULL; if( papszArgv[i][0] == '@' && VSIIngestFile( NULL, papszArgv[i] + 1, &pabyRet, NULL, 1024*1024) ) { RemoveBOM(pabyRet); psOptions->pszWHERE = (char*)pabyRet; } else { psOptions->pszWHERE = CPLStrdup(papszArgv[i]); } } else if( EQUAL(papszArgv[i],"-select") && i+1 < nArgc ) { const char* pszSelect = papszArgv[++i]; CSLDestroy(psOptions->papszSelFields); psOptions->papszSelFields = CSLTokenizeStringComplex(pszSelect, " ,", FALSE, FALSE ); } else if( EQUAL(papszArgv[i],"-segmentize") && i+1 < nArgc ) { psOptions->eGeomOp = GEOMOP_SEGMENTIZE; psOptions->dfGeomOpParam = CPLAtof(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-simplify") && i+1 < nArgc ) { psOptions->eGeomOp = GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY; psOptions->dfGeomOpParam = CPLAtof(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-fieldTypeToString") && i+1 < nArgc ) { CSLDestroy(psOptions->papszFieldTypesToString); psOptions->papszFieldTypesToString = CSLTokenizeStringComplex(papszArgv[++i], " ,", FALSE, FALSE ); char** iter = psOptions->papszFieldTypesToString; while(*iter) { if (IsFieldType(*iter)) { /* Do nothing */ } else if (EQUAL(*iter, "All")) { CSLDestroy(psOptions->papszFieldTypesToString); psOptions->papszFieldTypesToString = NULL; psOptions->papszFieldTypesToString = CSLAddString(psOptions->papszFieldTypesToString, "All"); break; } else { CPLError(CE_Failure, CPLE_IllegalArg, "Unhandled type for fieldTypeToString option : %s", *iter); GDALVectorTranslateOptionsFree(psOptions); return NULL; } iter ++; } } else if( EQUAL(papszArgv[i],"-mapFieldType") && i+1 < nArgc ) { CSLDestroy(psOptions->papszMapFieldType); psOptions->papszMapFieldType = CSLTokenizeStringComplex(papszArgv[++i], " ,", FALSE, FALSE ); char** iter = psOptions->papszMapFieldType; while(*iter) { char* pszKey = NULL; const char* pszValue = CPLParseNameValue(*iter, &pszKey); if( pszKey && pszValue) { if( !((IsFieldType(pszKey) || EQUAL(pszKey, "All")) && IsFieldType(pszValue)) ) { CPLError(CE_Failure, CPLE_IllegalArg, "Invalid value for -mapFieldType : %s", *iter); CPLFree(pszKey); GDALVectorTranslateOptionsFree(psOptions); return NULL; } } CPLFree(pszKey); iter ++; } } else if( EQUAL(papszArgv[i],"-unsetFieldWidth") ) { psOptions->bUnsetFieldWidth = true; } else if( EQUAL(papszArgv[i],"-progress") ) { psOptions->bDisplayProgress = true; } else if( EQUAL(papszArgv[i],"-wrapdateline") ) { psOptions->bWrapDateline = true; } else if( EQUAL(papszArgv[i],"-datelineoffset") && i < nArgc-1 ) { psOptions->dfDateLineOffset = CPLAtof(papszArgv[++i]); } else if( EQUAL(papszArgv[i],"-clipsrc") ) { if (i + 1 >= nArgc) { CPLError(CE_Failure, CPLE_IllegalArg, "%s option requires 1 or 4 arguments", papszArgv[i]); GDALVectorTranslateOptionsFree(psOptions); return NULL; } VSIStatBufL sStat; psOptions->bClipSrc = true; if ( IsNumber(papszArgv[i+1]) && papszArgv[i+2] != NULL && papszArgv[i+3] != NULL && papszArgv[i+4] != NULL) { OGRLinearRing oRing; oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); OGR_G_DestroyGeometry(psOptions->hClipSrc); psOptions->hClipSrc = (OGRGeometryH) OGRGeometryFactory::createGeometry(wkbPolygon); ((OGRPolygon *) psOptions->hClipSrc)->addRing( &oRing ); i += 4; } else if ((STARTS_WITH_CI(papszArgv[i+1], "POLYGON") || STARTS_WITH_CI(papszArgv[i+1], "MULTIPOLYGON")) && VSIStatL(papszArgv[i+1], &sStat) != 0) { char* pszTmp = (char*) papszArgv[i+1]; OGR_G_DestroyGeometry(psOptions->hClipSrc); OGRGeometryFactory::createFromWkt(&pszTmp, NULL, (OGRGeometry **)&psOptions->hClipSrc); if (psOptions->hClipSrc == NULL) { CPLError(CE_Failure, CPLE_IllegalArg, "Invalid geometry. Must be a valid POLYGON or MULTIPOLYGON WKT"); GDALVectorTranslateOptionsFree(psOptions); return NULL; } i ++; } else if (EQUAL(papszArgv[i+1], "spat_extent") ) { i ++; } else { CPLFree(psOptions->pszClipSrcDS); psOptions->pszClipSrcDS = CPLStrdup(papszArgv[i+1]); i ++; } } else if( EQUAL(papszArgv[i],"-clipsrcsql") && i+1 < nArgc ) { CPLFree(psOptions->pszClipSrcSQL); psOptions->pszClipSrcSQL = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-clipsrclayer") && i+1 < nArgc ) { CPLFree(psOptions->pszClipSrcLayer); psOptions->pszClipSrcLayer = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-clipsrcwhere") && i+1 < nArgc ) { CPLFree(psOptions->pszClipSrcWhere); psOptions->pszClipSrcWhere = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-clipdst") ) { if (i + 1 >= nArgc) { CPLError(CE_Failure, CPLE_IllegalArg, "%s option requires 1 or 4 arguments", papszArgv[i]); GDALVectorTranslateOptionsFree(psOptions); return NULL; } VSIStatBufL sStat; if ( IsNumber(papszArgv[i+1]) && papszArgv[i+2] != NULL && papszArgv[i+3] != NULL && papszArgv[i+4] != NULL) { OGRLinearRing oRing; oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+4]) ); oRing.addPoint( CPLAtof(papszArgv[i+3]), CPLAtof(papszArgv[i+2]) ); oRing.addPoint( CPLAtof(papszArgv[i+1]), CPLAtof(papszArgv[i+2]) ); OGR_G_DestroyGeometry(psOptions->hClipDst); psOptions->hClipDst = (OGRGeometryH) OGRGeometryFactory::createGeometry(wkbPolygon); ((OGRPolygon *) psOptions->hClipDst)->addRing( &oRing ); i += 4; } else if ((STARTS_WITH_CI(papszArgv[i+1], "POLYGON") || STARTS_WITH_CI(papszArgv[i+1], "MULTIPOLYGON")) && VSIStatL(papszArgv[i+1], &sStat) != 0) { char* pszTmp = (char*) papszArgv[i+1]; OGR_G_DestroyGeometry(psOptions->hClipDst); OGRGeometryFactory::createFromWkt(&pszTmp, NULL, (OGRGeometry **)&psOptions->hClipDst); if (psOptions->hClipDst == NULL) { CPLError(CE_Failure, CPLE_IllegalArg, "Invalid geometry. Must be a valid POLYGON or MULTIPOLYGON WKT"); GDALVectorTranslateOptionsFree(psOptions); return NULL; } i ++; } else { CPLFree(psOptions->pszClipDstDS); psOptions->pszClipDstDS = CPLStrdup(papszArgv[i+1]); i ++; } } else if( EQUAL(papszArgv[i],"-clipdstsql") && i+1 < nArgc ) { CPLFree(psOptions->pszClipDstSQL); psOptions->pszClipDstSQL = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-clipdstlayer") && i+1 < nArgc ) { CPLFree(psOptions->pszClipDstLayer); psOptions->pszClipDstLayer = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-clipdstwhere") && i+1 < nArgc ) { CPLFree(psOptions->pszClipDstWhere); psOptions->pszClipDstWhere = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-splitlistfields") ) { psOptions->bSplitListFields = true; } else if ( EQUAL(papszArgv[i],"-maxsubfields") && i+1 < nArgc ) { if (IsNumber(papszArgv[i+1])) { int nTemp = atoi(papszArgv[i+1]); if (nTemp > 0) { psOptions->nMaxSplitListSubFields = nTemp; i ++; } } } else if( EQUAL(papszArgv[i],"-explodecollections") ) { psOptions->bExplodeCollections = true; } else if( EQUAL(papszArgv[i],"-zfield") && i+1 < nArgc ) { CPLFree(psOptions->pszZField); psOptions->pszZField = CPLStrdup(papszArgv[i+1]); i ++; } else if( EQUAL(papszArgv[i],"-gcp") && i+4 < nArgc ) { char* endptr = NULL; /* -gcp pixel line easting northing [elev] */ psOptions->nGCPCount++; psOptions->pasGCPs = (GDAL_GCP *) CPLRealloc( psOptions->pasGCPs, sizeof(GDAL_GCP) * psOptions->nGCPCount ); GDALInitGCPs( 1, psOptions->pasGCPs + psOptions->nGCPCount - 1 ); psOptions->pasGCPs[psOptions->nGCPCount-1].dfGCPPixel = CPLAtof(papszArgv[++i]); psOptions->pasGCPs[psOptions->nGCPCount-1].dfGCPLine = CPLAtof(papszArgv[++i]); psOptions->pasGCPs[psOptions->nGCPCount-1].dfGCPX = CPLAtof(papszArgv[++i]); psOptions->pasGCPs[psOptions->nGCPCount-1].dfGCPY = CPLAtof(papszArgv[++i]); if( papszArgv[i+1] != NULL && (CPLStrtod(papszArgv[i+1], &endptr) != 0.0 || papszArgv[i+1][0] == '0') ) { /* Check that last argument is really a number and not a filename */ /* looking like a number (see ticket #863) */ if (endptr && *endptr == 0) psOptions->pasGCPs[psOptions->nGCPCount-1].dfGCPZ = CPLAtof(papszArgv[++i]); } /* should set id and info? */ } else if( EQUAL(papszArgv[i],"-tps") ) { psOptions->nTransformOrder = -1; } else if( EQUAL(papszArgv[i],"-order") && i+1 < nArgc ) { psOptions->nTransformOrder = atoi( papszArgv[++i] ); } else if( EQUAL(papszArgv[i],"-fieldmap") && i+1 < nArgc ) { CSLDestroy(psOptions->papszFieldMap); psOptions->papszFieldMap = CSLTokenizeStringComplex(papszArgv[++i], ",", FALSE, FALSE ); } else if( EQUAL(papszArgv[i],"-forceNullable") ) { psOptions->bForceNullable = true; } else if( EQUAL(papszArgv[i],"-unsetDefault") ) { psOptions->bUnsetDefault = true; } else if( EQUAL(papszArgv[i],"-unsetFid") ) { psOptions->bUnsetFid = true; } else if( EQUAL(papszArgv[i],"-nomd") ) { psOptions->bCopyMD = false; } else if( EQUAL(papszArgv[i],"-noNativeData") ) { psOptions->bNativeData = false; } else if( EQUAL(papszArgv[i],"-mo") && i+1 < nArgc ) { psOptions->papszMetadataOptions = CSLAddString( psOptions->papszMetadataOptions, papszArgv[++i] ); } else if( papszArgv[i][0] == '-' ) { CPLError(CE_Failure, CPLE_NotSupported, "Unknown option name '%s'", papszArgv[i]); GDALVectorTranslateOptionsFree(psOptions); return NULL; } else if( psOptionsForBinary && psOptionsForBinary->pszDestDataSource == NULL ) psOptionsForBinary->pszDestDataSource = CPLStrdup(papszArgv[i]); else if( psOptionsForBinary && psOptionsForBinary->pszDataSource == NULL ) psOptionsForBinary->pszDataSource = CPLStrdup(papszArgv[i]); else psOptions->papszLayers = CSLAddString( psOptions->papszLayers, papszArgv[i] ); } if( psOptionsForBinary ) { psOptionsForBinary->pszFormat = CPLStrdup(psOptions->pszFormat); psOptionsForBinary->eAccessMode = psOptions->eAccessMode; if( !(CPLTestBool(CSLFetchNameValueDef( psOptionsForBinary->papszOpenOptions, "NATIVE_DATA", CSLFetchNameValueDef( psOptionsForBinary->papszOpenOptions, "@NATIVE_DATA", "TRUE")))) ) { psOptions->bNativeData = false; } if( psOptions->bNativeData && CSLFetchNameValue(psOptionsForBinary->papszOpenOptions, "NATIVE_DATA") == NULL && CSLFetchNameValue(psOptionsForBinary->papszOpenOptions, "@NATIVE_DATA") == NULL ) { psOptionsForBinary->papszOpenOptions = CSLAddString( psOptionsForBinary->papszOpenOptions, "@NATIVE_DATA=YES" ); } } return psOptions; } /************************************************************************/ /* GDALVectorTranslateOptionsFree() */ /************************************************************************/ /** * Frees the GDALVectorTranslateOptions struct. * * @param psOptions the options struct for GDALVectorTranslate(). * @since GDAL 2.1 */ void GDALVectorTranslateOptionsFree( GDALVectorTranslateOptions *psOptions ) { if( psOptions == NULL ) return; CPLFree( psOptions->pszFormat ); CPLFree( psOptions->pszOutputSRSDef); CPLFree( psOptions->pszSourceSRSDef); CPLFree( psOptions->pszNewLayerName); CPLFree( psOptions->pszWHERE ); CPLFree( psOptions->pszGeomField ); CPLFree( psOptions->pszSQLStatement ); CPLFree( psOptions->pszDialect ); CPLFree( psOptions->pszClipSrcDS ); CPLFree( psOptions->pszClipSrcSQL ); CPLFree( psOptions->pszClipSrcLayer ); CPLFree( psOptions->pszClipSrcWhere ); CPLFree( psOptions->pszClipDstDS ); CPLFree( psOptions->pszClipDstSQL ); CPLFree( psOptions->pszClipDstLayer ); CPLFree( psOptions->pszClipDstWhere ); CPLFree( psOptions->pszZField ); CPLFree( psOptions->pszSpatSRSDef ); CSLDestroy(psOptions->papszSelFields); CSLDestroy( psOptions->papszFieldMap ); CSLDestroy( psOptions->papszMapFieldType ); CSLDestroy( psOptions->papszLayers ); CSLDestroy( psOptions->papszDSCO ); CSLDestroy( psOptions->papszLCO ); CSLDestroy( psOptions->papszDestOpenOptions ); CSLDestroy( psOptions->papszFieldTypesToString ); CSLDestroy( psOptions->papszMetadataOptions ); if( psOptions->pasGCPs != NULL ) { GDALDeinitGCPs( psOptions->nGCPCount, psOptions->pasGCPs ); CPLFree( psOptions->pasGCPs ); } if( psOptions->hClipSrc != NULL ) OGR_G_DestroyGeometry( psOptions->hClipSrc ); if( psOptions->hClipDst != NULL ) OGR_G_DestroyGeometry( psOptions->hClipDst ); if( psOptions->hSpatialFilter != NULL ) OGR_G_DestroyGeometry( psOptions->hSpatialFilter ); CPLFree(psOptions); } /************************************************************************/ /* GDALVectorTranslateOptionsSetProgress() */ /************************************************************************/ /** * Set a progress function. * * @param psOptions the options struct for GDALVectorTranslate(). * @param pfnProgress the progress callback. * @param pProgressData the user data for the progress callback. * * @since GDAL 2.1 */ void GDALVectorTranslateOptionsSetProgress( GDALVectorTranslateOptions *psOptions, GDALProgressFunc pfnProgress, void *pProgressData ) { psOptions->pfnProgress = pfnProgress ? pfnProgress : GDALDummyProgress; psOptions->pProgressData = pProgressData; if( pfnProgress == GDALTermProgress ) psOptions->bQuiet = false; }
6a352c97ff60ff8045ad535408f69906c7232ee8
52950b2783a7aebf23689c9c5397cf381d0dde7d
/oss/eblearn_1.2_r2631/core/libeblearn/include/ebl_ebm.hpp
24cf16eb7e92f56a58543497fd0a897c2203f54e
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
zhouyong64/academiccoder
9b4a8f9555b99dc364a0c0e4157faa582b542e90
5415a43889a18795fb98960ff7700dbcdd5138df
refs/heads/master
2020-05-17T11:46:15.143345
2017-12-05T06:57:14
2017-12-05T06:57:14
29,723,245
0
0
null
null
null
null
UTF-8
C++
false
false
9,505
hpp
/*************************************************************************** * Copyright (C) 2012 by Yann LeCun, Pierre Sermanet * * [email protected], [email protected] * * 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. * * Redistribution under a license not approved by the Open Source * Initiative (http://www.opensource.org) must display the * following acknowledgement in all advertising material: * This product includes software developed at the Courant * Institute of Mathematical Sciences (http://cims.nyu.edu). * * The names of the authors may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED ``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 AUTHORS 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. ***************************************************************************/ namespace ebl { // ebm_1 /////////////////////////////////////////////////////////////////////// template <typename T> ebm_1<T>::ebm_1(const char *n) : module_1_1<T>(n) { } template <typename T> ebm_1<T>::~ebm_1() { } template <typename T> void ebm_1<T>::fprop1(idx<T> &in, idx<T> &energy) { err_not_implemented(); } template <typename T> void ebm_1<T>::bprop1(state<T> &in, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_1<T>::bbprop1(state<T> &in, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_1<T>::fprop(state<T> &in, state<T> &energy) { if (in.x.size() > 1) eblerror("expected only 1 tensor in input state"); fprop1(in, energy); } template <typename T> void ebm_1<T>::bprop(state<T> &in, state<T> &energy) { bprop1(in, energy); } template <typename T> void ebm_1<T>::bbprop(state<T> &in, state<T> &energy) { bbprop1(in, energy); } template <typename T> void ebm_1<T>::forget(forget_param_linear &fp) { err_not_implemented(); } template <typename T> void ebm_1<T>::normalize() { err_not_implemented(); } // ebm_module_1_1 ////////////////////////////////////////////////////////////// template <typename T> ebm_module_1_1<T>::ebm_module_1_1(module_1_1<T> *m, ebm_1<T> *e, const char *name_) : module_1_1<T>(name_), module(m), ebm(e) { if (!m) eblerror("expected non-null module"); if (!e) eblerror("expected non-null ebm"); this->_name = ""; this->_name << m->name() << "+" << e->name(); energy.resize_dx(); energy.resize_ddx(); energy.dx[0].set((T)1.0); // d(E)/dE is always 1 energy.ddx[0].set((T)0.0); // dd(E)/dE is always 0 } template <typename T> ebm_module_1_1<T>::~ebm_module_1_1() { delete module; delete ebm; } template <typename T> void ebm_module_1_1<T>::fprop1(idx<T> &in, idx<T> &out) { EDEBUG(this->name() << ": " << module->name() << ": in " << in); module->fprop1(in, out); ebm->fprop1(out, energy); } template <typename T> void ebm_module_1_1<T>::bprop1(state<T> &in, state<T> &out) { EDEBUG(this->name() << ": " << module->name() << ": bprop in " << in); ebm->bprop1(out, energy); module->bprop1(in, out); } template <typename T> void ebm_module_1_1<T>::bbprop1(state<T> &in, state<T> &out) { ebm->bbprop1(out, energy); module->bbprop1(in, out); } template <typename T> void ebm_module_1_1<T>::forget(forget_param_linear &fp) { module->forget(fp); } template <typename T> state<T>& ebm_module_1_1<T>::get_energy() { return energy; } template <typename T> fidxdim ebm_module_1_1<T>::fprop1_size(fidxdim &isize) { return module->fprop1_size(isize); } template <typename T> fidxdim ebm_module_1_1<T>::bprop1_size(const fidxdim &osize) { return module->bprop1_size(osize); } template <typename T> std::string ebm_module_1_1<T>::describe() { std::string desc; desc << "ebm_module_1_1 " << this->name() << " contains a module_1_1: " << module->describe() << ", and an ebm1: " << ebm->describe(); return desc; } // ebm_2 /////////////////////////////////////////////////////////////////////// template <typename T> ebm_2<T>::ebm_2(const char *name_) : module_2_1<T>(name_) { } template <typename T> ebm_2<T>::~ebm_2() { } template <typename T> void ebm_2<T>::fprop1(idx<T> &i1, idx<T> &i2, idx<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::bprop1(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::bbprop1(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::fprop(state<T> &i1, state<T> &i2, state<T> &energy) { if (i1.x.size() > 1 || i2.x.size() > 1) eblerror("expected only 1 tensor in input states"); fprop1(i1, i2, energy); } template <typename T> void ebm_2<T>::bprop(state<T> &i1, state<T> &i2, state<T> &energy) { bprop1(i1, i2, energy); } template <typename T> void ebm_2<T>::bbprop(state<T> &i1, state<T> &i2, state<T> &energy) { bbprop1(i1, i2, energy); } template <typename T> void ebm_2<T>::bprop1_copy(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::bprop2_copy(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::bbprop1_copy(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::bbprop2_copy(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::forget(forget_param_linear &fp) { err_not_implemented(); } template <typename T> void ebm_2<T>::normalize() { err_not_implemented(); } template <typename T> double ebm_2<T>::infer1(state<T> &i1, state<T> &i2, state<T> &energy, infer_param &ip) { err_not_implemented(); return 0; } template <typename T> void ebm_2<T>::infer2(state<T> &i1, state<T> &i2, infer_param &ip, state<T> *energy) { err_not_implemented(); } template <typename T> void ebm_2<T>::infer2_copy(state<T> &i1, state<T> &i2, state<T> &energy) { err_not_implemented(); } // fc_ebm1 ///////////////////////////////////////////////////////////////////// template <typename T> fc_ebm1<T>::fc_ebm1(module_1_1<T> &fm, state<T> &fo, ebm_1<T> &fc) : fmod(fm), fout(fo), fcost(fc) { } template <typename T> fc_ebm1<T>::~fc_ebm1() {} template <typename T> void fc_ebm1<T>::fprop1(idx<T> &in, idx<T> &energy) { fmod.fprop1(in, fout); fcost.fprop1(fout, energy); } template <typename T> void fc_ebm1<T>::bprop1(state<T> &in, state<T> &energy) { fout.zero_dx(); fcost.bprop1(fout, energy); fmod.bprop1(in, fout); } template <typename T> void fc_ebm1<T>::bbprop1(state<T> &in, state<T> &energy) { fout.zero_ddx(); fcost.bbprop1(fout, energy); fmod.bbprop1(in, fout); } template <typename T> void fc_ebm1<T>::forget(forget_param_linear &fp) { fmod.forget(fp); fcost.forget(fp); } // fc_ebm2 ///////////////////////////////////////////////////////////////////// template <typename T> fc_ebm2<T>::fc_ebm2(module_1_1<T> &fm, state<T> &fo, ebm_2<T> &fc) : fmod(fm), fout(fo), fcost(fc) { } template <typename T> fc_ebm2<T>::~fc_ebm2() {} template <typename T> void fc_ebm2<T>::fprop1(idx<T> &in1, idx<T> &in2, idx<T> &energy) { fmod.fprop1(in1, fout); fcost.fprop1(fout, in2, energy); #ifdef __DUMP_STATES__ // used to debug save_matrix(energy, "dump_fc_ebm2_energy.x.mat"); save_matrix(in1, "dump_fc_ebm2_cost_in1.x.mat"); #endif } template <typename T> void fc_ebm2<T>::bprop1(state<T> &in1, state<T> &in2, state<T> &energy) { fout.clear_dx(); // in2.clear_dx(); // TODO this assumes state<T> == fstate_idx fcost.bprop1(fout, in2, energy); fmod.bprop1(in1, fout); } template <typename T> void fc_ebm2<T>::bbprop1(state<T> &in1, state<T> &in2, state<T> &energy){ fout.clear_ddx(); // in2.clear_ddx(); // TODO this assumes state<T> == fstate_idx fcost.bbprop1(fout, in2, energy); fmod.bbprop1(in1, fout); } template <typename T> void fc_ebm2<T>::forget(forget_param_linear &fp) { fmod.forget(fp); fcost.forget(fp); } template <typename T> void fc_ebm2<T>::infer2(state<T> &i1, state<T> &i2, infer_param &ip, state<T> *energy) { fmod.fprop(i1, fout); // first propagate all the way up fcost.infer2(fout, i2, ip, energy); //then infer from energies } } // end namespace ebl
74feede8b45ca59d1b130dd37cdb5ec66d73224f
d84852c821600c3836952b78108df724f90e1096
/exams/2559/02204111/2/midterm/3_2_715_5920500221.cpp
a38da49ec4e10956cc9708faa644e3533b28fd3b
[ "MIT" ]
permissive
btcup/sb-admin
4a16b380bbccd03f51f6cc5751f33acda2a36b43
c2c71dce1cd683f8eff8e3c557f9b5c9cc5e168f
refs/heads/master
2020-03-08T05:17:16.343572
2018-05-07T17:21:22
2018-05-07T17:21:22
127,944,367
0
1
null
null
null
null
UTF-8
C++
false
false
495
cpp
//5920500221 Supasin Rujiapnich #include <iostream> #include <cmath> using namespace std; int main () { float x,y,z; cout<<"Enter electricity cost per unit (bahts) : " ; cin>>x; cout<<"Enter last unit :"; cin>>y; cout<<"Enter current unit :"; cin>>z; cout<<"Units used = "<<(z-y)<<endl ; cout<<"Electricity charge (bahts) = "<<(z-y)*x<<endl ; cout<<"Total of Electricity charge (bahts) ="<<endl; system ("pause"); return 0; }
9d69418b8b1e908b5e8f05c6b1bdd2c7584ae695
e4833fb04f56ac806d91debc0571804e88512d4e
/2021/05/05/hana.cpp
d8412d32c088e66f0e6b6b0de6d7e3003beefd8a
[]
no_license
Papillon6814/tracker
f7cca3b2f19c1c63b4bed226abdd7a66f550a1dd
1cd1012865f317b85670da7b3e41364270cf7f2a
refs/heads/main
2023-06-26T18:28:45.089288
2021-07-10T13:26:03
2021-07-10T13:26:03
303,100,401
0
0
null
null
null
null
UTF-8
C++
false
false
1,463
cpp
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vl = vector<ll>; using vc = vector<char>; using vii = vector<vector<int>>; using vll = vector<vector<ll>>; using vcc = vector<vector<char>>; using vs = vector<string>; using Pi = pair<int , int>; using Pl = pair<ll, ll>; using vpi = vector<Pi>; using vpl = vector<Pl>; #define rep(i, n) for (ll i = 0; i < n; i++) #define REP(n) for (ll i = 0; i < n; i++) #define repint(i, n) for (int i = 0; i < n; i++) #define rep2(i, s, n) for (int i = (s); i < n; i++) #define REP2(s, n) for (int i = (s); i < n; i++) #define rep3(i ,j, n, m) rep(i, n)rep(j, m) #define REP3(n, m) rep(i, n)rep(j, m) #define sort(A) sort(A.begin(),A.end()); #define reverse(A) reverse(A.begin(),A.end()); #define k(s) cout << fixed << setprecision(s); const long double pi=3.14159265358979323846; const long long MOD=1000000007; ll R, B; ll x, y; bool check(ll mid) { // 花束を作るために使う1本を花束の数だけ引いておく ll r = R-mid; ll b = B-mid; if(r < 0 || b < 0) return false; // 花束が作れる数の計算 ll num = r/(x-1) + b/(y-1); return (num >= mid); } int main() { cin >> R >> B; cin >> x >> y; ll ok = 0; ll ng = (R+B)/2 + 1; while(ng - ok > 1) { ll mid = (ok+ng)/2; if(check(mid)) { ok = mid; } else { ng = mid; } } cout << ok << endl; }
1dcda00281fdc88448c5b7365244f58f91c5965d
aaa349ae0fb52534c2306a2d343e20f928998ecb
/Boxfish-Lib/src/Book.h
b5a3a5955822891b86af6a8571180f01806375b8
[]
no_license
Totomosic/Boxfish
77fa14abf1d2e54248d822df11c79a1b1387e75e
00f0fc5d3e2ba3d3b3037b851c78708f30ffed33
refs/heads/master
2023-09-04T00:32:09.139572
2021-10-30T14:09:19
2021-10-30T14:09:19
273,902,455
0
0
null
null
null
null
UTF-8
C++
false
false
1,351
h
#pragma once #include "ZobristHash.h" #include "Position.h" #include "Move.h" #include <optional> #include <unordered_map> #ifdef SWIG #define BOX_API #endif namespace Boxfish { struct BOX_API BookEntry { public: ZobristHash Hash = 0ULL; SquareIndex From = a1; SquareIndex To = a1; int Count = 1; }; struct BOX_API BookEntryCollection { public: std::vector<BookEntry> Entries = {}; int TotalCount = 0; public: // Weighted based on entry Count / TotalCount BookEntry PickRandom() const; }; class BOX_API OpeningBook { private: size_t m_EntryCount; std::unordered_map<ZobristHash, BookEntryCollection> m_Entries; // Max depth of any entry int m_Cardinality; public: OpeningBook(); size_t GetEntryCount() const; int GetCardinality() const; void SetCardinality(int cardinality); size_t CalculateFileSize() const; bool Serialize(void* buffer, size_t size) const; void WriteToFile(const std::string& filename) const; bool AppendFromFile(const std::string& filename); void AppendEntry(const BookEntry& entry); void Clear(); std::optional<BookEntryCollection> Probe(const ZobristHash& hash) const; private: static constexpr size_t GetSerializedEntrySize() { return (sizeof(BookEntry::Hash.Hash) + sizeof(BookEntry::From) + sizeof(BookEntry::To) + sizeof(BookEntry::Count)); } }; }
699d9ba69e93a242e80ec914d29b4d0fd395c306
60b02d565b5751a3f0b21e560a5fa15a992c1de8
/src/kclpp_test_support/MockClock.cpp
0c01dd9008d8dbb08ded047ed9a8e97f3a7fa474
[]
no_license
scivey/kclpp
43779e5b0465eb10f547ea098f3068f35b184154
717ef6032b6736627b3b74e537567065a3d41dd1
refs/heads/master
2020-06-11T06:48:52.900337
2016-12-12T13:27:40
2016-12-12T13:27:40
75,742,647
1
0
null
null
null
null
UTF-8
C++
false
false
539
cpp
#include "kclpp_test_support/MockClock.h" #include "kclpp/clock/types.h" namespace kclpp_test_support { using NanosecondPoint = MockClock::NanosecondPoint; NanosecondPoint MockClock::getNow() const { return nowTime; } std::chrono::milliseconds MockClock::getNowMsec() const { return std::chrono::milliseconds { nowTime.value() * 1000000 }; } void MockClock::setNow(NanosecondPoint nextNow) { nowTime = nextNow; } size_t MockClock::secToNanosec(size_t numSec) { return size_t{1000000000} * numSec; } } // kclpp_test_support
93904eeb10f86176ba730f7b6c46932c04c8d350
aa7e4152d89159eed2d234782087af1a90f5111f
/wordvector.h
858a81d72a0a698c292fe6ebbcc154812cf0d5d4
[]
no_license
EmbolismSoil/ShortTextClassfier
271917460cf942f91262c519b2a595dc967a3583
53e22cbaad0fb8199809524b9ad06a68001b57fe
refs/heads/master
2021-05-03T07:27:19.496571
2018-03-05T11:24:02
2018-03-05T11:24:02
120,608,655
7
1
null
null
null
null
UTF-8
C++
false
false
4,261
h
#ifndef WORDVECTOR_H #define WORDVECTOR_H #include <vector> #include <stdexcept> #include <exception> #include <sstream> #include <boost/algorithm/string.hpp> #include <boost/format.hpp> #include <stdio.h> #include <math.h> template<class T> class WordVector { public: WordVector(int dim); WordVector(std::vector<T> const& vec); WordVector operator + (WordVector const& rhs); WordVector& operator += (WordVector const& rhs); WordVector operator - (WordVector const& rhs); WordVector operator * (typename std::vector<T>::value_type num); typename std::vector<T>::value_type operator * (WordVector const& rhs); T distance(WordVector const& rhs); T cosine(WordVector & rhs); T mod(); std::string const to_string(); private: std::vector<T> _vec; WordVector(){} }; template<class T> T WordVector<T>::mod() { typename std::vector<T>::const_iterator pos = _vec.begin(); T sum = 0; for (; pos != _vec.end(); ++pos){ T d = *pos; sum += (d * d); } return ::sqrt(sum); } template<class T> T WordVector<T>::cosine(WordVector & rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } WordVector<T> &lhs = *this; return (lhs * rhs) / (lhs.mod() * rhs.mod()); } template<class T> T WordVector<T>::distance(WordVector const& rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } T sum = 0; for (typename std::vector<T>::size_type pos = 0; pos != _vec.size(); ++pos){ T d = _vec[pos] - rhs._vec[pos]; sum += (d*d); } return ::sqrt(sum); } template<class T> WordVector<T>::WordVector(int dim): _vec(dim, 0) { if (dim <= 0) { throw std::invalid_argument("Dim error"); } } template<class T> WordVector<T>::WordVector(const std::vector<T> &vec): _vec(vec) { } template<class T> WordVector<T> WordVector<T>::operator+(const WordVector &rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } WordVector<T> vec; for (typename std::vector<T>::size_type pos = 0; pos != _vec.size(); ++pos) { vec._vec.push_back(_vec[pos] + rhs._vec[pos]); } return vec; } template<class T> WordVector<T> &WordVector<T>::operator +=(const WordVector &rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } WordVector<T>& vec = *this; for (typename std::vector<T>::size_type pos = 0; pos != _vec.size(); ++pos) { vec._vec[pos] = (_vec[pos] + rhs._vec[pos]); } return vec; } template<class T> WordVector<T> WordVector<T>::operator- (const WordVector &rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } WordVector<T> vec; for (typename std::vector<T>::size_type pos = 0; pos != _vec.size(); ++pos) { vec._vec.push_back(_vec[pos] - rhs._vec[pos]); } return vec; } template<class T> WordVector<T> WordVector<T>::operator *(typename std::vector<T>::value_type num) { WordVector<T> vec; for (typename std::vector<T>::const_iterator pos = _vec.begin(); pos != _vec.end(); ++pos){ vec._vec.push_back(*pos * num); } return vec; } template<class T> typename std::vector<T>::value_type WordVector<T>::operator *(const WordVector &rhs) { if (rhs._vec.size() != _vec.size() || _vec.empty()){ throw std::invalid_argument("Dim error"); } typename std::vector<T>::value_type dot = 0; for (typename std::vector<T>::size_type pos = 0; pos != _vec.size(); ++pos) { dot += _vec[pos] * rhs._vec[pos]; } return dot; } template<class T> const std::string WordVector<T>::to_string() { std::stringstream ss; std::vector<std::string> s_vec; for (typename std::vector<T>::const_iterator pos = _vec.begin(); pos != _vec.end(); ++pos){ ss << *pos; s_vec.push_back(ss.str()); ss.str(""); } std::string vec = boost::join(s_vec, ", "); boost::format fmt("[%s]"); fmt % vec; return fmt.str(); } #endif // WORDVECTOR_H
0e40cbbdffda2052f50829fdba2e40c7de4b9fd2
4b5a008421fb71f83d948dc9f147e955ab4dc7b1
/uaMobi/qzxing-master/src/zxing/zxing/qrcode/detector/QRFinderPattern.cpp
5bc79d6c98d1115abd58b9e60baea917dcfe6440
[ "Apache-2.0" ]
permissive
ston1x/UNARetail
a205becbe3c69b3bd51127b6ec29c3e5abf340d0
491ced2068cb89ed24d7d5c23477fd80ca54b8dd
refs/heads/master
2022-10-11T01:26:44.848735
2020-06-09T10:07:00
2020-06-09T10:07:00
271,839,954
1
0
null
2020-06-12T16:11:36
2020-06-12T16:11:36
null
UTF-8
C++
false
false
2,615
cpp
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*- /* * FinderPattern.cpp * zxing * * Created by Christian Brunschen on 13/05/2008. * Copyright 2008 ZXing authors 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. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <zxing/qrcode/detector/FinderPattern.h> using std::abs; using zxing::Ref; using zxing::qrcode::FinderPattern; FinderPattern::FinderPattern(float posX, float posY, float estimatedModuleSize) : ResultPoint(posX, posY), estimatedModuleSize_(estimatedModuleSize), count_(1) {} FinderPattern::FinderPattern(float posX, float posY, float estimatedModuleSize, int count) : ResultPoint(posX, posY), estimatedModuleSize_(estimatedModuleSize), count_(count) {} int FinderPattern::getCount() const { return count_; } float FinderPattern::getEstimatedModuleSize() const { return estimatedModuleSize_; } void FinderPattern::incrementCount() { count_++; // cerr << "ic " << getX() << " " << getY() << " " << count_ << endl; } /* bool FinderPattern::aboutEquals(float moduleSize, float i, float j) const { return abs(i - posY_) <= moduleSize && abs(j - posX_) <= moduleSize && (abs(moduleSize - estimatedModuleSize_) <= 1.0f || abs(moduleSize - estimatedModuleSize_) / estimatedModuleSize_ <= 0.1f); } */ bool FinderPattern::aboutEquals(float moduleSize, float i, float j) const { if (abs(i - getY()) <= moduleSize && abs(j - getX()) <= moduleSize) { float moduleSizeDiff = abs(moduleSize - estimatedModuleSize_); return moduleSizeDiff <= 1.0f || moduleSizeDiff <= estimatedModuleSize_; } return false; } Ref<FinderPattern> FinderPattern::combineEstimate(float i, float j, float newModuleSize) const { // fprintf(stderr, "ce %f %f %f\n", i, j, newModuleSize); int combinedCount = count_ + 1; float combinedX = (count_ * getX() + j) / combinedCount; float combinedY = (count_ * getY() + i) / combinedCount; float combinedModuleSize = (count_ * getEstimatedModuleSize() + newModuleSize) / combinedCount; return Ref<FinderPattern>(new FinderPattern(combinedX, combinedY, combinedModuleSize, combinedCount)); }
ae328ccd12a78684da1ee20bc9218be2e0546ceb
0c3843a351ec7f74454c61a519fccc27a280f6d6
/directedgraph.cpp
4ae467c098dcf83ddf0f3f56ebbb37c87a1e3711
[]
no_license
QuynhNgo/CudaSimulationFF
157256878ecf759e64bec4ecce7fd78fa61c87ff
c73df2045c61b234a0bdb8dc5d47eb1d78b633d2
refs/heads/master
2023-03-26T09:07:06.490419
2021-03-18T08:20:04
2021-03-18T08:20:04
345,980,709
0
0
null
null
null
null
UTF-8
C++
false
false
4,420
cpp
#include "directedgraph.h" #include "exception.h" // default constructor directedgraph::directedgraph() { NumberNode = 0; } // constructor that reads directly from an input file the information; directedgraph::directedgraph(std::string _Filename ) { std::ifstream _Dev; _Dev.open(_Filename.c_str(),std::ios::in); if (!_Dev.is_open()) throw Quynh::exception("Cannot open file", errno); std::string _Item; int _NumberNode; while(_Dev.good()) { std::vector<std::string> _Token; getline(_Dev, _Item,'\n'); if(_Item.empty()) continue; _Token = utils::tokenize(_Item,' '); if(_Token[1] =="node") { _NumberNode = utils::stringtolong(_Token[2]); // get the number of node of graph } else if (_Token[0] =="end"){ break;} } // One information is passed to memory now NumberNode = _NumberNode; int _NumberNode2 = 0; while(_Dev.good() && (_NumberNode2 < _NumberNode)) { std::vector<std::string> _Token; std::getline(_Dev, _Item,'\n'); if(_Item.empty()) continue; _Token = utils::tokenize(_Item,' '); if(_Token[0]=="l") { int n = _Token.size(); std::vector<int> *_AdjacientList = new std::vector<int>; for(int i = 1;i < n; i++) { _AdjacientList->push_back(utils::stringtolong(_Token[i]));//got a list of adjacient node; } (this->InList).push_back(*_AdjacientList); delete _AdjacientList; } } _Dev.close(); std::cout<<"Get data for InList and NumberNode from file successfully!" << std::endl; } // copy constructor directedgraph::directedgraph( const directedgraph &_TmpCopyGraph ) { this->InList = _TmpCopyGraph.InList; this->NumberNode = _TmpCopyGraph.NumberNode; } // destructor directedgraph::~directedgraph() { } void directedgraph::operator=(const directedgraph & _TmpGraph) { NumberNode = _TmpGraph.NumberNode; InList = _TmpGraph.InList; } // to get the InList; std::vector<std::vector<int>> directedgraph::getInList() const { return this->InList; } // get the number of node; int directedgraph::getNumberNode() const { return NumberNode; } void directedgraph::setNumberNode(int _TmpVar) { NumberNode = _TmpVar; } void directedgraph::loadGraphFromFile(std::string _Filename ) // from adjacent list, the output is gonna be the outindegree { if(!InList.empty()) (InList).clear(); std::ifstream _Dev; _Dev.open(_Filename.c_str(), std::ios::in); if(!_Dev.is_open()) throw Quynh::exception("Cannot open file", errno); std::string _Item; int _NumberNode; while(_Dev.good()) { std::vector<std::string> _Token; getline(_Dev, _Item,'\n'); if(_Item.empty()) continue; _Token = utils::tokenize(_Item,' '); if(_Token[1] =="node") { _NumberNode = utils::stringtolong(_Token[2]); // get the number of node of graph } else if (_Token[0] =="end"){ break;} } // the first information is passed to the memory NumberNode = _NumberNode; int _NumberNode2 = 0; while(_Dev.good() && (_NumberNode2 < _NumberNode) ) { std::vector<std::string> _Token; getline(_Dev, _Item,'\n'); if(_Item.empty()) continue; _Token = utils::tokenize(_Item,' '); if(_Token[0]=="l"){ int _Nn = (int)_Token.size(); std::vector<int> *_AdjacientList = new std::vector<int>; for(int i = 1;i<_Nn; i++) { _AdjacientList->push_back(utils::stringtolong(_Token[i]));//got a list of adjacient node; } (this->InList).push_back(*_AdjacientList); delete _AdjacientList; } } _Dev.close(); std::cout << "Loaded file successfully! " << std::endl; } // export directed graph in form of adjmat void directedgraph::printGraph2File(std::string _FileName ) const { std::ofstream _Dev; _Dev.open(_FileName, std::ios::out); _Dev << "number node " << NumberNode << std::endl; _Dev << "end header!" << std::endl; for (int i = 0; i < (int)this->InList.size(); i++) { size_t _SizeOfRowI = (this->InList)[i].size(); for (size_t j = 0; j<_SizeOfRowI; j++) { _Dev << (this->InList)[i][j] << " "; } _Dev << std::endl; } _Dev.close(); std::cout << "Write to file successfully!" << std::endl; }
e8e2749d3fc6e0fd308f3fc72f0a51b51760ff8b
3769bb183cbc88941cef2524ee35f511e2d1ae64
/TheKthNumber.cpp
6d4547ea2bd975903f282af3a8f6e02a503cb9da
[]
no_license
Tinkerllt/algorithm-work
75063514ec33ba382caf5e91aaf820263ee00687
77c6ea349043aae666cf36c3bab717c663bbce4c
refs/heads/master
2021-01-16T04:37:49.083963
2020-06-15T12:43:09
2020-06-15T12:43:09
242,978,924
2
0
null
null
null
null
GB18030
C++
false
false
960
cpp
#include<iostream> using namespace std; int FindKthMax(int*list, int left, int right, int k); int main() { int i,n,k; while (cin >> n) { int *a = new int[n]; for (i = 0; i < n; i++) cin >> a[i]; cin >> k; cout << FindKthMax(a, 0, n - 1, k) << endl; } return 0; } int FindKthMax(int*list, int left, int right, int k) { int key = list[left]; int low = left, high = right; while (low < high) { while (list[high]>=key&&high > low) high--; list[low] = list[high]; while (list[low]<=key&&high>low) low++; list[high] = list[low]; } list[low] = key; /*实现一次快速排序*/ int l = right - low + 1; if (l == k) //若key处恰好为第k大数,直接返回 return key; else if (l < k) /*l<k说明第k大数在key左边序列中,此时为第k-l大的数*/ FindKthMax(list, left, low - 1, k - l); else /*l>k说明第k大的数在右边序列中,位置还是第k大的数*/ FindKthMax(list, low + 1, right, k); }
340a110a9c1f8629ea77039e0ac72fe4f55a6a35
eb3a61fe2726650416e9957469d9bb62454360c5
/src/vm/misc/Utils.cpp
fd21841cd831a6fa42b82a7d57012ce46044be14
[ "MIT" ]
permissive
215559085/ccvm
2d237089c877da29eac21f66a6b0d4cc69b170cd
483a3ea4081f3ed9513d6811bfa1573e8eb52ad2
refs/heads/master
2020-12-14T14:07:23.072431
2020-02-12T07:08:00
2020-02-12T07:08:00
234,766,806
0
0
null
null
null
null
UTF-8
C++
false
false
2,043
cpp
// // Created by Admin on 2020/1/20. // #include "Utils.h" #include "../Runtime/JavaTypes/JType.h" #include "../Runtime/JRuntiemEnv/JRuntimeEnv.h" #include <typeinfo> JType* cloneValue(JType* value) { if (value == nullptr) { return nullptr; } JType* dupvalue{}; if (typeid(*value) == typeid(JDouble)) { dupvalue = new JDouble(); dynamic_cast<JDouble*>(dupvalue)->i = dynamic_cast<JDouble*>(value)->i; } else if (typeid(*value) == typeid(JFloat)) { dupvalue = new JFloat(); dynamic_cast<JFloat*>(dupvalue)->i = dynamic_cast<JFloat*>(value)->i; } else if (typeid(*value) == typeid(JInt)) { dupvalue = new JInt(); dynamic_cast<JInt*>(dupvalue)->i = dynamic_cast<JInt*>(value)->i; } else if (typeid(*value) == typeid(JLong)) { dupvalue = new JDouble(); dynamic_cast<JDouble*>(dupvalue)->i = dynamic_cast<JDouble*>(value)->i; } else if (typeid(*value) == typeid(JObject)) { dupvalue = new JObject(); dynamic_cast<JObject*>(dupvalue)->javaClassFile = dynamic_cast<JObject*>(value)->javaClassFile; dynamic_cast<JObject*>(dupvalue)->offset = dynamic_cast<JObject*>(value)->offset; } else if (typeid(*value) == typeid(JArray)) { dupvalue = new JArray(); dynamic_cast<JArray*>(dupvalue)->len = dynamic_cast<JArray*>(value)->len; dynamic_cast<JArray*>(dupvalue)->offset = dynamic_cast<JArray*>(value)->offset; } else { } return dupvalue; } JType* determineBasicType(const std::string& type) { if (IS_FIELD_INT(type) || IS_FIELD_BYTE(type) || IS_FIELD_CHAR(type) || IS_FIELD_SHORT(type) || IS_FIELD_BOOL(type)) { return new JInt; } if (IS_FIELD_DOUBLE(type)) { return new JDouble; } if (IS_FIELD_FLOAT(type)) { return new JFloat; } if (IS_FIELD_LONG(type)) { return new JLong; } return nullptr; }
0dc0848408183e18e81af461fdb9443ef6dbf494
3570f72209e2776a57d40c3fe8c44375bc2d3dc8
/cpp/ClassA.h
e5125d315192a6cf64620c7fe7efe2c2b1ea9ec9
[]
no_license
wjfsanhe/programBF
072da4e4e43e7e5986ec8ca97e3376146b4f65aa
f17fbf4b76852e9e304c95831383d68c0c775451
refs/heads/master
2021-01-13T05:00:32.069598
2017-02-07T05:44:56
2017-02-07T05:44:56
81,170,802
0
0
null
null
null
null
UTF-8
C++
false
false
192
h
#include <stdio.h> #include <stdlib.h> class A { public: int ttt; virtual void func_pub(){}//{printf("public func a\n");} private: int aaa; void func_pri(){printf("private func b\n");} };
6cac75219e4d8f44646bba0e106bd53789ea147b
b4ce9e80b8a5fab531136f0b6ac17128f0b60376
/125_GeV_Correction2/Run07Signal.h
ee839de77e5de912a6cbb80b1fc1566334167b6b
[]
no_license
k579l290/Physics-Research-summer2019
0a3c81e5fa18c9b862cfe89e1955061fc8a4524a
4b4e9c7b329b848b0f24912a0ea8ed846ddcc32d
refs/heads/master
2020-12-15T19:05:53.507422
2020-01-21T00:13:50
2020-01-21T00:13:50
235,220,546
0
0
null
null
null
null
UTF-8
C++
false
false
67,132
h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Mon Jul 1 06:32:53 2019 by ROOT version 6.14/06 // from TTree Delphes/Analysis tree // found on file: run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root ////////////////////////////////////////////////////////// #ifndef Run07Signal_h #define Run07Signal_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> // Header file for the classes stored in the TTree if any. #include "TClonesArray.h" #include "TObject.h" class Run07Signal { public : TTree *fChain; //!pointer to the analyzed TTree or TChain Int_t fCurrent; //!current Tree number in a TChain // Fixed size dimensions of array or collections stored in the TTree if any. static constexpr Int_t kMaxEvent = 1; static constexpr Int_t kMaxParticle = 4231; static constexpr Int_t kMaxTrack = 234; static constexpr Int_t kMaxTower = 343; static constexpr Int_t kMaxEFlowTrack = 234; static constexpr Int_t kMaxEFlowPhoton = 134; static constexpr Int_t kMaxEFlowNeutralHadron = 162; static constexpr Int_t kMaxGenJet = 15; static constexpr Int_t kMaxGenMissingET = 1; static constexpr Int_t kMaxJet = 14; static constexpr Int_t kMaxElectron = 4; static constexpr Int_t kMaxPhoton = 4; static constexpr Int_t kMaxMuon = 4; static constexpr Int_t kMaxFatJet = 6; static constexpr Int_t kMaxMissingET = 1; static constexpr Int_t kMaxScalarHT = 1; // Declaration of leaf types Int_t Event_; UInt_t Event_fUniqueID[kMaxEvent]; //[Event_] UInt_t Event_fBits[kMaxEvent]; //[Event_] Long64_t Event_Number[kMaxEvent]; //[Event_] Float_t Event_ReadTime[kMaxEvent]; //[Event_] Float_t Event_ProcTime[kMaxEvent]; //[Event_] Int_t Event_ProcessID[kMaxEvent]; //[Event_] Int_t Event_MPI[kMaxEvent]; //[Event_] Float_t Event_Weight[kMaxEvent]; //[Event_] Float_t Event_Scale[kMaxEvent]; //[Event_] Float_t Event_AlphaQED[kMaxEvent]; //[Event_] Float_t Event_AlphaQCD[kMaxEvent]; //[Event_] Int_t Event_ID1[kMaxEvent]; //[Event_] Int_t Event_ID2[kMaxEvent]; //[Event_] Float_t Event_X1[kMaxEvent]; //[Event_] Float_t Event_X2[kMaxEvent]; //[Event_] Float_t Event_ScalePDF[kMaxEvent]; //[Event_] Float_t Event_PDF1[kMaxEvent]; //[Event_] Float_t Event_PDF2[kMaxEvent]; //[Event_] Int_t Event_size; Int_t Particle_; UInt_t Particle_fUniqueID[kMaxParticle]; //[Particle_] UInt_t Particle_fBits[kMaxParticle]; //[Particle_] Int_t Particle_PID[kMaxParticle]; //[Particle_] Int_t Particle_Status[kMaxParticle]; //[Particle_] Int_t Particle_IsPU[kMaxParticle]; //[Particle_] Int_t Particle_M1[kMaxParticle]; //[Particle_] Int_t Particle_M2[kMaxParticle]; //[Particle_] Int_t Particle_D1[kMaxParticle]; //[Particle_] Int_t Particle_D2[kMaxParticle]; //[Particle_] Int_t Particle_Charge[kMaxParticle]; //[Particle_] Float_t Particle_Mass[kMaxParticle]; //[Particle_] Float_t Particle_E[kMaxParticle]; //[Particle_] Float_t Particle_Px[kMaxParticle]; //[Particle_] Float_t Particle_Py[kMaxParticle]; //[Particle_] Float_t Particle_Pz[kMaxParticle]; //[Particle_] Float_t Particle_P[kMaxParticle]; //[Particle_] Float_t Particle_PT[kMaxParticle]; //[Particle_] Float_t Particle_Eta[kMaxParticle]; //[Particle_] Float_t Particle_Phi[kMaxParticle]; //[Particle_] Float_t Particle_Rapidity[kMaxParticle]; //[Particle_] Float_t Particle_CtgTheta[kMaxParticle]; //[Particle_] Float_t Particle_D0[kMaxParticle]; //[Particle_] Float_t Particle_DZ[kMaxParticle]; //[Particle_] Float_t Particle_T[kMaxParticle]; //[Particle_] Float_t Particle_X[kMaxParticle]; //[Particle_] Float_t Particle_Y[kMaxParticle]; //[Particle_] Float_t Particle_Z[kMaxParticle]; //[Particle_] Int_t Particle_size; Int_t Track_; UInt_t Track_fUniqueID[kMaxTrack]; //[Track_] UInt_t Track_fBits[kMaxTrack]; //[Track_] Int_t Track_PID[kMaxTrack]; //[Track_] Int_t Track_Charge[kMaxTrack]; //[Track_] Float_t Track_P[kMaxTrack]; //[Track_] Float_t Track_PT[kMaxTrack]; //[Track_] Float_t Track_Eta[kMaxTrack]; //[Track_] Float_t Track_Phi[kMaxTrack]; //[Track_] Float_t Track_CtgTheta[kMaxTrack]; //[Track_] Float_t Track_EtaOuter[kMaxTrack]; //[Track_] Float_t Track_PhiOuter[kMaxTrack]; //[Track_] Float_t Track_T[kMaxTrack]; //[Track_] Float_t Track_X[kMaxTrack]; //[Track_] Float_t Track_Y[kMaxTrack]; //[Track_] Float_t Track_Z[kMaxTrack]; //[Track_] Float_t Track_TOuter[kMaxTrack]; //[Track_] Float_t Track_XOuter[kMaxTrack]; //[Track_] Float_t Track_YOuter[kMaxTrack]; //[Track_] Float_t Track_ZOuter[kMaxTrack]; //[Track_] Float_t Track_Xd[kMaxTrack]; //[Track_] Float_t Track_Yd[kMaxTrack]; //[Track_] Float_t Track_Zd[kMaxTrack]; //[Track_] Float_t Track_L[kMaxTrack]; //[Track_] Float_t Track_D0[kMaxTrack]; //[Track_] Float_t Track_DZ[kMaxTrack]; //[Track_] Float_t Track_ErrorP[kMaxTrack]; //[Track_] Float_t Track_ErrorPT[kMaxTrack]; //[Track_] Float_t Track_ErrorPhi[kMaxTrack]; //[Track_] Float_t Track_ErrorCtgTheta[kMaxTrack]; //[Track_] Float_t Track_ErrorT[kMaxTrack]; //[Track_] Float_t Track_ErrorD0[kMaxTrack]; //[Track_] Float_t Track_ErrorDZ[kMaxTrack]; //[Track_] TRef Track_Particle[kMaxTrack]; Int_t Track_VertexIndex[kMaxTrack]; //[Track_] Int_t Track_size; Int_t Tower_; UInt_t Tower_fUniqueID[kMaxTower]; //[Tower_] UInt_t Tower_fBits[kMaxTower]; //[Tower_] Float_t Tower_ET[kMaxTower]; //[Tower_] Float_t Tower_Eta[kMaxTower]; //[Tower_] Float_t Tower_Phi[kMaxTower]; //[Tower_] Float_t Tower_E[kMaxTower]; //[Tower_] Float_t Tower_T[kMaxTower]; //[Tower_] Int_t Tower_NTimeHits[kMaxTower]; //[Tower_] Float_t Tower_Eem[kMaxTower]; //[Tower_] Float_t Tower_Ehad[kMaxTower]; //[Tower_] Float_t Tower_Edges[kMaxTower][4]; //[Tower_] TRefArray Tower_Particles[kMaxTower]; Int_t Tower_size; Int_t EFlowTrack_; UInt_t EFlowTrack_fUniqueID[kMaxEFlowTrack]; //[EFlowTrack_] UInt_t EFlowTrack_fBits[kMaxEFlowTrack]; //[EFlowTrack_] Int_t EFlowTrack_PID[kMaxEFlowTrack]; //[EFlowTrack_] Int_t EFlowTrack_Charge[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_P[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_PT[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Eta[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Phi[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_CtgTheta[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_EtaOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_PhiOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_T[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_X[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Y[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Z[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_TOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_XOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_YOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ZOuter[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Xd[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Yd[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_Zd[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_L[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_D0[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_DZ[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorP[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorPT[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorPhi[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorCtgTheta[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorT[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorD0[kMaxEFlowTrack]; //[EFlowTrack_] Float_t EFlowTrack_ErrorDZ[kMaxEFlowTrack]; //[EFlowTrack_] TRef EFlowTrack_Particle[kMaxEFlowTrack]; Int_t EFlowTrack_VertexIndex[kMaxEFlowTrack]; //[EFlowTrack_] Int_t EFlowTrack_size; Int_t EFlowPhoton_; UInt_t EFlowPhoton_fUniqueID[kMaxEFlowPhoton]; //[EFlowPhoton_] UInt_t EFlowPhoton_fBits[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_ET[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_Eta[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_Phi[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_E[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_T[kMaxEFlowPhoton]; //[EFlowPhoton_] Int_t EFlowPhoton_NTimeHits[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_Eem[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_Ehad[kMaxEFlowPhoton]; //[EFlowPhoton_] Float_t EFlowPhoton_Edges[kMaxEFlowPhoton][4]; //[EFlowPhoton_] TRefArray EFlowPhoton_Particles[kMaxEFlowPhoton]; Int_t EFlowPhoton_size; Int_t EFlowNeutralHadron_; UInt_t EFlowNeutralHadron_fUniqueID[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] UInt_t EFlowNeutralHadron_fBits[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_ET[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_Eta[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_Phi[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_E[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_T[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Int_t EFlowNeutralHadron_NTimeHits[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_Eem[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_Ehad[kMaxEFlowNeutralHadron]; //[EFlowNeutralHadron_] Float_t EFlowNeutralHadron_Edges[kMaxEFlowNeutralHadron][4]; //[EFlowNeutralHadron_] TRefArray EFlowNeutralHadron_Particles[kMaxEFlowNeutralHadron]; Int_t EFlowNeutralHadron_size; Int_t GenJet_; UInt_t GenJet_fUniqueID[kMaxGenJet]; //[GenJet_] UInt_t GenJet_fBits[kMaxGenJet]; //[GenJet_] Float_t GenJet_PT[kMaxGenJet]; //[GenJet_] Float_t GenJet_Eta[kMaxGenJet]; //[GenJet_] Float_t GenJet_Phi[kMaxGenJet]; //[GenJet_] Float_t GenJet_T[kMaxGenJet]; //[GenJet_] Float_t GenJet_Mass[kMaxGenJet]; //[GenJet_] Float_t GenJet_DeltaEta[kMaxGenJet]; //[GenJet_] Float_t GenJet_DeltaPhi[kMaxGenJet]; //[GenJet_] UInt_t GenJet_Flavor[kMaxGenJet]; //[GenJet_] UInt_t GenJet_FlavorAlgo[kMaxGenJet]; //[GenJet_] UInt_t GenJet_FlavorPhys[kMaxGenJet]; //[GenJet_] UInt_t GenJet_BTag[kMaxGenJet]; //[GenJet_] UInt_t GenJet_BTagAlgo[kMaxGenJet]; //[GenJet_] UInt_t GenJet_BTagPhys[kMaxGenJet]; //[GenJet_] UInt_t GenJet_TauTag[kMaxGenJet]; //[GenJet_] Int_t GenJet_Charge[kMaxGenJet]; //[GenJet_] Float_t GenJet_EhadOverEem[kMaxGenJet]; //[GenJet_] Int_t GenJet_NCharged[kMaxGenJet]; //[GenJet_] Int_t GenJet_NNeutrals[kMaxGenJet]; //[GenJet_] Float_t GenJet_Beta[kMaxGenJet]; //[GenJet_] Float_t GenJet_BetaStar[kMaxGenJet]; //[GenJet_] Float_t GenJet_MeanSqDeltaR[kMaxGenJet]; //[GenJet_] Float_t GenJet_PTD[kMaxGenJet]; //[GenJet_] Float_t GenJet_FracPt[kMaxGenJet][5]; //[GenJet_] Float_t GenJet_Tau[kMaxGenJet][5]; //[GenJet_] TLorentzVector GenJet_TrimmedP4[5][kMaxGenJet]; TLorentzVector GenJet_PrunedP4[5][kMaxGenJet]; TLorentzVector GenJet_SoftDroppedP4[5][kMaxGenJet]; Int_t GenJet_NSubJetsTrimmed[kMaxGenJet]; //[GenJet_] Int_t GenJet_NSubJetsPruned[kMaxGenJet]; //[GenJet_] Int_t GenJet_NSubJetsSoftDropped[kMaxGenJet]; //[GenJet_] TRefArray GenJet_Constituents[kMaxGenJet]; TRefArray GenJet_Particles[kMaxGenJet]; TLorentzVector GenJet_Area[kMaxGenJet]; Int_t GenJet_size; Int_t GenMissingET_; UInt_t GenMissingET_fUniqueID[kMaxGenMissingET]; //[GenMissingET_] UInt_t GenMissingET_fBits[kMaxGenMissingET]; //[GenMissingET_] Float_t GenMissingET_MET[kMaxGenMissingET]; //[GenMissingET_] Float_t GenMissingET_Eta[kMaxGenMissingET]; //[GenMissingET_] Float_t GenMissingET_Phi[kMaxGenMissingET]; //[GenMissingET_] Int_t GenMissingET_size; Int_t Jet_; UInt_t Jet_fUniqueID[kMaxJet]; //[Jet_] UInt_t Jet_fBits[kMaxJet]; //[Jet_] Float_t Jet_PT[kMaxJet]; //[Jet_] Float_t Jet_Eta[kMaxJet]; //[Jet_] Float_t Jet_Phi[kMaxJet]; //[Jet_] Float_t Jet_T[kMaxJet]; //[Jet_] Float_t Jet_Mass[kMaxJet]; //[Jet_] Float_t Jet_DeltaEta[kMaxJet]; //[Jet_] Float_t Jet_DeltaPhi[kMaxJet]; //[Jet_] UInt_t Jet_Flavor[kMaxJet]; //[Jet_] UInt_t Jet_FlavorAlgo[kMaxJet]; //[Jet_] UInt_t Jet_FlavorPhys[kMaxJet]; //[Jet_] UInt_t Jet_BTag[kMaxJet]; //[Jet_] UInt_t Jet_BTagAlgo[kMaxJet]; //[Jet_] UInt_t Jet_BTagPhys[kMaxJet]; //[Jet_] UInt_t Jet_TauTag[kMaxJet]; //[Jet_] Int_t Jet_Charge[kMaxJet]; //[Jet_] Float_t Jet_EhadOverEem[kMaxJet]; //[Jet_] Int_t Jet_NCharged[kMaxJet]; //[Jet_] Int_t Jet_NNeutrals[kMaxJet]; //[Jet_] Float_t Jet_Beta[kMaxJet]; //[Jet_] Float_t Jet_BetaStar[kMaxJet]; //[Jet_] Float_t Jet_MeanSqDeltaR[kMaxJet]; //[Jet_] Float_t Jet_PTD[kMaxJet]; //[Jet_] Float_t Jet_FracPt[kMaxJet][5]; //[Jet_] Float_t Jet_Tau[kMaxJet][5]; //[Jet_] TLorentzVector Jet_TrimmedP4[5][kMaxJet]; TLorentzVector Jet_PrunedP4[5][kMaxJet]; TLorentzVector Jet_SoftDroppedP4[5][kMaxJet]; Int_t Jet_NSubJetsTrimmed[kMaxJet]; //[Jet_] Int_t Jet_NSubJetsPruned[kMaxJet]; //[Jet_] Int_t Jet_NSubJetsSoftDropped[kMaxJet]; //[Jet_] TRefArray Jet_Constituents[kMaxJet]; TRefArray Jet_Particles[kMaxJet]; TLorentzVector Jet_Area[kMaxJet]; Int_t Jet_size; Int_t Electron_; UInt_t Electron_fUniqueID[kMaxElectron]; //[Electron_] UInt_t Electron_fBits[kMaxElectron]; //[Electron_] Float_t Electron_PT[kMaxElectron]; //[Electron_] Float_t Electron_Eta[kMaxElectron]; //[Electron_] Float_t Electron_Phi[kMaxElectron]; //[Electron_] Float_t Electron_T[kMaxElectron]; //[Electron_] Int_t Electron_Charge[kMaxElectron]; //[Electron_] Float_t Electron_EhadOverEem[kMaxElectron]; //[Electron_] TRef Electron_Particle[kMaxElectron]; Float_t Electron_IsolationVar[kMaxElectron]; //[Electron_] Float_t Electron_IsolationVarRhoCorr[kMaxElectron]; //[Electron_] Float_t Electron_SumPtCharged[kMaxElectron]; //[Electron_] Float_t Electron_SumPtNeutral[kMaxElectron]; //[Electron_] Float_t Electron_SumPtChargedPU[kMaxElectron]; //[Electron_] Float_t Electron_SumPt[kMaxElectron]; //[Electron_] Int_t Electron_size; Int_t Photon_; UInt_t Photon_fUniqueID[kMaxPhoton]; //[Photon_] UInt_t Photon_fBits[kMaxPhoton]; //[Photon_] Float_t Photon_PT[kMaxPhoton]; //[Photon_] Float_t Photon_Eta[kMaxPhoton]; //[Photon_] Float_t Photon_Phi[kMaxPhoton]; //[Photon_] Float_t Photon_E[kMaxPhoton]; //[Photon_] Float_t Photon_T[kMaxPhoton]; //[Photon_] Float_t Photon_EhadOverEem[kMaxPhoton]; //[Photon_] TRefArray Photon_Particles[kMaxPhoton]; Float_t Photon_IsolationVar[kMaxPhoton]; //[Photon_] Float_t Photon_IsolationVarRhoCorr[kMaxPhoton]; //[Photon_] Float_t Photon_SumPtCharged[kMaxPhoton]; //[Photon_] Float_t Photon_SumPtNeutral[kMaxPhoton]; //[Photon_] Float_t Photon_SumPtChargedPU[kMaxPhoton]; //[Photon_] Float_t Photon_SumPt[kMaxPhoton]; //[Photon_] Int_t Photon_size; Int_t Muon_; UInt_t Muon_fUniqueID[kMaxMuon]; //[Muon_] UInt_t Muon_fBits[kMaxMuon]; //[Muon_] Float_t Muon_PT[kMaxMuon]; //[Muon_] Float_t Muon_Eta[kMaxMuon]; //[Muon_] Float_t Muon_Phi[kMaxMuon]; //[Muon_] Float_t Muon_T[kMaxMuon]; //[Muon_] Int_t Muon_Charge[kMaxMuon]; //[Muon_] TRef Muon_Particle[kMaxMuon]; Float_t Muon_IsolationVar[kMaxMuon]; //[Muon_] Float_t Muon_IsolationVarRhoCorr[kMaxMuon]; //[Muon_] Float_t Muon_SumPtCharged[kMaxMuon]; //[Muon_] Float_t Muon_SumPtNeutral[kMaxMuon]; //[Muon_] Float_t Muon_SumPtChargedPU[kMaxMuon]; //[Muon_] Float_t Muon_SumPt[kMaxMuon]; //[Muon_] Int_t Muon_size; Int_t FatJet_; UInt_t FatJet_fUniqueID[kMaxFatJet]; //[FatJet_] UInt_t FatJet_fBits[kMaxFatJet]; //[FatJet_] Float_t FatJet_PT[kMaxFatJet]; //[FatJet_] Float_t FatJet_Eta[kMaxFatJet]; //[FatJet_] Float_t FatJet_Phi[kMaxFatJet]; //[FatJet_] Float_t FatJet_T[kMaxFatJet]; //[FatJet_] Float_t FatJet_Mass[kMaxFatJet]; //[FatJet_] Float_t FatJet_DeltaEta[kMaxFatJet]; //[FatJet_] Float_t FatJet_DeltaPhi[kMaxFatJet]; //[FatJet_] UInt_t FatJet_Flavor[kMaxFatJet]; //[FatJet_] UInt_t FatJet_FlavorAlgo[kMaxFatJet]; //[FatJet_] UInt_t FatJet_FlavorPhys[kMaxFatJet]; //[FatJet_] UInt_t FatJet_BTag[kMaxFatJet]; //[FatJet_] UInt_t FatJet_BTagAlgo[kMaxFatJet]; //[FatJet_] UInt_t FatJet_BTagPhys[kMaxFatJet]; //[FatJet_] UInt_t FatJet_TauTag[kMaxFatJet]; //[FatJet_] Int_t FatJet_Charge[kMaxFatJet]; //[FatJet_] Float_t FatJet_EhadOverEem[kMaxFatJet]; //[FatJet_] Int_t FatJet_NCharged[kMaxFatJet]; //[FatJet_] Int_t FatJet_NNeutrals[kMaxFatJet]; //[FatJet_] Float_t FatJet_Beta[kMaxFatJet]; //[FatJet_] Float_t FatJet_BetaStar[kMaxFatJet]; //[FatJet_] Float_t FatJet_MeanSqDeltaR[kMaxFatJet]; //[FatJet_] Float_t FatJet_PTD[kMaxFatJet]; //[FatJet_] Float_t FatJet_FracPt[kMaxFatJet][5]; //[FatJet_] Float_t FatJet_Tau[kMaxFatJet][5]; //[FatJet_] TLorentzVector FatJet_TrimmedP4[5][kMaxFatJet]; TLorentzVector FatJet_PrunedP4[5][kMaxFatJet]; TLorentzVector FatJet_SoftDroppedP4[5][kMaxFatJet]; Int_t FatJet_NSubJetsTrimmed[kMaxFatJet]; //[FatJet_] Int_t FatJet_NSubJetsPruned[kMaxFatJet]; //[FatJet_] Int_t FatJet_NSubJetsSoftDropped[kMaxFatJet]; //[FatJet_] TRefArray FatJet_Constituents[kMaxFatJet]; TRefArray FatJet_Particles[kMaxFatJet]; TLorentzVector FatJet_Area[kMaxFatJet]; Int_t FatJet_size; Int_t MissingET_; UInt_t MissingET_fUniqueID[kMaxMissingET]; //[MissingET_] UInt_t MissingET_fBits[kMaxMissingET]; //[MissingET_] Float_t MissingET_MET[kMaxMissingET]; //[MissingET_] Float_t MissingET_Eta[kMaxMissingET]; //[MissingET_] Float_t MissingET_Phi[kMaxMissingET]; //[MissingET_] Int_t MissingET_size; Int_t ScalarHT_; UInt_t ScalarHT_fUniqueID[kMaxScalarHT]; //[ScalarHT_] UInt_t ScalarHT_fBits[kMaxScalarHT]; //[ScalarHT_] Float_t ScalarHT_HT[kMaxScalarHT]; //[ScalarHT_] Int_t ScalarHT_size; // List of branches TBranch *b_Event_; //! TBranch *b_Event_fUniqueID; //! TBranch *b_Event_fBits; //! TBranch *b_Event_Number; //! TBranch *b_Event_ReadTime; //! TBranch *b_Event_ProcTime; //! TBranch *b_Event_ProcessID; //! TBranch *b_Event_MPI; //! TBranch *b_Event_Weight; //! TBranch *b_Event_Scale; //! TBranch *b_Event_AlphaQED; //! TBranch *b_Event_AlphaQCD; //! TBranch *b_Event_ID1; //! TBranch *b_Event_ID2; //! TBranch *b_Event_X1; //! TBranch *b_Event_X2; //! TBranch *b_Event_ScalePDF; //! TBranch *b_Event_PDF1; //! TBranch *b_Event_PDF2; //! TBranch *b_Event_size; //! TBranch *b_Particle_; //! TBranch *b_Particle_fUniqueID; //! TBranch *b_Particle_fBits; //! TBranch *b_Particle_PID; //! TBranch *b_Particle_Status; //! TBranch *b_Particle_IsPU; //! TBranch *b_Particle_M1; //! TBranch *b_Particle_M2; //! TBranch *b_Particle_D1; //! TBranch *b_Particle_D2; //! TBranch *b_Particle_Charge; //! TBranch *b_Particle_Mass; //! TBranch *b_Particle_E; //! TBranch *b_Particle_Px; //! TBranch *b_Particle_Py; //! TBranch *b_Particle_Pz; //! TBranch *b_Particle_P; //! TBranch *b_Particle_PT; //! TBranch *b_Particle_Eta; //! TBranch *b_Particle_Phi; //! TBranch *b_Particle_Rapidity; //! TBranch *b_Particle_CtgTheta; //! TBranch *b_Particle_D0; //! TBranch *b_Particle_DZ; //! TBranch *b_Particle_T; //! TBranch *b_Particle_X; //! TBranch *b_Particle_Y; //! TBranch *b_Particle_Z; //! TBranch *b_Particle_size; //! TBranch *b_Track_; //! TBranch *b_Track_fUniqueID; //! TBranch *b_Track_fBits; //! TBranch *b_Track_PID; //! TBranch *b_Track_Charge; //! TBranch *b_Track_P; //! TBranch *b_Track_PT; //! TBranch *b_Track_Eta; //! TBranch *b_Track_Phi; //! TBranch *b_Track_CtgTheta; //! TBranch *b_Track_EtaOuter; //! TBranch *b_Track_PhiOuter; //! TBranch *b_Track_T; //! TBranch *b_Track_X; //! TBranch *b_Track_Y; //! TBranch *b_Track_Z; //! TBranch *b_Track_TOuter; //! TBranch *b_Track_XOuter; //! TBranch *b_Track_YOuter; //! TBranch *b_Track_ZOuter; //! TBranch *b_Track_Xd; //! TBranch *b_Track_Yd; //! TBranch *b_Track_Zd; //! TBranch *b_Track_L; //! TBranch *b_Track_D0; //! TBranch *b_Track_DZ; //! TBranch *b_Track_ErrorP; //! TBranch *b_Track_ErrorPT; //! TBranch *b_Track_ErrorPhi; //! TBranch *b_Track_ErrorCtgTheta; //! TBranch *b_Track_ErrorT; //! TBranch *b_Track_ErrorD0; //! TBranch *b_Track_ErrorDZ; //! TBranch *b_Track_Particle; //! TBranch *b_Track_VertexIndex; //! TBranch *b_Track_size; //! TBranch *b_Tower_; //! TBranch *b_Tower_fUniqueID; //! TBranch *b_Tower_fBits; //! TBranch *b_Tower_ET; //! TBranch *b_Tower_Eta; //! TBranch *b_Tower_Phi; //! TBranch *b_Tower_E; //! TBranch *b_Tower_T; //! TBranch *b_Tower_NTimeHits; //! TBranch *b_Tower_Eem; //! TBranch *b_Tower_Ehad; //! TBranch *b_Tower_Edges; //! TBranch *b_Tower_Particles; //! TBranch *b_Tower_size; //! TBranch *b_EFlowTrack_; //! TBranch *b_EFlowTrack_fUniqueID; //! TBranch *b_EFlowTrack_fBits; //! TBranch *b_EFlowTrack_PID; //! TBranch *b_EFlowTrack_Charge; //! TBranch *b_EFlowTrack_P; //! TBranch *b_EFlowTrack_PT; //! TBranch *b_EFlowTrack_Eta; //! TBranch *b_EFlowTrack_Phi; //! TBranch *b_EFlowTrack_CtgTheta; //! TBranch *b_EFlowTrack_EtaOuter; //! TBranch *b_EFlowTrack_PhiOuter; //! TBranch *b_EFlowTrack_T; //! TBranch *b_EFlowTrack_X; //! TBranch *b_EFlowTrack_Y; //! TBranch *b_EFlowTrack_Z; //! TBranch *b_EFlowTrack_TOuter; //! TBranch *b_EFlowTrack_XOuter; //! TBranch *b_EFlowTrack_YOuter; //! TBranch *b_EFlowTrack_ZOuter; //! TBranch *b_EFlowTrack_Xd; //! TBranch *b_EFlowTrack_Yd; //! TBranch *b_EFlowTrack_Zd; //! TBranch *b_EFlowTrack_L; //! TBranch *b_EFlowTrack_D0; //! TBranch *b_EFlowTrack_DZ; //! TBranch *b_EFlowTrack_ErrorP; //! TBranch *b_EFlowTrack_ErrorPT; //! TBranch *b_EFlowTrack_ErrorPhi; //! TBranch *b_EFlowTrack_ErrorCtgTheta; //! TBranch *b_EFlowTrack_ErrorT; //! TBranch *b_EFlowTrack_ErrorD0; //! TBranch *b_EFlowTrack_ErrorDZ; //! TBranch *b_EFlowTrack_Particle; //! TBranch *b_EFlowTrack_VertexIndex; //! TBranch *b_EFlowTrack_size; //! TBranch *b_EFlowPhoton_; //! TBranch *b_EFlowPhoton_fUniqueID; //! TBranch *b_EFlowPhoton_fBits; //! TBranch *b_EFlowPhoton_ET; //! TBranch *b_EFlowPhoton_Eta; //! TBranch *b_EFlowPhoton_Phi; //! TBranch *b_EFlowPhoton_E; //! TBranch *b_EFlowPhoton_T; //! TBranch *b_EFlowPhoton_NTimeHits; //! TBranch *b_EFlowPhoton_Eem; //! TBranch *b_EFlowPhoton_Ehad; //! TBranch *b_EFlowPhoton_Edges; //! TBranch *b_EFlowPhoton_Particles; //! TBranch *b_EFlowPhoton_size; //! TBranch *b_EFlowNeutralHadron_; //! TBranch *b_EFlowNeutralHadron_fUniqueID; //! TBranch *b_EFlowNeutralHadron_fBits; //! TBranch *b_EFlowNeutralHadron_ET; //! TBranch *b_EFlowNeutralHadron_Eta; //! TBranch *b_EFlowNeutralHadron_Phi; //! TBranch *b_EFlowNeutralHadron_E; //! TBranch *b_EFlowNeutralHadron_T; //! TBranch *b_EFlowNeutralHadron_NTimeHits; //! TBranch *b_EFlowNeutralHadron_Eem; //! TBranch *b_EFlowNeutralHadron_Ehad; //! TBranch *b_EFlowNeutralHadron_Edges; //! TBranch *b_EFlowNeutralHadron_Particles; //! TBranch *b_EFlowNeutralHadron_size; //! TBranch *b_GenJet_; //! TBranch *b_GenJet_fUniqueID; //! TBranch *b_GenJet_fBits; //! TBranch *b_GenJet_PT; //! TBranch *b_GenJet_Eta; //! TBranch *b_GenJet_Phi; //! TBranch *b_GenJet_T; //! TBranch *b_GenJet_Mass; //! TBranch *b_GenJet_DeltaEta; //! TBranch *b_GenJet_DeltaPhi; //! TBranch *b_GenJet_Flavor; //! TBranch *b_GenJet_FlavorAlgo; //! TBranch *b_GenJet_FlavorPhys; //! TBranch *b_GenJet_BTag; //! TBranch *b_GenJet_BTagAlgo; //! TBranch *b_GenJet_BTagPhys; //! TBranch *b_GenJet_TauTag; //! TBranch *b_GenJet_Charge; //! TBranch *b_GenJet_EhadOverEem; //! TBranch *b_GenJet_NCharged; //! TBranch *b_GenJet_NNeutrals; //! TBranch *b_GenJet_Beta; //! TBranch *b_GenJet_BetaStar; //! TBranch *b_GenJet_MeanSqDeltaR; //! TBranch *b_GenJet_PTD; //! TBranch *b_GenJet_FracPt; //! TBranch *b_GenJet_Tau; //! TBranch *b_GenJet_TrimmedP4; //! TBranch *b_GenJet_PrunedP4; //! TBranch *b_GenJet_SoftDroppedP4; //! TBranch *b_GenJet_NSubJetsTrimmed; //! TBranch *b_GenJet_NSubJetsPruned; //! TBranch *b_GenJet_NSubJetsSoftDropped; //! TBranch *b_GenJet_Constituents; //! TBranch *b_GenJet_Particles; //! TBranch *b_GenJet_Area; //! TBranch *b_GenJet_size; //! TBranch *b_GenMissingET_; //! TBranch *b_GenMissingET_fUniqueID; //! TBranch *b_GenMissingET_fBits; //! TBranch *b_GenMissingET_MET; //! TBranch *b_GenMissingET_Eta; //! TBranch *b_GenMissingET_Phi; //! TBranch *b_GenMissingET_size; //! TBranch *b_Jet_; //! TBranch *b_Jet_fUniqueID; //! TBranch *b_Jet_fBits; //! TBranch *b_Jet_PT; //! TBranch *b_Jet_Eta; //! TBranch *b_Jet_Phi; //! TBranch *b_Jet_T; //! TBranch *b_Jet_Mass; //! TBranch *b_Jet_DeltaEta; //! TBranch *b_Jet_DeltaPhi; //! TBranch *b_Jet_Flavor; //! TBranch *b_Jet_FlavorAlgo; //! TBranch *b_Jet_FlavorPhys; //! TBranch *b_Jet_BTag; //! TBranch *b_Jet_BTagAlgo; //! TBranch *b_Jet_BTagPhys; //! TBranch *b_Jet_TauTag; //! TBranch *b_Jet_Charge; //! TBranch *b_Jet_EhadOverEem; //! TBranch *b_Jet_NCharged; //! TBranch *b_Jet_NNeutrals; //! TBranch *b_Jet_Beta; //! TBranch *b_Jet_BetaStar; //! TBranch *b_Jet_MeanSqDeltaR; //! TBranch *b_Jet_PTD; //! TBranch *b_Jet_FracPt; //! TBranch *b_Jet_Tau; //! TBranch *b_Jet_TrimmedP4; //! TBranch *b_Jet_PrunedP4; //! TBranch *b_Jet_SoftDroppedP4; //! TBranch *b_Jet_NSubJetsTrimmed; //! TBranch *b_Jet_NSubJetsPruned; //! TBranch *b_Jet_NSubJetsSoftDropped; //! TBranch *b_Jet_Constituents; //! TBranch *b_Jet_Particles; //! TBranch *b_Jet_Area; //! TBranch *b_Jet_size; //! TBranch *b_Electron_; //! TBranch *b_Electron_fUniqueID; //! TBranch *b_Electron_fBits; //! TBranch *b_Electron_PT; //! TBranch *b_Electron_Eta; //! TBranch *b_Electron_Phi; //! TBranch *b_Electron_T; //! TBranch *b_Electron_Charge; //! TBranch *b_Electron_EhadOverEem; //! TBranch *b_Electron_Particle; //! TBranch *b_Electron_IsolationVar; //! TBranch *b_Electron_IsolationVarRhoCorr; //! TBranch *b_Electron_SumPtCharged; //! TBranch *b_Electron_SumPtNeutral; //! TBranch *b_Electron_SumPtChargedPU; //! TBranch *b_Electron_SumPt; //! TBranch *b_Electron_size; //! TBranch *b_Photon_; //! TBranch *b_Photon_fUniqueID; //! TBranch *b_Photon_fBits; //! TBranch *b_Photon_PT; //! TBranch *b_Photon_Eta; //! TBranch *b_Photon_Phi; //! TBranch *b_Photon_E; //! TBranch *b_Photon_T; //! TBranch *b_Photon_EhadOverEem; //! TBranch *b_Photon_Particles; //! TBranch *b_Photon_IsolationVar; //! TBranch *b_Photon_IsolationVarRhoCorr; //! TBranch *b_Photon_SumPtCharged; //! TBranch *b_Photon_SumPtNeutral; //! TBranch *b_Photon_SumPtChargedPU; //! TBranch *b_Photon_SumPt; //! TBranch *b_Photon_size; //! TBranch *b_Muon_; //! TBranch *b_Muon_fUniqueID; //! TBranch *b_Muon_fBits; //! TBranch *b_Muon_PT; //! TBranch *b_Muon_Eta; //! TBranch *b_Muon_Phi; //! TBranch *b_Muon_T; //! TBranch *b_Muon_Charge; //! TBranch *b_Muon_Particle; //! TBranch *b_Muon_IsolationVar; //! TBranch *b_Muon_IsolationVarRhoCorr; //! TBranch *b_Muon_SumPtCharged; //! TBranch *b_Muon_SumPtNeutral; //! TBranch *b_Muon_SumPtChargedPU; //! TBranch *b_Muon_SumPt; //! TBranch *b_Muon_size; //! TBranch *b_FatJet_; //! TBranch *b_FatJet_fUniqueID; //! TBranch *b_FatJet_fBits; //! TBranch *b_FatJet_PT; //! TBranch *b_FatJet_Eta; //! TBranch *b_FatJet_Phi; //! TBranch *b_FatJet_T; //! TBranch *b_FatJet_Mass; //! TBranch *b_FatJet_DeltaEta; //! TBranch *b_FatJet_DeltaPhi; //! TBranch *b_FatJet_Flavor; //! TBranch *b_FatJet_FlavorAlgo; //! TBranch *b_FatJet_FlavorPhys; //! TBranch *b_FatJet_BTag; //! TBranch *b_FatJet_BTagAlgo; //! TBranch *b_FatJet_BTagPhys; //! TBranch *b_FatJet_TauTag; //! TBranch *b_FatJet_Charge; //! TBranch *b_FatJet_EhadOverEem; //! TBranch *b_FatJet_NCharged; //! TBranch *b_FatJet_NNeutrals; //! TBranch *b_FatJet_Beta; //! TBranch *b_FatJet_BetaStar; //! TBranch *b_FatJet_MeanSqDeltaR; //! TBranch *b_FatJet_PTD; //! TBranch *b_FatJet_FracPt; //! TBranch *b_FatJet_Tau; //! TBranch *b_FatJet_TrimmedP4; //! TBranch *b_FatJet_PrunedP4; //! TBranch *b_FatJet_SoftDroppedP4; //! TBranch *b_FatJet_NSubJetsTrimmed; //! TBranch *b_FatJet_NSubJetsPruned; //! TBranch *b_FatJet_NSubJetsSoftDropped; //! TBranch *b_FatJet_Constituents; //! TBranch *b_FatJet_Particles; //! TBranch *b_FatJet_Area; //! TBranch *b_FatJet_size; //! TBranch *b_MissingET_; //! TBranch *b_MissingET_fUniqueID; //! TBranch *b_MissingET_fBits; //! TBranch *b_MissingET_MET; //! TBranch *b_MissingET_Eta; //! TBranch *b_MissingET_Phi; //! TBranch *b_MissingET_size; //! TBranch *b_ScalarHT_; //! TBranch *b_ScalarHT_fUniqueID; //! TBranch *b_ScalarHT_fBits; //! TBranch *b_ScalarHT_HT; //! TBranch *b_ScalarHT_size; //! Run07Signal(TTree *tree=0); virtual ~Run07Signal(); virtual Int_t Cut(Long64_t entry); virtual Int_t GetEntry(Long64_t entry); virtual Long64_t LoadTree(Long64_t entry); virtual void Init(TTree *tree); virtual void Loop(); virtual Bool_t Notify(); virtual void Show(Long64_t entry = -1); }; #endif #ifdef Run07Signal_cxx Run07Signal::Run07Signal(TTree *tree) : fChain(0) { // if parameter tree is not specified (or zero), connect the file // used to generate this class and read the Tree. if (tree == 0) { TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root"); if (!f || !f->IsOpen()) { f = new TFile("run07_Higgs0or1Jet_PtGen_450_820_forPtReco550_750GeV.root"); } f->GetObject("Delphes",tree); } Init(tree); } Run07Signal::~Run07Signal() { if (!fChain) return; delete fChain->GetCurrentFile(); } Int_t Run07Signal::GetEntry(Long64_t entry) { // Read contents of entry. if (!fChain) return 0; return fChain->GetEntry(entry); } Long64_t Run07Signal::LoadTree(Long64_t entry) { // Set the environment to read one entry if (!fChain) return -5; Long64_t centry = fChain->LoadTree(entry); if (centry < 0) return centry; if (fChain->GetTreeNumber() != fCurrent) { fCurrent = fChain->GetTreeNumber(); Notify(); } return centry; } void Run07Signal::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fCurrent = -1; fChain->SetMakeClass(1); fChain->SetBranchAddress("Event", &Event_, &b_Event_); fChain->SetBranchAddress("Event.fUniqueID", Event_fUniqueID, &b_Event_fUniqueID); fChain->SetBranchAddress("Event.fBits", Event_fBits, &b_Event_fBits); fChain->SetBranchAddress("Event.Number", Event_Number, &b_Event_Number); fChain->SetBranchAddress("Event.ReadTime", Event_ReadTime, &b_Event_ReadTime); fChain->SetBranchAddress("Event.ProcTime", Event_ProcTime, &b_Event_ProcTime); fChain->SetBranchAddress("Event.ProcessID", Event_ProcessID, &b_Event_ProcessID); fChain->SetBranchAddress("Event.MPI", Event_MPI, &b_Event_MPI); fChain->SetBranchAddress("Event.Weight", Event_Weight, &b_Event_Weight); fChain->SetBranchAddress("Event.Scale", Event_Scale, &b_Event_Scale); fChain->SetBranchAddress("Event.AlphaQED", Event_AlphaQED, &b_Event_AlphaQED); fChain->SetBranchAddress("Event.AlphaQCD", Event_AlphaQCD, &b_Event_AlphaQCD); fChain->SetBranchAddress("Event.ID1", Event_ID1, &b_Event_ID1); fChain->SetBranchAddress("Event.ID2", Event_ID2, &b_Event_ID2); fChain->SetBranchAddress("Event.X1", Event_X1, &b_Event_X1); fChain->SetBranchAddress("Event.X2", Event_X2, &b_Event_X2); fChain->SetBranchAddress("Event.ScalePDF", Event_ScalePDF, &b_Event_ScalePDF); fChain->SetBranchAddress("Event.PDF1", Event_PDF1, &b_Event_PDF1); fChain->SetBranchAddress("Event.PDF2", Event_PDF2, &b_Event_PDF2); fChain->SetBranchAddress("Event_size", &Event_size, &b_Event_size); fChain->SetBranchAddress("Particle", &Particle_, &b_Particle_); fChain->SetBranchAddress("Particle.fUniqueID", Particle_fUniqueID, &b_Particle_fUniqueID); fChain->SetBranchAddress("Particle.fBits", Particle_fBits, &b_Particle_fBits); fChain->SetBranchAddress("Particle.PID", Particle_PID, &b_Particle_PID); fChain->SetBranchAddress("Particle.Status", Particle_Status, &b_Particle_Status); fChain->SetBranchAddress("Particle.IsPU", Particle_IsPU, &b_Particle_IsPU); fChain->SetBranchAddress("Particle.M1", Particle_M1, &b_Particle_M1); fChain->SetBranchAddress("Particle.M2", Particle_M2, &b_Particle_M2); fChain->SetBranchAddress("Particle.D1", Particle_D1, &b_Particle_D1); fChain->SetBranchAddress("Particle.D2", Particle_D2, &b_Particle_D2); fChain->SetBranchAddress("Particle.Charge", Particle_Charge, &b_Particle_Charge); fChain->SetBranchAddress("Particle.Mass", Particle_Mass, &b_Particle_Mass); fChain->SetBranchAddress("Particle.E", Particle_E, &b_Particle_E); fChain->SetBranchAddress("Particle.Px", Particle_Px, &b_Particle_Px); fChain->SetBranchAddress("Particle.Py", Particle_Py, &b_Particle_Py); fChain->SetBranchAddress("Particle.Pz", Particle_Pz, &b_Particle_Pz); fChain->SetBranchAddress("Particle.P", Particle_P, &b_Particle_P); fChain->SetBranchAddress("Particle.PT", Particle_PT, &b_Particle_PT); fChain->SetBranchAddress("Particle.Eta", Particle_Eta, &b_Particle_Eta); fChain->SetBranchAddress("Particle.Phi", Particle_Phi, &b_Particle_Phi); fChain->SetBranchAddress("Particle.Rapidity", Particle_Rapidity, &b_Particle_Rapidity); fChain->SetBranchAddress("Particle.CtgTheta", Particle_CtgTheta, &b_Particle_CtgTheta); fChain->SetBranchAddress("Particle.D0", Particle_D0, &b_Particle_D0); fChain->SetBranchAddress("Particle.DZ", Particle_DZ, &b_Particle_DZ); fChain->SetBranchAddress("Particle.T", Particle_T, &b_Particle_T); fChain->SetBranchAddress("Particle.X", Particle_X, &b_Particle_X); fChain->SetBranchAddress("Particle.Y", Particle_Y, &b_Particle_Y); fChain->SetBranchAddress("Particle.Z", Particle_Z, &b_Particle_Z); fChain->SetBranchAddress("Particle_size", &Particle_size, &b_Particle_size); fChain->SetBranchAddress("Track", &Track_, &b_Track_); fChain->SetBranchAddress("Track.fUniqueID", Track_fUniqueID, &b_Track_fUniqueID); fChain->SetBranchAddress("Track.fBits", Track_fBits, &b_Track_fBits); fChain->SetBranchAddress("Track.PID", Track_PID, &b_Track_PID); fChain->SetBranchAddress("Track.Charge", Track_Charge, &b_Track_Charge); fChain->SetBranchAddress("Track.P", Track_P, &b_Track_P); fChain->SetBranchAddress("Track.PT", Track_PT, &b_Track_PT); fChain->SetBranchAddress("Track.Eta", Track_Eta, &b_Track_Eta); fChain->SetBranchAddress("Track.Phi", Track_Phi, &b_Track_Phi); fChain->SetBranchAddress("Track.CtgTheta", Track_CtgTheta, &b_Track_CtgTheta); fChain->SetBranchAddress("Track.EtaOuter", Track_EtaOuter, &b_Track_EtaOuter); fChain->SetBranchAddress("Track.PhiOuter", Track_PhiOuter, &b_Track_PhiOuter); fChain->SetBranchAddress("Track.T", Track_T, &b_Track_T); fChain->SetBranchAddress("Track.X", Track_X, &b_Track_X); fChain->SetBranchAddress("Track.Y", Track_Y, &b_Track_Y); fChain->SetBranchAddress("Track.Z", Track_Z, &b_Track_Z); fChain->SetBranchAddress("Track.TOuter", Track_TOuter, &b_Track_TOuter); fChain->SetBranchAddress("Track.XOuter", Track_XOuter, &b_Track_XOuter); fChain->SetBranchAddress("Track.YOuter", Track_YOuter, &b_Track_YOuter); fChain->SetBranchAddress("Track.ZOuter", Track_ZOuter, &b_Track_ZOuter); fChain->SetBranchAddress("Track.Xd", Track_Xd, &b_Track_Xd); fChain->SetBranchAddress("Track.Yd", Track_Yd, &b_Track_Yd); fChain->SetBranchAddress("Track.Zd", Track_Zd, &b_Track_Zd); fChain->SetBranchAddress("Track.L", Track_L, &b_Track_L); fChain->SetBranchAddress("Track.D0", Track_D0, &b_Track_D0); fChain->SetBranchAddress("Track.DZ", Track_DZ, &b_Track_DZ); fChain->SetBranchAddress("Track.ErrorP", Track_ErrorP, &b_Track_ErrorP); fChain->SetBranchAddress("Track.ErrorPT", Track_ErrorPT, &b_Track_ErrorPT); fChain->SetBranchAddress("Track.ErrorPhi", Track_ErrorPhi, &b_Track_ErrorPhi); fChain->SetBranchAddress("Track.ErrorCtgTheta", Track_ErrorCtgTheta, &b_Track_ErrorCtgTheta); fChain->SetBranchAddress("Track.ErrorT", Track_ErrorT, &b_Track_ErrorT); fChain->SetBranchAddress("Track.ErrorD0", Track_ErrorD0, &b_Track_ErrorD0); fChain->SetBranchAddress("Track.ErrorDZ", Track_ErrorDZ, &b_Track_ErrorDZ); fChain->SetBranchAddress("Track.Particle", Track_Particle, &b_Track_Particle); fChain->SetBranchAddress("Track.VertexIndex", Track_VertexIndex, &b_Track_VertexIndex); fChain->SetBranchAddress("Track_size", &Track_size, &b_Track_size); fChain->SetBranchAddress("Tower", &Tower_, &b_Tower_); fChain->SetBranchAddress("Tower.fUniqueID", Tower_fUniqueID, &b_Tower_fUniqueID); fChain->SetBranchAddress("Tower.fBits", Tower_fBits, &b_Tower_fBits); fChain->SetBranchAddress("Tower.ET", Tower_ET, &b_Tower_ET); fChain->SetBranchAddress("Tower.Eta", Tower_Eta, &b_Tower_Eta); fChain->SetBranchAddress("Tower.Phi", Tower_Phi, &b_Tower_Phi); fChain->SetBranchAddress("Tower.E", Tower_E, &b_Tower_E); fChain->SetBranchAddress("Tower.T", Tower_T, &b_Tower_T); fChain->SetBranchAddress("Tower.NTimeHits", Tower_NTimeHits, &b_Tower_NTimeHits); fChain->SetBranchAddress("Tower.Eem", Tower_Eem, &b_Tower_Eem); fChain->SetBranchAddress("Tower.Ehad", Tower_Ehad, &b_Tower_Ehad); fChain->SetBranchAddress("Tower.Edges[4]", Tower_Edges, &b_Tower_Edges); fChain->SetBranchAddress("Tower.Particles", Tower_Particles, &b_Tower_Particles); fChain->SetBranchAddress("Tower_size", &Tower_size, &b_Tower_size); fChain->SetBranchAddress("EFlowTrack", &EFlowTrack_, &b_EFlowTrack_); fChain->SetBranchAddress("EFlowTrack.fUniqueID", EFlowTrack_fUniqueID, &b_EFlowTrack_fUniqueID); fChain->SetBranchAddress("EFlowTrack.fBits", EFlowTrack_fBits, &b_EFlowTrack_fBits); fChain->SetBranchAddress("EFlowTrack.PID", EFlowTrack_PID, &b_EFlowTrack_PID); fChain->SetBranchAddress("EFlowTrack.Charge", EFlowTrack_Charge, &b_EFlowTrack_Charge); fChain->SetBranchAddress("EFlowTrack.P", EFlowTrack_P, &b_EFlowTrack_P); fChain->SetBranchAddress("EFlowTrack.PT", EFlowTrack_PT, &b_EFlowTrack_PT); fChain->SetBranchAddress("EFlowTrack.Eta", EFlowTrack_Eta, &b_EFlowTrack_Eta); fChain->SetBranchAddress("EFlowTrack.Phi", EFlowTrack_Phi, &b_EFlowTrack_Phi); fChain->SetBranchAddress("EFlowTrack.CtgTheta", EFlowTrack_CtgTheta, &b_EFlowTrack_CtgTheta); fChain->SetBranchAddress("EFlowTrack.EtaOuter", EFlowTrack_EtaOuter, &b_EFlowTrack_EtaOuter); fChain->SetBranchAddress("EFlowTrack.PhiOuter", EFlowTrack_PhiOuter, &b_EFlowTrack_PhiOuter); fChain->SetBranchAddress("EFlowTrack.T", EFlowTrack_T, &b_EFlowTrack_T); fChain->SetBranchAddress("EFlowTrack.X", EFlowTrack_X, &b_EFlowTrack_X); fChain->SetBranchAddress("EFlowTrack.Y", EFlowTrack_Y, &b_EFlowTrack_Y); fChain->SetBranchAddress("EFlowTrack.Z", EFlowTrack_Z, &b_EFlowTrack_Z); fChain->SetBranchAddress("EFlowTrack.TOuter", EFlowTrack_TOuter, &b_EFlowTrack_TOuter); fChain->SetBranchAddress("EFlowTrack.XOuter", EFlowTrack_XOuter, &b_EFlowTrack_XOuter); fChain->SetBranchAddress("EFlowTrack.YOuter", EFlowTrack_YOuter, &b_EFlowTrack_YOuter); fChain->SetBranchAddress("EFlowTrack.ZOuter", EFlowTrack_ZOuter, &b_EFlowTrack_ZOuter); fChain->SetBranchAddress("EFlowTrack.Xd", EFlowTrack_Xd, &b_EFlowTrack_Xd); fChain->SetBranchAddress("EFlowTrack.Yd", EFlowTrack_Yd, &b_EFlowTrack_Yd); fChain->SetBranchAddress("EFlowTrack.Zd", EFlowTrack_Zd, &b_EFlowTrack_Zd); fChain->SetBranchAddress("EFlowTrack.L", EFlowTrack_L, &b_EFlowTrack_L); fChain->SetBranchAddress("EFlowTrack.D0", EFlowTrack_D0, &b_EFlowTrack_D0); fChain->SetBranchAddress("EFlowTrack.DZ", EFlowTrack_DZ, &b_EFlowTrack_DZ); fChain->SetBranchAddress("EFlowTrack.ErrorP", EFlowTrack_ErrorP, &b_EFlowTrack_ErrorP); fChain->SetBranchAddress("EFlowTrack.ErrorPT", EFlowTrack_ErrorPT, &b_EFlowTrack_ErrorPT); fChain->SetBranchAddress("EFlowTrack.ErrorPhi", EFlowTrack_ErrorPhi, &b_EFlowTrack_ErrorPhi); fChain->SetBranchAddress("EFlowTrack.ErrorCtgTheta", EFlowTrack_ErrorCtgTheta, &b_EFlowTrack_ErrorCtgTheta); fChain->SetBranchAddress("EFlowTrack.ErrorT", EFlowTrack_ErrorT, &b_EFlowTrack_ErrorT); fChain->SetBranchAddress("EFlowTrack.ErrorD0", EFlowTrack_ErrorD0, &b_EFlowTrack_ErrorD0); fChain->SetBranchAddress("EFlowTrack.ErrorDZ", EFlowTrack_ErrorDZ, &b_EFlowTrack_ErrorDZ); fChain->SetBranchAddress("EFlowTrack.Particle", EFlowTrack_Particle, &b_EFlowTrack_Particle); fChain->SetBranchAddress("EFlowTrack.VertexIndex", EFlowTrack_VertexIndex, &b_EFlowTrack_VertexIndex); fChain->SetBranchAddress("EFlowTrack_size", &EFlowTrack_size, &b_EFlowTrack_size); fChain->SetBranchAddress("EFlowPhoton", &EFlowPhoton_, &b_EFlowPhoton_); fChain->SetBranchAddress("EFlowPhoton.fUniqueID", EFlowPhoton_fUniqueID, &b_EFlowPhoton_fUniqueID); fChain->SetBranchAddress("EFlowPhoton.fBits", EFlowPhoton_fBits, &b_EFlowPhoton_fBits); fChain->SetBranchAddress("EFlowPhoton.ET", EFlowPhoton_ET, &b_EFlowPhoton_ET); fChain->SetBranchAddress("EFlowPhoton.Eta", EFlowPhoton_Eta, &b_EFlowPhoton_Eta); fChain->SetBranchAddress("EFlowPhoton.Phi", EFlowPhoton_Phi, &b_EFlowPhoton_Phi); fChain->SetBranchAddress("EFlowPhoton.E", EFlowPhoton_E, &b_EFlowPhoton_E); fChain->SetBranchAddress("EFlowPhoton.T", EFlowPhoton_T, &b_EFlowPhoton_T); fChain->SetBranchAddress("EFlowPhoton.NTimeHits", EFlowPhoton_NTimeHits, &b_EFlowPhoton_NTimeHits); fChain->SetBranchAddress("EFlowPhoton.Eem", EFlowPhoton_Eem, &b_EFlowPhoton_Eem); fChain->SetBranchAddress("EFlowPhoton.Ehad", EFlowPhoton_Ehad, &b_EFlowPhoton_Ehad); fChain->SetBranchAddress("EFlowPhoton.Edges[4]", EFlowPhoton_Edges, &b_EFlowPhoton_Edges); fChain->SetBranchAddress("EFlowPhoton.Particles", EFlowPhoton_Particles, &b_EFlowPhoton_Particles); fChain->SetBranchAddress("EFlowPhoton_size", &EFlowPhoton_size, &b_EFlowPhoton_size); fChain->SetBranchAddress("EFlowNeutralHadron", &EFlowNeutralHadron_, &b_EFlowNeutralHadron_); fChain->SetBranchAddress("EFlowNeutralHadron.fUniqueID", EFlowNeutralHadron_fUniqueID, &b_EFlowNeutralHadron_fUniqueID); fChain->SetBranchAddress("EFlowNeutralHadron.fBits", EFlowNeutralHadron_fBits, &b_EFlowNeutralHadron_fBits); fChain->SetBranchAddress("EFlowNeutralHadron.ET", EFlowNeutralHadron_ET, &b_EFlowNeutralHadron_ET); fChain->SetBranchAddress("EFlowNeutralHadron.Eta", EFlowNeutralHadron_Eta, &b_EFlowNeutralHadron_Eta); fChain->SetBranchAddress("EFlowNeutralHadron.Phi", EFlowNeutralHadron_Phi, &b_EFlowNeutralHadron_Phi); fChain->SetBranchAddress("EFlowNeutralHadron.E", EFlowNeutralHadron_E, &b_EFlowNeutralHadron_E); fChain->SetBranchAddress("EFlowNeutralHadron.T", EFlowNeutralHadron_T, &b_EFlowNeutralHadron_T); fChain->SetBranchAddress("EFlowNeutralHadron.NTimeHits", EFlowNeutralHadron_NTimeHits, &b_EFlowNeutralHadron_NTimeHits); fChain->SetBranchAddress("EFlowNeutralHadron.Eem", EFlowNeutralHadron_Eem, &b_EFlowNeutralHadron_Eem); fChain->SetBranchAddress("EFlowNeutralHadron.Ehad", EFlowNeutralHadron_Ehad, &b_EFlowNeutralHadron_Ehad); fChain->SetBranchAddress("EFlowNeutralHadron.Edges[4]", EFlowNeutralHadron_Edges, &b_EFlowNeutralHadron_Edges); fChain->SetBranchAddress("EFlowNeutralHadron.Particles", EFlowNeutralHadron_Particles, &b_EFlowNeutralHadron_Particles); fChain->SetBranchAddress("EFlowNeutralHadron_size", &EFlowNeutralHadron_size, &b_EFlowNeutralHadron_size); fChain->SetBranchAddress("GenJet", &GenJet_, &b_GenJet_); fChain->SetBranchAddress("GenJet.fUniqueID", GenJet_fUniqueID, &b_GenJet_fUniqueID); fChain->SetBranchAddress("GenJet.fBits", GenJet_fBits, &b_GenJet_fBits); fChain->SetBranchAddress("GenJet.PT", GenJet_PT, &b_GenJet_PT); fChain->SetBranchAddress("GenJet.Eta", GenJet_Eta, &b_GenJet_Eta); fChain->SetBranchAddress("GenJet.Phi", GenJet_Phi, &b_GenJet_Phi); fChain->SetBranchAddress("GenJet.T", GenJet_T, &b_GenJet_T); fChain->SetBranchAddress("GenJet.Mass", GenJet_Mass, &b_GenJet_Mass); fChain->SetBranchAddress("GenJet.DeltaEta", GenJet_DeltaEta, &b_GenJet_DeltaEta); fChain->SetBranchAddress("GenJet.DeltaPhi", GenJet_DeltaPhi, &b_GenJet_DeltaPhi); fChain->SetBranchAddress("GenJet.Flavor", GenJet_Flavor, &b_GenJet_Flavor); fChain->SetBranchAddress("GenJet.FlavorAlgo", GenJet_FlavorAlgo, &b_GenJet_FlavorAlgo); fChain->SetBranchAddress("GenJet.FlavorPhys", GenJet_FlavorPhys, &b_GenJet_FlavorPhys); fChain->SetBranchAddress("GenJet.BTag", GenJet_BTag, &b_GenJet_BTag); fChain->SetBranchAddress("GenJet.BTagAlgo", GenJet_BTagAlgo, &b_GenJet_BTagAlgo); fChain->SetBranchAddress("GenJet.BTagPhys", GenJet_BTagPhys, &b_GenJet_BTagPhys); fChain->SetBranchAddress("GenJet.TauTag", GenJet_TauTag, &b_GenJet_TauTag); fChain->SetBranchAddress("GenJet.Charge", GenJet_Charge, &b_GenJet_Charge); fChain->SetBranchAddress("GenJet.EhadOverEem", GenJet_EhadOverEem, &b_GenJet_EhadOverEem); fChain->SetBranchAddress("GenJet.NCharged", GenJet_NCharged, &b_GenJet_NCharged); fChain->SetBranchAddress("GenJet.NNeutrals", GenJet_NNeutrals, &b_GenJet_NNeutrals); fChain->SetBranchAddress("GenJet.Beta", GenJet_Beta, &b_GenJet_Beta); fChain->SetBranchAddress("GenJet.BetaStar", GenJet_BetaStar, &b_GenJet_BetaStar); fChain->SetBranchAddress("GenJet.MeanSqDeltaR", GenJet_MeanSqDeltaR, &b_GenJet_MeanSqDeltaR); fChain->SetBranchAddress("GenJet.PTD", GenJet_PTD, &b_GenJet_PTD); fChain->SetBranchAddress("GenJet.FracPt[5]", GenJet_FracPt, &b_GenJet_FracPt); fChain->SetBranchAddress("GenJet.Tau[5]", GenJet_Tau, &b_GenJet_Tau); fChain->SetBranchAddress("GenJet.TrimmedP4[5]", GenJet_TrimmedP4, &b_GenJet_TrimmedP4); fChain->SetBranchAddress("GenJet.PrunedP4[5]", GenJet_PrunedP4, &b_GenJet_PrunedP4); fChain->SetBranchAddress("GenJet.SoftDroppedP4[5]", GenJet_SoftDroppedP4, &b_GenJet_SoftDroppedP4); fChain->SetBranchAddress("GenJet.NSubJetsTrimmed", GenJet_NSubJetsTrimmed, &b_GenJet_NSubJetsTrimmed); fChain->SetBranchAddress("GenJet.NSubJetsPruned", GenJet_NSubJetsPruned, &b_GenJet_NSubJetsPruned); fChain->SetBranchAddress("GenJet.NSubJetsSoftDropped", GenJet_NSubJetsSoftDropped, &b_GenJet_NSubJetsSoftDropped); fChain->SetBranchAddress("GenJet.Constituents", GenJet_Constituents, &b_GenJet_Constituents); fChain->SetBranchAddress("GenJet.Particles", GenJet_Particles, &b_GenJet_Particles); fChain->SetBranchAddress("GenJet.Area", GenJet_Area, &b_GenJet_Area); fChain->SetBranchAddress("GenJet_size", &GenJet_size, &b_GenJet_size); fChain->SetBranchAddress("GenMissingET", &GenMissingET_, &b_GenMissingET_); fChain->SetBranchAddress("GenMissingET.fUniqueID", GenMissingET_fUniqueID, &b_GenMissingET_fUniqueID); fChain->SetBranchAddress("GenMissingET.fBits", GenMissingET_fBits, &b_GenMissingET_fBits); fChain->SetBranchAddress("GenMissingET.MET", GenMissingET_MET, &b_GenMissingET_MET); fChain->SetBranchAddress("GenMissingET.Eta", GenMissingET_Eta, &b_GenMissingET_Eta); fChain->SetBranchAddress("GenMissingET.Phi", GenMissingET_Phi, &b_GenMissingET_Phi); fChain->SetBranchAddress("GenMissingET_size", &GenMissingET_size, &b_GenMissingET_size); fChain->SetBranchAddress("Jet", &Jet_, &b_Jet_); fChain->SetBranchAddress("Jet.fUniqueID", Jet_fUniqueID, &b_Jet_fUniqueID); fChain->SetBranchAddress("Jet.fBits", Jet_fBits, &b_Jet_fBits); fChain->SetBranchAddress("Jet.PT", Jet_PT, &b_Jet_PT); fChain->SetBranchAddress("Jet.Eta", Jet_Eta, &b_Jet_Eta); fChain->SetBranchAddress("Jet.Phi", Jet_Phi, &b_Jet_Phi); fChain->SetBranchAddress("Jet.T", Jet_T, &b_Jet_T); fChain->SetBranchAddress("Jet.Mass", Jet_Mass, &b_Jet_Mass); fChain->SetBranchAddress("Jet.DeltaEta", Jet_DeltaEta, &b_Jet_DeltaEta); fChain->SetBranchAddress("Jet.DeltaPhi", Jet_DeltaPhi, &b_Jet_DeltaPhi); fChain->SetBranchAddress("Jet.Flavor", Jet_Flavor, &b_Jet_Flavor); fChain->SetBranchAddress("Jet.FlavorAlgo", Jet_FlavorAlgo, &b_Jet_FlavorAlgo); fChain->SetBranchAddress("Jet.FlavorPhys", Jet_FlavorPhys, &b_Jet_FlavorPhys); fChain->SetBranchAddress("Jet.BTag", Jet_BTag, &b_Jet_BTag); fChain->SetBranchAddress("Jet.BTagAlgo", Jet_BTagAlgo, &b_Jet_BTagAlgo); fChain->SetBranchAddress("Jet.BTagPhys", Jet_BTagPhys, &b_Jet_BTagPhys); fChain->SetBranchAddress("Jet.TauTag", Jet_TauTag, &b_Jet_TauTag); fChain->SetBranchAddress("Jet.Charge", Jet_Charge, &b_Jet_Charge); fChain->SetBranchAddress("Jet.EhadOverEem", Jet_EhadOverEem, &b_Jet_EhadOverEem); fChain->SetBranchAddress("Jet.NCharged", Jet_NCharged, &b_Jet_NCharged); fChain->SetBranchAddress("Jet.NNeutrals", Jet_NNeutrals, &b_Jet_NNeutrals); fChain->SetBranchAddress("Jet.Beta", Jet_Beta, &b_Jet_Beta); fChain->SetBranchAddress("Jet.BetaStar", Jet_BetaStar, &b_Jet_BetaStar); fChain->SetBranchAddress("Jet.MeanSqDeltaR", Jet_MeanSqDeltaR, &b_Jet_MeanSqDeltaR); fChain->SetBranchAddress("Jet.PTD", Jet_PTD, &b_Jet_PTD); fChain->SetBranchAddress("Jet.FracPt[5]", Jet_FracPt, &b_Jet_FracPt); fChain->SetBranchAddress("Jet.Tau[5]", Jet_Tau, &b_Jet_Tau); fChain->SetBranchAddress("Jet.TrimmedP4[5]", Jet_TrimmedP4, &b_Jet_TrimmedP4); fChain->SetBranchAddress("Jet.PrunedP4[5]", Jet_PrunedP4, &b_Jet_PrunedP4); fChain->SetBranchAddress("Jet.SoftDroppedP4[5]", Jet_SoftDroppedP4, &b_Jet_SoftDroppedP4); fChain->SetBranchAddress("Jet.NSubJetsTrimmed", Jet_NSubJetsTrimmed, &b_Jet_NSubJetsTrimmed); fChain->SetBranchAddress("Jet.NSubJetsPruned", Jet_NSubJetsPruned, &b_Jet_NSubJetsPruned); fChain->SetBranchAddress("Jet.NSubJetsSoftDropped", Jet_NSubJetsSoftDropped, &b_Jet_NSubJetsSoftDropped); fChain->SetBranchAddress("Jet.Constituents", Jet_Constituents, &b_Jet_Constituents); fChain->SetBranchAddress("Jet.Particles", Jet_Particles, &b_Jet_Particles); fChain->SetBranchAddress("Jet.Area", Jet_Area, &b_Jet_Area); fChain->SetBranchAddress("Jet_size", &Jet_size, &b_Jet_size); fChain->SetBranchAddress("Electron", &Electron_, &b_Electron_); fChain->SetBranchAddress("Electron.fUniqueID", Electron_fUniqueID, &b_Electron_fUniqueID); fChain->SetBranchAddress("Electron.fBits", Electron_fBits, &b_Electron_fBits); fChain->SetBranchAddress("Electron.PT", Electron_PT, &b_Electron_PT); fChain->SetBranchAddress("Electron.Eta", Electron_Eta, &b_Electron_Eta); fChain->SetBranchAddress("Electron.Phi", Electron_Phi, &b_Electron_Phi); fChain->SetBranchAddress("Electron.T", Electron_T, &b_Electron_T); fChain->SetBranchAddress("Electron.Charge", Electron_Charge, &b_Electron_Charge); fChain->SetBranchAddress("Electron.EhadOverEem", Electron_EhadOverEem, &b_Electron_EhadOverEem); fChain->SetBranchAddress("Electron.Particle", Electron_Particle, &b_Electron_Particle); fChain->SetBranchAddress("Electron.IsolationVar", Electron_IsolationVar, &b_Electron_IsolationVar); fChain->SetBranchAddress("Electron.IsolationVarRhoCorr", Electron_IsolationVarRhoCorr, &b_Electron_IsolationVarRhoCorr); fChain->SetBranchAddress("Electron.SumPtCharged", Electron_SumPtCharged, &b_Electron_SumPtCharged); fChain->SetBranchAddress("Electron.SumPtNeutral", Electron_SumPtNeutral, &b_Electron_SumPtNeutral); fChain->SetBranchAddress("Electron.SumPtChargedPU", Electron_SumPtChargedPU, &b_Electron_SumPtChargedPU); fChain->SetBranchAddress("Electron.SumPt", Electron_SumPt, &b_Electron_SumPt); fChain->SetBranchAddress("Electron_size", &Electron_size, &b_Electron_size); fChain->SetBranchAddress("Photon", &Photon_, &b_Photon_); fChain->SetBranchAddress("Photon.fUniqueID", Photon_fUniqueID, &b_Photon_fUniqueID); fChain->SetBranchAddress("Photon.fBits", Photon_fBits, &b_Photon_fBits); fChain->SetBranchAddress("Photon.PT", Photon_PT, &b_Photon_PT); fChain->SetBranchAddress("Photon.Eta", Photon_Eta, &b_Photon_Eta); fChain->SetBranchAddress("Photon.Phi", Photon_Phi, &b_Photon_Phi); fChain->SetBranchAddress("Photon.E", Photon_E, &b_Photon_E); fChain->SetBranchAddress("Photon.T", Photon_T, &b_Photon_T); fChain->SetBranchAddress("Photon.EhadOverEem", Photon_EhadOverEem, &b_Photon_EhadOverEem); fChain->SetBranchAddress("Photon.Particles", Photon_Particles, &b_Photon_Particles); fChain->SetBranchAddress("Photon.IsolationVar", Photon_IsolationVar, &b_Photon_IsolationVar); fChain->SetBranchAddress("Photon.IsolationVarRhoCorr", Photon_IsolationVarRhoCorr, &b_Photon_IsolationVarRhoCorr); fChain->SetBranchAddress("Photon.SumPtCharged", Photon_SumPtCharged, &b_Photon_SumPtCharged); fChain->SetBranchAddress("Photon.SumPtNeutral", Photon_SumPtNeutral, &b_Photon_SumPtNeutral); fChain->SetBranchAddress("Photon.SumPtChargedPU", Photon_SumPtChargedPU, &b_Photon_SumPtChargedPU); fChain->SetBranchAddress("Photon.SumPt", Photon_SumPt, &b_Photon_SumPt); fChain->SetBranchAddress("Photon_size", &Photon_size, &b_Photon_size); fChain->SetBranchAddress("Muon", &Muon_, &b_Muon_); fChain->SetBranchAddress("Muon.fUniqueID", Muon_fUniqueID, &b_Muon_fUniqueID); fChain->SetBranchAddress("Muon.fBits", Muon_fBits, &b_Muon_fBits); fChain->SetBranchAddress("Muon.PT", Muon_PT, &b_Muon_PT); fChain->SetBranchAddress("Muon.Eta", Muon_Eta, &b_Muon_Eta); fChain->SetBranchAddress("Muon.Phi", Muon_Phi, &b_Muon_Phi); fChain->SetBranchAddress("Muon.T", Muon_T, &b_Muon_T); fChain->SetBranchAddress("Muon.Charge", Muon_Charge, &b_Muon_Charge); fChain->SetBranchAddress("Muon.Particle", Muon_Particle, &b_Muon_Particle); fChain->SetBranchAddress("Muon.IsolationVar", Muon_IsolationVar, &b_Muon_IsolationVar); fChain->SetBranchAddress("Muon.IsolationVarRhoCorr", Muon_IsolationVarRhoCorr, &b_Muon_IsolationVarRhoCorr); fChain->SetBranchAddress("Muon.SumPtCharged", Muon_SumPtCharged, &b_Muon_SumPtCharged); fChain->SetBranchAddress("Muon.SumPtNeutral", Muon_SumPtNeutral, &b_Muon_SumPtNeutral); fChain->SetBranchAddress("Muon.SumPtChargedPU", Muon_SumPtChargedPU, &b_Muon_SumPtChargedPU); fChain->SetBranchAddress("Muon.SumPt", Muon_SumPt, &b_Muon_SumPt); fChain->SetBranchAddress("Muon_size", &Muon_size, &b_Muon_size); fChain->SetBranchAddress("FatJet", &FatJet_, &b_FatJet_); fChain->SetBranchAddress("FatJet.fUniqueID", FatJet_fUniqueID, &b_FatJet_fUniqueID); fChain->SetBranchAddress("FatJet.fBits", FatJet_fBits, &b_FatJet_fBits); fChain->SetBranchAddress("FatJet.PT", FatJet_PT, &b_FatJet_PT); fChain->SetBranchAddress("FatJet.Eta", FatJet_Eta, &b_FatJet_Eta); fChain->SetBranchAddress("FatJet.Phi", FatJet_Phi, &b_FatJet_Phi); fChain->SetBranchAddress("FatJet.T", FatJet_T, &b_FatJet_T); fChain->SetBranchAddress("FatJet.Mass", FatJet_Mass, &b_FatJet_Mass); fChain->SetBranchAddress("FatJet.DeltaEta", FatJet_DeltaEta, &b_FatJet_DeltaEta); fChain->SetBranchAddress("FatJet.DeltaPhi", FatJet_DeltaPhi, &b_FatJet_DeltaPhi); fChain->SetBranchAddress("FatJet.Flavor", FatJet_Flavor, &b_FatJet_Flavor); fChain->SetBranchAddress("FatJet.FlavorAlgo", FatJet_FlavorAlgo, &b_FatJet_FlavorAlgo); fChain->SetBranchAddress("FatJet.FlavorPhys", FatJet_FlavorPhys, &b_FatJet_FlavorPhys); fChain->SetBranchAddress("FatJet.BTag", FatJet_BTag, &b_FatJet_BTag); fChain->SetBranchAddress("FatJet.BTagAlgo", FatJet_BTagAlgo, &b_FatJet_BTagAlgo); fChain->SetBranchAddress("FatJet.BTagPhys", FatJet_BTagPhys, &b_FatJet_BTagPhys); fChain->SetBranchAddress("FatJet.TauTag", FatJet_TauTag, &b_FatJet_TauTag); fChain->SetBranchAddress("FatJet.Charge", FatJet_Charge, &b_FatJet_Charge); fChain->SetBranchAddress("FatJet.EhadOverEem", FatJet_EhadOverEem, &b_FatJet_EhadOverEem); fChain->SetBranchAddress("FatJet.NCharged", FatJet_NCharged, &b_FatJet_NCharged); fChain->SetBranchAddress("FatJet.NNeutrals", FatJet_NNeutrals, &b_FatJet_NNeutrals); fChain->SetBranchAddress("FatJet.Beta", FatJet_Beta, &b_FatJet_Beta); fChain->SetBranchAddress("FatJet.BetaStar", FatJet_BetaStar, &b_FatJet_BetaStar); fChain->SetBranchAddress("FatJet.MeanSqDeltaR", FatJet_MeanSqDeltaR, &b_FatJet_MeanSqDeltaR); fChain->SetBranchAddress("FatJet.PTD", FatJet_PTD, &b_FatJet_PTD); fChain->SetBranchAddress("FatJet.FracPt[5]", FatJet_FracPt, &b_FatJet_FracPt); fChain->SetBranchAddress("FatJet.Tau[5]", FatJet_Tau, &b_FatJet_Tau); fChain->SetBranchAddress("FatJet.TrimmedP4[5]", FatJet_TrimmedP4, &b_FatJet_TrimmedP4); fChain->SetBranchAddress("FatJet.PrunedP4[5]", FatJet_PrunedP4, &b_FatJet_PrunedP4); fChain->SetBranchAddress("FatJet.SoftDroppedP4[5]", FatJet_SoftDroppedP4, &b_FatJet_SoftDroppedP4); fChain->SetBranchAddress("FatJet.NSubJetsTrimmed", FatJet_NSubJetsTrimmed, &b_FatJet_NSubJetsTrimmed); fChain->SetBranchAddress("FatJet.NSubJetsPruned", FatJet_NSubJetsPruned, &b_FatJet_NSubJetsPruned); fChain->SetBranchAddress("FatJet.NSubJetsSoftDropped", FatJet_NSubJetsSoftDropped, &b_FatJet_NSubJetsSoftDropped); fChain->SetBranchAddress("FatJet.Constituents", FatJet_Constituents, &b_FatJet_Constituents); fChain->SetBranchAddress("FatJet.Particles", FatJet_Particles, &b_FatJet_Particles); fChain->SetBranchAddress("FatJet.Area", FatJet_Area, &b_FatJet_Area); fChain->SetBranchAddress("FatJet_size", &FatJet_size, &b_FatJet_size); fChain->SetBranchAddress("MissingET", &MissingET_, &b_MissingET_); fChain->SetBranchAddress("MissingET.fUniqueID", MissingET_fUniqueID, &b_MissingET_fUniqueID); fChain->SetBranchAddress("MissingET.fBits", MissingET_fBits, &b_MissingET_fBits); fChain->SetBranchAddress("MissingET.MET", MissingET_MET, &b_MissingET_MET); fChain->SetBranchAddress("MissingET.Eta", MissingET_Eta, &b_MissingET_Eta); fChain->SetBranchAddress("MissingET.Phi", MissingET_Phi, &b_MissingET_Phi); fChain->SetBranchAddress("MissingET_size", &MissingET_size, &b_MissingET_size); fChain->SetBranchAddress("ScalarHT", &ScalarHT_, &b_ScalarHT_); fChain->SetBranchAddress("ScalarHT.fUniqueID", ScalarHT_fUniqueID, &b_ScalarHT_fUniqueID); fChain->SetBranchAddress("ScalarHT.fBits", ScalarHT_fBits, &b_ScalarHT_fBits); fChain->SetBranchAddress("ScalarHT.HT", ScalarHT_HT, &b_ScalarHT_HT); fChain->SetBranchAddress("ScalarHT_size", &ScalarHT_size, &b_ScalarHT_size); Notify(); } Bool_t Run07Signal::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return kTRUE; } void Run07Signal::Show(Long64_t entry) { // Print contents of entry. // If entry is not specified, print current entry if (!fChain) return; fChain->Show(entry); } Int_t Run07Signal::Cut(Long64_t entry) { // This function may be called from Loop. // returns 1 if entry is accepted. // returns -1 otherwise. return 1; } #endif // #ifdef Run07Signal_cxx
a7517968854d47cde5013b1da37d448bf4d919ea
80b9d1acd4268f4abc911ecd7ee289eae6812e97
/lib/AFE_APIs/AFE-API-MQTT-Domoticz.cpp
6f73ec571995b6d9b343c9ab28858ad5efb15238
[ "MIT" ]
permissive
ziyo98/AFE-Firmware
c12138e2b73e99dcb4bc832da758031cbff8f4af
6676c8d5e5aae3675a1500a5b3ddfb9b36543d22
refs/heads/master
2020-12-29T08:01:55.061894
2020-01-26T18:03:11
2020-01-26T18:03:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,956
cpp
/* AFE Firmware for smart home devices, Website: https://afe.smartnydom.pl/ */ #include "AFE-API-MQTT-Domoticz.h" #ifdef AFE_CONFIG_API_DOMOTICZ_ENABLED AFEAPIMQTTDomoticz::AFEAPIMQTTDomoticz() : AFEAPI(){}; #ifdef AFE_CONFIG_HARDWARE_LED void AFEAPIMQTTDomoticz::begin(AFEDataAccess *Data, AFEDevice *Device, AFELED *Led) { AFEAPI::begin(Data, Device, Led); } #else void AFEAPIMQTTDomoticz::begin(AFEDataAccess *Data, AFEDevice *Device) { AFEAPI::begin(Data, Device); } #endif // AFE_CONFIG_HARDWARE_LED void AFEAPIMQTTDomoticz::listener() { if (Mqtt.listener()) { #ifdef AFE_CONFIG_API_PROCESS_REQUESTS processRequest(); #endif } } void AFEAPIMQTTDomoticz::synchronize() { #ifdef DEBUG Serial << endl << "INFO: Sending current device state to MQTT Broker ..."; #endif /* Synchronize: Relay */ #ifdef AFE_CONFIG_HARDWARE_RELAY for (uint8_t i = 0; i < _Device->configuration.noOfRelays; i++) { publishRelayState(i); } #endif /* Synchronize: Switch */ #ifdef AFE_CONFIG_HARDWARE_SWITCH for (uint8_t i = 0; i < _Device->configuration.noOfSwitches; i++) { publishSwitchState(i); } #endif #ifdef DEBUG Serial << endl << "INFO: Sending message: device is connected ..."; #endif if (Mqtt.configuration.lwt.idx > 0) { char lwtMessage[100]; sprintf(lwtMessage, "{\"command\":\"udevice\",\"idx\":%d,\"nvalue\":1,\"svalue\":\"%s\"," "\"Battery\":100,\"RSSI\":%d}", Mqtt.configuration.lwt.idx, L_CONNECTED, getRSSI()); Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, lwtMessage); } } void AFEAPIMQTTDomoticz::subscribe() { #ifdef DEBUG Serial << endl << "INFO: Subsribing to MQTT Topics ..."; #endif Mqtt.subscribe(AFE_CONFIG_API_DOMOTICZ_TOPIC_OUT); } #ifdef AFE_CONFIG_API_PROCESS_REQUESTS DOMOTICZ_MQTT_COMMAND AFEAPIMQTTDomoticz::getCommand() { DOMOTICZ_MQTT_COMMAND command; char json[Mqtt.message.length]; for (uint16_t i = 0; i < Mqtt.message.length; i++) { json[i] = Mqtt.message.content[i]; } StaticJsonBuffer<AFE_CONFIG_API_JSON_BUFFER_SIZE> jsonBuffer; JsonObject &root = jsonBuffer.parseObject(json); if (root.success()) { command.domoticz.idx = root["idx"]; command.nvalue = root["nvalue"]; #ifdef DEBUG Serial << endl << "INFO: Domoticz: Got command: " << command.nvalue << ", IDX: " << command.domoticz.idx; #endif } #ifdef DEBUG else { Serial << endl << "ERROR: Domoticz: Problem with JSON pharsing"; } #endif return command; } #endif #ifdef AFE_CONFIG_API_PROCESS_REQUESTS void AFEAPIMQTTDomoticz::processRequest() { DOMOTICZ_MQTT_COMMAND command = getCommand(); if (command.domoticz.idx > 0 && idxForProcessing(command.domoticz.idx)) { #ifdef DEBUG uint8_t _found = false; #endif for (uint8_t i = 0; i < AFE_CONFIG_API_DOMOTICZ_IDX_CACHE_LENGTH; i++) { if (idxCache[i].domoticz.idx == command.domoticz.idx) { switch (idxCache[i].type) { /* Processing Relay command*/ case AFE_DOMOTICZ_DEVICE_RELAY: #ifdef DEBUG Serial << endl << "INFO: Domoticz: Found Relay ID: " << idxCache[i].id; _found = true; #endif if (_Relay[idxCache[i].id]->get() != (byte)command.nvalue) { if (command.nvalue == AFE_SWITCH_OFF) { _Relay[i]->off(); } else { _Relay[i]->on(); } publishRelayState(i); } #ifdef DEBUG else { Serial << endl << "WARN: Domoticz: Same state. No change needed"; } #endif break; /* Processing Unknown command*/ default: #ifdef DEBUG Serial << endl << "ERROR: Domoticz: Device type not handled. Type: " << idxCache[i].type; #endif break; } } } #ifdef DEBUG if (!_found) { Serial << endl << "WARN: Domoticz: No item found with IDX: " << command.domoticz.idx; } #endif } #ifdef DEBUG else { Serial << endl << (command.domoticz.idx > 0 ? "INFO: Domoticz: Bypassing IDX: " : " - no IDX: ") << command.domoticz.idx; } #endif } #endif // AFE_CONFIG_API_PROCESS_REQUESTS #ifdef AFE_CONFIG_API_PROCESS_REQUESTS boolean AFEAPIMQTTDomoticz::idxForProcessing(uint32_t idx) { boolean _ret = true; if (idx == bypassProcessing.idx) { bypassProcessing.idx = 0; _ret = false; } return _ret; } #endif // AFE_CONFIG_API_PROCESS_REQUESTS #ifdef AFE_CONFIG_HARDWARE_RELAY void AFEAPIMQTTDomoticz::addClass(AFERelay *Relay) { AFEAPI::addClass(Relay); #ifdef DEBUG Serial << endl << "INFO: Caching IDXs for Relays"; #endif uint8_t index = 0; for (uint8_t i = 0; i < _Device->configuration.noOfRelays; i++) { if (_Relay[i]->configuration.domoticz.idx > 0) { idxCache[index].domoticz.idx = _Relay[i]->configuration.domoticz.idx; idxCache[index].id = i; idxCache[index].type = AFE_DOMOTICZ_DEVICE_RELAY; #ifdef DEBUG Serial << endl << " - added IDX: " << idxCache[index].domoticz.idx; #endif index++; } #ifdef DEBUG else { Serial << endl << " - IDX not set"; } #endif } } #endif // AFE_CONFIG_HARDWARE_RELAY #ifdef AFE_CONFIG_API_PROCESS_REQUESTS boolean AFEAPIMQTTDomoticz::publishRelayState(uint8_t id) { boolean publishStatus = false; if (enabled && _Relay[id]->configuration.domoticz.idx > 0) { char json[AFE_CONFIG_API_JSON_SWITCH_COMMAND_LENGTH]; generateSwitchMessage(json, _Relay[id]->configuration.domoticz.idx, _Relay[id]->get()); publishStatus = Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); bypassProcessing.idx = _Relay[id]->configuration.domoticz.idx; } return publishStatus; } #endif // AFE_CONFIG_API_PROCESS_REQUESTS #ifdef AFE_CONFIG_HARDWARE_SWITCH void AFEAPIMQTTDomoticz::addClass(AFESwitch *Switch) { AFEAPI::addClass(Switch); } #endif // AFE_CONFIG_HARDWARE_SWITCH #ifdef AFE_CONFIG_HARDWARE_SWITCH boolean AFEAPIMQTTDomoticz::publishSwitchState(uint8_t id) { boolean publishStatus = false; if (enabled && _Switch[id]->configuration.domoticz.idx) { char json[AFE_CONFIG_API_JSON_SWITCH_COMMAND_LENGTH]; generateSwitchMessage(json, _Switch[id]->configuration.domoticz.idx, _Switch[id]->getPhisicalState() == 1 ? AFE_SWITCH_OFF : AFE_SWITCH_ON); publishStatus = Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); } return publishStatus; } #endif // AFE_CONFIG_HARDWARE_SWITCH #ifdef AFE_CONFIG_HARDWARE_ADC_VCC void AFEAPIMQTTDomoticz::addClass(AFEAnalogInput *Analog) { AFEAPI::addClass(Analog); } #endif #ifdef AFE_CONFIG_HARDWARE_ADC_VCC void AFEAPIMQTTDomoticz::publishADCValues() { if (enabled) { char json[AFE_CONFIG_API_JSON_DEVICE_COMMAND_LENGTH]; char value[20]; if (_AnalogInput->configuration.domoticz.percent > 0) { sprintf(value, "%-.2f", _AnalogInput->data.percent); generateDeviceValue(json, _AnalogInput->configuration.domoticz.percent, value); Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); } if (_AnalogInput->configuration.domoticz.voltage > 0) { sprintf(value, "%-.4f", _AnalogInput->data.voltage); generateDeviceValue(json, _AnalogInput->configuration.domoticz.voltage, value); Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); } if (_AnalogInput->configuration.domoticz.voltageCalculated > 0) { sprintf(value, "%-.4f", _AnalogInput->data.voltageCalculated); generateDeviceValue( json, _AnalogInput->configuration.domoticz.voltageCalculated, value); Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); } if (_AnalogInput->configuration.domoticz.raw > 0) { sprintf(value, "%-d", _AnalogInput->data.raw); generateDeviceValue(json, _AnalogInput->configuration.domoticz.raw, value); Mqtt.publish(AFE_CONFIG_API_DOMOTICZ_TOPIC_IN, json); } } } #endif void AFEAPIMQTTDomoticz::generateSwitchMessage(char *json, uint32_t idx, boolean state) { sprintf(json, "{\"command\":\"switchlight\",\"idx\":%d,\"switchcmd\":\"%s\"}", idx, state ? "On" : "Off"); } void AFEAPIMQTTDomoticz::generateDeviceValue(char *json, uint32_t idx, char *value) { sprintf(json, "{\"command\":\"udevice\",\"idx\":%d,\"nvalue\":0,\"svalue\":\"%s\"}", idx, value); } uint8_t AFEAPIMQTTDomoticz::getRSSI() { uint8_t _ret; long current = WiFi.RSSI(); if (current > -50) { _ret = 10; } else if (current < -98) { _ret = 0; } else { _ret = ((current + 97) / 5) + 1; } return _ret; } #endif // AFE_CONFIG_API_DOMOTICZ_ENABLED
bf2d315235dd9751ca0e8a5641e1506e0a5f8584
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5744014401732608_1/C++/yuukiAsuna/practice.cpp
f11741392c4f8b8d90fe06e26755001f71ff59ab
[]
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
1,205
cpp
#include <bits/stdc++.h> #define PB push_back #define FT first #define SD second #define MP make_pair #define INF 0x3f3f3f3f using namespace std; typedef long long LL; typedef unsigned long long ULL; typedef pair<int,int> P; const int N = 55,MOD = 7+1e9; int G[N][N]; int main() { freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); int T, ca = 0; scanf("%d", &T); while(T --) { int n; LL m; scanf("%d%lld", &n, &m); LL MAX = 1LL<<(n-2); printf("Case #%d: ", ++ca); if(m > MAX) { puts("IMPOSSIBLE"); continue; } memset(G, 0, sizeof G); puts("POSSIBLE"); m --, G[1][n] = 1; for(int i = 1;i <= n;i ++) { for(int j = i + 1;j < n;j ++) G[i][j] = 1; } for(int i = 2;i < n;i ++) { if((m&1LL) != 0) { G[i][n] = 1; } m >>= 1; } for(int i = 1;i <= n;i ++) { for(int j = 1;j <= n;j ++) printf("%d", G[i][j]); printf("\n"); } } return 0; }
e36b465fa7d87896093073eb0241a73f25764322
66ecd19c3d9f442431874e2d006eab4480d72c96
/src/keystore.h
2a3e3bd052f06ea6437ac20ffe488004ce04caee
[ "MIT" ]
permissive
altbet/abet
a9b4c35a3c167ab855dbc05b4e321166827ce757
f0b6ea8251108bc604524f62cd9e4c3bd3077978
refs/heads/master
2020-11-27T12:53:32.343050
2020-07-03T13:33:39
2020-07-03T13:33:39
178,851,690
10
21
MIT
2019-06-24T22:51:45
2019-04-01T11:47:09
C++
UTF-8
C++
false
false
3,425
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2017-2018 The PIVX developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEYSTORE_H #define BITCOIN_KEYSTORE_H #include "key.h" #include "pubkey.h" #include "sync.h" #include <boost/signals2/signal.hpp> class CScript; class CScriptID; /** A virtual base class for key stores */ class CKeyStore { protected: mutable CCriticalSection cs_KeyStore; public: virtual ~CKeyStore() {} //! Add a key to the store. virtual bool AddKeyPubKey(const CKey& key, const CPubKey& pubkey) = 0; virtual bool AddKey(const CKey& key); //! Check whether a key corresponding to a given address is present in the store. virtual bool HaveKey(const CKeyID& address) const = 0; virtual bool GetKey(const CKeyID& address, CKey& keyOut) const = 0; virtual void GetKeys(std::set<CKeyID>& setAddress) const = 0; virtual bool GetPubKey(const CKeyID& address, CPubKey& vchPubKeyOut) const; //! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki virtual bool AddCScript(const CScript& redeemScript) = 0; virtual bool HaveCScript(const CScriptID& hash) const = 0; virtual bool GetCScript(const CScriptID& hash, CScript& redeemScriptOut) const = 0; //! Support for Watch-only addresses virtual bool AddWatchOnly(const CScript& dest) = 0; virtual bool RemoveWatchOnly(const CScript& dest) = 0; virtual bool HaveWatchOnly(const CScript& dest) const = 0; virtual bool HaveWatchOnly() const = 0; //! Support for MultiSig addresses virtual bool AddMultiSig(const CScript& dest) = 0; virtual bool RemoveMultiSig(const CScript& dest) = 0; virtual bool HaveMultiSig(const CScript& dest) const = 0; virtual bool HaveMultiSig() const = 0; }; typedef std::map<CKeyID, CKey> KeyMap; typedef std::map<CScriptID, CScript> ScriptMap; typedef std::set<CScript> WatchOnlySet; typedef std::set<CScript> MultiSigScriptSet; /** Basic key store, that keeps keys in an address->secret map */ class CBasicKeyStore : public CKeyStore { protected: KeyMap mapKeys; ScriptMap mapScripts; WatchOnlySet setWatchOnly; MultiSigScriptSet setMultiSig; public: bool AddKeyPubKey(const CKey& key, const CPubKey& pubkey); bool HaveKey(const CKeyID& address) const; void GetKeys(std::set<CKeyID>& setAddress) const; bool GetKey(const CKeyID& address, CKey& keyOut) const; virtual bool AddCScript(const CScript& redeemScript); virtual bool HaveCScript(const CScriptID& hash) const; virtual bool GetCScript(const CScriptID& hash, CScript& redeemScriptOut) const; virtual bool AddWatchOnly(const CScript& dest); virtual bool RemoveWatchOnly(const CScript& dest); virtual bool HaveWatchOnly(const CScript& dest) const; virtual bool HaveWatchOnly() const; virtual bool AddMultiSig(const CScript& dest); virtual bool RemoveMultiSig(const CScript& dest); virtual bool HaveMultiSig(const CScript& dest) const; virtual bool HaveMultiSig() const; }; typedef std::vector<unsigned char, secure_allocator<unsigned char> > CKeyingMaterial; typedef std::map<CKeyID, std::pair<CPubKey, std::vector<unsigned char> > > CryptedKeyMap; #endif // BITCOIN_KEYSTORE_H
b6f08e1d4bdc2aa65adf534fd60a1b22f9719a6d
e39a0354db4013d2a8aec4a4565cfb5f6443ae8f
/UVa/UVa674.cpp
3c1169adb929206cbb7f9528ff0494bc31805bc7
[]
no_license
YimingPan/UVa-Solution
8afd41673ff3aeebcedbfbf379247af5e2a6eca4
92862dcfc49baed97ea72f4467f12f8d588a9010
refs/heads/master
2021-09-09T21:52:13.645907
2018-03-19T22:48:06
2018-03-19T22:48:06
116,416,034
0
0
null
null
null
null
UTF-8
C++
false
false
697
cpp
#include <cstdio> #include <cstring> int dp[7500][6]; int m[6] = {0,1,5,10,25,50}; int dfs_dp(int n, int k) { if(dp[n][k]>0) return dp[n][k]; if(k == 0 && n == 0) return dp[n][k] = 1; if(k == 1 || n == 1) return dp[n][k] = 1; if(n < m[k]) return dp[n][k] = dfs_dp(n,k-1); return dp[n][k] = dfs_dp(n-m[k], k)+dfs_dp(n, k-1); } int main() { #ifdef LOCAL freopen("in.txt","r",stdin); #endif int money; for(int i=1;i<=7489;i++) for(int j=1;j<=5;j++) dfs_dp(i,j); while(scanf("%d",&money)!=EOF) { if(money == 0) printf("1\n"); else printf("%d\n",dp[money][5]); } return 0; }
b6b54f4e92f33df6b45600613fe92b0c828feda2
c7204f8930f6b6618d67b5e59e5bec375ef5caef
/Source/PluginProcessor.cpp
1a156d6a8163be44873790e29d4aaba4d55af6ef
[]
no_license
smacla200/AmbiEncoder
caaf9c0c6280546a4a7d5e0440141d40a9e05838
4bc383ee4f4783599483c3ab0dd256c98bfefe96
refs/heads/master
2021-01-22T10:56:27.782866
2017-02-15T13:45:46
2017-02-15T13:45:46
82,054,533
0
0
null
null
null
null
UTF-8
C++
false
false
6,156
cpp
/* ============================================================================== This file was auto-generated! It contains the basic framework code for a JUCE plugin processor. ============================================================================== */ #include "PluginProcessor.h" #include "PluginEditor.h" //============================================================================== AmbiEncoderAudioProcessor::AmbiEncoderAudioProcessor() #ifndef JucePlugin_PreferredChannelConfigurations : AudioProcessor (BusesProperties() #if ! JucePlugin_IsMidiEffect #if ! JucePlugin_IsSynth .withInput ("Input", AudioChannelSet::mono(), true) #endif .withOutput ("Output", AudioChannelSet::ambisonic(), true) #endif ) #endif { } AmbiEncoderAudioProcessor::~AmbiEncoderAudioProcessor() { } //============================================================================== const String AmbiEncoderAudioProcessor::getName() const { return JucePlugin_Name; } bool AmbiEncoderAudioProcessor::acceptsMidi() const { #if JucePlugin_WantsMidiInput return true; #else return false; #endif } bool AmbiEncoderAudioProcessor::producesMidi() const { #if JucePlugin_ProducesMidiOutput return true; #else return false; #endif } double AmbiEncoderAudioProcessor::getTailLengthSeconds() const { return 0.0; } int AmbiEncoderAudioProcessor::getNumPrograms() { return 1; // NB: some hosts don't cope very well if you tell them there are 0 programs, // so this should be at least 1, even if you're not really implementing programs. } int AmbiEncoderAudioProcessor::getCurrentProgram() { return 0; } void AmbiEncoderAudioProcessor::setCurrentProgram (int index) { } const String AmbiEncoderAudioProcessor::getProgramName (int index) { return String(); } void AmbiEncoderAudioProcessor::changeProgramName (int index, const String& newName) { } //============================================================================== void AmbiEncoderAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock) { // Use this method as the place to do any pre-playback // initialisation that you need.. } void AmbiEncoderAudioProcessor::releaseResources() { // When playback stops, you can use this as an opportunity to free up any // spare memory, etc. } #ifndef JucePlugin_PreferredChannelConfigurations bool AmbiEncoderAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) const { #if JucePlugin_IsMidiEffect ignoreUnused (layouts); return true; #else // This is the place where you check if the layout is supported. if (layouts.getMainOutputChannelSet() != AudioChannelSet::mono() && layouts.getMainOutputChannelSet() != AudioChannelSet::ambisonic()) return false; // This checks if the input layout matches the output layout #if ! JucePlugin_IsSynth if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet()) return false; #endif return true; #endif } #endif void AmbiEncoderAudioProcessor::processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages) { const int totalNumInputChannels = getTotalNumInputChannels(); const int totalNumOutputChannels = getTotalNumOutputChannels(); const int numSamples = buffer.getNumSamples(); // In case we have more outputs than inputs, this code clears any output // channels that didn't contain input data, (because these aren't // guaranteed to be empty - they may contain garbage). // This is here to avoid people getting screaming feedback // when they first compile a plugin, but obviously you don't need to keep // this code if your algorithm always overwrites all the output channels. for (int i = totalNumInputChannels; i < totalNumOutputChannels; ++i) buffer.clear (i, 0, buffer.getNumSamples()); // Convert pan position in degrees to radians float azimuth = (M_PI/180.f) * panPosition; // Get a pointer to each of the Ambisonic channels float* channelDataW = buffer.getWritePointer (0); float* channelDataX = buffer.getWritePointer (1); float* channelDataY = buffer.getWritePointer (2); float* channelDataZ = buffer.getWritePointer (3); // Not used // Loop through each sample for (int i = 0; i < numSamples; i++) { float audioIn = channelDataW[i]; // Store input in temp variable // Do the encoding (horizontal only) channelDataW[i] = audioIn * 0.707; channelDataX[i] = audioIn * cos(azimuth); channelDataY[i] = audioIn * sin(azimuth); } } //============================================================================== bool AmbiEncoderAudioProcessor::hasEditor() const { return true; // (change this to false if you choose to not supply an editor) } AudioProcessorEditor* AmbiEncoderAudioProcessor::createEditor() { return new AmbiEncoderAudioProcessorEditor (*this); } //============================================================================== void AmbiEncoderAudioProcessor::getStateInformation (MemoryBlock& destData) { // You should use this method to store your parameters in the memory block. // You could do that either as raw data, or use the XML or ValueTree classes // as intermediaries to make it easy to save and load complex data. } void AmbiEncoderAudioProcessor::setStateInformation (const void* data, int sizeInBytes) { // You should use this method to restore your parameters from this memory block, // whose contents will have been created by the getStateInformation() call. } //============================================================================== // This creates new instances of the plugin.. AudioProcessor* JUCE_CALLTYPE createPluginFilter() { return new AmbiEncoderAudioProcessor(); }
d56647bed1bfdff6848058142a1de7031769b9c9
b97934b847014836a26b558ff06b8d784f78315f
/source/warlords.cpp
1280124904e87499cf34c7050d9bf637a2ceeda5
[]
no_license
ChrisPierce-StuphLabs/Warlords
2d494e3823339523b2519febfeff18e396e5b99a
5f6f4052dced7067c1d43f25a7d8b5cfe8b61702
refs/heads/master
2020-04-10T14:05:29.153021
2012-08-12T21:09:28
2012-08-12T21:09:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,302
cpp
/* Christopher Pierce Warlords game Written 08/01/2012 Last Modified 08/01/2012 Game pits zues vs poseidon vs hades in a pokemon-like text based fighter game */ #include <iostream> #include <iomanip> #include <stdlib.h> using namespace std; struct warlord { string name; string type; string weakness; unsigned int attackDamage; unsigned int defenceValue; int totalHealth; int currentHealth; bool isTurn; } zues, poseidon, hades, chosen, challenger; //functions for the player to use //offence int attack(warlord chosen, warlord challenger, int weakMultiplier) { if(challenger.weakness == chosen.type){ weakMultiplier = 2; } else weakMultiplier = 1; return(((chosen.attackDamage - challenger.defenceValue) * weakMultiplier) + (rand() % 6)); } //defence int defend(warlord &chosen, warlord &challenger, int weakMultiplier) { if (chosen.defenceValue > 10) { return 0; } else chosen.defenceValue += 1; return(0); } //what the player can do, and what happens next int chooseMenu(int selection, int weakMultiplier, warlord &chosen, warlord &challenger) { if(selection == 1) { cout << "You did: " << attack(chosen, challenger, weakMultiplier); cout <<" Damage to " << challenger.name << endl; challenger.currentHealth -= attack(chosen, challenger, weakMultiplier); } else if (selection == 2) { defend(chosen, challenger, weakMultiplier); cout << chosen.name << "'s defence value is: " << chosen.defenceValue << endl; } else if (selection == 3) { cout << "You forfit. That means your both a coward, and a loser. I'm sure your mother is proud. \n"; exit(0); } else cout << "You didnt enter a 1 or a 2 or a 3! Bad user!!! you should go cry in shame! " << endl; } //end of player's functions //begining of "ai's" functions int challengersChoice(int aiSelection, int weakMultiplier, int aiDamageDone, warlord &chosen, warlord &challenger) { //call to random to give 0 or a 1. aiSelection = rand() % 2; cout << "The computer decided to: "; if(aiSelection == 0) { cout << " Attack \n"; aiDamageDone = (((chosen.currentHealth -= (challenger.attackDamage - chosen.defenceValue)) * weakMultiplier) + (rand() %6)); cout << challenger.name << " did " << aiDamageDone << " damage " << "to: " << chosen.name << endl; return(aiDamageDone); } else if(aiSelection == 1) { cout << " Defend \n"; cout << " Computer's defence value is: " << challenger.defenceValue << endl; if(challenger.defenceValue > 10) { return 0; } else return(challenger.defenceValue += 1); } else cout <<"challengersChoice() messed up somehow.. \n"; } //end of the "ai's" functions int main() { int weakMultiplier=0; int warlordSelection=0; int selection=0; int aiSelection=0; int aiDamageDone=0; int random = rand() % 6; bool isValid=0; warlord(); warlord zues; zues.name="zues"; zues.type="electric"; zues.weakness="fire"; zues.attackDamage=27; zues.defenceValue=8; zues.totalHealth=500; zues.currentHealth=500; zues.isTurn=0; warlord poseidon; poseidon.name="poseidon"; poseidon.type="water"; poseidon.weakness="electric"; poseidon.attackDamage=23; poseidon.defenceValue=4; poseidon.totalHealth=620; poseidon.currentHealth=620; poseidon.isTurn=0; warlord hades; hades.name="hades"; hades.type="fire"; hades.weakness="water"; hades.attackDamage=29; hades.defenceValue=3; hades.totalHealth=570; hades.currentHealth=670; hades.isTurn=0; warlord choosen; chosen.name=" "; chosen.type=" "; chosen.weakness=" "; chosen.attackDamage=0; chosen.defenceValue=0; chosen.totalHealth=0; chosen.currentHealth=0; chosen.isTurn=0; warlord challenger; challenger.name=" "; challenger.type=" "; challenger.weakness=" "; challenger.attackDamage=0; challenger.defenceValue=0; challenger.totalHealth=0; challenger.currentHealth=0; challenger.isTurn=0; cout << "Welcome to warlords. Please select your character. 1 for Zues, 2 for Poseidon, and 3 for Hades.\n" << "Anthing else is garbage, and you will be yelled at for inputting garbage.\n"; checkWarlordSelection: do { cout << "Enter Selection. " << endl; try { cin >> warlordSelection; if(warlordSelection == 1) { cout << "You chose Zues.\n"; chosen = zues; chosen.isTurn = 1; challenger = poseidon; isValid=1; } else if(warlordSelection == 2) { cout << "You chose Poseidon. \n"; chosen = poseidon; chosen.isTurn = 1; challenger = hades; isValid=1; } else if(warlordSelection == 3) { cout << "You chose Hades. \n"; chosen = hades; chosen.isTurn = 1; challenger = zues; isValid=1; } else throw warlordSelection; } catch (string warlordSelection) { cout << "Please enter valid data! " << "You entered: " << "a character. " << endl; isValid = 0; goto checkWarlordSelection; } catch (char warlordSelection) { cout << "Please enter valid data! " << "You entered: " << "a character. " << endl; isValid = 0; goto checkWarlordSelection; } catch (double warlordSelection) { cout << "Please enter valid data! " << "You entered: " << "a double. " << endl; isValid = 0; goto checkWarlordSelection; } }//end do while(isValid = 0); cout << "Type: " << chosen.type << " Weakness: " << chosen.weakness << endl; cout << "Attack: " << chosen.attackDamage << " Defence value: " << chosen.defenceValue << endl; cout << "Total Health: " << chosen.totalHealth << " currentHealth " << chosen.currentHealth << endl; cout << endl; cout << "Your challenger today is: " << challenger.name << endl; //control loop so the warlords fight to the death! do { cout << "It's your turn! Enter 1 to attack, 2 to defend, or 3 to give up! " << endl; cin >> selection; cout << endl; if(selection > 0 && selection < 4) {isValid=1; } else isValid=0; chooseMenu(selection, weakMultiplier, chosen, challenger); cout << "Enemy " << challenger.name << " has only: " << challenger.currentHealth << " health remaining! " << endl; challengersChoice(aiSelection, weakMultiplier, aiDamageDone, chosen, challenger); cout << "Your warlord: " << chosen.name << " has only: " << chosen.currentHealth << " health remaining! " << endl; } while(chosen.currentHealth > 0 && challenger.currentHealth > 0); if(challenger.currentHealth <= 0) { cout << "You win! Congradulations." << endl; } else cout << "You were born a looser, and now you have gone and earned your reputation. " << "GAME OVER " << endl; return 0; }
f16498f14ee08375f648d6cc55c9b21a5b118a92
a070de8c140f9c1fad2ca69cf2cdacc9466332d5
/LeetCodePractice/LeetCodePractice/Q175_Combine_Two_Tables.cpp
dbc578a05daa43717178dc16ed2b8b6f141ecea7
[]
no_license
semkilljaeden/LeetCodePractice
124df40e2b84be1f27e7c8256bcfafa7154ef387
c15e790eae4b59c7af3e572e20fed3a7aee01a48
refs/heads/master
2023-03-28T23:28:13.049182
2021-03-31T21:17:48
2021-03-31T21:17:48
272,928,992
1
0
null
null
null
null
UTF-8
C++
false
false
11
cpp
//skip, SQL
66b85f06760cff5c320a813cd41adcc898cdba82
05b5fbf24c6cc8046b7e9807089aff58a344c4d5
/CBSocket.cpp
21bacf33d1f7ab983004de6d0fe271f500fdadff
[]
no_license
xiamingxing/maya
50687354706d3fd041fb362b06eb705e838eed04
ffb2e6583a75c894884fea46b19bea8ed1a590a5
refs/heads/master
2020-04-02T04:42:44.355405
2016-07-19T04:42:59
2016-07-19T04:42:59
63,661,214
0
0
null
null
null
null
UHC
C++
false
false
6,209
cpp
/////////////////////////////////////////////////////////////////////////////// // CBase Socket Class define Part : implementation file // #include "stdafx.h" #include "SCDefine.h" #include "Cbsocket.h" #include "Poolbase.h" #include "IocpBase.h" #include "SockDataList.h" CBSocket::CBSocket() { m_SockFlag = FALSE; m_iSidMod = 0; m_BufHead = 0; m_BufTail = 0; m_BufCount = 0; m_sizeSendBuffer = SOCKET_BUF_SIZE; // SERVER 는 20 KBYTE. m_socket_buffer_size_kiro = 32; m_pIocpBase = NULL; } CBSocket::CBSocket(int nBufSize ) { m_SockFlag = FALSE; m_iSidMod = 0; m_BufHead = 0; m_BufTail = 0; m_BufCount = 0; if ( nBufSize == -1 ) m_sizeSendBuffer = SOCKET_BUF_SIZE; // SERVER 는 20 KBYTE. else m_sizeSendBuffer = nBufSize; m_socket_buffer_size_kiro = 32; m_pIocpBase = NULL; } CBSocket::~CBSocket() { } int CBSocket::Init( int bufCreateFlag ) { m_SockFlag = TRUE; if ( m_pIocpBase ) m_iSidMod = m_Sid % m_pIocpBase->m_ThreadCount; else m_iSidMod = 0; m_SockAliveFlag = 0; m_iWsaReadIOPendFlag = 0; m_iWsaWriteIOPendFlag = 0; m_iWsaWouldBlockFlag = 0; m_nIoPendingCount = 0; m_BufHead = 0; m_BufTail = 0; m_BufCount = 0; m_ActivatedFlag = 0; return 1; } int CBSocket::DxSend(int length, char* pBuf) { if ( m_SockFlag != 1 ) return -2; long ret, nSendBufferData; nSendBufferData = length; ret = CIOCPSocket::IOCP_Send( pBuf, nSendBufferData, 0 ); if ( ret == -2 ) // 죽은 소켓... { m_SockFlag = 0; return -1; } else if ( ret == 0 || ret == SOCKET_ERROR ) { int err = GetIOCPLastError(); if ( err == WSAEWOULDBLOCK ) { m_SockFlag = 0; return -1; } if ( err == WSA_IO_PENDING ) { m_SockFlag = 0; return -1; } switch ( err ) { case WSAENETDOWN: case WSAEINPROGRESS: case WSAENETRESET: case WSAENOBUFS: case WSAESHUTDOWN: break; case WSAENOTCONN: case WSAECONNABORTED: break; case WSAENOTSOCK: case WSAECONNRESET: break; }; m_SockFlag = 0; return -1; } m_nIoPendingCount = 0; return nSendBufferData; } int CBSocket::B_Send(int length, char *pBuf) { if ( m_SockFlag != 1 ) return -1; int retValue; retValue = DxSend( length, pBuf ); if ( retValue == -1 && m_SockFlag != 1 ) { SendSockCloseProcess(); return -1; } return length; } void CBSocket::B_OnSend( int nErrorCode ) { if ( m_SockFlag != 1 ) return; if ( m_iWsaWouldBlockFlag == 0 && m_iWsaWriteIOPendFlag == 0 ) return; CIOCPSocket::IOCP_OnSend(nErrorCode); } void CBSocket::B_OnClose(int nErrorCode) { CIOCPSocket::IOCP_OnClose(nErrorCode); } void CBSocket::ParseCommand(int rBytes) { char pBuf[SOCKET_BUF_SIZE+1]; if ( rBytes ) { m_rByte = rBytes; memcpy( pBuf, m_RecvBuf, m_rByte ); ReceiveData( pBuf, m_rByte ); } } void CBSocket::ReceiveData(char *pBuf, int nByte) { if ( m_SockFlag != 1 ) return; if ( nByte == 0 ) return; BYTE *pdata = NULL; try { pdata = new BYTE[nByte+1]; } catch(...) { TRACE("]MEMORY ALLOC STEP1 FAILED AND RETRY...\n"); try { pdata = new BYTE[nByte+1]; } catch(...) { TRACE("]MEMORY ALLOC STEP1 FAILED AND IGNORE...\n"); return; } } memcpy( pdata, pBuf, nByte ); WAIT_RECV_DATA *wrd; try { wrd = new WAIT_RECV_DATA; } catch(...) { TRACE("]MEMORY ALLOC STEP2 FAILED AND RETRY...\n"); try { wrd = new WAIT_RECV_DATA; } catch(...) { TRACE("]MEMORY ALLOC STEP2 FAILED AND RETURN...\n"); if ( pdata ) delete pdata; return; } } wrd->pData = pdata; wrd->dcount = nByte; wrd->usn = m_Sid; wrd->m_Type = m_Type; // IKING 2002.7.3 EnterCriticalSection(&m_pIocpBase->m_CS_ReceiveData[m_iSidMod]); m_pIocpBase->m_pRecvData[m_iSidMod][m_pIocpBase->m_nHeadPtr[m_iSidMod]] = wrd; if ( m_pIocpBase->m_nHeadPtr[m_iSidMod] >= WAIT_RECV_DATA_BUFFER-1) m_pIocpBase->m_nHeadPtr[m_iSidMod] = 0; else { m_pIocpBase->m_nHeadPtr[m_iSidMod]++; } LeaveCriticalSection(&m_pIocpBase->m_CS_ReceiveData[m_iSidMod]); } int CBSocket::RecycleRead() { return CIOCPSocket::IOCP_RecycleRead(); } int CBSocket::SockCloseProcess(int nError) { B_Close(); return 1; } int CBSocket::SendSockCloseProcess(int nError) { B_SoftClose(); return 1; } void CBSocket::B_Close() { if ( m_pIocpBase == NULL ) { m_SockFlag = FALSE; m_ActivatedFlag = 1; return; } if ( m_SockAliveFlag == -1 ) return; // IKING 2002.6.29 EnterCriticalSection(&m_CS_CloseTime); if ( m_SockAliveFlag == -1 ) { LeaveCriticalSection(&m_CS_CloseTime); return; } LeaveCriticalSection(&m_CS_CloseTime); m_SockFlag = FALSE; m_ActivatedFlag = 1; CIOCPSocket::IOCP_Close(); RHANDLE *pHandle; pHandle = m_pIocpBase->m_pPBM->m_pResources->GetHandle( m_Sid ); if ( pHandle ) m_pIocpBase->m_pPBM->ReleaseResource(pHandle); else { TRACE("]Iocp closed : sid[%d] Handle Error...\n", m_Sid ); } } int CBSocket::PostSendData() { if ( m_SockFlag != 1 ) return -2; if ( m_pIocpBase == NULL ) return -1; SetEvent(m_pIocpBase->m_CreateSignalEvent); return 0; } int CBSocket::SocketDisConnect() { return 1; } void CBSocket::B_SoftClose() { if ( m_pIocpBase == NULL ) return; if ( m_SockAliveFlag == -1 ) return; // IKING 2002.6.29 EnterCriticalSection(&m_CS_CloseTime); if ( m_SockAliveFlag == -1 ) { LeaveCriticalSection(&m_CS_CloseTime); return; } LeaveCriticalSection(&m_CS_CloseTime); OVERLAPPED *pOvl; pOvl = &m_RecvOverlap; pOvl->Offset = OVL_RECEIVE; int retValue; retValue = PostQueuedCompletionStatus( m_pIocpBase->m_hIOCPort, (DWORD)0, (DWORD)m_Sid, pOvl ); if ( !retValue ) { int errValue; errValue = GetLastError(); TRACE("]PostQueuedCompletionStatus Error := %d\n", errValue); switch ( errValue ) { case ERROR_IO_PENDING: TRACE(">>PQCS : ERROR_IO_PENDING\n"); break; default : break; }; return; } } void CBSocket::SessionLogOut() { return; }
99d6661de88d434e5d16276edf3ff0b756db917a
051fdf2715925ea6752a053f2bc828ed7bfe0233
/Engine/Source/Helper/Camera.h
2255b95bba21c4a8c3a25174b43fe54eca39a3c3
[]
no_license
SizzlingCalamari/fs12-engine
f6607461bd66fceb5c2a8a446bbe5e4228791d1d
22bf3763f7dd09cae56f58881def6421cc64c933
refs/heads/master
2016-08-12T12:26:54.771382
2012-03-16T22:49:38
2012-03-16T22:49:38
51,328,555
0
0
null
null
null
null
UTF-8
C++
false
false
3,885
h
/*===================================================================== Camera.h : Declaration of the CCamera class. Author : Christopher Baptiste Version: v1.0a Licence : GNU GENERAL PUBLIC LICENSE Copywrite (C) 2006, 2007 Christopher Baptiste Full Sail, Inc. 3300 University Blvd. Ste 160 Winter Park, Florida 32792 Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. //===================================================================*/ #ifndef _CAMERA_H_ #define _CAMERA_H_ /*===================================================================== Header Includes: //===================================================================*/ #include <d3d9.h> #include <d3dx9.h> /*===================================================================== Class Declaration: //===================================================================*/ class CCamera { private: D3DXMATRIX m_mProjectionMatrix; D3DXMATRIX m_mViewMatrix; public: CCamera(void); ~CCamera(void); /*===================================================================== Projection Matrix Functions //===================================================================*/ D3DXMATRIX GetProjectionMatrix(void); void SetProjectionMatrix(D3DXMATRIX *_mMatrix); void BuildPerspective(float _fFieldOfView, float _fAspect, float _fZNear, float _fZFar); /*===================================================================== View Matrix Functions //===================================================================*/ D3DXMATRIX GetViewMatrix(bool _bTranslate = true); void SetViewMatrix(D3DXMATRIX *_mMatrix); void NormalizeViewMatrix(void); D3DXVECTOR3 GetViewXAxis(void); void SetViewXAxis(D3DXVECTOR3 _vPosition); void SetViewXAxis(float _fX, float _fY, float _fZ); D3DXVECTOR3 GetViewYAxis(void); void SetViewYAxis(D3DXVECTOR3 _vPosition); void SetViewYAxis(float _fX, float _fY, float _fZ); D3DXVECTOR3 GetViewZAxis(void); void SetViewZAxis(D3DXVECTOR3 _vPosition); void SetViewZAxis(float _fX, float _fY, float _fZ); D3DXVECTOR3 GetViewPosition(void); void SetViewPosition(D3DXVECTOR3 _vPosition); void SetViewPosition(float _fX, float _fY, float _fZ); /*================================================================= Local Transform Functions //===============================================================*/ void ViewRotateLocalX(float _fAngle); void ViewRotateLocalY(float _fAngle); void ViewRotateLocalZ(float _fAngle); void ViewTranslateLocal(D3DXVECTOR3 _vAxis, bool _bFPS = false); void ViewTranslateLocalX(float _fScale, bool _bFPS = false); void ViewTranslateLocalY(float _fScale, bool _bFPS = false); void ViewTranslateLocalZ(float _fScale, bool _bFPS = false); /*================================================================= Global Transform Functions //===============================================================*/ void ViewRotateGlobalX(float _fAngle); void ViewRotateGlobalY(float _fAngle); void ViewRotateGlobalZ(float _fAngle); void ViewTranslateGlobal(D3DXVECTOR3 _vAxis); void ViewTranslateGlobalX(float _fScale); void ViewTranslateGlobalY(float _fScale); void ViewTranslateGlobalZ(float _fScale); }; #endif //_CAMERA_H_
847fe44fe5251f4f8116d894edc681b00027d259
9427126563527b81f1c4d3fb60c38bdc29e810d0
/leetcode/456-132-pattern.cpp
834426cab572ac21c1d0f2e5d9745d4f10895ddb
[]
no_license
gongzhitaao/oj
afe217753f112e445f2b75a5800c0fc2862688b2
fbc771a3b239616be48b1b2fcaa39da9d8ce2a14
refs/heads/master
2021-01-17T02:59:56.456256
2018-03-07T01:59:01
2018-03-07T01:59:01
16,234,097
1
0
null
null
null
null
UTF-8
C++
false
false
427
cpp
class Solution { public: bool find132pattern(vector<int>& nums) { const int n = nums.size(); stack<int> stk; for (int i = n - 1, s3 = -1; i >= 0; --i) { if (s3 >= 0 && nums[i] < nums[s3]) return true; for (; stk.size() && nums[i] > nums[stk.top()]; stk.pop()) if (s3 < 0 || nums[stk.top()] > nums[s3]) s3 = stk.top(); stk.push(i); } return false; } };
d7dc30bed94d52a7479794578bc5b668cc942486
85a2d8f6565fb8c55fa1cf2c2dc9e3ebff6093b8
/factory/libpainter/Painter.h
24136325aa7a4af497784062ca5df4b7d0bebabc
[]
no_license
klwxsrx/ood-course
eeaa2002b66deeb886d4a718bca437439da39a37
449b3e8c62fc2d9f73b7829170826ea83e20b5f5
refs/heads/master
2021-09-22T05:05:38.934710
2018-06-21T16:13:32
2018-06-21T16:13:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
156
h
#pragma once #include "IPainter.h" class CPainter : public IPainter { public: void DrawPicture(IPictureDraft const& draft, ICanvas& canvas) override; };
aa397f95f3882699ff4e8632a42875db1191fba2
1644ef09ef48aaa4f1b87ad115596d0789085d58
/MyExercises/c++primer/5.18textin3.cpp
39e41012bcfb50d2ae62f5a33317b6212e3947d8
[ "Apache-2.0" ]
permissive
smilliy/fairy
4ed7ec0ab097017bddcf5a1162b36f4dbd8a6691
c104beb35d2329787b3264a9102c44b2bafb973f
refs/heads/master
2021-05-23T01:59:20.748129
2020-04-25T08:43:08
2020-04-25T08:43:08
253,183,168
0
0
null
null
null
null
UTF-8
C++
false
false
342
cpp
// textin3.cpp -- reading chars to end of file #include <iostream> int main() { using namespace std; char ch; int count = 0; cin.get(ch); while(cin.fail() == false) // test for EOF { cout << ch; ++count; cin.get(ch); } cout << endl << count << " characters read.\n"; return 0; }
1be7c5b95e4835ed3264bb692794f8d94d2deb6b
20b49a6ef1fa417d67abef2d29a598c9e41c478e
/CodeForces/Contests/CF Edu Round 104/E.cpp
8d2f8beb4fbaa07d67104a864fafaf2504420760
[]
no_license
switchpiggy/Competitive_Programming
956dac4a71fdf65de2959dd142a2032e2f0710e1
beaaae4ece70889b0af1494d68c630a6e053558a
refs/heads/master
2023-04-15T19:13:12.348433
2021-04-04T06:12:29
2021-04-04T06:12:29
290,905,106
1
3
null
2020-10-05T20:16:53
2020-08-27T23:38:48
C++
UTF-8
C++
false
false
2,764
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef long double ld; #define benq queue #define pbenq priority_queue #define all(x) x.begin(), x.end() #define sz(x) (ll)x.size() #define m1(x) memset(x, 1, sizeof(x)) #define m0(x) memset(x, 0, sizeof(x)) #define inf(x) memset(x, 0x3f, sizeof(x)) #define MOD 1000000007 #define INF 0x3f3f3f3f3f3f3f3f #define PI 3.14159265358979323846264338 #define flout cout << fixed << setprecision(12) ll n1, n2, n3, n4; pair<ll, ll> a[200007], b[200007], c[200007], d[200007]; set<ll> x[200007], y[200007], z[200007]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n1 >> n2 >> n3 >> n4; for(ll i = 1; i <= n1; ++i) cin >> a[i].first, a[i].second = i; for(ll i = 1; i <= n2; ++i) cin >> b[i].first, b[i].second = i; for(ll i = 1; i <= n3; ++i) cin >> c[i].first, c[i].second = i; for(ll i = 1; i <= n4; ++i) cin >> d[i].first, d[i].second = i; sort(a + 1, a + n1 + 1); sort(b + 1, b + n2 + 1); sort(c + 1, c + n3 + 1); sort(d + 1, d + n4 + 1); auto no = []() { cout << "-1\n"; exit(0); }; ll m; cin >> m; for(ll i = 0; i < m; ++i) { ll u, v; cin >> u >> v; x[v].insert(u); } cin >> m; for(ll i = 0; i < m; ++i) { ll u, v; cin >> u >> v; y[u].insert(v); } cin >> m; for(ll i = 0; i < m; ++i) { ll u, v; cin >> u >> v; z[u].insert(v); } for(ll i = 1; i <= n2; ++i) { ll res = -1; for(ll j = 1; j <= n1; ++j) { if(x[b[i].second].find(a[j].second) == x[b[i].second].end()) { res = j; break; } } if(res == -1) { b[i].first = -1; continue; } b[i].first += a[res].first; } for(ll i = 1; i <= n3; ++i) { ll res = -1; for(ll j = 1; j <= n4; ++j) { if(z[c[i].second].find(d[j].second) == z[c[i].second].end()) { res = j; break; } } if(res == -1) { c[i].first = -1; continue; } c[i].first += d[res].first; } vector<pair<ll, ll>> cc; for(ll i = 1; i <= n3; ++i) if(c[i].first != -1) cc.push_back(c[i]); sort(all(cc)); ll ans = LLONG_MAX; for(ll i = 1; i <= n2; ++i) { if(b[i].first == -1) continue; for(ll j = 0; j < sz(cc); ++j) { if(y[b[i].second].find(cc[j].second) == y[b[i].second].end()) { ans = min(ans, cc[j].first + b[i].first); break; } } } if(ans == LLONG_MAX) ans = -1; cout << ans << '\n'; return 0; }
ae6aaf6c3bc8d80c912e00f605f165b1aba73778
b2b4147268b2b3bedef9ba0e8dc42392ae00c520
/source/models/performance_model/link_activity_trace_manager.cc
6058020101827c5e4b20db0fd82fc0321c2417b2
[]
no_license
allenhsin/ThermalSimulator
3730b5097e49da6f5876dbed668e2a9902f424eb
f045aff7a97fabe0d280d62d4145d992574d6ef7
refs/heads/master
2021-01-10T14:24:10.884642
2015-02-10T02:36:44
2015-02-10T02:36:44
8,466,636
1
0
null
null
null
null
UTF-8
C++
false
false
8,610
cc
#include <cassert> #include <cstring> #include <string> #include "source/models/performance_model/link_activity_trace_manager.h" #include "source/models/performance_model/performance_constants.h" #include "source/models/performance_model/bit_sequence.h" #include "source/models/performance_model/random_bit_sequence.h" #include "source/system/event_scheduler.h" #include "source/models/model_type.h" #include "source/misc/misc.h" #include "source/data/data.h" #include "libutil/LibUtil.h" using std::string; namespace Thermal { LinkActivityTraceManager::LinkActivityTraceManager() : PerformanceModel() , _latrace_file (NULL) , _latrace_file_read_over (false) , _latrace_sampling_interval (0) , _current_latrace_line_number (0) { _bit_sequence_driver_names.clear(); _bit_sequence_driver_names_set.clear(); _bit_sequence_drver_activity_factor.clear(); _bit_sequence_drver_bit_ratio.clear(); } LinkActivityTraceManager::~LinkActivityTraceManager() {} void LinkActivityTraceManager::loadBitSequenceDriverNamesFromLatrace() { char line[LINE_SIZE]; char temp[LINE_SIZE]; char* src; char name[STR_SIZE]; int i; assert(_bit_sequence_driver_names.size()==0); assert(_bit_sequence_driver_names_set.size()==0); assert(_bit_sequence_drver_activity_factor.size()==0); assert(_bit_sequence_drver_bit_ratio.size()==0); _latrace_file = fopen(_config->getString("latrace_manager/latrace_file").c_str(), "r"); if (!_latrace_file) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: cannot open latrace file.\n"); do { // read the entire line fgets(line, LINE_SIZE, _latrace_file); if (feof(_latrace_file)) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: No bit sequence driver names in link activity trace file.\n"); strcpy(temp, line); src = strtok(temp, " \r\t\n"); // skip empty lines } while (!src || src[0]=='#'); // if the latrace name line is too long if(line[strlen(line)-1] != '\n') LibUtil::Log::printFatalLine(std::cerr, "\nERROR: latrace bit sequence driver name line too long.\n"); // chop the names from the line read for(i=0,src=line; *src; i++) { if(!sscanf(src, "%s", name)) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: Invalid bit sequence driver names format in latrace file.\n"); src += strlen(name); if(_bit_sequence_driver_names_set.count( (string) name )) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: Duplicated bit sequence driver names in latrace file.\n"); _bit_sequence_driver_names.push_back( (string) name ); _bit_sequence_driver_names_set.insert( (string) name ); while (isspace((int)*src)) src++; } assert(_bit_sequence_driver_names.size()== (unsigned int) i); _bit_sequence_drver_activity_factor.resize(i); _bit_sequence_drver_bit_ratio.resize(i); } // loadBitSequenceDriverNamesFromLatrace bool LinkActivityTraceManager::loadBitSequenceDriverActivityFromLatrace() { char line[LINE_SIZE]; char temp[LINE_SIZE]; char* src; unsigned int i; const unsigned int number_drivers = _bit_sequence_driver_names.size(); if (_latrace_file_read_over) return false; if (!_latrace_file) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: Cannot open latrace file.\n"); // skip empty lines do { // read the entire line fgets(line, LINE_SIZE, _latrace_file); if (feof(_latrace_file)) { fclose(_latrace_file); _latrace_file_read_over = true; return false; } strcpy(temp, line); src = strtok(temp, " \r\t\n"); } while (!src || src[0]=='#'); // new line not read yet if(line[strlen(line)-1] != '\n') LibUtil::Log::printFatalLine(std::cerr, "\nERROR: latrace bit sequence driver name line too long.\n"); // chop the activity values from the line read for(i=0,src=line; *src && i < number_drivers; i++) { if(!sscanf(src, "%s", temp) || !sscanf(src, "%lf-%lf", &_bit_sequence_drver_activity_factor[i], &_bit_sequence_drver_bit_ratio[i])) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: Invalid activity format in latrace file.\n"); src += strlen(temp); while (isspace((int)*src)) src++; } if( (i != number_drivers) || *src ) LibUtil::Log::printFatalLine(std::cerr, "\nERROR: Number of units exceeds limit.\n"); return true; } void LinkActivityTraceManager::setBitSequenceDriverNamesInBitSequenceData() { const unsigned int number_drivers = _bit_sequence_driver_names.size(); for(unsigned int i=0; i<number_drivers; ++i) Data::getSingleton()->addBitSequenceData( _bit_sequence_driver_names[i], new RandomBitSequence() ); } bool LinkActivityTraceManager::startupManager() { assert(_config); // check if manager is enabled -------------------------------------------- if(!_config->getBool("latrace_manager/enable")) { LibUtil::Log::printLine( " Link Activity Trace Manager not enabled" ); return false; } // ------------------------------------------------------------------------ // set latrace constants -------------------------------------------------- _latrace_sampling_interval = _config->getFloat("latrace_manager/sampling_intvl"); _current_latrace_line_number = 0; // ------------------------------------------------------------------------ // Read bit sequence driver names from latrace ---------------------------- // read latrace file loadBitSequenceDriverNamesFromLatrace(); // initialize data structure setBitSequenceDriverNamesInBitSequenceData(); // ------------------------------------------------------------------------ // Schedule the first physical model execution event ---------------------- EventScheduler::getSingleton()->enqueueEvent(0, LINK_ACTIVITY_TRACE_MANAGER); // ------------------------------------------------------------------------ return true; } void LinkActivityTraceManager::executeManager(Time scheduled_time) { // only execute latrace when the schduled execution time matches the latrace sampling time _current_latrace_line_number++; if( !Misc::eqTime(scheduled_time, ((_current_latrace_line_number-1) * _latrace_sampling_interval) ) ) { _current_latrace_line_number--; LibUtil::Log::printLine(" Link Activity Trace new line not read"); return; } // Read single line of power trace ---------------------------------------- bool valid_line = false; valid_line = loadBitSequenceDriverActivityFromLatrace(); // ------------------------------------------------------------------------ // Update bit sequence data structure ------------------------------------- // only update when there's a new valid line in the latrace file // otherwise it will set activity to zero if(valid_line) { const unsigned int number_drivers = _bit_sequence_driver_names.size(); for(unsigned int i=0; i<number_drivers; ++i) { Data::getSingleton()->getBitSequenceData(_bit_sequence_driver_names[i])->setActivityFactor(_bit_sequence_drver_activity_factor[i]); Data::getSingleton()->getBitSequenceData(_bit_sequence_driver_names[i])->setBitRatio(_bit_sequence_drver_bit_ratio[i]); } // schedule the next event EventScheduler::getSingleton()->enqueueEvent( (scheduled_time + _latrace_sampling_interval), LINK_ACTIVITY_TRACE_MANAGER); } else // schedule the next event EventScheduler::getSingleton()->finish(); // ------------------------------------------------------------------------ } } // namespace Thermal
f9bf834195002699dc24cacded70a6d88316b36e
463c3b62132d215e245a097a921859ecb498f723
/lib/dlib/sockstreambuf/sockstreambuf_kernel_abstract.h
04c337e5cfc4677ca8bd1bcda5f70a487012d426
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
athulan/cppagent
58f078cee55b68c08297acdf04a5424c2308cfdc
9027ec4e32647e10c38276e12bcfed526a7e27dd
refs/heads/master
2021-01-18T23:34:34.691846
2009-05-05T00:19:54
2009-05-05T00:19:54
197,038
4
1
null
null
null
null
UTF-8
C++
false
false
3,545
h
// Copyright (C) 2003 Davis E. King ([email protected]) // License: Boost Software License See LICENSE.txt for the full license. #undef DLIB_SOCKSTREAMBUF_KERNEl_ABSTRACT_ #ifdef DLIB_SOCKSTREAMBUF_KERNEl_ABSTRACT_ #include <iosfwd> #include <streambuf> #include "../sockets/sockets_kernel_abstract.h" namespace dlib { // ---------------------------------------------------------------------------------------- class sockstreambuf : public std::streambuf { /*! WHAT THIS OBJECT REPRESENTS This object represents a stream buffer capable of writing to and reading from TCP connections. NOTE: For a sockstreambuf EOF is when the connection has closed or otherwise returned some kind of error. Also note that any data written to the streambuf may be buffered internally. So if you need to ensure that data is actually sent then you should flush the stream. A read operation is guaranteed to block until the number of bytes requested has arrived on the connection. It will never keep blocking once enough data has arrived. THREADING generally speaking, this object has the same kind of threading restrictions as a connection object. those being: - do not try to write to a sockstreambuf from more than one thread - do not try to read from a sockstreambuf from more than one thread - you may call shutdown() on the connection object and this will cause any reading or writing calls to end. To the sockstreambuf it will appear the same as hitting EOF. (note that EOF for a sockstreambuf means that the connection has closed) - it is safe to read from and write to the sockstreambuf at the same time - it is not safe to try to putback a char and read from the stream from different threads !*/ public: sockstreambuf ( connection* con ); /*! requires - con == a valid connection object ensures - *this will read from and write to con throws - std::bad_alloc !*/ sockstreambuf ( const scoped_ptr<connection>& con ); /*! requires - con == a valid connection object ensures - *this will read from and write to con throws - std::bad_alloc !*/ ~sockstreambuf ( ); /*! requires - get_connection() object has not been deleted ensures - sockstream buffer is destructed but the connection object will NOT be closed. - Any buffered data is flushed to the connection. !*/ connection* get_connection ( ); /*! ensures - returns a pointer to the connection object which this buffer reads from and writes to !*/ }; // ---------------------------------------------------------------------------------------- } #endif // DLIB_SOCKSTREAMBUF_KERNEl_ABSTRACT_
[ "jimmy@DGJ3X3B1.(none)" ]
jimmy@DGJ3X3B1.(none)
4f07b8f2a4f04cea60ef5253345ef71eec689d37
c120f72a42d2f202fc50e3569ae217220359a49c
/.history/src/main_20210723162804.cpp
c537f59613f84b70dd1b64d1461b07fd18cecf60
[]
no_license
zlatkovnik/Crius
c5888fca8c2c572ce5b151adf6073f965b3914d6
414fb380823c5a38e33dd47818487290405ecde7
refs/heads/main
2023-07-07T04:35:12.126132
2021-08-09T14:51:03
2021-08-09T14:51:03
388,804,001
0
0
null
null
null
null
UTF-8
C++
false
false
2,624
cpp
#include <glad/glad.h> #include <GLFW/glfw3.h> #include <iostream> #include "shader.h" #include "mesh.h" #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> void framebuffer_size_callback(GLFWwindow* window, int width, int height); void processInput(GLFWwindow *window); // settings const unsigned int SCR_WIDTH = 800; const unsigned int SCR_HEIGHT = 600; int main() { glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); #ifdef __APPLE__ glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); #endif // glfw window creation // -------------------- GLFWwindow* window = glfwCreateWindow(SCR_WIDTH, SCR_HEIGHT, "LearnOpenGL", NULL, NULL); if (window == NULL) { std::cout << "Failed to create GLFW window" << std::endl; glfwTerminate(); return -1; } glfwMakeContextCurrent(window); glfwSetFramebufferSizeCallback(window, framebuffer_size_callback); if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)) { std::cout << "Failed to initialize GLAD" << std::endl; return -1; } { float vertices[] = { -0.5f, -0.5f, 0.0f, // left 0.5f, -0.5f, 0.0f, // right 0.0f, 0.5f, 0.0f // top }; Mesh cube(vertices); Shader basicShader("./src/res/shaders/basic.vert", "./src/res/shaders/basic.frag"); while (!glfwWindowShouldClose(window)) { //Input processInput(window); //Render glClearColor(0.2f, 0.3f, 0.3f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glm::mat4 model = glm::mat4(1.0f); model = glm::rotate(model, glm::radians(90.0f), glm::vec3(0.0f, 0.0f, 1.0f)); glm::mat4 view = glm::mat4(1.0f); view = glm::translate(view, glm::vec3(0.0f, 0.0f, 2.0f)); glm::mat4 projection = glm::mat4(1.0f); glm::mat4 mvp = projection * view * model; basicShader.setMat4("mvp", mvp); cube.draw(basicShader); //Swap poll glfwSwapBuffers(window); glfwPollEvents(); } } glfwTerminate(); return 0; } void processInput(GLFWwindow *window) { if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) glfwSetWindowShouldClose(window, true); } void framebuffer_size_callback(GLFWwindow* window, int width, int height) { glViewport(0, 0, width, height); }
3f28fdcdd049ec06895b3ffc7e0a9946ca85cc02
7e167301a49a7b7ac6ff8b23dc696b10ec06bd4b
/prev_work/opensource/fMRI/FSL/fsl/extras/include/boost/boost/mpl/replace_if.hpp
a284442392c0538f95c3fb780143637ed0f92ca0
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
Sejik/SignalAnalysis
6c6245880b0017e9f73b5a343641065eb49e5989
c04118369dbba807d99738accb8021d77ff77cb6
refs/heads/master
2020-06-09T12:47:30.314791
2019-09-06T01:31:16
2019-09-06T01:31:16
193,439,385
5
4
null
null
null
null
UTF-8
C++
false
false
1,891
hpp
#ifndef BOOST_MPL_REPLACE_IF_HPP_INCLUDED #define BOOST_MPL_REPLACE_IF_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2004 // Copyright John R. Bandela 2000-2002 // Copyright David Abrahams 2003-2004 // // 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) // // See http://www.boost.org/libs/mpl for documentation. // $Source: /usr/local/share/sources/boost/boost/mpl/replace_if.hpp,v $ // $Date: 2007/06/12 15:03:23 $ // $Revision: 1.1.1.1 $ #include <boost/mpl/transform.hpp> #include <boost/mpl/apply.hpp> #include <boost/mpl/if.hpp> #include <boost/mpl/aux_/inserter_algorithm.hpp> #include <boost/mpl/aux_/config/forwarding.hpp> namespace boost { namespace mpl { namespace aux { template< typename Predicate, typename T > struct replace_if_op { template< typename U > struct apply #if !defined(BOOST_MPL_CFG_NO_NESTED_FORWARDING) : if_< typename apply1<Predicate,U>::type , T , U > { #else { typedef typename if_< typename apply1<Predicate,U>::type , T , U >::type type; #endif }; }; template< typename Sequence , typename Predicate , typename T , typename Inserter > struct replace_if_impl : transform1_impl< Sequence , protect< aux::replace_if_op<Predicate,T> > , Inserter > { }; template< typename Sequence , typename Predicate , typename T , typename Inserter > struct reverse_replace_if_impl : reverse_transform1_impl< Sequence , protect< aux::replace_if_op<Predicate,T> > , Inserter > { }; } // namespace aux BOOST_MPL_AUX_INSERTER_ALGORITHM_DEF(4, replace_if) }} #endif // BOOST_MPL_REPLACE_IF_HPP_INCLUDED
825c76065629a593b20169f8be58bf6a1c42a847
157c466d9577b48400bd00bf4f3c4d7a48f71e20
/Source/ProjectR/GameState/Tutorial/TutorialState.h
126d7b86732634727bead1408f1707c5c12af064
[]
no_license
SeungyulOh/OverlordSource
55015d357297393c7315c798f6813a9daba28b15
2e2339183bf847663d8f1722ed0f932fed6c7516
refs/heads/master
2020-04-19T16:00:25.346619
2019-01-30T06:41:12
2019-01-30T06:41:12
168,291,223
8
1
null
null
null
null
UTF-8
C++
false
false
399
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameState/IGameState.h" #include "TutorialState.generated.h" /** * */ UCLASS() class PROJECTR_API UTutorialState : public UIGameState { GENERATED_BODY() public: UTutorialState(); void Enter() override; void Leave() override; void BeginState() override; };
85b6390ee1ac5147725fd4b0df9b25a07f23cd48
9fdf8ef1498e64fdfebb0313e0152707efb92e8c
/src/dpp/events/guild_update.cpp
311ad6f74850b32d08efafcfe92bbf78550bcde7
[ "Apache-2.0" ]
permissive
michaelschuff/DPP
b6d56b4cb73f6d349860021a905a8368816b075c
3ce5716502bb527b5e3b806a2376929cc9c16cab
refs/heads/master
2023-08-16T23:46:34.148048
2021-09-20T21:51:33
2021-09-20T21:51:33
408,591,593
0
0
Apache-2.0
2021-09-20T20:31:21
2021-09-20T20:31:20
null
UTF-8
C++
false
false
2,303
cpp
/************************************************************************************ * * D++, A Lightweight C++ library for Discord * * Copyright 2021 Craig Edwards and D++ contributors * (https://github.com/brainboxdotcc/DPP/graphs/contributors) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ************************************************************************************/ #include <dpp/discord.h> #include <dpp/event.h> #include <string> #include <iostream> #include <fstream> #include <dpp/discordclient.h> #include <dpp/discord.h> #include <dpp/cache.h> #include <dpp/stringops.h> #include <dpp/nlohmann/json.hpp> using json = nlohmann::json; namespace dpp { namespace events { using namespace dpp; /** * @brief Handle event * * @param client Websocket client (current shard) * @param j JSON data for the event * @param raw Raw JSON string */ void guild_update::handle(discord_client* client, json &j, const std::string &raw) { json& d = j["d"]; dpp::guild* g = dpp::find_guild(from_string<uint64_t>(d["id"].get<std::string>(), std::dec)); if (g) { g->fill_from_json(client, &d); if (!g->is_unavailable()) { if (client->creator->cache_policy.role_policy != dpp::cp_none && d.find("roles") != d.end()) { for (int rc = 0; rc < g->roles.size(); ++rc) { dpp::role* oldrole = dpp::find_role(g->roles[rc]); dpp::get_role_cache()->remove(oldrole); } g->roles.clear(); for (auto & role : d["roles"]) { dpp::role *r = new dpp::role(); r->fill_from_json(g->id, &role); dpp::get_role_cache()->store(r); g->roles.push_back(r->id); } } } if (client->creator->dispatch.guild_update) { dpp::guild_update_t gu(client, raw); gu.updated = g; client->creator->dispatch.guild_update(gu); } } } }};
4768b9e4aaf3fa302ef2141cf198e782f51496cb
d524724bee969c8c698daf61a3a047ad834f3543
/src/PathCompare.cxx
410ca1c67867da36d769991069de90a24968733f
[]
no_license
michelamichela/ITK-TubularGeodesics
69f59120c5bc3ebd64b8bb62ce07eb403f7513ba
426edc6b82fc4384da04f1f50d54f9874a56fa1d
refs/heads/master
2020-12-25T20:09:13.895887
2013-04-07T02:53:50
2013-04-07T02:53:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,661
cxx
//********************************************************** //Copyright 2012 Fethallah Benmansour // //Licensed under the Apache License, Version 2.0 (the "License"); //you may not use this file except in compliance with the License. //You may obtain a copy of the License at // //http://www.apache.org/licenses/LICENSE-2.0 // //Unless required by applicable law or agreed to in writing, software //distributed under the License is distributed on an "AS IS" BASIS, //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //See the License for the specific language governing permissions and //limitations under the License. //********************************************************** #if defined(_MSC_VER) #pragma warning ( disable : 4786 ) #endif #include <itkImageFileReader.h> // stl includes #include <iostream> #include<iterator> #include <vector> #include <string> const unsigned int Dimension = 3; typedef itk::Point<float, Dimension+1> TubularPointType; typedef std::vector<TubularPointType> TubularPathType; template <typename Point> bool readTubeFromSWCFile(const char *filename, std::vector<Point> &cl, unsigned int nrElementsPerLine = 7) { std::ifstream input(filename); //std::cout << filename<< std::endl; int linenr = 0; while (input) { ++linenr; std::string line; //Read line from file if (!std::getline(input, line)) break; if (line[0] == '#') continue; std::istringstream linestream(line.c_str()); std::vector<double> nrs; //Split line on spaces/tabs/newlines std::copy(std::istream_iterator<double>(linestream), std::istream_iterator<double>(), std::back_inserter(nrs)); //Check input: skip empty lines ... if (nrs.size() == 0) continue; // Check input: count number of elements on line ... if (nrs.size() != nrElementsPerLine) { std::cerr << "Error reading reconstruction: line " << linenr << " from file " << filename << std::endl; return false; } //Add point to centerline //here the radius is not included Point pt; unsigned int swc_offset = 2; for (unsigned int i = swc_offset; i < swc_offset+ Dimension+1; i++) { pt[i] = nrs[i]; } cl.push_back(pt); } return true; } void Usage(char* argv[]) { std::cerr << "Usage:" << std::endl; std::cerr << argv[0] << std::endl << "<testPath> <baselinePath> <meanDitanceThreshold>" << std::endl << std::endl << std::endl; } int main ( int argc, char* argv[] ) { if(argc < 4) { Usage( argv ); return EXIT_FAILURE; } unsigned int argumentOffset = 1; std::string testPathFileName = argv[argumentOffset++]; std::string bsPathFileName = argv[argumentOffset++]; double meanDistanceThrsh = atof(argv[argumentOffset++]); TubularPathType testPath, bsPath; testPath.clear(); bsPath.clear(); readTubeFromSWCFile<TubularPointType>(testPathFileName.c_str(), testPath); readTubeFromSWCFile<TubularPointType>(bsPathFileName.c_str(), bsPath); if(testPath.size() != bsPath.size()) { std::cerr << "Paths don't have the same length" << std::endl; return EXIT_FAILURE; } double distance = 0.0; for(unsigned int i = 0; i < testPath.size(); i++) { double d = 0.0; for (unsigned int j = 0; j < Dimension+1; j++) { d+= (testPath[i][j] - bsPath[i][j])*(testPath[i][j] - bsPath[i][j]); } d = sqrt(d); distance += d; } distance /= double(testPath.size()); if(distance > meanDistanceThrsh) { std::cerr << "mean distance greater than the threshold !!" << std::endl; std::cout << "mean distance point by point is " << distance << std::endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }
3c8ccfbf6866e88d63740e0c5ae101e36a3070b7
8bee6c7e6613a87b1e78572f49b8b04411a51974
/4pheptinhcoban.cpp
84f3ac006fa3c3015d5a1307ec715b7c4b877343
[]
no_license
Tanphong15987532/BT-GIT2
59480da4b3b701f4223b4d119811bc04addba48c
21f9a68a9988bdb11166ef347025706a9e87b0df
refs/heads/master
2023-01-02T01:35:42.626991
2020-10-30T16:06:06
2020-10-30T16:06:06
308,634,009
0
0
null
null
null
null
UTF-8
C++
false
false
789
cpp
#include <iostream> using namespace std; int tong(int a, int b); int hieu(int a, int b); int tich(int a, int b); float thuong(int a, int b); int main() { cout << "DAY LA CHUONG TRINH DE THUC HANH GIT"; int a = 10; int b = 2; int tongab= tong(a,b); int tichab= tich(a,b); float thuongab= thuong(a,b); cout<<"tong a + b = "<<tongab; cout<<"tich a * b = "<tichab; cout<<"thuong a / b = "<thuongab; int hieuab = hieu(a,b); cout <<"Hieu a - b = " << hieuab << endl; system("pause"); return 0; } int tong(int a, int b) { int tong=0; tong=a+b; return tong; } int tich(int a, int b) { int tich=0; tich=a*b; return tich; int hieu(int a, int b){ int sum = 0; sum = a - b; return b; } float thuong(int a, int b) { float thuong=0; thuong=a/b; return thuong; }
eb057c0b8c8db23e12d52edcb12c9324b6fef22b
b64d20711fa857b1a5149fb1bbfdda2a627cdde6
/cerberus_anymal_c_control_1/include/cerberus_anymal_c_control_1/controller/cpgController_j.hpp
e0c16f5aef205bd6e34e54ee205ce7f2bd54ec39
[ "BSD-3-Clause" ]
permissive
zdkhit/cerberus_anymal_locomotion
179c7423c2f4fa58f866e5c59c43ebc7ae5b6c28
0af0fe9cd26a8e80f729e031aee43da0b7062310
refs/heads/master
2023-02-25T12:04:17.240281
2021-02-01T12:38:48
2021-02-01T12:38:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
21,047
hpp
#ifndef RAI_QUADRUPEDCONTROLLER_HPP #define RAI_QUADRUPEDCONTROLLER_HPP #include <ros/console.h> #include <Eigen/Core> #include "string" #include "cerberus_anymal_utils/SimpleMLPLayer.hpp" #include "cerberus_anymal_utils/IK.hpp" #include "cerberus_anymal_utils/GraphLoader.hpp" # define M_PI 3.14159265358979323846 /* pi */ # define M_PI_2 1.57079632679489661923 /* pi/2 */ namespace RAI { class QuadrupedController { using Dtype = float; static constexpr int EstimationDim = 4; static constexpr int ObservationDim = 60; static constexpr int HistoryLength = 128; static constexpr int jointHistoryLength = 20; static constexpr unsigned int actionDimension = 16; static constexpr int stateDimension = 133; typedef typename Eigen::Matrix<double, 3, 1> AngularVelocity; typedef typename Eigen::Matrix<double, 3, 1> LinearVelocity; typedef typename Eigen::Matrix<double, 4, 1> Quaternion; typedef typename Eigen::Matrix<double, 3, 3> RotationMatrix; typedef typename Eigen::Matrix<double, 4, 1> Vector4d; typedef typename Eigen::Matrix<double, actionDimension, 1> Action; typedef typename Eigen::Matrix<Dtype, ObservationDim, 1> Observation; typedef typename Eigen::Matrix<Dtype, stateDimension, 1> State; typedef typename Eigen::VectorXd VectorXd; typedef typename Eigen::Matrix<Dtype, -1, 1> VectorXD; public: QuadrupedController() { footPositionOffset_ << 0.3 + 0.1, 0.2, h0_, 0.3 + 0.1, -0.2, h0_, -0.3 - 0.1, 0.2, h0_, -0.3 - 0.1, -0.2, h0_; jointNominalConfig_.setZero(12); Eigen::Vector3d sol; for (int i = 0; i < 4; i++) { IK_.solveIK(sol, footPositionOffset_.segment(3 * i, 3), i); jointNominalConfig_.segment(3 * i, 3) = sol; } observationOffset_ << 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, /// gravity axis VectorXD::Constant(6, 0.0), jointNominalConfig_.template cast<Dtype>(), VectorXD::Constant(12, 0.0), VectorXD::Constant(12, 0.0), VectorXD::Constant(8, 0.0), VectorXD::Constant(4, 0.0); observationScale_ << 1.5, 1.5, 1.5, /// command 5.0, 5.0, 5.0, /// gravity axis VectorXD::Constant(3, 2.0), VectorXD::Constant(3, 2.0), VectorXD::Constant(12, 2.0), /// joint angles 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, VectorXD::Constant(8, 1.5), VectorXD::Constant(4, 2.0 / freqScale_); /// state params stateOffset_ << 0.0, 0.0, 0.0, /// command 0.0, 0.0, 1.0, /// gravity axis VectorXD::Constant(6, 0.0), /// body lin/ang vel jointNominalConfig_.template cast<Dtype>(), /// joint position VectorXD::Constant(12, 0.0), /// position error VectorXD::Constant(12, 0.0), /// position error VectorXD::Constant(4, 0.0), VectorXD::Constant(8, 0.0), VectorXD::Constant(24, 0.0), VectorXD::Constant(24, 0.0), jointNominalConfig_.template cast<Dtype>(), jointNominalConfig_.template cast<Dtype>(), 0.0; stateScale_ << 1.5, 1.5, 1.5, /// command 5.0, 5.0, 5.0, /// gravity axis VectorXD::Constant(3, 2.0), VectorXD::Constant(3, 2.0), VectorXD::Constant(12, 2.0), /// joint angles 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, 6.5, 4.5, 3.5, VectorXD::Constant(4, 2.0 / freqScale_), VectorXD::Constant(8, 1.5), VectorXD::Constant(24, 5.0), /// joint position errors 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, 0.5, 0.4, 0.3, VectorXD::Constant(12, 2.0), VectorXD::Constant(12, 2.0), 2.0 / freqScale_; double amp1 = 0.5 * freqScale_, amp2 = 0.0; baseFreq_ = 1.3 * freqScale_; actionScale_ << amp1, amp1, amp1, amp1, VectorXd::Constant(12, 0.2); actionOffset_ << amp2, amp2, amp2, amp2, VectorXd::Constant(12, 0.0); for (size_t i = 0; i < 4; i++) { clearance_[i] = 0.2; } footPos_Target.resize(4); prevfootPos_Target.resize(4); prevfootPos_Target2.resize(4); //tensor config state_dims_inv.AddDim(1); state_dims_inv.AddDim(1); state_dims_inv.AddDim(stateDimension); state_tf_tensor = tensorflow::Tensor(tensorflow::DataType::DT_FLOAT, state_dims_inv); for (size_t i = 0; i < 4; i++) { piD_[i] = 0.0; footPos_Target[i] = footPositionOffset_.template segment<3>(3 * i); prevfootPos_Target[i] = footPositionOffset_.template segment<3>(3 * i); prevfootPos_Target2[i] = footPositionOffset_.template segment<3>(3 * i); } pi_[0] = 0.0; pi_[1] = M_PI; pi_[2] = M_PI; pi_[3] = 0.0; controlCounter = 0; stopCounter = 1000; baseFreq_ = 0.0; historyUpdateCounter = 0; scaledAction_ = actionOffset_; jointVelHist_.setZero(); jointPosHist_.setZero(); historyBuffer_.setZero(); jointPositionTarget_ = jointNominalConfig_; previousjointPositionTarget_ = jointPositionTarget_; previousjointPositionTarget2_ = jointPositionTarget_; command_.setZero(); } ~QuadrupedController() {} void reset(GraphLoader<Dtype> *graph, const Eigen::Matrix<double, 19, 1> &generalizedCoordinates, const Eigen::Matrix<double, 18, 1> &generalizedVelocities) { // = init() graph_ = graph; if (history_dims_inv.dims() != 3) { history_dims_inv.AddDim(1); history_dims_inv.AddDim(nStack_); history_dims_inv.AddDim(ObservationDim); history_tf_tensor = tensorflow::Tensor(tensorflow::DataType::DT_FLOAT, history_dims_inv); historyBuffer_.resize(ObservationDim, nStack_); } for (size_t i = 0; i < 4; i++) { piD_[i] = 0.0; footPos_Target[i] = footPositionOffset_.template segment<3>(3 * i); prevfootPos_Target[i] = footPositionOffset_.template segment<3>(3 * i); prevfootPos_Target2[i] = footPositionOffset_.template segment<3>(3 * i); } pi_[0] = 0.0; pi_[1] = M_PI; pi_[2] = M_PI; pi_[3] = 0.0; controlCounter = 0; stopCounter = 1000; baseFreq_ = 0.0; historyUpdateCounter = 0; scaledAction_ = actionOffset_; jointVelHist_.setZero(); jointPosHist_.setZero(); historyBuffer_.setZero(); jointPositionTarget_ = jointNominalConfig_; previousjointPositionTarget_ = jointPositionTarget_; previousjointPositionTarget2_ = jointPositionTarget_; observation_unscaled_.setZero(); state_unscaled_.setZero(); command_.setZero(); ///dummy call for memory allocation std::vector<tensorflow::Tensor> outputs; graph_->run({std::make_pair("state", state_tf_tensor), std::make_pair("history", history_tf_tensor)}, {"policy/actionDist"}, {}, outputs); /// fill in history buffer updateHistory(generalizedCoordinates, generalizedVelocities); for (int i = 1; i < nStack_; i++) { historyBuffer_.col(i) = historyBuffer_.col(0); } } void updateAction(Action action_in) { /// update buffer for (size_t i = 0; i < 4; i++) { prevfootPos_Target2[i] = prevfootPos_Target[i]; prevfootPos_Target[i] = footPos_Target[i]; } previousjointPositionTarget2_ = previousjointPositionTarget_; previousjointPositionTarget_ = jointPositionTarget_; scaledAction_ = action_in.cwiseProduct(actionScale_) + actionOffset_; /// update cpg for (size_t j = 0; j < 4; j++) { piD_[j] = scaledAction_[j] + baseFreq_; pi_[j] += piD_[j] * decimation; pi_[j] = anglemod(pi_[j]); } y_ << 0.0, e_g[2], -e_g[1]; y_.normalize(); x_ = y_.cross(e_g); // e_g cross y_; x_.normalize(); for (size_t i = 0; i < 4; i++) { double dh = 0.0; if (pi_[i] > 0.0) { double t = pi_[i] / M_PI_2; if (t < 1.0) { double t2 = t * t; double t3 = t2 * t; dh = (-2 * t3 + 3 * t2); } else { t = t - 1; double t2 = t * t; double t3 = t2 * t; dh = (2 * t3 - 3 * t2 + 1.0); } dh *= clearance_[i]; } footPos_Target[i][0] = footPositionOffset_.tail(12)[3 * i]; footPos_Target[i][1] = footPositionOffset_.tail(12)[3 * i + 1]; footPos_Target[i][2] = 0.0; footPos_Target[i] += e_g * (footPositionOffset_.tail(12)[3 * i + 2] + dh); // footPos_Target[i] += e_g * scaledAction_.tail(12)[3 * i + 2]; // footPos_Target[i] += x_ * scaledAction_.tail(12)[3 * i]; // footPos_Target[i] += y_ * scaledAction_.tail(12)[3 * i + 1]; Eigen::Vector3d target; Eigen::Vector3d sol; target = footPos_Target[i]; // IK_.solveIK(sol, target, i); jointPositionTarget_.segment<3>(3 * i) = sol; jointPositionTarget_(3 * i) += scaledAction_.tail(12)[3 * i];; jointPositionTarget_(3 * i + 1) += scaledAction_.tail(12)[3 * i + 1]; jointPositionTarget_(3 * i + 2) += scaledAction_.tail(12)[3 * i + 2];; } } void getDesJointPos(Eigen::Matrix<double, 12, 1> &output, const Eigen::Matrix<double, 19, 1> &generalizedCoordinates, const Eigen::Matrix<double, 18, 1> &generalizedVelocities, double headingVel, double lateralVel, double yawrate) { double norm = std::sqrt(headingVel * headingVel + lateralVel * lateralVel + yawrate * yawrate); if (norm < 0.05) { command_.setZero(); } else { double linvelNorm = std::sqrt(headingVel * headingVel + lateralVel * lateralVel); command_.setZero(); if (linvelNorm > 0.2) { double command_dir = std::atan2(lateralVel, headingVel); command_[0] = std::cos(command_dir); command_[1] = std::sin(command_dir); } command_[2] = std::max(std::min(yawrate, 0.8), -0.8); } if (command_.norm() > 0.1 || generalizedVelocities.head(2).norm() > 0.3 || e_g[2] < 0.5) { if (stopCounter > 1200) { // While standin -> reset phase to react faster (unsmooth) pi_[0] = 0.0; pi_[1] = M_PI; pi_[2] = M_PI; pi_[3] = 0.0; } stopCounter = 0; } else { stopCounter++; } if (historyUpdateCounter % ObservationStride_ == 0) { updateHistory(generalizedCoordinates, generalizedVelocities); historyUpdateCounter = 0; } if (controlCounter % decimation == 0) { // 8: 50 Hz // FSM if (stopCounter > 75) { bool check = true; for (int i = 0; i < 4; i++) {// Hack for nice looking stop if ((pi_[i] > -0.1 * M_PI) && (pi_[i] < 0.5 * M_PI)) check = false; } if (check || baseFreq_ < 1.3 * freqScale_) { // baseFreq_ = std::max(baseFreq_ - 0.05 * freqScale_, 0.0); baseFreq_ = 0.0; } } else { // baseFreq_ = std::min(baseFreq_ + 0.05 * freqScale_, 1.3 * freqScale_); baseFreq_ = 1.3 * freqScale_; } /// Get state conversion_GeneralizedState2LearningState(state_, generalizedCoordinates, generalizedVelocities); Eigen::Matrix<Dtype, actionDimension, 1> action_f_; std::memcpy(state_tf_tensor.template flat<Dtype>().data(), state_.data(), sizeof(Dtype) * stateDimension); std::memcpy(history_tf_tensor.template flat<Dtype>().data(), historyBuffer_.data(), sizeof(Dtype) * history_tf_tensor.NumElements()); std::vector<tensorflow::Tensor> outputs; graph_->run({std::make_pair("state", state_tf_tensor), std::make_pair("history", history_tf_tensor)}, {"policy/actionDist"}, {}, outputs); std::memcpy(action_f_.data(), outputs[0].template flat<Dtype>().data(), sizeof(Dtype) * actionDimension); action_ = action_f_.template cast<double>(); // std::cout << action_ << std::endl; /// update action updateAction(action_); controlCounter = 0; } // for (size_t i = 0; i < 4; i++) { // Eigen::Vector3d target = (controlCounter + 1) * footPos_Target[i]; // target += (decimation - 1 - controlCounter) * prevfootPos_Target[i]; // target *= 0.125; // Eigen::Vector3d sol; // IK_.solveIK(sol, target, i); // jointPositionTarget_.segment<3>(3 * i) = sol; // } output = jointPositionTarget_; tempHist_ = jointVelHist_; jointVelHist_.head(jointHistoryLength * 12 - 12) = tempHist_.tail(jointHistoryLength * 12 - 12); jointVelHist_.tail(12) = generalizedVelocities.tail(12).template cast<Dtype>(); tempHist_ = jointPosHist_; jointPosHist_.head(jointHistoryLength * 12 - 12) = tempHist_.tail(jointHistoryLength * 12 - 12); jointPosHist_.tail(12) = (jointPositionTarget_ - generalizedCoordinates.tail(12)).template cast<Dtype>(); controlCounter++; historyUpdateCounter++; }; void updateHistory(const VectorXd &q, const VectorXd &u) { Observation observation_scaled; Quaternion quat = q.template segment<4>(3); RotationMatrix R_b = quatToRotMat(quat); e_g = R_b.row(2).transpose(); /// velocity in body coordinate LinearVelocity bodyVel = R_b.transpose() * u.template segment<3>(0); AngularVelocity bodyAngVel = u.template segment<3>(3); VectorXd jointVel = u.template segment<12>(6); observation_unscaled_[0] = command_[0]; observation_unscaled_[1] = command_[1]; observation_unscaled_[2] = command_[2]; observation_unscaled_.template segment<3>(3) = e_g.template cast<Dtype>();; observation_unscaled_.template segment<3>(6) = bodyVel.template cast<Dtype>(); observation_unscaled_.template segment<3>(9) = bodyAngVel.template cast<Dtype>(); observation_unscaled_.template segment<12>(12) = q.tail(12). template cast<Dtype>(); /// position observation_unscaled_.template segment<12>(24) = jointVel.template cast<Dtype>(); observation_unscaled_.template segment<12>(36) = (jointPositionTarget_ - q.tail(12)).template cast<Dtype>(); for (size_t i = 0; i < 4; i++) { observation_unscaled_[48 + 2 * i] = std::sin(pi_[i]); observation_unscaled_[49 + 2 * i] = std::cos(pi_[i]); observation_unscaled_[56 + i] = piD_[i]; } observation_scaled = (observation_unscaled_ - observationOffset_).cwiseProduct(observationScale_); Eigen::Matrix<Dtype, ObservationDim, -1> temp; temp = historyBuffer_; historyBuffer_.block(0, 1, ObservationDim, nStack_ - 1) = temp.block(0, 0, ObservationDim, nStack_ - 1); historyBuffer_.col(0) = observation_scaled.template cast<Dtype>(); } static inline void QuattoEuler(const Quaternion &q, double &roll, double &pitch, double &yaw) { double ysqr = q[2] * q[2]; // roll (x-axis rotation) double t0 = +2.0 * (q[0] * q[1] + q[2] * q[3]); double t1 = +1.0 - 2.0 * (q[1] * q[1] + ysqr); roll = std::atan2(t0, t1); // pitch (y-axis rotation) double t2 = +2.0 * (q[0] * q[2] - q[3] * q[1]); t2 = t2 > 1.0 ? 1.0 : t2; t2 = t2 < -1.0 ? -1.0 : t2; pitch = std::asin(t2); // yaw (z-axis rotation) double t3 = +2.0 * (q[0] * q[3] + q[1] * q[2]); double t4 = +1.0 - 2.0 * (ysqr + q[3] * q[3]); yaw = std::atan2(t3, t4); } private: inline double anglediff(double target, double source) { //https://stackoverflow.com/questions/1878907/the-smallest-difference-between-2-angles return anglemod(target - source); } inline double anglemod(double a) { return wrapAngle((a + M_PI)) - M_PI; } inline double wrapAngle(double a) { double twopi = 2.0 * M_PI; return a - twopi * fastfloor(a / twopi); } inline int fastfloor(double a) { int i = int(a); if (i > a) i--; return i; } inline void conversion_GeneralizedState2LearningState(State &state, const VectorXd &q, const VectorXd &u) { Quaternion quat = q.template segment<4>(3); RotationMatrix R_b = quatToRotMat(quat); e_g = R_b.row(2).transpose(); /// velocity in body coordinate LinearVelocity bodyVel = R_b.transpose() * u.template segment<3>(0); AngularVelocity bodyAngVel = u.template segment<3>(3); VectorXd jointVel = u.template segment<12>(6); /// command slots state_unscaled_[0] = command_[0]; state_unscaled_[1] = command_[1]; state_unscaled_[2] = command_[2]; /// gravity vector state_unscaled_.template segment<3>(3) = e_g.template cast<Dtype>(); /// velocities state_unscaled_.template segment<3>(6) = bodyVel.template cast<Dtype>(); state_unscaled_.template segment<3>(9) = bodyAngVel.template cast<Dtype>(); state_unscaled_.template segment<12>(12) = q.template segment<12>(7). template cast<Dtype>(); state_unscaled_.template segment<12>(24) = jointVel.template cast<Dtype>(); state_unscaled_.template segment<12>(36) = jointPosHist_.template segment<12>((jointHistoryLength - 1) * 12); for (size_t i = 0; i < 4; i++) { state_unscaled_[48 + i] = piD_[i]; } int pos = 52; for (size_t i = 0; i < 4; i++) { state_unscaled_[pos + 2 * i] = std::sin(pi_[i]); state_unscaled_[pos + 1 + 2 * i] = std::cos(pi_[i]); } pos += 8; state_unscaled_.template segment<12>(pos) = jointPosHist_.template segment<12>((jointHistoryLength - 4) * 12); pos += 12; state_unscaled_.template segment<12>(pos) = jointPosHist_.template segment<12>((jointHistoryLength - 9) * 12); pos += 12; state_unscaled_.template segment<12>(pos) = jointVelHist_.template segment<12>((jointHistoryLength - 4) * 12); pos += 12; state_unscaled_.template segment<12>(pos) = jointVelHist_.template segment<12>((jointHistoryLength - 9) * 12); pos += 12; state_unscaled_.template segment<12>(pos) = previousjointPositionTarget_.template cast<Dtype>(); pos += 12; state_unscaled_.template segment<12>(pos) = previousjointPositionTarget2_.template cast<Dtype>(); pos += 12; state_unscaled_[pos] = baseFreq_; state = (state_unscaled_ - stateOffset_).cwiseProduct(stateScale_); } inline RotationMatrix quatToRotMat(Quaternion &q) { RotationMatrix R; R << q(0) * q(0) + q(1) * q(1) - q(2) * q(2) - q(3) * q(3), 2 * q(1) * q(2) - 2 * q(0) * q(3), 2 * q(0) * q(2) + 2 * q(1) * q(3), 2 * q(0) * q(3) + 2 * q(1) * q(2), q(0) * q(0) - q(1) * q(1) + q(2) * q(2) - q(3) * q(3), 2 * q(2) * q(3) - 2 * q(0) * q(1), 2 * q(1) * q(3) - 2 * q(0) * q(2), 2 * q(0) * q(1) + 2 * q(2) * q(3), q(0) * q(0) - q(1) * q(1) - q(2) * q(2) + q(3) * q(3); return R; } template<typename T> int sgn(T val) { return (T(0) < val) - (val < T(0)); } Eigen::Matrix<double, 12, 1> jointNominalConfig_; State stateOffset_; State stateScale_; Action actionOffset_; Action actionScale_; Action scaledAction_; Eigen::Matrix<double, 3, 1> e_g; Eigen::Matrix<double, 3, 1> x_, y_; Eigen::Matrix<Dtype, 3, 1> command_; Eigen::Matrix<Dtype, 12 * jointHistoryLength, 1> jointVelHist_, jointPosHist_, tempHist_; Observation observationScale_; Observation observationOffset_; std::vector<Eigen::Matrix<double, 3, 1>> footPos_Target; std::vector<Eigen::Matrix<double, 3, 1>> prevfootPos_Target; std::vector<Eigen::Matrix<double, 3, 1>> prevfootPos_Target2; Eigen::Matrix<double, 12, 1> footPositionOffset_; Eigen::Matrix<float, ObservationDim, -1> historyBuffer_; double h0_ = -0.55; double clearance_[4]; double freqScale_ = 0.0025 * 2.0 * M_PI; double baseFreq_ = 0.0; unsigned long int controlCounter = 0; unsigned long int stopCounter = 0; unsigned long int historyUpdateCounter = 0; unsigned long int decimation = 8; InverseKinematics IK_; tensorflow::TensorShape state_dims_inv; tensorflow::Tensor state_tf_tensor; tensorflow::TensorShape history_dims_inv; tensorflow::Tensor history_tf_tensor; GraphLoader<float> *graph_; public: double pi_[4]; double piD_[4]; Action action_; State state_; Observation observation_unscaled_; State state_unscaled_; Eigen::Matrix<double, 12, 1> jointPositionTarget_; Eigen::Matrix<double, 12, 1> previousjointPositionTarget_; Eigen::Matrix<double, 12, 1> previousjointPositionTarget2_; int ObservationStride_ = 8; int nStack_ = 100; }; } #endif //RAI_QUADRUPEDCONTROLLER_HPP
0e33dac51ab2a0a71c3c19bf58387115bcca2a9d
bdb1e24f0a0be7fd2d1c1a202fdb6f33b0b23dac
/Source/Utility/MythForest/Component/EnvCube/EnvCubeComponent.cpp
4ec6bcd2c3570b8c6d68f559116ae96a11f6a53a
[ "MIT" ]
permissive
paintdream/PaintsNow
42f297b9596d6f825017945d6ba24321fab0946e
71581a89585594c3b898959cea5ee9c52c9249ed
refs/heads/master
2023-08-17T13:52:49.714004
2023-08-07T14:21:01
2023-08-07T14:21:01
162,007,217
11
3
null
null
null
null
UTF-8
C++
false
false
923
cpp
#include "EnvCubeComponent.h" #include "../../Entity.h" using namespace PaintsNow; EnvCubeComponent::EnvCubeComponent() : range(1.0f, 1.0f, 1.0f), strength(1.0f) {} EnvCubeComponent::~EnvCubeComponent() {} Tiny::FLAG EnvCubeComponent::GetEntityFlagMask() const { return Entity::ENTITY_HAS_RENDERCONTROL | RenderableComponent::GetEntityFlagMask(); } uint32_t EnvCubeComponent::CollectDrawCalls(std::vector<OutputRenderData, DrawCallAllocator>& outputDrawCalls, const InputRenderData& inputRenderData, BytesCache& bytesCache, CollectOption option) { return 0; } TObject<IReflect>& EnvCubeComponent::operator () (IReflect& reflect) { BaseClass::operator () (reflect); if (reflect.IsReflectProperty()) { ReflectProperty(cubeMapTexture); } return *this; } void EnvCubeComponent::UpdateBoundingBox(Engine& engine, Float3Pair& box, bool recursive) { Math::Union(box, Float3(-range)); Math::Union(box, range); }
e2de38bd80bf2cfa5e38ca90f4721f5caee5acb0
04d0e82e894777fa64303627804af494275f39bb
/common/errutils.hpp
c312e8eb4695597146dc5846cbcd00e46e90956e
[ "MIT" ]
permissive
avtomaton/toolchain-cpp
1723d6e3f92327457dab54f9ef67d21c035f2318
69868a2b8328f5cf30f134303210d0306f76901e
refs/heads/master
2020-05-22T03:57:08.290711
2017-09-14T18:15:36
2017-09-14T18:15:36
53,838,481
1
1
null
2016-06-07T10:53:34
2016-03-14T08:18:15
C++
UTF-8
C++
false
false
3,405
hpp
#ifndef AIFIL_UTILS_ERRUTILS_H #define AIFIL_UTILS_ERRUTILS_H #include <string> #include <sstream> #include <stdexcept> #include <mutex> #include <atomic> #include <csignal> #include "c_attribs.hpp" #include "logging.hpp" #include "errstream.hpp" #ifdef __GNUC__ #define FUNC_SIGNATURE __PRETTY_FUNCTION__ #elif defined(_MSC_VER) #define FUNC_SIGNATURE __FUNCSIG__ #else #define FUNC_SIGNATURE __func__ #endif #define af_assert(exp) (void)( (exp) || (aifil::assertion_failed(#exp, __FILE__, __LINE__), 0) ) #ifdef _MSC_VER // use inline lambda instead of compound statement, seems working #define af_exception(msg) \ [](){\ std::stringstream message; \ message << msg; \ std::stringstream ss; \ ss << "Exception in file: " << __FILE__ \ << ", function: " << FUNC_SIGNATURE \ << ", line: " << __LINE__; \ throw aifil::Exception(message.str(), ss.str());\ }() #else // seems working in clang too, but not sure #define af_exception(msg) \ ({\ std::stringstream message; \ message << msg; \ std::stringstream ss; \ ss << "Exception in file: " << __FILE__ \ << ", function: " << FUNC_SIGNATURE \ << ", line: " << __LINE__; \ throw aifil::Exception(message.str(), ss.str());\ }) #endif namespace aifil { void assertion_failed(const char* cond, const char* file, unsigned lineno); // enable core dumps for debug builds void core_dump_enable(); #ifdef __GNUC__ /** * @brief Signal handler for printing backtrace into logs. * Prints backtrace and terminates application. * Should be set with the following: * @code * struct sigaction sa; * sa.sa_sigaction = aifil::signal_set_exit_with_backtrace; * // possibly set some flags * sigaction(SIGSEGV, &sa, NULL); * // sigaction(<some other signal>, %sa, NULL); * @endcode * @param sig [in] signal code (SIGSEGV, SIGILL etc.) * @param info [in] Some additional info added by sigaction. * @param ucontext [in] Signal context added by sigaction. */ void signal_set_exit_with_backtrace(int sig, siginfo_t *info, void *ucontext); #endif /** * @brief Return current backtrace with demangled calls. * @param max_frames [in] maximal frames in trace. * @param caller_addr [in] optional caller address for replacing signal handler. * @return Backtrace content. */ std::string pretty_backtrace(int max_frames = 50, void *caller_addr = 0); inline void except(bool condition, const std::string &error_message = "") { if (!condition) throw std::runtime_error(error_message); } // check condition inline void check( bool condition, const std::string &error_message = "", bool exception = false) { if (condition) return; if (exception) throw std::runtime_error(error_message); else log_error(error_message.c_str()); } class Exception : public std::exception { public: Exception(int code = -1, const std::string &message_ = "Description inaccessible", const std::string &debug_message = "") noexcept : err(code), message(message_), debug(debug_message) {} Exception(const std::string &message_, const std::string &debug_message = "") noexcept : Exception(-1, message_, debug_message) {} const char *what() const noexcept { return message.c_str(); } const char *debug_info() const noexcept { return debug.c_str(); } int errcode() const noexcept { return err; } private: protected: int err; std::string message; std::string debug; }; } //namespace aifil #endif //AIFIL_UTILS_ERRUTILS_H
a8e24863950bcff5b5470a01e7390bd7cf580b8f
a81c07a5663d967c432a61d0b4a09de5187be87b
/ash/wm/workspace/backdrop_controller.h
55934106f04b0ce298c5a9d740bc5dc48174672a
[ "BSD-3-Clause" ]
permissive
junxuezheng/chromium
c401dec07f19878501801c9e9205a703e8643031
381ce9d478b684e0df5d149f59350e3bc634dad3
refs/heads/master
2023-02-28T17:07:31.342118
2019-09-03T01:42:42
2019-09-03T01:42:42
205,967,014
2
0
BSD-3-Clause
2019-09-03T01:48:23
2019-09-03T01:48:23
null
UTF-8
C++
false
false
5,111
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WM_WORKSPACE_BACKDROP_CONTROLLER_H_ #define ASH_WM_WORKSPACE_BACKDROP_CONTROLLER_H_ #include <memory> #include "ash/accessibility/accessibility_observer.h" #include "ash/ash_export.h" #include "ash/public/cpp/split_view.h" #include "ash/public/cpp/tablet_mode_observer.h" #include "ash/public/cpp/wallpaper_controller_observer.h" #include "ash/shell_observer.h" #include "ash/wm/overview/overview_observer.h" #include "base/macros.h" #include "ui/gfx/geometry/rect.h" namespace aura { class Window; } namespace views { class Widget; } namespace ui { class EventHandler; } namespace ash { // A backdrop which gets created for a container |window| and which gets // stacked behind the top level, activatable window that meets the following // criteria. // // 1) Has a aura::client::kHasBackdrop property = true. // 2) Active ARC window when the spoken feedback is enabled. // 3) In tablet mode: // - Bottom-most snapped window in splitview, // - Top-most activatable window if splitview is inactive. class ASH_EXPORT BackdropController : public AccessibilityObserver, public ShellObserver, public OverviewObserver, public SplitViewObserver, public WallpaperControllerObserver, public TabletModeObserver { public: explicit BackdropController(aura::Window* container); ~BackdropController() override; void OnWindowAddedToLayout(); void OnWindowRemovedFromLayout(); void OnChildWindowVisibilityChanged(); void OnWindowStackingChanged(); void OnPostWindowStateTypeChange(); void OnDisplayMetricsChanged(); // Called when the desk content is changed in order to update the state of the // backdrop even if overview mode is active. void OnDeskContentChanged(); // Update the visibility of, and restack the backdrop relative to // the other windows in the container. void UpdateBackdrop(); // Returns the current visible top level window in the container. aura::Window* GetTopmostWindowWithBackdrop(); aura::Window* backdrop_window() { return backdrop_window_; } // ShellObserver: void OnSplitViewModeStarting() override; void OnSplitViewModeEnded() override; // OverviewObserver: void OnOverviewModeStarting() override; void OnOverviewModeEnding(OverviewSession* overview_session) override; void OnOverviewModeEndingAnimationComplete(bool canceled) override; // AccessibilityObserver: void OnAccessibilityStatusChanged() override; // SplitViewObserver: void OnSplitViewStateChanged(SplitViewState previous_state, SplitViewState state) override; void OnSplitViewDividerPositionChanged() override; // WallpaperControllerObserver: void OnWallpaperPreviewStarted() override; // TabletModeObserver: void OnTabletModeStarted() override; void OnTabletModeEnded() override; private: friend class WorkspaceControllerTestApi; void UpdateBackdropInternal(); void EnsureBackdropWidget(); void UpdateAccessibilityMode(); void Layout(); bool WindowShouldHaveBackdrop(aura::Window* window); // Show the backdrop window. void Show(); // Hide the backdrop window. If |destroy| is true, the backdrop widget will be // destroyed, otherwise it'll be just hidden. void Hide(bool destroy, bool animate = true); // Returns true if the backdrop window should be fullscreen. It should not be // fullscreen only if 1) split view is active and 2) there is only one snapped // window and 3) the snapped window is the topmost window which should have // the backdrop. bool BackdropShouldFullscreen(); // Gets the bounds for the backdrop window if it should not be fullscreen. // It's the case for splitview mode, if there is only one snapped window, the // backdrop should not cover the non-snapped side of the screen, thus the // backdrop bounds should be the bounds of the snapped window. gfx::Rect GetBackdropBounds(); // Sets the animtion type of |backdrop_window_| to |type|. void SetBackdropAnimationType(int type); // The backdrop which covers the rest of the screen. std::unique_ptr<views::Widget> backdrop_; // aura::Window for |backdrop_|. aura::Window* backdrop_window_ = nullptr; // The container of the window that should have a backdrop. aura::Window* container_; // Event hanlder used to implement actions for accessibility. std::unique_ptr<ui::EventHandler> backdrop_event_handler_; ui::EventHandler* original_event_handler_ = nullptr; // If true, skip updating background. Used to avoid recursive update // when updating the window stack, or delay hiding the backdrop // in overview mode. bool pause_update_ = false; DISALLOW_COPY_AND_ASSIGN(BackdropController); }; } // namespace ash #endif // ASH_WM_WORKSPACE_BACKDROP_CONTROLLER_H_
fcc1a4741856cc3171b6d10e86fd1f1907cece2b
39c885e8a20b9e7146f351fa43513837630f1ded
/webpagetest/agent/browser/ie/pagetest/PagetestReporting.h
56b071b4f9dea415ef11b0cae585b63787b1d69a
[]
no_license
youleiy/di
3f95ccef08708a48e7c265249b445bf1e80bdb06
a82782560b22df665575e662ea4c888d22e79f96
refs/heads/master
2021-01-14T09:41:57.667390
2014-01-01T04:27:20
2014-01-01T04:27:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,723
h
/* Copyright (c) 2005-2007, AOL, LLC. 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 company 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. */ #pragma once #include "ScriptEngine.h" namespace pagespeed { class PagespeedInput; class Results; } class CCDNEntry { public: CCDNEntry(void):isCDN(false){} CCDNEntry(const CCDNEntry& src){ *this = src; } ~CCDNEntry(void){} const CCDNEntry& operator =(const CCDNEntry& src) { name = src.name; isCDN = src.isCDN; provider = src.provider; return src; } CString name; CString provider; bool isCDN; }; class CPagetestReporting : public CScriptEngine { public: CPagetestReporting(void); virtual ~CPagetestReporting(void); enum _report_state { NONE, QUIT, QUIT_NOEND, DOC_END, TIMER, DOC_DONE }; double tmDoc; // calculated time to doc complete double tmLoad; // calculated load time double tmActivity; // calculated time to fully loaded double tmFirstByte; // calculated time to first byte double tmStartRender; // calculated time to render start double tmDOMElement; // calculated time to DOM Element double tmLastActivity; // time to last activity double tmBasePage; // time to the base page being complete int reportSt; // Done Reporting? DWORD basePageResult; // result of the base page CString basePageCDN; // CDN used by the base page (if any) CString basePageRTT; // RTT for the base page DWORD basePageAddressCount; DWORD msAFT; // AFT Time (if we're capturing it) DWORD msVisualComplete; // Visually complete time (only available with video capture) DWORD nDns; // number of DNS lookups DWORD nConnect; // number of connects DWORD nRequest; // number of requests DWORD nReq200; // number of requests OK DWORD nReq302; // number of redirects DWORD nReq304; // number of "Not Modified" DWORD nReq404; // number of "Not Found" DWORD nReqOther; // number of other reequests DWORD nDns_doc; // number of DNS lookups DWORD nConnect_doc; // number of connects DWORD nRequest_doc; // number of requests DWORD nReq200_doc; // number of requests OK DWORD nReq302_doc; // number of redirects DWORD nReq304_doc; // number of "Not Modified" DWORD nReq404_doc; // number of "Not Found" DWORD nReqOther_doc; // number of other reequests DWORD measurementType; // is the page web 1.0 or 2.0? CString logFile; // base file name for the log file CString linksFile; // location where we should save all links found on the page to CString s404File; // location where we should save all 404's from the page CString htmlFile; // location where we should save the page html out to CString cookiesFile; // location where we should save the cookies out to DWORD saveEverything; // Do we save out a waterfall image, reports and everything we have? DWORD captureVideo; // do we save out the images necessary to construct a video? DWORD checkOpt; // Do we run the optimization checks? DWORD noHeaders; DWORD noImages; CString somEventName; // name for the current web test MIB_TCPSTATS tcpStatsStart; // TCP stats at the start of the document MIB_TCPSTATS tcpStats; // TCP stats calculated double tcpRetrans; // rate of TCP retransmits (basically packet loss) DWORD labID; DWORD dialerID; DWORD connectionType; TCHAR descriptor[100]; TCHAR logUrl[1000]; DWORD build; CString version; DWORD experimental; DWORD screenShotErrors; DWORD includeHeader; DWORD includeObjectData; DWORD includeObjectData_Now; CString guid; CString pageUrl; SOCKADDR_IN pageIP; // IP address for the page (first IP address used basically) DWORD totalFlagged; // total number of flagged connections on the page DWORD maxSimFlagged; // Maximum number of simultaneous flagged connections DWORD flaggedRequests; // number of flagged requests CAtlList<CString> blockedRequests; // list of requests that were blocked CAtlList<CString> blockedAdRequests; // list of ad requests that were blocked // optimization aggregates DWORD gzipTotal; DWORD gzipTarget; DWORD minifyTotal; DWORD minifyTarget; DWORD compressTotal; DWORD compressTarget; virtual void Reset(void); virtual void ProcessResults(void); virtual void FlushResults(void); // database-friendly report virtual void GenerateLabReport(bool fIncludeHeader, CString &szLogFile); // detailed reporting information virtual void ReportRequest(CString & szReport, CWinInetRequest * r); virtual void GenerateReport(CString &szReport); virtual void ReportPageData(CString & buff, bool fIncludeHeader); virtual void ReportObjectData(CString & buff, bool fIncludeHeader); // internal helpers virtual void GenerateGUID(void); void cdnLookupThread(DWORD index); protected: CString GenerateSummaryStats(void); // optimization checks void CheckOptimization(void); void CheckGzip(); void CheckKeepAlive(); void CheckCDN(); void CheckCache(); void CheckCombine(); void CheckCookie(); void CheckMinify(); void CheckImageCompression(); void CheckEtags(); void CheckPageSpeed(); void ProtectedCheckPageSpeed(); void CheckCustomRules(); void SaveHTML(void); void SaveCookies(void); void Log404s(void); void PopulatePageSpeedInput(pagespeed::PagespeedInput* input); void StartCDNLookups(void); CRITICAL_SECTION csCDN; CAtlArray<CWinInetRequest *> cdnRequests; CAtlArray<HANDLE> hCDNThreads; CAtlList<DWORD> otherResponseCodes; CStringA html; pagespeed::Results* pagespeedResults; bool IsCDN(CWinInetRequest * w, CString &provider); CAtlList<CCDNEntry> cdnLookups; private: void SaveUrls(void); void GetLinks(CComQIPtr<IHTMLDocument2> &doc, CAtlList<CStringA> &urls); void SaveProgressImage(CxImage &img, CString file, bool resize, DWORD quality); void SaveStatusUpdates(CString file); void SaveBodies(CString file); void SaveCustomMatches(CString file); void SortEvents(); DWORD CalculateAFT(); void SaveVideo(); bool ImagesAreDifferent(CxImage * img1, CxImage* img2); void SaveHistogram(CxImage& image, CString file); CStringA JSONEscape(CStringA src); };
9354af605e044b8ae52b76d9d914793c6c4773bf
36183993b144b873d4d53e7b0f0dfebedcb77730
/GameDevelopment/Ultimate 3D Game Engine Design and Architecture/BuildingBlocksEngine/source/temp/RigidBox.cpp
4b5a63b139321ad8dd8d2378ee446b27dffdf1c1
[]
no_license
alecnunn/bookresources
b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0
4562f6430af5afffde790c42d0f3a33176d8003b
refs/heads/master
2020-04-12T22:28:54.275703
2018-12-22T09:00:31
2018-12-22T09:00:31
162,790,540
20
14
null
null
null
null
UTF-8
C++
false
false
2,076
cpp
/* Building Blocks Engine Ultimate Game Engine Design and Architecture (2006) Created by Allen Sherrod */ #include<RigidBox.h> DECLARE_ENGINE_NAMESPACE RigidBox::RigidBox() { m_width = 0.0f; m_height = 0.0f; m_depth = 0.0f; m_obb.SetAxis1(Vector3D(1.0f, 0.0f, 0.0f)); m_obb.SetAxis2(Vector3D(0.0f, 1.0f, 0.0f)); m_obb.SetAxis3(Vector3D(0.0f, 0.0f, 1.0f)); m_obb.SetCenter(Vector3D(0.0f, 0.0f, 0.0f)); } RigidBox::RigidBox(float width, float height, float depth) { m_width = width; m_height = height; m_depth = depth; m_obb.SetAxis1(Vector3D(1.0f, 0.0f, 0.0f)); m_obb.SetAxis2(Vector3D(0.0f, 1.0f, 0.0f)); m_obb.SetAxis3(Vector3D(0.0f, 0.0f, 1.0f)); m_obb.SetCenter(Vector3D(0.0f, 0.0f, 0.0f)); } RigidBox::~RigidBox() { } void RigidBox::SetDimensions(float width, float height, float depth) { m_width = width; m_height = height; m_depth = depth; m_volume = m_width * m_height * m_depth; Vector3D half(width * 0.5f, height * 0.5f, depth * 0.5f); m_radiusSqr = half.Magnitude(); m_obb.SetHalfAxis1(width * 0.5f); m_obb.SetHalfAxis2(height * 0.5f); m_obb.SetHalfAxis3(depth * 0.5f); m_recalInertiaTensor = true; } OBB RigidBox::GetOBBWorldSpace() { OBB obb; obb.ObjectTransform(m_obb, m_worldMat); return obb; } scalar RigidBox::GetDragArea() { // return 0; } scalar RigidBox::GetDragCoefficient() { return 0.95f; } scalar RigidBox::GetLiftCoefficient() { return 0; } scalar RigidBox::GetVolumeUnderHeight(float height) { // return 0; } void RigidBox::CalcInertiaTensor() { scalar w2 = m_width * m_width; scalar h2 = m_height * m_height; scalar d2 = m_depth * m_depth; m_inertiaTensor.matrix[0] = m_mass * (h2 + d2); m_inertiaTensor.matrix[5] = m_mass * (w2 + d2); m_inertiaTensor.matrix[10] = m_mass * (w2 + h2); m_inertiaTensorInv.matrix[0] = 1 / m_inertiaTensor.matrix[0]; m_inertiaTensorInv.matrix[5] = 1 / m_inertiaTensor.matrix[5]; m_inertiaTensorInv.matrix[10] = 1 / m_inertiaTensor.matrix[10]; } END_ENGINE_NAMESPACE
ade6fdf199fdc32fa273b647b39296c30eb068ab
24ce143a62abc3292c858fc17964c753106c8e3f
/closestInBST.cpp
9525fded17ab0b559c3713e2b14acac0b372e7f6
[]
no_license
code-ayush07/Daily-DSA
5249ce654b4bbe0d7f3beded3bfa0b6844299fbe
3f4f69266b40141bc683c553a735bf58f3aef8ae
refs/heads/master
2023-02-22T09:18:08.279554
2021-01-28T16:00:31
2021-01-28T16:00:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
305
cpp
int ans; int k; void inOrder(Node* root) { if(root == NULL) { return; } inOrder(root->left); ans = min(ans, abs(root->data - k)); inOrder(root->right); } int minDiff(Node *root, int K) { ans = INT_MAX; k =K; inOrder(root); return ans; }
4f956d128ed55e3cb2b61688a8b3cfe0d8ba024f
33691f66e73fdfe7d90caebf51bc39b60ffd8a38
/UserInterface/EntityOperation.cpp
be6b0b123dbb59768ea8a5f58f855d193930186b
[]
no_license
Frenor/CCCP
9bc494dc5ed0bc049dc71a3735897ea33e663bbf
91994c73af62aa6f3c1b7a812ee1ae6f8092a30a
refs/heads/master
2020-05-07T09:23:06.667397
2014-11-24T16:30:43
2014-11-24T16:30:43
25,698,291
1
0
null
null
null
null
UTF-8
C++
false
false
1,376
cpp
#include "EntityOperation.h" EntityOperation::EntityOperation(QObject* model, QObject *parent) : QObject(parent) { resetOperation(); connect(model, SIGNAL(activeEntityChanged(Entity*)), this, SLOT(newSelection(Entity*))); connect(model, SIGNAL(entityDeleted(Entity*)), this, SLOT(removeEntity(Entity*))); connect(this, SIGNAL(execute(EntityOperation*)), model, SLOT(executeEntityOperation(EntityOperation*))); } void EntityOperation::resetOperation() { entity1 = NULL; entity2 = NULL; operation = -1; locked = false; } void EntityOperation::setEntityOperation(int operation) { this->operation = operation; execute(); } void EntityOperation::removeEntity(Entity* entity) { if(entity1 == entity) { entity1 = NULL; } if(entity2 == entity) { entity2 = NULL; } } void EntityOperation::newSelection(Entity * entity) { if(!locked) { if(!entity) { resetOperation(); return; } else if(!entity->isEmpty()) { if(!this->entity1) { this->entity1 = entity; } else if(this->entity1 != entity) { this->entity2 = entity; execute(); } } } } void EntityOperation::execute() { if(hasValidOperation()) { locked = true; emit execute(this); resetOperation(); } } bool EntityOperation::hasValidOperation() { if(!locked) { if(entity1 && entity2 && operation >= 0) { return true; } } return false; }
32d6f31bf94eb4f4ac23fab93e7b985097b6d724
03af5552b327510cd100fc2f5aa0ca9f867a40a4
/log_test.cpp
3423616125985f91d1384315462837bb71285264
[]
no_license
ICKelin/clog
424b8fc5daff750f071aae3ae63fb764ed279b41
7600864382819f07319dbb9991286a425fd025fc
refs/heads/master
2021-01-19T17:28:14.454224
2017-04-11T16:05:34
2017-04-11T16:05:34
88,324,831
0
0
null
null
null
null
UTF-8
C++
false
false
1,468
cpp
#ifdef _WIN32 #include <windows.h> #else #include <stdio.h> #include <pthread.h> #include <sys/types.h> #include <sys/syscall.h> #include "printlog.h" #endif #ifdef _WIN32 DWORD WINAPI thread_func(LPVOID param) { #else void *thread_func(void *args) { #endif for (int i = 0; i < 100; i++) { _printlog(__FILE__, __LINE__, PRIORITY_UNKNOWN, "test tid %d",i); } return 0; } int main() { initlogs("", 1000, "./", 1, 1024); _printlog(__FILE__, __LINE__, PRIORITY_UNKNOWN, "test"); _printlog(__FILE__, __LINE__, PRIORITY_NOTSET, "test"); _printlog(__FILE__, __LINE__, PRIORITY_TRACE, "test"); _printlog(__FILE__, __LINE__, PRIORITY_DEBUG, "test"); _printlog(__FILE__, __LINE__, PRIORITY_INFO, "test"); _printlog(__FILE__, __LINE__, PRIORITY_NOTICE, "test"); _printlog(__FILE__, __LINE__, PRIORITY_WARN, "test"); _printlog(__FILE__, __LINE__, PRIORITY_ERROR, "test"); _printlog(__FILE__, __LINE__, PRIORITY_CRIT, "test"); _printlog(__FILE__, __LINE__, PRIORITY_ALERT, "test"); _printlog(__FILE__, __LINE__, PRIORITY_FATAL, "test"); // 多线程测试 #ifdef _WIN32 HANDLE tids[4]; #else pthread_t tids[4]; #endif for (int i = 0; i < 4; i++) { #ifdef _WIN32 tids[i] = CreateThread(NULL, 0, thread_func, NULL, 0, NULL); #else pthread_create(&tids[i], NULL, thread_func, NULL); #endif } for (int i = 0; i < 4; i++) { #ifdef _WIN32 while(WaitForSingleObject(handle, INFINITE) != WAIT_OBJECT_0); #else pthread_join(tids[i], NULL); #endif } }
3328dd9c0dc5f1cd4c38155b05a2c213db218818
4dbb45758447dcfa13c0be21e4749d62588aab70
/iOS/Classes/Native/mscorlib_System_Collections_Generic_Dictionary_2_g3327233862.h
7506ed0b1a5a7180a7a9242859ebd885fb8bad71
[ "MIT" ]
permissive
mopsicus/unity-share-plugin-ios-android
6dd6ccd2fa05c73f0bf5e480a6f2baecb7e7a710
3ee99aef36034a1e4d7b156172953f9b4dfa696f
refs/heads/master
2020-12-25T14:38:03.861759
2016-07-19T10:06:04
2016-07-19T10:06:04
63,676,983
12
0
null
null
null
null
UTF-8
C++
false
false
7,931
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Int32[] struct Int32U5BU5D_t3230847821; // System.Collections.Generic.Link[] struct LinkU5BU5D_t375419643; // UnityEngine.Canvas[] struct CanvasU5BU5D_t2903919733; // UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>[] struct IndexedSet_1U5BU5D_t1435227950; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Canvas> struct IEqualityComparer_1_t3518175168; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t2185721892; // System.Collections.Generic.Dictionary`2/Transform`1<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>,System.Collections.DictionaryEntry> struct Transform_1_t2913242161; #include "mscorlib_System_Object4170816371.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>> struct Dictionary_2_t3327233862 : public Il2CppObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t3230847821* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t375419643* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots CanvasU5BU5D_t2903919733* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots IndexedSet_1U5BU5D_t1435227950* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp Il2CppObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t2185721892 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___table_4)); } inline Int32U5BU5D_t3230847821* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t3230847821** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t3230847821* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier(&___table_4, value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___linkSlots_5)); } inline LinkU5BU5D_t375419643* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t375419643** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t375419643* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier(&___linkSlots_5, value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___keySlots_6)); } inline CanvasU5BU5D_t2903919733* get_keySlots_6() const { return ___keySlots_6; } inline CanvasU5BU5D_t2903919733** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(CanvasU5BU5D_t2903919733* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier(&___keySlots_6, value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___valueSlots_7)); } inline IndexedSet_1U5BU5D_t1435227950* get_valueSlots_7() const { return ___valueSlots_7; } inline IndexedSet_1U5BU5D_t1435227950** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(IndexedSet_1U5BU5D_t1435227950* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier(&___valueSlots_7, value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___hcp_12)); } inline Il2CppObject* get_hcp_12() const { return ___hcp_12; } inline Il2CppObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(Il2CppObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier(&___hcp_12, value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___serialization_info_13)); } inline SerializationInfo_t2185721892 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t2185721892 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t2185721892 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier(&___serialization_info_13, value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t3327233862_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t2913242161 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t3327233862_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t2913242161 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t2913242161 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t2913242161 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier(&___U3CU3Ef__amU24cacheB_15, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
691066a9f3540b8b2cb04b881c98f4216da53080
22f801ef0ad614dfe3584cc88e8ee9af4423d504
/MbedQuadCopter/SystemCalibrators/CalibrationControllers/IMUSensors/SensorCalibrationControllers/XYZAxisCalController/XYZAxisCalController.h
fa0a9760bc533581e405f10caf52925ff9046bc3
[]
no_license
Scubaboy/MbedQuad
007ee11a7dd5be4daea306a6f955c5a866a3c2e4
5a02ce4d27cc66224c20403d99a941a4245755b5
refs/heads/master
2021-01-10T15:36:52.590917
2015-11-06T15:46:54
2015-11-06T15:46:54
45,548,575
0
0
null
null
null
null
UTF-8
C++
false
false
2,786
h
#ifndef XYZAxisCalController_H #define XYZAxisCalController_H #include "BaseCalibrationController.h" #include "BaseDataStorageController.h" #include "UserResponce.h" #include "SensorBase.h" #include "BaseThreeAxisFlightData.h" #include "XYZAxisMinMax.h" #include "XYZAxisCalCtrlTypes.h" class XYZAxisCalController : public BaseCalibrationController { public: XYZAxisCalController (BaseDataStorageController* dataStorageController, XYZAxisMinMax::XYZAxisMinMaxCalData *calData, BaseThreeAxisFlightData::BaseThreeAxisFlightDataStruct* flightData, UserResponce::UserResponceStruct* userResponce, SensorBase* sensor, const XYZAxisCalCtrlTypes::AxisCalNameLookup* lookUp); virtual bool RunCalibration(); virtual bool CheckAndUseStoredCalData() = 0; virtual bool WriteCalDataToDataStore() = 0; private: void CompileRequest(const char* msg, int len, bool reSend); bool CalibrateAxis(); bool RunAxisCalibration(XYZAxisCalCtrlTypes::Axis axis, XYZAxisCalCtrlTypes::AxisMinMax minMax); float AverageReading(XYZAxisCalCtrlTypes::Axis axis); void SendInstruction(XYZAxisCalCtrlTypes::Axis axis, XYZAxisCalCtrlTypes::AxisMinMax minMax); virtual bool SendRequest(char* msg, int len, bool reSend = true); public: template <class ClassT> void SendRequest(ClassT *ptr, bool(ClassT::*pFunc)(char* data, const int DataLength, bool confRequired)) { this->sendRequestrptr = (FunctionPtrInternal*)ptr; this->methodCallbackSendRequest = (bool (FunctionPtrInternal::*)(char* data, const int DataLength, bool confRequired))pFunc; } public: CalStructure::CalMemStructure calibrationData; private: FunctionPtrInternal* sendRequestrptr; bool (FunctionPtrInternal::*methodCallbackSendRequest)(char* data, const int DataLength, bool confRequired); XYZAxisMinMax::XYZAxisMinMaxCalData *calData; BaseThreeAxisFlightData::BaseThreeAxisFlightDataStruct* flightData; SensorBase* sensor; bool calComplete; XYZAxisCalCtrlTypes::Stages calStage; XYZAxisCalCtrlTypes::Axis axisUnderCal; XYZAxisCalCtrlTypes::AxisMinMax axisMag; XYZAxisCalCtrlTypes::AxisCalStages axisCalStage; BaseDataStorageController* dataStorageController; UserResponce::UserResponceStruct* userResponce; int samplesTaken; DigitalOut test; bool waitingLastSend; float lastReading; const XYZAxisCalCtrlTypes::AxisCalNameLookup* lookUp; }; #endif
b6b6f3c8d997005fe16894cf66792289ccbca038
aa07db86d2abb542f04f3652dbff85c2d3aecdbd
/Chimera/AlertSystem.h
bfd3531f384994717daaccdb1fcdaaf5c924ff70
[]
no_license
KaufmanLabJILA/Chimera-Control-Master
3604ed5be843388e113ffe47aee48b4d41c2c0bf
8ae17f4f562ca899838f6fbea71fc431981efe98
refs/heads/master
2023-08-21T10:24:30.614463
2022-01-18T22:42:35
2022-01-18T22:42:35
105,817,176
6
3
null
2019-08-15T16:57:10
2017-10-04T20:52:16
C++
UTF-8
C++
false
false
1,280
h
#pragma once #include "Control.h" #include <Mmsystem.h> #include <mciapi.h> #include "cameraPositions.h" #pragma comment(lib, "Winmm.lib") class AlertSystem { public: AlertSystem() : alertMessageID{ 0 } { // load the music! mciSendString( cstr( str( "open \"" ) + MUSIC_LOCATION + "\" type mpegvideo alias mp3" ), NULL, 0, NULL ); } ~AlertSystem() { mciSendString( "close mp3", NULL, 0, NULL ); } void initialize( cameraPositions& positions, CWnd* parent, bool isTriggerModeSensitive, int& id, cToolTips& tooltips ); void alertMainThread( int level ); void soundAlert(); void rearrange( std::string cameraMode, std::string triggerMode, int width, int height, fontMap fonts ); UINT getAlertThreshold(); UINT getAlertMessageID(); void setAlertThreshold(); bool alertsAreToBeUsed(); bool soundIsToBePlayed(); void playSound(); void stopSound(); bool wantsAutoPause( ); private: Control<CStatic> title; Control<CButton> alertsActiveCheckBox; Control<CStatic> alertThresholdText; Control<CEdit> alertThresholdEdit; Control<CButton> soundAtFinshCheck; Control<CButton> autoPauseAtAlert; int alertThreshold; bool useAlerts; bool autoPause; UINT alertMessageID = 0; };
83916b8d2be0d97d432fb5fb255a39970e8b2bfc
5504604c135cc7d171c6cfedb055416fd24e98ab
/Snake from NOKIA 3310/TTT_Menu.cpp
6e16ce3146f2fd0cc4081efbb4c3d81f39554354
[]
no_license
hakerg/Snake-from-NOKIA-3310
5732c5bada6f74b795be39b2d34f2effc8afc388
384e9e2ea1db6a1ea49ddf7bede35e900c604f9b
refs/heads/master
2020-03-22T05:53:12.468756
2018-07-03T20:40:23
2018-07-03T20:40:23
139,597,010
0
0
null
null
null
null
UTF-8
C++
false
false
406
cpp
#include "TTT_Menu.h" #include "Scene_Manager.h" #include "TTT_New_Select.h" #include "TTT_Gameplay.h" TTT_Menu::TTT_Menu() : Menu({ 0 }, { "Nowa gra", "Demo" }) { } TTT_Menu::~TTT_Menu() { } void TTT_Menu::item_selected(int id) { switch (id) { case 0: Scene_Manager::go_to_scene(new TTT_New_Select); break; case 1: Scene_Manager::go_to_scene(new TTT_Gameplay(false, false)); break; } }
94153731d76f1513dab682e97b9ae0e3f18903a4
c5a921726a3805663d26a2dbaa47e49497931d4e
/Accelerated_C++/chap6/urls/urls.cpp
7e8eb42052d837e5f45860d30182ccdabb36134b
[]
no_license
snowdj/cs_course
a50d07548198b4202e8abde01ec572e2cce38ab3
fa6504cb5145d10952f4615478fa745f4b35ba13
refs/heads/master
2020-03-17T15:18:52.190747
2018-05-13T08:08:51
2018-05-13T08:08:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,312
cpp
#include <string> #include <vector> #include <cctype> #include <algorithm> #include "urls.h" using namespace std; vector<string> find_urls(const string& s) { vector<string> ret; typedef string::const_iterator iter; iter b = s.begin(), e = s.end(); while (b != e) { b = url_beg(b,e); if (b!= e) { iter after = url_end(b,e); ret.push_back(string(b,after)); b = after; } } return ret; } string::const_iterator url_end(string::const_iterator b, string::const_iterator e) { return find_if(b,e, not_url_char); } bool not_url_char(char c) { static const string url_ch = "~;/?:@=&$-_.+!*'(),"; return !(isalnum(c) || find(url_ch.begin(), url_ch.end(), c) != url_ch.end()); } string::const_iterator url_beg(string::const_iterator b, string::const_iterator e) { static const string sep = "://"; typedef string::const_iterator iter; iter i = b; while ((i = search(i, e, sep.begin(), sep.end())) != e) { if (i != b && i + sep.size()!=e){ iter beg = i; while (beg != b && isalpha(beg[-1])) --beg; if (beg != i && !not_url_char(i[sep.size()])) return beg; } i += sep.size(); } return e; }
010b2a206cf4438d16b9ec7cb4224892be35a8ac
f753c6173870b72768fe106715b5cbe8496b9a89
/private/src/avb_streamhandler/IasAvbClockDomain.cpp
274f972846f9b20b773cb2c5a5d8d2d7a6661fff
[ "BSL-1.0", "BSD-3-Clause" ]
permissive
intel/AVBStreamHandler
3615b97a799a544b2b3847ad9f5f69902fbcab6e
45558f68e84cc85fa38c8314a513b876090943bd
refs/heads/master
2023-09-02T13:13:49.643816
2022-08-04T22:47:26
2022-08-04T22:47:26
145,041,581
17
24
NOASSERTION
2019-04-11T23:04:57
2018-08-16T21:38:32
C++
UTF-8
C++
false
false
7,885
cpp
/* * Copyright (C) 2018 Intel Corporation. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ /** * @file IasAvbClockDomain.cpp * @brief The implementation of the IasAvbClockDomain class. * @date 2013 */ #include "avb_streamhandler/IasAvbClockDomain.hpp" #include "avb_streamhandler/IasAvbStreamHandlerEnvironment.hpp" #include <cmath> #include <dlt_cpp_extension.hpp> namespace IasMediaTransportAvb { static const std::string cClassName = "IasAvbClockDomain::"; #define LOG_PREFIX cClassName + __func__ + "(" + std::to_string(__LINE__) + "):" /* * Constructor. */ IasAvbClockDomain::IasAvbClockDomain(DltContext &dltContext, IasAvbClockDomainType type) : mType(type) , mTimeConstant(0.0) , mAvgCallsPerSec(1) , mRateRatio(1.0) , mCompensation(1.0) , mEventCount(0u) , mEventRate(0u) , mEventTimeStamp(0u) , mRateRatioSlow(1.0) , mRateRatioFast(1.0) , mCoeffSlowLocked(0.0) , mCoeffSlowUnlocked(0.0) , mCoeffFastLocked(0.0) , mCoeffFastUnlocked(0.0) , mThresholdSlowLow(0.0) , mThresholdSlowHigh(0.0) , mThresholdFastLow(0.0) , mThresholdFastHigh(0.0) , mInitialValue(1.0) , mDerivationFactorUnlock(1.0) , mDerivationFactorLongTerm(1.0) , mLockState(eIasAvbLockStateInit) , mLock() , mDebugCount(0u) , mDebugUnlockCount(0u) , mDebugLockedPercentage(1.0) , mDebugMinRatio(1.0/0.0) , mDebugMaxRatio(0.0) , mDebugOver(0u) , mDebugUnder(0u) , mDebugIn(0u) , mClient(NULL) , mDebugLogInterval(5u) , mResetRequest(false) , mClockId(-1) , mLog(&dltContext) { (void) IasAvbStreamHandlerEnvironment::getConfigValue(IasRegKeys::cDebugClkDomainIntvl, mDebugLogInterval); } /* * Destructor. */ IasAvbClockDomain::~IasAvbClockDomain() { // do nothing } void IasAvbClockDomain::updateRateRatio(double newRatio) { // sanity check, needed for ptp epoch changes if ((newRatio < 0.0) || (newRatio > 10.0)) { return; } const bool locked1high = (newRatio < (mThresholdFastHigh * mRateRatioFast)); const bool locked1low = (newRatio > (mThresholdFastLow * mRateRatioFast)); const bool locked1 = locked1high && locked1low; if (eIasAvbLockStateLocked == mLockState) { smooth(mRateRatioSlow, newRatio, mCoeffSlowLocked); smooth(mRateRatioFast, newRatio, mCoeffFastLocked); } else { smooth(mRateRatioSlow, newRatio, mCoeffSlowUnlocked); smooth(mRateRatioFast, newRatio, mCoeffFastUnlocked); } mDebugMinRatio = newRatio < mDebugMinRatio ? newRatio : mDebugMinRatio; mDebugMaxRatio = newRatio > mDebugMaxRatio ? newRatio : mDebugMaxRatio; smooth( mDebugLockedPercentage, locked1 ? 1.0 : 0.0, mCoeffFastUnlocked ); mDebugOver += locked1high ? 0 : 1; mDebugUnder += locked1low ? 0 : 1; mDebugIn += locked1 ? 1 : 0; const double rateRatioMax = mThresholdSlowHigh * mRateRatioSlow; const double rateRatioMin = mThresholdSlowLow * mRateRatioSlow; const bool locked2 = (mRateRatioFast < rateRatioMax) && (mRateRatioFast > rateRatioMin); if (mDebugCount++ > (mAvgCallsPerSec * mDebugLogInterval)) { mDebugCount = 0u; DLT_LOG_CXX(*mLog, DLT_LOG_DEBUG, LOG_PREFIX, "clock[", int32_t(mType), "/", uint64_t(this), "]:", newRatio, mRateRatioFast, mRateRatioSlow, (locked1 ? "1" : "-"), (locked2 ? "2" : "-"), (mLockState == eIasAvbLockStateLocked ? "L" : "-"), mDebugUnlockCount); DLT_LOG_CXX(*mLog, DLT_LOG_VERBOSE, LOG_PREFIX, "clock[", int32_t(mType), "/", uint64_t(this), "]: max", mDebugMaxRatio, "min", mDebugMinRatio, "locked1", mDebugLockedPercentage, mDebugOver, "/", mDebugIn, "/", mDebugUnder, float( mDebugOver ) / float( mDebugUnder )); mDebugMinRatio = 1.0/0.0; mDebugMaxRatio = 0.0; } if (NULL != mClient) { mClient->notifyUpdateRatio(this); } switch (mLockState) { case eIasAvbLockStateInit: mRateRatioSlow = mInitialValue; mRateRatioFast = mInitialValue; // fall-through case eIasAvbLockStateUnlocked: mLockState = eIasAvbLockStateLocking; // fall-through case eIasAvbLockStateLocking: if (locked1 && locked2) { mLockState = eIasAvbLockStateLocked; lockStateChanged(); } break; case eIasAvbLockStateLocked: if (!locked2) { mLockState = eIasAvbLockStateUnlocked; lockStateChanged(); mDebugUnlockCount++; } break; default: break; } mRateRatio = mRateRatioFast > rateRatioMax ? rateRatioMax : (mRateRatioFast < rateRatioMin ? rateRatioMin : mRateRatioFast); mRateRatio *= mCompensation; } IasAvbProcessingResult IasAvbClockDomain::setDriftCompensation(int32_t val) { IasAvbProcessingResult ret = eIasAvbProcOK; /* * The following is a simple linear approximation of pow(mRatioBendMax, -relFillLevel) within the required range */ if ((val >= 0) && (val <= 1000000)) { mCompensation = 1.0 / (1.0 + (double(val) * 1e-6)); } else if ((val < 0) && (val >= -1000000)) { mCompensation = 1.0 + (double(-val) * 1e-6); } else { // relFillLevel out of range ret = eIasAvbProcInvalidParam; } return ret; } void IasAvbClockDomain::lockStateChanged() { if (NULL != mClient) { mClient->notifyUpdateLockState(this); } else { /** * @log Change in the clock domain lock state but the client is null, unable to notify. */ DLT_LOG_CXX(*mLog, DLT_LOG_VERBOSE, LOG_PREFIX, "no client"); } } void IasAvbClockDomain::setInitialValue(double initVal) { if (initVal >= 0.0) { mInitialValue = initVal; } } void IasAvbClockDomain::setFilter(double timeConstant, uint32_t avgCallsPerSec) { if (timeConstant >= 0.0) { mTimeConstant = timeConstant; mAvgCallsPerSec = avgCallsPerSec; const double tc = timeConstant * double(avgCallsPerSec); mCoeffFastLocked = calculateCoefficient(tc); mCoeffFastUnlocked = calculateCoefficient(tc * mDerivationFactorUnlock); mCoeffSlowLocked = calculateCoefficient(tc * mDerivationFactorLongTerm); mCoeffSlowUnlocked = calculateCoefficient(tc * mDerivationFactorLongTerm * mDerivationFactorUnlock); DLT_LOG_CXX(*mLog, DLT_LOG_DEBUG, LOG_PREFIX, "[IasAvbClockDomain::setFilter] tc=", mTimeConstant, mAvgCallsPerSec, "call/sec (", mCoeffFastLocked, "/", mCoeffFastUnlocked, "/", mCoeffSlowLocked, "/", mCoeffSlowUnlocked); if (mLockState > eIasAvbLockStateUnlocked) { mLockState = eIasAvbLockStateUnlocked; lockStateChanged(); } } } void IasAvbClockDomain::setDerivationFactors(double factorLongTerm, double factorUnlock) { mDerivationFactorLongTerm = factorLongTerm; mDerivationFactorUnlock = factorUnlock; setFilter(mTimeConstant, mAvgCallsPerSec); } void IasAvbClockDomain::setLockThreshold1( uint32_t ppm ) { if (ppm > 0u) { mThresholdFastHigh = 1.0 + (1e-6 * double(ppm)); mThresholdFastLow = 1.0 / mThresholdFastHigh; } } void IasAvbClockDomain::setLockThreshold2(uint32_t ppm) { if (ppm > 0u) { mThresholdSlowHigh = 1.0 + (1e-6 * double(ppm)); mThresholdSlowLow = 1.0 / mThresholdSlowHigh; } } double IasAvbClockDomain::calculateCoefficient(double timeConstant) { return (0.0 == timeConstant) ? 0.0 : (std::exp(-1.0 / timeConstant)); } IasAvbProcessingResult IasAvbClockDomain::registerClient(IasAvbClockDomainClientInterface * const client) { IasAvbProcessingResult ret = eIasAvbProcInvalidParam; if (NULL != client) { if (NULL != mClient) { ret = eIasAvbProcAlreadyInUse; } else { ret = eIasAvbProcOK; mClient = client; } } return ret; } IasAvbProcessingResult IasAvbClockDomain::unregisterClient(IasAvbClockDomainClientInterface * const client) { IasAvbProcessingResult ret = eIasAvbProcInvalidParam; if (client == mClient) { ret = eIasAvbProcOK; mClient = NULL; } return ret; } } // namespace IasMediaTransportAvb
deef0a636bb23f51076b93f2a5f0a46138902010
4a6aebfe469914a52001400d7c05717207f82133
/Scrabble.cpp
13b8b496185fa350d884283db71627f47a66def4
[]
no_license
jonathan-elize/ScrabbleBoard
bf77e028cd3e7b8ac983d5f5b358039b4eede717
4ffe8e3453c76d1e5536bea5036d98993f34a3ea
refs/heads/master
2021-07-22T03:52:25.188676
2017-10-27T20:58:54
2017-10-27T20:58:54
108,594,749
0
0
null
null
null
null
UTF-8
C++
false
false
2,622
cpp
//-| -------------------------------------------------------------------------- //-| File name: Scrabble.cpp //-| Assign ID: PROG2 //-| Due Date: September 16, 2017 //-| //-| Purpose: Display gameboard based on data file //-| //-| Author: (c) 2017, jelize Jonathan Elize //-| //-| -------------------------------------------------------------------------- #include "ScrabbleFunctions.h" int main(){ //---------------------------------- //Declare and Initialize variables //---------------------------------- const int BOARD_CAP = 9; //max width and height of the board ifstream inF; //file handler to make board from string filename; //name of the file to be used int boardSize; //size of the board from the file char board[BOARD_CAP][BOARD_CAP]; //2d array corresponding to the board //intitialize each board space to ' ' for(int i = 0; i < BOARD_CAP; i++) { for(int j = 0; j < BOARD_CAP; j++) board[i][j] = ' '; } //--------------------- //prompt for file name //--------------------- cout << "Enter name of input file: "; cin >> filename; //--------------------- //open file for input //--------------------- inF.open(filename.c_str()); //If file failes if(!inF) cout << "FATAL ERROR: Can not open file '" << filename << "'" << endl; //else else { //----------------------------- //prompt for boardSize //----------------------------- cout << "Enter board size [1-9]: "; cin >> boardSize; //----------------------------- //loadBoard //----------------------------- loadBoard(board, boardSize, inF); //close file inF.close(); //----------------------------------- //Display number of tiles on board //----------------------------------- cout << numTiles(board, boardSize) << " TILES on Scrabble Board" << endl; //--------------------------------------------- //output boardSize x boardSize SCRABBLE BOARD //--------------------------------------------- cout << boardSize << " x " << boardSize << " SCRABBLE BOARD" << endl << endl; showBoard(board, boardSize); //---------------------- //Display Specs //---------------------- showWords(board, boardSize); } //--------------------- //Display Copyright //--------------------- cout << endl << "(c) 2017, jelize Jonathan Elize" << endl << endl; return 0; }
8dae3eeb3ff8fd7cf65c33ed1f270de98e9dbdb2
bb55fde74de1a0afc42f76475ec63db26e7ec085
/Chapter_04/trainOCR.cpp
51fcd558d75d12abbc05be656297ba9f5e62c13b
[ "MIT" ]
permissive
royshil/Mastering-OpenCV-4-Third-Edition
1dcd583f4c81477ccc335ae140cccf1173d1996d
b9757bbf8556c2a4c9f6d102bc8b356f4ce079f6
refs/heads/master
2020-04-24T17:13:15.834168
2018-12-24T08:33:34
2018-12-24T08:33:34
172,139,005
0
1
MIT
2019-02-22T21:46:33
2019-02-22T21:46:33
null
ISO-8859-3
C++
false
false
2,866
cpp
/***************************************************************************** * Number Plate Recognition using SVM and Neural Networks ****************************************************************************** * by David Millán Escrivá, 5th Dec 2012 * http://blog.damiles.com ****************************************************************************** * Ch5 of the book "Mastering OpenCV with Practical Computer Vision Projects" * Copyright Packt Publishing 2012. * http://www.packtpub.com/cool-projects-with-opencv/book *****************************************************************************/ // Main entry code OpenCV #include <cv.h> #include <highgui.h> #include <cvaux.h> #include "OCR.h" #include <iostream> #include <vector> using namespace std; using namespace cv; const int numFilesChars[]={35, 40, 42, 41, 42, 33, 30, 31, 49, 44, 30, 24, 21, 20, 34, 9, 10, 3, 11, 3, 15, 4, 9, 12, 10, 21, 18, 8, 15, 7}; int main ( int argc, char** argv ) { cout << "OpenCV Training OCR Automatic Number Plate Recognition\n"; cout << "\n"; char* path; //Check if user specify image to process if(argc >= 1 ) { path= argv[1]; }else{ cout << "Usage:\n" << argv[0] << " <path to chars folders files> \n"; return 0; } Mat classes; Mat trainingDataf5; Mat trainingDataf10; Mat trainingDataf15; Mat trainingDataf20; vector<int> trainingLabels; OCR ocr; for(int i=0; i< OCR::numCharacters; i++) { int numFiles=numFilesChars[i]; for(int j=0; j< numFiles; j++){ cout << "Character "<< OCR::strCharacters[i] << " file: " << j << "\n"; stringstream ss(stringstream::in | stringstream::out); ss << path << OCR::strCharacters[i] << "/" << j << ".jpg"; Mat img=imread(ss.str(), 0); Mat f5=ocr.features(img, 5); Mat f10=ocr.features(img, 10); Mat f15=ocr.features(img, 15); Mat f20=ocr.features(img, 20); trainingDataf5.push_back(f5); trainingDataf10.push_back(f10); trainingDataf15.push_back(f15); trainingDataf20.push_back(f20); trainingLabels.push_back(i); } } trainingDataf5.convertTo(trainingDataf5, CV_32FC1); trainingDataf10.convertTo(trainingDataf10, CV_32FC1); trainingDataf15.convertTo(trainingDataf15, CV_32FC1); trainingDataf20.convertTo(trainingDataf20, CV_32FC1); Mat(trainingLabels).copyTo(classes); FileStorage fs("OCR.xml", FileStorage::WRITE); fs << "TrainingDataF5" << trainingDataf5; fs << "TrainingDataF10" << trainingDataf10; fs << "TrainingDataF15" << trainingDataf15; fs << "TrainingDataF20" << trainingDataf20; fs << "classes" << classes; fs.release(); return 0; }
e5bdd92e7966080572b7fee3ae33d01bec2dae1b
c3c96be8ae1142460034c2aea83dff5f5bb8cb98
/11742.cpp
5ebffbf0e85959abb6e28b803c5eb34100699020
[]
no_license
shakilaust/Uva-Solve
332016f01499e7c06e467efe6fb9422c3b8bd2de
a9bd40fe9e44547f920538fb2f142bb927216e8c
refs/heads/master
2020-04-06T07:03:33.488459
2018-08-15T11:24:34
2018-08-15T11:24:34
15,436,062
5
4
null
null
null
null
UTF-8
C++
false
false
3,627
cpp
//BISMILLAHIRRAHMANIRRAHIM /* manus tar shopner soman boro all my suceesses are dedicated to my parents The true test of a man's character is what he does when no one is watching. Author :: Shakil Ahmed .............AUST_CSE27......... prob :: Type :: verdict:: */ #include <bits/stdc++.h> #define pb push_back #define mp make_pair // Macro #define eps 1e-9 #define pi acos(-1.0) #define ff first #define ss second #define re return #define QI queue<int> #define SI stack<int> #define SZ(x) ((int) (x).size()) #define all(x) (x).begin(), (x).end() #define sq(a) ((a)*(a)) #define distance(a,b) (sq(a.x-b.x) + sq(a.y-b.y)) #define iseq(a,b) (fabs(a-b)<eps) #define eq(a,b) iseq(a,b) #define ms(a,b) memset((a),(b),sizeof(a)) #define G() getchar() #define MAX3(a,b,c) max(a,max(b,c)) #define II ( { int a ; read(a) ; a; } ) #define LL ( { Long a ; read(a) ; a; } ) #define DD ({double a; scanf("%lf", &a); a;}) double const EPS=3e-8; using namespace std; #define FI freopen ("input.txt", "r", stdin) #define FO freopen ("output.txt", "w", stdout) typedef long long Long; typedef long long int64; typedef unsigned long long ull; typedef vector<int> vi ; typedef set<int> si; typedef vector<Long>vl; typedef pair<int,int>pii; typedef pair<string,int>psi; typedef pair<Long,Long>pll; typedef pair<double,double>pdd; typedef vector<pii> vpii; // For loop #define forab(i, a, b) for (__typeof (b) i = (a) ; i <= b ; ++i) #define rep(i, n) forab (i, 0, (n) - 1) #define For(i, n) forab (i, 1, n) #define rofba(i, a, b) for (__typeof (b)i = (b) ; i >= a ; --i) #define per(i, n) rofba (i, 0, (n) - 1) #define rof(i, n) rofba (i, 1, n) #define forstl(i, s) for (__typeof ((s).end ()) i = (s).begin (); i != (s).end (); ++i) template< class T > T gcd(T a, T b) { return (b != 0 ? gcd<T>(b, a%b) : a); } template< class T > T lcm(T a, T b) { return (a / gcd<T>(a, b) * b); } //Fast Reader template<class T>inline bool read(T &x){int c=getchar();int sgn=1;while(~c&&c<'0'||c>'9'){if(c=='-')sgn=-1;c=getchar();}for(x=0;~c&&'0'<=c&&c<='9';c=getchar())x=x*10+c-'0'; x*=sgn; return ~c;} //int dx[]={1,0,-1,0};int dy[]={0,1,0,-1}; //4 Direction //int dx[]={1,1,0,-1,-1,-1,0,1};int dy[]={0,1,1,1,0,-1,-1,-1};//8 direction //int dx[]={2,1,-1,-2,-2,-1,1,2};int dy[]={1,2,2,1,-1,-2,-2,-1};//Knight Direction //int dx[]={2,1,-1,-2,-1,1};int dy[]={0,1,1,0,-1,-1}; //Hexagonal Direction /* ************************************** My code start here ****************************************** */ int permu[ 10 ] , n , inp[25][3] , m , pos[ 10 ]; int main() { // I will always use scanf and printf // May be i won't be a good programmer but i will be a good human being while( scanf("%d %d",&n,&m) == 2 ) { if( n == 0 && m == 0 ) break ; rep ( i , m ) rep( j , 3 ) inp[i][j] = II ; rep( i , n ) permu[i] = i ; int ans = 0 ; do { bool ok = 1 ; rep( i , n ) pos[ permu[i] ] = i ; for ( int i = 0 ; i < m && ok ; i++ ) { int pos1 = pos[ inp[i][0] ] ; int pos2 = pos[ inp[i][1] ]; if( inp[i][2] > 0 ) { if( abs( pos1 - pos2 ) > inp[i][2] ) // they must need to seat between at least inp[i][2] ok = 0 ; } if( inp[i][2] < 0 ) { if( abs( pos1 - pos2 ) < -inp[i][2] ) ok = 0 ; } } ans += ok ; }while( next_permutation( permu , permu + n ) ); printf("%d\n",ans); } return 0; }
9c1b888b6022e5e0b9f347e4043794c721d7b2e1
c74a1ee91fb94c3d99f577b35bc35db15adf1dc3
/src/qt/aboutdialog.cpp
9684102338664a8227f3014d7ed8b2b30119d9bc
[ "MIT" ]
permissive
blackgldsaw/dazzlecoin-test
37603810069099218dd87f9cedadb87a55b68120
2a1670bc769473e337e35cc2d6c3798647ef469f
refs/heads/master
2021-01-13T07:11:54.111099
2017-06-22T14:13:11
2017-06-22T14:13:11
95,122,791
0
0
null
null
null
null
UTF-8
C++
false
false
1,116
cpp
// Copyright (c) 2011-2013 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "aboutdialog.h" #include "ui_aboutdialog.h" #include "clientmodel.h" #include "clientversion.h" // Copyright year (2009-this) // Todo: update this when changing our copyright comments in the source const int ABOUTDIALOG_COPYRIGHT_YEAR = 2014; AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog) { ui->setupUi(this); // Set current copyright year ui->copyrightLabel->setText(tr("Copyright") + QString(" &copy; 2009-%1 ").arg(COPYRIGHT_YEAR) + tr("The Bitcoin developers") + QString("<br>") + tr("Copyright") + QString(" &copy; ") + tr("2011-%1 The Dazzlecoin developers").arg(ABOUTDIALOG_COPYRIGHT_YEAR)); } void AboutDialog::setModel(ClientModel *model) { if(model) { ui->versionLabel->setText(model->formatFullVersion()); } } AboutDialog::~AboutDialog() { delete ui; } void AboutDialog::on_buttonBox_accepted() { close(); }
e40c4aae168215a429317f0bba9d87a5b0afa640
43ea51859b6ae1b91417289e30979dd7f9f055d8
/Source/GameDevTVJam/GameDevTVJamCharacter.cpp
2282752d9de618b2fa2395608f126d08978dd06e
[]
no_license
TheCodingRook/GameDevTVJam
e8b47f8d3307c0ac08644f2d4cb8913388e05261
be69855c5c26ac8f2a003c6a27e5f20f46c05629
refs/heads/master
2022-12-08T19:14:12.663993
2020-09-04T20:47:03
2020-09-04T20:47:03
262,843,075
0
0
null
null
null
null
UTF-8
C++
false
false
8,020
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. #include "GameDevTVJamCharacter.h" #include "Camera/CameraComponent.h" #include "Components/CapsuleComponent.h" #include "Components/InputComponent.h" #include "GameFramework/SpringArmComponent.h" #include "GameFramework/CharacterMovementComponent.h" #include "GrabbingAbility.h" #include "ClimbingAbility.h" #include "InteractionComponentBase.h" #include "MyGameInstance.h" #include "Kismet/GameplayStatics.h" #include "GameDevTVJamGameMode.h" #include "GameHUDWidget.h" AGameDevTVJamCharacter::AGameDevTVJamCharacter() { // Set size for collision capsule GetCapsuleComponent()->InitCapsuleSize(42.f, 96.0f); // Don't rotate when the controller rotates. bUseControllerRotationPitch = false; bUseControllerRotationYaw = false; bUseControllerRotationRoll = false; // Create a camera boom attached to the root (capsule) CameraBoom = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraBoom")); CameraBoom->SetupAttachment(RootComponent); CameraBoom->SetUsingAbsoluteRotation(true); // Rotation of the character should not affect rotation of boom CameraBoom->bDoCollisionTest = false; CameraBoom->TargetArmLength = 500.f; CameraBoom->SocketOffset = FVector(0.f,0.f,75.f); CameraBoom->SetRelativeRotation(FRotator(0.f,180.f,0.f)); // Create a camera and attach to boom SideViewCameraComponent = CreateDefaultSubobject<UCameraComponent>(TEXT("SideViewCamera")); SideViewCameraComponent->SetupAttachment(CameraBoom, USpringArmComponent::SocketName); SideViewCameraComponent->bUsePawnControlRotation = false; // We don't want the controller rotating the camera // Configure character movement GetCharacterMovement()->bOrientRotationToMovement = true; // Face in the direction we are moving.. GetCharacterMovement()->RotationRate = FRotator(0.0f, 720.0f, 0.0f); // ...at this rotation rate GetCharacterMovement()->GravityScale = 2.f; GetCharacterMovement()->AirControl = 0.80f; GetCharacterMovement()->JumpZVelocity = 1000.f; GetCharacterMovement()->GroundFriction = 3.f; GetCharacterMovement()->MaxWalkSpeed = 600.f; GetCharacterMovement()->MaxFlySpeed = 600.f; // Note: The skeletal mesh and anim blueprint references on the Mesh component (inherited from Character) // are set in the derived blueprint asset named MyCharacter (to avoid direct content references in C++) // Create the custom physics handle component for grabbing objects Grabber = CreateDefaultSubobject<UGrabbingAbility>(TEXT("Grabber")); // Create the custom climbing ability component to enable climbing ClimbingAbility = CreateDefaultSubobject<UClimbingAbility>(TEXT("Climbing Ability")); } float AGameDevTVJamCharacter::TakeDamage(float DamageAmount, FDamageEvent const& DamageEvent, AController* EventInstigator, AActor* DamageCauser) { if(!bIsDead) { GetCharacterMovement()->SetMovementMode(EMovementMode::MOVE_Walking); if (bWasMeshAdjusted) { GetCapsuleComponent()->SetCapsuleHalfHeight(98.f); GetCapsuleComponent()->SetCapsuleRadius(42.f); GetMesh()->AddLocalOffset(GetClimbingAbility()->GetManualMeshOffset() * (-1)); } SetIsDead(true); UGameplayStatics::PlaySoundAtLocation(this, DeathSound, GetActorLocation()); DisableInput(Cast<APlayerController>(GetController())); OnPlayerDied.Broadcast(); Cast<AGameDevTVJamGameMode>(UGameplayStatics::GetGameMode(this))->GetGameHUD()->PlayDeathAnimations(); } return Super::TakeDamage(DamageAmount, DamageEvent, EventInstigator, DamageCauser); } void AGameDevTVJamCharacter::SetCanClimb(bool NewClimbSetting) { bCanClimb = NewClimbSetting; } void AGameDevTVJamCharacter::SetIsClimbing(bool NewClimbingState) { bIsClimbing = NewClimbingState; } void AGameDevTVJamCharacter::SetIsClimbingLedge(bool NewClimbingLedgeState) { if (NewClimbingLedgeState) { bIsClimbing = false; } bIsClimbingLedge = NewClimbingLedgeState; } void AGameDevTVJamCharacter::SetIsDroppingFromLedge(bool NewDroppingFromLedgeState) { bIsDroppingFromLedge = NewDroppingFromLedgeState; } void AGameDevTVJamCharacter::SetWasMeshAdjusted(bool NewMeshAdjustedFlag) { bWasMeshAdjusted = NewMeshAdjustedFlag; } void AGameDevTVJamCharacter::SetIsDead(bool DeathStatus) { bIsDead = DeathStatus; } void AGameDevTVJamCharacter::SetIsVictorious(bool VictoryStatus) { bIsVictorious = VictoryStatus; } void AGameDevTVJamCharacter::SetEncumbered(bool NewState) { bIsEncumbered = NewState; } ////////////////////////////////////////////////////////////////////////// // Input void AGameDevTVJamCharacter::SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) { // set up gameplay key bindings PlayerInputComponent->BindAction("Jump", IE_Pressed, this, &AGameDevTVJamCharacter::AttemptJump); PlayerInputComponent->BindAction("Jump", IE_Released, this, &ACharacter::StopJumping); PlayerInputComponent->BindAxis("MoveRight", this, &AGameDevTVJamCharacter::MoveRight); PlayerInputComponent->BindAction("Crouch", IE_Pressed, this, &AGameDevTVJamCharacter::PerformCrouch); PlayerInputComponent->BindAction("Crouch", IE_Released, this, &AGameDevTVJamCharacter::PerformUnCrouch); PlayerInputComponent->BindAction("Interact", IE_Pressed, this, &AGameDevTVJamCharacter::Interact); PlayerInputComponent->BindAction("Interact", IE_Released, this, &AGameDevTVJamCharacter::StopInteracting); PlayerInputComponent->BindAction("Pause", IE_Pressed, this, &AGameDevTVJamCharacter::PauseGame); PlayerInputComponent->BindTouch(IE_Pressed, this, &AGameDevTVJamCharacter::TouchStarted); PlayerInputComponent->BindTouch(IE_Released, this, &AGameDevTVJamCharacter::TouchStopped); } void AGameDevTVJamCharacter::SetInventoryKeyList(TArray<AActor*> NewList) { InventoryKeyList = NewList; } void AGameDevTVJamCharacter::AddKeyToInventory() { NumberOfKeys++; } void AGameDevTVJamCharacter::RemoveKeyFromInventory() { if (NumberOfKeys > 0) { NumberOfKeys--; } } void AGameDevTVJamCharacter::VictoryAnimation() { bIsVictorious = true; SetActorRotation(FRotator(0.f, 0.f, 0.f)); DisableInput(Cast<APlayerController>(GetController())); } void AGameDevTVJamCharacter::AttemptJump() { if (bIsClimbing) { bIsClimbing = false; bIsClimbingLedge = true; } else if (!bIsEncumbered) { if (JumpSound && !GetMovementComponent()->IsFalling()) { UGameplayStatics::PlaySoundAtLocation(this, JumpSound, GetActorLocation()); } Jump(); } } void AGameDevTVJamCharacter::MoveRight(float Value) { if (!bIsClimbing) { // add movement in that direction AddMovementInput(FVector(0.f, -1.f, 0.f), Value); } } void AGameDevTVJamCharacter::TouchStarted(const ETouchIndex::Type FingerIndex, const FVector Location) { // jump on any touch if (bIsClimbing) { bIsClimbing = false; bIsClimbingLedge = true; } else if (!bIsEncumbered) { Jump(); } } void AGameDevTVJamCharacter::TouchStopped(const ETouchIndex::Type FingerIndex, const FVector Location) { StopJumping(); } void AGameDevTVJamCharacter::PerformCrouch() { if (!bIsEncumbered && !GetMovementComponent()->IsFalling()) { if (bIsClimbing) { // Let the player fall from the hanging position bIsDroppingFromLedge = true; ClimbingAbility->FinishClimbing(); } else { // Use ACharacter's interface Crouch(); } } } void AGameDevTVJamCharacter::PerformUnCrouch() { // Use ACharacter's interface UnCrouch(); } void AGameDevTVJamCharacter::Interact() { if (!bIsClimbing) { if (UInteractionComponentBase* InteractionToExecute = Cast<UMyGameInstance>(GetGameInstance())->GetLatestInteractionCommand()) { InteractionToExecute->ExecuteInteraction(this); } } } void AGameDevTVJamCharacter::StopInteracting() { if (UInteractionComponentBase* InteractionToExecute = Cast<UMyGameInstance>(GetGameInstance())->GetLatestInteractionCommand()) { InteractionToExecute->StopInteraction(this); } } void AGameDevTVJamCharacter::PauseGame() { AGameDevTVJamGameMode* GameMode = Cast<AGameDevTVJamGameMode>(UGameplayStatics::GetGameMode(this)); GameMode->PauseGame(); }
[ "" ]
11c27b4e9ebcddcab3371cacaf69fcb4017c0eae
d743b2d40957a3c07e8bfc03ea69e459c96ace56
/271 Encode and Decode Strings/271.cpp
bc0c3b450c24003266376041211cf5e8931a6bb2
[]
no_license
TakuyaKimura/Leetcode
f126e72458f7a1b6eb8af9dd874fc2ee77eefe01
6f68ed674a3de7d2277c256583c67dda73092dc0
refs/heads/master
2021-01-10T21:39:48.227089
2016-02-06T11:08:29
2016-02-06T11:08:29
40,781,363
0
0
null
null
null
null
UTF-8
C++
false
false
2,070
cpp
/* Design an algorithm to encode a list of strings to a string. The encoded string is then sent over the network and is decoded back to the original list of strings. Machine 1 (sender) has the function: string encode(vector<string> strs) { // ... your code return encoded_string; } Machine 2 (receiver) has the function: vector<string> decode(string s) { //... your code return strs; } So Machine 1 does: string encoded_string = encode(strs); and Machine 2 does: vector<string> strs2 = decode(encoded_string); strs2 in Machine 2 should be the same as strs in Machine 1. Implement the encode and decode methods. Note: 1. The string may contain any possible characters out of 256 valid ascii characters. Your algorithm should be generalized enough to work on any possible characters. 2. Do not use class member/global/static variables to store states. Your encode and decode algorithms should be stateless. 3. Do not rely on any library method such as eval or serialize methods. You should implement your own encode/decode algorithm. */ #include <vector> #include <string> #include <sstream> using namespace std; // There are other methods not using length // e.g., replace all "|" with "||" in each string, and use " | " as delimiter class Codec { public: // Encodes a list of strings to a single string. string encode(vector<string>& strs) { ostringstream ss; for (string& str : strs) ss << str.length() << ':' << str; return ss.str(); } // Decodes a single string to a list of strings. vector<string> decode(string s) { vector<string> result; for (int i = 0; i < s.length();) { int len = atoi(&s[i]); // note how atoi is used i = s.find(':', i) + 1; result.push_back(s.substr(i, len)); i += len; } return result; } }; // Your Codec object will be instantiated and called as such: // Codec codec; // codec.decode(codec.encode(strs));
6baa7990d08206e2730541953041bcd4967f61fc
d168daf4c99413cc344eb6d7bd7d66123c3ce6ae
/IntakeTest/IntakeTest.ino
8ac0a963be80e19977df16dfb3d5c64fff380d25
[]
no_license
SoonerRobotics/IEEE-2018-Test
cbb3a488795e54b6a12820dd68380b7d9e7a91e9
91d696d351d779694443da4ce9a445552255cfc0
refs/heads/master
2021-09-11T00:18:11.754466
2018-04-04T22:35:00
2018-04-04T22:35:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
798
ino
#include <RobotLib.h> #include <IEEErobot2018.h> void setup() { robotSetup(); } void loop() { // DO NOT RUN UNTIL INTAKE_CONSTATNS HAVE BEEN TESTED FOR AND ADDED TO INTAKECONSTANTS.H !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! while (!intake.getLowSwitch()) { Serial.println("Reseting"); iMotor.output(-.4); } //updateColorSensor(); while (!intake.coinDetected()) { Serial.print(intake.getStateString()); Serial.print("LOOKING FOR COIN\n"); } while (intake.getIntakeReturn() != 2) { Serial.println(intake.getStateString()); intake.pickUpSequence(currentColor, colorScanned); if(intake.getIntakeReturn() == 1) { colorScanned = true; } else { delay(50); } } colorScanned = false; //intake.dropOffSequence(currentColor); delay(1000); }
a55f1b5f5ee7a9af04ac4d3c78620960e2a97243
6fffa3ff4c26e55c71bc3a9f2c062335beff2d40
/third_party/blink/renderer/core/layout/ng/inline/ng_inline_cursor.h
bf8cc15a8df5cf7a7e28ad6983865eb1110e63c7
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
vasilyt/chromium
f69c311d0866090f187494fc7e335d8d08c9f264
aa7cd16211bca96985a7149783a82c3d20984a85
refs/heads/master
2022-12-23T22:47:24.086201
2019-10-31T18:39:35
2019-10-31T18:39:35
219,038,538
0
0
BSD-3-Clause
2019-11-01T18:10:04
2019-11-01T18:10:04
null
UTF-8
C++
false
false
11,393
h
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_INLINE_NG_INLINE_CURSOR_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_INLINE_NG_INLINE_CURSOR_H_ #include "base/containers/span.h" #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/text/text_direction.h" #include "third_party/blink/renderer/platform/wtf/allocator/allocator.h" namespace blink { class ComputedStyle; class LayoutBlockFlow; class LayoutInline; class LayoutObject; class LayoutUnit; class NGFragmentItem; class NGFragmentItems; class NGInlineBreakToken; class NGPaintFragment; class NGPhysicalBoxFragment; class Node; struct PhysicalOffset; struct PhysicalRect; struct PhysicalSize; class ShapeResultView; // This class traverses fragments in an inline formatting context. // // When constructed, the initial position is empty. Call |MoveToNext()| to move // to the first fragment. // // TODO(kojii): |NGPaintFragment| should be gone when |NGPaintFragment| is // deprecated and all its uses are removed. class CORE_EXPORT NGInlineCursor { STACK_ALLOCATED(); public: using ItemsSpan = base::span<const std::unique_ptr<NGFragmentItem>>; explicit NGInlineCursor(const LayoutBlockFlow& block_flow); explicit NGInlineCursor(const NGFragmentItems& items); explicit NGInlineCursor(const NGFragmentItems& fragment_items, ItemsSpan items); explicit NGInlineCursor(const NGPaintFragment& root_paint_fragment); NGInlineCursor(const NGInlineCursor& other); // Creates an |NGInlineCursor| without the root. Even when callers don't know // the root of the inline formatting context, this cursor can |MoveTo()| // specific |LayoutObject|. NGInlineCursor(); bool operator==(const NGInlineCursor& other) const; bool operator!=(const NGInlineCursor& other) const { return !operator==(other); } bool IsItemCursor() const { return fragment_items_; } bool IsPaintFragmentCursor() const { return root_paint_fragment_; } // True if this cursor has the root to traverse. Only the default constructor // creates a cursor without the root. bool HasRoot() const { return IsItemCursor() || IsPaintFragmentCursor(); } const NGFragmentItems& Items() const { DCHECK(fragment_items_); return *fragment_items_; } // Returns the |LayoutBlockFlow| containing this cursor. const LayoutBlockFlow* GetLayoutBlockFlow() const; // // Functions to query the current position. // // Returns true if cursor is out of fragment tree, e.g. before first fragment // or after last fragment in tree. bool IsNull() const { return !current_item_ && !current_paint_fragment_; } bool IsNotNull() const { return !IsNull(); } explicit operator bool() const { return !IsNull(); } // True if fragment at the current position can have children. bool CanHaveChildren() const; // True if fragment at the current position has children. bool HasChildren() const; // Returns a new |NGInlineCursor| whose root is the current item. The returned // cursor can traverse descendants of the current item. If the current item // has no children, returns an empty cursor. NGInlineCursor CursorForDescendants() const; // True if current position has soft wrap to next line. It is error to call // other than line. bool HasSoftWrapToNextLine() const; // True if the current position is a atomic inline. It is error to call at // end. bool IsAtomicInline() const; // True if the current position is before soft line break. It is error to call // at end. bool IsBeforeSoftLineBreak() const; // True if the current position is an ellipsis. It is error to call at end. bool IsEllipsis() const; // True if the current position is an empty line box. It is error to call // other then line box. bool IsEmptyLineBox() const; // True if the current position is a generatd text. It is error to call at // end. bool IsGeneratedText() const; // True if fragment is |NGFragmentItem::kGeneratedText| or // |NGPhysicalTextFragment::kGeneratedText|. // TODO(yosin): We should rename |IsGeneratedTextType()| to another name. bool IsGeneratedTextType() const; // True if the current position is hidden for paint. It is error to call at // end. bool IsHiddenForPaint() const; // True if the current position is text or atomic inline box. bool IsInlineLeaf() const; // True if the current position is a line box. It is error to call at end. bool IsLineBox() const; // True if the current position is a line break. It is error to call at end. bool IsLineBreak() const; // True if the current position is a list marker. bool IsListMarker() const; // True if the current position is a text. It is error to call at end. bool IsText() const; // |Current*| functions return an object for the current position. const NGFragmentItem* CurrentItem() const { return current_item_; } const NGPaintFragment* CurrentPaintFragment() const { return current_paint_fragment_; } // Returns text direction of current line. It is error to call at other than // line. TextDirection CurrentBaseDirection() const; const NGPhysicalBoxFragment* CurrentBoxFragment() const; const LayoutObject* CurrentLayoutObject() const; Node* CurrentNode() const; // Returns text direction of current text or atomic inline. It is error to // call at other than text or atomic inline. Note: <span> doesn't have // reserved direction. TextDirection CurrentResolvedDirection() const; const ComputedStyle& CurrentStyle() const; // InkOverflow of itself, including contents if they contribute to the ink // overflow of this object (e.g. when not clipped,) in the local coordinate. const PhysicalRect CurrentInkOverflow() const; // The offset relative to the root of the inline formatting context. const PhysicalOffset CurrentOffset() const; const PhysicalRect CurrentRect() const; const PhysicalSize CurrentSize() const; // Returns start/end of offset in text content of current text fragment. // It is error when this cursor doesn't point to text fragment. unsigned CurrentTextStartOffset() const; unsigned CurrentTextEndOffset() const; // Returns |ShapeResultView| of the current position. It is error to call // other than text. const ShapeResultView* CurrentTextShapeResult() const; // The layout box of text in (start, end) range in local coordinate. // Start and end offsets must be between |CurrentTextStartOffset()| and // |CurrentTextEndOffset()|. It is error to call other than text. PhysicalRect CurrentLocalRect(unsigned start_offset, unsigned end_offset) const; // Relative to fragment of the current position. It is error to call other // than text. LayoutUnit InlinePositionForOffset(unsigned offset) const; // // Functions to move the current position. // // Move the current posint at |paint_fragment|. void MoveTo(const NGPaintFragment& paint_fragment); // Move to first |NGFragmentItem| or |NGPaintFragment| associated to // |layout_object|. When |layout_object| has no associated fragments, this // cursor points nothing. void MoveTo(const LayoutObject& layout_object); // Move to containing line box. It is error if the current position is line. void MoveToContainingLine(); // Move to first child of current container box. If the current position is // at fragment without children, this cursor points nothing. // See also |TryToMoveToFirstChild()|. void MoveToFirstChild(); // Move to first logical leaf of current line box. If current line box has // no children, curosr becomes null. void MoveToFirstLogicalLeaf(); // Move to last child of current container box. If the current position is // at fragment without children, this cursor points nothing. // See also |TryToMoveToFirstChild()|. void MoveToLastChild(); // Move to last logical leaf of current line box. If current line box has // no children, curosr becomes null. void MoveToLastLogicalLeaf(); // Move the current position to the next fragment in pre-order DFS. When // the current position is at last fragment, this cursor points nothing. void MoveToNext(); // Move the current position to next fragment on same layout object. void MoveToNextForSameLayoutObject(); // Move the current position to next line. It is error to call other than line // box. void MoveToNextLine(); // Move the current position to next sibling fragment. void MoveToNextSibling(); // Same as |MoveToNext| except that this skips children even if they exist. void MoveToNextSkippingChildren(); // Move the current position to previous line. It is error to call other than // line box. void MoveToPreviousLine(); // Returns true if the current position moves to first child. bool TryToMoveToFirstChild(); // Returns true if the current position moves to last child. bool TryToMoveToLastChild(); // TODO(kojii): Add more variations as needed, NextSibling, // NextSkippingChildren, Previous, etc. private: // Returns break token for line box. It is error to call other than line box. const NGInlineBreakToken& CurrentInlineBreakToken() const; // True if current position is descendant or self of |layout_object|. // Note: This function is used for moving cursor in culled inline boxes. bool IsInclusiveDescendantOf(const LayoutObject& layout_object) const; // True if the current position is a last line in inline block. It is error // to call at end or the current position is not line. bool IsLastLineInInlineBlock() const; // Make the current position points nothing, e.g. cursor moves over start/end // fragment, cursor moves to first/last child to parent has no children. void MakeNull(); // Move the cursor position to the first fragment in tree. void MoveToFirst(); // Same as |MoveTo()| but not support culled inline. void InternalMoveTo(const LayoutObject& layout_object); void SetRoot(const NGFragmentItems& items); void SetRoot(const NGFragmentItems& fragment_items, ItemsSpan items); void SetRoot(const NGPaintFragment& root_paint_fragment); void SetRoot(const LayoutBlockFlow& block_flow); void MoveToItem(const ItemsSpan::iterator& iter); void MoveToNextItem(); void MoveToNextItemSkippingChildren(); void MoveToNextSiblingItem(); void MoveToPreviousItem(); void MoveToParentPaintFragment(); void MoveToNextPaintFragment(); void MoveToNextSiblingPaintFragment(); void MoveToNextPaintFragmentSkippingChildren(); ItemsSpan items_; ItemsSpan::iterator item_iter_; const NGFragmentItem* current_item_ = nullptr; const NGFragmentItems* fragment_items_ = nullptr; const NGPaintFragment* root_paint_fragment_ = nullptr; const NGPaintFragment* current_paint_fragment_ = nullptr; // Used in |MoveToNextForSameLayoutObject()| to support culled inline. const LayoutInline* layout_inline_ = nullptr; }; CORE_EXPORT std::ostream& operator<<(std::ostream&, const NGInlineCursor&); CORE_EXPORT std::ostream& operator<<(std::ostream&, const NGInlineCursor*); } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_INLINE_NG_INLINE_CURSOR_H_
9372ab017561f58564eb5ff0d515e9785f977825
daffb5f31e4f2e1690f4725fad5df9f2382416e3
/Template/FFT_2D.h
132a166e329dbde3c350db5a56357371522fd3ce
[]
no_license
cuom1999/CP
1ad159819fedf21a94c102d7089d12d22bb6bfa2
4e37e0d35c91545b3d916bfa1de5076a18f29a75
refs/heads/master
2023-06-02T01:57:00.252932
2021-06-21T03:41:34
2021-06-21T03:41:34
242,620,572
0
0
null
null
null
null
UTF-8
C++
false
false
4,235
h
typedef complex<double> base; namespace FFT_2D { vector<int> inv_fft; vector<base> roots; void preCalcFFT(int n, bool inv) { inv_fft.resize(n); int j = 0; for(int i=1; i<n; i++) { int bit = (n >> 1); while(j >= bit) { j -= bit; bit >>= 1; } j += bit; inv_fft[i] = j; } roots.resize(n / 2); double ang = 2 * acos(-1) / n * (inv ? -1 : 1); for(int i=0; i<n/2; i++) { roots[i] = base(cos(ang * i), sin(ang * i)); } } void fft(vector<base> &a, bool inv) { int n = a.size(); for(int i=1; i<n; i++) { if(i < inv_fft[i]) swap(a[i], a[inv_fft[i]]); } for(int i=2; i<=n; i<<=1) { int step = n / i; for(int j=0; j<n; j+=i) { for(int k=0; k<i/2; k++) { base u = a[j+k], v = a[j+k+i/2] * roots[step * k]; a[j+k] = u+v; a[j+k+i/2] = u-v; } } } if(inv) for(int i=0; i<n; i++) a[i] /= n; } void fft2D(vector<vector<base>> &a, bool inv) { // fft rows preCalcFFT(a[0].size(), inv); for (int _row = 0; _row < a.size(); _row++) { fft(a[_row], inv); } // fft columns preCalcFFT(a.size(), inv); for (int _col = 0; _col < a[0].size(); _col++) { vector<base> tmp; for (int i = 0; i < a.size(); i++) { tmp.push_back(a[i][_col]); } fft(tmp, inv); for (int i = 0; i < a.size(); i++) { a[i][_col] = tmp[i]; } } } vector<vector<base>> multiply(vector<vector<base>> &v, vector<vector<base>> &w) { int _row = 1; while (_row < v.size() + w.size()) _row <<= 1; vector<vector<base>> fv(_row), fw(_row); int _colv = 1, _colw = 1; for (int i = 0; i <= _row - 1; i++) { if (i < v.size()) fv[i] = vector<base>(v[i].begin(), v[i].end()), _colv = max(_colv, (int) v[i].size()); if (i < w.size()) fw[i] = vector<base>(w[i].begin(), w[i].end()), _colw = max(_colw, (int) w[i].size()); } int _col = 1; while(_col < _colv + _colw) _col <<= 1; for (int i = 0; i <= _row - 1; i++) { fv[i].resize(_col); fw[i].resize(_col); } fft2D(fv, 0); fft2D(fw, 0); for (int i = 0; i <= _row - 1; i++) { for (int j = 0; j <= _col - 1; j++) { fv[i][j] *= fw[i][j]; } } fft2D(fv, 1); return fv; } vector<vector<long long>> multiply(vector<vector<long long>> &v, vector<vector<long long>> &w, long long mod) { int _row = 1, _colv = 1, _colw = 1, _col = 1; for (int i = 0; i < v.size(); i++) _colv = max(_colv, (int) v[i].size()); for (int i = 0; i < w.size(); i++) _colw = max(_colw, (int) w[i].size()); while (_row < v.size() + w.size()) _row <<= 1; while (_col < _colw + _colv) _col <<= 1; vector<vector<base>> v1(_row), v2(_row), r1(_row), r2(_row); for (int i = 0; i <= _row - 1; i++) { v1[i].resize(_col); r1[i].resize(_col); v2[i].resize(_col); r2[i].resize(_col); } for (int i = 0; i < v.size(); i++) { for (int j = 0; j < v[i].size(); j++) { v1[i][j] = base(v[i][j] >> 15, v[i][j] & 32767); } } for (int i = 0; i < w.size(); i++) { for (int j = 0; j < w[i].size(); j++) { v2[i][j] = base(w[i][j] >> 15, w[i][j] & 32767); } } fft2D(v1, 0); fft2D(v2, 0); // multiply 2 ffts for(int i=0; i<_row; i++) { for (int j = 0; j < _col; j++) { int i1 = (i ? (_row - i) : i); int j1 = (j ? (_col - j) : j); base ans1 = (v1[i][j] + conj(v1[i1][j1])) * base(0.5, 0); base ans2 = (v1[i][j] - conj(v1[i1][j1])) * base(0, -0.5); base ans3 = (v2[i][j] + conj(v2[i1][j1])) * base(0.5, 0); base ans4 = (v2[i][j] - conj(v2[i1][j1])) * base(0, -0.5); r1[i][j] = (ans1 * ans3) + (ans1 * ans4) * base(0, 1); r2[i][j] = (ans2 * ans3) + (ans2 * ans4) * base(0, 1); } } fft2D(r1, 1); fft2D(r2, 1); _col = _colv + _colw - 1; _row = v.size() + w.size() - 1; vector<vector<long long>> ret(_row); for(int i=0; i<_row; i++) { ret[i].resize(_col); for (int j = 0; j < _col; j++) { long long av = (long long)round(r1[i][j].real()); long long bv = (long long)round(r1[i][j].imag()) + (long long)round(r2[i][j].real()); long long cv = (long long)round(r2[i][j].imag()); av %= mod, bv %= mod, cv %= mod; ret[i][j] = (av << 30) + (bv << 15) + cv; ret[i][j] = (ret[i][j] % mod + mod) % mod; } } return ret; } }
78a550f4822f0a0e0583076d65a93a601575e1bf
2109eb2c8d56abd83376401b21cafe6815c49ff2
/HP3d/CellIdTests.cpp
b1dc4756210e200153bc1d7dc14d20c7fd64ebd6
[]
no_license
cosmi/hp3d2
d89d5d0ff9791d6f2e1a721f7519916ce7d69629
7a5e3b831fef9d32176def9456488cbf1c73ce2d
refs/heads/master
2020-04-06T03:40:58.988383
2015-11-21T12:17:24
2015-11-21T12:17:24
37,082,413
0
0
null
null
null
null
UTF-8
C++
false
false
859
cpp
// // CellIdTests.c // HP3d // // Created by Marcin on 03.08.2015. // Copyright (c) 2015 Marcin. All rights reserved. // #include "CellIdTests.h" #include "TestCommons.h" void testCellIdOperations() { CHECK_EQ("Valid half", CellId<2>::getForSize({4, 4}), CellId<2>::getForSize({4, 8}).getHalf()); CHECK_EQ("Valid half", CellId<2>::getForSize({4, 4}), CellId<2>::getForSize({8, 4}).getHalf()); } void testCellIdRelations() { CHECK("Is boundary 1", !CellId<2>({0,0}, {2,2}).isSideOf(CellId<2>({0,0}, {2,2}))); CHECK("Is boundary 2", CellId<2>({0,2}, {2,2}).isSideOf(CellId<2>({0,0}, {2,2}))); CHECK("Is boundary 3", !CellId<2>({0,0}, {3,2}).isSideOf(CellId<2>({0,0}, {2,2}))); } void runCellIdTests() { TEST("Test CellId Operations", testCellIdOperations()); TEST("Test CellId Relations", testCellIdRelations()); }
19770e81fdf4f96667f86897cf783e8ff9ed7f69
6c18626c9bce92960a632d5fa9fde3764b3c1be5
/database-struct/链表/链表/普通单链表.cpp
63e276dc1941f7ab9a1c2da8d388677504c3cc36
[]
no_license
520MianXiangDuiXiang520/C
992242f55f7ab5e912dfa9063a85e1be0cec0451
cb771bf1948e72d1b8161b7b06765971b7cc6cee
refs/heads/master
2020-04-08T04:09:57.016559
2019-01-07T04:51:16
2019-01-07T04:51:16
159,005,573
1
0
null
null
null
null
GB18030
C++
false
false
3,249
cpp
/*普通单链表的创建 creat() */ /*输出单链表中个节点的值 display() */ /*在单链表中查找第i个节点的值 find() */ /*插入 add() */ /*删除 dele() */ #include<stdio.h> #include<stdlib.h> typedef struct link{ int info; link *next; }link; /*建立一个空的单链表*/ link *none() { return NULL; } /*前插法创建单链表*/ link * creat_q() { link *head,*s; int info,num,i; i = 0; head = NULL; printf("\n请输入要创建的单链表的节点数:\n"); scanf("%d", &num); printf("\n请输入单链表节点! 反向!!\n"); while (i<num) { scanf("%d", &info); s = (link*)malloc(sizeof(link)); s->info = info; s->next = head; head = s; i++; } return head; } /*后插法创建单链表*/ link * creat_h() { link *head, *s,*p=NULL; int info, num, i; i = 0; head = NULL; printf("\n请输入要创建的单链表的节点数:\n"); scanf("%d", &num); printf("\n请输入单链表节点! 正向!!\n"); while (i < num) { scanf("%d", &info); s = (link*)malloc(sizeof(link)); s->info = info; if (head == NULL) { head = s; } else { p->next = s; } p = s; if (p != NULL) p->next = NULL; i++; } return head; } /*输出*/ void display(link *head) { link *p; p = head;//定义一个副本,输出相当于删除,故使用副本进行 if (!p) { printf("\n空链表!\n"); } else { printf("\n单链表为:\n"); while (p) { printf("%d->", p->info); p = p->next; } } } link * find(link * head,int i) { link * p; p = head; int count = 0; while (count != i) { p = p->next; count++; } return p; } //插入 link * add(link * head) { link * p; link * s; int i; printf("\n请输入要插入的位置:"); scanf("%d", &i); p = find(head, i); printf("\n请输入要插入的值:\n"); int info; scanf("%d", &info); s = (link*)malloc(sizeof(link)); s->info = info; if (i == 0) { s->next = head; head = s; } else { s->next = p->next; p->next = s; } return head; } //删除 link * dele(link * head) { link * p; printf("\n请输入要删除的值的位置:"); int i = scanf("%d", &i); p = find(head, i-1); if (i == 0) { head = head->next; } else { p->next = p->next->next; } return head; } link * dele_info(link * head) { link * p=NULL; link * s=head; printf("\n请输入你要i删除的值:"); int info; scanf("%d", &info); while (s&&s->info != info) { p = s; s = s->next; } if (s) { if (!p) head = head->next; else p->next = s->next; free(s); } return head; } //change link * change(link * head) { int change; printf("\n请输入你要修改的值:"); scanf("%d", &change); printf("\n请输入改正值:"); int tur; scanf("%d", &tur); link * p = head; while (p&&p->info != change) { p = p->next; } if (p) { p->info = tur; } return head; } int main() { link *head; link * p; int i; head=creat_h(); display(head); printf("\n请输入要查找的位置:"); scanf("%d", &i); link * w=find(head,i); printf("\n您要查找的位置上的值为:%d\n", w->info); head=add(head); display(head); head = dele_info(head); display(head); head = change(head); display(head); system("pause"); return 0; }
fa5de7bc27a93e6cae4aa5e33048ed83580af072
be0282afa8dd436619c71d6118c9db455eaf1a29
/Intermediate/Build/Win64/Design3D/Inc/Engine/AnimNode_SaveCachedPose.generated.h
a7e2126f3329473bf36b46773bc2f98c2376c499
[]
no_license
Quant2017/Design3D
0f915580b222af40ab911021cceef5c26375d7f9
94a22386be4aa37aa0f546354cc62958820a4bf6
refs/heads/master
2022-04-23T10:44:12.398772
2020-04-22T01:02:39
2020-04-22T01:02:39
262,966,755
1
0
null
2020-05-11T07:12:37
2020-05-11T07:12:36
null
UTF-8
C++
false
false
1,168
h
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/ObjectMacros.h" #include "UObject/ScriptMacros.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS #ifdef ENGINE_AnimNode_SaveCachedPose_generated_h #error "AnimNode_SaveCachedPose.generated.h already included, missing '#pragma once' in AnimNode_SaveCachedPose.h" #endif #define ENGINE_AnimNode_SaveCachedPose_generated_h #define Engine_Source_Runtime_Engine_Classes_Animation_AnimNode_SaveCachedPose_h_16_GENERATED_BODY \ friend struct Z_Construct_UScriptStruct_FAnimNode_SaveCachedPose_Statics; \ static class UScriptStruct* StaticStruct(); \ typedef FAnimNode_Base Super; template<> ENGINE_API UScriptStruct* StaticStruct<struct FAnimNode_SaveCachedPose>(); #undef CURRENT_FILE_ID #define CURRENT_FILE_ID Engine_Source_Runtime_Engine_Classes_Animation_AnimNode_SaveCachedPose_h PRAGMA_ENABLE_DEPRECATION_WARNINGS
4cb060f20cfff41f9a0713e2a1535746c526be00
8b4aca4180d5cf53f54c3c9bf39802902351cd34
/easy/rightmostChar/rightmostChar.cpp
da693af3dee735cfa4477af6c5c4c8864c36ead1
[]
no_license
p-lots/codeeval
31d3b38560ea513a872b83f5eb702dda0a3346aa
aea06e6fd955920c9ba019599035796bda5a0ca6
refs/heads/master
2020-05-21T14:40:04.395429
2019-05-11T05:04:12
2019-05-11T05:04:12
186,086,439
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
// https://www.codeeval.com/open_challenges/31/ // Submitted November 25, 2015 #include <iostream> #include <fstream> #include <sstream> #include <string> using namespace std; int main(int argc, char *argv[]) { ifstream file(argv[1]); string line; while (getline(file, line)) { stringstream ss(line); string temp; string search; string toBeSearched; bool firstTime = true; while (getline(ss, temp, ',')) { if (firstTime) { firstTime = false; search = temp; } else toBeSearched = temp; } string::size_type pos = search.find_last_of(toBeSearched); if (pos != string::npos) cout << pos << endl; else cout << "-1" << endl; } return 0; }
82a5805681d4cf4032ab573512ea5dd4ff1d745d
fd2395ea3e33f64c791368519263b7b74cc2be78
/parsec/facesim/src/Public_Library/Read_Write/READ_WRITE_FUNCTIONS.h
41088a220d42ff00e40eb792af7461c71ebf6afa
[]
no_license
lucashmorais/taskdep-suit
ca127a6ed864cbebac6181c39e311523a63f9337
66ca8115ae1084516f30e52f56eabad542639e5a
refs/heads/master
2022-09-29T11:26:36.310892
2022-04-04T14:15:26
2022-04-04T14:15:26
175,003,350
0
0
null
2021-04-13T20:33:57
2019-03-11T13:13:56
C
UTF-8
C++
false
false
18,288
h
//##################################################################### // Copyright 2004, Eran Guendelman, Igor Neverov, Andrew Selle, Eftychios Sifakis. // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### // Class READ_WRITE_FUNCTIONS //##################################################################### // // Functions for reading and writing which do the correct thing for objects, pointers, primitive types, etc. In general, use Read/Write_Binary (and Read/Write_Binary_Array) using T for the type // of the object you're reading/writing and RW the underlying floating point scalar type (float/double). // //##################################################################### #ifndef __READ_WRITE_FUNCTIONS__ #define __READ_WRITE_FUNCTIONS__ #include <iostream> #include <assert.h> #include <stdlib.h> namespace PhysBAM { //##################################################################### // Function isLittleEndian //##################################################################### static inline int isLittleEndian() { union { unsigned short int word; unsigned char byte; } endian_test; endian_test.word = 0x00FF; return (endian_test.byte == 0xFF); } //##################################################################### // Function Swap_Endianity //##################################################################### template<class T> inline void Swap_Endianity (T& x) { assert (sizeof (T) <= 8); if (sizeof (T) > 1) { T old = x; for (unsigned int k = 1; k <= sizeof (T); k++) ( (char*) &x) [k - 1] = ( (char*) &old) [sizeof (T) - k]; } } //##################################################################### // Read/Write_Primitive (handles endianness) //##################################################################### #ifdef __sparc__ void sparc_seg_fault_prevent_dummy (void *ptr); #endif template<class T> inline void Read_Primitive (std::istream& input_stream, T& d) { input_stream.read ( (char*) &d, sizeof (T)); if (!isLittleEndian()) Swap_Endianity (d); #ifdef __sparc__ /* For unknown reasons I am getting a segfault on my sparc box compiling with -O3, unless I place a dummy use of the value just read here. Might just be an issue with a particular gcc version. Unfortunately, this function call does affect the region of interest. */ sparc_seg_fault_prevent_dummy ( (void *) &d); #endif } template<class T> inline void Write_Primitive (std::ostream& output_stream, const T& d) { T d2 = d; if (!isLittleEndian()) Swap_Endianity (d2); output_stream.write ( (const char*) &d2, sizeof (T)); } #ifdef __APPLE__ // PhysBAM data formats assume sizeof(bool)==1 but the Mac apparently has bool==int with sizeof(bool)==4, so need to specialize these template<> inline void Read_Primitive<bool> (std::istream& input_stream, bool& d) { char c; input_stream.read (&c, 1); d = (bool) c; } template<> inline void Write_Primitive<bool> (std::ostream& output_stream, const bool& d) { char c = (char) d; output_stream.write (&c, 1); } #endif //##################################################################### // Read/Write_Float_Or_Double //##################################################################### template<class T, class RW> inline void Read_Float_Or_Double (std::istream& input_stream, T& d) { std::cerr << "Read_Float_Or_Double called with bad types" << std::endl; exit (1); } template<class T, class RW> inline void Write_Float_Or_Double (std::ostream& output_stream, T d) { std::cerr << "Write_Float_Or_Double called with bad types" << std::endl; exit (1); } template<> inline void Read_Float_Or_Double<float, float> (std::istream& input_stream, float& d) { Read_Primitive (input_stream, d); // no conversion } template<> inline void Read_Float_Or_Double<double, double> (std::istream& input_stream, double& d) { Read_Primitive (input_stream, d); // no conversion } template<> inline void Read_Float_Or_Double<float, double> (std::istream& input_stream, float& d) { double tmp; // convert types Read_Primitive (input_stream, tmp); d = (float) tmp; } template<> inline void Read_Float_Or_Double<double, float> (std::istream& input_stream, double& d) { float tmp; // convert types Read_Primitive (input_stream, tmp); d = (double) tmp; } template<> inline void Write_Float_Or_Double<float, float> (std::ostream& output_stream, float d) { Write_Primitive (output_stream, d); // no conversion } template<> inline void Write_Float_Or_Double<double, double> (std::ostream& output_stream, double d) { Write_Primitive (output_stream, d); // no conversion } template<> inline void Write_Float_Or_Double<float, double> (std::ostream& output_stream, float d) { Write_Primitive (output_stream, (double) d); // convert types } template<> inline void Write_Float_Or_Double<double, float> (std::ostream& output_stream, double d) { Write_Primitive (output_stream, (float) d); // convert types } //##################################################################### // Read_Write for objects //##################################################################### template<class T> struct Read_Write { template<class RW> static void Read (std::istream& input_stream, T& d) { d.template Read<RW> (input_stream); } template<class RW> static void Write (std::ostream& output_stream, const T& d) { d.template Write<RW> (output_stream); } }; //##################################################################### // Read_Write for primitive types (other than float and double) //##################################################################### #define DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE(TYPE) \ template<> struct Read_Write<TYPE> { \ template<class RW> static void Read(std::istream& input_stream,TYPE& d){Read_Primitive(input_stream,d);} \ template<class RW> static void Write(std::ostream& output_stream,const TYPE& d) {Write_Primitive(output_stream,d);} \ }; DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (bool); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (char); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (unsigned char); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (short); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (unsigned short); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (int); DEFINE_READ_WRITE_FOR_PRIMITIVE_TYPE (unsigned int); //##################################################################### // Specializations for float and double //##################################################################### template<> struct Read_Write<float> { template<class RW> static void Read (std::istream& input_stream, float& d) { Read_Float_Or_Double<float, RW> (input_stream, d); } template<class RW> static void Write (std::ostream& output_stream, const float& d) { Write_Float_Or_Double<float, RW> (output_stream, d); } }; template<> struct Read_Write<double> { template<class RW> static void Read (std::istream& input_stream, double& d) { Read_Float_Or_Double<double, RW> (input_stream, d); } template<class RW> static void Write (std::ostream& output_stream, const double& d) { Write_Float_Or_Double<double, RW> (output_stream, d); } }; //##################################################################### // Read_Write for pointers to data //##################################################################### template<class T> struct Read_Write<T*> { template<class RW> static void Read (std::istream& input_stream, T*& d) { bool data_exists; Read_Write<bool>::template Read<RW> (input_stream, data_exists); if (data_exists) { d = new T(); // potential memory leak if d pointed elsewhere Read_Write<T>::template Read<RW> (input_stream, *d); } else d = 0; } template<class RW> static void Write (std::ostream& output_stream, T* const& d) { Read_Write<bool>::template Write<RW> (output_stream, d != 0); // Write a bool tag indicating whether pointer's data follows if (d) Read_Write<T>::template Write<RW> (output_stream, *d); } }; //##################################################################### // Read_Write for std::string's //##################################################################### template<> struct Read_Write<std::string> { template<class RW> static void Read (std::istream& input_stream, std::string& d) { int n; Read_Write<int>::template Read<RW> (input_stream, n); char* buffer = new char[n]; input_stream.read (buffer, n); d.assign (buffer, buffer + n); delete buffer; } template<class RW> static void Write (std::ostream& output_stream, const std::string& d) { int n = int (d.size()); Read_Write<int>::template Write<RW> (output_stream, n); const char* s = d.c_str(); output_stream.write (s, n); } }; //##################################################################### // Read_Binary //##################################################################### template<class RW, class T1> inline void Read_Binary (std::istream& input_stream, T1& d1) { Read_Write<T1>::template Read<RW> (input_stream, d1); } template<class RW, class T1, class T2> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); } template<class RW, class T1, class T2, class T3> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); } template<class RW, class T1, class T2, class T3, class T4> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); } template<class RW, class T1, class T2, class T3, class T4, class T5> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4, T5& d5) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); Read_Write<T5>::template Read<RW> (input_stream, d5); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4, T5& d5, T6& d6) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); Read_Write<T5>::template Read<RW> (input_stream, d5); Read_Write<T6>::template Read<RW> (input_stream, d6); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4, T5& d5, T6& d6, T7& d7) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); Read_Write<T5>::template Read<RW> (input_stream, d5); Read_Write<T6>::template Read<RW> (input_stream, d6); Read_Write<T7>::template Read<RW> (input_stream, d7); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7, class T8> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4, T5& d5, T6& d6, T7& d7, T8& d8) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); Read_Write<T5>::template Read<RW> (input_stream, d5); Read_Write<T6>::template Read<RW> (input_stream, d6); Read_Write<T7>::template Read<RW> (input_stream, d7); Read_Write<T8>::template Read<RW> (input_stream, d8); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7, class T8, class T9> inline void Read_Binary (std::istream& input_stream, T1& d1, T2& d2, T3& d3, T4& d4, T5& d5, T6& d6, T7& d7, T8& d8, T9& d9) { Read_Write<T1>::template Read<RW> (input_stream, d1); Read_Write<T2>::template Read<RW> (input_stream, d2); Read_Write<T3>::template Read<RW> (input_stream, d3); Read_Write<T4>::template Read<RW> (input_stream, d4); Read_Write<T5>::template Read<RW> (input_stream, d5); Read_Write<T6>::template Read<RW> (input_stream, d6); Read_Write<T7>::template Read<RW> (input_stream, d7); Read_Write<T8>::template Read<RW> (input_stream, d8); Read_Write<T9>::template Read<RW> (input_stream, d9); } //##################################################################### // Write_Binary //##################################################################### template<class RW, class T1> inline void Write_Binary (std::ostream& output_stream, const T1& d1) { Read_Write<T1>::template Write<RW> (output_stream, d1); } template<class RW, class T1, class T2> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); } template<class RW, class T1, class T2, class T3> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); } template<class RW, class T1, class T2, class T3, class T4> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); } template<class RW, class T1, class T2, class T3, class T4, class T5> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4, const T5& d5) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); Read_Write<T5>::template Write<RW> (output_stream, d5); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4, const T5& d5, const T6& d6) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); Read_Write<T5>::template Write<RW> (output_stream, d5); Read_Write<T6>::template Write<RW> (output_stream, d6); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4, const T5& d5, const T6& d6, const T7& d7) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); Read_Write<T5>::template Write<RW> (output_stream, d5); Read_Write<T6>::template Write<RW> (output_stream, d6); Read_Write<T7>::template Write<RW> (output_stream, d7); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7, class T8> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4, const T5& d5, const T6& d6, const T7& d7, const T8& d8) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); Read_Write<T5>::template Write<RW> (output_stream, d5); Read_Write<T6>::template Write<RW> (output_stream, d6); Read_Write<T7>::template Write<RW> (output_stream, d7); Read_Write<T8>::template Write<RW> (output_stream, d8); } template<class RW, class T1, class T2, class T3, class T4, class T5, class T6, class T7, class T8, class T9> inline void Write_Binary (std::ostream& output_stream, const T1& d1, const T2& d2, const T3& d3, const T4& d4, const T5& d5, const T6& d6, const T7& d7, const T8& d8, const T9& d9) { Read_Write<T1>::template Write<RW> (output_stream, d1); Read_Write<T2>::template Write<RW> (output_stream, d2); Read_Write<T3>::template Write<RW> (output_stream, d3); Read_Write<T4>::template Write<RW> (output_stream, d4); Read_Write<T5>::template Write<RW> (output_stream, d5); Read_Write<T6>::template Write<RW> (output_stream, d6); Read_Write<T7>::template Write<RW> (output_stream, d7); Read_Write<T8>::template Write<RW> (output_stream, d8); Read_Write<T9>::template Write<RW> (output_stream, d9); } //##################################################################### // Read/Write_Binary_Array //##################################################################### // array is C-style (zero-based) array template<class RW, class T> inline void Read_Binary_Array (std::istream& input_stream, T* array, const int number_of_elements) { for (int i = 0; i < number_of_elements; i++) Read_Write<T>::template Read<RW> (input_stream, array[i]); } template<class RW, class T> inline void Write_Binary_Array (std::ostream& output_stream, const T* array, const int number_of_elements) { for (int i = 0; i < number_of_elements; i++) Read_Write<T>::template Write<RW> (output_stream, array[i]); } //##################################################################### } #endif
c99b346ef3b6940f71b16acb16ee13d56e4c836e
2e6c469d50a58b57f2b9941939ca0974756c1308
/cpp/flipgameii.cpp
648aed8572d4fa4e32a5d613c7e2a4127329d271
[]
no_license
john15518513/leetcode
53ed07667f234a858291789ba0d60b46b5a11a51
43bf3c594a71535a3f4ee9154cc72344b92b0608
refs/heads/master
2021-01-13T04:29:47.247101
2018-10-08T02:12:56
2018-10-08T02:12:56
79,729,551
0
0
null
null
null
null
UTF-8
C++
false
false
357
cpp
class Solution { public: bool canWin(string s) { if (s == "" or s.size() <2) return false; for (int i = 0; i < s.size()-1; i++) { if (s.substr(i,2) == "++") { string t = s.substr(0, i) + "--" + s.substr(i+2); if (!canWin(t)) return true; } } return false; } };
1380248cff6e2bc32b905a9b50c5d533e553ea92
90047daeb462598a924d76ddf4288e832e86417c
/third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.h
147b9d12be926a16dd309f7f423b19480c5b1a53
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
massbrowser/android
99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080
a9c4371682c9443d6e1d66005d4db61a24a9617c
refs/heads/master
2022-11-04T21:15:50.656802
2017-06-08T12:31:39
2017-06-08T12:31:39
93,747,579
2
2
BSD-3-Clause
2022-10-31T10:34:25
2017-06-08T12:36:07
null
UTF-8
C++
false
false
1,638
h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef AnimationWorkletProxyClientImpl_h #define AnimationWorkletProxyClientImpl_h #include "core/dom/AnimationWorkletProxyClient.h" #include "platform/heap/Handle.h" #include "platform/wtf/Noncopyable.h" #include "web/CompositorAnimator.h" #include "web/CompositorProxyClientImpl.h" namespace blink { class CompositorMutatorImpl; // Mediates between one Animator and the associated CompositorMutatorImpl. There // is one AnimationWorkletProxyClientImpl per Animator but there may be multiple // for a given mutator and animatorWorklet. // // This is constructed on the main thread but it is used in the worklet backing // thread i.e., compositor thread. class AnimationWorkletProxyClientImpl final : public GarbageCollectedFinalized<AnimationWorkletProxyClientImpl>, public AnimationWorkletProxyClient, public CompositorAnimator { WTF_MAKE_NONCOPYABLE(AnimationWorkletProxyClientImpl); USING_GARBAGE_COLLECTED_MIXIN(AnimationWorkletProxyClientImpl); public: explicit AnimationWorkletProxyClientImpl(CompositorMutatorImpl*); DECLARE_VIRTUAL_TRACE(); // CompositorAnimator: // This method is invoked in compositor thread bool Mutate(double monotonic_time_now, CompositorMutableStateProvider*) override; private: CrossThreadPersistent<CompositorMutatorImpl> mutator_; CrossThreadPersistent<CompositorProxyClientImpl> compositor_proxy_client_; }; } // namespace blink #endif // AnimationWorkletProxyClientImpl_h
ab1b0f78db0607d3feb3ea39e41b755cc63a43bb
2f86f968f01a99b4b9fd69d3f6e889ac4fe53d44
/queue.cpp
bd3d0d539e715db385ea498adeb492ea8c48e8fa
[]
no_license
sundarsaravanan/CPP-Programs
97cd1b5efacef89c0264e95cba18f06b601ed280
6017256065c92be0b769b0d6553e75ac3155a1bf
refs/heads/master
2021-01-12T05:37:39.569301
2017-01-23T17:28:26
2017-01-23T17:28:26
77,149,877
0
0
null
null
null
null
UTF-8
C++
false
false
481
cpp
#include<iostream> using namespace std; int f,r; class queue { public: char a[20]; queue() { f=0; r=-1; } void deq() { int i=1; while(f<=r) { cout<<i<<"."<<a[f++]; i++; } } void enq(char x) { a[++r]=x; } }; int main() { int no,i; char a; queue q; cout<<"Enter total number of processes\n"; cin>>no; cout<<"Enter the processes one by one"; for(i=0;i<no;i++) { cin>>a; q.enq(a); } cout<<"The Order of processes:\n"; q.deq(); return 0; }
b8bc38d200f8dbc4b424062ed37b1d9f39ea6c2d
a54e2ee8f7ed398098505342e40c9b74a40a7985
/OpenMP_NumIntegr/OpenMP_NumIntegr/OpenMP_NumIntegr.cpp
b7b1ee26a3d8db366584c39fd1ad029b1fd4f583
[]
no_license
olikomarov/CuncurrentProgramming
39f00ff9b643c7dc266eae779d8871729d9e6956
3b101060b85ae2c8bdc494d82cabdd2bcbad67df
refs/heads/master
2020-04-07T05:36:20.186541
2018-12-31T16:38:57
2018-12-31T16:38:57
158,102,552
0
0
null
null
null
null
UTF-8
C++
false
false
1,577
cpp
#include <stdio.h> #include <conio.h> #include <iostream> #include <iomanip> #include <omp.h> #include <list> #include <utility> #include <exception> using namespace std; struct Result { double timestamp, area; }; double f(const double x); const Result method_rectangle(const double, const double, const double, const int); int main() { const short maxThreads = 10; short method; double x1, x2, dx; cout << fixed << setprecision(8) << endl; try { while (true) { cout << " x1: "; cin >> x1; cout << " x2: "; cin >> x2; cout << " dx: "; cin >> dx; list<pair<short, Result>> results; for (int i = 0; i < maxThreads; i++) { Result result= method_rectangle(x1, x2, dx, i + 1); pair<short, Result> s_result(i + 1, result); results.push_back(s_result); } cout << endl << " Results:" << endl; for (auto & result : results) { cout << " Threads: " << result.first; cout << ", timestamp: " << result.second.timestamp; cout << ", area: " << result.second.area << endl; } cout << endl; } } catch (exception & e) { cout << e.what() << endl; } cin.get(); return 0; } const Result method_rectangle(const double x1, const double x2, const double dx, const int nThreads) { const int N = static_cast<int>((x2 - x1) / dx); double now = omp_get_wtime(); double s = 0; #pragma omp parallel for num_threads(nThreads) reduction(+: s) for (int i = 1; i <= N; i++) s += f(x1 + i * dx); s *= dx; return { omp_get_wtime() - now, s }; } double f(const double x) { return sin(x); }
abb0546a19321df5418d26c2ac48176d225a217d
a3a363c4a5cd807147d88db04439f25bc2444033
/poseidon/src/singletons/magic_daemon.hpp
2382d3e1f7a747a2a6a92cd1ca72f9543cf55bf1
[ "Apache-2.0" ]
permissive
nail-lian/poseidon
2fb93a3d2b85f74e090cc08259832fe44eab106a
2110e7fd3069ba3d3570a264d5a7d9f57853f201
refs/heads/master
2020-04-17T16:57:06.746847
2018-10-29T02:49:13
2018-10-29T02:49:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
443
hpp
// 这个文件是 Poseidon 服务器应用程序框架的一部分。 // Copyleft 2014 - 2018, LH_Mouse. All wrongs reserved. #ifndef POSEIDON_SYSTEM_MAGIC_DAEMON_HPP_ #define POSEIDON_SYSTEM_MAGIC_DAEMON_HPP_ #include <cstddef> namespace Poseidon { class Magic_daemon { private: Magic_daemon(); public: static void start(); static void stop(); static const char * guess_mime_type(const void *data, std::size_t size); }; } #endif
e0e177deef27292d1b920bd8c7d02ea7828d33e5
8be1a777adcd1c80d828e87a3f70c13566d73f43
/Analyser/Machines.hpp
cd64edd33602330497592e9f18637a03cfa203e5
[ "MIT" ]
permissive
ajacocks/CLK
d42249c12afae6bbc1253cb1a556b6c6a9f22be5
5f39938a192f976f51f54e4bbaf6d5cded03d48d
refs/heads/master
2022-07-30T03:58:53.285448
2020-05-11T04:52:51
2020-05-11T04:52:51
262,941,152
0
0
MIT
2020-05-11T04:48:30
2020-05-11T04:48:30
null
UTF-8
C++
false
false
379
hpp
// // Machines.h // Clock Signal // // Created by Thomas Harte on 24/01/2018. // Copyright 2018 Thomas Harte. All rights reserved. // #ifndef Machines_h #define Machines_h namespace Analyser { enum class Machine { AmstradCPC, AppleII, Atari2600, AtariST, ColecoVision, Electron, Macintosh, MasterSystem, MSX, Oric, Vic20, ZX8081 }; } #endif /* Machines_h */
71c419350f0585d552bb5e126b5531b265388401
027102cc45a255b3e4f818c28c7627487ae01dcb
/examples/UAlbertaBot with StarAlgo/SparCraft/source/GameState.h
2341bc22fa6cc66c515955715c3d05cd552fc098
[ "MIT" ]
permissive
Games-and-Simulations/StarAlgo
d5f77be45ecee2d2a0851456a5c8ce8b81cbca0a
ca0bc389db5a698de862ce2d1b14d2ae293e18b8
refs/heads/master
2020-04-13T15:14:56.313740
2019-01-01T21:29:58
2019-01-01T21:29:58
163,285,524
15
3
MIT
2018-12-27T11:17:00
2018-12-27T11:16:59
null
UTF-8
C++
false
false
7,061
h
#pragma once #include "Common.h" #include <algorithm> #include "MoveArray.h" #include "Hash.h" #include "Map.hpp" #include "Unit.h" #include "GraphViz.hpp" #include "Array.hpp" #include "Logger.h" #include <memory> typedef std::shared_ptr<SparCraft::Map> MapPtr; namespace SparCraft { class GameState { Map * _map; std::vector<Unit> _units[Constants::Num_Players]; std::vector<int> _unitIndex[Constants::Num_Players]; Array2D<Unit, Constants::Num_Players, Constants::Max_Units> _units2; Array2D<int, Constants::Num_Players, Constants::Max_Units> _unitIndex2; Array<Unit, 1> _neutralUnits; Array<UnitCountType, Constants::Num_Players> _numUnits; Array<UnitCountType, Constants::Num_Players> _prevNumUnits; Array<float, Constants::Num_Players> _totalLTD; Array<float, Constants::Num_Players> _totalSumSQRT; Array<int, Constants::Num_Players> _numMovements; Array<int, Constants::Num_Players> _prevHPSum; TimeType _currentTime; size_t _maxUnits; TimeType _sameHPFrames; // checks to see if the unit array is full before adding a unit to the state const bool checkFull(const IDType & player) const; const bool checkUniqueUnitIDs() const; void performAction(const Action & theMove); public: GameState(); GameState(const std::string & filename); // misc functions void finishedMoving(); void updateGameTime(); const bool playerDead(const IDType & player) const; const bool isTerminal() const; // unit data functions const size_t numUnits(const IDType & player) const; const size_t prevNumUnits(const IDType & player) const; const size_t numNeutralUnits() const; const size_t closestEnemyUnitDistance(const Unit & unit) const; // Unit functions void sortUnits(); void addUnit(const Unit & u); void addUnit(const BWAPI::UnitType unitType, const IDType playerID, const Position & pos); void addUnitWithID(const Unit & u); void addNeutralUnit(const Unit & unit); const Unit & getUnit(const IDType & player, const UnitCountType & unitIndex) const; const Unit & getUnitByID(const IDType & unitID) const; Unit & getUnit(const IDType & player, const UnitCountType & unitIndex); const Unit & getUnitByID(const IDType & player, const IDType & unitID) const; Unit & getUnitByID(const IDType & player, const IDType & unitID); const Unit & getClosestEnemyUnit(const IDType & player, const IDType & unitIndex, bool checkCloaked=false); const Unit & getClosestOurUnit(const IDType & player, const IDType & unitIndex); const Unit & getUnitDirect(const IDType & player, const IDType & unit) const; const Unit & getNeutralUnit(const size_t & u) const; // game time functions void setTime(const TimeType & time); const TimeType getTime() const; // evaluation functions const StateEvalScore eval( const IDType & player, const IDType & evalMethod, const IDType p1Script = PlayerModels::NOKDPS, const IDType p2Script = PlayerModels::NOKDPS) const; const ScoreType evalLTD(const IDType & player) const; const ScoreType evalLTD2(const IDType & player) const; const ScoreType LTD(const IDType & player) const; const ScoreType LTD2(const IDType & player) const; const StateEvalScore evalSim(const IDType & player, const IDType & p1, const IDType & p2) const; const IDType getEnemy(const IDType & player) const; // unit hitpoint calculations, needed for LTD2 evaluation void calculateStartingHealth(); void setTotalLTD(const float & p1, const float & p2); void setTotalLTD2(const float & p1, const float & p2); const float & getTotalLTD(const IDType & player) const; const float & getTotalLTD2(const IDType & player) const; // move related functions void generateMoves(MoveArray & moves, const IDType & playerIndex) const; void makeMoves(const std::vector<Action> & moves); const int & getNumMovements(const IDType & player) const; const IDType whoCanMove() const; const bool bothCanMove() const; // map-related functions void setMap(Map * map); Map * getMap() const; const bool isWalkable(const Position & pos) const; const bool isFlyable(const Position & pos) const; // hashing functions const HashType calculateHash(const size_t & hashNum) const; // state i/o functions void print(int indent = 0) const; std::string toString() const; std::string toStringCompact() const; void write(const std::string & filename) const; void read(const std::string & filename); }; }
d7ea052b9475ba48d0544f4bffddcf04eb27d0be
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/sdktools/checksym/symbolverification.cpp
2d329f83ed23a063851dafcda5630acaabf57c01
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,261
cpp
//+------------------------------------------------------------------------- // // Microsoft Windows // // Copyright (C) Microsoft Corporation, 1999 - 2000 // // File: symbolverification.cpp // //-------------------------------------------------------------------------- // SymbolVerification.cpp: implementation of the CSymbolVerification class. // ////////////////////////////////////////////////////////////////////// #ifndef NO_STRICT #ifndef STRICT #define STRICT 1 #endif #endif /* NO_STRICT */ #include <WINDOWS.H> #include <TCHAR.H> #include <STDIO.H> #include "globals.h" #include "SymbolVerification.h" #include "ModuleInfo.h" #include "UtilityFunctions.h" #pragma warning (push) #pragma warning ( disable : 4710) ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CSymbolVerification::CSymbolVerification() { m_fComInitialized = false; m_fSQLServerConnectionAttempted = false; m_fSQLServerConnectionInitialized = false; // SQL2 - mjl 12/14/99 m_fSQLServerConnectionAttempted2 = false; m_fSQLServerConnectionInitialized2 = false; // Initialize ADO Connection Object to NULL m_lpConnectionPointer = NULL; m_lpConnectionPointer2 = NULL; // SQL2 - mjl 12/14/99 } CSymbolVerification::~CSymbolVerification() { if (SQLServerConnectionInitialized()) { TerminateSQLServerConnection(); } if (SQLServerConnectionInitialized2()) { TerminateSQLServerConnection2(); } if (m_fComInitialized) ::CoUninitialize(); } bool CSymbolVerification::Initialize() { HRESULT hr = S_OK; // Initialize COM hr = ::CoInitialize(NULL); if (FAILED(hr)) { _tprintf(TEXT("Failed Initializing COM!\n")); return false; } // Com is initialized! m_fComInitialized = true; return true; } bool CSymbolVerification::InitializeSQLServerConnection(LPTSTR tszSQLServerName) { HRESULT hr = S_OK; TCHAR tszConnectionString[256]; m_fSQLServerConnectionAttempted = true; _tprintf(TEXT("\nAttempting connection to SQL Server [%s]..."), tszSQLServerName); // Compose the Connection String // ie. "driver={SQL Server};server=<servername>;database=Symbols" _tcscpy(tszConnectionString, TEXT("driver={SQL Server};server=")); _tcscat(tszConnectionString, tszSQLServerName); _tcscat(tszConnectionString, TEXT(";uid=GUEST;pwd=guest;database=Symbols")); try { // Okay, we need a BSTR _bstr_t bstrConnectionString( tszConnectionString ); // Okay, let's try and actually create this Connection Pointer... hr = m_lpConnectionPointer.CreateInstance( __uuidof( Connection ) ); if (FAILED(hr)) goto error; // Now, let's use the Connection Pointer object to actually get connected... hr = m_lpConnectionPointer->Open( bstrConnectionString, "", "", -1); if (FAILED(hr)) goto error; // Now, let's create a RecordSet for use later... hr = m_lpRecordSetPointer.CreateInstance( __uuidof( Recordset ) ); if (FAILED(hr)) goto error; m_fSQLServerConnectionInitialized = true; _tprintf(TEXT("SUCCESS!\n\n")); } catch (_com_error &e ) { _tprintf( TEXT("FAILURE!\n\n") ); DumpCOMException(e); goto error; } catch (...) { _tprintf( TEXT("FAILURE!\n\n") ); _tprintf( TEXT("Caught an exception of unknown type\n" ) ); goto error; } goto cleanup; error: if (m_lpConnectionPointer) m_lpConnectionPointer = NULL; _tprintf(TEXT("\nFAILURE Attempting SQL Server Connection! Error = 0x%x\n"), hr); switch (hr) { case E_NOINTERFACE: case REGDB_E_CLASSNOTREG: _tprintf(TEXT("\nThe most likely reason for this is that your system does not have\n")); _tprintf(TEXT("the necessary ADO components installed. You should install the\n")); _tprintf(TEXT("latest Microsoft Data Access Component (MDAC) release available on\n")); _tprintf(TEXT("http://www.microsoft.com/data/download.htm\n")); break; } cleanup: return m_fSQLServerConnectionInitialized; } void CSymbolVerification::DumpCOMException(_com_error &e) { _tprintf( TEXT("\tCode = %08lx\n"), e.Error()); _tprintf( TEXT("\tCode meaning = %s\n"), e.ErrorMessage()); _bstr_t bstrSource(e.Source()); _bstr_t bstrDescription(e.Description()); _tprintf( TEXT("\tSource = %s\n"), (LPCSTR) bstrSource); _tprintf( TEXT("\tDescription = %s\n"), (LPCSTR) bstrDescription); } bool CSymbolVerification::TerminateSQLServerConnection() { // Free the Connection if (m_lpConnectionPointer) m_lpConnectionPointer = NULL; if (m_lpRecordSetPointer) m_lpRecordSetPointer = NULL; m_fSQLServerConnectionInitialized = false; return true; } bool CSymbolVerification::SearchForDBGFileUsingSQLServer(LPTSTR tszPEImageModuleName, DWORD dwPEImageTimeDateStamp, CModuleInfo *lpModuleInfo) { HRESULT hr = S_OK; FieldPtr lpFieldSymbolPath = NULL; _variant_t vSymbolPath; wchar_t wszSymbolPath[_MAX_PATH+1]; wchar_t wszReturnedDBGFile[_MAX_FNAME]; wchar_t wszReturnedDBGFileExtension[_MAX_EXT]; TCHAR tszCommandText[256]; TCHAR tszLinkerDate[64]; // Plenty big... TCHAR tszDBGFileName[_MAX_FNAME]; HANDLE hFileHandle; _tsplitpath(tszPEImageModuleName, NULL, NULL, tszDBGFileName, NULL); #ifdef _UNICODE LPTSTR wszDBGFileName = tszDBGFileName; #else wchar_t wszDBGFileName[_MAX_FNAME]; MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, tszDBGFileName, -1, wszDBGFileName, _MAX_FNAME); #endif // Compose the Connection String // ie. "driver={SQL Server};server=<servername>;database=Symbols" _tcscpy(tszCommandText, TEXT("SELECT FILENAME FROM Symbols WHERE TIMESTAMP = '")); _stprintf(tszLinkerDate, TEXT("%x"), dwPEImageTimeDateStamp); _tcscat(tszCommandText, tszLinkerDate); _tcscat(tszCommandText, TEXT("'")); try { _bstr_t bstrCommandText( tszCommandText ); m_lpRecordSetPointer = m_lpConnectionPointer->Execute(bstrCommandText, NULL, adCmdText); lpFieldSymbolPath = m_lpRecordSetPointer->Fields->GetItem(_variant_t( "FILENAME" )); #ifdef _DEBUG _tprintf(TEXT("Searching SQL Server for matching symbol for [%s]\n"), tszPEImageModuleName); #endif while (VARIANT_FALSE == m_lpRecordSetPointer->EndOfFile) { vSymbolPath.Clear(); vSymbolPath = lpFieldSymbolPath->Value; wcscpy(wszSymbolPath, vSymbolPath.bstrVal); _wsplitpath(wszSymbolPath, NULL, NULL, wszReturnedDBGFile, wszReturnedDBGFileExtension); // if ( (_wcsicmp(wszReturnedDBGFile, wszDBGFileName) == 0 ) && (_wcsicmp(wszReturnedDBGFileExtension, L".DBG") == 0 ) ) { #ifdef _DEBUG wprintf(L"Module path = %s\n", wszSymbolPath); #endif #ifdef _UNICODE wchar_t * tszSymbolPath = wszSymbolPath; #else char tszSymbolPath[_MAX_PATH+1]; WideCharToMultiByte(CP_ACP, 0, wszSymbolPath, -1, tszSymbolPath, _MAX_PATH+1, NULL, NULL); #endif // Okay, let's validate the DBG file we are pointing to... hFileHandle = CreateFile( tszSymbolPath, GENERIC_READ, (FILE_SHARE_READ | FILE_SHARE_WRITE), NULL, OPEN_EXISTING, 0, NULL); // Does the returned handle look good? if (hFileHandle != INVALID_HANDLE_VALUE) { lpModuleInfo->VerifyDBGFile(hFileHandle, tszSymbolPath, lpModuleInfo); } else { _tprintf(TEXT("\nERROR: Searching for [%s]!\n"), tszSymbolPath); CUtilityFunctions::PrintMessageString(GetLastError()); } CloseHandle(hFileHandle); if (lpModuleInfo->GetDBGSymbolModuleStatus() == CModuleInfo::SymbolModuleStatus::SYMBOL_MATCH) { // Cool... it really does match... hr = m_lpRecordSetPointer->Close(); goto cleanup; } } m_lpRecordSetPointer->MoveNext(); } hr = m_lpRecordSetPointer->Close(); if (FAILED(hr)) goto error; } catch (_com_error &e ) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); DumpCOMException(e); goto cleanup; } catch (...) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); _tprintf( TEXT("Caught an exception of unknown type\n" ) ); goto cleanup; } goto cleanup; error: TerminateSQLServerConnection(); _tprintf(TEXT("FAILURE Attempting to query the SQL Server!\n")); cleanup: return true; } /////////////////////////// mjl ////////////////////////////////////////// bool CSymbolVerification::InitializeSQLServerConnection2(LPTSTR tszSQLServerName) { HRESULT hr = S_OK; TCHAR tszConnectionString[256]; m_fSQLServerConnectionAttempted2 = true; _tprintf(TEXT("\nAttempting connection to SQL Server [%s]..."), tszSQLServerName); // Compose the Connection String // ie. "driver={SQL Server};server=<servername>;database=Symbols" _tcscpy(tszConnectionString, TEXT("driver={SQL Server};server=")); _tcscat(tszConnectionString, tszSQLServerName); _tcscat(tszConnectionString, TEXT(";uid=GUEST;pwd=guest;database=Symbols2")); try { // Okay, we need a BSTR _bstr_t bstrConnectionString( tszConnectionString ); // Okay, let's try and actually create this Connection Pointer... hr = m_lpConnectionPointer2.CreateInstance( __uuidof( Connection ) ); if (FAILED(hr)) goto error; // Now, let's use the Connection Pointer object to actually get connected... hr = m_lpConnectionPointer2->Open( bstrConnectionString, "", "", -1); if (FAILED(hr)) goto error; // Now, let's create a RecordSet for use later... hr = m_lpRecordSetPointer2.CreateInstance( __uuidof( Recordset ) ); if (FAILED(hr)) goto error; _tprintf(TEXT("Complete\n")); m_fSQLServerConnectionInitialized2 = true; } catch (_com_error &e ) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); DumpCOMException(e); goto error; } catch (...) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); _tprintf( TEXT("Caught an exception of unknown type\n" ) ); goto error; } goto cleanup; error: if (m_lpConnectionPointer2) m_lpConnectionPointer2 = NULL; _tprintf(TEXT("\nFAILURE Attempting SQL Server Connection! Error = 0x%x\n"), hr); switch (hr) { case E_NOINTERFACE: case REGDB_E_CLASSNOTREG: _tprintf(TEXT("\nThe most likely reason for this is that your system does not have\n")); _tprintf(TEXT("the necessary ADO components installed. You should install the\n")); _tprintf(TEXT("latest Microsoft Data Access Component (MDAC) release available on\n")); _tprintf(TEXT("http://www.microsoft.com/data/download.htm\n")); break; } cleanup: return m_fSQLServerConnectionInitialized2; } bool CSymbolVerification::TerminateSQLServerConnection2() { // Free the Connection if (m_lpConnectionPointer2) m_lpConnectionPointer2 = NULL; if (m_lpRecordSetPointer2) m_lpRecordSetPointer2 = NULL; m_fSQLServerConnectionInitialized2 = false; return true; } bool CSymbolVerification::SearchForDBGFileUsingSQLServer2(LPTSTR tszPEImageModuleName, DWORD dwPEImageTimeDateStamp, CModuleInfo *lpModuleInfo) { HRESULT hr = S_OK; FieldPtr lpFieldSymbolPath = NULL; _variant_t vSymbolPath; _bstr_t sFieldSymbolPath; wchar_t wszSymbolPath[_MAX_PATH+1]; wchar_t wszReturnedDBGFile[_MAX_FNAME]; wchar_t wszReturnedDBGFileExtension[_MAX_EXT]; TCHAR tszCommandText[512]; TCHAR tszDBGFileName[_MAX_FNAME]; HANDLE hFileHandle; _tsplitpath(tszPEImageModuleName, NULL, NULL, tszDBGFileName, NULL); #ifdef _UNICODE LPTSTR wszDBGFileName = tszDBGFileName; #else wchar_t wszDBGFileName[_MAX_FNAME]; MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, tszDBGFileName, -1, wszDBGFileName, _MAX_FNAME); #endif // Compose the Query String _stprintf(tszCommandText, TEXT("SELECT tblDBGModulePaths.DBGModulePath FROM tblDBGModules,tblDBGModulePaths WHERE tblDBGModules.DBGFilename='%s.DBG' AND tblDBGModules.TimeDateStamp='%d' AND tblDBGModules.DBGModuleID = tblDBGModulePaths.DBGModuleID"),tszDBGFileName,dwPEImageTimeDateStamp); try { _bstr_t bstrCommandText( tszCommandText ); m_lpRecordSetPointer2 = m_lpConnectionPointer2->Execute(bstrCommandText, NULL, adCmdText); while ( !m_lpRecordSetPointer2->EndOfFile ) { vSymbolPath = m_lpRecordSetPointer2->Fields->GetItem("DBGModulePath")->Value; lpFieldSymbolPath = m_lpRecordSetPointer2->Fields->GetItem(_variant_t( "DBGModulePath" )); #ifdef _DEBUG _tprintf(TEXT("Searching SQL Server for matching symbol for [%s]\n"), tszPEImageModuleName); #endif vSymbolPath.Clear(); vSymbolPath = lpFieldSymbolPath->Value; wcscpy(wszSymbolPath, vSymbolPath.bstrVal); _wsplitpath(wszSymbolPath, NULL, NULL, wszReturnedDBGFile, wszReturnedDBGFileExtension); // if ( (_wcsicmp(wszReturnedDBGFile, wszDBGFileName) == 0 ) && (_wcsicmp(wszReturnedDBGFileExtension, L".DBG") == 0 ) ) { #ifdef _DEBUG wprintf(L"Module path = %s\n", wszSymbolPath); #endif #ifdef _UNICODE wchar_t * tszSymbolPath = wszSymbolPath; #else char tszSymbolPath[_MAX_PATH+1]; WideCharToMultiByte(CP_ACP, 0, wszSymbolPath, -1, tszSymbolPath, _MAX_PATH+1, NULL, NULL); #endif // Okay, let's validate the DBG file we are pointing to... hFileHandle = CreateFile( tszSymbolPath, GENERIC_READ, (FILE_SHARE_READ | FILE_SHARE_WRITE), NULL, OPEN_EXISTING, 0, NULL); // Does the returned handle look good? if (hFileHandle != INVALID_HANDLE_VALUE) { lpModuleInfo->VerifyDBGFile(hFileHandle, tszSymbolPath, lpModuleInfo); } else { _tprintf(TEXT("\nERROR: Searching for [%s]!\n"), tszSymbolPath); CUtilityFunctions::PrintMessageString(GetLastError()); } CloseHandle(hFileHandle); if (lpModuleInfo->GetDBGSymbolModuleStatus() == CModuleInfo::SymbolModuleStatus::SYMBOL_MATCH) { // Cool... it really does match... hr = m_lpRecordSetPointer2->Close(); goto cleanup; } } m_lpRecordSetPointer2->MoveNext(); } hr = m_lpRecordSetPointer2->Close(); if (FAILED(hr)) goto error; } catch (_com_error &e ) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); DumpCOMException(e); goto cleanup; } catch (...) { _tprintf( TEXT("FAILURE Attempting SQL Server Connection!\n") ); _tprintf( TEXT("Caught an exception of unknown type\n" ) ); goto cleanup; } goto cleanup; error: TerminateSQLServerConnection(); _tprintf(TEXT("FAILURE Attempting to query the SQL Server!\n")); cleanup: return true; } bool CSymbolVerification::SearchForPDBFileUsingSQLServer2(LPTSTR tszPEImageModuleName, DWORD dwPDBSignature, CModuleInfo *lpModuleInfo) { HRESULT hr = S_OK; FieldPtr lpFieldSymbolPath = NULL; _variant_t vSymbolPath; _bstr_t sFieldSymbolPath; wchar_t wszSymbolPath[_MAX_PATH+1]; wchar_t wszReturnedPDBFile[_MAX_FNAME]; wchar_t wszReturnedPDBFileExtension[_MAX_EXT]; TCHAR tszCommandText[512]; TCHAR tszPDBFileName[_MAX_FNAME]; HANDLE hFileHandle; _tsplitpath(tszPEImageModuleName, NULL, NULL, tszPDBFileName, NULL); #ifdef _UNICODE LPTSTR wszPDBFileName = tszPDBFileName; #else wchar_t wszPDBFileName[_MAX_FNAME]; MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, tszPDBFileName, -1, wszPDBFileName, _MAX_FNAME); #endif // Compose the Query String _stprintf(tszCommandText, TEXT("SELECT tblPDBModulePaths.PDBModulePath FROM tblPDBModules,tblPDBModulePaths WHERE tblPDBModules.PDBFilename='%s.PDB' AND tblPDBModules.PDBSignature='%d' AND tblPDBModules.PDBModuleID = tblPDBModulePaths.PDBModuleID"),tszPDBFileName,dwPDBSignature); try { _bstr_t bstrCommandText( tszCommandText ); m_lpRecordSetPointer2 = m_lpConnectionPointer2->Execute(bstrCommandText, NULL, adCmdText); while ( !m_lpRecordSetPointer2->EndOfFile ) { vSymbolPath = m_lpRecordSetPointer2->Fields->GetItem("PDBModulePath")->Value; lpFieldSymbolPath = m_lpRecordSetPointer2->Fields->GetItem(_variant_t( "PDBModulePath" )); #ifdef _DEBUG _tprintf(TEXT("Searching SQL Server for matching symbol for [%s]\n"), tszPEImageModuleName); #endif vSymbolPath.Clear(); vSymbolPath = lpFieldSymbolPath->Value; wcscpy(wszSymbolPath, vSymbolPath.bstrVal); _wsplitpath(wszSymbolPath, NULL, NULL, wszReturnedPDBFile, wszReturnedPDBFileExtension); if ( (_wcsicmp(wszReturnedPDBFile, wszPDBFileName) == 0 ) && (_wcsicmp(wszReturnedPDBFileExtension, L".PDB") == 0 ) ) { #ifdef _DEBUG wprintf(L"Module path = %s\n", wszSymbolPath); #endif #ifdef _UNICODE wchar_t * tszSymbolPath = wszSymbolPath; #else char tszSymbolPath[_MAX_PATH+1]; WideCharToMultiByte(CP_ACP, 0, wszSymbolPath, -1, tszSymbolPath, _MAX_PATH+1, NULL, NULL); #endif // Okay, let's validate the DBG file we are pointing to... hFileHandle = CreateFile( tszSymbolPath, GENERIC_READ, (FILE_SHARE_READ | FILE_SHARE_WRITE), NULL, OPEN_EXISTING, 0, NULL); // Does the returned handle look good? if (hFileHandle != INVALID_HANDLE_VALUE) { lpModuleInfo->VerifyPDBFile(hFileHandle, tszSymbolPath, lpModuleInfo); } else { _tprintf(TEXT("\nERROR: Searching for [%s]!\n"), tszSymbolPath); CUtilityFunctions::PrintMessageString(GetLastError()); } CloseHandle(hFileHandle); if (lpModuleInfo->GetPDBSymbolModuleStatus() == CModuleInfo::SymbolModuleStatus::SYMBOL_MATCH) { // Cool... it really does match... hr = m_lpRecordSetPointer2->Close(); goto cleanup; } } m_lpRecordSetPointer2->MoveNext(); } hr = m_lpRecordSetPointer2->Close(); if (FAILED(hr)) goto error; } catch (_com_error &e ) { _tprintf( TEXT("\nFAILURE Attempting SQL2 Server Connection!\n") ); DumpCOMException(e); goto cleanup; } catch (...) { _tprintf( TEXT("FAILURE Attempting SQL2 Server Connection!\n") ); _tprintf( TEXT("Caught an exception of unknown type\n" ) ); goto cleanup; } goto cleanup; error: TerminateSQLServerConnection2(); _tprintf(TEXT("FAILURE Attempting to query the SQL Server!\n")); cleanup: return true; } #pragma warning (pop)
c354f48ed99e95b7f55d93cfedb3bf69278876c5
933f154b469178fb9c3dd648bc985960c19290db
/initial/111_MinDepthOfBinaryTree/Solution.cpp
60a016d93105ce6252c4e0f157a2dca40a307466
[]
no_license
zywangzy/LeetCode
c5468ea8b108e9c1dec125fb07a5841348693f96
df2cba28ed47938073ab1ffc984af158e3de7611
refs/heads/master
2021-09-29T13:39:58.151078
2018-11-24T22:35:04
2018-11-24T22:35:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
785
cpp
#include "../IOLib.hpp" using namespace std; /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: int minDepth(TreeNode* root) { if(root == NULL) return 0; if(root->left == NULL || root->right == NULL){ if(root->left != NULL) return minDepth(root->left)+1; if(root->right != NULL) return minDepth(root->right)+1; } return min(minDepth(root->left), minDepth(root->right)) + 1; } }; int main(){ TreeNode* root = readBinaryTree(); Solution solution; cout << "The minimum depth of this tree is " << solution.minDepth(root) << "." << endl; return 0; }
3b96c499db119a401a909912e84ba48b322dc5e4
3d6aa8fe2a687ec4da38c72b2ef490ea429d1f0f
/example/snippets/juliet1.1/89_CWE762_Mismatched_Memory_Management_Routines__new_free_struct_21.cpp
f303add7f6b235a8d1c4e61748ce289abebc1afb
[]
no_license
SEDS/mangrove
116579ad3c70ee5a0b8ae67920752514851bad17
a7c0be6268ac87ee60a69aa9664d7c5d39aae499
refs/heads/master
2022-12-11T12:03:52.927574
2020-07-30T15:39:42
2020-07-30T15:39:42
291,787,979
0
0
null
null
null
null
UTF-8
C++
false
false
256
cpp
#include "std_testcase.h" namespace CWE762_Mismatched_Memory_Management_Routines__new_free_struct_21 { #ifndef OMITGOOD static void goodB2G1_sink(twoints * data) { { free(data); } data = new twoints; goodB2G1_sink(data); } #endif }
ddbc6c0862ac2669bfad6f046136e173b95b1825
77958210b82b9dd8ec38431156901c01afafff71
/GTEngine/Source/Graphics/GteDirectionalLightTextureEffect.cpp
1a6d736e612aa524aa3e4fb01996cea29631a6e6
[]
no_license
spockthegray/gtengine
b0e6d73eb84c6ea01595da49052832a69b623203
2115fbced08e716aa2146530369fdcfb29c8dfbe
refs/heads/master
2021-09-09T17:27:02.553547
2018-03-18T13:35:47
2018-03-18T13:35:47
125,728,146
1
0
null
null
null
null
UTF-8
C++
false
false
8,396
cpp
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2018 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // File Version: 3.0.0 (2016/06/19) #include <GTEnginePCH.h> #include <Graphics/GteDirectionalLightTextureEffect.h> using namespace gte; DirectionalLightTextureEffect::DirectionalLightTextureEffect(std::shared_ptr<ProgramFactory> const& factory, BufferUpdater const& updater, std::shared_ptr<Material> const& material, std::shared_ptr<Lighting> const& lighting, std::shared_ptr<LightCameraGeometry> const& geometry, std::shared_ptr<Texture2> const& texture, SamplerState::Filter filter, SamplerState::Mode mode0, SamplerState::Mode mode1) : LightingEffect(factory, updater, msVSSource, msPSSource, material, lighting, geometry), mTexture(texture) { mSampler = std::make_shared<SamplerState>(); mSampler->filter = filter; mSampler->mode[0] = mode0; mSampler->mode[1] = mode1; mMaterialConstant = std::make_shared<ConstantBuffer>(sizeof(InternalMaterial), true); UpdateMaterialConstant(); mLightingConstant = std::make_shared<ConstantBuffer>(sizeof(InternalLighting), true); UpdateLightingConstant(); mGeometryConstant = std::make_shared<ConstantBuffer>(sizeof(InternalGeometry), true); UpdateGeometryConstant(); mProgram->GetPShader()->Set("Material", mMaterialConstant); mProgram->GetPShader()->Set("Lighting", mLightingConstant); mProgram->GetPShader()->Set("LightCameraGeometry", mGeometryConstant); #if defined(GTE_DEV_OPENGL) mProgram->GetPShader()->Set("baseSampler", mTexture); #else mProgram->GetPShader()->Set("baseTexture", mTexture); #endif mProgram->GetPShader()->Set("baseSampler", mSampler); } void DirectionalLightTextureEffect::UpdateMaterialConstant() { InternalMaterial* internalMaterial = mMaterialConstant->Get<InternalMaterial>(); internalMaterial->emissive = mMaterial->emissive; internalMaterial->ambient = mMaterial->ambient; internalMaterial->diffuse = mMaterial->diffuse; internalMaterial->specular = mMaterial->specular; LightingEffect::UpdateMaterialConstant(); } void DirectionalLightTextureEffect::UpdateLightingConstant() { InternalLighting* internalLighting = mLightingConstant->Get<InternalLighting>(); internalLighting->ambient = mLighting->ambient; internalLighting->diffuse = mLighting->diffuse; internalLighting->specular = mLighting->specular; internalLighting->attenuation = mLighting->attenuation; LightingEffect::UpdateLightingConstant(); } void DirectionalLightTextureEffect::UpdateGeometryConstant() { InternalGeometry* internalGeometry = mGeometryConstant->Get<InternalGeometry>(); internalGeometry->lightModelDirection = mGeometry->lightModelDirection; internalGeometry->cameraModelPosition = mGeometry->cameraModelPosition; LightingEffect::UpdateGeometryConstant(); } std::string const DirectionalLightTextureEffect::msGLSLVSSource = "uniform PVWMatrix\n" "{\n" " mat4 pvwMatrix;\n" "};\n" "\n" "layout(location = 0) in vec3 modelPosition;\n" "layout(location = 1) in vec3 modelNormal;\n" "layout(location = 2) in vec2 modelTCoord;\n" "\n" "layout(location = 0) out vec3 vertexPosition;\n" "layout(location = 1) out vec3 vertexNormal;\n" "layout(location = 2) out vec2 vertexTCoord;\n" "\n" "void main()\n" "{\n" " vertexPosition = modelPosition;\n" " vertexNormal = modelNormal;\n" " vertexTCoord = modelTCoord;\n" "#if GTE_USE_MAT_VEC\n" " gl_Position = pvwMatrix * vec4(modelPosition, 1.0f);\n" "#else\n" " gl_Position = vec4(modelPosition, 1.0f) * pvwMatrix;\n" "#endif\n" "}\n"; std::string const DirectionalLightTextureEffect::msGLSLPSSource = GetShaderSourceLitFunctionGLSL() + "uniform Material\n" "{\n" " vec4 materialEmissive;\n" " vec4 materialAmbient;\n" " vec4 materialDiffuse;\n" " vec4 materialSpecular;\n" "};\n" "\n" "uniform Lighting\n" "{\n" " vec4 lightingAmbient;\n" " vec4 lightingDiffuse;\n" " vec4 lightingSpecular;\n" " vec4 lightingAttenuation;\n" "};\n" "\n" "uniform LightCameraGeometry\n" "{\n" " vec4 lightModelDirection;\n" " vec4 cameraModelPosition;\n" "};\n" "\n" "uniform sampler2D baseSampler;\n" "\n" "layout(location = 0) in vec3 vertexPosition;\n" "layout(location = 1) in vec3 vertexNormal;\n" "layout(location = 2) in vec2 vertexTCoord;\n" "\n" "layout(location = 0) out vec4 pixelColor0;\n" "\n" "void main()\n" "{\n" " vec3 normal = normalize(vertexNormal);\n" " float NDotL = -dot(normal, lightModelDirection.xyz);\n" " vec3 viewVector = normalize(cameraModelPosition.xyz - vertexPosition);\n" " vec3 halfVector = normalize(viewVector - lightModelDirection.xyz);\n" " float NDotH = dot(normal, halfVector);\n" " vec4 lighting = lit(NDotL, NDotH, materialSpecular.a);\n" " vec3 lightingColor = materialAmbient.rgb * lightingAmbient.rgb +\n" " lighting.y * materialDiffuse.rgb * lightingDiffuse.rgb +\n" " lighting.z * materialSpecular.rgb * lightingSpecular.rgb;\n" "\n" " vec4 textureColor = texture(baseSampler, vertexTCoord);\n" "\n" " vec3 color = lightingColor * textureColor.rgb;\n" " pixelColor0.rgb = materialEmissive.rgb + lightingAttenuation.w * color;\n" " pixelColor0.a = materialDiffuse.a * textureColor.a;\n" "}\n"; std::string const DirectionalLightTextureEffect::msHLSLSource = "cbuffer PVWMatrix\n" "{\n" " float4x4 pvwMatrix;\n" "};\n" "\n" "struct VS_INPUT\n" "{\n" " float3 modelPosition : POSITION;\n" " float3 modelNormal : NORMAL;\n" " float2 modelTCoord : TEXCOORD0;\n" "};\n" "\n" "struct VS_OUTPUT\n" "{\n" " float3 vertexPosition : TEXCOORD0;\n" " float3 vertexNormal : TEXCOORD1;\n" " float2 vertexTCoord : TEXCOORD2;\n" " float4 clipPosition : SV_POSITION;\n" "};\n" "\n" "VS_OUTPUT VSMain(VS_INPUT input)\n" "{\n" " VS_OUTPUT output;\n" "\n" " output.vertexPosition = input.modelPosition;\n" " output.vertexNormal = input.modelNormal;\n" " output.vertexTCoord = input.modelTCoord;\n" "#if GTE_USE_MAT_VEC\n" " output.clipPosition = mul(pvwMatrix, float4(input.modelPosition, 1.0f));\n" "#else\n" " output.clipPosition = mul(float4(input.modelPosition, 1.0f), pvwMatrix);\n" "#endif\n" " return output;\n" "}\n" "\n" "cbuffer Material\n" "{\n" " float4 materialEmissive;\n" " float4 materialAmbient;\n" " float4 materialDiffuse;\n" " float4 materialSpecular;\n" "};\n" "\n" "cbuffer Lighting\n" "{\n" " float4 lightingAmbient;\n" " float4 lightingDiffuse;\n" " float4 lightingSpecular;\n" " float4 lightingAttenuation;\n" "};\n" "\n" "cbuffer LightCameraGeometry\n" "{\n" " float4 lightModelDirection;\n" " float4 cameraModelPosition;\n" "};\n" "\n" "Texture2D<float4> baseTexture;\n" "SamplerState baseSampler;\n" "\n" "struct PS_INPUT\n" "{\n" " float3 vertexPosition : TEXCOORD0;\n" " float3 vertexNormal : TEXCOORD1;\n" " float2 vertexTCoord : TEXCOORD2;\n" "};\n" "\n" "struct PS_OUTPUT\n" "{\n" " float4 pixelColor0 : SV_TARGET0;\n" "};\n" "\n" "PS_OUTPUT PSMain(PS_INPUT input)\n" "{\n" " PS_OUTPUT output;\n" "\n" " float3 normal = normalize(input.vertexNormal);\n" " float NDotL = -dot(normal, lightModelDirection.xyz);\n" " float3 viewVector = normalize(cameraModelPosition.xyz - input.vertexPosition);\n" " float3 halfVector = normalize(viewVector - lightModelDirection.xyz);\n" " float NDotH = dot(normal, halfVector);\n" " float4 lighting = lit(NDotL, NDotH, materialSpecular.a);\n" " float3 lightingColor = materialAmbient.rgb * lightingAmbient.rgb +\n" " lighting.y * materialDiffuse.rgb * lightingDiffuse.rgb +\n" " lighting.z * materialSpecular.rgb * lightingSpecular.rgb;\n" "\n" " float4 textureColor = baseTexture.Sample(baseSampler, input.vertexTCoord);\n" "\n" " float3 color = lightingColor * textureColor.rgb;\n" " output.pixelColor0.rgb = materialEmissive.rgb + lightingAttenuation.w * color;\n" " output.pixelColor0.a = materialDiffuse.a * textureColor.a;\n" " return output;\n" "}\n"; std::string const* DirectionalLightTextureEffect::msVSSource[] = { &msGLSLVSSource, &msHLSLSource }; std::string const* DirectionalLightTextureEffect::msPSSource[] = { &msGLSLPSSource, &msHLSLSource };
985b6e3224dff19bcb16d14686d01d02189083e9
e68cb3d4fa89451d7cc93f1829561a81648767de
/daylight_server/server.cpp
fc7242d0ced4e448c143b3141346ce669b3ada9d
[]
no_license
jandro1111/tp5
0ca8b6d4a2c510fe88ce8df77b30560e66391481
eebb9d297da116411d5c346efc3c22501935b166
refs/heads/master
2023-04-10T00:14:06.147039
2021-04-14T23:55:28
2021-04-14T23:55:28
356,311,720
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
5,300
cpp
#include "server.h" #include <iostream> #include <string> #include <boost\bind.hpp> using boost::asio::ip::tcp; std::string make_response_string(std::string aux); AsyncDaytimeServer::AsyncDaytimeServer(boost::asio::io_context& io_context) : context_(io_context), acceptor_(io_context, tcp::endpoint(tcp::v4(), 80)),//ese de ahi es el numero del puerto socket_(io_context) { } AsyncDaytimeServer::~AsyncDaytimeServer() { } void AsyncDaytimeServer::start() { if (socket_.is_open()) { socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both); socket_.close(); } start_waiting_connection(); } void AsyncDaytimeServer::start_waiting_connection() { std::cout << "start_waiting_connection()" << std::endl; if (socket_.is_open()) { std::cout << "Error: Can't accept new connection from an open socket" << std::endl; return; } acceptor_.async_accept( //solo recibe socket que va a administrar la nueva conexion y el callback socket_, boost::bind( &AsyncDaytimeServer::connection_received_cb, this, boost::asio::placeholders::error ) ); } void AsyncDaytimeServer::start_answering(std::string aux) { std::cout << "start_answering()" << std::endl; msg = make_response_string(aux); boost::asio::async_write(//make_daytime_string() socket_, boost::asio::buffer(msg), boost::bind( &AsyncDaytimeServer::response_sent_cb, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred ) ); socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both); socket_.close(); } void AsyncDaytimeServer::connection_received_cb(const boost::system::error_code& error)//aca hacemos lo de buscar e interpretar el mensaje { std::ofstream handler;//abro/creo si no esta/ el archivo para poner lo que reciba del server handler.open("handler.txt", std::ios::trunc);//borro lo que habia antes for (;;)//recibo lo del cliente y lo interpreto { boost::array<char, 128> buf; boost::system::error_code error; size_t len = socket_.read_some(boost::asio::buffer(buf), error); if (error == boost::asio::error::eof) break; // Connection closed cleanly by peer. else if (error) throw boost::system::system_error(error); // Some other error. std::cout.write(buf.data(), len); handler.write(buf.data(), len);//guardo en el archivo que se llama handler, para interpretar mas adelante handler.close(); break; } using namespace std; string nombreArchivo = "handler.txt"; ifstream archivo(nombreArchivo.c_str()); string linea; string aux = ""; // Obtener línea de archivo, y almacenar contenido en "linea" while (getline(archivo, linea)) { // Lo vamos imprimiendo bool fin = false; bool ini = false; for (int i = 0; fin == false; ++i) {//aislo el archivo a buscar if (linea[i] == '/'||ini==true) {//encontre el inicio if (ini == false) { } else { aux += linea[i]; } ini = true; } if (ini == true) { if (linea[i] == ' ') {//encontre el final fin = true; } } } if (fin == true) { break; } } handler.close(); //en aux tengo el path a buscar std::cout << "connection_received_cb()" << std::endl; if (!error) { start_answering(aux); start_waiting_connection(); } else { std::cout << error.message() << std::endl; } } void AsyncDaytimeServer::response_sent_cb(const boost::system::error_code& error, size_t bytes_sent) { std::cout << "response_sent_cb()" << std::endl; if (!error) { std::cout << "Response sent. " << bytes_sent << " bytes." << std::endl; } } std::string make_response_string(std::string aux)//aca armamos el mensaje en aux tengo el path a buscar { #pragma warning(disable : 4996) std::string res; std::ifstream info(aux); std::ifstream archivo(aux.c_str()); std::string linea; if (info.is_open()) { std::cout << "lo encontre" << std::endl;//200 found res += "HTTP/1.1 200 OK"; res += "\r\n"; res += "Date: Date(Ej : Tue, 04 Sep 2018 18 : 21 : 19 GMT)"; res += "\r\n"; res += "Cache-Control : public, max - age = 30"; res += "\r\n"; res += "Expires:Date + 30s(Ej : Tue, 04 Sep 2018 18 : 21 : 49 GMT)"; res += "\r\n"; res += "Content-Length : 1"; res += "\r\n"; res += "Content-Type : text / html; charset = iso - 8859 - 1"; res += "\r\n"; res += "\r\n"; while (getline(archivo, linea)) { // Lo vamos imprimiendo res += linea; } res += "\r\n"; res += "\r\n"; } else { std::cout << "no lo encontre" << std::endl;//404 not found res += "HTTP/1.1 404 Not Found"; res += "\r\n"; res += "Date: Date(Ej : Tue, 04 Sep 2018 18 : 21 : 19 GMT)"; res += "\r\n"; res += "Cache - Control : public, max - age = 30"; res += "\r\n"; res += "Expires : Date + 30s(Ej : Tue, 04 Sep 2018 18 : 21 : 49 GMT)"; res += "\r\n"; res += "Content - Length : 0"; res += "\r\n"; res += "Content - Type : text / html; charset = iso - 8859 - 1"; res += "\r\n";//404 } std::cout << aux << std::endl; using namespace std; // For time_t, time and ctime; time_t now = time(0); return res; } /* HTTP/1.1 200 OK Date: Date (Ej: Tue, 04 Sep 2018 18:21:19 GMT) Location: 127.0.0.1/path/filename Cache-Control: max-age=30 Expires: Date + 30s (Ej: Tue, 04 Sep 2018 18:21:49 GMT) Content-Length: 1 Content-Type: text/html; charset=iso-8859-1 a */