├── para.h ├── params ├── bias_9 ├── outputs_batch_0 ├── bias0_0 ├── bias0_1 ├── bias0_2 ├── bias0 ├── bias1_1 ├── bias1_0 ├── bias1_2 ├── bias0_4 ├── bias0_5 ├── targets_batch_32 ├── bias0_3 ├── bias1_3 ├── bias1_4 ├── bias1_5 ├── bias2_3 ├── bias0_6 ├── bias0_7 ├── bias1_6 ├── bias1_7 ├── bias0_8 ├── bias2_6 ├── bias1_8 ├── p0_0 ├── p0_2 ├── p0_1 ├── p1_0 ├── p1_1 ├── p1_2 ├── outputs_batch_32 ├── t_k ├── p0_3 ├── p2_3 ├── p_9 ├── p0_5 ├── p1_5 └── p1_3 ├── dataType.h ├── log2.h ├── loss.h ├── README.md ├── dma.h ├── Makefile ├── shift.cpp ├── weights.h ├── conv2d.h ├── main_cl.cpp └── shift.h /para.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace para{ 4 | const int D = 32; 5 | const int C = 3; 6 | const int N = 10; 7 | const int BATCH = 32; 8 | } 9 | -------------------------------------------------------------------------------- /params/bias_9: -------------------------------------------------------------------------------- 1 | 7.491484284400939941e-02,-1.545004993677139282e-01,1.261968612670898438e-01,1.539558470249176025e-01,1.127201765775680542e-01,-7.795264571905136108e-02,-2.012943290174007416e-02,-3.707345947623252869e-02,-5.724225565791130066e-02,-1.208665445446968079e-01 2 | -------------------------------------------------------------------------------- /params/outputs_batch_0: -------------------------------------------------------------------------------- 1 | -2.614338159561157227e+00,-1.868409872055053711e+00,1.653860509395599365e-01,1.185966587066650391e+01,-3.924870252609252930e+00,5.983931064605712891e+00,2.420017480850219727e+00,-4.122555732727050781e+00,-2.807864427566528320e+00,-5.090644359588623047e+00 2 | -------------------------------------------------------------------------------- /dataType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef FIXED 4 | #include "ap_fixed.h" 5 | typedef ap_fixed<32, 10> DataType; 6 | #elif defined FLOAT 7 | typedef float DataType; 8 | #elif defined DOUBLE 9 | typedef double DataType; 10 | #else 11 | #include "hls_half.h" 12 | typedef half DataType; 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /log2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | template 3 | struct CE_LOG2{ 4 | static const unsigned int V = CE_LOG2<(VALUE >> 1)>::V + 1; 5 | }; 6 | template<> 7 | struct CE_LOG2<1>{ 8 | static const unsigned int V = 1; 9 | }; 10 | template<> 11 | struct CE_LOG2<0>{ 12 | static const unsigned int V = 0; 13 | }; 14 | -------------------------------------------------------------------------------- /params/bias0_0: -------------------------------------------------------------------------------- 1 | 3.602701425552368164e-02,1.303740739822387695e-01,1.101673487573862076e-02,6.266558170318603516e-01,-1.098321914672851562e+00,8.954607248306274414e-01,-9.978519344144842762e-09,6.922200322151184082e-01,-3.290754854679107666e-01,9.949183464050292969e-02,1.189895153045654297e+00,7.652999758720397949e-01,-2.464855015277862549e-01,2.997336983680725098e-01,-7.306200265884399414e-01,1.680248677730560303e-01 2 | -------------------------------------------------------------------------------- /params/bias0_1: -------------------------------------------------------------------------------- 1 | 1.933219283819198608e-02,2.655234932899475098e-01,2.343317270278930664e-01,-1.121753752231597900e-01,-9.061987698078155518e-02,4.871806502342224121e-02,7.314362525939941406e-01,3.275965750217437744e-01,8.108580112457275391e-02,4.699040055274963379e-01,6.112872958183288574e-01,2.310537993907928467e-01,-6.703423593990009977e-09,2.963957786560058594e-01,-2.735718488693237305e-01,-9.395676255226135254e-01 2 | -------------------------------------------------------------------------------- /params/bias0_2: -------------------------------------------------------------------------------- 1 | 8.593364059925079346e-02,-1.324680000543594360e-01,2.001647055149078369e-01,6.419432759284973145e-01,-1.634071022272109985e-01,5.507074594497680664e-01,1.439110338687896729e-01,4.587743580341339111e-01,1.174280941486358643e-01,2.438578307628631592e-01,1.903834044933319092e-01,2.136096358299255371e-03,6.826454997062683105e-01,-2.061542868614196777e-01,8.695415258407592773e-01,5.582453012466430664e-01 2 | -------------------------------------------------------------------------------- /params/bias0: -------------------------------------------------------------------------------- 1 | 2.693265676498413086e-01,5.628263950347900391e-01,4.951569139957427979e-01,3.927217125892639160e-01,-9.400501767231617123e-06,-1.535286544822156429e-03,-4.232371225953102112e-02,-1.485016198898847506e-08,-3.923950053774660773e-09,-1.820890456438064575e-01,-4.862599212174245622e-09,-7.734300196170806885e-02,2.475385069847106934e-01,1.552354693412780762e-01,9.417973160743713379e-01,-1.642498119736046647e-07 2 | -------------------------------------------------------------------------------- /params/bias1_1: -------------------------------------------------------------------------------- 1 | 8.219942450523376465e-01,5.678087845444679260e-02,-3.583962682185415360e-09,-5.680159665644168854e-04,7.509699463844299316e-02,9.399091005325317383e-01,-5.125076770782470703e-01,2.688630819320678711e-01,-3.191354870796203613e-01,-1.118209880246467947e-08,6.133839488029479980e-01,4.915733635425567627e-02,-2.886610417363044689e-08,-3.054468677987642877e-09,1.301272213459014893e-01,1.372865140438079834e-01 2 | -------------------------------------------------------------------------------- /params/bias1_0: -------------------------------------------------------------------------------- 1 | -1.139684319496154785e-01,1.828740537166595459e-01,-2.150207656370639597e-08,3.153150081634521484e-01,-1.010552197694778442e-01,3.982577025890350342e-01,1.029989719390869141e+00,-1.665437817573547363e-01,-1.493257850704310385e-09,-9.562328706635980780e-09,-6.094304323196411133e-01,-1.399787962436676025e-01,-8.336235701733585302e-09,-1.311510118284786586e-07,-2.052216082811355591e-01,2.767892777919769287e-01 2 | -------------------------------------------------------------------------------- /params/bias1_2: -------------------------------------------------------------------------------- 1 | -4.723991155624389648e-01,1.231312155723571777e-01,-4.749659510139281338e-08,-2.368918358115479350e-04,-3.748698234558105469e-01,-1.163599971931716937e-08,2.210684418678283691e-01,-2.817510962486267090e-01,3.977896571159362793e-01,-3.132832795381546021e-02,-1.348487436771392822e-01,-3.653332081299254241e-09,-2.641511898104909051e-08,-8.789197067926579621e-07,3.859452009201049805e-01,-4.271616339683532715e-01 2 | -------------------------------------------------------------------------------- /loss.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | template 4 | float crossEntropyLoss(float sample[S], float target[S]){ 5 | float loss = 0; 6 | for(int i = 0;i 13 | int ord_max(float sample[N]){ 14 | int ord = 0; 15 | float tmp = sample[ord]; 16 | for(int i = 1; i tmp){ 19 | tmp = value; 20 | ord = i; 21 | } 22 | } 23 | return ord; 24 | } 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # shiftNet 2 | This repository contains a basic implementation of Shift-based Resnet on the FPGA via High-level synthesis. 3 | 4 | The 'AWS' branch could run on Amazon EC2 instance. For example: 5 | ``` 6 | source /.settings64-SDx.sh 7 | export SDACCEL_DIR=/SDAccel 8 | export COMMON_REPO=$SDACCEL_DIR/examples/xilinx/ 9 | export PLATFORM=xilinx_aws-vu9p-f1_4ddr-xpr-2pr_4_0 10 | make TARGETS=sw_emu DEVICES=$PLATFORM all 11 | ``` 12 | -------------------------------------------------------------------------------- /dma.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // M2S 4 | template 5 | void M2S(T_IN *mem, hls::stream s_mem[C]){ 6 | #pragma HLS INLINE 7 | for(int rep = 0; rep < REP; rep++) 8 | for(int i=0;i 19 | void S2M(hls::stream s_mem[C], T_OUT *mem){ 20 | #pragma HLS INLINE 21 | for(int rep = 0; rep < REP; rep++) 22 | for(int i=0;i 2 | #include "hls_stream.h" 3 | #include "shift.h" 4 | #include "conv2d.h" 5 | #include "dma.h" 6 | #include "dataType.h" 7 | #include "para.h" 8 | using namespace para; 9 | #include "weights.h" 10 | using namespace net; 11 | 12 | extern "C" 13 | void shift(float *input, float *output){ 14 | #pragma HLS INTERFACE m_axi port=input offset=slave bundle=gmem depth=BATCH*D*D*C 15 | #pragma HLS INTERFACE m_axi port=output offset=slave bundle=gmem depth=BATCH*N 16 | #pragma HLS INTERFACE s_axilite port=input bundle=control 17 | #pragma HLS INTERFACE s_axilite port=output bundle=control 18 | #pragma HLS INTERFACE s_axilite port=return bundle=control 19 | 20 | 21 | static const int EXP = 1; 22 | 23 | static const int CHAN_0 = 16; 24 | static const int CHAN_1 = 32; 25 | static const int CHAN_2 = 64; 26 | 27 | static const int DIM_0 = 32; 28 | static const int DIM_1 = 16; 29 | static const int DIM_2 = 8; 30 | static const int DIM_3 = 1; 31 | static const int PARTITION = 1; 32 | static const int REP = BATCH; 33 | 34 | 35 | #pragma HLS DATAFLOW 36 | // M2S 37 | hls::stream s_ten[C]; 38 | 39 | M2S(input, s_ten); 40 | // 3x3 conv2d 41 | hls::stream s_conv[CHAN_0], s_pad[C], s_convBias[CHAN_0], s_relu[CHAN_0]; 42 | padding(s_ten, s_pad); 43 | conv2d_3x3(s_pad, kernel, s_conv); 44 | MulChan::_bias_add(s_conv, bias0, s_convBias); 45 | MulChan::_relu(s_convBias, s_relu); 46 | 47 | // GROUP 1 48 | hls::stream s_act0[CHAN_0],s_act1[CHAN_0],s_act2[CHAN_0]; 49 | // BLOCK 0 50 | MulChan::_shift< DIM_0, CHAN_0, 1, PARTITION, REP, DataType>(s_relu, s_act0, p0_0,p1_0, bias0_0, bias1_0); 51 | //BLOCK 1 52 | MulChan::_shift< DIM_0, CHAN_0, 1, PARTITION, REP, DataType>(s_act0, s_act1, p0_1,p1_1, bias0_1, bias1_1); 53 | //BLOCK 2 54 | MulChan::_shift< DIM_0, CHAN_0, 1, PARTITION, REP, DataType>(s_act1, s_act2, p0_2,p1_2, bias0_2, bias1_2); 55 | // GROUP 2 56 | hls::stream s_act3[CHAN_1],s_act4[CHAN_1],s_act5[CHAN_1]; 57 | //BLOCK 3 58 | MulChan::_shift_res< DIM_0, 2, CHAN_0, 1, CHAN_1, PARTITION, REP, DataType>(s_act2, s_act3, p0_3,p1_3, p2_3, bias0_3, bias1_3,bias2_3); 59 | //BLOCK 4 60 | MulChan::_shift< DIM_1, CHAN_1, 1, PARTITION, REP, DataType>(s_act3, s_act4, p0_4,p1_4, bias0_4, bias1_4); 61 | //BLOCK 5 62 | MulChan::_shift< DIM_1, CHAN_1,1, PARTITION, REP, DataType>(s_act4, s_act5, p0_5,p1_5, bias0_5, bias1_5); 63 | 64 | //GROUP 3 65 | hls::stream s_act6[CHAN_2],s_act7[CHAN_2]; 66 | hls::stream s_act8[CHAN_2]; 67 | //BLOCK 6 68 | MulChan::_shift_res< DIM_1, 2, CHAN_1, 1, CHAN_2, PARTITION, REP, DataType>(s_act5, s_act6, p0_6,p1_6, p2_6, bias0_6, bias1_6, bias2_6); 69 | //BLOCK 7 70 | MulChan::_shift< DIM_2, CHAN_2, 1,PARTITION, REP, DataType>(s_act6, s_act7, p0_7,p1_7, bias0_7, bias1_7); 71 | //BLOCK 8 72 | MulChan::_shift< DIM_2, CHAN_2,1, PARTITION, REP, DataType>(s_act7, s_act8, p0_8,p1_8, bias0_8, bias1_8); 73 | 74 | 75 | // Average pooling 76 | hls::stream s_pool[CHAN_2]; 77 | MulChan::_avg_pool< DIM_2, CHAN_2, 8, PARTITION, REP>(s_act8, s_pool); 78 | // fully-connected 79 | hls::stream s_fc[N], s_fcBias[N], s_act[N]; 80 | MulChan::_matMul(s_pool, s_fc, p_9); 81 | MulChan::_bias_add<1, N, PARTITION, REP>(s_fc, bias_9, s_act); 82 | 83 | // S2M 84 | S2M<1, N, REP>(s_act, output); 85 | } 86 | 87 | 88 | -------------------------------------------------------------------------------- /weights.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "para.h" 3 | using namespace para; 4 | namespace net{ 5 | static const int EXP = 1; 6 | 7 | static const int CHAN_0 = 16; 8 | static const int CHAN_1 = 32; 9 | static const int CHAN_2 = 64; 10 | 11 | static const int DIM_0 = 32; 12 | static const int DIM_1 = 16; 13 | static const int DIM_2 = 8; 14 | static const int REX = 16; 15 | 16 | const DataType kernel[3][3][C][CHAN_0] = { 17 | #include "t_k" 18 | }; 19 | const DataType bias0[CHAN_0]={ 20 | #include "bias0" 21 | }; 22 | //BLOCK 0 23 | const DataType p0_0[CHAN_0][CHAN_0 * EXP]={ 24 | #include "p0_0" 25 | }; 26 | const DataType p1_0[CHAN_0 * EXP][CHAN_0]={ 27 | #include "p1_0" 28 | }; 29 | const DataType bias0_0[CHAN_0 * EXP]={ 30 | #include "bias0_0" 31 | }; 32 | const DataType bias1_0[CHAN_0]={ 33 | #include "bias1_0" 34 | }; 35 | 36 | //BLOCK 1 37 | const DataType p0_1[CHAN_0][CHAN_0 * EXP]={ 38 | #include "p0_1" 39 | }; 40 | const DataType p1_1[CHAN_0 * EXP][CHAN_0]={ 41 | #include "p1_1" 42 | }; 43 | const DataType bias0_1[CHAN_0 * EXP]={ 44 | #include "bias0_1" 45 | }; 46 | const DataType bias1_1[CHAN_0]={ 47 | #include "bias1_1" 48 | }; 49 | 50 | //BLOCK 2 51 | const DataType p0_2[CHAN_0][CHAN_0]={ 52 | #include "p0_2" 53 | }; 54 | const DataType p1_2[CHAN_0][CHAN_0]={ 55 | #include "p1_2" 56 | }; 57 | const DataType bias0_2[CHAN_0 * EXP]={ 58 | #include "bias0_2" 59 | }; 60 | const DataType bias1_2[CHAN_0]={ 61 | #include "bias1_2" 62 | }; 63 | 64 | // GROUP 2 65 | //BLOCK 3 66 | const DataType p0_3[CHAN_0][CHAN_1]={ 67 | #include "p0_3" 68 | }; 69 | const DataType p1_3[CHAN_1][CHAN_1]={ 70 | #include "p1_3" 71 | }; 72 | const DataType p2_3[CHAN_0][CHAN_1]={ 73 | #include "p2_3" 74 | }; 75 | const DataType bias0_3[CHAN_1 * EXP]={ 76 | #include "bias0_3" 77 | }; 78 | const DataType bias1_3[CHAN_1]={ 79 | #include "bias1_3" 80 | }; 81 | const DataType bias2_3[CHAN_1]={ 82 | #include "bias2_3" 83 | }; 84 | //BLOCK 4 85 | const DataType p0_4[CHAN_1][CHAN_1]={ 86 | #include "p0_4" 87 | }; 88 | const DataType p1_4[CHAN_1][CHAN_1]={ 89 | #include "p1_4" 90 | }; 91 | const DataType bias0_4[CHAN_1 * EXP]={ 92 | #include "bias0_4" 93 | }; 94 | const DataType bias1_4[CHAN_1]={ 95 | #include "bias1_4" 96 | }; 97 | //BLOCK 5 98 | const DataType p0_5[CHAN_1][CHAN_1]={ 99 | #include "p0_5" 100 | }; 101 | const DataType p1_5[CHAN_1][CHAN_1]={ 102 | #include "p1_5" 103 | }; 104 | const DataType bias0_5[CHAN_1 * EXP]={ 105 | #include "bias0_5" 106 | }; 107 | const DataType bias1_5[CHAN_1]={ 108 | #include "bias1_5" 109 | }; 110 | //GROUP 3 111 | //BLOCK 6 112 | const DataType p0_6[CHAN_1][CHAN_2]={ 113 | #include "p0_6" 114 | }; 115 | const DataType p1_6[CHAN_2][CHAN_2]={ 116 | #include "p1_6" 117 | }; 118 | const DataType p2_6[CHAN_1][CHAN_2]={ 119 | #include "p2_6" 120 | }; 121 | const DataType bias0_6[CHAN_2 * EXP]={ 122 | #include "bias0_6" 123 | }; 124 | const DataType bias1_6[CHAN_2]={ 125 | #include "bias1_6" 126 | }; 127 | const DataType bias2_6[CHAN_2]={ 128 | #include "bias2_6" 129 | }; 130 | //BLOCK 7 131 | const DataType p0_7[CHAN_2][CHAN_2]={ 132 | #include "p0_7" 133 | }; 134 | const DataType p1_7[CHAN_2][CHAN_2]={ 135 | #include "p1_7" 136 | }; 137 | const DataType bias0_7[CHAN_2 * EXP]={ 138 | #include "bias0_7" 139 | }; 140 | const DataType bias1_7[CHAN_2]={ 141 | #include "bias1_7" 142 | }; 143 | //BLOCK 8 144 | const DataType p0_8[CHAN_2][CHAN_2]={ 145 | #include "p0_8" 146 | }; 147 | const DataType p1_8[CHAN_2][CHAN_2]={ 148 | #include "p1_8" 149 | }; 150 | const DataType bias0_8[CHAN_2 * EXP]={ 151 | #include "bias0_8" 152 | }; 153 | const DataType bias1_8[CHAN_2]={ 154 | #include "bias1_8" 155 | }; 156 | 157 | const DataType p_9[DIM_2 * DIM_2* CHAN_2][N]={ 158 | #include "p_9" 159 | }; 160 | const DataType bias_9[N]={ 161 | #include "bias_9" 162 | }; 163 | } 164 | -------------------------------------------------------------------------------- /conv2d.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "utils/x_hls_traits.h" 3 | #include "hls_stream.h" 4 | #include "log2.h" 5 | 6 | 7 | template 8 | void padding(hls::stream fmap[C], hls::stream omap[C]){ 9 | #pragma HLS INLINE 10 | 11 | for(int rep = 0; rep < REP; rep++){ 12 | for(int i=0;i= D + P) || (j < P) || (j >= D + P); 16 | for(int c=0;c 28 | void conv2d_3x3(hls::stream fmap[C], const T_W kernel[3][3][C][K], hls::stream omap[K]){ 29 | #pragma HLS ARRAY_PARTITION variable=kernel complete dim=0 30 | 31 | #pragma HLS INLINE 32 | 33 | static const int nD = (D - 3)/S + 1; 34 | T_IN buffer[2][D][C]; 35 | #pragma HLS ARRAY_PARTITION variable=buffer complete dim=3 36 | //#pragma HLS ARRAY_PARTITION variable=buffer complete dim=1 37 | T_IN crop[3][3][C]; 38 | #pragma HLS ARRAY_PARTITION variable=crop complete dim=0 39 | typedef typename hls::x_traits::MULT_T MULT_T; 40 | typedef typename hls::x_traits::V> >::MULT_T SUM_T; 41 | SUM_T sum[K]; 42 | #pragma HLS ARRAY_PARTITION variable=sum complete dim=0 43 | for(int rep = 0; rep < REP; rep++){ 44 | for(int i=0;i=2) && (j >=2) && ((i-2) % S == 0) && ((j - 2) % S == 0); 49 | for(int c = 0;c 82 | void conv2d(hls::stream fmap[C], const T_W kernel[F][F][C][K], hls::stream omap[K]){ 83 | 84 | #pragma HLS INLINE 85 | 86 | static const int nD = (D - F)/S + 1; 87 | T_IN buffer[F-1][D][C]; 88 | #pragma HLS ARRAY_PARTITION variable=buffer complete dim=3 89 | #pragma HLS ARRAY_PARTITION variable=buffer complete dim=1 90 | T_IN crop[F][F][C]; 91 | #pragma HLS ARRAY_PARTITION variable=crop complete dim=0 92 | typedef typename hls::x_traits::MULT_T MULT_T; 93 | typedef typename hls::x_traits::V> >::MULT_T SUM_T; 94 | SUM_T sum[K]; 95 | for(int i=0, ci = 0;i=F-1) && ((i-F+1) % S == 0) && (j >= F - 1) && ((j - F + 1) % S == 0); 100 | for(int c = 0;c 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include 33 | #include "xcl2.hpp" 34 | #include "para.h" 35 | #include "loss.h" 36 | using namespace std; 37 | using namespace para; 38 | 39 | namespace Params 40 | { 41 | char *kernel_name="shift"; // -n 42 | char *binary_name=NULL; // -a 43 | } 44 | void usage(char* name) 45 | { 46 | cout<<"Usage: "<(ifstr), 77 | (istreambuf_iterator())); 78 | float input[BATCH][D][D][C] = { 79 | #include "inputs_batch_32" 80 | //#include "t_im" 81 | }; 82 | 83 | float out[N]; 84 | float ref[BATCH][N] = { 85 | //#include "t_l1" 86 | #include "outputs_batch_32" 87 | //#include "t_cifar" 88 | }; 89 | int targets[BATCH]={ 90 | #include "targets_batch_32" 91 | }; 92 | vector > h_im(BATCH * D*D*C), h_out(BATCH * N); 93 | 94 | for(int b=0;b platforms; 102 | cl::Platform::get(&platforms); 103 | 104 | cl::Context context(CL_DEVICE_TYPE_ACCELERATOR); 105 | vector devices=context.getInfo(); 106 | 107 | cl::Program::Binaries binaries(1, make_pair(programString.c_str(), programString.length())); 108 | cl::Program program(context,devices,binaries); 109 | try 110 | { 111 | program.build(devices); 112 | } 113 | catch (cl::Error err) 114 | { 115 | if (err.err() == CL_BUILD_PROGRAM_FAILURE) 116 | { 117 | string info; 118 | program.getBuildInfo(devices[0],CL_PROGRAM_BUILD_LOG, &info); 119 | cout << info << endl; 120 | return EXIT_FAILURE; 121 | } 122 | else throw err; 123 | } 124 | 125 | cl::CommandQueue commandQueue(context, devices[0]); 126 | 127 | cl::Kernel kernel(program,Params::kernel_name); 128 | auto kernelFunctor = cl::KernelFunctor(kernel); 129 | 130 | cl::Buffer d_im(context, CL_MEM_USE_HOST_PTR | CL_MEM_READ_ONLY, 131 | sizeof(float)*h_im.size(), h_im.data()); 132 | cl::Buffer d_out(context, CL_MEM_USE_HOST_PTR | CL_MEM_WRITE_ONLY, 133 | sizeof(float)*h_out.size(), h_out.data()); 134 | 135 | std::vector inBufVec, outBufVec; 136 | inBufVec.push_back(d_im); 137 | outBufVec.push_back(d_out); 138 | 139 | clock_t start = clock(); 140 | commandQueue.enqueueMigrateMemObjects(inBufVec,0); 141 | cl::EnqueueArgs enqueueArgs(commandQueue,cl::NDRange(1),cl::NDRange(1)); 142 | cl::Event event = kernelFunctor(enqueueArgs, 143 | d_im,d_out 144 | ); 145 | 146 | commandQueue.enqueueMigrateMemObjects(outBufVec,CL_MIGRATE_MEM_OBJECT_HOST); 147 | commandQueue.finish(); 148 | event.wait(); 149 | 150 | 151 | int cor = 0; 152 | for(int b=0; b < BATCH;b++){ 153 | for(int k=0;k(out); 158 | if(ord == targets[b]) 159 | cor++; 160 | } 161 | cout << "The accuracy is " << (float)cor / (float)BATCH * 100.0f<< "%."< 10 | void _shift_3x3(hls::stream fmap[C], hls::stream omap[C]){ 11 | #pragma HLS ARRAY_PARTITION variable=omap cyclic factor=PaF dim=1 12 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 13 | const static int G = (C/9) * 9; 14 | T buffer[2][D+2][C]; 15 | #pragma HLS ARRAY_PARTITION variable=buffer cyclic factor=PaF dim=3 16 | #pragma HLS ARRAY_PARTITION variable=buffer complete dim=1 17 | T crop[3][3][C]; 18 | #pragma HLS ARRAY_PARTITION variable=crop complete dim=1 19 | #pragma HLS ARRAY_PARTITION variable=crop complete dim=2 20 | #pragma HLS ARRAY_PARTITION variable=buffer cyclic factor=PaF dim=3 21 | T value; 22 | for(int rep = 0; rep < REP; rep++){ 23 | for(int i=0;i=G) 49 | value = crop[1][1][c]; 50 | 51 | else{ 52 | int d_x = c%3; 53 | int d_y = (c/3)%3; 54 | value = crop[d_y][d_x][c]; 55 | } 56 | if(j>=2 && i>=2) 57 | omap[c].write(value); 58 | } 59 | } 60 | } 61 | } 62 | } 63 | template 64 | void _max_pool(hls::stream fmap[C], hls::stream out[C]){ 65 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 66 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 67 | static const int nD = D/S; 68 | T buffer[nD][C]; 69 | #pragma HLS ARRAY_PARTITION variable=buffer cyclic factor=PaF dim=2 70 | for(int rep = 0; rep < REP; rep++){ 71 | int c =0, is =0, js =0; 72 | for(int i = 0;i 97 | void _avg_pool(hls::stream fmap[C], hls::stream out[C]){ 98 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 99 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 100 | static const int nD = D/S; 101 | typedef typename hls::x_traits::V> >::MULT_T SUM_T; 102 | SUM_T buffer[nD][C]; 103 | #pragma HLS ARRAY_PARTITION variable=buffer cyclic factor=PaF dim=2 104 | for(int rep = 0; rep < REP; rep++){ 105 | int col =0, is =0, js =0; 106 | for(int i = 0;i 132 | void _bias_add(hls::stream fmap[C], const T2 bias[C], hls::stream out[C]){ 133 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 134 | #pragma HLS ARRAY_PARTITION variable=bias cyclic factor=PaF dim=1 135 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 136 | for(int rep = 0; rep < REP; rep++) 137 | for(int i=0;i 147 | void _add(hls::stream fmap_0[C], hls::stream fmap_1[C], hls::stream out[C]){ 148 | #pragma HLS ARRAY_PARTITION variable=fmap_0 cyclic factor=PaF dim=1 149 | #pragma HLS ARRAY_PARTITION variable=fmap_1 cyclic factor=PaF dim=1 150 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 151 | for(int rep = 0; rep < REP; rep++){ 152 | for(int i=0;i 164 | void _duplicate(hls::stream fmap[C], hls::stream out_0[C], hls::stream out_1[C]){ 165 | for(int rep = 0; rep < REP; rep++) 166 | for(int i=0;i 178 | void _relu(hls::stream fmap[C], hls::stream out[C]){ 179 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 180 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 181 | for(int rep = 0; rep < REP; rep++){ 182 | for(int i=0;i 198 | void _conv2d_1x1(hls::stream fmap[C], hls::stream out[N], const T_W p[C][N]){ 199 | 200 | #pragma HLS ARRAY_PARTITION variable=p cyclic factor=PaF dim=0 201 | #pragma HLS ARRAY_PARTITION variable=fmap cyclic factor=PaF dim=1 202 | #pragma HLS ARRAY_PARTITION variable=out cyclic factor=PaF dim=1 203 | typedef typename hls::x_traits::MULT_T MULT_T; 204 | typedef typename hls::x_traits::V> >::MULT_T SUM_T; 205 | SUM_T sum[N]; 206 | T_IN tmp[C]; 207 | #pragma HLS ARRAY_PARTITION variable=sum cyclic factor=PaF dim=1 208 | #pragma HLS ARRAY_PARTITION variable=tmp cyclic factor=PaF dim=1 209 | 210 | for(int i=0;i 236 | void _matMul(hls::stream fmap[C], hls::stream out[N], const T_W p[M*C][N]){ 237 | #pragma HLS ARRAY_PARTITION variable=p cyclic factor=PaF dim=2 238 | typedef typename hls::x_traits::MULT_T MULT_T; 239 | typedef typename hls::x_traits::V> >::MULT_T SUM_T; 240 | SUM_T sum[N], r[C]; 241 | #pragma HLS ARRAY_PARTITION variable=sum cyclic factor=PaF dim=1 242 | #pragma HLS ARRAY_PARTITION variable=r cyclic factor=PaF dim=1 243 | for(int n=0;n 265 | void _shift(hls::stream input[IP], 266 | hls::stream output[IP], 267 | const T0 p0[IP][IP * E], 268 | const T1 p1[IP * E][IP], 269 | const TB0 bias0[IP*E], 270 | const TB1 bias1[IP] 271 | ){ 272 | static const int MP = IP * E; 273 | 274 | #pragma HLS INLINE 275 | hls::stream f_in0[IP], f_in1[IP]; 276 | #pragma HLS STREAM VARIABLE=f_in1 DEPTH=D*2 277 | _duplicate(input, f_in0, f_in1); 278 | 279 | hls::stream f_conv0[MP], f_bias0[MP], f_relu[MP],f_shift[MP]; 280 | hls::stream f_conv1[IP], f_bias1[IP], f_relu1[IP]; 281 | 282 | _conv2d_1x1(f_in0, f_conv0, p0); 283 | _bias_add< D, MP, PaF, REP>(f_conv0, bias0, f_bias0); 284 | _relu< D, MP, PaF, REP>(f_bias0, f_relu); 285 | _shift_3x3< D, MP, 1, PaF, REP>(f_relu, f_shift); 286 | _conv2d_1x1(f_shift, f_conv1, p1); 287 | _bias_add< D, IP, PaF, REP>(f_conv1, bias1,f_bias1); 288 | _relu< D, IP, PaF, REP>(f_bias1, f_relu1); 289 | 290 | _add< D, IP, PaF, REP>(f_relu1, f_in1, output); 291 | } 292 | template 294 | void _shift_res(hls::stream input[IP], 295 | hls::stream output[OP], 296 | const T0 p0[IP][OP * E], 297 | const T1 p1[OP * E][OP], 298 | const T2 p2[IP][OP], 299 | const TB0 bias0[OP*E], 300 | const TB1 bias1[OP], 301 | const TB2 bias2[OP] 302 | ){ 303 | static const int MP = OP * E; 304 | static const int nD = (D - 1)/S_conv + 1; 305 | 306 | #pragma HLS INLINE 307 | hls::stream f_in0[IP], f_in1[IP]; 308 | #pragma HLS STREAM VARIABLE=f_in1 DEPTH=D*2 309 | _duplicate< D, IP, REP>(input, f_in0, f_in1); 310 | 311 | hls::stream f_conv0[MP],f_bias0[MP], f_shift[MP], f_relu[MP]; 312 | hls::stream f_conv1[OP],f_bias1[OP], f_relu1[OP], f_shortcut[OP], f_bias2[OP]; 313 | 314 | _conv2d_1x1(f_in0, f_conv0, p0); 315 | _bias_add< D, MP, PaF, REP>(f_conv0, bias0, f_bias0); 316 | _relu< D, MP, PaF, REP>(f_bias0, f_relu); 317 | _shift_3x3< D, MP, 1, PaF, REP>(f_relu, f_shift); 318 | _conv2d_1x1(f_shift, f_conv1, p1); 319 | _bias_add< nD, OP, PaF, REP>(f_conv1, bias1,f_bias1); 320 | _relu< nD, OP, PaF, REP>(f_bias1, f_relu1); 321 | 322 | _conv2d_1x1< D, IP, OP, S_conv, PaF, REP>(f_in1, f_shortcut, p2); 323 | _bias_add< nD, OP, PaF, REP>(f_shortcut, bias2,f_bias2); 324 | _add< nD, OP, PaF, REP>(f_relu1, f_bias2, output); 325 | } 326 | } 327 | -------------------------------------------------------------------------------- /params/p0_3: -------------------------------------------------------------------------------- 1 | 4.622967913746833801e-02,7.517705112695693970e-02,-1.398302614688873291e-01,-1.159096807241439819e-01,-1.490156948566436768e-01,1.294902712106704712e-02,3.007590770721435547e-02,1.150731071829795837e-01,-3.540474635047827527e-16,-1.925057619810104370e-01,7.403014600276947021e-02,1.409979760646820068e-01,-2.494325786828994751e-01,-1.811056165024638176e-03,-2.484028935432434082e-01,2.904430218040943146e-02,5.201909318566322327e-02,1.857802271842956543e-01,3.078568875789642334e-01,1.261249035596847534e-01,1.267776191234588623e-01,-2.838409692049026489e-02,-1.165781095623970032e-01,4.261660575866699219e-02,-1.616360098123550415e-01,2.621650099754333496e-01,5.663423240184783936e-02,3.860566765069961548e-03,6.420553475618362427e-02,-2.054162323474884033e-01,-7.810188084840774536e-02,-3.919674456119537354e-02,4.350985586643218994e-01,-2.333041094243526459e-02,-1.156779676675796509e-01,7.221253216266632080e-02,-1.473384946584701538e-01,-2.392415702342987061e-01,-2.635597586631774902e-01,-2.503138184547424316e-01,4.934324789176514417e-16,2.612814605236053467e-01,1.181988883763551712e-02,-8.581603318452835083e-02,1.152171641588211060e-01,-3.828777745366096497e-02,1.513930410146713257e-01,-2.759575247764587402e-01,-1.236678585410118103e-01,-5.593018606305122375e-02,-2.867106534540653229e-02,-1.058102846145629883e-01,-4.299014061689376831e-02,1.349222362041473389e-01,1.713574379682540894e-01,1.242330446839332581e-01,-9.664013981819152832e-02,-1.150538697838783264e-01,1.262409389019012451e-01,4.305246286094188690e-03,5.747073888778686523e-02,4.584986865520477295e-01,1.215357035398483276e-01,-4.729261621832847595e-02,-1.468694359064102173e-01,-3.297046571969985962e-02,-1.786257028579711914e-01,9.858331177383661270e-04,7.098936289548873901e-02,7.212230563163757324e-02,3.782892599701881409e-02,-8.554017543792724609e-02,1.367827449104462665e-16,1.272569969296455383e-02,9.691730141639709473e-01,7.997100800275802612e-02,1.080508455634117126e-01,1.557714492082595825e-01,7.389637827873229980e-02,-4.960551857948303223e-02,1.213759835809469223e-02,-1.085416134446859360e-02,-7.802444696426391602e-02,5.646094679832458496e-02,-9.350841492414474487e-02,1.074224244803190231e-02,1.421102229505777359e-02,1.056053936481475830e-01,8.925133198499679565e-02,1.076988875865936279e-01,-7.917998358607292175e-03,-1.317159272730350494e-02,-3.071502745151519775e-01,3.790505230426788330e-01,1.046392973512411118e-02,-1.530975461006164551e+00,9.952900558710098267e-02,-7.813999056816101074e-02,5.861819535493850708e-02,7.492335140705108643e-02,-9.889366477727890015e-02,-3.896091133356094360e-02,-3.341963887214660645e-02,2.210786007344722748e-02,-5.190920715052995890e-16,-1.380684375762939453e-01,-1.234581042081117630e-02,-1.721709370613098145e-01,2.082649432122707367e-02,-5.317148566246032715e-01,-7.698176056146621704e-02,1.548432111740112305e-01,-1.825757790356874466e-03,3.846038877964019775e-01,-1.666540801525115967e-01,4.337913990020751953e-01,-5.268286466598510742e-01,-4.506922140717506409e-02,1.432611141353845596e-02,9.520255029201507568e-02,-2.262748181819915771e-01,-1.567988246679306030e-01,-3.640481829643249512e-02,-6.500069051980972290e-02,-6.860838830471038818e-02,-1.571667343378067017e-01,2.459698170423507690e-02,-7.309088110923767090e-02,-4.930203780531883240e-02,-2.551909387111663818e-01,1.810568124055862427e-01,-6.756661832332611084e-02,-1.322720795869827271e-01,-3.929005563259124756e-02,1.753777414560317993e-01,-3.507965058088302612e-02,-3.452506028310732165e-16,3.299524188041687012e-01,-8.528302609920501709e-02,-1.384447813034057617e-01,2.824901938438415527e-01,1.836868971586227417e-01,-2.238174974918365479e-01,-4.930182918906211853e-02,2.560466229915618896e-01,-8.699631690979003906e-02,5.523086711764335632e-02,1.509779319167137146e-02,1.820271648466587067e-02,1.876082569360733032e-01,-5.108055099844932556e-02,-2.172225713729858398e-01,2.924059033393859863e-01,-1.412225072272121906e-03,2.564360499382019043e-01,2.621066272258758545e-01,2.876433916389942169e-02,2.515808045864105225e-01,-2.498008757829666138e-01,2.184660546481609344e-02,-2.318181395530700684e-01,-6.087001413106918335e-02,6.605204194784164429e-02,2.906296849250793457e-01,-7.044118642807006836e-02,-1.730951219797134399e-01,-4.001585543155670166e-01,1.281735002994537354e-01,5.625421617819258233e-16,6.831873208284378052e-02,1.821927540004253387e-02,-1.220610458403825760e-02,1.792580634355545044e-02,2.124682515859603882e-01,-8.614784479141235352e-02,4.859783872961997986e-02,-2.538818418979644775e-01,6.923449784517288208e-02,-1.022491254843771458e-03,9.144221991300582886e-02,9.604836814105510712e-04,-2.032037228345870972e-01,1.833484619855880737e-01,-6.316968053579330444e-02,1.217639222741127014e-01,5.368561297655105591e-02,-9.562621265649795532e-02,-3.046314716339111328e-01,6.800998747348785400e-02,4.971306771039962769e-02,-5.763536319136619568e-02,-1.468836888670921326e-02,1.488259881734848022e-01,1.217395737767219543e-01,1.654493808746337891e-01,-2.177986502647399902e-01,1.157930046319961548e-01,8.488573879003524780e-02,3.759225085377693176e-02,-1.087223440408706665e-01,3.058891405908434899e-16,3.722856566309928894e-02,-6.165615096688270569e-02,2.111778259277343750e-01,-1.675045490264892578e-02,-9.061491489410400391e-02,-1.179108023643493652e-01,6.879783421754837036e-02,4.693809524178504944e-02,-9.269366040825843811e-03,6.002686917781829834e-02,1.303214877843856812e-01,3.444291651248931885e-02,1.077945604920387268e-01,-1.533824056386947632e-01,2.434217333793640137e-01,-4.227901995182037354e-02,7.007575035095214844e-02,1.601111590862274170e-01,1.024161204695701599e-01,7.249523419886827469e-03,9.896849095821380615e-02,1.544138491153717041e-01,-9.960101917386054993e-03,-1.465113908052444458e-01,-3.050503134727478027e-01,1.550269220024347305e-02,1.504931598901748657e-01,-9.655538201332092285e-02,6.649626884609460831e-03,6.404096633195877075e-02,-2.462697215378284454e-02,2.313460325375083903e-16,1.927081793546676636e-01,-9.431882947683334351e-02,-3.310094475746154785e-01,1.097455173730850220e-01,1.420626640319824219e-01,-2.690327167510986328e-01,-3.518932685256004333e-02,8.920631557703018188e-02,8.014707267284393311e-02,1.053824797272682190e-01,9.946941398084163666e-03,1.295006424188613892e-01,2.991584502160549164e-02,1.240380629897117615e-01,-3.297679424285888672e-01,2.898682355880737305e-01,1.430697292089462280e-01,2.272550016641616821e-01,2.754172310233116150e-02,1.289514154195785522e-01,4.680087044835090637e-02,-5.328364372253417969e-01,4.758746549487113953e-02,1.220090538263320923e-01,2.301805019378662109e-01,1.541102826595306396e-01,3.688468039035797119e-01,-9.824077785015106201e-02,-3.976722806692123413e-02,2.191872894763946533e-02,-2.621921002864837646e-01,1.958289484424005134e-16,-2.384154051542282104e-01,1.553775556385517120e-02,-2.013855613768100739e-02,-2.633722126483917236e-01,-7.322219759225845337e-02,6.624441593885421753e-02,-2.710781097412109375e-01,3.769863024353981018e-02,-1.123866718262434006e-02,-2.849303372204303741e-02,-1.372265517711639404e-01,2.096684882417321205e-03,1.323219239711761475e-01,2.964064478874206543e-01,7.060683518648147583e-02,-3.643163442611694336e-01,-1.169998347759246826e-01,4.439764656126499176e-03,-4.129462689161300659e-02,6.133063510060310364e-02,-5.623722672462463379e-01,4.816929250955581665e-02,1.831286214292049408e-02,-1.277125161141157150e-02,8.061955124139785767e-02,2.986368238925933838e-01,5.643155425786972046e-03,-2.805993519723415375e-02,-4.811708629131317139e-02,5.435674265027046204e-02,1.130959987640380859e-01,-3.523645943270456698e-16,1.245284229516983032e-01,3.091322183609008789e-01,1.036017015576362610e-01,2.951358444988727570e-02,1.864576637744903564e-01,1.103762611746788025e-01,-1.794398277997970581e-01,-3.807633742690086365e-02,6.785594820976257324e-01,-1.101926490664482117e-01,-2.971392497420310974e-02,4.096229970455169678e-01,3.322935104370117188e-02,-2.384963817894458771e-02,1.550112012773752213e-02,-3.609447553753852844e-02,6.342665106058120728e-02,2.565915137529373169e-02,-2.889220044016838074e-02,1.115492820739746094e+00,2.200649529695510864e-01,1.252245306968688965e-01,-9.047532826662063599e-02,-1.840506196022033691e-01,8.451330661773681641e-02,5.408426746726036072e-02,-7.104331627488136292e-03,-3.807323798537254333e-02,1.438304334878921509e-01,1.335619091987609863e-01,3.039074875414371490e-02,6.014735430431871789e-16,-1.937989592552185059e-01,4.769444465637207031e-02,-3.180744349956512451e-01,-1.816516928374767303e-02,1.076175123453140259e-01,2.298255711793899536e-01,-2.967878282070159912e-01,1.523026525974273682e-01,1.219673305749893188e-01,-5.827384814620018005e-02,-1.716728508472442627e-01,4.722259193658828735e-02,1.947646141052246094e-01,-2.494837790727615356e-01,-2.785772085189819336e-01,-3.698226064443588257e-02,-8.518321812152862549e-02,-2.801259607076644897e-02,1.725007444620132446e-01,3.143864572048187256e-01,-4.521566927433013916e-01,-3.368836045265197754e-01,8.644592599011957645e-04,1.353009939193725586e-01,-1.165111828595399857e-02,-1.289757639169692993e-01,-2.214325219392776489e-02,1.297473255544900894e-02,2.189803496003150940e-02,-6.521990150213241577e-02,-3.045210540294647217e-01,8.315371412287729568e-17,1.710388660430908203e-01,2.790677547454833984e-01,2.273962199687957764e-01,9.367872029542922974e-02,-2.091021239757537842e-01,-2.400934845209121704e-01,-1.672533452510833740e-01,-1.806668937206268311e-01,5.490225926041603088e-02,2.522119879722595215e-02,1.186831593513488770e-01,-2.456521801650524139e-02,-5.222646892070770264e-02,3.655681386590003967e-02,-1.650897227227687836e-02,9.475859999656677246e-02,1.989440321922302246e-01,-1.609184890985488892e-01,-1.540363300591707230e-02,2.471572011709213257e-01,7.925821840763092041e-02,2.063813358545303345e-01,-1.740370094776153564e-01,-9.609880298376083374e-02,2.512618899345397949e-02,-5.218194797635078430e-02,-8.645685389637947083e-03,5.808964744210243225e-02,6.898591667413711548e-02,-4.891929682344198227e-03,-9.394190311431884766e-01,-2.995307024838218726e-16,2.903344668447971344e-02,-8.621103763580322266e-01,1.191672757267951965e-01,3.178704530000686646e-02,2.477343678474426270e-01,8.817523717880249023e-02,1.018689721822738647e-01,-4.030472785234451294e-02,8.722351491451263428e-02,-7.351357489824295044e-02,1.407663375139236450e-01,-1.622617244720458984e-01,-6.181154400110244751e-02,3.972083702683448792e-02,4.977326467633247375e-02,-2.743802033364772797e-02,-1.453398540616035461e-02,-1.721216924488544464e-02,-4.068646207451820374e-02,-2.614024877548217773e-01,3.884248062968254089e-02,-5.287012457847595215e-02,-3.646453917026519775e-01,4.226713627576828003e-02,-3.271103196311742067e-04,-6.928768008947372437e-02,-1.176803023554384708e-03,-3.485755622386932373e-02,-2.112590149044990540e-02,1.552670821547508240e-02,5.382582545280456543e-02,-1.033487133559837269e-16,6.684944778680801392e-02,-2.830171585083007812e-01,6.787636131048202515e-02,2.470364980399608612e-02,-2.868584990501403809e-01,3.273140266537666321e-02,2.125241011381149292e-01,-3.376701846718788147e-02,-1.496337950229644775e-01,1.411698758602142334e-02,-1.104253605008125305e-01,-1.898592710494995117e-01,-1.712365895509719849e-01,2.160078100860118866e-02,-8.799530565738677979e-03,9.401345998048782349e-02,4.652184993028640747e-02,-7.801194489002227783e-02,-4.901739209890365601e-02,-2.866929210722446442e-02,6.107391044497489929e-02,1.514656245708465576e-01,-5.527295544743537903e-02,-1.008794680237770081e-01,-4.164254292845726013e-02,-1.627620309591293335e-02,1.302110105752944946e-01,-1.839540451765060425e-01,-2.497220337390899658e-01,-2.938308119773864746e-01,2.081282995641231537e-02,-4.209241723054702361e-18,1.455493038520216942e-03,-8.205857127904891968e-02,4.139311984181404114e-02,-9.466231614351272583e-02,2.155037969350814819e-02,-2.535582184791564941e-01,-1.225725747644901276e-02,-2.038970887660980225e-01,1.195996925234794617e-01,2.076973170042037964e-01,1.084242910146713257e-01,1.599048674106597900e-01,-1.160211637616157532e-01,1.998710483312606812e-01,7.496483623981475830e-03,8.277361840009689331e-02,8.890392631292343140e-02,-1.700311005115509033e-01,-7.581087946891784668e-02,2.862788438796997070e-01,-8.634083718061447144e-02,3.325375029817223549e-03,9.995581954717636108e-02,2.185361832380294800e-01,3.290165066719055176e-01,2.841659188270568848e-01,-1.181708462536334991e-02,3.054637648165225983e-02,9.576364606618881226e-02,1.702545583248138428e-01,-1.301760673522949219e-01,4.652100822689670019e-16,-1.776899099349975586e-01,-1.863981410861015320e-02,2.835585474967956543e-01,-3.007040619850158691e-01,1.721835583448410034e-01,-5.423444136977195740e-02,-3.393235057592391968e-02,1.805937439203262329e-01,-5.529697611927986145e-02,3.210944682359695435e-02,1.138266548514366150e-01,8.258940279483795166e-02,2.081913352012634277e-01,-1.388855278491973877e-01,3.364551663398742676e-01,-1.825098693370819092e-01,7.651782035827636719e-02,7.651691883802413940e-02,8.618170768022537231e-02,1.134065687656402588e-01,-2.479266971349716187e-01,3.302010297775268555e-01,5.435363575816154480e-02 2 | -------------------------------------------------------------------------------- /params/p2_3: -------------------------------------------------------------------------------- 1 | 3.136251866817474365e-02,-7.723835110664367676e-02,-3.802781284321099520e-04,-4.241124913096427917e-02,5.916575901210308075e-03,2.273855544626712799e-02,3.741240827366709709e-03,8.264643140137195587e-03,7.849308848381042480e-02,-1.308946032077074051e-02,-1.013287249952554703e-02,-1.476772222667932510e-02,-3.904215246438980103e-02,3.996140509843826294e-02,9.480697102844715118e-03,-8.591508120298385620e-02,1.973455538973212242e-03,-4.367281217128038406e-03,2.990825846791267395e-02,-2.035433612763881683e-02,4.404016956686973572e-02,-1.341739445924758911e-01,4.445999860763549805e-03,-3.713881596922874451e-02,-3.104723989963531494e-03,-2.350212819874286652e-02,1.121498271822929382e-02,-6.783505529165267944e-02,3.637468442320823669e-03,4.808248952031135559e-02,-1.154877766966819763e-01,7.499970495700836182e-02,1.265555918216705322e-01,-1.781475692987442017e-01,-6.770972628146409988e-03,3.146434202790260315e-03,7.469201809726655483e-04,-1.273200213909149170e-01,-1.571622909978032112e-03,1.232814267277717590e-01,1.235798466950654984e-02,-3.009870881214737892e-03,-3.159394115209579468e-02,2.023421674966812134e-01,3.874044865369796753e-02,-1.230625212192535400e-01,-8.518288843333721161e-03,-6.429766118526458740e-02,-5.205724388360977173e-03,-9.067340940237045288e-02,8.931895345449447632e-02,-4.240523278713226318e-02,5.103347450494766235e-02,-1.179591659456491470e-02,9.669820428825914860e-04,1.854687929153442383e-02,-2.336787804961204529e-02,7.357999682426452637e-02,3.765823319554328918e-02,-2.616426348686218262e-02,-5.824921652674674988e-03,-3.259312361478805542e-02,3.101297467947006226e-02,-2.032752484083175659e-01,2.290087565779685974e-02,-1.972458884119987488e-02,-3.066903678700327873e-03,5.810591951012611389e-02,-3.087232708930969238e-01,-1.457425951957702637e-01,-2.230728743597865105e-03,9.781104745343327522e-04,-2.949862182140350342e-02,6.053714547306299210e-03,-7.231331896036863327e-03,-2.740829065442085266e-02,3.954274114221334457e-03,2.509475313127040863e-02,1.115437000989913940e-01,-9.313388727605342865e-03,6.361483130604028702e-03,1.618188992142677307e-02,-1.045011654496192932e-01,-2.078306227922439575e-01,-4.736660685011884198e-06,-2.716711163520812988e-02,2.682403428480029106e-03,2.086506597697734833e-02,-2.029648795723915100e-02,-1.973847299814224243e-02,-5.990649107843637466e-03,3.730215504765510559e-02,-6.978059187531471252e-03,-2.707590535283088684e-02,-1.896807737648487091e-02,7.512387633323669434e-02,-2.943008206784725189e-02,-1.322912871837615967e-01,5.124491639435291290e-03,-1.463244706392288208e-01,2.338671088218688965e-01,1.303066015243530273e-01,-6.306874565780162811e-03,-1.193036045879125595e-02,1.047878526151180267e-02,-4.621467553079128265e-03,-4.068734124302864075e-03,-1.507835239171981812e-01,-1.038823928683996201e-02,-9.608336724340915680e-03,-1.560545861721038818e-01,1.738893538713455200e-01,1.339476834982633591e-02,-1.996508613228797913e-02,1.853875666856765747e-01,-1.594779193401336670e-01,-2.753989957273006439e-02,-2.545860111713409424e-01,-2.973983995616436005e-02,2.274335548281669617e-02,-2.288761734962463379e-02,7.358302362263202667e-03,-7.467275485396385193e-03,1.792658716440200806e-01,1.756140612997114658e-03,-1.751471078023314476e-03,-1.295847073197364807e-02,1.304232981055974960e-03,-1.134098693728446960e-02,4.796002991497516632e-03,-1.205612812191247940e-02,-8.513305336236953735e-02,-6.284194998443126678e-03,2.331310883164405823e-02,2.808880759403109550e-03,1.402861811220645905e-02,-4.381786659359931946e-02,-1.066480111330747604e-02,-1.588976942002773285e-02,-2.045613527297973633e-02,6.050720438361167908e-02,1.530283968895673752e-02,3.022691607475280762e-01,3.259017691016197205e-02,-6.181248463690280914e-03,-9.818831831216812134e-02,-1.443782541900873184e-02,4.980146768502891064e-04,9.458272717893123627e-03,2.736518159508705139e-02,1.054134499281644821e-02,3.042682446539402008e-02,2.290047332644462585e-02,3.954794630408287048e-02,2.100287750363349915e-02,5.817961692810058594e-02,-3.152168542146682739e-02,-5.221023038029670715e-02,-1.677873916923999786e-02,5.055024474859237671e-02,-1.669016480445861816e-02,-1.586537575349211693e-03,9.138831868767738342e-03,-4.116364941000938416e-02,8.782153949141502380e-03,-5.750869587063789368e-02,-1.208552904427051544e-02,-6.003947928547859192e-02,2.143299905583262444e-03,1.182683464139699936e-02,1.738229393959045410e-02,-2.885941602289676666e-02,-8.954918943345546722e-03,5.070352181792259216e-02,2.876651939004659653e-03,-3.519947081804275513e-02,9.126498363912105560e-03,2.011727690696716309e-01,-8.608067035675048828e-02,6.108805537223815918e-02,-1.193399261683225632e-02,9.040562063455581665e-02,4.799562448170036077e-04,-2.622324228286743164e-02,-1.875448622740805149e-03,-3.164266468957066536e-03,-2.923922426998615265e-02,3.101597540080547333e-02,3.650507424026727676e-03,-2.599627943709492683e-03,-2.045181021094322205e-02,-4.827380180358886719e-02,-8.498305687680840492e-04,-3.588579222559928894e-02,-5.210744682699441910e-03,-7.508461922407150269e-02,3.144230693578720093e-02,-7.939831167459487915e-02,5.976178799755871296e-04,2.013983204960823059e-02,-2.173220366239547729e-02,-2.590083517134189606e-03,-1.901352778077125549e-02,-5.426035821437835693e-02,5.122292786836624146e-04,-9.848864283412694931e-04,1.515684574842453003e-01,-4.432337358593940735e-02,-7.091172039508819580e-03,-8.193684369325637817e-02,1.245685573667287827e-02,-2.921811863780021667e-02,-7.145941257476806641e-02,-9.305907040834426880e-02,1.227877940982580185e-02,5.874631926417350769e-02,2.060618810355663300e-02,-4.162623733282089233e-02,1.197667792439460754e-02,2.134458534419536591e-02,-1.243496965616941452e-02,-8.085989207029342651e-02,-4.160123318433761597e-02,4.335345327854156494e-02,-4.104005545377731323e-02,-3.185243532061576843e-02,8.440075907856225967e-04,-4.164613410830497742e-02,5.853529646992683411e-02,8.482956886291503906e-02,-5.530782975256443024e-03,1.039820443838834763e-02,-1.343551324680447578e-03,7.627560291439294815e-03,-3.744808491319417953e-03,-7.016137242317199707e-02,1.152849849313497543e-02,-3.460753336548805237e-02,5.847091227769851685e-02,6.545957922935485840e-02,5.375433247536420822e-03,-4.836148768663406372e-02,-1.510219741612672806e-02,-9.778586030006408691e-02,2.997185289859771729e-02,3.341650962829589844e-02,-2.498733252286911011e-02,-2.579599991440773010e-02,-8.196002803742885590e-03,7.262106053531169891e-03,4.309333860874176025e-03,1.792105883359909058e-01,-3.522901237010955811e-02,7.371052051894366741e-04,-7.991965860128402710e-02,1.845165505073964596e-03,-1.031950488686561584e-02,1.276834756135940552e-01,-2.763982862234115601e-03,2.620427682995796204e-02,-7.120282948017120361e-02,-1.464969962835311890e-01,-9.700130671262741089e-03,8.832760900259017944e-02,-1.426034606993198395e-02,1.864464208483695984e-02,3.948143217712640762e-03,1.068806946277618408e-01,-2.256015688180923462e-02,2.725970931351184845e-02,-9.024521335959434509e-03,4.869091324508190155e-03,4.065276589244604111e-03,1.381530314683914185e-01,7.547451555728912354e-02,-8.134370297193527222e-02,6.886494904756546021e-02,-8.735790103673934937e-02,-1.768588647246360779e-02,-2.373552694916725159e-02,4.413637891411781311e-02,6.425522733479738235e-03,-3.170834109187126160e-02,4.314189776778221130e-02,1.186800887808203697e-03,-2.020332589745521545e-02,2.804579213261604309e-02,-2.584163285791873932e-02,-4.073307663202285767e-02,1.063626632094383240e-01,4.871476907283067703e-03,-5.672171246260404587e-03,3.940266966819763184e-01,1.116091310977935791e-01,2.637651050463318825e-03,6.131744384765625000e-02,-2.991469576954841614e-02,-6.160707212984561920e-03,3.641851712018251419e-03,1.491344273090362549e-01,-2.784212492406368256e-02,3.259989619255065918e-02,6.218802556395530701e-02,6.046064943075180054e-02,1.187211833894252777e-03,-6.314017344266176224e-03,4.273767769336700439e-02,-5.214651823043823242e-01,8.033502846956253052e-02,-1.421936899423599243e-01,8.877875516191124916e-04,-4.042466729879379272e-02,-2.290926873683929443e-02,2.443445287644863129e-02,-3.500637784600257874e-02,-1.014494895935058594e-01,-2.620617672801017761e-02,2.037955820560455322e-02,7.737509440630674362e-03,4.006482288241386414e-02,3.737942129373550415e-02,-2.296804822981357574e-02,-1.269533392041921616e-02,1.256403177976608276e-01,3.585648257285356522e-03,-1.156128942966461182e-01,1.901730149984359741e-02,1.014443784952163696e-01,4.241055995225906372e-02,-3.040321171283721924e-03,-1.777308247983455658e-02,7.513083517551422119e-02,1.965294219553470612e-02,-4.807990789413452148e-02,-5.336861684918403625e-02,2.439658716320991516e-02,-1.789786107838153839e-02,-5.560690164566040039e-02,3.256553038954734802e-02,-1.210924610495567322e-02,1.636087596416473389e-01,1.156021282076835632e-02,1.367900241166353226e-02,-1.036093011498451233e-01,2.253223210573196411e-02,8.782903105020523071e-02,1.255417428910732269e-02,7.584890723228454590e-02,-1.024305261671543121e-02,1.041989214718341827e-02,1.082203388214111328e-01,1.836236566305160522e-01,-1.359183806926012039e-03,8.408169262111186981e-03,2.544102026149630547e-03,5.032237172126770020e-01,1.272300630807876587e-01,-4.615672677755355835e-02,-5.187048576772212982e-03,-1.422011386603116989e-02,-7.690543774515390396e-03,1.560259261168539524e-03,1.716977544128894806e-02,-1.723014712333679199e-01,1.166150346398353577e-02,1.066169980913400650e-02,-2.066418379545211792e-01,-1.363725364208221436e-01,9.106079116463661194e-03,4.897330328822135925e-02,1.960256099700927734e-01,-1.922222077846527100e-01,7.250016927719116211e-02,1.410657423548400402e-03,-1.973045989871025085e-02,2.909883484244346619e-02,-9.935489855706691742e-03,-4.338095709681510925e-02,-1.367824384942650795e-03,1.663304418325424194e-01,-5.122499540448188782e-03,1.101701781153678894e-01,-5.422887578606605530e-02,-2.890116348862648010e-02,-3.540930105373263359e-03,1.473822724074125290e-02,3.926534205675125122e-03,3.121489891782402992e-03,-1.239552046172320843e-03,1.169982030987739563e-01,-3.045226039830595255e-04,-7.095467299222946167e-03,-3.278258955106139183e-03,2.120114862918853760e-03,1.342280209064483643e-02,-4.584784805774688721e-02,2.500212518498301506e-03,2.982593886554241180e-02,-4.190251603722572327e-02,3.655959665775299072e-02,1.204754458740353584e-03,1.606312021613121033e-02,1.336385488510131836e+00,3.284831643104553223e-01,1.219174731522798538e-02,9.991171769797801971e-03,-2.536155050620436668e-03,-3.122879657894372940e-03,-8.679484948515892029e-03,-2.371330000460147858e-02,-2.483426965773105621e-02,1.227701548486948013e-02,3.140411805361509323e-03,5.662331730127334595e-02,-2.563225338235497475e-03,5.950380861759185791e-02,-1.442961487919092178e-02,-9.615252166986465454e-02,3.890279214829206467e-03,6.104926578700542450e-03,-3.682450652122497559e-01,-4.377422854304313660e-02,6.494151894003152847e-03,-9.307884611189365387e-03,-7.831190712749958038e-03,-4.345815163105726242e-03,1.596621610224246979e-02,1.042457669973373413e-01,-1.214948948472738266e-02,-1.285073533654212952e-02,-3.155537694692611694e-02,-4.118648357689380646e-03,-2.194088418036699295e-03,7.548995316028594971e-03,5.114971995353698730e-01,-1.272881627082824707e+00,-5.062573589384555817e-03,4.893809184432029724e-02,2.581472974270582199e-03,-9.403211064636707306e-03,-4.166860599070787430e-03,-4.271302372217178345e-02,-1.176538877189159393e-02,-5.264640226960182190e-02,3.799363970756530762e-03,-3.243241831660270691e-02,-4.011760000139474869e-03,-3.136599808931350708e-02,2.757887355983257294e-02,-1.867245649918913841e-03,2.469388302415609360e-03,-5.962448776699602604e-04,3.257976099848747253e-02,1.138590872287750244e-01,-9.237739257514476776e-03,2.174642495810985565e-02,1.179240178316831589e-02,1.403584890067577362e-02,9.717723354697227478e-03,-3.398442640900611877e-02,-3.902312740683555603e-02,2.876827307045459747e-02,9.819223731756210327e-02,-7.161071989685297012e-03,-4.859314765781164169e-03,1.140485554933547974e-01,5.400402471423149109e-02,-5.403397604823112488e-02,3.020066581666469574e-02,-4.728053137660026550e-02,2.631602250039577484e-02,-2.534395083785057068e-02,6.221985444426536560e-02,7.172136101871728897e-03,-3.390562022104859352e-03,6.171055138111114502e-04,2.903630724176764488e-03,2.094548754394054413e-02,-1.066849753260612488e-01,-1.649238616228103638e-01,2.862425334751605988e-02,-4.736315459012985229e-02,6.859409622848033905e-03,-4.482788592576980591e-02,-3.042633458971977234e-02,-1.441186666488647461e-01,-1.290286309085786343e-03,4.412253201007843018e-02,-1.896917074918746948e-02,7.062922697514295578e-03,1.018107635900378227e-03,-4.501857329159975052e-03,-1.012834603898227215e-03,1.529033295810222626e-02,1.252951472997665405e-01,-5.157148092985153198e-02,9.253418073058128357e-03,-2.217815816402435303e-02,1.155721675604581833e-02,-7.399044185876846313e-02,-7.960661500692367554e-02,-1.025050580501556396e-01,-1.893069781363010406e-02,6.027287244796752930e-02,2.433238737285137177e-02,-1.658483780920505524e-02,-4.799762740731239319e-02,1.539947651326656342e-02,1.628056354820728302e-02,-5.009205639362335205e-02,-6.595285143703222275e-03,2.812205813825130463e-02 2 | -------------------------------------------------------------------------------- /params/p_9: -------------------------------------------------------------------------------- 1 | -9.089685976505279541e-02,-2.176370918750762939e-01,-3.162785470485687256e-01,3.664456903934478760e-01,-1.917490735650062561e-02,-1.802912354469299316e-01,4.031774401664733887e-01,4.406668245792388916e-01,-5.641569197177886963e-02,-3.295888900756835938e-01,-2.085674107074737549e-01,-1.049656644463539124e-01,-1.476555131375789642e-02,-3.665524125099182129e-01,-1.459545791149139404e-01,7.694867849349975586e-01,-2.923973202705383301e-01,8.807902932167053223e-01,-1.677637547254562378e-01,-3.493093550205230713e-01,-3.395834863185882568e-01,-2.365447729825973511e-01,7.487510442733764648e-01,-1.396931856870651245e-01,5.615194886922836304e-02,6.531829237937927246e-01,-5.832671374082565308e-02,-2.748945653438568115e-01,-1.096285954117774963e-01,-2.994159460067749023e-01,4.467894732952117920e-01,4.751112163066864014e-01,-2.849270105361938477e-01,-2.111070007085800171e-01,-5.824855566024780273e-01,-1.387294679880142212e-01,-3.461168706417083740e-01,-3.519061505794525146e-01,3.057099580764770508e-01,6.876664161682128906e-01,8.749296888709068298e-03,1.075375601649284363e-01,-1.302961707115173340e-01,2.808273071423172951e-03,4.847149364650249481e-03,6.606352329254150391e-02,-4.088670760393142700e-02,-6.696226447820663452e-02,-4.963294044137001038e-02,9.777326136827468872e-02,-3.825447857379913330e-01,-4.994184672832489014e-01,4.830342531204223633e-01,1.354259371757507324e+00,5.166483521461486816e-01,-4.760209321975708008e-01,1.075142174959182739e-01,-3.918623626232147217e-01,-4.699411392211914062e-01,-2.416647076606750488e-01,-4.714863002300262451e-02,3.688125638291239738e-03,3.820690512657165527e-01,3.715136647224426270e-02,-8.494029194116592407e-02,-1.183094084262847900e-01,1.436754968017339706e-02,-9.776672720909118652e-02,9.636981040239334106e-02,-1.854788213968276978e-01,2.842199206352233887e-01,-2.098060995340347290e-01,3.282214999198913574e-01,-2.069246321916580200e-01,-2.260315567255020142e-01,-3.052283227443695068e-01,4.006239175796508789e-01,-2.373259514570236206e-01,3.907378017902374268e-01,-2.184766381978988647e-01,-1.432007104158401489e-01,-8.998114615678787231e-02,1.639533042907714844e-01,-1.564159840345382690e-01,-8.451453596353530884e-02,1.027714833617210388e-01,-1.422874778509140015e-01,5.548300594091415405e-02,-3.147922828793525696e-02,3.256747722625732422e-01,-2.739948928356170654e-01,-2.255610972642898560e-01,2.497280538082122803e-01,-1.328348070383071899e-01,-1.540527790784835815e-01,-3.514186143875122070e-01,3.260650932788848877e-01,-1.878429949283599854e-01,2.421581298112869263e-01,5.077596306800842285e-01,1.049729466438293457e+00,3.591474518179893494e-02,-5.049567222595214844e-01,6.212987303733825684e-01,-6.847563982009887695e-01,1.373560577630996704e-01,-3.317701816558837891e-01,-2.602999210357666016e-01,-6.524138450622558594e-01,5.899082422256469727e-01,-2.943413853645324707e-01,-2.186998575925827026e-01,-3.783048987388610840e-01,-5.089978501200675964e-02,-4.237436056137084961e-01,6.140800118446350098e-01,7.278243303298950195e-01,-5.103012919425964355e-01,7.901440262794494629e-01,-2.557392716407775879e-01,-7.593707442283630371e-01,-5.953386425971984863e-01,3.535398244857788086e-01,-3.788335025310516357e-01,2.711461782455444336e-01,-1.655095815658569336e-01,1.319490671157836914e+00,5.555715560913085938e-01,-2.515117824077606201e-01,-3.491660356521606445e-01,1.522964686155319214e-01,3.288236558437347412e-01,2.079745829105377197e-01,-5.262429714202880859e-01,-7.369534969329833984e-01,-5.271975994110107422e-01,7.925020456314086914e-01,-1.950380802154541016e-01,-3.326793313026428223e-01,8.365246653556823730e-01,-6.172699928283691406e-01,-3.420219123363494873e-01,1.011650085449218750e+00,2.533359825611114502e-01,4.752474427223205566e-01,-2.185162454843521118e-01,-4.294226765632629395e-01,-3.114827722311019897e-02,-3.093027770519256592e-01,2.074561417102813721e-01,6.108025554567575455e-03,1.997173763811588287e-02,-1.609699102118611336e-04,7.688365131616592407e-02,7.881038822233676910e-03,-5.425086989998817444e-02,7.751668337732553482e-03,-3.305488079786300659e-02,6.310536712408065796e-02,-9.423161298036575317e-02,9.037484228610992432e-02,-3.287225663661956787e-01,-1.714809089899063110e-01,-2.165344357490539551e-02,5.858246684074401855e-01,-2.187739312648773193e-01,-5.883460491895675659e-02,-4.133093059062957764e-01,6.255211234092712402e-01,-8.893397450447082520e-02,-8.818542361259460449e-01,1.017338991165161133e+00,1.643886268138885498e-01,2.742499299347400665e-02,2.438838332891464233e-01,-1.336899846792221069e-01,-3.487598598003387451e-01,-8.400659263134002686e-02,-6.060630679130554199e-01,6.013399958610534668e-01,-3.963862955570220947e-01,5.838147401809692383e-01,-9.162437170743942261e-02,-6.096354722976684570e-01,-2.292651683092117310e-01,6.923857927322387695e-01,-1.388068050146102905e-01,-5.129841566085815430e-01,5.763268470764160156e-02,6.448701024055480957e-01,2.655785977840423584e-01,-8.086612075567245483e-02,-2.973691523075103760e-01,-2.192399650812149048e-02,-2.886425256729125977e-01,1.443814933300018311e-01,3.888624608516693115e-01,3.216886222362518311e-01,-4.473210275173187256e-01,1.561465021222829819e-02,7.611925154924392700e-02,6.320528388023376465e-01,-3.923768103122711182e-01,-2.643415331840515137e-01,-3.955212235450744629e-01,-1.849255859851837158e-01,-1.356508433818817139e-01,6.334111094474792480e-01,5.041686296463012695e-01,-4.729340970516204834e-01,1.374318897724151611e-01,5.218233168125152588e-02,-4.360830783843994141e-01,-2.206120938062667847e-01,-2.736210525035858154e-01,-1.097801923751831055e-01,-3.132148683071136475e-01,7.010050415992736816e-01,-1.915789544582366943e-01,6.542810797691345215e-01,7.311047911643981934e-01,-5.428317189216613770e-01,8.196706771850585938e-01,-3.017383217811584473e-01,-2.160122096538543701e-01,-2.211059778928756714e-01,-4.855471253395080566e-01,-2.508094906806945801e-01,7.418122887611389160e-01,-2.745313048362731934e-01,-1.899552345275878906e-01,5.303983092308044434e-01,-3.828478455543518066e-01,9.655260443687438965e-01,-2.047665864229202271e-01,1.712914556264877319e-01,-3.190409243106842041e-01,-1.826465129852294922e-01,-2.817560434341430664e-01,-1.061927303671836853e-01,-1.020705342292785645e+00,1.019231677055358887e+00,7.086817622184753418e-01,-7.226049900054931641e-02,9.318889677524566650e-02,2.780599892139434814e-01,5.229053273797035217e-02,1.649058461189270020e-01,-6.217377185821533203e-01,-6.016646027565002441e-01,9.225738644599914551e-01,-7.964321225881576538e-02,6.009529829025268555e-01,-2.663497328758239746e-01,-1.989534348249435425e-01,-5.246886014938354492e-01,6.619101762771606445e-01,-4.399340748786926270e-01,-4.538489282131195068e-01,-2.220049053430557251e-01,-8.863872289657592773e-02,-2.747303247451782227e-01,-2.230546027421951294e-01,-5.983459576964378357e-02,-4.342980384826660156e-01,-2.120408862829208374e-01,-3.222547173500061035e-01,6.076120734214782715e-01,8.515943586826324463e-02,9.220846891403198242e-01,-5.719318985939025879e-01,7.087225914001464844e-01,-2.787821590900421143e-01,3.292429745197296143e-01,-4.067313671112060547e-01,-3.249779939651489258e-01,5.176837444305419922e-01,-5.651745200157165527e-01,1.248850703239440918e+00,-6.568940281867980957e-01,3.900145590305328369e-01,-3.045611083507537842e-01,-4.896044135093688965e-01,-4.166097939014434814e-01,9.381630420684814453e-01,-2.729956507682800293e-01,9.008817076683044434e-01,-3.100302219390869141e-01,-4.141421914100646973e-01,-2.110439725220203400e-02,2.484759502112865448e-02,-4.399210959672927856e-02,-6.038074567914009094e-02,3.727004863321781158e-03,-1.245174370706081390e-02,2.465252578258514404e-02,4.331131651997566223e-02,-6.367396563291549683e-03,3.704300150275230408e-02,-1.038568280637264252e-02,-4.864214733242988586e-02,2.725930884480476379e-02,-2.023888193070888519e-02,1.797148585319519043e-02,-1.882987911812961102e-03,6.826918572187423706e-02,-3.745917603373527527e-02,1.449536252766847610e-02,1.113686896860599518e-02,-3.090828098356723785e-02,-1.318333763629198074e-02,-1.682584285736083984e-01,8.763974905014038086e-02,6.498692184686660767e-02,-1.345742493867874146e-01,2.482744492590427399e-02,2.762800157070159912e-01,2.488512173295021057e-02,-6.438098102807998657e-02,-9.821890294551849365e-02,-1.418782621622085571e-01,-1.700966991484165192e-02,-2.682996094226837158e-01,-1.973424106836318970e-02,6.273012161254882812e-01,-8.832068741321563721e-02,-2.587885856628417969e-01,2.888224124908447266e-01,-1.255524344742298126e-02,-1.095294058322906494e-01,-3.779090940952301025e-01,-3.964987695217132568e-01,9.293367862701416016e-01,-1.572969928383827209e-02,-4.243298172950744629e-01,3.048723042011260986e-01,-3.043067455291748047e-01,6.126297116279602051e-01,-2.464255690574645996e-01,-8.163680881261825562e-02,6.692443974316120148e-03,1.205058768391609192e-02,6.638685613870620728e-02,2.498863451182842255e-02,4.500490054488182068e-02,-5.136847961694002151e-03,-2.214882522821426392e-03,-1.067810505628585815e-01,1.230561640113592148e-02,-5.329211801290512085e-02,4.520764350891113281e-01,-3.079895675182342529e-01,5.437925457954406738e-01,-2.214757800102233887e-01,-2.113577425479888916e-01,-3.504168391227722168e-01,-3.007930815219879150e-01,-4.427890777587890625e-01,6.027471423149108887e-01,2.362214624881744385e-01,5.118450522422790527e-01,5.971866846084594727e-01,-4.410090446472167969e-01,-5.641129016876220703e-01,-2.551924623548984528e-02,-1.817517578601837158e-01,-1.516773700714111328e-01,9.899692535400390625e-01,-4.840497374534606934e-01,-2.508741021156311035e-01,3.841542452573776245e-02,-5.341300964355468750e-01,-1.352098733186721802e-01,6.977427601814270020e-01,-2.298882603645324707e-01,1.000628232955932617e+00,1.055379390716552734e+00,-3.972098231315612793e-01,-7.993669509887695312e-01,-6.963539719581604004e-01,-6.963055133819580078e-01,8.804807662963867188e-01,-8.454011678695678711e-01,-1.418114155530929565e-01,-4.484614729881286621e-01,-1.210392937064170837e-01,1.015819668769836426e+00,-2.146996557712554932e-01,-4.477958679199218750e-01,1.019219279289245605e+00,7.881066948175430298e-02,8.390495181083679199e-02,1.240633502602577209e-01,2.637248300015926361e-02,4.068419337272644043e-01,-2.853840887546539307e-01,-3.612180799245834351e-02,-3.015414178371429443e-01,1.905737519264221191e-01,-2.875108420848846436e-01,2.314068078994750977e-01,5.616064071655273438e-01,1.719562262296676636e-01,-2.923866808414459229e-01,1.147065401077270508e+00,-1.453026533126831055e-01,-3.223564922809600830e-01,-5.682021379470825195e-01,-4.189119935035705566e-01,-3.648623824119567871e-01,4.081621766090393066e-01,5.963519215583801270e-01,-5.486800074577331543e-01,-3.236594796180725098e-01,4.457878470420837402e-01,-8.164379745721817017e-02,-3.217260837554931641e-01,3.517300784587860107e-01,-3.422076106071472168e-01,-1.841123551130294800e-01,-7.468364387750625610e-02,-2.474263906478881836e-01,1.765456981956958771e-02,-2.749980390071868896e-01,8.183723092079162598e-01,-3.899191319942474365e-01,-2.933617532253265381e-01,6.399145722389221191e-01,-2.994029223918914795e-01,1.038564816117286682e-01,5.174790024757385254e-01,-2.942939996719360352e-01,-3.617926239967346191e-01,2.164883166551589966e-01,2.021271437406539917e-01,3.958750665187835693e-01,-1.713381409645080566e-01,1.077582910656929016e-01,-3.111238777637481689e-01,-3.011713624000549316e-01,-2.238891571760177612e-01,-3.548139333724975586e-01,2.298575490713119507e-01,-2.538613080978393555e-01,-5.449022650718688965e-01,-2.336866110563278198e-01,-2.065791785717010498e-01,1.141881823539733887e+00,3.109619021415710449e-01,1.350381076335906982e-01,-3.722076714038848877e-01,-6.881018280982971191e-01,-3.379771411418914795e-01,-1.322314515709877014e-02,5.274220705032348633e-01,4.453667402267456055e-01,-2.666869163513183594e-01,-3.398217856884002686e-01,-1.555230319499969482e-01,1.200754523277282715e+00,2.202411927282810211e-02,-4.116101562976837158e-02,-8.654338866472244263e-02,2.512698173522949219e-01,8.423408120870590210e-02,-1.721763610839843750e-01,-2.219609729945659637e-02,5.577094852924346924e-02,5.994552373886108398e-02,-1.511582136154174805e-01,2.996298372745513916e-01,8.702676296234130859e-01,-5.320811271667480469e-01,-4.014865756034851074e-01,-3.260456025600433350e-01,-7.503451108932495117e-01,-6.604175567626953125e-01,-3.496454954147338867e-01,1.162128210067749023e+00,6.880068778991699219e-01,-4.564360529184341431e-02,-3.390709310770034790e-02,2.962358109652996063e-02,3.094295971095561981e-02,-6.105050072073936462e-02,4.585355147719383240e-02,9.432154893875122070e-02,-6.372378766536712646e-02,-1.638062531128525734e-04,3.750816686078906059e-03,-1.375874876976013184e-01,-2.389858365058898926e-01,-5.460116267204284668e-01,-2.348908483982086182e-01,8.313182592391967773e-01,-3.766481876373291016e-01,-1.989852190017700195e-01,2.647689878940582275e-01,7.319592237472534180e-01,-9.492641687393188477e-02,7.133153676986694336e-01,6.395959258079528809e-01,1.774172484874725342e-01,-9.553670138120651245e-02,1.564964093267917633e-02,-2.341015487909317017e-01,-4.204623401165008545e-01,-1.780646443367004395e-01,-2.141750603914260864e-01,-4.036293625831604004e-01,-3.180610239505767822e-01,-3.895142376422882080e-01,-1.971001625061035156e-01,9.905639886856079102e-01,-3.980888426303863525e-01,-5.001246184110641479e-02,-3.714043796062469482e-01,9.391568303108215332e-01,-5.286913365125656128e-02,-1.526538431644439697e-01,-3.399577736854553223e-01,-4.519781470298767090e-01,-4.860720634460449219e-01,2.818631529808044434e-01,-4.347678422927856445e-01,9.900127649307250977e-01,-1.734485179185867310e-01,-5.572753399610519409e-02,1.118223786354064941e+00,-4.481348097324371338e-01,3.294175863265991211e-02,3.582779169082641602e-01,-6.920268386602401733e-02,-3.894475102424621582e-02,-3.587869703769683838e-01,-5.808137729763984680e-02,2.668482065200805664e-01,-2.240162491798400879e-01,3.851204812526702881e-01,-2.941508293151855469e-01,7.737760543823242188e-01,-5.065361857414245605e-01,-1.330992728471755981e-01,1.983584016561508179e-01,-2.112656086683273315e-02,4.039136171340942383e-01,-3.110864460468292236e-01,3.559567928314208984e-01,-5.212239027023315430e-01,-2.389342486858367920e-01,-3.181743323802947998e-01,-4.331290423870086670e-01,1.679880172014236450e-01,-5.682064592838287354e-02,7.179713249206542969e-01,8.983607292175292969e-01,-5.088886022567749023e-01,1.296141743659973145e-01,-3.435900211334228516e-01,-2.533232867717742920e-01,-4.432065039873123169e-02,-6.321992725133895874e-02,-2.041349187493324280e-02,1.340462565422058105e-01,7.319206744432449341e-02,1.118642464280128479e-02,-3.833467885851860046e-02,7.261093705892562866e-02,-1.253965646028518677e-01,6.513600819744169712e-04,4.004236161708831787e-01,2.586693130433559418e-02,-2.965388000011444092e-01,-1.182035729289054871e-01,-4.826956391334533691e-01,-3.552241623401641846e-01,-4.108764529228210449e-01,-6.525473296642303467e-02,5.024883747100830078e-01,8.000197410583496094e-01,-2.100070863962173462e-01,6.860069632530212402e-01,-5.370734930038452148e-01,6.067860722541809082e-01,-3.631218671798706055e-01,3.616682291030883789e-01,-3.841322064399719238e-01,-4.337104260921478271e-01,-2.950856089591979980e-01,5.686759352684020996e-01,-5.715634226799011230e-01,-4.943972826004028320e-01,-7.465232610702514648e-01,6.022955775260925293e-01,5.260653495788574219e-01,9.364240765571594238e-01,-2.541189193725585938e-01,8.359887599945068359e-01,-4.697721302509307861e-01,-3.643952906131744385e-01,-1.451257616281509399e-02,5.434532165527343750e-01,-7.882500439882278442e-02,-3.044530153274536133e-01,-1.332658976316452026e-01,4.419353604316711426e-01,-2.170412093400955200e-01,-2.408717870712280273e-01,-2.043527811765670776e-01,2.079343199729919434e-01,1.643178015947341919e-01,5.148210376501083374e-02,1.204487442970275879e+00,-1.537116467952728271e-01,-8.180354833602905273e-01,5.029903054237365723e-01,8.493616431951522827e-02,-3.592195212841033936e-01,-2.382090538740158081e-01,-4.390325248241424561e-01,5.406610369682312012e-01,-2.971500754356384277e-01,2.968465983867645264e-01,4.110665619373321533e-01,-1.078072935342788696e-01,3.385977447032928467e-01,-3.781838119029998779e-01,-2.848774194717407227e-01,-3.855629563331604004e-01,-1.335800737142562866e-01,-2.365918755531311035e-01,-2.783933877944946289e-01,2.664323449134826660e-01,-1.315095722675323486e-01,7.226319313049316406e-01,8.397510647773742676e-02,2.121760249137878418e-01,-2.391098737716674805e-01,-8.751668035984039307e-02,-3.120852708816528320e-01 2 | -------------------------------------------------------------------------------- /params/p0_5: -------------------------------------------------------------------------------- 1 | -8.265168219804763794e-02,-1.859810054302215576e-01,8.224610984325408936e-02,8.896588534116744995e-02,1.873852163553237915e-01,-1.553912311792373657e-01,1.722185872495174408e-02,8.223642408847808838e-02,5.166446324437856674e-03,-1.175789861008524895e-03,1.933325454592704773e-02,-5.027427896857261658e-02,7.919033616781234741e-02,1.008885130286216736e-01,-1.163976565003395081e-01,-3.217739611864089966e-02,7.595817744731903076e-02,2.392642498016357422e-01,-4.288735985755920410e-02,-2.085151970386505127e-01,1.486529260873794556e-01,-6.825922429561614990e-02,-1.216583326458930969e-02,1.690527610480785370e-02,-9.971801191568374634e-02,5.510491319000720978e-04,-1.425299048423767090e-01,3.383168950676918030e-02,2.249741554260253906e-01,-2.451013624668121338e-01,1.149413287639617920e-01,8.108880370855331421e-02,-4.384817928075790405e-02,1.336934603750705719e-02,2.841528877615928650e-02,-1.349475383758544922e-01,-9.632132202386856079e-02,1.010858342051506042e-01,7.657948415726423264e-03,8.166924118995666504e-02,-5.294331535696983337e-02,4.113602265715599060e-02,4.412509128451347351e-02,3.884073346853256226e-03,3.285198286175727844e-02,2.379614301025867462e-02,4.479605704545974731e-02,1.300799250602722168e-01,1.800353527069091797e-01,2.504981122910976410e-02,-1.217341795563697815e-01,-1.798914372920989990e-02,2.485085092484951019e-02,-9.983761608600616455e-02,4.161925986409187317e-02,2.537427544593811035e-01,2.082680352032184601e-02,1.888944394886493683e-02,2.076639421284198761e-02,-8.357983082532882690e-02,-2.295641228556632996e-02,1.030853241682052612e-01,-7.486297190189361572e-02,2.396252751350402832e-02,-4.127980768680572510e-02,1.867118179798126221e-01,8.559279143810272217e-02,-8.314505219459533691e-02,1.009232597425580025e-03,-1.984038650989532471e-01,-2.801056206226348877e-02,-2.826093882322311401e-02,9.735254198312759399e-02,8.331711590290069580e-02,-1.695230007171630859e-01,3.828560933470726013e-02,3.840766847133636475e-03,-7.219497114419937134e-02,3.845882474706741050e-06,-1.936460584402084351e-01,-9.730110317468643188e-02,-1.038161013275384903e-02,1.286736410111188889e-02,1.606372594833374023e-01,-3.154733031988143921e-02,1.434393376111984253e-01,-1.937018930912017822e-01,-6.883005797863006592e-02,5.912416055798530579e-02,-2.470936924219131470e-01,-1.127994656562805176e-01,4.334192723035812378e-03,4.298726022243499756e-01,-1.582254469394683838e-01,8.528853207826614380e-02,-1.563088297843933105e-01,2.457542717456817627e-01,1.428051292896270752e-01,-1.371279209852218628e-01,5.002948269248008728e-02,1.100819185376167297e-01,-3.741321712732315063e-02,4.756004273076541722e-05,-1.673654466867446899e-02,2.940821461379528046e-02,-1.835146248340606689e-01,-7.231100648641586304e-02,-1.297283023595809937e-01,9.599429368972778320e-02,6.256747990846633911e-02,5.555032566189765930e-02,5.202157795429229736e-02,-1.370010375976562500e-01,5.087334290146827698e-02,-8.057111501693725586e-02,8.089902251958847046e-02,-1.339936703443527222e-01,3.001969493925571442e-02,-9.511327743530273438e-02,-3.497239947319030762e-02,-9.217137098312377930e-02,-1.484307460486888885e-02,-2.980388700962066650e-02,-2.141356095671653748e-02,-1.088085100054740906e-01,-1.027610674500465393e-01,1.737165749073028564e-01,9.535341523587703705e-03,1.299080625176429749e-02,-3.132575005292892456e-02,1.221245825290679932e-01,8.721865713596343994e-02,-1.134521886706352234e-01,7.302144542336463928e-03,-8.555831015110015869e-02,-3.480265662074089050e-02,-2.598524466156959534e-02,-9.579355269670486450e-02,-9.054142981767654419e-02,3.752672672271728516e-02,1.157625913619995117e-01,1.398464664816856384e-02,-2.338131144642829895e-02,4.770610481500625610e-03,4.043098390102386475e-01,1.478888541460037231e-01,2.264244854450225830e-02,-4.653576016426086426e-02,-7.225887477397918701e-02,1.855100840330123901e-01,4.441888630390167236e-01,-7.478813081979751587e-02,-3.420382738113403320e-02,-6.405173242092132568e-02,8.192135393619537354e-02,7.433118671178817749e-02,-9.874015301465988159e-02,-5.929433181881904602e-02,2.698325514793395996e-01,-1.800896972417831421e-01,1.090932916849851608e-02,1.926821470260620117e-02,7.894890732131898403e-04,4.143266752362251282e-02,-1.015020254999399185e-02,-4.198947548866271973e-02,6.739555299282073975e-02,-1.308245658874511719e-01,9.703789651393890381e-02,-4.146768525242805481e-02,-3.592088446021080017e-02,5.218693986535072327e-02,3.468838706612586975e-02,-2.988638356328010559e-02,-7.227706257253885269e-03,-2.236313186585903168e-02,-1.468199044466018677e-01,-3.861004114151000977e-02,6.175418198108673096e-02,3.039561584591865540e-02,-6.462490558624267578e-02,1.961584687232971191e-01,1.488765031099319458e-01,2.236345224082469940e-02,1.113033816218376160e-01,-1.900264769792556763e-01,-2.466460168361663818e-01,-1.147248223423957825e-02,1.928167343139648438e-01,-2.845669910311698914e-02,7.259254902601242065e-02,-9.770595282316207886e-02,-1.004267930984497070e-01,-4.977018758654594421e-02,-9.496065229177474976e-02,1.400337368249893188e-01,-4.274021461606025696e-02,9.610637091100215912e-03,-7.125235628336668015e-03,-1.099994257092475891e-01,-8.344165235757827759e-02,5.360886827111244202e-02,-9.475471079349517822e-02,-1.550467014312744141e-01,2.598809078335762024e-02,5.268737301230430603e-02,2.866851910948753357e-02,-8.454357087612152100e-02,7.103501260280609131e-02,-1.272148340940475464e-01,-8.284052461385726929e-02,-7.648242264986038208e-02,3.189780935645103455e-02,-3.204606473445892334e-02,-5.117890611290931702e-02,-1.189210861921310425e-01,-2.438262570649385452e-03,-7.410910725593566895e-02,-1.131735667586326599e-01,3.409811258316040039e-01,-6.386080384254455566e-02,5.722567811608314514e-02,-2.842461466789245605e-01,1.727529615163803101e-01,1.810180395841598511e-01,-2.168030738830566406e-01,2.060668766498565674e-01,4.578605294227600098e-02,2.359801828861236572e-01,-1.313408021815121174e-03,6.824062019586563110e-02,1.122953593730926514e-01,-7.467390596866607666e-02,4.408333823084831238e-02,1.102363541722297668e-01,-8.838937431573867798e-02,-2.908229529857635498e-01,-2.631873786449432373e-01,5.681064352393150330e-02,9.954715520143508911e-02,-1.011170297861099243e-01,9.165371954441070557e-02,-3.089849278330802917e-02,-1.255103349685668945e-01,-7.013948168605566025e-03,-9.686100482940673828e-02,-4.169902801513671875e-01,-3.237492144107818604e-01,1.461763679981231689e-01,1.831046789884567261e-01,2.672631442546844482e-01,1.309810429811477661e-01,2.924138605594635010e-01,-1.884072870016098022e-01,-5.225873365998268127e-02,-1.280975788831710815e-01,1.675365269184112549e-01,-1.407991349697113037e-01,-1.031751930713653564e-01,5.381229892373085022e-02,-2.916583046317100525e-02,-1.182989478111267090e-01,-9.057635813951492310e-02,-7.454939931631088257e-02,5.885727331042289734e-02,7.121365517377853394e-03,-7.817712426185607910e-02,7.368353754281997681e-02,7.512638717889785767e-02,7.625850290060043335e-02,1.232712417840957642e-01,-1.105808541178703308e-01,-3.175487369298934937e-02,-6.608715653419494629e-02,-1.938425749540328979e-02,-3.111875383183360100e-03,-8.358534425497055054e-02,2.272672057151794434e-01,-4.768903180956840515e-02,-3.574646264314651489e-02,2.160186320543289185e-01,-7.676776964217424393e-03,2.394295483827590942e-01,7.984660565853118896e-02,4.741062223911285400e-02,-1.372571289539337158e-01,1.741084903478622437e-01,-6.615913659334182739e-02,-2.922089397907257080e-02,-8.589532226324081421e-02,-6.899970024824142456e-02,-1.692238152027130127e-01,-3.594909980893135071e-02,-3.210853785276412964e-02,1.573102325201034546e-01,-2.564178593456745148e-02,-8.137237280607223511e-02,-1.706377486698329449e-03,7.731516659259796143e-02,-3.490210324525833130e-02,1.061289981007575989e-01,-1.280215382575988770e-01,1.017562486231327057e-02,-8.566259406507015228e-03,-6.904032081365585327e-02,-1.459426339715719223e-02,-1.102942228317260742e-01,-5.654182657599449158e-02,7.852879166603088379e-02,5.276270583271980286e-02,-2.030484378337860107e-01,-1.352419331669807434e-02,4.935958608984947205e-02,-8.355043828487396240e-02,-2.371403872966766357e-01,-1.520617455244064331e-01,2.103614360094070435e-01,9.150900691747665405e-02,-6.593278143554925919e-03,-6.005041673779487610e-02,-1.093511804938316345e-01,2.863031625747680664e-01,3.314362838864326477e-02,-1.178857907652854919e-01,-2.189150638878345490e-02,-8.112798444926738739e-03,1.006413549184799194e-01,-8.603080175817012787e-03,7.194936275482177734e-02,1.832458376884460449e-01,4.801462218165397644e-02,2.807976491749286652e-02,-7.573740184307098389e-02,-1.008815877139568329e-02,-5.321780219674110413e-02,-1.009700298309326172e-01,-4.113381728529930115e-02,-1.476237028837203979e-01,-1.797756999731063843e-01,2.129449099302291870e-01,2.342788130044937134e-02,3.358739241957664490e-02,6.300410628318786621e-02,1.892063468694686890e-01,8.183602988719940186e-02,-6.300288438796997070e-02,-1.028775870800018311e-01,-2.412457391619682312e-02,-1.820190995931625366e-01,5.393258854746818542e-02,8.377662301063537598e-02,4.982172511518001556e-03,-5.415120348334312439e-02,-2.801420725882053375e-02,-1.012826524674892426e-02,3.004992604255676270e-01,6.259092688560485840e-02,-9.678517282009124756e-02,9.547549486160278320e-02,1.701642572879791260e-01,-8.022721111774444580e-02,-3.876170888543128967e-02,1.152909453958272934e-02,2.457360550761222839e-02,-2.422834485769271851e-01,-7.806924730539321899e-02,1.904415339231491089e-02,9.253454953432083130e-02,6.776220351457595825e-02,-4.124958440661430359e-02,-4.454070329666137695e-02,-1.324218809604644775e-01,-4.174166172742843628e-02,-1.794482916593551636e-01,-7.408845424652099609e-02,-8.542196452617645264e-02,-8.547122776508331299e-02,-2.775986492633819580e-02,2.038846313953399658e-01,1.947173327207565308e-01,2.429074794054031372e-01,-2.291178405284881592e-01,-3.676183894276618958e-02,1.060764417052268982e-01,2.575570717453956604e-02,1.158325672149658203e-01,5.103045329451560974e-02,3.254641592502593994e-01,2.827686965465545654e-01,-1.140359044075012207e-01,4.709728434681892395e-02,1.381222903728485107e-01,1.270963400602340698e-01,-8.410450816154479980e-02,3.618113324046134949e-02,-1.293046325445175171e-01,-9.499585628509521484e-02,2.769136801362037659e-02,4.002107083797454834e-01,-2.546416968107223511e-02,3.417201340198516846e-02,9.545354545116424561e-02,-2.074280194938182831e-02,-2.084277570247650146e-01,9.618656709790229797e-03,-4.257285967469215393e-02,1.843951344490051270e-01,-1.509457379579544067e-01,-1.392073333263397217e-01,-2.010697312653064728e-02,-8.423660695552825928e-02,-3.490177541971206665e-02,1.991614550352096558e-01,-5.833579227328300476e-02,-9.114765375852584839e-02,-1.721881628036499023e-01,-7.861735671758651733e-02,1.238384619355201721e-01,-1.646801829338073730e-02,-1.320058256387710571e-01,-1.148183196783065796e-01,8.682182990014553070e-03,-4.347880780696868896e-01,-1.701174527406692505e-01,-4.277815297245979309e-02,9.621220827102661133e-02,-1.792902946472167969e-01,9.076024591922760010e-02,-3.799049183726310730e-02,4.292711988091468811e-02,-6.958384066820144653e-02,-2.586469948291778564e-01,2.229891484603285789e-03,-9.165138006210327148e-02,9.785591065883636475e-02,7.213961333036422729e-02,-2.708248607814311981e-02,9.920337237417697906e-03,1.197070162743330002e-02,3.250836953520774841e-02,-9.205979853868484497e-02,-7.358378171920776367e-02,-1.308654248714447021e-01,-3.338057175278663635e-02,1.175474822521209717e-01,-3.829231858253479004e-02,3.780446131713688374e-04,-1.957917027175426483e-02,1.712110266089439392e-02,-5.635457858443260193e-02,9.568578004837036133e-02,-3.599809110164642334e-02,1.770749092102050781e-01,-2.603271976113319397e-02,-8.640971034765243530e-02,1.027534008026123047e-01,-1.892623454332351685e-01,-4.318611696362495422e-02,1.221905499696731567e-01,3.892055153846740723e-02,2.234060689806938171e-02,1.611267775297164917e-02,5.740204080939292908e-02,1.098398342728614807e-01,-4.190831631422042847e-02,-2.326439879834651947e-02,-3.369797021150588989e-02,-5.012825503945350647e-02,1.208849698305130005e-01,-4.830509424209594727e-03,-1.611685007810592651e-01,-9.740379452705383301e-02,-5.328498035669326782e-02,1.138463988900184631e-02,-1.069631427526473999e-01,-1.369592398405075073e-01,-4.206693917512893677e-02,2.079378664493560791e-01,-2.486796677112579346e-02,4.042433574795722961e-02,1.303544938564300537e-01,-9.635546803474426270e-02,-8.562345802783966064e-02,-6.230965629220008850e-02,-1.575433462858200073e-01,-9.806769900023937225e-03,-1.097891759127378464e-02,1.476243287324905396e-01,-1.211279928684234619e-01,-5.757650360465049744e-02,2.055789344012737274e-02,-2.629535272717475891e-02,6.984616070985794067e-02,1.780862808227539062e-01,-8.957973867654800415e-02,3.220100328326225281e-02,-1.552205234766006470e-01,2.024738043546676636e-01,8.845158666372299194e-02,7.942794263362884521e-02,3.299925848841667175e-02,7.211741060018539429e-02,6.415635347366333008e-02,5.061233881860971451e-03,-1.085370704531669617e-01,2.124814875423908234e-02,-2.913054637610912323e-02,1.896077692508697510e-01,-3.352468460798263550e-02,-1.064655408263206482e-01,-3.491733670234680176e-01,-5.354060605168342590e-02,9.575701318681240082e-03,1.811033040285110474e-01,1.689890474081039429e-01,-1.363387256860733032e-01,9.202768653631210327e-02,-1.268586963415145874e-01,-6.541382521390914917e-02,4.931904375553131104e-02,3.810741379857063293e-02,-4.326878115534782410e-02,4.181304201483726501e-02,-5.386213585734367371e-02,-9.447700530290603638e-02,6.986661255359649658e-02,-8.449485152959823608e-02,-7.968140393495559692e-02,-1.089121773838996887e-01,-1.188257057219743729e-02,-1.216390132904052734e-01,-7.100947946310043335e-02,5.655607674270868301e-03,-6.517178844660520554e-03,-5.474295467138290405e-02,-1.221506223082542419e-01,2.277313359081745148e-02,-1.136856619268655777e-02,7.020397484302520752e-02,-5.030783824622631073e-03,3.192346543073654175e-02,7.807224988937377930e-02,-2.645745873451232910e-01,-1.524759083986282349e-01,-1.185703948140144348e-01,6.922336667776107788e-02,1.099536269903182983e-01,6.430296227335929871e-03,2.159438841044902802e-02,3.484835326671600342e-01,-1.081170886754989624e-01,-1.280454844236373901e-01,-1.245596483349800110e-01,-9.280488640069961548e-02,1.870161294937133789e-01,3.359391167759895325e-02,5.753872171044349670e-02,2.541888505220413208e-02,-6.652799993753433228e-02,5.216009542346000671e-02,1.599437743425369263e-01,4.179715178906917572e-03,1.388041675090789795e-01,1.787474006414413452e-01,-1.590794138610363007e-02,-5.874543450772762299e-03,-4.643373936414718628e-02,1.616654172539710999e-02,9.518450498580932617e-02,1.826130300760269165e-01,1.251886636018753052e-01,2.312467247247695923e-01,-1.893269866704940796e-01,2.206796854734420776e-01,1.488957554101943970e-01,3.818268701434135437e-02,-6.756354868412017822e-02,1.708437651395797729e-01,-1.237255707383155823e-02,3.654526174068450928e-02,-5.274756997823715210e-02,-1.339868754148483276e-01,8.893764764070510864e-02,6.733532249927520752e-02,2.956703305244445801e-02,1.002011820673942566e-01,1.979194879531860352e-01,4.945368506014347076e-03,-3.872797638177871704e-02,-9.181589633226394653e-02,-8.094440400600433350e-02,-2.078181952238082886e-01,7.478697597980499268e-02,-9.197542816400527954e-02,1.699529290199279785e-01,1.053455397486686707e-01,-7.572857663035392761e-03,-2.921806275844573975e-02,1.914377212524414062e-01,-7.096596062183380127e-02,3.940848261117935181e-02,9.856895357370376587e-02,2.856685547158122063e-03,7.634868472814559937e-02,3.092249035835266113e-01,-6.026377435773611069e-03,-3.096254467964172363e-01,-8.069925010204315186e-02,1.416354626417160034e-01,-2.585694007575511932e-02,-3.462518379092216492e-02,1.815878413617610931e-02,3.961240290664136410e-04,4.012427479028701782e-02,-2.035894617438316345e-02,3.738045692443847656e-02,7.389037311077117920e-02,1.167127713561058044e-01,-2.759303338825702667e-02,-2.014800533652305603e-02,-8.836715668439865112e-02,3.414460718631744385e-01,-2.652776055037975311e-02,-5.117494985461235046e-02,1.536268293857574463e-01,-7.507934421300888062e-02,-2.433981187641620636e-02,9.475699812173843384e-02,-1.465694047510623932e-02,1.639814488589763641e-02,7.898190617561340332e-02,1.134190931916236877e-01,1.119074970483779907e-01,1.217752695083618164e-02,9.051811695098876953e-02,1.122789364308118820e-02,-3.507157266139984131e-01,-8.957438170909881592e-02,8.469098806381225586e-02,7.267127931118011475e-02,-4.545129463076591492e-02,1.400547027587890625e-01,-6.396289914846420288e-02,-1.222905702888965607e-04,2.438423186540603638e-01,4.010311141610145569e-02,9.173046797513961792e-03,4.550345614552497864e-02,-1.333844661712646484e-01,-1.499616168439388275e-02,1.116875112056732178e-01,-1.345576439052820206e-02,7.418165355920791626e-02,9.309778362512588501e-02,1.886974833905696869e-02,-8.685603737831115723e-02,-4.983277991414070129e-02,6.491983681917190552e-02,4.636649042367935181e-02,-8.825641125440597534e-03,2.538932561874389648e-01,-5.120236426591873169e-02,6.495005637407302856e-02,5.229318514466285706e-02,-2.199652493000030518e-01,6.866717338562011719e-02,2.674880027770996094e-01,2.057675272226333618e-01,5.866770818829536438e-02,-2.737880218774080276e-03,1.067750230431556702e-01,1.485216021537780762e-01,4.798592999577522278e-02,-1.046055331826210022e-01,-7.753326743841171265e-02,2.080782651901245117e-01,2.112644761800765991e-01,5.476473644375801086e-02,3.095515444874763489e-02,7.412941753864288330e-02,-9.256587177515029907e-02,6.004165858030319214e-03,-1.942909508943557739e-02,-2.340109273791313171e-02,-1.016104072332382202e-01,1.989982873201370239e-01,-4.496360197663307190e-02,-2.578200995922088623e-01,8.957036584615707397e-02,-1.680435240268707275e-01,1.054831594228744507e-02,2.441255152225494385e-01,2.212421409785747528e-02,1.469801273196935654e-02,-1.712189167737960815e-01,7.446467131376266479e-02,-1.042611151933670044e-01,-1.192035898566246033e-01,1.387273371219635010e-01,-1.811662018299102783e-01,1.119128242135047913e-01,-2.861873246729373932e-02,1.297762244939804077e-01,-1.070682778954505920e-01,-1.906576566398143768e-02,-8.872389793395996094e-02,-1.136213392019271851e-01,-5.249950289726257324e-02,2.338593266904354095e-02,-5.079736933112144470e-03,-1.941651552915573120e-01,-1.066467687487602234e-01,-2.354049980640411377e-01,1.130660921335220337e-01,-1.456415504217147827e-01,3.794373869895935059e-01,-1.309123486280441284e-01,6.488142162561416626e-02,-7.319299131631851196e-02,-1.523712426424026489e-01,-1.648181676864624023e-01,-1.767931878566741943e-01,1.479634344577789307e-01,-7.062868028879165649e-02,-4.125627130270004272e-02,-1.162649318575859070e-02,4.469048231840133667e-02,-4.049250483512878418e-02,-1.811268478631973267e-01,-1.178366467356681824e-01,-1.527034640312194824e-01,4.242810606956481934e-02,1.411678194999694824e-01,-9.881261736154556274e-02,-7.018220424652099609e-02,-2.302545122802257538e-02,-4.439471662044525146e-02,9.754680842161178589e-02,2.416741661727428436e-02,-5.831579118967056274e-02,1.501826941967010498e-01,-7.756408303976058960e-02,1.517011970281600952e-01,1.377818286418914795e-01,2.577828243374824524e-02,1.752481311559677124e-01,3.438957408070564270e-02,-3.515300527215003967e-02,1.769208759069442749e-01,1.671653091907501221e-01,1.117147058248519897e-01,-9.963756427168846130e-03,-4.311084374785423279e-02,-1.197183430194854736e-01,-2.101485133171081543e-01,-7.633721828460693359e-02,-5.877403542399406433e-02,-2.168783918023109436e-02,1.337672621011734009e-01,1.069905832409858704e-01,-1.764451712369918823e-01,-1.469416469335556030e-01,-2.056059688329696655e-01,4.280324093997478485e-03,-8.540701121091842651e-03,1.044187578372657299e-03,7.712742313742637634e-03,1.438238471746444702e-01,-8.918936550617218018e-02,-9.257479012012481689e-02,-9.720110148191452026e-02,-8.135649561882019043e-02,8.314622193574905396e-02,6.725290440954267979e-04,-9.289222210645675659e-02,7.618170976638793945e-02,-1.140280291438102722e-01,-2.291276119649410248e-02,9.102624654769897461e-02,-8.706641197204589844e-02,1.004767045378684998e-01,-5.312501266598701477e-02,2.583306096494197845e-02,1.575095206499099731e-01,6.375326961278915405e-02,1.367204040288925171e-01,-5.735144764184951782e-02,-1.894441805779933929e-02,1.535833925008773804e-01,-1.622999310493469238e-01,-6.436274200677871704e-02,2.334026396274566650e-01,-2.292292378842830658e-02,9.441543370485305786e-02,1.888571828603744507e-01,-4.818148165941238403e-02,7.011316716670989990e-02,9.402494877576828003e-02,-7.990574836730957031e-02,2.802780270576477051e-01,4.973940551280975342e-02,-2.391746938228607178e-01,-2.761138975620269775e-02,1.197418197989463806e-01,1.811091005802154541e-01,-6.186704337596893311e-02,7.069073617458343506e-02,3.758518025279045105e-02,3.341507166624069214e-02,-2.779445648193359375e-01,1.281015872955322266e-01,3.007565997540950775e-02,8.249383419752120972e-02,2.172068208456039429e-01,-9.281983971595764160e-02,2.413369417190551758e-01,-1.461793575435876846e-02,-4.387211427092552185e-02,-8.328910171985626221e-02,1.469462066888809204e-01,1.419580727815628052e-01,-1.231277212500572205e-01,-6.266247481107711792e-02,2.904119789600372314e-01,-2.145600914955139160e-01,1.524863205850124359e-02,9.170094132423400879e-02,5.888506397604942322e-02,1.114905104041099548e-01,2.688923291862010956e-02,1.040606126189231873e-01,1.424240320920944214e-01,-9.112407267093658447e-02,7.712065428495407104e-02,-2.209163010120391846e-01,1.432438045740127563e-01,-1.556364297866821289e-01,-9.073398075997829437e-03,9.714433550834655762e-02,-1.475824415683746338e-01,-2.079253047704696655e-01,2.645136043429374695e-02,-1.215694621205329895e-01,-1.730195730924606323e-01,2.984591387212276459e-02,7.041373848915100098e-02,-8.061026781797409058e-02,6.676650792360305786e-02,-1.603801399469375610e-01,-2.114222496747970581e-01,-4.633817821741104126e-02,9.540880098938941956e-03,1.881653219461441040e-01,-7.090088725090026855e-02,2.261898666620254517e-01,2.190915644168853760e-01,-4.034234583377838135e-01,-1.144491229206323624e-02,2.381938993930816650e-01,3.981015831232070923e-02,-1.401709206402301788e-02,1.948834061622619629e-01,-3.857852146029472351e-02,3.025376796722412109e-01,-5.054508894681930542e-02,-1.858643442392349243e-01,1.623287610709667206e-02,1.254787445068359375e-01,-1.183766648173332214e-01,2.391431853175163269e-02,1.504105478525161743e-01,5.958168953657150269e-02,-1.026743948459625244e-01,-8.889336884021759033e-02,2.072971910238265991e-01,-7.774256914854049683e-02,8.056592196226119995e-02,-3.208481073379516602e-01,5.258491635322570801e-02,1.990310661494731903e-02,-7.006158679723739624e-02,2.638560533523559570e-01,-6.474071741104125977e-02,-3.407255113124847412e-01,1.259779836982488632e-02,7.761945948004722595e-03,-9.031449444591999054e-03,-2.434476017951965332e-01,1.943609714508056641e-01,1.253084242343902588e-01,-2.271609604358673096e-01,1.464661210775375366e-01,-1.003301143646240234e-02,7.818670012056827545e-03,-7.363694161176681519e-02,-8.381115645170211792e-02,1.657661646604537964e-01,-7.117237895727157593e-02,1.321397423744201660e-01,-1.250240951776504517e-01,5.827952176332473755e-02,2.206386066973209381e-03,-5.024252459406852722e-03,1.107664080336689949e-03,6.208430975675582886e-02,5.752332508563995361e-02,-3.660164773464202881e-02,-2.559626102447509766e-02,-2.337014302611351013e-02,-1.070178002119064331e-01,-3.935528919100761414e-02,8.008614927530288696e-02,-1.748141646385192871e-01,-5.299128964543342590e-02,-1.300039738416671753e-01,5.679593980312347412e-02,-4.785694926977157593e-02,5.066848173737525940e-02,5.171949043869972229e-02,1.542076170444488525e-01,7.811433076858520508e-02,-9.860377013683319092e-02,5.808051303029060364e-02,-5.346528440713882446e-02,1.186612471938133240e-01,-1.740578934550285339e-02,6.413757801055908203e-02,5.284047126770019531e-02,-1.384729705750942230e-02,1.212881878018379211e-02,-8.402595669031143188e-02,1.136952824890613556e-02,-1.552389562129974365e-01,-9.657452814280986786e-03,4.694939404726028442e-02,-1.278267353773117065e-01,-1.241710595786571503e-02,5.140536278486251831e-02,2.424975484609603882e-02,1.140386760234832764e-01,1.031606346368789673e-01,-2.521729171276092529e-01,9.513852745294570923e-02,-1.551429647952318192e-02,2.077782601118087769e-01,-2.634485363960266113e-01,6.545282900333404541e-02,-6.809503585100173950e-02,5.709816142916679382e-02,1.489763986319303513e-02,-1.796054840087890625e-01,-1.106297820806503296e-01,4.031796380877494812e-02,-7.303222268819808960e-02,-2.349418960511684418e-02,6.062499713152647018e-03,-5.006613209843635559e-03,2.268096506595611572e-01,2.455086708068847656e-01,-9.265473484992980957e-02,-1.103186607360839844e-02,-6.655322760343551636e-02,-4.863229766488075256e-02,4.533664789050817490e-03,-1.961730271577835083e-01,-6.123520433902740479e-02,7.366423960775136948e-03,2.544763386249542236e-01,-8.788056671619415283e-02,8.163747936487197876e-02,1.614039838314056396e-01,3.896885737776756287e-02,-5.429112538695335388e-02,1.366475671529769897e-01,-3.508026897907257080e-02,1.809129267930984497e-01,1.159007549285888672e-01,-1.302743852138519287e-01,-8.966523408889770508e-02,-5.628348514437675476e-02,-3.821500018239021301e-02,-2.985796928405761719e-01,5.767212063074111938e-02,9.665572643280029297e-02,-4.347710311412811279e-02,1.046453975141048431e-02,3.055045306682586670e-01,2.686023414134979248e-01,2.186843454837799072e-01,-8.786271512508392334e-02,-2.007284164428710938e-01,2.123519480228424072e-01,-4.917088150978088379e-02,-9.050016850233078003e-02,1.307319551706314087e-01,1.138923540711402893e-01,1.014729589223861694e-01,3.019923567771911621e-01,-1.828881800174713135e-01,-7.439384609460830688e-02,-4.218081012368202209e-02,-4.339410737156867981e-02,2.005758732557296753e-01,-1.415155641734600067e-02,7.761501520872116089e-02,-9.068888425827026367e-02,3.542153537273406982e-02,9.395769238471984863e-02,2.133748680353164673e-01,7.654070854187011719e-02,1.216385886073112488e-01,1.013012230396270752e-01,5.574582517147064209e-02,-7.128448225557804108e-03,-3.552910685539245605e-02,-3.472826629877090454e-02,3.641272708773612976e-02,1.608719080686569214e-01,1.886359304189682007e-01,1.178601086139678955e-01,-7.753938436508178711e-02,2.088247537612915039e-01,-1.353921890258789062e-01,1.070681028068065643e-02 2 | -------------------------------------------------------------------------------- /params/p1_5: -------------------------------------------------------------------------------- 1 | 1.528664817986187790e-15,-3.151099085807800293e-01,-3.414820134639739990e-01,-1.280979043440111115e-15,3.583360612392425537e-01,-4.464740840526163022e-16,-5.821996331214904785e-01,2.863576710224151611e-01,-1.549621969461441040e-01,4.268997311592102051e-01,-1.169035807251930237e-01,-5.460969805717468262e-01,5.002889037132263184e-02,-2.891358137130737305e-01,-3.755139112472534180e-01,-9.422395378351211548e-03,1.818677484989166260e-01,-1.392501592636108398e-01,-3.262667860326473601e-07,-4.267009906470775604e-03,-3.189174830913543701e-02,-1.405687928199768066e-01,7.500215619802474976e-02,-2.197480201721191406e-01,-2.096529453992843628e-01,-4.729127287864685059e-01,-3.477938175201416016e-01,8.364321291446685791e-02,5.979488492012023926e-01,6.491733789443969727e-01,4.534139037132263184e-01,-4.016296981354706844e-16,-2.860956270338017166e-15,7.105861306190490723e-01,3.358988165855407715e-01,1.846106588005073479e-16,4.666871726512908936e-01,4.450480511463544842e-16,2.152146100997924805e-01,2.329545617103576660e-01,-4.258721470832824707e-01,-1.573507487773895264e-01,-5.227917060256004333e-02,-8.273020386695861816e-02,-6.402418762445449829e-02,3.421358466148376465e-01,3.132010996341705322e-01,6.398680061101913452e-02,6.696571111679077148e-01,6.165293976664543152e-02,6.165776085254037753e-07,1.446911250241100788e-03,1.414994448423385620e-01,-1.624157130718231201e-01,-2.076539024710655212e-02,-2.568058371543884277e-01,-6.433860659599304199e-01,2.151916772127151489e-01,7.589659094810485840e-02,4.792267084121704102e-01,-5.496801733970642090e-01,-1.020079404115676880e-01,7.892284542322158813e-02,-3.469893761833290832e-16,2.592128076972440324e-16,-9.664450287818908691e-01,5.574627518653869629e-01,3.482331381872536165e-16,-1.834488958120346069e-01,3.001692329771536065e-16,2.740060389041900635e-01,-5.636947229504585266e-02,1.069253459572792053e-01,8.589489758014678955e-02,1.623823940753936768e-01,-7.129570096731185913e-02,2.053587734699249268e-01,3.479852080345153809e-01,4.506329298019409180e-01,4.877096787095069885e-02,1.050645232200622559e+00,1.504025459289550781e-01,3.106067651970079169e-07,-4.227289464324712753e-03,-3.020977675914764404e-01,3.215860724449157715e-01,-5.105000138282775879e-01,-3.700201213359832764e-01,7.338968515396118164e-01,-1.903793066740036011e-01,-7.102323770523071289e-01,-4.025638103485107422e-01,-2.778619825839996338e-01,-2.174366116523742676e-01,-1.928245425224304199e-01,8.293737661419262703e-17,-2.746948346143019554e-14,-1.204359054565429688e+00,1.357445269823074341e-01,1.425959584972321314e-16,3.497568964958190918e-01,3.997609846351500877e-16,-1.916873306035995483e-01,-2.237330228090286255e-01,2.792822718620300293e-01,3.349236845970153809e-01,-1.159446537494659424e-01,7.229106426239013672e-01,-3.158909976482391357e-01,6.569528579711914062e-02,2.236938029527664185e-01,6.970664858818054199e-02,2.499151974916458130e-01,-7.137620449066162109e-02,-3.114170112894498743e-07,3.718257648870348930e-03,-2.724593877792358398e-01,3.562646210193634033e-01,-5.826471373438835144e-02,-8.549366891384124756e-02,4.888490214943885803e-02,2.227096110582351685e-01,-4.086266756057739258e-01,-5.997372418642044067e-02,-3.185430765151977539e-01,5.824024081230163574e-01,6.087368354201316833e-03,-6.047788773616102724e-16,-2.080162315998539818e-14,-6.716717481613159180e-01,-1.161390990018844604e-01,-6.024221140649935885e-16,1.652299165725708008e-01,-4.423319605916447650e-16,1.789461076259613037e-01,-1.034521311521530151e-01,-1.305380314588546753e-01,-1.873906254768371582e-01,-2.396380007266998291e-01,-3.245354592800140381e-01,-8.551558852195739746e-01,7.402985356748104095e-03,-1.243588700890541077e-01,-1.644820570945739746e-01,-8.853060007095336914e-02,-1.640899032354354858e-01,-5.433830096990277525e-07,-3.795230295509099960e-03,-1.186159178614616394e-01,8.799119293689727783e-02,-2.097544968128204346e-01,-2.544136643409729004e-01,4.224875569343566895e-01,-6.389073133468627930e-01,-3.484309911727905273e-01,-2.637417614459991455e-01,-4.837096631526947021e-01,1.026471972465515137e+00,2.803656160831451416e-01,-3.873180441702048140e-16,2.370908408022651820e-14,-2.761925160884857178e-01,-9.715092182159423828e-01,-1.220040528599321359e-15,-2.593441009521484375e-01,2.243844540324825077e-16,-8.495198190212249756e-02,-2.254232913255691528e-01,2.492062896490097046e-01,1.751432754099369049e-02,-2.876679599285125732e-02,1.149406060576438904e-01,6.352781504392623901e-02,9.417198598384857178e-02,2.655900418758392334e-01,1.055714935064315796e-01,7.980083115398883820e-03,1.565582156181335449e+00,1.819742806219437625e-06,-2.830663695931434631e-03,-1.809181272983551025e-02,-3.116644918918609619e-01,2.001683562994003296e-01,-3.533470332622528076e-01,3.128839135169982910e-01,-4.228303730487823486e-01,6.756783127784729004e-01,-2.144341766834259033e-01,-2.266704291105270386e-01,1.675773859024047852e-01,2.971096336841583252e-02,9.470060225572388656e-16,-1.535724096447723536e-14,-1.041725277900695801e-01,-1.181798614561557770e-02,1.768489253279017701e-16,-2.757500410079956055e-01,3.760092014122942434e-16,-3.136342763900756836e-01,5.475028157234191895e-01,1.813516914844512939e-01,2.158303409814834595e-01,3.024420142173767090e-01,1.004267096519470215e+00,1.815653294324874878e-01,-1.545704007148742676e+00,1.220730617642402649e-01,1.619797945022583008e-01,-1.497052162885665894e-01,-1.642856746912002563e-01,-9.721590004119207151e-07,-7.132721948437392712e-04,-2.173965871334075928e-01,6.439525634050369263e-02,-9.220505505800247192e-02,7.796684503555297852e-01,-3.206774890422821045e-01,-3.329661190509796143e-01,5.818304419517517090e-01,1.223926991224288940e-01,-1.955668926239013672e-01,-6.930505484342575073e-02,-1.425635665655136108e-01,-5.139932508001839213e-16,4.191744472142530653e-14,5.747036933898925781e-01,7.448210567235946655e-02,7.964666684899947106e-16,4.445399940013885498e-01,2.158044867328292758e-16,2.520801723003387451e-01,3.138160109519958496e-01,-3.319557905197143555e-01,-5.317538976669311523e-01,-2.008007168769836426e-01,-4.724530875682830811e-01,-2.399578690528869629e-02,-7.891989946365356445e-01,-5.429184436798095703e-02,3.163301646709442139e-01,-8.415388315916061401e-02,-6.146262884140014648e-01,-3.131597168248845264e-07,-6.239165086299180984e-04,6.088388338685035706e-02,7.564039230346679688e-01,-3.242088854312896729e-02,4.284470081329345703e-01,4.125038385391235352e-01,1.121507063508033752e-01,-5.901747941970825195e-01,-6.216648593544960022e-02,-1.612332612276077271e-01,-2.755596935749053955e-01,7.866235375404357910e-01,-1.729032341013544256e-16,-2.280136122230144724e-14,-6.019901484251022339e-02,6.423226594924926758e-01,7.302868593553831530e-17,2.056769579648971558e-01,-3.985785266407830844e-16,-5.587126612663269043e-01,-1.538837999105453491e-01,1.196174323558807373e-01,-1.786740496754646301e-02,3.782208263874053955e-01,-2.121295407414436340e-02,2.634084224700927734e-01,-2.033033668994903564e-01,-6.456936895847320557e-02,-1.815213561058044434e-01,1.420140713453292847e-01,-1.110714673995971680e-01,-7.217415713967056945e-07,1.046079560182988644e-03,-2.068857550621032715e-01,-2.278205007314682007e-01,-1.715730726718902588e-01,-4.621476680040359497e-02,-9.857393503189086914e-01,-1.222132984548807144e-02,-5.576141476631164551e-01,-5.091565847396850586e-01,6.519224047660827637e-01,1.788288913667201996e-02,-3.415672779083251953e-01,-2.238029659141924305e-16,-1.084892165524337787e-14,2.867366075515747070e-01,-4.759551286697387695e-01,-1.674013712971335202e-16,-4.855170380324125290e-03,2.902889906941262185e-16,3.809521496295928955e-01,2.976414263248443604e-01,-1.449481397867202759e-01,-9.957893937826156616e-02,2.114025056362152100e-01,-1.741199642419815063e-01,6.282227039337158203e-01,3.366117775440216064e-01,-2.154352813959121704e-01,-5.647744983434677124e-02,-2.521461844444274902e-01,-1.955337822437286377e-01,2.520390296467667213e-07,5.625648773275315762e-04,-1.580673642456531525e-02,-5.012531876564025879e-01,1.234532613307237625e-02,4.600980281829833984e-01,6.013251543045043945e-01,-1.079286217689514160e+00,4.705204814672470093e-02,2.888962253928184509e-02,1.550229340791702271e-01,-6.002568602561950684e-01,1.734546720981597900e-01,-7.519345564889776617e-18,1.589655870045530994e-14,-5.341234207153320312e-01,6.375739574432373047e-01,8.662761064478195511e-16,-7.417455911636352539e-01,4.885588630973870111e-16,5.473665595054626465e-01,3.764558732509613037e-01,2.271213531494140625e-01,9.243935942649841309e-01,5.328470468521118164e-01,-2.045164704322814941e-01,-2.577649950981140137e-01,3.193295598030090332e-01,3.827894926071166992e-01,5.774922370910644531e-01,-3.508867621421813965e-01,6.143670082092285156e-01,2.865623969228181522e-07,1.281125587411224842e-03,1.014067307114601135e-01,-3.062843680381774902e-01,-3.331719338893890381e-01,-8.127521276473999023e-01,-3.558987975120544434e-01,4.500685632228851318e-01,-1.359424740076065063e-01,-8.146038055419921875e-01,6.101435422897338867e-01,-3.311775922775268555e-01,2.631736993789672852e-01,-3.999411379551192367e-16,-1.133671437703997337e-14,5.107186436653137207e-01,2.286716401576995850e-01,-7.724400495455344476e-16,-4.778128862380981445e-01,-5.007747193231293272e-16,-3.745549619197845459e-01,-1.458151787519454956e-01,1.321880519390106201e-01,-2.634966075420379639e-01,3.849786520004272461e-01,2.425140142440795898e-01,-6.637052297592163086e-01,-3.279480040073394775e-01,1.636499315500259399e-01,7.025329768657684326e-02,-4.309663549065589905e-02,-1.231899857521057129e-01,4.729224656330188736e-08,6.923196371644735336e-03,-4.360396862030029297e-01,3.271495103836059570e-01,1.167782783508300781e+00,-1.667493432760238647e-01,-4.689612090587615967e-01,3.303562104701995850e-01,-1.964025497436523438e-01,3.046476244926452637e-01,3.591769142076373100e-03,-8.217766135931015015e-02,-3.656718507409095764e-02,-4.673333821094967193e-16,-1.293271741436037158e-16,-4.510521292686462402e-01,1.770442724227905273e-01,-1.313939107121025671e-15,1.323350071907043457e-01,1.441172826100600582e-16,-8.313900977373123169e-02,-1.012681365013122559e+00,2.365027815103530884e-01,-2.508311569690704346e-01,-1.171305477619171143e-01,-6.058512926101684570e-01,-1.565069705247879028e-01,-3.845610022544860840e-01,8.029869943857192993e-02,4.931872487068176270e-01,-7.094828784465789795e-02,3.609090447425842285e-01,-1.914094980293157278e-07,6.285469862632453442e-04,1.027733683586120605e-01,9.564781188964843750e-02,-3.614383935928344727e-02,6.966111660003662109e-01,-8.670644760131835938e-01,3.260537385940551758e-01,4.766888916492462158e-01,-6.020690798759460449e-01,-1.244582682847976685e-01,1.266354769468307495e-01,-1.671210080385208130e-01,4.056884153209172747e-16,-1.225534617229273246e-14,-5.882418155670166016e-01,-1.795885562896728516e-01,-1.000910564045792098e-15,-5.487745404243469238e-01,2.148983335328345855e-16,1.764230877161026001e-01,5.486377701163291931e-02,1.886515617370605469e-01,-7.246582955121994019e-02,-6.721629202365875244e-02,2.974592149257659912e-01,2.695752866566181183e-02,-3.652356564998626709e-02,-3.504354059696197510e-01,7.052130252122879028e-02,-1.349301040172576904e-01,-1.334241498261690140e-02,4.665028541239735205e-07,4.455946851521730423e-03,-5.801155567169189453e-01,3.485116660594940186e-01,-7.843379676342010498e-02,-3.135373592376708984e-01,-5.754459500312805176e-01,3.732830584049224854e-01,-6.562107056379318237e-02,4.652684330940246582e-01,-8.495340496301651001e-02,3.937367349863052368e-02,-4.162953794002532959e-01,-8.634897386282673268e-17,-2.913521949198492889e-14,5.697036981582641602e-01,-2.841293513774871826e-01,1.361254155796414074e-15,6.125614419579505920e-02,3.042853895843358790e-16,-1.660949140787124634e-01,8.999642729759216309e-02,-4.767215251922607422e-01,7.264138758182525635e-02,-5.332794785499572754e-02,-2.299548387527465820e-01,1.717558145523071289e+00,3.791801631450653076e-01,-3.305566310882568359e-01,-1.059499382972717285e-01,1.377836614847183228e-01,8.063585311174392700e-02,-9.863107379715074785e-07,-2.141383010894060135e-03,-3.862530291080474854e-01,-2.564146220684051514e-01,-9.287448972463607788e-02,-6.199955195188522339e-02,4.852737858891487122e-02,2.619081735610961914e-02,-1.758621186017990112e-01,1.770250648260116577e-01,-4.384285509586334229e-01,4.640717208385467529e-01,2.471206523478031158e-02,1.270736959269928531e-16,-1.776441373288386444e-14,8.989624977111816406e-01,-1.568319797515869141e-01,6.155828355433980766e-16,3.540297150611877441e-01,-1.647948259253054237e-16,3.365677595138549805e-01,-5.844730138778686523e-02,-8.737399578094482422e-01,-3.441183865070343018e-01,-2.624039053916931152e-01,1.471491605043411255e-01,-1.705098152160644531e-01,-2.034958899021148682e-01,-8.115177750587463379e-01,2.065307050943374634e-01,-2.407024055719375610e-01,-6.215092912316322327e-02,-1.206504975925781764e-06,1.836003735661506653e-03,-2.417704612016677856e-01,-8.018482476472854614e-02,-7.268646359443664551e-02,-1.459910571575164795e-01,1.957897841930389404e-01,1.376929283142089844e+00,2.372177504003047943e-02,5.595940724015235901e-02,7.373133897781372070e-01,-4.768551886081695557e-02,-6.462835669517517090e-01,-5.685318493893162014e-16,2.404946596414655330e-14,1.374364793300628662e-01,6.168876886367797852e-01,-8.602845659558570543e-16,1.391363620758056641e+00,3.027247578487994323e-16,4.096039012074470520e-02,3.081212341785430908e-01,6.904565542936325073e-02,3.023402392864227295e-01,-2.142659872770309448e-01,-1.482530534267425537e-01,-2.196541428565979004e-01,-2.526008151471614838e-02,-4.255117774009704590e-01,-7.309524714946746826e-02,1.096277981996536255e-01,2.924483418464660645e-01,-3.015149445673159789e-07,-8.415752672590315342e-04,1.464742720127105713e-01,-2.128716260194778442e-01,7.273992896080017090e-02,1.504665613174438477e-01,-4.202370643615722656e-01,2.107555866241455078e-01,1.167912855744361877e-01,-7.640302926301956177e-02,-4.763810895383358002e-03,6.196847558021545410e-01,-6.587132811546325684e-02,-3.975869157573443157e-16,1.347838000944853211e-15,6.426326036453247070e-01,-4.019574224948883057e-01,-1.895985843639817064e-16,1.978625655174255371e-01,2.856785903622210618e-16,-2.471643388271331787e-01,6.388335227966308594e-01,3.422179520130157471e-01,-2.379317432641983032e-01,-8.203569799661636353e-02,5.401304364204406738e-02,7.373123429715633392e-03,8.885024487972259521e-02,1.114852875471115112e-01,5.273798108100891113e-01,6.453824043273925781e-01,2.130772620439529419e-01,-3.825208523267065175e-07,-3.956906963139772415e-03,4.824734479188919067e-02,-2.410502582788467407e-01,-1.992627680301666260e-01,-5.124289914965629578e-02,2.215618938207626343e-01,-9.025087356567382812e-01,-8.328744769096374512e-01,1.322961330413818359e+00,-1.869525313377380371e-01,-2.601515650749206543e-01,-3.199290633201599121e-01,3.753885826879467327e-18,6.775840739187133366e-14,-6.943590641021728516e-01,3.136868476867675781e-01,-9.344665468060862033e-16,-1.126122176647186279e-01,3.211702767038011105e-16,-2.179774194955825806e-01,-3.098349869251251221e-01,-8.603109419345855713e-02,-5.635589957237243652e-01,1.728377640247344971e-01,-2.574232816696166992e-01,3.444332778453826904e-01,2.990804016590118408e-01,-1.555610001087188721e-01,2.590471804141998291e-01,5.122426748275756836e-01,9.100218117237091064e-02,-1.385459285074830404e-07,2.426333026960492134e-03,1.801657527685165405e-01,-4.784317687153816223e-02,6.712657213211059570e-01,-9.202058911323547363e-01,4.895968437194824219e-01,-9.917922317981719971e-02,3.712889179587364197e-02,-2.415697574615478516e-01,-6.683101505041122437e-02,-3.726898133754730225e-01,1.006422340869903564e-01,-6.301076506437964121e-16,2.969601798350537253e-15,3.110902607440948486e-01,-2.813883125782012939e-01,3.446010079698679732e-16,1.551269590854644775e-01,2.610560043300285933e-16,-1.914415061473846436e-01,-7.845985889434814453e-01,-1.190184727311134338e-01,-7.505109310150146484e-01,2.853903360664844513e-02,1.177102550864219666e-01,-4.429574012756347656e-01,1.464381515979766846e-01,-1.868938952684402466e-01,1.227081418037414551e-01,6.765332221984863281e-01,3.465916812419891357e-01,-7.667297836633224506e-07,-1.056774286553263664e-03,-4.359042048454284668e-01,7.215999960899353027e-01,3.503915667533874512e-02,-4.120926856994628906e-01,1.277328729629516602e+00,5.123610496520996094e-01,4.825888667255640030e-03,7.423478364944458008e-01,-4.930855333805084229e-01,-6.912583857774734497e-02,-9.506788849830627441e-02,3.997867397307025387e-16,5.777760133393941566e-14,-1.180400371551513672e+00,2.759517729282379150e-01,1.511329918143714110e-16,-3.978986740112304688e-01,-1.363793057646470034e-16,-1.060793995857238770e-01,2.542594075202941895e-01,-4.956252872943878174e-02,9.754253551363945007e-03,1.353166848421096802e-01,-2.043442130088806152e-01,4.147833883762359619e-01,1.800367492251098156e-03,2.027703225612640381e-01,7.135334610939025879e-02,-5.271714329719543457e-01,-1.331153959035873413e-01,4.327793874381313799e-07,-1.528926659375429153e-04,9.818019866943359375e-01,-6.155100464820861816e-01,-2.510292232036590576e-01,-1.486295908689498901e-01,-6.843445897102355957e-01,-6.636651605367660522e-02,2.779614627361297607e-01,-5.586010217666625977e-01,1.898306608200073242e-01,-5.514267086982727051e-01,-1.244614571332931519e-01,4.707092848603379367e-16,4.993190106175604548e-14,-8.183929324150085449e-01,4.103983342647552490e-01,4.138074378785865570e-16,1.889164559543132782e-02,3.625774823303275825e-16,-7.229157686233520508e-01,-7.195869088172912598e-02,1.343505501747131348e+00,7.770303636789321899e-02,4.567100200802087784e-03,-9.562243223190307617e-01,6.440120935440063477e-02,-3.484839806333184242e-03,1.104912310838699341e-01,3.008073270320892334e-01,5.103711485862731934e-01,4.008814692497253418e-02,8.206381352238167892e-08,-4.126283165533095598e-04,3.777844905853271484e-01,-2.875929772853851318e-01,1.445441097021102905e-01,-1.463926434516906738e-01,4.100008010864257812e-01,-7.627218961715698242e-01,3.424043059349060059e-01,2.176242172718048096e-01,-8.193456381559371948e-02,-2.258183509111404419e-01,4.370226860046386719e-01,-1.226943238314513068e-16,1.098977645810818998e-14,5.752686262130737305e-01,-2.444647699594497681e-01,1.280991537176083116e-15,1.534135490655899048e-01,-1.228345607237810969e-16,-1.391938477754592896e-01,3.157601058483123779e-01,-4.623259902000427246e-01,2.486534714698791504e-01,8.970890194177627563e-03,2.081716060638427734e-01,-4.753212034702301025e-01,6.444090977311134338e-03,1.951838098466396332e-02,-2.742137014865875244e-01,-6.568325161933898926e-01,4.478350281715393066e-01,-1.594116838532499969e-07,-2.385026309639215469e-03,-3.885375559329986572e-01,4.703623801469802856e-02,-1.065767556428909302e-01,-4.275185167789459229e-01,1.559466868638992310e-01,3.753110766410827637e-01,-3.286207318305969238e-01,2.641695365309715271e-02,-1.218275055289268494e-01,-5.918238759040832520e-01,3.465672582387924194e-02,-6.883024140101926761e-16,-5.270427377943726066e-14,-4.562801420688629150e-01,4.100747108459472656e-01,2.730923954500714046e-16,-2.025049328804016113e-01,4.241614362769251158e-16,-4.727285504341125488e-01,3.697803318500518799e-01,3.002029061317443848e-01,-1.611722111701965332e-01,1.588362902402877808e-01,-2.653464674949645996e-01,-2.010618448257446289e-01,3.009307086467742920e-01,-6.401620507240295410e-01,8.662899583578109741e-02,-5.909902453422546387e-01,-6.725494563579559326e-02,2.873993025787058286e-07,-2.053534262813627720e-04,5.183951854705810547e-01,2.190250903367996216e-01,-2.337135523557662964e-01,3.047687411308288574e-01,-5.353264138102531433e-02,8.997781872749328613e-01,-1.217605248093605042e-01,6.775192022323608398e-01,2.857616245746612549e-01,1.847052276134490967e-01,1.537518501281738281e-01,-2.109082789556747969e-16,7.938389393535513761e-15,-7.017568498849868774e-02,-1.068985462188720703e-01,-4.025541866209232252e-18,-3.328591352328658104e-03,-4.877602169072446127e-16,-4.288431107997894287e-01,4.736515283584594727e-01,7.389330267906188965e-01,1.254099905490875244e-01,4.767135158181190491e-02,-3.960133194923400879e-01,-1.426222454756498337e-02,-8.267500996589660645e-01,3.136219978332519531e-01,-1.219455227255821228e-01,-1.568261831998825073e-01,1.730643510818481445e-01,-9.638380333854001947e-07,-8.671303658047690988e-05,1.867152303457260132e-01,-3.111107088625431061e-02,-4.775009583681821823e-03,-3.954557180404663086e-01,1.023067161440849304e-01,-2.632537186145782471e-01,4.004069417715072632e-02,4.725511968135833740e-01,2.836861908435821533e-01,7.598487734794616699e-01,-7.707050442695617676e-02,2.651647229291427890e-16,-2.871718162746061953e-14,4.442917108535766602e-01,-1.315931081771850586e+00,-9.058395860459694283e-16,-4.364604130387306213e-02,-7.292412368866671218e-17,4.099589288234710693e-01,7.996945828199386597e-02,1.781545281410217285e-01,-8.943840861320495605e-01,-7.858793251216411591e-03,-2.761963903903961182e-01,-2.111581116914749146e-01,-7.783672958612442017e-02,-1.057213306427001953e+00,-5.698603391647338867e-02,-2.274175584316253662e-01,2.273859530687332153e-01,-1.226611061611038167e-06,-3.732848679646849632e-03,2.904013395309448242e-01,2.931295037269592285e-01,5.439916625618934631e-03,4.235355928540229797e-02,9.721581339836120605e-01,6.745295971632003784e-02,-2.944342792034149170e-01,1.060007095336914062e+00,-2.887296378612518311e-01,-6.581822782754898071e-02,-1.780730187892913818e-01,1.130578285138861445e-15,-4.388315408211836133e-14,-1.270884722471237183e-01,-4.688416719436645508e-01,1.334122155248641936e-16,5.935404896736145020e-01,4.735484334204159446e-16,-6.286215037107467651e-02,-5.234312638640403748e-02,5.263453125953674316e-01,-4.538686871528625488e-01,-4.222151637077331543e-02,-5.847464315593242645e-03,1.694332659244537354e-01,-1.022723391652107239e-01,-4.998347163200378418e-01,-1.103329956531524658e-01,3.096014857292175293e-01,6.042849421501159668e-01,-8.293999087527481606e-08,-1.990383025258779526e-03,3.130609393119812012e-01,-1.449992656707763672e-01,1.114972680807113647e-02,-4.521250128746032715e-01,-5.323040112853050232e-02,2.789328992366790771e-01,-4.166805148124694824e-01,-2.171472758054733276e-01,-2.886143326759338379e-01,1.560573279857635498e-01,5.297541022300720215e-01,9.392233779587479472e-16,1.894893340544448468e-14,-5.590092539787292480e-01,1.225611940026283264e-01,-1.271657763492932761e-15,-2.372039109468460083e-01,-7.112908220242253831e-17,-2.137934267520904541e-01,-2.717268168926239014e-01,1.141189709305763245e-01,-3.727163076400756836e-01,-3.605794906616210938e-02,-2.301890775561332703e-02,1.160025410354137421e-02,1.008084863424301147e-01,3.491421043872833252e-01,1.107639819383621216e-02,-2.894690632820129395e-02,-4.836756587028503418e-01,2.075732652428996516e-07,2.261808142066001892e-03,-6.285103559494018555e-01,-1.479613631963729858e-01,4.935892522335052490e-01,1.437456905841827393e-01,-3.168620765209197998e-01,-4.401810169219970703e-01,3.827150464057922363e-01,-1.550021674484014511e-02,7.660924922674894333e-03,-2.705015838146209717e-01,1.106975972652435303e-02,-7.468494372035283223e-16,-9.127415281375526879e-15,4.935794975608587265e-03,-4.266810119152069092e-01,3.849198821382910762e-16,-1.480282694101333618e-01,-3.920189579134579732e-17,1.839558482170104980e-01,-6.388098746538162231e-02,-1.462390571832656860e-01,-5.286996960639953613e-01,6.056773066520690918e-01,-2.374505102634429932e-01,2.879111468791961670e-01,3.201626241207122803e-02,4.839170873165130615e-01,-4.304428026080131531e-02,-1.827083379030227661e-01,1.676067858934402466e-01,4.074394155395566486e-07,-2.813339466229081154e-03,-3.555957600474357605e-02,-1.817402243614196777e-01,4.329607784748077393e-01,1.114076375961303711e-01,3.985015451908111572e-01,-1.733091771602630615e-01,3.920896947383880615e-01,1.007408052682876587e-01,-3.220607340335845947e-01,2.013072967529296875e-01,-3.685576915740966797e-01,-3.823267172400516374e-16,-1.075894642745423707e-14,-1.967975497245788574e-01,-3.498291671276092529e-01,1.150717552251016504e-15,-1.875167191028594971e-01,1.926084232978212568e-16,3.660694062709808350e-01,2.653474211692810059e-01,4.436860084533691406e-01,-4.646895527839660645e-01,4.840544983744621277e-02,4.233872294425964355e-01,-3.520224392414093018e-01,6.120222061872482300e-02,5.821473598480224609e-01,-1.135356537997722626e-02,1.325718611478805542e-01,-4.719108641147613525e-01,1.149090962826448958e-06,1.294574118219316006e-03,-3.344001471996307373e-01,2.644743025302886963e-01,4.638284444808959961e-01,-2.381326556205749512e-01,-1.372829377651214600e-01,-7.439099252223968506e-02,3.272935450077056885e-01,9.726075828075408936e-02,3.192521929740905762e-01,5.347374677658081055e-01,-1.705019474029541016e-01,1.441807836113245291e-16,4.959245769034156814e-15,-3.237390220165252686e-01,7.687140256166458130e-02,-1.424848542443319689e-15,3.496149480342864990e-01,-3.247870279792381678e-16,-6.049860715866088867e-01,5.403010174632072449e-02,-6.140465140342712402e-01,-2.140797525644302368e-01,-4.139757901430130005e-02,1.254517305642366409e-02,-1.483018100261688232e-01,8.149529993534088135e-02,1.234223991632461548e-01,9.084952995181083679e-03,3.364161550998687744e-01,-2.168215066194534302e-01,-1.011010454021743499e-06,2.255895407870411873e-03,-6.974947452545166016e-01,-1.083884621039032936e-03,1.860973089933395386e-01,-1.759679429233074188e-02,-1.662160456180572510e-01,-3.803409934043884277e-01,2.417354285717010498e-01,-2.556509375572204590e-01,5.642852932214736938e-02,-7.122277021408081055e-01,-8.664814382791519165e-02,1.901367546879536067e-16,-5.059628490646211202e-15,-1.264685690402984619e-01,1.000377759337425232e-01,1.224362699501143638e-16,-1.409255564212799072e-01,-7.494479357623575031e-17,-5.971188545227050781e-01,-7.019470632076263428e-02,4.886633157730102539e-01,-1.530314087867736816e-01,7.351647363975644112e-04,-4.249905049800872803e-01,4.558247327804565430e-01,5.637579131871461868e-03,-2.810690924525260925e-02,1.680453419685363770e-01,-2.510088682174682617e-01,-1.538548916578292847e-01,-1.006632601274759509e-06,-6.459485157392919064e-04,-3.942316472530364990e-01,8.793576061725616455e-02,-3.221126794815063477e-01,-1.842795163393020630e-01,-2.842873334884643555e-01,4.324031770229339600e-01,-6.528857946395874023e-01,1.717253762762993574e-04,4.650814235210418701e-01,4.689919650554656982e-01,5.804780498147010803e-02,-4.908909565594149135e-16 2 | -------------------------------------------------------------------------------- /params/p1_3: -------------------------------------------------------------------------------- 1 | 4.239684641361236572e-01,-2.977651953697204590e-01,2.894605696201324463e-01,-2.417318224906921387e-01,-2.719675198142499327e-15,-5.251629352569580078e-01,-1.900811195373535156e-01,-2.626554854214191437e-02,-2.877609059214591980e-02,2.582124471664428711e-01,-6.739051640033721924e-02,1.412678658962249756e-01,9.516041725873947144e-02,-2.273605316877365112e-01,-2.419152110815048218e-01,-4.178215563297271729e-02,3.389700874686241150e-02,-1.647569239139556885e-01,2.860279381275177002e-02,8.283248543739318848e-02,2.114200778305530548e-02,-2.269142419099807739e-01,-2.184667885303497314e-01,3.021547794342041016e-01,7.402571290731430054e-02,-1.053322553634643555e-01,-8.130078762769699097e-02,1.355118602514266968e-01,9.056948125362396240e-02,-1.514234095811843872e-01,5.188653990626335144e-02,-2.191147357225418091e-01,-3.250912297517061234e-03,2.352000027894973755e-01,4.416087642312049866e-03,1.454739421606063843e-01,2.721636291173629846e-15,-4.439354836940765381e-01,1.476683914661407471e-01,1.650740951299667358e-01,-5.797939002513885498e-02,3.514981642365455627e-02,-2.150378422811627388e-03,4.768444597721099854e-02,-7.530736923217773438e-01,6.435748934745788574e-02,-9.501056373119354248e-02,-1.740776598453521729e-01,2.676716819405555725e-02,2.498501241207122803e-01,-2.130840867757797241e-01,-7.923766970634460449e-02,-9.453848749399185181e-02,-2.021724432706832886e-01,2.323163151741027832e-01,5.693317055702209473e-01,2.661218941211700439e-01,-3.082890436053276062e-02,-2.306545376777648926e-01,-1.471602171659469604e-01,1.456446647644042969e-01,8.920595049858093262e-02,1.325841695070266724e-01,-1.367478258907794952e-02,-6.291292607784271240e-02,1.827707886695861816e-01,9.155832976102828979e-02,6.244214996695518494e-02,-3.901648054388962700e-15,2.377399802207946777e-01,2.287141978740692139e-01,1.161410436034202576e-01,-1.835644096136093140e-01,2.240789979696273804e-01,1.008460968732833862e-01,-3.420755863189697266e-01,1.028743907809257507e-01,6.337379664182662964e-02,3.662832975387573242e-01,-7.311820983886718750e-02,-2.122583054006099701e-02,4.649720713496208191e-02,-1.271228492259979248e-01,-2.727308273315429688e-01,-3.649985194206237793e-01,-2.196204215288162231e-01,2.204854190349578857e-01,2.231303043663501740e-02,2.333872467279434204e-01,-8.059425652027130127e-02,-4.015444964170455933e-02,1.612700819969177246e-01,-1.718951612710952759e-01,-2.635345160961151123e-01,2.418500334024429321e-01,7.589457184076309204e-02,-1.220113635063171387e-01,4.745206236839294434e-02,-9.552797675132751465e-01,4.983858764171600342e-02,6.318711203004206620e-16,-7.350437045097351074e-01,2.428445033729076385e-02,-1.274051517248153687e-01,-1.790945827960968018e-01,-4.138361290097236633e-02,5.757858231663703918e-02,3.406027704477310181e-02,9.259469807147979736e-02,-3.984896466135978699e-02,-1.986145041882991791e-02,1.271511316299438477e-01,-7.082340866327285767e-02,6.133906841278076172e-01,-9.900920093059539795e-02,-2.652456462383270264e-01,1.855246573686599731e-01,5.422899965196847916e-03,-1.703379601240158081e-01,-1.094820722937583923e-01,2.195091694593429565e-01,8.877692371606826782e-02,4.875473305583000183e-02,4.109220951795578003e-02,-1.892397254705429077e-01,-5.909242480993270874e-02,2.299396991729736328e-01,-8.583387732505798340e-02,1.707447320222854614e-02,1.052925884723663330e-01,2.079780697822570801e-01,1.396895200014114380e-01,-3.795740983894915765e-15,7.026785612106323242e-02,2.409478724002838135e-01,2.262759208679199219e-01,-1.225294992327690125e-01,-8.720561861991882324e-02,-1.647927314043045044e-01,-1.318299025297164917e-01,-8.991346508264541626e-02,1.869675666093826294e-01,-6.744591891765594482e-02,3.029736280441284180e-01,-7.662830501794815063e-02,4.310951232910156250e-01,8.402920514345169067e-02,1.355306208133697510e-01,-6.985843181610107422e-02,1.687974631786346436e-01,1.340749263763427734e-01,1.180828362703323364e-01,-4.252940788865089417e-02,1.228205040097236633e-01,-1.153872683644294739e-01,-1.449038237333297729e-01,1.401087194681167603e-01,7.307175546884536743e-02,7.860647141933441162e-02,-4.470710456371307373e-01,-1.541256904602050781e-01,1.677868068218231201e-01,-1.313334256410598755e-01,9.698354452848434448e-02,-1.078738598217477383e-15,-3.547188043594360352e-01,-3.119088243693113327e-03,2.256553620100021362e-02,-1.302566230297088623e-01,-1.540261656045913696e-01,5.645921081304550171e-02,-3.102234303951263428e-01,-2.813811898231506348e-01,8.809912949800491333e-02,6.679490208625793457e-02,1.424940824508666992e-01,-5.967200174927711487e-02,-6.052236557006835938e-01,1.353636234998703003e-01,-3.114523831754922867e-03,-1.895818114280700684e-02,-1.876199245452880859e-02,-1.673073917627334595e-01,-1.313611632212996483e-03,5.552229657769203186e-02,6.612935662269592285e-02,-1.361332982778549194e-01,1.040797159075737000e-01,1.885124891996383667e-01,3.035224676132202148e-01,5.016608536243438721e-02,9.374691247940063477e-01,-3.148196637630462646e-01,3.435637950897216797e-01,-7.541025280952453613e-01,-1.352714449167251587e-01,-2.159541203969176683e-15,-2.383206635713577271e-01,3.593185544013977051e-02,4.394278302788734436e-02,-2.172387838363647461e-01,-1.615560948848724365e-01,3.891333937644958496e-02,-2.037607282400131226e-01,-1.415342092514038086e-01,-3.548242151737213135e-02,-3.664775788784027100e-01,3.328396938741207123e-03,-3.849358111619949341e-02,8.650563657283782959e-02,2.785615436732769012e-02,-1.206035465002059937e-01,1.779363453388214111e-01,-3.799166370299644768e-05,-5.501762405037879944e-02,7.531212270259857178e-02,1.338934004306793213e-01,1.877797096967697144e-01,2.251574024558067322e-02,8.264615386724472046e-02,-8.204027265310287476e-02,-1.052161306142807007e-02,6.869217008352279663e-02,7.034081220626831055e-01,-1.365895271301269531e-01,-3.332780301570892334e-02,1.610267311334609985e-01,-5.208325386047363281e-01,-2.050478088713660225e-15,3.198121786117553711e-01,-3.521512821316719055e-02,-1.780323684215545654e-01,3.163278996944427490e-01,-4.963326454162597656e-02,1.360048949718475342e-01,-2.215155586600303650e-02,-4.942713677883148193e-02,6.315987557172775269e-02,1.194618120789527893e-01,1.381608247756958008e-01,4.005956649780273438e-02,-1.938537657260894775e-01,-3.079684674739837646e-01,-2.196067273616790771e-01,-5.136719718575477600e-02,2.350117713212966919e-01,-2.464650198817253113e-02,2.343503572046756744e-02,1.007977798581123352e-01,5.566136911511421204e-02,5.318628996610641479e-02,-4.511232972145080566e-01,2.466402798891067505e-01,4.120393097400665283e-02,3.380638733506202698e-02,-2.814391627907752991e-02,3.890733069056295790e-09,7.563557002931986517e-10,-2.763825002194408853e-10,-2.636058660243634222e-08,2.208412675685144863e-15,-2.362637552266733110e-08,-2.833621337572367338e-09,7.742861463100325636e-09,5.236754141435540078e-09,1.513323510948794137e-08,-3.716422947164232937e-09,-1.519749126543956663e-08,-1.023605999961318958e-08,1.432086715880132033e-08,-1.704680840930450358e-08,1.841087104992311652e-08,3.853553920407648548e-09,1.328436205483285448e-08,-6.285848730414045349e-09,-3.764079892221161572e-08,4.424661970148235923e-09,6.877697078522260199e-09,-2.158047518463490633e-09,-9.357935759624069760e-09,1.119001158400578788e-08,-7.877082097706988861e-09,-1.671768856681410398e-08,2.191914150184715027e-10,8.456595423922408372e-09,2.129231191361213860e-08,1.436094160256473629e-10,1.849738140435874811e-08,3.139728307723999023e-01,1.712508946657180786e-01,1.790937632322311401e-01,-2.054453045129776001e-01,-2.250155465177461648e-16,2.294014096260070801e-01,-3.114520013332366943e-02,-1.811654306948184967e-02,-2.291484326124191284e-01,3.564988076686859131e-02,-9.248086065053939819e-02,-1.889916211366653442e-01,2.910854518413543701e-01,-1.907256394624710083e-01,1.478663384914398193e-01,1.637247577309608459e-02,1.490664482116699219e-01,-2.692777104675769806e-02,6.743071228265762329e-02,-2.925915122032165527e-01,-1.203092336654663086e-01,1.512940675020217896e-01,-4.051088094711303711e-01,-1.013575047254562378e-01,2.292983047664165497e-02,3.086454272270202637e-01,2.982848882675170898e-01,-2.640145123004913330e-01,-2.748898267745971680e-01,-4.247703403234481812e-02,-1.057953909039497375e-01,-1.647469699382781982e-01,-2.689206898212432861e-01,-8.910729736089706421e-02,-8.957694470882415771e-02,1.559996753931045532e-01,-4.357957408569063107e-15,3.472659736871719360e-02,-3.250353634357452393e-01,-1.933966726064682007e-01,-3.528578877449035645e-01,-8.588783442974090576e-02,1.964047849178314209e-01,-1.161889061331748962e-01,-5.069429427385330200e-02,1.379094123840332031e-01,-3.786586821079254150e-01,1.542324274778366089e-01,3.945400714874267578e-01,5.229860916733741760e-02,6.610701680183410645e-01,1.149904251098632812e+00,3.556584715843200684e-01,-2.278933860361576080e-02,-1.285365372896194458e-01,5.511932820081710815e-02,-4.742738306522369385e-01,-7.091930508613586426e-02,9.351941198110580444e-02,2.223380375653505325e-03,1.111819292418658733e-03,1.098932996392250061e-01,1.410969197750091553e-01,-1.127036474645137787e-02,-1.397114694118499756e-01,3.245077133178710938e-01,1.033438444137573242e-01,-2.139504700899124146e-01,5.815152233443893204e-16,-2.823801338672637939e-01,-1.090406477451324463e-01,1.700208038091659546e-01,-2.156608998775482178e-01,-1.014732345938682556e-01,-1.152611300349235535e-01,-1.725006848573684692e-01,-2.108586132526397705e-01,2.615769207477569580e-01,7.044807821512222290e-02,-2.863230407238006592e-01,1.231815814971923828e-01,-2.797313779592514038e-02,-2.866327390074729919e-02,7.649628072977066040e-02,-1.004841104149818420e-01,-9.775803238153457642e-02,-5.067281126976013184e-01,4.157219827175140381e-01,-1.288780663162469864e-02,1.071830466389656067e-01,9.520788490772247314e-02,-3.612043857574462891e-01,2.060694098472595215e-01,9.771078824996948242e-02,-2.191770374774932861e-01,1.024869978427886963e-01,-1.114445179700851440e-02,3.195033073425292969e-01,-2.030962333083152771e-02,1.985814794898033142e-02,1.881484216066349816e-15,4.678743779659271240e-01,1.018241792917251587e-01,7.763534039258956909e-02,-2.214483022689819336e-01,5.008596777915954590e-01,-7.202227413654327393e-02,6.816140376031398773e-03,1.050680726766586304e-01,-2.010755091905593872e-01,1.102384477853775024e-01,2.510720789432525635e-01,1.610526889562606812e-01,-1.817097514867782593e-01,-1.861070655286312103e-02,1.447841376066207886e-01,-7.001839578151702881e-02,3.678827285766601562e-01,-6.544135976582765579e-03,-1.436986625194549561e-01,-9.218541532754898071e-02,2.439143806695938110e-01,3.623934090137481689e-01,-2.566214799880981445e-01,-2.224064320325851440e-01,5.736007541418075562e-02,9.747503697872161865e-02,-9.440673515200614929e-03,-9.248591214418411255e-02,-8.442682027816772461e-02,3.474336564540863037e-01,3.097628355026245117e-01,-3.511752012504230219e-15,1.949837505817413330e-01,7.666456699371337891e-02,2.601375058293342590e-02,7.790539413690567017e-03,1.052676290273666382e-01,-1.378019005060195923e-01,-1.300936043262481689e-01,1.589853018522262573e-01,-1.701353043317794800e-01,-2.021728157997131348e-01,-2.008241973817348480e-02,-7.790955156087875366e-02,-9.168234467506408691e-02,2.117440849542617798e-01,-5.688916444778442383e-01,1.947409957647323608e-01,-3.655242547392845154e-02,1.163899749517440796e-01,-9.047072380781173706e-02,1.222764626145362854e-01,-1.976628750562667847e-01,-2.173806130886077881e-01,-5.049471557140350342e-02,-2.055646032094955444e-01,1.925466805696487427e-01,-1.429238915443420410e-01,-5.519793555140495300e-02,5.007560253143310547e-01,1.475436240434646606e-01,7.837996631860733032e-02,2.072530239820480347e-01,2.290084651250588570e-15,-2.459945231676101685e-01,4.478848576545715332e-01,2.458230964839458466e-02,4.496289044618606567e-02,-3.676412701606750488e-01,-2.063885144889354706e-02,3.057073354721069336e-01,-7.608339935541152954e-02,-1.362982541322708130e-01,-7.635546475648880005e-02,3.021478652954101562e-01,4.708088468760251999e-03,-8.615604043006896973e-02,-5.309141054749488831e-02,2.547380924224853516e-01,9.862437099218368530e-02,1.468140482902526855e-01,5.786153674125671387e-01,1.642813086509704590e-01,-1.052369251847267151e-01,1.868273317813873291e-01,-1.737497895956039429e-01,-1.393621414899826050e-01,2.561506927013397217e-01,1.430947780609130859e-01,4.447675049304962158e-01,1.068991124629974365e-01,5.645645316690206528e-03,-1.762058585882186890e-01,1.082961410284042358e-01,-3.276888728141784668e-01,-1.877132160783357220e-15,-4.991714656352996826e-02,1.698617786169052124e-01,-1.936388164758682251e-01,6.069588661193847656e-01,1.485989093780517578e-01,-7.304249703884124756e-02,-3.939021527767181396e-01,6.746786832809448242e-02,2.100829966366291046e-03,9.851854294538497925e-02,-8.471673727035522461e-02,1.373710334300994873e-01,-5.473557114601135254e-02,8.807905763387680054e-02,-2.163398265838623047e-01,-7.304764986038208008e-01,-4.502706974744796753e-02,5.802926048636436462e-02,-6.146271526813507080e-02,-2.582370042800903320e-01,-3.113958537578582764e-01,-1.995212435722351074e-01,-2.663227617740631104e-01,-1.673704758286476135e-02,1.255974322557449341e-01,-2.037360370159149170e-01,2.192808836698532104e-01,-2.299139797687530518e-01,1.954461336135864258e-01,-6.990844607353210449e-01,-4.335399270057678223e-01,3.488114711078151714e-15,-3.034826815128326416e-01,-1.164874881505966187e-01,1.959263682365417480e-01,-2.752690613269805908e-01,-2.890120446681976318e-01,-5.164244771003723145e-02,-3.253943845629692078e-02,-9.949941933155059814e-02,-1.611576378345489502e-01,6.994131803512573242e-01,-1.394222080707550049e-01,-6.915023922920227051e-02,3.827106952667236328e-01,3.608315065503120422e-02,-9.932681173086166382e-02,1.540878415107727051e-01,-7.395979017019271851e-02,-1.272415518760681152e-01,1.465715747326612473e-02,5.720455665141344070e-03,1.436600387096405029e-01,-6.458859890699386597e-02,2.519149184226989746e-01,-1.193676516413688660e-01,6.417011376470327377e-03,1.023257076740264893e-01,-1.075740084052085876e-01,-1.660479754209518433e-01,-2.954238094389438629e-02,2.507206201553344727e-01,9.971266239881515503e-02,-4.376303189294525591e-16,4.013846218585968018e-01,1.010281443595886230e+00,7.635885477066040039e-02,-2.794012427330017090e-02,-6.230701506137847900e-02,1.372999548912048340e-01,2.545659244060516357e-01,-7.736872136592864990e-02,-9.622620418667793274e-03,-9.018064290285110474e-02,1.397251933813095093e-01,2.956742644309997559e-01,5.304178595542907715e-02,8.775908499956130981e-02,-7.663290947675704956e-02,1.223869994282722473e-02,-4.680043458938598633e-01,7.115447521209716797e-01,-1.961575895547866821e-01,-3.073451817035675049e-01,2.991016507148742676e-01,1.547409296035766602e-01,2.641502022743225098e-01,-2.599408328533172607e-01,-1.235618907958269119e-02,-2.613448202610015869e-01,-2.284999378025531769e-02,3.797060549259185791e-01,-5.512110590934753418e-01,6.482915580272674561e-02,-4.119474887847900391e-01,3.593454269497538267e-15,-5.814750865101814270e-02,-1.563943326473236084e-01,-3.306324779987335205e-01,3.703425228595733643e-01,1.662107184529304504e-03,7.434414327144622803e-02,-4.266421869397163391e-02,-6.338884681463241577e-02,5.009924247860908508e-02,7.776532322168350220e-02,-5.908767580986022949e-01,-1.365324854850769043e-02,1.717065833508968353e-02,-1.060539335012435913e-01,-3.323011100292205811e-01,1.109972298145294189e-01,-1.755983680486679077e-01,-8.470156788825988770e-02,-9.489991515874862671e-02,-3.266895422711968422e-03,1.042933091521263123e-01,-6.694905459880828857e-02,-1.665398627519607544e-01,-1.763573735952377319e-01,4.627946615219116211e-01,-3.821184337139129639e-01,-2.076940238475799561e-02,-3.942518830299377441e-01,-8.405615575611591339e-03,2.033792883157730103e-01,-2.548339962959289551e-01,-1.719563703803323254e-15,2.664420306682586670e-01,1.361707784235477448e-02,-1.462834477424621582e-01,1.927005499601364136e-01,-3.825872018933296204e-02,-2.083029001951217651e-01,-5.297861695289611816e-01,-1.102114468812942505e-01,4.743018001317977905e-02,-5.501936003565788269e-02,-3.503820672631263733e-02,9.940245747566223145e-02,1.048366352915763855e-01,4.567646421492099762e-03,-5.887793377041816711e-02,-5.881174281239509583e-02,-2.680747210979461670e-01,-3.348020613193511963e-01,9.590151906013488770e-02,-1.300531327724456787e-01,-2.371597886085510254e-01,1.604150980710983276e-01,4.665264189243316650e-01,1.073033288121223450e-01,-1.967998892068862915e-01,-3.264788389205932617e-01,2.157844230532646179e-02,-8.632603287696838379e-02,3.259264528751373291e-01,1.944551169872283936e-01,-2.542299032211303711e-01,-1.945753899730453922e-15,4.793038591742515564e-02,4.124020040035247803e-02,4.253843724727630615e-01,2.677824161946773529e-02,9.585905075073242188e-02,2.035596817731857300e-01,-2.105299085378646851e-01,1.284888535737991333e-01,-8.767373859882354736e-03,-9.383068233728408813e-02,-2.576077580451965332e-01,-2.589859068393707275e-01,-5.733935534954071045e-02,-4.358087182044982910e-01,-3.104841709136962891e-01,-5.153661221265792847e-02,2.006925642490386963e-04,7.772878557443618774e-02,-8.161248266696929932e-02,2.485065013170242310e-01,-3.539183437824249268e-01,-2.857119143009185791e-01,-2.985677421092987061e-01,-2.209681868553161621e-01,8.316389322280883789e-01,-1.929523199796676636e-01,-3.526543080806732178e-02,2.122937738895416260e-01,-2.928039804100990295e-02,-7.461192011833190918e-01,9.678646177053451538e-02,-1.672040073264673479e-15,-8.994666337966918945e-01,-2.075903862714767456e-01,-6.770260632038116455e-02,-4.080325663089752197e-01,-6.699042022228240967e-02,2.647015638649463654e-02,-1.247823052108287811e-02,-6.358613818883895874e-02,-1.278341412544250488e-01,2.862202823162078857e-01,-1.104136630892753601e-01,-5.748160183429718018e-02,-4.065122306346893311e-01,-2.890493161976337433e-02,-2.120939344167709351e-01,3.542307615280151367e-01,-1.523857265710830688e-01,-4.190823733806610107e-01,-6.366694718599319458e-02,2.481458187103271484e-01,2.041934244334697723e-02,5.909303203225135803e-02,3.320688903331756592e-01,-4.220793955028057098e-03,-1.081972047686576843e-01,1.801725924015045166e-01,1.907361745834350586e-01,-1.512126326560974121e-01,-1.268660575151443481e-01,-8.484756350517272949e-01,-2.112639844417572021e-01,6.965938077726282086e-16,-4.788945615291595459e-01,-1.060854569077491760e-01,-2.172285616397857666e-01,1.585276238620281219e-02,-1.503927111625671387e-01,-5.940036103129386902e-02,1.191966533660888672e-01,2.635693550109863281e-01,-1.114834472537040710e-01,1.700813174247741699e-01,2.474460192024707794e-02,-3.217061236500740051e-02,-5.333995819091796875e-01,-1.081094369292259216e-01,-2.383378297090530396e-01,2.740713395178318024e-02,-5.580686777830123901e-02,1.342309638857841492e-02,-9.142191708087921143e-02,-2.579993009567260742e-02,-1.937269866466522217e-01,6.593415141105651855e-02,-2.626661956310272217e-01,-2.689227163791656494e-01,6.567433476448059082e-02,1.831401288509368896e-01,4.215561449527740479e-01,1.831983625888824463e-01,2.573560774326324463e-01,3.835155665874481201e-01,9.436140768229961395e-03,-6.085035475828446731e-18,-3.562510013580322266e-01,-1.572179645299911499e-01,-8.129324764013290405e-02,-1.727158874273300171e-01,1.615010388195514679e-02,2.991985529661178589e-02,-1.916013956069946289e-01,-1.933638155460357666e-01,9.672382473945617676e-02,4.152704179286956787e-01,-1.325291842222213745e-01,1.017916053533554077e-01,-2.688556909561157227e-02,-9.762143716216087341e-03,1.045324355363845825e-01,-2.852669954299926758e-01,-2.138083577156066895e-01,-2.338292896747589111e-01,3.190424144268035889e-01,8.437854051589965820e-02,-3.270308673381805420e-02,-3.324953094124794006e-02,-1.108108907938003540e-01,2.580856382846832275e-01,-4.012828692793846130e-02,-6.209085881710052490e-02,-1.343304514884948730e-01,-8.627524971961975098e-02,-7.042087614536285400e-02,-5.095632746815681458e-02,2.664753198623657227e-01,-2.331633523137543323e-15,5.123386979103088379e-01,-1.464781761169433594e-01,-5.904068425297737122e-02,-4.328573495149612427e-02,3.864251077175140381e-01,9.147833287715911865e-02,-4.175637289881706238e-02,-3.601201474666595459e-01,2.281616255640983582e-02,5.309941992163658142e-02,5.282220244407653809e-02,8.816052228212356567e-02,-1.342677175998687744e-01,-2.956456504762172699e-02,-1.619507223367691040e-01,-1.484524011611938477e-01,3.435747623443603516e-01,1.165218800306320190e-01,5.553159862756729126e-02,1.319281011819839478e-01,3.169673383235931396e-01,-1.588615477085113525e-01,2.151543945074081421e-01,-3.037734031677246094e-01,-1.583500355482101440e-01,-5.480456352233886719e-02,-9.241120517253875732e-02,-2.459595650434494019e-01,-4.698784053325653076e-01,-9.787163138389587402e-02,9.342023134231567383e-01,-2.891484820064719845e-15,1.609691232442855835e-02,7.458242028951644897e-02,-1.481945067644119263e-01,3.311172723770141602e-01,2.318416088819503784e-01,-9.641043841838836670e-03,-2.065784484148025513e-01,-2.526346743106842041e-01,1.294603645801544189e-01,-6.064534187316894531e-03,-4.773183166980743408e-01,1.197456289082765579e-02,2.911982685327529907e-02,-4.097621515393257141e-02,-1.962936967611312866e-01,1.259153187274932861e-01,-1.820064634084701538e-01,3.007659614086151123e-01,-1.105033680796623230e-01,1.781390607357025146e-01,-3.401813283562660217e-02,-6.745378021150827408e-03,-1.949769556522369385e-01,-2.125574052333831787e-01,-5.016273856163024902e-01,-4.761473238468170166e-01,6.663578003644943237e-02,-2.065617591142654419e-01,-3.102728724479675293e-01,-3.434758186340332031e-01,-2.189316004514694214e-01,2.043269414816052502e-15,2.631410062313079834e-01,-1.659260094165802002e-01,2.134717702865600586e-01,-9.311284869909286499e-02,-7.074632495641708374e-02,-7.275635004043579102e-02,4.686878249049186707e-02,1.386367976665496826e-01,-2.554259300231933594e-01,-1.555349826812744141e-01,-1.939952671527862549e-01,6.033025309443473816e-02,-4.769780337810516357e-01,-1.888687610626220703e-01,-1.310671865940093994e-01,-1.272160857915878296e-01,-5.814517661929130554e-02,-2.361219823360443115e-01,6.832534074783325195e-02,3.838848695158958435e-02,1.799928247928619385e-01,-5.761854816228151321e-03,1.088605523109436035e-01,-3.870333731174468994e-01,-2.080835998058319092e-01,-9.594610333442687988e-02,2.821689844131469727e-01,-1.576749533414840698e-01,7.585676014423370361e-02,-7.793248295783996582e-01,-4.507154226303100586e-02,-2.255249838959604231e-16,-8.605526089668273926e-01,-3.005805611610412598e-01,-1.394530981779098511e-01,-1.657508462667465210e-01,-6.274908781051635742e-02,1.180758848786354065e-01,1.893604360520839691e-02,1.187989711761474609e-01,-2.237872630357742310e-01,-4.636325240135192871e-01,-1.527521014213562012e-02,1.571832108311355114e-03,4.293653368949890137e-01,6.969942152500152588e-02,-1.800588220357894897e-01,-1.507213711738586426e-02,-5.993661284446716309e-02,-1.312306374311447144e-01,-1.172911077737808228e-01,1.893299072980880737e-01,1.437596976757049561e-02,-6.896437611430883408e-03,1.385511606931686401e-01,-6.657507270574569702e-02,1.218562573194503784e-01,6.815335154533386230e-02,-2.993845939636230469e-01,-1.034599095582962036e-01,-3.061396069824695587e-02,2.640971541404724121e-01,-4.237475991249084473e-01,3.846918714568020592e-15,-7.850079238414764404e-02,8.625650405883789062e-01,-1.145330592989921570e-01,-8.793763071298599243e-02,-5.887353792786598206e-02,2.260606139898300171e-01,7.002630829811096191e-02,1.620705723762512207e-01,3.869064524769783020e-02,1.328994035720825195e-01,-1.506799608469009399e-01,1.697401702404022217e-01,-3.422344923019409180e-01,-5.177473649382591248e-02,5.335830152034759521e-02,-1.431334763765335083e-01,1.683118492364883423e-01,1.077957034111022949e+00,3.715388774871826172e-01,-8.151880651712417603e-02,2.632562220096588135e-01,3.177218884229660034e-02,-1.019183546304702759e-01,-3.357834741473197937e-02,3.322092890739440918e-01,-5.851433426141738892e-02,-1.929950714111328125e-01,1.219461485743522644e-01,-2.022059410810470581e-01,4.121349751949310303e-01,-2.132391035556793213e-01,7.681596744257032476e-16,5.215396881103515625e-01,-6.456596404314041138e-02,8.136572688817977905e-02,-2.807187438011169434e-01,2.224362790584564209e-01,-1.423264294862747192e-01,5.130096152424812317e-02,1.948799639940261841e-01,-7.237073034048080444e-02,7.300674915313720703e-02,1.008600667119026184e-01,1.850169003009796143e-01,1.188270598649978638e-01,6.887149810791015625e-02,2.686632275581359863e-01,-1.005921810865402222e-01,7.028043270111083984e-02,-4.912678003311157227e-01,-1.834871061146259308e-02,-7.183901965618133545e-03,8.926912397146224976e-02,2.102474868297576904e-01,-2.916350364685058594e-01,-2.528821527957916260e-01,3.829270834103226662e-03,-2.472257427871227264e-02,3.223943710327148438e-02,2.765848115086555481e-02,1.725513935089111328e-01,3.062562346458435059e-01,-1.823922693729400635e-01,1.324354753636056582e-15,-2.681109905242919922e-01,-2.303208708763122559e-01,1.333862990140914917e-01,-1.546283364295959473e-01,-4.442745819687843323e-02,6.748697161674499512e-02,-1.927371486090123653e-03,3.878636658191680908e-02,8.612050861120223999e-02,6.407286226749420166e-02,-1.239042356610298157e-01,4.201853275299072266e-02,-1.960735023021697998e-01,4.259477555751800537e-02,1.143818646669387817e-01,-1.709281504154205322e-01,-1.339652538299560547e-01,-2.820263803005218506e-01,3.369692862033843994e-01,5.887768790125846863e-02,3.718878328800201416e-02,4.173787310719490051e-02,1.931373402476310730e-02,1.839795410633087158e-01,1.962719112634658813e-01,4.113778471946716309e-02,1.465628445148468018e-01,-1.123751848936080933e-01,-8.214025199413299561e-02,-1.512958854436874390e-01,2.481738030910491943e-01,-1.185494819241146754e-15,1.091314479708671570e-02,1.136361733078956604e-01,-1.262503713369369507e-01,-1.115673705935478210e-01,-8.048183470964431763e-02,1.351061582565307617e+00,-2.228855937719345093e-01,-3.026635646820068359e-01,1.592878624796867371e-02,-1.984758526086807251e-01,-1.707312017679214478e-01,1.970111578702926636e-01,6.162546575069427490e-02,-2.818308472633361816e-01,1.820078939199447632e-01,1.528139598667621613e-02,1.041433364152908325e-01,-2.038460969924926758e-01,-9.377913922071456909e-02,-3.449226021766662598e-01,-4.229146987199783325e-02,4.457561671733856201e-02,-3.446759283542633057e-01,-4.847519472241401672e-02,-2.626378834247589111e-01,3.483271598815917969e-02,1.415224522352218628e-01 2 | --------------------------------------------------------------------------------