diff --git a/matlab/dynare_m.exe b/matlab/dynare_m.exe index 9d56c8384..4f530bd09 100755 Binary files a/matlab/dynare_m.exe and b/matlab/dynare_m.exe differ diff --git a/matlab/erase_compiled_function.m b/matlab/erase_compiled_function.m index 11c3de988..6f8d765ba 100644 --- a/matlab/erase_compiled_function.m +++ b/matlab/erase_compiled_function.m @@ -2,9 +2,9 @@ function erased_compiled_function(func) % erase compiled function with name 'func' if exist([func '.dll']) - clear [func '.dll'] - delete [func '.dll'] + clear([func '.dll']) + delete([func '.dll']) elseif exist ([func '.mexw32']) - clear [func '.dll'] - delete [func '.mexw32'] + clear([func '.dll']) + delete([func '.mexw32']) end diff --git a/matlab/formdata.m b/matlab/formdata.m new file mode 100644 index 000000000..cb815a7f0 --- /dev/null +++ b/matlab/formdata.m @@ -0,0 +1,64 @@ +function formdata(fname,date) +% function formdata(fname,date) +% store endogenous and exogenous variables in a "FRM" TROLL text format file +% INPUT +% fname: name of the FRM file +% date: the date of first observation (i.e. 2007A for an annual dataset) +% OUTPUT +% none +% ALGORITHM +% none +% SPECIAL REQUIREMENT +% none +% +% part of DYNARE, copyright (2007) +% Gnu Public License. + global M_ oo_ + fid = fopen([fname '_endo.frm'],'w'); + n=size(oo_.endo_simul,1); + t=size(oo_.endo_simul,2); + SN=upper(cellstr(M_.endo_names)); + for i=1:n + str=strvcat(SN(i)); + fprintf(fid,'USER: x x DATAFILE: x %s\n',str); + fprintf(fid,'PER: 1 YEAR: %s FRAC: 1 NOBS: %d CLINES: 0 DLINES: ???\n',date,t); + fprintf(fid,'%10.5f %10.5f %10.5f %10.5f\n',reshape(oo_.endo_simul(i,1:floor(t/4)*4),floor(t/4),4)); + if(floor(t/4)*4 #include #include +#include using namespace std; //------------------------------------------------------------------------------ #include "BlockTriangular.hh" //------------------------------------------------------------------------------ BlockTriangular::BlockTriangular(const SymbolTable &symbol_table_arg) : - symbol_table(symbol_table_arg) + symbol_table(symbol_table_arg), + normalization(symbol_table_arg) { bt_verbose = 0; ModelBlock = NULL; @@ -699,11 +701,162 @@ BlockTriangular::Free_Block(Model_Block* ModelBlock) free(ModelBlock); } +string +BlockTriangular::getnamebyID(Type type, int id) +{ + return symbol_table.getNameByID(type,id); +} + //------------------------------------------------------------------------------ // Normalize each equation of the model (endgenous_i = f_i(endogenous_1, ..., endogenous_n) - in order to apply strong connex components search algorithm - // and find the optimal blocks triangular decomposition bool -BlockTriangular::Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, int n, int* prologue, int* epilogue, simple* Index_Var_IM, simple* Index_Equ_IM, bool Do_Normalization, bool mixing, bool* IM_0 ) +BlockTriangular::Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, int n, int* prologue, int* epilogue, simple* Index_Var_IM, simple* Index_Equ_IM, bool Do_Normalization, bool mixing, bool* IM_0, jacob_map j_m ) +{ + int i, j, Nb_TotalBlocks, Nb_RecursBlocks; + int count_Block, count_Equ; + block_result_t* res; + List_IM * p_First_IM, *p_Cur_IM, *Cur_IM; + Equation_set* Equation_gr = (Equation_set*) malloc(sizeof(Equation_set)); + bool* SIM0, *SIM00; + p_First_IM = (List_IM*)malloc(sizeof(*p_First_IM)); + p_Cur_IM = p_First_IM; + Cur_IM = First_IM; + i = endo_nbr * endo_nbr; + while(Cur_IM) + { + p_Cur_IM->lead_lag = Cur_IM->lead_lag; + p_Cur_IM->IM = (bool*)malloc(i * sizeof(bool)); + memcpy ( p_Cur_IM->IM, Cur_IM->IM, i); + Cur_IM = Cur_IM->pNext; + if(Cur_IM) + { + p_Cur_IM->pNext = (List_IM*)malloc(sizeof(*p_Cur_IM)); + p_Cur_IM = p_Cur_IM->pNext; + } + else + p_Cur_IM->pNext = NULL; + } + Prologue_Epilogue(IM, prologue, epilogue, n, Index_Var_IM, Index_Equ_IM); + if(bt_verbose) + { + cout << "prologue : " << *prologue << " epilogue : " << *epilogue << "\n"; + Print_SIM(IM, n); + for(i = 0;i < n;i++) + cout << "Index_Var_IM[" << i << "]=" << Index_Var_IM[i].index << " Index_Equ_IM[" << i << "]=" << Index_Equ_IM[i].index << "\n"; + } + if(Do_Normalization) + { + cout << "Normalizing the model ...\n"; + if(mixing) + { + double* max_val=(double*)malloc(n*sizeof(double)); + memset(max_val,0,n*sizeof(double)); + for( map< pair< int, int >, double >::iterator iter = j_m.begin(); iter != j_m.end(); iter++ ) + { + if(fabs(iter->second)>max_val[iter->first.first]) + max_val[iter->first.first]=fabs(iter->second); + } + for( map< pair< int, int >, double >::iterator iter = j_m.begin(); iter != j_m.end(); iter++ ) + iter->second/=max_val[iter->first.first]; + free(max_val); + bool OK=false; + double bi=0.99999999; + int suppressed=0; + while(!OK && bi>1e-14) + { + int suppress=0; + SIM0 = (bool*)malloc(n * n * sizeof(bool)); + memset(SIM0,0,n*n*sizeof(bool)); + SIM00 = (bool*)malloc(n * n * sizeof(bool)); + memset(SIM00,0,n*n*sizeof(bool)); + for( map< pair< int, int >, double >::iterator iter = j_m.begin(); iter != j_m.end(); iter++ ) + { + if(fabs(iter->second)>bi) + { + SIM0[iter->first.first*n+iter->first.second]=1; + if(!IM_0[iter->first.first*n+iter->first.second]) + { + cout << "error nothing at IM_0[" << iter->first.first << ", " << iter->first.second << "]=" << IM_0[iter->first.first*n+iter->first.second] << "\n"; + } + } + else + suppress++; + } + for(i = 0;i < n;i++) + for(j = 0;j < n;j++) + SIM00[i*n + j] = SIM0[Index_Equ_IM[i].index * n + Index_Var_IM[j].index]; + free(SIM0); + if(suppress!=suppressed) + OK=normalization.Normalize(n, *prologue, *epilogue, SIM00, Index_Equ_IM, Equation_gr, 1, IM); + suppressed=suppress; + if(!OK) + bi/=1.05; + if(bi>1e-14) + free(SIM00); + } + if(!OK) + { + normalization.Set_fp_verbose(true); + OK=normalization.Normalize(n, *prologue, *epilogue, SIM00, Index_Equ_IM, Equation_gr, 1, IM); + cout << "Error\n"; + exit(-1); + } + } + else + normalization.Normalize(n, *prologue, *epilogue, IM, Index_Equ_IM, Equation_gr, 0, 0); + } + else + normalization.Gr_to_IM_basic(n, *prologue, *epilogue, IM, Equation_gr, false); + cout << "Finding the optimal block decomposition of the model ...\n"; + if(bt_verbose) + blocks.Print_Equation_gr(Equation_gr); + res = blocks.sc(Equation_gr); + if(bt_verbose) + blocks.block_result_print(res); + if ((*prologue) || (*epilogue)) + j = 1; + else + j = 0; + for(i = 0;i < res->n_sets;i++) + if ((res->sets_f[i] - res->sets_s[i] + 1) > j) + j = res->sets_f[i] - res->sets_s[i] + 1; + Nb_RecursBlocks = *prologue + *epilogue; + Nb_TotalBlocks = res->n_sets + Nb_RecursBlocks; + cout << Nb_TotalBlocks << " block(s) found:\n"; + cout << " " << Nb_RecursBlocks << " recursive block(s) and " << res->n_sets << " simultaneous block(s). \n"; + cout << " the largest simultaneous block has " << j << " equation(s). \n"; + ModelBlock->Size = Nb_TotalBlocks; + ModelBlock->Periods = periods; + ModelBlock->in_Block_Equ = (int*)malloc(n * sizeof(int)); + ModelBlock->in_Block_Var = (int*)malloc(n * sizeof(int)); + ModelBlock->in_Equ_of_Block = (int*)malloc(n * sizeof(int)); + ModelBlock->in_Var_of_Block = (int*)malloc(n * sizeof(int)); + ModelBlock->Block_List = (Block*)malloc(sizeof(ModelBlock->Block_List[0]) * Nb_TotalBlocks); + blocks.block_result_to_IM(res, IM, *prologue, endo_nbr, Index_Equ_IM, Index_Var_IM); + Free_IM(p_First_IM); + count_Equ = count_Block = 0; + if (*prologue) + Allocate_Block(*prologue, &count_Equ, &count_Block, PROLOGUE, ModelBlock, Table, TableSize); + for(j = 0;j < res->n_sets;j++) + { + if(res->sets_f[res->ordered[j]] == res->sets_s[res->ordered[j]]) + Allocate_Block(res->sets_f[res->ordered[j]] - res->sets_s[res->ordered[j]] + 1, &count_Equ, &count_Block, PROLOGUE, ModelBlock, Table, TableSize); + else + Allocate_Block(res->sets_f[res->ordered[j]] - res->sets_s[res->ordered[j]] + 1, &count_Equ, &count_Block, SIMULTANS, ModelBlock, Table, TableSize); + } + if (*epilogue) + Allocate_Block(*epilogue, &count_Equ, &count_Block, EPILOGUE, ModelBlock, Table, TableSize); + return 0; +} + + + +//------------------------------------------------------------------------------ +// Normalize each equation of the model (endgenous_i = f_i(endogenous_1, ..., endogenous_n) - in order to apply strong connex components search algorithm - +// and find the optimal blocks triangular decomposition +bool +BlockTriangular::Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, int n, int* prologue, int* epilogue, simple* Index_Var_IM, simple* Index_Equ_IM, bool Do_Normalization, bool mixing, bool* IM_0) { int i, j, Nb_TotalBlocks, Nb_RecursBlocks; int count_Block, count_Equ; @@ -743,6 +896,7 @@ BlockTriangular::Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, { bool* SIM0; SIM0 = (bool*)malloc(n * n * sizeof(bool)); + for(i = 0;i < n*n;i++) SIM0[i] = IM_0[i]; for(i = 0;i < n;i++) @@ -800,7 +954,6 @@ BlockTriangular::Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, - //------------------------------------------------------------------------------ // For the contemparenous simultaneities // normalize each equation of the model @@ -944,7 +1097,7 @@ BlockTriangular::Normalize_and_BlockDecompose_Static_Model() // normalize each equation of the dynamic model // and find the optimal block triangular decomposition of the static model void -BlockTriangular::Normalize_and_BlockDecompose_Static_0_Model() +BlockTriangular::Normalize_and_BlockDecompose_Static_0_Model(const jacob_map &j_m) { bool* SIM, *SIM_0; List_IM* Cur_IM; @@ -985,7 +1138,7 @@ BlockTriangular::Normalize_and_BlockDecompose_Static_0_Model() SIM_0 = (bool*)malloc(endo_nbr * endo_nbr * sizeof(*SIM_0)); for(i = 0;i < endo_nbr*endo_nbr;i++) SIM_0[i] = Cur_IM->IM[i]; - Normalize_and_BlockDecompose(SIM, ModelBlock, endo_nbr, &prologue, &epilogue, Index_Var_IM, Index_Equ_IM, 1, 1, SIM_0); + Normalize_and_BlockDecompose(SIM, ModelBlock, endo_nbr, &prologue, &epilogue, Index_Var_IM, Index_Equ_IM, 1, 1, SIM_0, j_m); if(bt_verbose) for(i = 0;i < endo_nbr;i++) cout << "Block=" << Index_Equ_IM[i].block << " Equ=" << Index_Equ_IM[i].index << " Var= " << Index_Var_IM[i].index << " " << symbol_table.getNameByID(eEndogenous, Index_Var_IM[i].index) << "\n"; diff --git a/parser.src/ComputingTasks.cc b/parser.src/ComputingTasks.cc index 13a8fb5cb..d8b4003a5 100644 --- a/parser.src/ComputingTasks.cc +++ b/parser.src/ComputingTasks.cc @@ -78,14 +78,20 @@ SimulSparseStatement::writeOutput(ostream &output, const string &basename) const { options_list.writeOutput(output); output << "if ~ options_.initval_file\n"; - output << " make_y_;\n"; - output << " make_ex_;\n"; + output << " if ~isfield(options_,'datafile')\n"; + output << " make_y_;\n"; + output << " make_ex_;\n"; + output << " else\n"; + output << " read_data_;\n"; + output << " end\n"; output << "end\n"; output << "disp('compiling...');\n"; + output << "t0=clock;\n"; if (compiler == 0) output << "mex " << basename << "_dynamic.c;\n"; else output << "mex " << basename << "_dynamic.cc;\n"; + output << "disp(['compiling time: ' num2str(etime(clock,t0))]);\n"; output << "oo_.endo_simul=" << basename << "_dynamic;\n"; } @@ -236,7 +242,7 @@ PeriodsStatement::writeOutput(ostream &output, const string &basename) const output << "options_.simul = 1;" << endl; } -CutoffStatement::CutoffStatement(int cutoff_arg) : cutoff(cutoff_arg) +CutoffStatement::CutoffStatement(double cutoff_arg) : cutoff(cutoff_arg) { } diff --git a/parser.src/DynareBison.cc b/parser.src/DynareBison.cc index 932c59888..bf459db6d 100644 --- a/parser.src/DynareBison.cc +++ b/parser.src/DynareBison.cc @@ -1099,119 +1099,119 @@ namespace yy {driver.simulate();;} break; - case 212: -#line 570 "DynareBison.yy" - {driver.stoch_simul();;} - break; - case 213: -#line 572 "DynareBison.yy" +#line 571 "DynareBison.yy" {driver.stoch_simul();;} break; case 214: -#line 574 "DynareBison.yy" +#line 573 "DynareBison.yy" {driver.stoch_simul();;} break; case 215: -#line 576 "DynareBison.yy" +#line 575 "DynareBison.yy" {driver.stoch_simul();;} break; - case 238: -#line 607 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(2) - (2)].string_val));;} + case 216: +#line 577 "DynareBison.yy" + {driver.stoch_simul();;} break; case 239: -#line 609 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(4) - (2)].string_val), (yysemantic_stack_[(4) - (4)].string_val));;} +#line 608 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(2) - (2)].string_val));;} break; case 240: -#line 611 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(3) - (3)].string_val));;} +#line 610 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(4) - (2)].string_val), (yysemantic_stack_[(4) - (4)].string_val));;} break; case 241: -#line 613 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(5) - (3)].string_val), (yysemantic_stack_[(5) - (5)].string_val));;} +#line 612 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(3) - (3)].string_val));;} break; case 242: -#line 615 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(1) - (1)].string_val));;} +#line 614 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(5) - (3)].string_val), (yysemantic_stack_[(5) - (5)].string_val));;} break; case 243: -#line 617 "DynareBison.yy" - {driver.add_tmp_var((yysemantic_stack_[(3) - (1)].string_val), (yysemantic_stack_[(3) - (3)].string_val));;} +#line 616 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(1) - (1)].string_val));;} break; case 244: -#line 622 "DynareBison.yy" - {(yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} +#line 618 "DynareBison.yy" + {driver.add_tmp_var((yysemantic_stack_[(3) - (1)].string_val), (yysemantic_stack_[(3) - (3)].string_val));;} break; case 245: -#line 624 "DynareBison.yy" - {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} - break; - - case 246: -#line 626 "DynareBison.yy" - {(yyval.string_val) = (yysemantic_stack_[(1) - (1)].string_val);;} - break; - - case 247: -#line 631 "DynareBison.yy" +#line 623 "DynareBison.yy" {(yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} break; - case 248: -#line 633 "DynareBison.yy" + case 246: +#line 625 "DynareBison.yy" {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} break; - case 249: -#line 635 "DynareBison.yy" + case 247: +#line 627 "DynareBison.yy" {(yyval.string_val) = (yysemantic_stack_[(1) - (1)].string_val);;} break; + case 248: +#line 632 "DynareBison.yy" + {(yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} + break; + + case 249: +#line 634 "DynareBison.yy" + {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} + break; + case 250: -#line 640 "DynareBison.yy" - { driver.estimated_params(); ;} +#line 636 "DynareBison.yy" + {(yyval.string_val) = (yysemantic_stack_[(1) - (1)].string_val);;} break; case 251: -#line 645 "DynareBison.yy" - {driver.add_estimated_params_element();;} +#line 641 "DynareBison.yy" + { driver.estimated_params(); ;} break; case 252: -#line 647 "DynareBison.yy" +#line 646 "DynareBison.yy" {driver.add_estimated_params_element();;} break; - case 254: -#line 656 "DynareBison.yy" + case 253: +#line 648 "DynareBison.yy" + {driver.add_estimated_params_element();;} + break; + + case 255: +#line 657 "DynareBison.yy" {driver.estim_params.type = 1; driver.estim_params.name = *(yysemantic_stack_[(2) - (2)].string_val); delete (yysemantic_stack_[(2) - (2)].string_val); ;} break; - case 255: -#line 661 "DynareBison.yy" + case 256: +#line 662 "DynareBison.yy" {driver.estim_params.type = 2; driver.estim_params.name = *(yysemantic_stack_[(1) - (1)].string_val); delete (yysemantic_stack_[(1) - (1)].string_val); ;} break; - case 256: -#line 666 "DynareBison.yy" + case 257: +#line 667 "DynareBison.yy" {driver.estim_params.type = 3; driver.estim_params.name = *(yysemantic_stack_[(4) - (2)].string_val); driver.estim_params.name2 = *(yysemantic_stack_[(4) - (4)].string_val); @@ -1220,16 +1220,16 @@ namespace yy ;} break; - case 257: -#line 676 "DynareBison.yy" + case 258: +#line 677 "DynareBison.yy" { driver.estim_params.prior=*(yysemantic_stack_[(3) - (1)].string_val); delete (yysemantic_stack_[(3) - (1)].string_val); ;} break; - case 258: -#line 681 "DynareBison.yy" + case 259: +#line 682 "DynareBison.yy" {driver.estim_params.init_val=*(yysemantic_stack_[(5) - (1)].string_val); driver.estim_params.prior=*(yysemantic_stack_[(5) - (3)].string_val); delete (yysemantic_stack_[(5) - (1)].string_val); @@ -1237,8 +1237,8 @@ namespace yy ;} break; - case 259: -#line 687 "DynareBison.yy" + case 260: +#line 688 "DynareBison.yy" {driver.estim_params.init_val=*(yysemantic_stack_[(9) - (1)].string_val); driver.estim_params.low_bound=*(yysemantic_stack_[(9) - (3)].string_val); driver.estim_params.up_bound=*(yysemantic_stack_[(9) - (5)].string_val); @@ -1250,16 +1250,16 @@ namespace yy ;} break; - case 260: -#line 697 "DynareBison.yy" + case 261: +#line 698 "DynareBison.yy" { driver.estim_params.init_val=*(yysemantic_stack_[(1) - (1)].string_val); delete (yysemantic_stack_[(1) - (1)].string_val); ;} break; - case 261: -#line 702 "DynareBison.yy" + case 262: +#line 703 "DynareBison.yy" {driver.estim_params.init_val=*(yysemantic_stack_[(5) - (1)].string_val); driver.estim_params.low_bound=*(yysemantic_stack_[(5) - (3)].string_val); driver.estim_params.up_bound=*(yysemantic_stack_[(5) - (5)].string_val); @@ -1269,8 +1269,8 @@ namespace yy ;} break; - case 262: -#line 713 "DynareBison.yy" + case 263: +#line 714 "DynareBison.yy" {driver.estim_params.mean=*(yysemantic_stack_[(3) - (1)].string_val); driver.estim_params.std=*(yysemantic_stack_[(3) - (3)].string_val); delete (yysemantic_stack_[(3) - (1)].string_val); @@ -1278,8 +1278,8 @@ namespace yy ;} break; - case 263: -#line 719 "DynareBison.yy" + case 264: +#line 720 "DynareBison.yy" {driver.estim_params.mean=*(yysemantic_stack_[(5) - (1)].string_val); driver.estim_params.std=*(yysemantic_stack_[(5) - (3)].string_val); driver.estim_params.p3=*(yysemantic_stack_[(5) - (5)].string_val); @@ -1289,8 +1289,8 @@ namespace yy ;} break; - case 264: -#line 727 "DynareBison.yy" + case 265: +#line 728 "DynareBison.yy" {driver.estim_params.mean=*(yysemantic_stack_[(7) - (1)].string_val); driver.estim_params.std=*(yysemantic_stack_[(7) - (3)].string_val); driver.estim_params.p3=*(yysemantic_stack_[(7) - (5)].string_val); @@ -1302,8 +1302,8 @@ namespace yy ;} break; - case 265: -#line 737 "DynareBison.yy" + case 266: +#line 738 "DynareBison.yy" {driver.estim_params.mean=*(yysemantic_stack_[(9) - (1)].string_val); driver.estim_params.std=*(yysemantic_stack_[(9) - (3)].string_val); driver.estim_params.p3=*(yysemantic_stack_[(9) - (5)].string_val); @@ -1317,23 +1317,23 @@ namespace yy ;} break; - case 266: -#line 751 "DynareBison.yy" + case 267: +#line 752 "DynareBison.yy" { driver.estimated_params_init(); ;} break; - case 267: -#line 755 "DynareBison.yy" - {driver.add_estimated_params_element();;} - break; - case 268: -#line 757 "DynareBison.yy" +#line 756 "DynareBison.yy" {driver.add_estimated_params_element();;} break; case 269: -#line 761 "DynareBison.yy" +#line 758 "DynareBison.yy" + {driver.add_estimated_params_element();;} + break; + + case 270: +#line 762 "DynareBison.yy" {driver.estim_params.type = 1; driver.estim_params.name = *(yysemantic_stack_[(5) - (2)].string_val); driver.estim_params.init_val=*(yysemantic_stack_[(5) - (4)].string_val); @@ -1342,8 +1342,8 @@ namespace yy ;} break; - case 270: -#line 768 "DynareBison.yy" + case 271: +#line 769 "DynareBison.yy" {driver.estim_params.type = 3; driver.estim_params.name = *(yysemantic_stack_[(7) - (2)].string_val); driver.estim_params.name2 = *(yysemantic_stack_[(7) - (4)].string_val); @@ -1354,8 +1354,8 @@ namespace yy ;} break; - case 271: -#line 777 "DynareBison.yy" + case 272: +#line 778 "DynareBison.yy" {driver.estim_params.type = 2; driver.estim_params.name = *(yysemantic_stack_[(4) - (1)].string_val); driver.estim_params.init_val=*(yysemantic_stack_[(4) - (3)].string_val); @@ -1364,23 +1364,23 @@ namespace yy ;} break; - case 272: -#line 786 "DynareBison.yy" + case 273: +#line 787 "DynareBison.yy" { driver.estimated_params_bounds(); ;} break; - case 273: -#line 790 "DynareBison.yy" - {driver.add_estimated_params_element();;} - break; - case 274: -#line 792 "DynareBison.yy" +#line 791 "DynareBison.yy" {driver.add_estimated_params_element();;} break; case 275: -#line 796 "DynareBison.yy" +#line 793 "DynareBison.yy" + {driver.add_estimated_params_element();;} + break; + + case 276: +#line 797 "DynareBison.yy" {driver.estim_params.type = 1; driver.estim_params.name = *(yysemantic_stack_[(7) - (2)].string_val); driver.estim_params.low_bound=*(yysemantic_stack_[(7) - (4)].string_val); @@ -1391,8 +1391,8 @@ namespace yy ;} break; - case 276: -#line 805 "DynareBison.yy" + case 277: +#line 806 "DynareBison.yy" {driver.estim_params.type = 3; driver.estim_params.name = *(yysemantic_stack_[(9) - (2)].string_val); driver.estim_params.name2 = *(yysemantic_stack_[(9) - (4)].string_val); @@ -1405,8 +1405,8 @@ namespace yy ;} break; - case 277: -#line 816 "DynareBison.yy" + case 278: +#line 817 "DynareBison.yy" {driver.estim_params.type = 2; driver.estim_params.name = *(yysemantic_stack_[(6) - (1)].string_val); driver.estim_params.low_bound=*(yysemantic_stack_[(6) - (3)].string_val); @@ -1417,149 +1417,144 @@ namespace yy ;} break; - case 278: -#line 828 "DynareBison.yy" + case 279: +#line 829 "DynareBison.yy" {(yyval.string_val) = new string("1");;} break; - case 279: -#line 830 "DynareBison.yy" + case 280: +#line 831 "DynareBison.yy" {(yyval.string_val) = new string("2");;} break; - case 280: -#line 832 "DynareBison.yy" + case 281: +#line 833 "DynareBison.yy" {(yyval.string_val) = new string("3");;} break; - case 281: -#line 834 "DynareBison.yy" + case 282: +#line 835 "DynareBison.yy" {(yyval.string_val) = new string("4");;} break; - case 282: -#line 836 "DynareBison.yy" + case 283: +#line 837 "DynareBison.yy" {(yyval.string_val) = new string("5");;} break; - case 283: -#line 840 "DynareBison.yy" + case 284: +#line 841 "DynareBison.yy" {(yyval.string_val) = new string("NaN");;} break; - case 287: -#line 845 "DynareBison.yy" - {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} - break; - case 288: -#line 847 "DynareBison.yy" +#line 846 "DynareBison.yy" {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} break; case 289: -#line 854 "DynareBison.yy" - {driver.run_estimation();;} +#line 848 "DynareBison.yy" + {(yysemantic_stack_[(2) - (2)].string_val)->insert(0, "-"); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} break; case 290: -#line 856 "DynareBison.yy" +#line 855 "DynareBison.yy" {driver.run_estimation();;} break; case 291: -#line 858 "DynareBison.yy" +#line 857 "DynareBison.yy" {driver.run_estimation();;} break; case 292: -#line 860 "DynareBison.yy" +#line 859 "DynareBison.yy" {driver.run_estimation();;} break; - case 334: -#line 911 "DynareBison.yy" - {driver.run_prior_analysis();;} + case 293: +#line 861 "DynareBison.yy" + {driver.run_estimation();;} break; case 335: -#line 913 "DynareBison.yy" +#line 912 "DynareBison.yy" {driver.run_prior_analysis();;} break; - case 351: -#line 939 "DynareBison.yy" - {driver.run_posterior_analysis();;} + case 336: +#line 914 "DynareBison.yy" + {driver.run_prior_analysis();;} break; case 352: -#line 941 "DynareBison.yy" +#line 940 "DynareBison.yy" {driver.run_posterior_analysis();;} break; case 353: -#line 945 "DynareBison.yy" - {driver.optim_options_string((yysemantic_stack_[(7) - (2)].string_val), (yysemantic_stack_[(7) - (6)].string_val));;} +#line 942 "DynareBison.yy" + {driver.run_posterior_analysis();;} break; case 354: #line 946 "DynareBison.yy" + {driver.optim_options_string((yysemantic_stack_[(7) - (2)].string_val), (yysemantic_stack_[(7) - (6)].string_val));;} + break; + + case 355: +#line 947 "DynareBison.yy" {driver.optim_options_num((yysemantic_stack_[(5) - (2)].string_val), (yysemantic_stack_[(5) - (5)].string_val));;} break; - case 357: -#line 956 "DynareBison.yy" + case 358: +#line 957 "DynareBison.yy" {driver.set_varobs();;} break; - case 358: -#line 961 "DynareBison.yy" + case 359: +#line 962 "DynareBison.yy" { driver.set_trends(); ;} break; - case 361: -#line 970 "DynareBison.yy" + case 362: +#line 971 "DynareBison.yy" {driver.set_trend_element((yysemantic_stack_[(5) - (1)].string_val), (yysemantic_stack_[(5) - (3)].node_val));;} break; - case 362: -#line 973 "DynareBison.yy" + case 363: +#line 974 "DynareBison.yy" {driver.set_unit_root_vars();;} break; - case 363: -#line 977 "DynareBison.yy" + case 364: +#line 978 "DynareBison.yy" { driver.optim_weights(); ;} break; - case 364: -#line 981 "DynareBison.yy" + case 365: +#line 982 "DynareBison.yy" {driver.set_optim_weights((yysemantic_stack_[(4) - (2)].string_val), (yysemantic_stack_[(4) - (3)].node_val));;} break; - case 365: -#line 983 "DynareBison.yy" + case 366: +#line 984 "DynareBison.yy" {driver.set_optim_weights((yysemantic_stack_[(6) - (2)].string_val), (yysemantic_stack_[(6) - (4)].string_val), (yysemantic_stack_[(6) - (5)].node_val));;} break; - case 366: -#line 985 "DynareBison.yy" + case 367: +#line 986 "DynareBison.yy" {driver.set_optim_weights((yysemantic_stack_[(3) - (1)].string_val), (yysemantic_stack_[(3) - (2)].node_val));;} break; - case 367: -#line 987 "DynareBison.yy" + case 368: +#line 988 "DynareBison.yy" {driver.set_optim_weights((yysemantic_stack_[(5) - (1)].string_val), (yysemantic_stack_[(5) - (3)].string_val), (yysemantic_stack_[(5) - (4)].node_val));;} break; - case 368: -#line 990 "DynareBison.yy" - {driver.set_osr_params();;} - break; - case 369: -#line 993 "DynareBison.yy" - {driver.run_osr();;} +#line 991 "DynareBison.yy" + {driver.set_osr_params();;} break; case 370: @@ -1578,8 +1573,8 @@ namespace yy break; case 373: -#line 999 "DynareBison.yy" - {driver.run_olr();;} +#line 997 "DynareBison.yy" + {driver.run_osr();;} break; case 374: @@ -1597,39 +1592,39 @@ namespace yy {driver.run_olr();;} break; - case 381: -#line 1013 "DynareBison.yy" - {driver.set_olr_inst();;} + case 377: +#line 1003 "DynareBison.yy" + {driver.run_olr();;} break; case 382: -#line 1017 "DynareBison.yy" - { driver.run_calib_var(); ;} +#line 1014 "DynareBison.yy" + {driver.set_olr_inst();;} break; - case 385: -#line 1024 "DynareBison.yy" - {driver.set_calib_var((yysemantic_stack_[(5) - (1)].string_val), (yysemantic_stack_[(5) - (2)].string_val), (yysemantic_stack_[(5) - (4)].node_val));;} + case 383: +#line 1018 "DynareBison.yy" + { driver.run_calib_var(); ;} break; case 386: #line 1025 "DynareBison.yy" - {driver.set_calib_covar((yysemantic_stack_[(7) - (1)].string_val), (yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (4)].string_val), (yysemantic_stack_[(7) - (6)].node_val));;} + {driver.set_calib_var((yysemantic_stack_[(5) - (1)].string_val), (yysemantic_stack_[(5) - (2)].string_val), (yysemantic_stack_[(5) - (4)].node_val));;} break; case 387: #line 1026 "DynareBison.yy" - {driver.set_calib_ac((yysemantic_stack_[(9) - (2)].string_val), (yysemantic_stack_[(9) - (4)].string_val), (yysemantic_stack_[(9) - (6)].string_val), (yysemantic_stack_[(9) - (8)].node_val));;} + {driver.set_calib_covar((yysemantic_stack_[(7) - (1)].string_val), (yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (4)].string_val), (yysemantic_stack_[(7) - (6)].node_val));;} break; case 388: -#line 1029 "DynareBison.yy" - { (yyval.string_val) = new string("1"); ;} +#line 1027 "DynareBison.yy" + {driver.set_calib_ac((yysemantic_stack_[(9) - (2)].string_val), (yysemantic_stack_[(9) - (4)].string_val), (yysemantic_stack_[(9) - (6)].string_val), (yysemantic_stack_[(9) - (8)].node_val));;} break; case 389: #line 1030 "DynareBison.yy" - {(yyval.string_val) = (yysemantic_stack_[(3) - (2)].string_val);;} + { (yyval.string_val) = new string("1"); ;} break; case 390: @@ -1638,253 +1633,253 @@ namespace yy break; case 391: -#line 1034 "DynareBison.yy" - {driver.run_calib(0);;} +#line 1032 "DynareBison.yy" + {(yyval.string_val) = (yysemantic_stack_[(3) - (2)].string_val);;} break; case 392: #line 1035 "DynareBison.yy" - {driver.run_calib(1);;} + {driver.run_calib(0);;} break; case 393: -#line 1038 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(5) - (3)].string_val));;} +#line 1036 "DynareBison.yy" + {driver.run_calib(1);;} break; case 394: #line 1039 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(6) - (3)].string_val));;} + {driver.run_dynatype((yysemantic_stack_[(5) - (3)].string_val));;} break; case 395: #line 1040 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(3) - (2)].string_val));;} + {driver.run_dynatype((yysemantic_stack_[(6) - (3)].string_val));;} break; case 396: #line 1041 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (5)].string_val));;} + {driver.run_dynatype((yysemantic_stack_[(3) - (2)].string_val));;} break; case 397: #line 1042 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(8) - (3)].string_val), (yysemantic_stack_[(8) - (5)].string_val));;} + {driver.run_dynatype((yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (5)].string_val));;} break; case 398: #line 1043 "DynareBison.yy" - {driver.run_dynatype((yysemantic_stack_[(5) - (2)].string_val),(yysemantic_stack_[(5) - (4)].string_val));;} + {driver.run_dynatype((yysemantic_stack_[(8) - (3)].string_val), (yysemantic_stack_[(8) - (5)].string_val));;} break; case 399: -#line 1045 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(5) - (3)].string_val));;} +#line 1044 "DynareBison.yy" + {driver.run_dynatype((yysemantic_stack_[(5) - (2)].string_val),(yysemantic_stack_[(5) - (4)].string_val));;} break; case 400: #line 1046 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(6) - (3)].string_val));;} + {driver.run_dynasave((yysemantic_stack_[(5) - (3)].string_val));;} break; case 401: #line 1047 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(3) - (2)].string_val));;} + {driver.run_dynasave((yysemantic_stack_[(6) - (3)].string_val));;} break; case 402: #line 1048 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (5)].string_val));;} + {driver.run_dynasave((yysemantic_stack_[(3) - (2)].string_val));;} break; case 403: #line 1049 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(8) - (3)].string_val), (yysemantic_stack_[(8) - (5)].string_val));;} + {driver.run_dynasave((yysemantic_stack_[(7) - (3)].string_val), (yysemantic_stack_[(7) - (5)].string_val));;} break; case 404: #line 1050 "DynareBison.yy" - {driver.run_dynasave((yysemantic_stack_[(5) - (2)].string_val), (yysemantic_stack_[(5) - (4)].string_val));;} + {driver.run_dynasave((yysemantic_stack_[(8) - (3)].string_val), (yysemantic_stack_[(8) - (5)].string_val));;} break; case 405: -#line 1053 "DynareBison.yy" - {driver.run_model_comparison();;} +#line 1051 "DynareBison.yy" + {driver.run_dynasave((yysemantic_stack_[(5) - (2)].string_val), (yysemantic_stack_[(5) - (4)].string_val));;} break; - case 411: -#line 1065 "DynareBison.yy" - {driver.add_mc_filename((yysemantic_stack_[(1) - (1)].string_val));;} + case 406: +#line 1054 "DynareBison.yy" + {driver.run_model_comparison();;} break; case 412: #line 1066 "DynareBison.yy" - {driver.add_mc_filename((yysemantic_stack_[(3) - (3)].string_val));;} + {driver.add_mc_filename((yysemantic_stack_[(1) - (1)].string_val));;} break; case 413: #line 1067 "DynareBison.yy" - {driver.add_mc_filename((yysemantic_stack_[(4) - (1)].string_val), (yysemantic_stack_[(4) - (3)].string_val));;} + {driver.add_mc_filename((yysemantic_stack_[(3) - (3)].string_val));;} break; case 414: #line 1068 "DynareBison.yy" - {driver.add_mc_filename((yysemantic_stack_[(6) - (3)].string_val), (yysemantic_stack_[(6) - (5)].string_val));;} + {driver.add_mc_filename((yysemantic_stack_[(4) - (1)].string_val), (yysemantic_stack_[(4) - (3)].string_val));;} break; case 415: -#line 1071 "DynareBison.yy" - {(yyval.string_val) = (yysemantic_stack_[(1) - (1)].string_val);;} +#line 1069 "DynareBison.yy" + {driver.add_mc_filename((yysemantic_stack_[(6) - (3)].string_val), (yysemantic_stack_[(6) - (5)].string_val));;} break; case 416: #line 1072 "DynareBison.yy" - {(yysemantic_stack_[(2) - (1)].string_val)->append(*(yysemantic_stack_[(2) - (2)].string_val)); delete (yysemantic_stack_[(2) - (2)].string_val); (yyval.string_val) = (yysemantic_stack_[(2) - (1)].string_val);;} + {(yyval.string_val) = (yysemantic_stack_[(1) - (1)].string_val);;} break; - case 418: -#line 1076 "DynareBison.yy" - { (yyval.string_val) = new string("\\"); ;} + case 417: +#line 1073 "DynareBison.yy" + {(yysemantic_stack_[(2) - (1)].string_val)->append(*(yysemantic_stack_[(2) - (2)].string_val)); delete (yysemantic_stack_[(2) - (2)].string_val); (yyval.string_val) = (yysemantic_stack_[(2) - (1)].string_val);;} break; case 419: #line 1077 "DynareBison.yy" - { (yyval.string_val) = new string("/"); ;} + { (yyval.string_val) = new string("\\"); ;} break; case 420: #line 1078 "DynareBison.yy" - { (yyval.string_val) = new string(":"); ;} + { (yyval.string_val) = new string("/"); ;} break; case 421: #line 1079 "DynareBison.yy" - { (yyval.string_val) = new string("."); ;} + { (yyval.string_val) = new string(":"); ;} break; case 422: -#line 1082 "DynareBison.yy" - { driver.begin_planner_objective(); ;} +#line 1080 "DynareBison.yy" + { (yyval.string_val) = new string("."); ;} break; case 423: -#line 1082 "DynareBison.yy" +#line 1083 "DynareBison.yy" + { driver.begin_planner_objective(); ;} + break; + + case 424: +#line 1083 "DynareBison.yy" { driver.end_planner_objective((yysemantic_stack_[(3) - (3)].node_val)); ;} break; - case 425: -#line 1086 "DynareBison.yy" - {driver.ramsey_policy();;} - break; - case 426: -#line 1088 "DynareBison.yy" +#line 1087 "DynareBison.yy" {driver.ramsey_policy();;} break; case 427: -#line 1090 "DynareBison.yy" +#line 1089 "DynareBison.yy" {driver.ramsey_policy();;} break; case 428: -#line 1092 "DynareBison.yy" +#line 1091 "DynareBison.yy" {driver.ramsey_policy();;} break; - case 433: -#line 1104 "DynareBison.yy" - {driver.option_num("dr_algo", (yysemantic_stack_[(3) - (3)].string_val));;} + case 429: +#line 1093 "DynareBison.yy" + {driver.ramsey_policy();;} break; case 434: #line 1105 "DynareBison.yy" - {driver.option_num("solve_algo", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("dr_algo", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 435: #line 1106 "DynareBison.yy" - {driver.option_num("simul_algo", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("solve_algo", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 436: #line 1107 "DynareBison.yy" - {driver.linear();;} + {driver.option_num("simul_algo", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 437: #line 1108 "DynareBison.yy" - {driver.option_num("order", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.linear();;} break; case 438: #line 1109 "DynareBison.yy" - {driver.option_num("replic", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("order", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 439: #line 1110 "DynareBison.yy" - {driver.option_num("drop", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("replic", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 440: #line 1111 "DynareBison.yy" - {driver.option_num("ar", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("drop", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 441: #line 1112 "DynareBison.yy" - {driver.option_num("nocorr", "1");;} + {driver.option_num("ar", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 442: #line 1113 "DynareBison.yy" - {driver.option_num("nofunctions", "1");;} + {driver.option_num("nocorr", "1");;} break; case 443: #line 1114 "DynareBison.yy" - {driver.option_num("nomoments", "1");;} + {driver.option_num("nofunctions", "1");;} break; case 444: #line 1115 "DynareBison.yy" - {driver.option_num("irf", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("nomoments", "1");;} break; case 445: #line 1116 "DynareBison.yy" - {driver.option_num("hp_filter", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("irf", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 446: #line 1117 "DynareBison.yy" - {driver.option_num("hp_ngrid", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("hp_filter", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 447: #line 1118 "DynareBison.yy" - {driver.option_num("periods", (yysemantic_stack_[(3) - (3)].string_val)); driver.option_num("simul", "1");;} + {driver.option_num("hp_ngrid", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 448: #line 1119 "DynareBison.yy" - {driver.option_num("cutoff", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("periods", (yysemantic_stack_[(3) - (3)].string_val)); driver.option_num("simul", "1");;} break; case 449: #line 1120 "DynareBison.yy" - {driver.option_num("simul", "1");;} + {driver.option_num("cutoff", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 450: #line 1121 "DynareBison.yy" - { driver.option_num("simul_seed", (yysemantic_stack_[(3) - (3)].string_val));} + {driver.option_num("simul", "1");;} break; case 451: #line 1122 "DynareBison.yy" - { driver.option_num("qz_criterium", (yysemantic_stack_[(3) - (3)].string_val));} + { driver.option_num("simul_seed", (yysemantic_stack_[(3) - (3)].string_val));} break; case 452: @@ -1893,13 +1888,13 @@ namespace yy break; case 453: -#line 1125 "DynareBison.yy" - {driver.option_str("datafile", (yysemantic_stack_[(3) - (3)].string_val));;} +#line 1124 "DynareBison.yy" + { driver.option_num("qz_criterium", (yysemantic_stack_[(3) - (3)].string_val));} break; case 454: #line 1126 "DynareBison.yy" - {driver.option_num("nobs", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_str("datafile", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 455: @@ -1908,63 +1903,63 @@ namespace yy break; case 456: -#line 1129 "DynareBison.yy" - {driver.option_num("first_obs", (yysemantic_stack_[(3) - (3)].string_val));;} +#line 1128 "DynareBison.yy" + {driver.option_num("nobs", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 457: #line 1130 "DynareBison.yy" - {driver.option_num("prefilter", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("first_obs", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 458: #line 1131 "DynareBison.yy" - {driver.option_num("presample", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("prefilter", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 459: #line 1132 "DynareBison.yy" - {driver.option_num("lik_algo", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("presample", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 460: #line 1133 "DynareBison.yy" - {driver.option_num("lik_init", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("lik_algo", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 461: #line 1134 "DynareBison.yy" - {driver.option_num("nograph","1");;} + {driver.option_num("lik_init", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 462: #line 1135 "DynareBison.yy" - {driver.option_num("nograph", "0");;} + {driver.option_num("nograph","1");;} break; case 463: #line 1136 "DynareBison.yy" - {driver.option_num("conf_sig", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("nograph", "0");;} break; case 464: #line 1137 "DynareBison.yy" - {driver.option_num("mh_replic", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("conf_sig", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 465: #line 1138 "DynareBison.yy" - {driver.option_num("mh_drop", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("mh_replic", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 466: #line 1139 "DynareBison.yy" - {driver.option_num("mh_jscale", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("mh_drop", (yysemantic_stack_[(3) - (3)].string_val));;} break; - case 468: -#line 1141 "DynareBison.yy" - {driver.option_num("mh_init_scale", (yysemantic_stack_[(3) - (3)].string_val));;} + case 467: +#line 1140 "DynareBison.yy" + {driver.option_num("mh_jscale", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 469: @@ -1974,156 +1969,161 @@ namespace yy case 470: #line 1143 "DynareBison.yy" - {driver.option_str("mode_file", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("mh_init_scale", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 471: #line 1144 "DynareBison.yy" - {driver.option_num("mode_compute", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_str("mode_file", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 472: #line 1145 "DynareBison.yy" - {driver.option_num("mode_check", "1");;} + {driver.option_num("mode_compute", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 473: #line 1146 "DynareBison.yy" - {driver.option_num("prior_trunc", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("mode_check", "1");;} break; case 474: #line 1147 "DynareBison.yy" - {driver.option_num("mh_mode", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("prior_trunc", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 475: #line 1148 "DynareBison.yy" - {driver.option_num("mh_nblck", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("mh_mode", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 476: #line 1149 "DynareBison.yy" - {driver.option_num("load_mh_file", "1");;} + {driver.option_num("mh_nblck", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 477: #line 1150 "DynareBison.yy" - {driver.option_num("loglinear", "1");;} + {driver.option_num("load_mh_file", "1");;} break; case 478: #line 1151 "DynareBison.yy" - {driver.option_num("nodiagnostic", "1");;} + {driver.option_num("loglinear", "1");;} break; case 479: #line 1152 "DynareBison.yy" - {driver.option_num("bayesian_irf", "1");;} + {driver.option_num("nodiagnostic", "1");;} break; case 480: #line 1153 "DynareBison.yy" - {driver.option_num("TeX", "1");;} + {driver.option_num("bayesian_irf", "1");;} break; case 481: #line 1154 "DynareBison.yy" - {driver.option_num("forecast", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("TeX", "1");;} break; case 482: #line 1155 "DynareBison.yy" - {driver.option_num("smoother", "1");;} + {driver.option_num("forecast", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 483: #line 1156 "DynareBison.yy" - {driver.option_num("moments_varendo", "1");;} + {driver.option_num("smoother", "1");;} break; case 484: #line 1157 "DynareBison.yy" - {driver.option_num("filtered_vars", "1");;} + {driver.option_num("moments_varendo", "1");;} break; case 485: #line 1158 "DynareBison.yy" - {driver.option_num("relative_irf", "1");;} + {driver.option_num("filtered_vars", "1");;} break; case 486: #line 1159 "DynareBison.yy" - {driver.option_num("kalman_algo", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("relative_irf", "1");;} break; case 487: #line 1160 "DynareBison.yy" - {driver.option_num("kalman_tol", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("kalman_algo", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 488: #line 1161 "DynareBison.yy" - {driver.option_num("olr_beta", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("kalman_tol", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 489: -#line 1164 "DynareBison.yy" - { driver.option_str("model_comparison_approximation", "Laplace"); ;} +#line 1162 "DynareBison.yy" + {driver.option_num("olr_beta", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 490: -#line 1166 "DynareBison.yy" - { driver.option_str("model_comparison_approximation", "MODIFIEDHARMONICMEAN"); ;} +#line 1165 "DynareBison.yy" + { driver.option_str("model_comparison_approximation", "Laplace"); ;} break; case 491: -#line 1168 "DynareBison.yy" - {driver.option_num("noprint", "0");;} +#line 1167 "DynareBison.yy" + { driver.option_str("model_comparison_approximation", "MODIFIEDHARMONICMEAN"); ;} break; case 492: #line 1169 "DynareBison.yy" - {driver.option_num("noprint", "1");;} + {driver.option_num("noprint", "0");;} break; case 493: #line 1170 "DynareBison.yy" - {driver.option_str("xls_sheet", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("noprint", "1");;} break; case 494: #line 1171 "DynareBison.yy" - {driver.option_str("xls_range", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_str("xls_sheet", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 495: #line 1172 "DynareBison.yy" - {driver.option_num("filter_step_ahead", (yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_str("xls_range", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 496: #line 1173 "DynareBison.yy" - {driver.option_num("noconstant", "0");;} + {driver.option_num("filter_step_ahead", (yysemantic_stack_[(3) - (3)].string_val));;} break; case 497: #line 1174 "DynareBison.yy" - {driver.option_num("noconstant", "1");;} + {driver.option_num("noconstant", "0");;} break; case 498: #line 1175 "DynareBison.yy" - {driver.option_num("load_mh_file", "-1");;} + {driver.option_num("noconstant", "1");;} break; case 499: #line 1176 "DynareBison.yy" - {driver.option_num("planner_discount",(yysemantic_stack_[(3) - (3)].string_val));;} + {driver.option_num("load_mh_file", "-1");;} break; case 500: -#line 1179 "DynareBison.yy" +#line 1177 "DynareBison.yy" + {driver.option_num("planner_discount",(yysemantic_stack_[(3) - (3)].string_val));;} + break; + + case 501: +#line 1180 "DynareBison.yy" { (yysemantic_stack_[(3) - (1)].string_val)->append(":"); (yysemantic_stack_[(3) - (1)].string_val)->append(*(yysemantic_stack_[(3) - (3)].string_val)); @@ -2132,18 +2132,18 @@ namespace yy ;} break; - case 502: -#line 1188 "DynareBison.yy" + case 503: +#line 1189 "DynareBison.yy" { (yysemantic_stack_[(3) - (1)].string_val)->append(":"); (yysemantic_stack_[(3) - (1)].string_val)->append(*(yysemantic_stack_[(3) - (3)].string_val)); delete (yysemantic_stack_[(3) - (3)].string_val); (yyval.string_val) = (yysemantic_stack_[(3) - (1)].string_val); ;} break; - case 503: -#line 1191 "DynareBison.yy" + case 504: +#line 1192 "DynareBison.yy" { (yysemantic_stack_[(2) - (2)].string_val)->insert(0, "["); (yyval.string_val) = (yysemantic_stack_[(2) - (2)].string_val);;} break; - case 504: -#line 1193 "DynareBison.yy" + case 505: +#line 1194 "DynareBison.yy" { (yysemantic_stack_[(2) - (1)].string_val)->append(" "); (yysemantic_stack_[(2) - (1)].string_val)->append(*(yysemantic_stack_[(2) - (2)].string_val)); @@ -2152,8 +2152,8 @@ namespace yy ;} break; - case 505: -#line 1201 "DynareBison.yy" + case 506: +#line 1202 "DynareBison.yy" { (yysemantic_stack_[(2) - (1)].string_val)->append("]"); (yyval.string_val) = (yysemantic_stack_[(2) - (1)].string_val); ;} break; @@ -2366,114 +2366,114 @@ namespace yy /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ - const short int parser::yypact_ninf_ = -887; + const short int parser::yypact_ninf_ = -795; const short int parser::yypact_[] = { - 990, 436, -96, 452, 365, 46, -17, -15, -29, 164, - 5, 81, 107, 142, 458, 482, 206, 210, 352, 242, - 186, 327, 258, 188, 327, 343, 237, -887, 265, 270, - 327, 274, 430, 496, 514, 193, 195, 327, 374, 392, - 424, 327, 647, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, 501, 262, -887, - 413, 490, 375, 36, 126, 472, 140, 474, 494, 541, - -887, 761, -9, 144, 203, 216, 505, 494, 551, -887, - 348, 19, 96, 558, 512, -887, 1114, 162, 232, 518, - -887, 1114, 236, 260, 479, 264, 555, 454, 855, 797, - 797, 298, 96, 456, -887, 535, -887, 413, -887, 1159, - 308, -887, 1044, 311, 313, 522, 318, 524, 337, 526, - 359, 369, -887, -887, 492, 583, -28, 60, -887, 635, - 278, -887, -887, 519, -887, 531, -887, -887, 613, -32, - -887, 619, 136, 666, 45, -887, 621, -887, 678, -887, - 686, 690, -887, 691, 698, -887, 700, 702, 706, 709, - 715, -887, -887, 716, 721, 722, 723, 732, 736, -887, - -887, 738, 739, -887, 740, -887, -887, -887, 750, 758, - 765, 770, -887, -887, 772, 773, 385, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, 776, 696, -887, - 734, -887, 755, 67, -887, 699, 759, 712, 766, 255, - -887, 774, 713, 779, 259, -887, 692, 54, -887, 55, - 818, 694, 742, -887, 386, 703, 733, 824, -887, -887, - 401, -887, -887, -887, -887, 780, 781, 71, -887, -887, - -887, 701, 558, 558, 710, 714, 743, 745, 747, 748, - 751, 752, 754, 767, 558, 521, 768, 57, -887, 840, - 843, 865, 866, 877, 892, -887, -887, -887, 896, 897, - 900, 913, -887, 914, -887, 924, 925, -887, -887, 405, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, 805, 61, 407, -887, -887, -887, 819, - 881, -887, 802, -887, -887, -887, 804, 855, 855, 809, - 810, 811, 812, 826, 829, 831, 834, 835, 836, 855, - 729, -887, 408, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, 409, -887, 90, - 24, 414, -887, -887, 420, -887, -887, 422, -887, -887, - 929, -887, 427, -887, -887, -887, -887, -887, 872, 931, - -887, -887, 886, 933, -887, -887, 898, 937, -887, -887, - 858, 861, 953, 52, 1001, -887, -887, 984, 413, 879, - -887, -887, 880, -22, 957, 882, 32, 967, 558, -887, - -887, -887, 1012, 976, 894, 1005, 1009, 1010, 1011, 1016, - 1022, 1023, 1017, 360, 1033, 1025, 1026, 1027, 1031, 1004, - 7, 934, 1034, 1040, 1056, 1020, 1028, 761, 73, 1029, - 1072, 970, -887, -887, -887, 63, 973, 233, 978, -887, - -887, 979, 233, 980, -887, -887, 20, -887, -887, -887, - 1039, 960, 1045, 30, -887, 23, -887, 102, -887, 966, - 983, 217, 19, 226, 993, 34, -887, -887, 558, 995, - 468, 558, 558, 558, 558, 558, 558, 558, 558, 558, - 558, 493, 558, 558, 558, 558, 558, -887, 558, -887, - -887, 1061, 1093, 1098, 1103, 1105, 1113, 233, 1115, 1119, - 361, 1120, 1128, 1130, 1114, 190, 1065, 575, -887, 830, - 208, -887, 1035, -887, 20, 1042, 530, 855, 855, 855, - 855, 855, 855, 855, 855, 855, 855, 506, 855, 855, - 855, 855, 855, 1006, 797, 221, 223, -887, -887, -887, - 558, 341, 62, 535, 1014, 413, 1032, 1159, 225, 1151, - 1044, 227, -887, 1057, -887, 1069, -887, 1070, -887, 1146, - 1041, 1043, 1049, 558, -887, -887, -887, -887, -887, 377, - 1053, -887, -887, 379, 1063, 1187, -887, -887, 1152, 4, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, 1036, - -887, -887, -887, -887, 1062, -887, -887, -887, 380, -887, - 1126, 1157, -887, -887, -887, -887, -887, -887, -887, -887, - 362, 1067, 1094, 1102, 1161, 1106, 233, 1165, 1091, 233, - -887, 1201, 1202, 1096, -887, 494, 1222, -887, -887, -887, - 855, -887, -887, -887, 429, -887, -887, 1104, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -36, -19, - -887, 1186, 558, 1190, 197, 845, 431, 549, 590, 624, - 650, 657, 778, 784, 798, 891, 905, -887, 468, 468, - 995, 995, 1129, 911, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - 381, 558, -887, 1196, 1193, -887, 389, -887, 1127, 994, - 1008, 1038, 1050, 1078, 1095, 1109, 1122, 1140, 1147, -887, - 530, 530, 1042, 1042, 1129, -887, -887, -887, 390, -887, - 395, 1153, 24, 1135, -887, -887, 27, 558, -887, -887, - -887, -887, -887, -887, 423, -887, -887, -887, 428, -887, - -887, -887, 1142, 1263, -887, -887, 1200, -887, 229, -887, - 376, -887, 1118, -887, -887, -887, 1237, -887, 444, 1244, - -887, -887, -887, -887, -887, -887, 233, 63, 1207, 233, - 1208, 1209, -887, 1177, -887, -887, 1314, 199, 855, 1211, - 102, -887, 742, 742, 742, 226, -887, 233, -887, 1321, - 1218, 1332, 1316, 558, 558, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, 1210, -887, 1224, 558, - -887, -887, -887, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, 62, -887, -887, -887, - 558, 1160, -887, -887, 1041, 558, -887, -887, 435, -887, - 440, 1317, 1212, 1036, -887, -887, -887, 1239, 1253, 1255, - 233, 1233, 233, 233, -887, 558, -887, 1234, -887, -887, - 1241, 59, 182, 213, 150, 1252, 558, -887, 558, 1235, - 80, 1242, 845, -887, -887, 1248, 1167, -887, 1369, 1257, - -887, -887, -887, 1279, -887, 233, 233, 233, 1285, -887, - 1264, 1265, 1266, -887, 742, -887, -887, -887, 233, -887, - 1272, 1280, 1375, 1270, 1383, 1306, -887, -887, -887, 558, - -887, 17, 1300, -887, 1301, 233, -887, -887, -887, 478, - 1277, -887, -887, -887, 1389, 1278, 74, 1290, 1363, -887, - 233, 183, 1284, -887, -887, -887, 1393, -887, -887, 367, - 510, 558, 77, -887, -887, -887, 1281, 1309, 1310, -887, - -887, -887, -887, 1173, -887, -887, 558, -887, -887, -887, - 233, 233, -887, 1180, 1312, -887, -887, 233, -887 + 991, -66, -28, 275, 93, 36, -8, -4, 118, -16, + 122, 157, 185, 189, 295, 447, -71, 212, 58, 226, + 67, 326, 236, 143, 326, 339, 316, -795, 296, 312, + 326, 340, 503, 483, 497, 159, 194, 326, 462, 488, + 489, 326, 648, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, 548, 221, -795, + 464, 541, 437, 64, -34, 533, 441, 534, 539, 588, + -795, 762, 1, 188, 218, 268, 556, 539, 610, -795, + 491, 459, 101, 559, 571, -795, 1115, 6, 163, 573, + -795, 1115, 165, 219, 529, 233, 612, 510, 856, 798, + 798, 260, 101, 511, -795, 41, -795, 464, -795, 1160, + 287, -795, 1045, 289, 331, 549, 342, 554, 370, 566, + 378, 379, -795, -795, 532, 620, -31, 78, -795, 667, + -40, -795, -795, 542, -795, 553, -795, -795, 641, 310, + -795, 645, 403, 692, 43, -795, 653, -795, 701, -795, + 703, 707, -795, 710, 716, -795, 717, 722, 723, 724, + 733, -795, -795, 737, 739, 751, 759, 766, 771, -795, + -795, 773, 774, -795, 777, -795, -795, -795, 781, 802, + 803, 813, -795, -795, 816, 817, 135, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, 819, 760, -795, + 775, -795, 780, 190, -795, 720, 782, 726, 786, 206, + -795, 792, 738, 796, 256, -795, 693, 48, -795, 53, + 825, 699, 743, -795, 156, 734, 745, 844, -795, -795, + 243, -795, -795, -795, -795, 820, 821, 37, -795, -795, + -795, 744, 559, 559, 748, 749, 752, 753, 755, 768, + 769, 770, 787, 788, 559, 522, 801, 55, -795, 878, + 893, 898, 901, 925, 926, -795, -795, -795, 929, 930, + 932, 937, -795, 938, -795, 939, 940, -795, -795, 252, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, 806, 59, 253, -795, -795, -795, 862, + 866, -795, 833, -795, -795, -795, 830, 856, 856, 835, + 836, 837, 838, 851, 852, 853, 857, 858, 864, 856, + 730, -795, 254, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, 271, -795, 81, + 25, 384, -795, -795, -795, 386, -795, -795, 408, -795, + -795, 989, -795, 416, -795, -795, -795, -795, -795, 908, + 956, -795, -795, 911, 958, -795, -795, 914, 961, -795, + -795, 883, 887, 976, 224, 1023, -795, -795, 1006, 464, + 900, -795, -795, 902, 74, 981, 903, 191, 984, 559, + -795, -795, -795, 1026, 996, 910, 1025, 1027, 1028, 1032, + 1033, 1035, 1041, 1053, 361, 1057, 1049, 1055, 1056, 1058, + 998, 7, 948, 1059, 1062, 1073, 1037, 1038, 762, 197, + 1040, 1087, 990, -795, -795, -795, 62, 994, 244, 1000, + -795, -795, 1002, 244, 1007, -795, -795, 10, -795, -795, + -795, 1046, 986, 1071, 31, -795, 24, -795, 71, -795, + 1008, 1012, 68, 459, 234, 1019, 50, -795, -795, 559, + 1015, 531, 559, 559, 559, 559, 559, 559, 559, 559, + 559, 559, 453, 559, 559, 559, 559, 559, -795, 559, + -795, -795, 1114, 1119, 1121, 1129, 1131, 1132, 244, 1134, + 1143, 366, 1144, 1145, 1147, 1115, 227, 1095, 576, -795, + 831, 261, -795, 1067, -795, 10, 1024, 634, 856, 856, + 856, 856, 856, 856, 856, 856, 856, 856, 494, 856, + 856, 856, 856, 856, 1043, 798, 263, 305, -795, -795, + -795, 559, 446, 56, 41, 1044, 464, 1047, 1160, 314, + 1162, 1045, 348, -795, 1080, -795, 1086, -795, 1090, -795, + 1175, 1065, 1066, 1070, 559, -795, -795, -795, -795, -795, + 380, 1076, -795, -795, 381, 1078, 1181, -795, -795, 1190, + 5, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + 1077, -795, -795, -795, -795, 1082, -795, -795, -795, 383, + -795, 1172, 1177, -795, -795, -795, -795, -795, -795, -795, + -795, 521, 1094, 1118, 1122, 1185, 1130, 244, 1191, 1113, + 244, -795, 1225, 1231, 1128, -795, 539, 1262, -795, -795, + -795, 856, -795, -795, -795, 421, -795, -795, 1138, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, 152, + -9, -795, 1238, 559, 1245, 175, 846, 423, 507, 550, + 591, 625, 651, 658, 779, 785, 799, 892, -795, 531, + 531, 1015, 1015, 1195, 906, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, 389, 559, -795, 1259, 1188, -795, 390, -795, 1178, + 912, 995, 1009, 1039, 1051, 1079, 1096, 1110, 1123, 1141, + -795, 634, 634, 1024, 1024, 1195, -795, -795, -795, 391, + -795, 395, 1148, 25, 1186, -795, -795, 30, 559, -795, + -795, -795, -795, -795, -795, 396, -795, -795, -795, 417, + -795, -795, -795, 1187, 1271, -795, -795, 1194, -795, 364, + -795, 374, -795, 1196, -795, -795, -795, 1282, -795, 424, + 1283, -795, -795, -795, -795, -795, -795, 244, 62, 1232, + 244, 1234, 1247, -795, 1213, -795, -795, 1352, 210, 856, + 1204, 71, -795, 743, 743, 743, 234, -795, 244, -795, + 1358, 1212, 1360, 1343, 559, 559, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, 1237, -795, 1218, + 559, -795, -795, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, 56, -795, -795, + -795, 559, 1154, -795, -795, 1065, 559, -795, -795, 430, + -795, 439, 1356, 1248, 1077, -795, -795, -795, 1280, 1281, + 1291, 244, 1261, 244, 244, -795, 559, -795, 1227, -795, + -795, 1269, 57, 183, 214, 231, 1257, 559, -795, 559, + 1267, 13, 1236, 846, -795, -795, 1242, 1161, -795, 1396, + 1250, -795, -795, -795, 1295, -795, 244, 244, 244, 1297, + -795, 1275, 1276, 1260, -795, 743, -795, -795, -795, 244, + -795, 1266, 1273, 1385, 1274, 1387, 1310, -795, -795, -795, + 559, -795, 18, 1304, -795, 1305, 244, -795, -795, -795, + 479, 1285, -795, -795, -795, 1391, 1286, 60, 1284, 1365, + -795, 244, 220, 1288, -795, -795, -795, 1394, -795, -795, + 523, 546, 559, 145, -795, -795, -795, 1287, 1312, 1314, + -795, -795, -795, -795, 1168, -795, -795, 559, -795, -795, + -795, 244, 244, -795, 1174, 1315, -795, -795, 244, -795 }; /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE @@ -2484,133 +2484,133 @@ namespace yy { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 422, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 28, 29, 43, 44, 45, 42, 5, 6, 11, 8, 9, 10, 7, 12, 13, 14, 15, 16, 17, 18, 22, 24, 23, 19, 20, 21, 25, 26, 27, 30, 31, 32, 37, 38, 33, - 34, 35, 36, 39, 40, 41, 391, 0, 0, 202, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, - 289, 0, 0, 0, 0, 0, 0, 0, 0, 122, - 0, 0, 0, 0, 0, 373, 0, 0, 0, 0, - 369, 0, 0, 0, 73, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 207, 0, 197, 0, 212, 0, - 0, 425, 0, 0, 0, 55, 0, 61, 0, 67, - 0, 0, 1, 3, 0, 0, 388, 0, 384, 0, - 0, 205, 206, 0, 79, 0, 46, 401, 0, 0, - 395, 0, 0, 0, 0, 111, 0, 479, 0, 496, - 0, 0, 484, 0, 0, 462, 0, 0, 0, 0, - 0, 476, 477, 0, 0, 0, 0, 0, 0, 498, - 472, 0, 0, 483, 0, 497, 478, 461, 0, 0, - 0, 0, 482, 480, 0, 0, 0, 294, 330, 319, - 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 315, 316, 317, 318, 320, 321, 322, 323, 324, 325, - 326, 327, 328, 329, 331, 332, 333, 238, 0, 291, - 0, 255, 0, 0, 252, 0, 0, 0, 0, 0, - 274, 0, 0, 0, 0, 268, 0, 0, 115, 0, - 0, 0, 0, 436, 0, 0, 0, 0, 492, 491, - 0, 407, 408, 409, 410, 0, 0, 0, 165, 84, + 34, 35, 36, 39, 40, 41, 392, 0, 0, 202, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, + 290, 0, 0, 0, 0, 0, 0, 0, 0, 122, + 0, 0, 0, 0, 0, 374, 0, 0, 0, 0, + 370, 0, 0, 0, 73, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 207, 0, 197, 0, 213, 0, + 0, 426, 0, 0, 0, 55, 0, 61, 0, 67, + 0, 0, 1, 3, 0, 0, 389, 0, 385, 0, + 0, 205, 206, 0, 79, 0, 46, 402, 0, 0, + 396, 0, 0, 0, 0, 111, 0, 480, 0, 497, + 0, 0, 485, 0, 0, 463, 0, 0, 0, 0, + 0, 477, 478, 0, 0, 0, 0, 0, 0, 499, + 473, 0, 0, 484, 0, 498, 479, 462, 0, 0, + 0, 0, 483, 481, 0, 0, 0, 295, 331, 320, + 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, + 316, 317, 318, 319, 321, 322, 323, 324, 325, 326, + 327, 328, 329, 330, 332, 333, 334, 239, 0, 292, + 0, 256, 0, 0, 253, 0, 0, 0, 0, 0, + 275, 0, 0, 0, 0, 269, 0, 0, 115, 0, + 0, 0, 0, 437, 0, 0, 0, 0, 493, 492, + 0, 408, 409, 410, 411, 0, 0, 0, 165, 84, 85, 83, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, - 0, 0, 0, 0, 0, 441, 442, 443, 0, 0, - 0, 0, 485, 0, 449, 0, 0, 378, 379, 0, - 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, - 228, 229, 231, 232, 233, 234, 235, 236, 237, 230, - 377, 375, 381, 0, 0, 0, 371, 368, 76, 71, + 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, + 0, 0, 0, 0, 0, 442, 443, 444, 0, 0, + 0, 0, 486, 0, 450, 0, 0, 379, 380, 0, + 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, + 229, 230, 232, 233, 234, 235, 236, 237, 238, 231, + 378, 376, 382, 0, 0, 0, 372, 369, 76, 71, 0, 52, 0, 77, 140, 141, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 423, 139, 0, 337, 342, 338, 339, 340, 341, 343, - 344, 345, 346, 347, 348, 349, 350, 0, 48, 0, - 0, 0, 210, 211, 0, 200, 201, 0, 217, 214, - 0, 431, 0, 430, 432, 427, 362, 58, 53, 0, - 49, 64, 59, 0, 50, 70, 65, 0, 51, 357, - 0, 0, 0, 0, 0, 382, 383, 0, 0, 0, - 80, 47, 0, 0, 0, 0, 0, 0, 0, 109, - 110, 243, 0, 0, 0, 0, 0, 0, 0, 0, + 424, 139, 0, 338, 343, 339, 340, 341, 342, 344, + 345, 346, 347, 348, 349, 350, 351, 0, 48, 0, + 0, 0, 210, 211, 212, 0, 200, 201, 0, 218, + 215, 0, 432, 0, 431, 433, 428, 363, 58, 53, + 0, 49, 64, 59, 0, 50, 70, 65, 0, 51, + 358, 0, 0, 0, 0, 0, 383, 384, 0, 0, + 0, 80, 47, 0, 0, 0, 0, 0, 0, 0, + 109, 110, 244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 240, 0, 254, 250, 251, 283, 0, 283, 0, 272, - 273, 0, 283, 0, 266, 267, 0, 113, 114, 106, - 0, 0, 0, 0, 134, 0, 135, 0, 130, 0, - 0, 0, 0, 0, 0, 0, 163, 164, 0, 91, - 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 81, 0, 358, - 359, 0, 0, 0, 0, 0, 0, 283, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, - 0, 74, 72, 78, 0, 147, 148, 0, 0, 0, + 0, 241, 0, 255, 251, 252, 284, 0, 284, 0, + 273, 274, 0, 284, 0, 267, 268, 0, 113, 114, + 106, 0, 0, 0, 0, 134, 0, 135, 0, 130, + 0, 0, 0, 0, 0, 0, 0, 163, 164, 0, + 91, 92, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, + 359, 360, 0, 0, 0, 0, 0, 0, 284, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, + 0, 0, 74, 72, 78, 0, 147, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 162, 195, 196, - 0, 0, 187, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 56, 54, 62, 60, 68, 66, 392, 0, - 388, 0, 0, 0, 434, 204, 203, 404, 399, 0, - 0, 398, 393, 0, 0, 0, 463, 453, 0, 0, - 495, 456, 481, 444, 486, 487, 459, 460, 465, 468, - 469, 466, 474, 475, 464, 471, 470, 455, 454, 0, - 457, 458, 473, 493, 0, 494, 293, 290, 0, 239, - 0, 0, 278, 285, 279, 284, 281, 286, 280, 282, - 0, 0, 0, 260, 0, 0, 283, 0, 0, 283, - 246, 0, 0, 0, 108, 0, 0, 123, 132, 133, - 0, 137, 120, 119, 0, 118, 121, 0, 126, 124, - 489, 490, 406, 417, 419, 420, 421, 418, 0, 411, - 415, 0, 0, 0, 0, 104, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 82, 87, 86, - 88, 89, 90, 0, 440, 448, 433, 439, 445, 446, - 488, 437, 447, 452, 451, 438, 435, 450, 380, 374, - 0, 0, 366, 0, 0, 370, 0, 75, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, - 143, 142, 144, 145, 146, 424, 336, 334, 0, 351, - 0, 0, 0, 0, 192, 193, 0, 0, 209, 208, - 199, 198, 216, 213, 0, 499, 429, 426, 0, 57, - 63, 69, 0, 0, 390, 389, 0, 400, 0, 394, - 0, 112, 501, 503, 505, 504, 0, 355, 0, 0, - 292, 241, 256, 288, 287, 253, 283, 283, 0, 283, - 0, 0, 271, 0, 245, 244, 0, 0, 0, 0, - 0, 128, 0, 0, 0, 0, 405, 283, 416, 0, - 0, 0, 0, 0, 0, 103, 93, 94, 95, 96, - 97, 98, 99, 100, 101, 102, 0, 376, 0, 0, - 364, 372, 161, 149, 150, 151, 152, 153, 154, 155, - 156, 157, 158, 335, 352, 194, 186, 185, 189, 190, - 0, 0, 215, 428, 388, 0, 385, 402, 0, 396, - 0, 0, 0, 0, 467, 500, 257, 0, 0, 0, - 283, 0, 283, 283, 269, 0, 107, 0, 136, 117, - 0, 0, 0, 0, 412, 0, 0, 168, 0, 176, - 0, 0, 105, 361, 367, 0, 0, 191, 0, 0, - 403, 397, 502, 0, 356, 283, 283, 283, 0, 277, - 0, 0, 0, 159, 0, 131, 127, 125, 283, 413, - 0, 0, 0, 171, 0, 0, 167, 365, 188, 0, - 386, 283, 262, 258, 261, 283, 275, 270, 116, 0, - 0, 170, 169, 175, 0, 173, 0, 0, 0, 354, - 283, 0, 0, 129, 414, 172, 0, 249, 182, 0, - 0, 0, 0, 181, 180, 387, 0, 263, 0, 276, - 174, 248, 247, 0, 179, 166, 0, 178, 177, 353, - 283, 283, 184, 0, 264, 259, 183, 283, 265 + 0, 0, 0, 0, 0, 0, 0, 0, 162, 195, + 196, 0, 0, 187, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 56, 54, 62, 60, 68, 66, 393, + 0, 389, 0, 0, 0, 435, 204, 203, 405, 400, + 0, 0, 399, 394, 0, 0, 0, 464, 454, 0, + 0, 496, 457, 482, 445, 487, 488, 460, 461, 466, + 469, 470, 467, 475, 476, 465, 472, 471, 456, 455, + 0, 458, 459, 474, 494, 0, 495, 294, 291, 0, + 240, 0, 0, 279, 286, 280, 285, 282, 287, 281, + 283, 0, 0, 0, 261, 0, 0, 284, 0, 0, + 284, 247, 0, 0, 0, 108, 0, 0, 123, 132, + 133, 0, 137, 120, 119, 0, 118, 121, 0, 126, + 124, 490, 491, 407, 418, 420, 421, 422, 419, 0, + 412, 416, 0, 0, 0, 0, 104, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 82, 87, + 86, 88, 89, 90, 0, 441, 449, 434, 440, 446, + 447, 489, 438, 448, 453, 452, 439, 436, 451, 381, + 375, 0, 0, 367, 0, 0, 371, 0, 75, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 138, 143, 142, 144, 145, 146, 425, 337, 335, 0, + 352, 0, 0, 0, 0, 192, 193, 0, 0, 209, + 208, 199, 198, 217, 214, 0, 500, 430, 427, 0, + 57, 63, 69, 0, 0, 391, 390, 0, 401, 0, + 395, 0, 112, 502, 504, 506, 505, 0, 356, 0, + 0, 293, 242, 257, 289, 288, 254, 284, 284, 0, + 284, 0, 0, 272, 0, 246, 245, 0, 0, 0, + 0, 0, 128, 0, 0, 0, 0, 406, 284, 417, + 0, 0, 0, 0, 0, 0, 103, 93, 94, 95, + 96, 97, 98, 99, 100, 101, 102, 0, 377, 0, + 0, 365, 373, 161, 149, 150, 151, 152, 153, 154, + 155, 156, 157, 158, 336, 353, 194, 186, 185, 189, + 190, 0, 0, 216, 429, 389, 0, 386, 403, 0, + 397, 0, 0, 0, 0, 468, 501, 258, 0, 0, + 0, 284, 0, 284, 284, 270, 0, 107, 0, 136, + 117, 0, 0, 0, 0, 413, 0, 0, 168, 0, + 176, 0, 0, 105, 362, 368, 0, 0, 191, 0, + 0, 404, 398, 503, 0, 357, 284, 284, 284, 0, + 278, 0, 0, 0, 159, 0, 131, 127, 125, 284, + 414, 0, 0, 0, 171, 0, 0, 167, 366, 188, + 0, 387, 284, 263, 259, 262, 284, 276, 271, 116, + 0, 0, 170, 169, 175, 0, 173, 0, 0, 0, + 355, 284, 0, 0, 129, 415, 172, 0, 250, 182, + 0, 0, 0, 0, 181, 180, 388, 0, 264, 0, + 277, 174, 249, 248, 0, 179, 166, 0, 178, 177, + 354, 284, 284, 184, 0, 265, 260, 183, 284, 266 }; /* YYPGOTO[NTERM-NUM]. */ const short int parser::yypgoto_[] = { - -887, -887, 1398, -887, -887, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -887, -887, -296, -887, -887, - -887, -887, -102, -172, -887, -887, 1164, -887, 592, -887, - -887, -887, -887, -887, -887, -780, -501, -108, -491, -887, - -887, -887, 1311, -234, -887, -887, -887, -887, 652, -887, - -887, 841, -887, -887, 997, -887, -887, 844, -887, -887, - -116, -20, -561, 437, -887, -887, 1185, -887, -887, -886, - -887, -887, 1176, -887, -887, 1182, -793, -468, -887, -887, - 965, -887, 1323, 860, -887, 542, -887, -887, -887, -887, - 1139, -887, -887, -887, -887, -887, -887, 893, 1337, -887, - -887, -887, 1302, -578, -887, -887, -887, -887, -887, 938, - -887, 606, -676, -887, -887, -887, -887, -887, 852, -887, - -82, -887, 1353, -887, -887, -887, -887, -887, -887, -887, - -92, -887, -887, -124, -477, -887, -887, -887, -887, -887, - -887, -887, -887, -887, -887, -87, -77, -887, -887, -887, - -887, -887, -887, -887, -887, -76, -887, -887, -887, -887, - -887, -73, -71, -70, -69, -68, -66, -887, -887, -887, - -887, -887, -887, -887, -65, -62, -60, -887, -887, -887, - -887, -887, 825, -887, 985 + -795, -795, 1400, -795, -795, -795, -795, -795, -795, -795, + -795, -795, -795, -795, -795, -795, -795, -296, -795, -795, + -795, -795, -102, -172, -795, -795, 1167, -795, 594, -795, + -795, -795, -795, -795, -795, -745, -503, -108, -492, -795, + -795, -795, 1316, -206, -795, -795, -795, -795, 654, -795, + -795, 840, -795, -795, 1001, -795, -795, 845, -795, -795, + -116, -20, -562, 438, -795, -795, 1189, -795, -795, -728, + -795, -795, 1179, -795, -795, 1192, -794, -468, -795, -795, + 966, -795, 1325, 861, -795, 543, -795, -795, -795, -795, + 1142, -795, -795, -795, -795, -795, -795, 895, 1337, -795, + -795, -795, 1306, -579, -795, -795, -795, -795, -795, 941, + -795, 606, -677, -795, -795, -795, -795, -795, 854, -795, + -82, -795, 1357, -795, -795, -795, -795, -795, -795, -795, + -92, -795, -795, -111, -478, -795, -795, -795, -110, -795, + -795, -795, -795, -795, -795, -89, -87, -795, -795, -795, + -795, -795, -795, -795, -795, -74, -795, -795, -795, -795, + -795, -72, -70, -69, -68, -67, -65, -795, -795, -795, + -795, -795, -795, -795, -62, -60, -56, -795, -795, -795, + -795, -795, 826, -795, 987 }; /* YYDEFGOTO[NTERM-NUM]. */ @@ -2618,24 +2618,24 @@ namespace yy parser::yydefgoto_[] = { -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 146, 148, 150, 125, 51, 52, 53, 315, 726, 54, - 281, 55, 174, 175, 56, 277, 278, 704, 705, 57, - 282, 854, 853, 930, 707, 513, 514, 515, 516, 391, - 58, 59, 297, 298, 940, 1012, 60, 601, 602, 61, - 414, 415, 62, 160, 161, 63, 411, 412, 64, 417, - 337, 102, 693, 1014, 65, 263, 264, 265, 681, 916, - 66, 274, 275, 67, 269, 270, 682, 917, 68, 216, - 217, 69, 392, 393, 70, 827, 828, 71, 72, 317, + 146, 148, 150, 125, 51, 52, 53, 315, 727, 54, + 281, 55, 174, 175, 56, 277, 278, 705, 706, 57, + 282, 855, 854, 931, 708, 514, 515, 516, 517, 391, + 58, 59, 297, 298, 941, 1013, 60, 602, 603, 61, + 415, 416, 62, 160, 161, 63, 411, 412, 64, 418, + 337, 102, 694, 1015, 65, 263, 264, 265, 682, 917, + 66, 274, 275, 67, 269, 270, 683, 918, 68, 216, + 217, 69, 392, 393, 70, 828, 829, 71, 72, 317, 318, 73, 74, 364, 75, 76, 77, 338, 339, 78, - 79, 157, 158, 444, 80, 81, 82, 83, 290, 291, - 718, 719, 720, 84, 128, 593, 85, 422, 423, 340, + 79, 157, 158, 445, 80, 81, 82, 83, 290, 291, + 719, 720, 721, 84, 128, 594, 85, 423, 424, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 220, 221, 222, 223, 224, 225, 226, 395, 396, 229, 230, 231, 232, 233, 234, 235, 236, 397, 238, 239, 240, 241, 242, 398, 399, 400, 401, 402, 403, 359, 249, 250, 360, 292, 293, 294, 404, 405, 406, 254, 255, 256, - 424, 665, 823, 639, 640 + 425, 666, 824, 640, 641 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If @@ -2645,153 +2645,153 @@ namespace yy const short int parser::yytable_[] = { - 117, 118, 460, 122, 123, 279, 529, 530, 162, 219, - 131, 413, 698, 768, 227, 140, 143, 144, 541, 218, - 390, 151, 699, 418, 228, 237, 421, 683, 243, 685, - 244, 245, 246, 247, 688, 248, 251, 394, 394, 252, - 706, 253, 813, 858, 918, 822, 700, 99, 657, 673, - 713, 697, 94, 88, 96, 416, 598, 722, 675, 898, - 257, 690, 374, 527, 155, 599, 459, 567, 899, 672, - 983, 375, 931, 932, 933, 507, 509, 165, 549, 260, - 965, 445, 568, 295, 621, 287, 677, 93, 493, 750, - 855, 374, 526, 622, 794, 673, 288, 674, 442, 376, - 375, 99, 295, 795, 675, 676, 1007, 460, 295, 1007, - 714, 597, 289, 856, 173, 690, 320, 258, 690, 453, - 98, 973, 443, 276, 173, 454, 316, 628, 376, 156, - 569, 857, 677, 95, 715, 97, 261, 702, 716, 717, - 259, 678, 99, 1008, 680, 1035, 1024, 691, 692, 703, - 588, 589, 590, 591, 103, 592, 260, 377, 378, 824, - 723, 638, 635, 379, 380, 381, 382, 383, 384, 385, - 386, 387, 701, 998, 600, 527, 262, 900, 388, 679, - 389, 632, 512, 724, 989, 166, 377, 378, 796, 672, - 680, 296, 379, 380, 381, 382, 383, 384, 385, 386, - 387, 1009, 1010, 966, 1009, 1010, 974, 388, 1018, 389, - 296, 512, 797, 261, 374, 266, 296, 674, 840, 713, - 926, 843, 667, 375, 1011, 676, 1025, 1026, 271, 975, - 104, 257, 725, 99, 967, 727, 728, 729, 730, 731, - 732, 733, 734, 735, 736, 374, 738, 739, 740, 741, - 742, 376, 743, 262, 375, 99, 105, 99, 858, 99, - 126, 678, 99, 710, 99, 673, 155, 266, 173, 575, - 576, 271, 267, 764, 675, 167, 499, 99, 127, 714, - 504, 587, 376, 168, 711, 272, 862, 456, 258, 170, - 99, 106, 99, 457, 99, 713, 99, 171, 99, 679, - 968, 257, 677, 715, 791, 257, 863, 716, 717, 377, - 378, 361, 268, 100, 101, 379, 380, 381, 382, 383, - 384, 385, 386, 387, 267, 273, 948, 816, 272, 257, - 388, 156, 389, 369, 512, 115, 116, 120, 121, 759, - 377, 378, 138, 139, 141, 142, 379, 380, 381, 382, - 383, 384, 385, 386, 387, 714, 111, 765, 258, 112, - 680, 388, 258, 389, 268, 512, 162, 257, 273, 919, - 787, 921, 789, 706, 803, 113, 807, 257, 907, 715, - 257, 362, 257, 716, 717, 366, 258, 428, 91, 935, - 370, 114, 649, 753, 833, 219, 99, 92, 283, 1021, - 227, 650, 754, 834, 448, 218, 432, 119, 844, 367, - 228, 237, 124, 371, 243, 129, 244, 245, 246, 247, - 130, 248, 251, 132, 258, 252, 860, 253, 436, 449, - 698, 698, 698, 629, 258, 1013, 633, 258, 257, 258, - 699, 699, 699, 145, 429, 99, 257, 408, 257, 257, - 257, 1027, 958, 133, 960, 961, 284, 419, 257, 257, - 425, 147, 426, 433, 257, 878, 285, 430, 668, 769, - 770, 771, 772, 773, 774, 775, 776, 777, 778, 413, - 780, 781, 782, 783, 784, 437, 434, 982, 698, 984, - 792, 802, 257, 149, 421, 258, 793, 257, 699, 1003, - 990, 901, 394, 258, 257, 258, 258, 258, 438, 257, - 374, 487, 517, 999, 154, 258, 258, 1002, 439, 375, - 159, 258, 163, 416, 164, 909, 817, 522, 819, 830, - 877, 564, 1017, 564, 594, 594, 488, 518, 881, 893, - 603, 169, 1022, 172, 894, 760, 605, 376, 607, 258, - 766, 845, 523, 610, 258, 850, 565, 864, 570, 595, - 596, 258, 1034, 173, 176, 604, 258, 941, 942, 1038, - 913, 606, 902, 608, 276, 788, 790, 903, 611, 280, - 851, 316, 865, 945, 950, 86, 87, 363, 804, 951, - 299, 808, 849, 847, 368, 914, 372, 544, 545, 300, - 546, 89, 90, 373, 946, 377, 378, 107, 108, 949, - 410, 379, 380, 381, 382, 383, 384, 385, 386, 387, - 542, 543, 544, 545, 330, 546, 388, 301, 389, 962, - 512, 109, 110, 588, 589, 590, 591, 427, 592, 431, - 970, 435, 971, 440, 737, 134, 135, 152, 542, 543, - 544, 545, 441, 546, 1, 2, 3, 779, 447, 590, - 591, 4, 592, 136, 137, 5, 6, 7, 450, 8, - 547, 9, 10, 11, 12, 460, 542, 543, 544, 545, - 451, 546, 452, 997, 13, 302, 303, 14, 455, 458, - 461, 304, 305, 306, 307, 308, 309, 310, 311, 312, - 866, 462, 542, 543, 544, 545, 313, 546, 314, 463, - 15, 16, 17, 464, 465, 1023, 18, 542, 543, 544, - 545, 466, 546, 467, 762, 468, 19, 20, 21, 469, - 1033, 22, 470, 23, 24, 25, 26, 27, 471, 472, - 927, 867, 28, 29, 473, 474, 475, 30, 31, 32, - 33, 542, 543, 544, 545, 476, 546, 34, 35, 477, - 36, 478, 479, 480, 37, 490, 177, 38, 39, 40, - 41, 178, 179, 481, 374, 868, 180, 542, 543, 544, - 545, 482, 546, 375, 542, 543, 544, 545, 483, 546, - 181, 182, 183, 484, 184, 485, 486, 185, 908, 489, - 910, 869, 177, 491, 186, 187, 188, 178, 870, 189, - 190, 376, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, 201, 202, 492, 495, 181, 182, 496, 203, - 184, 204, 205, 185, 206, 498, 207, 299, 497, 502, - 186, 510, 506, 501, 208, 511, 300, 521, 503, 524, - 525, 528, 209, 210, 519, 211, 588, 589, 590, 591, - 531, 592, 299, 551, 532, 203, 552, 212, 159, 377, - 378, 300, 207, 213, 301, 379, 380, 381, 382, 383, - 384, 385, 386, 387, 520, 214, 215, 374, 553, 554, - 388, 211, 389, 533, 512, 534, 375, 535, 536, 301, - 555, 537, 538, 212, 539, 542, 543, 544, 545, 213, - 546, 542, 543, 544, 545, 556, 546, 540, 548, 557, - 558, 214, 215, 559, 376, 542, 543, 544, 545, 871, - 546, 566, 302, 303, 571, 872, 560, 561, 304, 305, - 306, 307, 308, 309, 310, 311, 312, 562, 563, 873, - 572, 573, 609, 313, 574, 314, 763, 302, 303, 577, - 578, 579, 580, 304, 305, 306, 307, 308, 309, 310, - 311, 312, 542, 543, 544, 545, 581, 546, 313, 582, - 314, 583, 377, 378, 584, 585, 586, 612, 379, 380, - 381, 382, 383, 384, 385, 386, 387, 1, 2, 3, - 613, 614, 615, 388, 4, 389, 617, 618, 5, 6, - 7, 619, 8, 616, 9, 10, 11, 12, 542, 543, - 544, 545, 620, 546, 623, 624, 630, 13, 626, 627, - 14, 631, 542, 543, 544, 545, 634, 546, 542, 543, - 544, 545, 874, 546, 636, 637, 641, 319, 638, 648, - 642, 643, 644, 15, 16, 17, 875, 645, 320, 18, - 321, 322, 876, 646, 647, 651, 652, 653, 654, 19, - 20, 21, 655, 656, 22, 660, 23, 24, 25, 26, - 27, 661, 323, 324, 659, 28, 29, 186, 662, 663, - 30, 31, 32, 33, 283, 670, 671, 664, 669, 684, - 34, 35, 744, 36, 686, 687, 689, 37, 694, 695, - 38, 39, 40, 41, 696, 708, 325, 319, 326, 721, - 327, 588, 589, 590, 591, 745, 592, 546, 320, 329, - 321, 322, 709, 330, 761, 588, 589, 590, 591, 746, - 592, 331, 332, 333, 747, 883, 748, 334, 335, 336, - 767, 159, 323, 324, 749, 785, 751, 186, 420, 884, - 752, 755, 319, 799, 283, 588, 589, 590, 591, 756, - 592, 757, 809, 320, 592, 321, 322, 588, 589, 590, - 591, 801, 592, 805, 810, 811, 325, 812, 326, 885, - 327, 443, 826, 822, 814, 831, 328, 323, 324, 329, - 815, 886, 186, 330, 818, 588, 589, 590, 591, 283, - 592, 331, 332, 333, 820, 829, 835, 334, 335, 336, - 836, 159, 588, 589, 590, 591, 832, 592, 837, 887, - 838, 325, 839, 326, 841, 327, 588, 589, 590, 591, - 842, 592, 844, 845, 329, 848, 888, 846, 330, 588, - 589, 590, 591, 852, 592, 859, 331, 332, 333, 861, - 889, -1, 334, 335, 336, 879, 159, 588, 589, 590, - 591, 911, 592, 890, 588, 589, 590, 591, 882, 592, - 542, 543, 544, 545, 897, 546, 905, 542, 543, 544, - 545, 891, 546, 904, 542, 543, 544, 545, 892, 546, - 542, 543, 544, 545, 895, 546, 912, 542, 543, 544, - 545, 947, 546, 915, 542, 543, 544, 545, 978, 546, - 542, 543, 544, 545, 1032, 546, 924, 542, 543, 544, - 545, 1036, 546, 920, 922, 923, 821, 925, 588, 589, - 590, 591, 880, 592, 936, 542, 543, 544, 545, 906, - 546, 542, 543, 544, 545, 938, 546, 939, 952, 943, - 928, 588, 589, 590, 591, 955, 592, 937, 953, 542, - 543, 544, 545, 944, 546, 542, 543, 544, 545, 956, - 546, 957, 959, 963, 542, 543, 544, 545, 972, 546, - 964, 976, 979, 542, 543, 544, 545, 977, 546, 542, - 543, 544, 545, 969, 546, 981, 980, 542, 543, 544, - 545, 985, 546, 986, 987, 988, 993, 542, 543, 544, - 545, 991, 546, 994, 995, 996, 1000, 1001, 1004, 992, - 1005, 1006, 1016, 1019, 1020, 1030, 1031, 1029, 1037, 1015, - 153, 508, 929, 409, 896, 625, 800, 798, 494, 1028, - 505, 500, 666, 407, 786, 954, 550, 758, 365, 446, - 712, 934, 806, 286, 825, 658 + 117, 118, 461, 122, 123, 279, 530, 531, 162, 219, + 131, 699, 227, 769, 228, 140, 143, 144, 542, 218, + 390, 151, 700, 419, 413, 414, 422, 237, 684, 243, + 686, 244, 245, 246, 247, 689, 248, 394, 394, 251, + 707, 252, 814, 859, 919, 253, 823, 701, 658, 295, + 674, 691, 698, 99, 974, 417, 180, 599, 527, 676, + 714, 94, 899, 374, 460, 96, 600, 568, 673, 508, + 257, 900, 375, 723, 510, 257, 550, 93, 966, 111, + 569, 113, 155, 86, 87, 320, 449, 678, 795, 374, + 751, 528, 1008, 295, 674, 443, 675, 796, 375, 446, + 376, 691, 598, 676, 677, 165, 703, 461, 932, 933, + 934, 450, 173, 295, 711, 167, 91, 276, 704, 444, + 715, 88, 173, 168, 316, 92, 376, 258, 570, 1009, + 330, 678, 258, 100, 101, 712, 99, 692, 693, 975, + 679, 858, 95, 99, 716, 681, 97, 156, 717, 718, + 259, 589, 590, 591, 592, 361, 593, 296, 377, 378, + 825, 639, 976, 636, 379, 380, 381, 382, 383, 384, + 385, 386, 387, 702, 999, 601, 724, 1008, 680, 388, + 901, 389, 797, 513, 377, 378, 691, 1010, 1011, 681, + 379, 380, 381, 382, 383, 384, 385, 386, 387, 725, + 260, 296, 260, 528, 967, 388, 798, 389, 1019, 513, + 1012, 494, 99, 166, 1025, 374, 115, 116, 266, 841, + 990, 296, 844, 629, 375, 155, 673, 500, 99, 984, + 266, 927, 257, 726, 257, 968, 728, 729, 730, 731, + 732, 733, 734, 735, 736, 737, 374, 739, 740, 741, + 742, 743, 376, 744, 675, 375, 622, 261, 859, 261, + 99, 488, 677, 99, 863, 623, 99, 98, 271, 576, + 577, 103, 1010, 1011, 765, 267, 674, 505, 856, 173, + 271, 588, 518, 376, 864, 676, 489, 267, 257, 258, + 156, 258, 120, 121, 1026, 1027, 99, 262, 679, 262, + 714, 857, 369, 714, 1036, 792, 104, 519, 138, 139, + 377, 378, 362, 678, 366, 268, 379, 380, 381, 382, + 383, 384, 385, 386, 387, 272, 949, 268, 817, 257, + 99, 388, 99, 389, 105, 513, 680, 272, 106, 126, + 633, 377, 378, 141, 142, 258, 668, 379, 380, 381, + 382, 383, 384, 385, 386, 387, 257, 127, 257, 370, + 715, 112, 388, 715, 389, 273, 513, 162, 367, 523, + 920, 681, 922, 707, 99, 114, 760, 273, 565, 565, + 595, 969, 371, 99, 716, 119, 258, 716, 717, 718, + 936, 717, 718, 650, 524, 99, 219, 595, 754, 227, + 257, 228, 651, 566, 571, 596, 218, 755, 124, 408, + 766, 429, 788, 258, 237, 258, 243, 99, 244, 245, + 246, 247, 597, 248, 89, 90, 251, 861, 252, 699, + 699, 699, 253, 99, 630, 1014, 420, 634, 426, 433, + 700, 700, 700, 99, 107, 108, 129, 437, 257, 257, + 257, 1028, 257, 959, 790, 961, 962, 258, 257, 257, + 257, 454, 130, 804, 257, 257, 879, 455, 430, 669, + 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, + 427, 781, 782, 783, 784, 785, 257, 699, 983, 132, + 985, 431, 803, 413, 414, 422, 434, 808, 700, 257, + 1004, 991, 902, 394, 438, 258, 258, 258, 257, 258, + 604, 374, 606, 908, 1000, 258, 258, 258, 1003, 435, + 375, 258, 258, 910, 417, 287, 133, 439, 440, 818, + 820, 145, 831, 1018, 608, 605, 288, 607, 878, 882, + 894, 283, 611, 258, 895, 903, 761, 851, 376, 865, + 914, 767, 289, 834, 457, 1022, 258, 147, 149, 609, + 458, 154, 835, 1035, 845, 258, 904, 612, 942, 943, + 1039, 159, 852, 163, 866, 915, 789, 791, 1023, 951, + 543, 544, 545, 546, 946, 547, 164, 846, 952, 805, + 170, 299, 809, 850, 848, 793, 109, 110, 171, 284, + 300, 794, 169, 172, 738, 947, 377, 378, 173, 285, + 950, 176, 379, 380, 381, 382, 383, 384, 385, 386, + 387, 589, 590, 591, 592, 276, 593, 388, 301, 389, + 963, 513, 134, 135, 543, 544, 545, 546, 280, 547, + 316, 971, 363, 972, 368, 780, 136, 137, 152, 543, + 544, 545, 546, 372, 547, 1, 2, 3, 867, 373, + 545, 546, 4, 547, 428, 410, 5, 6, 7, 432, + 8, 548, 9, 10, 11, 12, 461, 543, 544, 545, + 546, 436, 547, 441, 998, 13, 302, 303, 14, 442, + 448, 451, 304, 305, 306, 307, 308, 309, 310, 311, + 312, 868, 452, 543, 544, 545, 546, 313, 547, 314, + 453, 15, 16, 17, 456, 459, 1024, 18, 543, 544, + 545, 546, 462, 547, 463, 763, 464, 19, 20, 21, + 465, 1034, 22, 466, 23, 24, 25, 26, 27, 467, + 468, 928, 869, 28, 29, 469, 470, 471, 30, 31, + 32, 33, 543, 544, 545, 546, 472, 547, 34, 35, + 473, 36, 474, 591, 592, 37, 593, 177, 38, 39, + 40, 41, 178, 179, 475, 374, 870, 180, 543, 544, + 545, 546, 476, 547, 375, 543, 544, 545, 546, 477, + 547, 181, 182, 183, 478, 184, 479, 480, 185, 909, + 481, 911, 871, 177, 482, 186, 187, 188, 178, 872, + 189, 190, 376, 191, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 483, 484, 181, 182, 491, + 203, 184, 204, 205, 185, 206, 485, 207, 299, 486, + 487, 186, 490, 507, 492, 208, 496, 300, 511, 493, + 512, 497, 498, 209, 210, 499, 211, 589, 590, 591, + 592, 502, 593, 299, 503, 504, 203, 522, 212, 159, + 377, 378, 300, 207, 213, 301, 379, 380, 381, 382, + 383, 384, 385, 386, 387, 520, 214, 215, 374, 525, + 526, 388, 211, 389, 529, 513, 521, 375, 532, 533, + 301, 552, 534, 535, 212, 536, 543, 544, 545, 546, + 213, 547, 543, 544, 545, 546, 553, 547, 537, 538, + 539, 554, 214, 215, 555, 376, 543, 544, 545, 546, + 873, 547, 567, 302, 303, 573, 874, 540, 541, 304, + 305, 306, 307, 308, 309, 310, 311, 312, 556, 557, + 875, 549, 558, 559, 313, 560, 314, 764, 302, 303, + 561, 562, 563, 564, 304, 305, 306, 307, 308, 309, + 310, 311, 312, 543, 544, 545, 546, 572, 547, 313, + 575, 314, 574, 377, 378, 578, 579, 580, 581, 379, + 380, 381, 382, 383, 384, 385, 386, 387, 1, 2, + 3, 582, 583, 584, 388, 4, 389, 585, 586, 5, + 6, 7, 610, 8, 587, 9, 10, 11, 12, 543, + 544, 545, 546, 613, 547, 614, 615, 616, 13, 617, + 618, 14, 619, 543, 544, 545, 546, 620, 547, 589, + 590, 591, 592, 876, 593, 621, 624, 625, 319, 627, + 631, 628, 632, 635, 15, 16, 17, 877, 637, 320, + 18, 321, 322, 884, 639, 638, 642, 657, 643, 644, + 19, 20, 21, 645, 646, 22, 647, 23, 24, 25, + 26, 27, 648, 323, 324, 649, 28, 29, 186, 652, + 653, 30, 31, 32, 33, 283, 654, 655, 660, 656, + 661, 34, 35, 662, 36, 663, 664, 665, 37, 670, + 671, 38, 39, 40, 41, 695, 672, 325, 319, 326, + 685, 327, 589, 590, 591, 592, 687, 593, 688, 320, + 329, 321, 322, 690, 330, 696, 589, 590, 591, 592, + 697, 593, 331, 332, 333, 722, 885, 547, 334, 335, + 336, 746, 159, 323, 324, 745, 593, 709, 186, 421, + 886, 710, 747, 319, 762, 283, 589, 590, 591, 592, + 748, 593, 749, 750, 320, 752, 321, 322, 589, 590, + 591, 592, 768, 593, 753, 756, 757, 325, 758, 326, + 887, 327, 786, 800, 806, 810, 802, 328, 323, 324, + 329, 811, 888, 186, 330, 812, 589, 590, 591, 592, + 283, 593, 331, 332, 333, 444, 813, 815, 334, 335, + 336, 816, 159, 589, 590, 591, 592, 819, 593, 821, + 889, 823, 325, 827, 326, 830, 327, 589, 590, 591, + 592, 832, 593, 836, 837, 329, 833, 890, 838, 330, + 589, 590, 591, 592, 839, 593, 840, 331, 332, 333, + 842, 891, 843, 334, 335, 336, 845, 159, 589, 590, + 591, 592, 846, 593, 892, 543, 544, 545, 546, 847, + 547, 543, 544, 545, 546, 849, 547, 853, 543, 544, + 545, 546, 893, 547, 906, 543, 544, 545, 546, 896, + 547, 543, 544, 545, 546, 948, 547, 860, 543, 544, + 545, 546, 979, 547, 862, 543, 544, 545, 546, 1033, + 547, 543, 544, 545, 546, 1037, 547, -1, 880, 883, + 822, 589, 590, 591, 592, 898, 593, 881, 905, 543, + 544, 545, 546, 907, 547, 543, 544, 545, 546, 912, + 547, 913, 916, 929, 589, 590, 591, 592, 921, 593, + 923, 938, 925, 543, 544, 545, 546, 945, 547, 543, + 544, 545, 546, 924, 547, 926, 964, 543, 544, 545, + 546, 937, 547, 939, 940, 977, 944, 543, 544, 545, + 546, 978, 547, 543, 544, 545, 546, 953, 547, 981, + 543, 544, 545, 546, 954, 547, 956, 957, 970, 989, + 960, 543, 544, 545, 546, 992, 547, 958, 965, 980, + 973, 982, 993, 986, 987, 988, 994, 995, 996, 997, + 1001, 1002, 1006, 1016, 1017, 1021, 1005, 1020, 1031, 1007, + 1032, 1038, 153, 1030, 509, 930, 801, 897, 409, 799, + 626, 1029, 495, 506, 667, 407, 787, 955, 365, 551, + 759, 501, 935, 447, 713, 807, 826, 286, 659 }; /* YYCHECK. */ @@ -2799,152 +2799,152 @@ namespace yy parser::yycheck_[] = { 20, 21, 174, 23, 24, 107, 302, 303, 90, 101, - 30, 135, 513, 574, 101, 35, 36, 37, 314, 101, - 128, 41, 513, 139, 101, 101, 142, 495, 101, 497, - 101, 101, 101, 101, 502, 101, 101, 129, 130, 101, - 517, 101, 620, 719, 837, 41, 23, 69, 41, 32, - 69, 21, 69, 149, 69, 137, 32, 23, 41, 32, - 69, 41, 32, 297, 4, 41, 21, 363, 41, 6, - 956, 41, 852, 853, 854, 21, 21, 41, 21, 12, - 21, 21, 21, 12, 32, 66, 69, 41, 21, 557, - 126, 32, 21, 41, 32, 32, 77, 34, 126, 69, - 41, 69, 12, 41, 41, 42, 32, 279, 12, 32, - 129, 21, 93, 149, 69, 41, 14, 126, 41, 151, - 149, 41, 150, 69, 69, 157, 69, 149, 69, 69, - 69, 150, 69, 150, 153, 150, 69, 35, 157, 158, - 149, 78, 69, 69, 127, 1031, 69, 127, 128, 47, - 127, 128, 129, 130, 149, 132, 12, 127, 128, 155, - 126, 154, 458, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 149, 156, 150, 409, 109, 150, 148, 116, - 150, 149, 152, 149, 964, 149, 127, 128, 126, 6, - 127, 120, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 127, 128, 21, 127, 128, 126, 148, 1001, 150, - 120, 152, 150, 69, 32, 12, 120, 34, 686, 69, - 21, 689, 149, 41, 150, 42, 149, 150, 12, 149, - 149, 69, 528, 69, 21, 531, 532, 533, 534, 535, - 536, 537, 538, 539, 540, 32, 542, 543, 544, 545, - 546, 69, 548, 109, 41, 69, 149, 69, 934, 69, - 23, 78, 69, 46, 69, 32, 4, 12, 69, 377, - 378, 12, 69, 569, 41, 149, 21, 69, 41, 129, - 21, 389, 69, 157, 67, 69, 89, 151, 126, 149, - 69, 149, 69, 157, 69, 69, 69, 157, 69, 116, - 150, 69, 69, 153, 600, 69, 109, 157, 158, 127, - 128, 149, 109, 149, 150, 133, 134, 135, 136, 137, - 138, 139, 140, 141, 69, 109, 904, 623, 69, 69, - 148, 69, 150, 69, 152, 149, 150, 149, 150, 149, - 127, 128, 149, 150, 149, 150, 133, 134, 135, 136, - 137, 138, 139, 140, 141, 129, 150, 149, 126, 149, - 127, 148, 126, 150, 109, 152, 448, 69, 109, 837, - 149, 839, 149, 850, 149, 23, 149, 69, 149, 153, - 69, 149, 69, 157, 158, 149, 126, 69, 23, 857, - 126, 149, 32, 32, 32, 487, 69, 32, 50, 32, - 487, 41, 41, 41, 126, 487, 69, 149, 41, 149, - 487, 487, 69, 149, 487, 150, 487, 487, 487, 487, - 150, 487, 487, 149, 126, 487, 722, 487, 69, 151, - 931, 932, 933, 453, 126, 996, 456, 126, 69, 126, - 931, 932, 933, 69, 126, 69, 69, 149, 69, 69, - 69, 1012, 920, 23, 922, 923, 108, 149, 69, 69, - 149, 69, 149, 126, 69, 761, 118, 149, 488, 577, - 578, 579, 580, 581, 582, 583, 584, 585, 586, 603, - 588, 589, 590, 591, 592, 126, 149, 955, 989, 957, - 149, 607, 69, 69, 610, 126, 155, 69, 989, 21, - 968, 797, 594, 126, 69, 126, 126, 126, 149, 69, - 32, 126, 126, 981, 13, 126, 126, 985, 149, 41, - 107, 126, 32, 605, 149, 149, 149, 126, 149, 149, - 149, 126, 1000, 126, 126, 126, 151, 151, 149, 149, - 126, 69, 32, 69, 149, 565, 126, 69, 126, 126, - 570, 41, 151, 126, 126, 126, 151, 126, 151, 151, - 151, 126, 1030, 69, 23, 151, 126, 863, 864, 1037, - 126, 151, 149, 151, 69, 595, 596, 149, 151, 28, - 151, 69, 151, 879, 149, 149, 150, 69, 608, 149, - 32, 611, 700, 695, 115, 151, 41, 129, 130, 41, - 132, 149, 150, 149, 900, 127, 128, 149, 150, 905, - 154, 133, 134, 135, 136, 137, 138, 139, 140, 141, - 127, 128, 129, 130, 89, 132, 148, 69, 150, 925, - 152, 149, 150, 127, 128, 129, 130, 115, 132, 115, - 936, 115, 938, 151, 151, 149, 150, 0, 127, 128, - 129, 130, 69, 132, 7, 8, 9, 151, 23, 129, - 130, 14, 132, 149, 150, 18, 19, 20, 149, 22, - 149, 24, 25, 26, 27, 847, 127, 128, 129, 130, - 149, 132, 69, 979, 37, 127, 128, 40, 69, 23, - 69, 133, 134, 135, 136, 137, 138, 139, 140, 141, - 151, 23, 127, 128, 129, 130, 148, 132, 150, 23, - 63, 64, 65, 23, 23, 1011, 69, 127, 128, 129, - 130, 23, 132, 23, 149, 23, 79, 80, 81, 23, - 1026, 84, 23, 86, 87, 88, 89, 90, 23, 23, - 848, 151, 95, 96, 23, 23, 23, 100, 101, 102, - 103, 127, 128, 129, 130, 23, 132, 110, 111, 23, - 113, 23, 23, 23, 117, 69, 5, 120, 121, 122, - 123, 10, 11, 23, 32, 151, 15, 127, 128, 129, - 130, 23, 132, 41, 127, 128, 129, 130, 23, 132, - 29, 30, 31, 23, 33, 23, 23, 36, 818, 23, - 820, 151, 5, 69, 43, 44, 45, 10, 151, 48, - 49, 69, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 69, 126, 29, 30, 69, 68, - 33, 70, 71, 36, 73, 69, 75, 32, 126, 126, - 43, 23, 150, 69, 83, 151, 41, 23, 69, 69, - 69, 150, 91, 92, 151, 94, 127, 128, 129, 130, - 150, 132, 32, 23, 150, 68, 23, 106, 107, 127, - 128, 41, 75, 112, 69, 133, 134, 135, 136, 137, - 138, 139, 140, 141, 151, 124, 125, 32, 23, 23, - 148, 94, 150, 150, 152, 150, 41, 150, 150, 69, - 23, 150, 150, 106, 150, 127, 128, 129, 130, 112, - 132, 127, 128, 129, 130, 23, 132, 150, 150, 23, - 23, 124, 125, 23, 69, 127, 128, 129, 130, 151, - 132, 126, 127, 128, 115, 151, 23, 23, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 23, 23, 151, - 69, 149, 23, 148, 150, 150, 126, 127, 128, 150, - 150, 150, 150, 133, 134, 135, 136, 137, 138, 139, - 140, 141, 127, 128, 129, 130, 150, 132, 148, 150, - 150, 150, 127, 128, 150, 150, 150, 115, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 7, 8, 9, - 69, 115, 69, 148, 14, 150, 69, 149, 18, 19, - 20, 150, 22, 115, 24, 25, 26, 27, 127, 128, - 129, 130, 69, 132, 23, 41, 69, 37, 149, 149, - 40, 149, 127, 128, 129, 130, 69, 132, 127, 128, - 129, 130, 151, 132, 32, 69, 41, 3, 154, 32, - 41, 41, 41, 63, 64, 65, 151, 41, 14, 69, - 16, 17, 151, 41, 41, 32, 41, 41, 41, 79, - 80, 81, 41, 69, 84, 41, 86, 87, 88, 89, - 90, 41, 38, 39, 150, 95, 96, 43, 32, 69, - 100, 101, 102, 103, 50, 23, 126, 69, 69, 126, - 110, 111, 41, 113, 126, 126, 126, 117, 69, 149, - 120, 121, 122, 123, 69, 149, 72, 3, 74, 126, - 76, 127, 128, 129, 130, 32, 132, 132, 14, 85, - 16, 17, 149, 89, 69, 127, 128, 129, 130, 41, - 132, 97, 98, 99, 41, 151, 41, 103, 104, 105, - 115, 107, 38, 39, 41, 149, 41, 43, 114, 151, - 41, 41, 3, 149, 50, 127, 128, 129, 130, 41, - 132, 41, 115, 14, 132, 16, 17, 127, 128, 129, - 130, 149, 132, 32, 115, 115, 72, 41, 74, 151, - 76, 150, 156, 41, 151, 69, 82, 38, 39, 85, - 151, 151, 43, 89, 151, 127, 128, 129, 130, 50, - 132, 97, 98, 99, 151, 153, 149, 103, 104, 105, - 126, 107, 127, 128, 129, 130, 69, 132, 126, 151, - 69, 72, 126, 74, 69, 76, 127, 128, 129, 130, - 149, 132, 41, 41, 85, 23, 151, 151, 89, 127, - 128, 129, 130, 149, 132, 69, 97, 98, 99, 69, - 151, 132, 103, 104, 105, 69, 107, 127, 128, 129, - 130, 153, 132, 151, 127, 128, 129, 130, 151, 132, - 127, 128, 129, 130, 149, 132, 23, 127, 128, 129, - 130, 151, 132, 151, 127, 128, 129, 130, 151, 132, - 127, 128, 129, 130, 151, 132, 69, 127, 128, 129, - 130, 151, 132, 69, 127, 128, 129, 130, 151, 132, - 127, 128, 129, 130, 151, 132, 149, 127, 128, 129, - 130, 151, 132, 126, 126, 126, 149, 23, 127, 128, - 129, 130, 149, 132, 23, 127, 128, 129, 130, 149, - 132, 127, 128, 129, 130, 23, 132, 41, 41, 149, - 149, 127, 128, 129, 130, 126, 132, 149, 156, 127, - 128, 129, 130, 149, 132, 127, 128, 129, 130, 126, - 132, 126, 149, 149, 127, 128, 129, 130, 153, 132, - 149, 149, 23, 127, 128, 129, 130, 149, 132, 127, - 128, 129, 130, 151, 132, 126, 149, 127, 128, 129, - 130, 126, 132, 149, 149, 149, 41, 127, 128, 129, - 130, 149, 132, 153, 41, 119, 126, 126, 151, 149, - 41, 153, 69, 149, 41, 126, 126, 156, 126, 149, - 42, 277, 850, 132, 792, 448, 605, 603, 263, 1012, - 274, 269, 487, 130, 594, 913, 317, 564, 121, 157, - 522, 855, 610, 110, 639, 480 + 30, 514, 101, 575, 101, 35, 36, 37, 314, 101, + 128, 41, 514, 139, 135, 135, 142, 101, 496, 101, + 498, 101, 101, 101, 101, 503, 101, 129, 130, 101, + 518, 101, 621, 720, 838, 101, 41, 23, 41, 12, + 32, 41, 21, 69, 41, 137, 15, 32, 21, 41, + 69, 69, 32, 32, 21, 69, 41, 363, 6, 21, + 69, 41, 41, 23, 21, 69, 21, 41, 21, 150, + 21, 23, 4, 149, 150, 14, 126, 69, 32, 32, + 558, 297, 32, 12, 32, 126, 34, 41, 41, 21, + 69, 41, 21, 41, 42, 41, 35, 279, 853, 854, + 855, 151, 69, 12, 46, 149, 23, 69, 47, 150, + 129, 149, 69, 157, 69, 32, 69, 126, 69, 69, + 89, 69, 126, 149, 150, 67, 69, 127, 128, 126, + 78, 150, 150, 69, 153, 127, 150, 69, 157, 158, + 149, 127, 128, 129, 130, 149, 132, 120, 127, 128, + 155, 154, 149, 459, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 149, 156, 150, 126, 32, 116, 148, + 150, 150, 126, 152, 127, 128, 41, 127, 128, 127, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 149, + 12, 120, 12, 409, 21, 148, 150, 150, 1002, 152, + 150, 21, 69, 149, 69, 32, 149, 150, 12, 687, + 965, 120, 690, 149, 41, 4, 6, 21, 69, 957, + 12, 21, 69, 529, 69, 21, 532, 533, 534, 535, + 536, 537, 538, 539, 540, 541, 32, 543, 544, 545, + 546, 547, 69, 549, 34, 41, 32, 69, 935, 69, + 69, 126, 42, 69, 89, 41, 69, 149, 12, 377, + 378, 149, 127, 128, 570, 69, 32, 21, 126, 69, + 12, 389, 126, 69, 109, 41, 151, 69, 69, 126, + 69, 126, 149, 150, 149, 150, 69, 109, 78, 109, + 69, 149, 69, 69, 1032, 601, 149, 151, 149, 150, + 127, 128, 149, 69, 149, 109, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 69, 905, 109, 624, 69, + 69, 148, 69, 150, 149, 152, 116, 69, 149, 23, + 149, 127, 128, 149, 150, 126, 149, 133, 134, 135, + 136, 137, 138, 139, 140, 141, 69, 41, 69, 126, + 129, 149, 148, 129, 150, 109, 152, 449, 149, 126, + 838, 127, 840, 851, 69, 149, 149, 109, 126, 126, + 126, 150, 149, 69, 153, 149, 126, 153, 157, 158, + 858, 157, 158, 32, 151, 69, 488, 126, 32, 488, + 69, 488, 41, 151, 151, 151, 488, 41, 69, 149, + 149, 69, 149, 126, 488, 126, 488, 69, 488, 488, + 488, 488, 151, 488, 149, 150, 488, 723, 488, 932, + 933, 934, 488, 69, 454, 997, 149, 457, 149, 69, + 932, 933, 934, 69, 149, 150, 150, 69, 69, 69, + 69, 1013, 69, 921, 149, 923, 924, 126, 69, 69, + 69, 151, 150, 149, 69, 69, 762, 157, 126, 489, + 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, + 149, 589, 590, 591, 592, 593, 69, 990, 956, 149, + 958, 149, 608, 604, 604, 611, 126, 149, 990, 69, + 21, 969, 798, 595, 126, 126, 126, 126, 69, 126, + 126, 32, 126, 149, 982, 126, 126, 126, 986, 149, + 41, 126, 126, 149, 606, 66, 23, 149, 149, 149, + 149, 69, 149, 1001, 126, 151, 77, 151, 149, 149, + 149, 50, 126, 126, 149, 149, 566, 126, 69, 126, + 126, 571, 93, 32, 151, 32, 126, 69, 69, 151, + 157, 13, 41, 1031, 41, 126, 149, 151, 864, 865, + 1038, 107, 151, 32, 151, 151, 596, 597, 32, 149, + 127, 128, 129, 130, 880, 132, 149, 41, 149, 609, + 149, 32, 612, 701, 696, 149, 149, 150, 157, 108, + 41, 155, 69, 69, 151, 901, 127, 128, 69, 118, + 906, 23, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 127, 128, 129, 130, 69, 132, 148, 69, 150, + 926, 152, 149, 150, 127, 128, 129, 130, 28, 132, + 69, 937, 69, 939, 115, 151, 149, 150, 0, 127, + 128, 129, 130, 41, 132, 7, 8, 9, 151, 149, + 129, 130, 14, 132, 115, 154, 18, 19, 20, 115, + 22, 149, 24, 25, 26, 27, 848, 127, 128, 129, + 130, 115, 132, 151, 980, 37, 127, 128, 40, 69, + 23, 149, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 151, 149, 127, 128, 129, 130, 148, 132, 150, + 69, 63, 64, 65, 69, 23, 1012, 69, 127, 128, + 129, 130, 69, 132, 23, 149, 23, 79, 80, 81, + 23, 1027, 84, 23, 86, 87, 88, 89, 90, 23, + 23, 849, 151, 95, 96, 23, 23, 23, 100, 101, + 102, 103, 127, 128, 129, 130, 23, 132, 110, 111, + 23, 113, 23, 129, 130, 117, 132, 5, 120, 121, + 122, 123, 10, 11, 23, 32, 151, 15, 127, 128, + 129, 130, 23, 132, 41, 127, 128, 129, 130, 23, + 132, 29, 30, 31, 23, 33, 23, 23, 36, 819, + 23, 821, 151, 5, 23, 43, 44, 45, 10, 151, + 48, 49, 69, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 60, 61, 62, 23, 23, 29, 30, 69, + 68, 33, 70, 71, 36, 73, 23, 75, 32, 23, + 23, 43, 23, 150, 69, 83, 126, 41, 23, 69, + 151, 69, 126, 91, 92, 69, 94, 127, 128, 129, + 130, 69, 132, 32, 126, 69, 68, 23, 106, 107, + 127, 128, 41, 75, 112, 69, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 151, 124, 125, 32, 69, + 69, 148, 94, 150, 150, 152, 151, 41, 150, 150, + 69, 23, 150, 150, 106, 150, 127, 128, 129, 130, + 112, 132, 127, 128, 129, 130, 23, 132, 150, 150, + 150, 23, 124, 125, 23, 69, 127, 128, 129, 130, + 151, 132, 126, 127, 128, 69, 151, 150, 150, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 23, 23, + 151, 150, 23, 23, 148, 23, 150, 126, 127, 128, + 23, 23, 23, 23, 133, 134, 135, 136, 137, 138, + 139, 140, 141, 127, 128, 129, 130, 115, 132, 148, + 150, 150, 149, 127, 128, 150, 150, 150, 150, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 7, 8, + 9, 150, 150, 150, 148, 14, 150, 150, 150, 18, + 19, 20, 23, 22, 150, 24, 25, 26, 27, 127, + 128, 129, 130, 115, 132, 69, 115, 69, 37, 115, + 69, 40, 149, 127, 128, 129, 130, 150, 132, 127, + 128, 129, 130, 151, 132, 69, 23, 41, 3, 149, + 69, 149, 149, 69, 63, 64, 65, 151, 32, 14, + 69, 16, 17, 151, 154, 69, 41, 69, 41, 41, + 79, 80, 81, 41, 41, 84, 41, 86, 87, 88, + 89, 90, 41, 38, 39, 32, 95, 96, 43, 32, + 41, 100, 101, 102, 103, 50, 41, 41, 150, 41, + 41, 110, 111, 41, 113, 32, 69, 69, 117, 69, + 23, 120, 121, 122, 123, 69, 126, 72, 3, 74, + 126, 76, 127, 128, 129, 130, 126, 132, 126, 14, + 85, 16, 17, 126, 89, 149, 127, 128, 129, 130, + 69, 132, 97, 98, 99, 126, 151, 132, 103, 104, + 105, 32, 107, 38, 39, 41, 132, 149, 43, 114, + 151, 149, 41, 3, 69, 50, 127, 128, 129, 130, + 41, 132, 41, 41, 14, 41, 16, 17, 127, 128, + 129, 130, 115, 132, 41, 41, 41, 72, 41, 74, + 151, 76, 149, 149, 32, 115, 149, 82, 38, 39, + 85, 115, 151, 43, 89, 115, 127, 128, 129, 130, + 50, 132, 97, 98, 99, 150, 41, 151, 103, 104, + 105, 151, 107, 127, 128, 129, 130, 151, 132, 151, + 151, 41, 72, 156, 74, 153, 76, 127, 128, 129, + 130, 69, 132, 149, 126, 85, 69, 151, 126, 89, + 127, 128, 129, 130, 69, 132, 126, 97, 98, 99, + 69, 151, 149, 103, 104, 105, 41, 107, 127, 128, + 129, 130, 41, 132, 151, 127, 128, 129, 130, 151, + 132, 127, 128, 129, 130, 23, 132, 149, 127, 128, + 129, 130, 151, 132, 23, 127, 128, 129, 130, 151, + 132, 127, 128, 129, 130, 151, 132, 69, 127, 128, + 129, 130, 151, 132, 69, 127, 128, 129, 130, 151, + 132, 127, 128, 129, 130, 151, 132, 132, 69, 151, + 149, 127, 128, 129, 130, 149, 132, 149, 151, 127, + 128, 129, 130, 149, 132, 127, 128, 129, 130, 153, + 132, 69, 69, 149, 127, 128, 129, 130, 126, 132, + 126, 149, 149, 127, 128, 129, 130, 149, 132, 127, + 128, 129, 130, 126, 132, 23, 149, 127, 128, 129, + 130, 23, 132, 23, 41, 149, 149, 127, 128, 129, + 130, 149, 132, 127, 128, 129, 130, 41, 132, 149, + 127, 128, 129, 130, 156, 132, 126, 126, 151, 149, + 149, 127, 128, 129, 130, 149, 132, 126, 149, 23, + 153, 126, 149, 126, 149, 149, 41, 153, 41, 119, + 126, 126, 41, 149, 69, 41, 151, 149, 126, 153, + 126, 126, 42, 156, 277, 851, 606, 793, 132, 604, + 449, 1013, 263, 274, 488, 130, 595, 914, 121, 317, + 565, 269, 856, 157, 523, 611, 640, 110, 481 }; /* STOS_[STATE-NUM] -- The (internal number of the) accessing @@ -2993,69 +2993,69 @@ namespace yy 134, 135, 136, 137, 138, 139, 140, 141, 148, 150, 196, 198, 241, 242, 289, 304, 305, 314, 320, 321, 322, 323, 324, 325, 333, 334, 335, 241, 149, 201, - 154, 215, 216, 292, 209, 210, 279, 218, 219, 149, - 114, 219, 276, 277, 339, 149, 149, 115, 69, 126, - 149, 115, 69, 126, 149, 115, 69, 126, 149, 149, - 151, 69, 126, 150, 262, 21, 261, 23, 126, 151, - 149, 149, 69, 151, 157, 69, 151, 157, 23, 21, - 182, 69, 23, 23, 23, 23, 23, 23, 23, 23, + 154, 215, 216, 292, 297, 209, 210, 279, 218, 219, + 149, 114, 219, 276, 277, 339, 149, 149, 115, 69, + 126, 149, 115, 69, 126, 149, 115, 69, 126, 149, + 149, 151, 69, 126, 150, 262, 21, 261, 23, 126, + 151, 149, 149, 69, 151, 157, 69, 151, 157, 23, + 21, 182, 69, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, - 23, 23, 23, 23, 23, 23, 23, 126, 151, 23, - 69, 69, 69, 21, 225, 126, 69, 126, 69, 21, - 234, 69, 126, 69, 21, 231, 150, 21, 185, 21, - 23, 151, 152, 194, 195, 196, 197, 126, 151, 151, - 151, 23, 126, 151, 69, 69, 21, 202, 150, 176, - 176, 150, 150, 150, 150, 150, 150, 150, 150, 150, - 150, 176, 127, 128, 129, 130, 132, 149, 150, 21, - 249, 23, 23, 23, 23, 23, 23, 23, 23, 23, - 23, 23, 23, 23, 126, 151, 126, 176, 21, 69, - 151, 115, 69, 149, 150, 196, 196, 150, 150, 150, - 150, 150, 150, 150, 150, 150, 150, 196, 127, 128, - 129, 130, 132, 274, 126, 151, 151, 21, 32, 41, - 150, 206, 207, 126, 151, 126, 151, 126, 151, 23, - 126, 151, 115, 69, 115, 69, 115, 69, 149, 150, - 69, 32, 41, 23, 41, 213, 149, 149, 149, 220, - 69, 149, 149, 220, 69, 176, 32, 69, 154, 342, - 343, 41, 41, 41, 41, 41, 41, 41, 32, 32, - 41, 32, 41, 41, 41, 41, 69, 41, 343, 150, - 41, 41, 32, 69, 69, 340, 239, 149, 220, 69, - 23, 126, 6, 32, 34, 41, 42, 69, 78, 116, - 127, 227, 235, 236, 126, 236, 126, 126, 236, 126, - 41, 127, 128, 221, 69, 149, 69, 21, 195, 197, - 23, 149, 35, 47, 186, 187, 293, 193, 149, 149, - 46, 67, 268, 69, 129, 153, 157, 158, 269, 270, - 271, 126, 23, 126, 149, 176, 177, 176, 176, 176, - 176, 176, 176, 176, 176, 176, 176, 151, 176, 176, - 176, 176, 176, 176, 41, 32, 41, 41, 41, 41, - 236, 41, 41, 32, 41, 41, 41, 41, 256, 149, - 220, 69, 149, 126, 176, 149, 220, 115, 221, 196, - 196, 196, 196, 196, 196, 196, 196, 196, 196, 151, - 196, 196, 196, 196, 196, 149, 242, 149, 220, 149, - 220, 176, 149, 155, 32, 41, 126, 150, 216, 149, - 210, 149, 219, 149, 220, 32, 277, 149, 220, 115, - 115, 115, 41, 262, 151, 151, 176, 149, 151, 149, - 151, 149, 41, 341, 155, 341, 156, 244, 245, 153, - 149, 69, 69, 32, 41, 149, 126, 126, 69, 126, - 236, 69, 149, 236, 41, 41, 151, 181, 23, 196, - 126, 151, 149, 191, 190, 126, 149, 150, 271, 69, - 176, 69, 89, 109, 126, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 151, 151, 149, 176, 69, - 149, 149, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 149, 149, 151, 207, 149, 32, 41, - 150, 176, 149, 149, 151, 23, 149, 149, 220, 149, - 220, 153, 69, 126, 151, 69, 228, 236, 235, 236, - 126, 236, 126, 126, 149, 23, 21, 196, 149, 187, - 192, 194, 194, 194, 270, 236, 23, 149, 23, 41, - 203, 176, 176, 149, 149, 176, 176, 151, 262, 176, - 149, 149, 41, 156, 244, 126, 126, 126, 236, 149, - 236, 236, 176, 149, 149, 21, 21, 21, 150, 151, - 176, 176, 153, 41, 126, 149, 149, 149, 151, 23, - 149, 126, 236, 228, 236, 126, 149, 149, 149, 194, - 236, 149, 149, 41, 153, 41, 119, 176, 156, 236, - 126, 126, 236, 21, 151, 41, 153, 32, 69, 127, - 128, 150, 204, 221, 222, 149, 69, 236, 235, 149, - 41, 32, 32, 176, 69, 149, 150, 221, 222, 156, - 126, 126, 151, 176, 236, 228, 151, 126, 236 + 23, 23, 23, 23, 23, 23, 23, 23, 126, 151, + 23, 69, 69, 69, 21, 225, 126, 69, 126, 69, + 21, 234, 69, 126, 69, 21, 231, 150, 21, 185, + 21, 23, 151, 152, 194, 195, 196, 197, 126, 151, + 151, 151, 23, 126, 151, 69, 69, 21, 202, 150, + 176, 176, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 176, 127, 128, 129, 130, 132, 149, 150, + 21, 249, 23, 23, 23, 23, 23, 23, 23, 23, + 23, 23, 23, 23, 23, 126, 151, 126, 176, 21, + 69, 151, 115, 69, 149, 150, 196, 196, 150, 150, + 150, 150, 150, 150, 150, 150, 150, 150, 196, 127, + 128, 129, 130, 132, 274, 126, 151, 151, 21, 32, + 41, 150, 206, 207, 126, 151, 126, 151, 126, 151, + 23, 126, 151, 115, 69, 115, 69, 115, 69, 149, + 150, 69, 32, 41, 23, 41, 213, 149, 149, 149, + 220, 69, 149, 149, 220, 69, 176, 32, 69, 154, + 342, 343, 41, 41, 41, 41, 41, 41, 41, 32, + 32, 41, 32, 41, 41, 41, 41, 69, 41, 343, + 150, 41, 41, 32, 69, 69, 340, 239, 149, 220, + 69, 23, 126, 6, 32, 34, 41, 42, 69, 78, + 116, 127, 227, 235, 236, 126, 236, 126, 126, 236, + 126, 41, 127, 128, 221, 69, 149, 69, 21, 195, + 197, 23, 149, 35, 47, 186, 187, 293, 193, 149, + 149, 46, 67, 268, 69, 129, 153, 157, 158, 269, + 270, 271, 126, 23, 126, 149, 176, 177, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 151, 176, + 176, 176, 176, 176, 176, 41, 32, 41, 41, 41, + 41, 236, 41, 41, 32, 41, 41, 41, 41, 256, + 149, 220, 69, 149, 126, 176, 149, 220, 115, 221, + 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, + 151, 196, 196, 196, 196, 196, 149, 242, 149, 220, + 149, 220, 176, 149, 155, 32, 41, 126, 150, 216, + 149, 210, 149, 219, 149, 220, 32, 277, 149, 220, + 115, 115, 115, 41, 262, 151, 151, 176, 149, 151, + 149, 151, 149, 41, 341, 155, 341, 156, 244, 245, + 153, 149, 69, 69, 32, 41, 149, 126, 126, 69, + 126, 236, 69, 149, 236, 41, 41, 151, 181, 23, + 196, 126, 151, 149, 191, 190, 126, 149, 150, 271, + 69, 176, 69, 89, 109, 126, 151, 151, 151, 151, + 151, 151, 151, 151, 151, 151, 151, 151, 149, 176, + 69, 149, 149, 151, 151, 151, 151, 151, 151, 151, + 151, 151, 151, 151, 149, 149, 151, 207, 149, 32, + 41, 150, 176, 149, 149, 151, 23, 149, 149, 220, + 149, 220, 153, 69, 126, 151, 69, 228, 236, 235, + 236, 126, 236, 126, 126, 149, 23, 21, 196, 149, + 187, 192, 194, 194, 194, 270, 236, 23, 149, 23, + 41, 203, 176, 176, 149, 149, 176, 176, 151, 262, + 176, 149, 149, 41, 156, 244, 126, 126, 126, 236, + 149, 236, 236, 176, 149, 149, 21, 21, 21, 150, + 151, 176, 176, 153, 41, 126, 149, 149, 149, 151, + 23, 149, 126, 236, 228, 236, 126, 149, 149, 149, + 194, 236, 149, 149, 41, 153, 41, 119, 176, 156, + 236, 126, 126, 236, 21, 151, 41, 153, 32, 69, + 127, 128, 150, 204, 221, 222, 149, 69, 236, 235, + 149, 41, 32, 32, 176, 69, 149, 150, 221, 222, + 156, 126, 126, 151, 176, 236, 228, 151, 126, 236 }; #if YYDEBUG @@ -3108,36 +3108,36 @@ namespace yy 204, 204, 204, 204, 204, 205, 206, 206, 207, 207, 207, 207, 207, 207, 207, 207, 207, 208, 208, 209, 209, 210, 211, 211, 212, 212, 213, 214, 214, 215, - 215, 216, 217, 217, 217, 217, 218, 218, 219, 219, + 215, 216, 216, 217, 217, 217, 217, 218, 218, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 220, 220, - 220, 220, 220, 220, 221, 221, 221, 222, 222, 222, - 223, 224, 224, 225, 226, 226, 226, 227, 227, 227, - 227, 227, 228, 228, 228, 228, 229, 230, 230, 231, - 231, 231, 232, 233, 233, 234, 234, 234, 235, 235, - 235, 235, 235, 236, 236, 236, 236, 236, 236, 237, - 237, 237, 237, 238, 238, 239, 239, 239, 239, 239, + 219, 219, 219, 219, 219, 219, 219, 219, 219, 220, + 220, 220, 220, 220, 220, 221, 221, 221, 222, 222, + 222, 223, 224, 224, 225, 226, 226, 226, 227, 227, + 227, 227, 227, 228, 228, 228, 228, 229, 230, 230, + 231, 231, 231, 232, 233, 233, 234, 234, 234, 235, + 235, 235, 235, 235, 236, 236, 236, 236, 236, 236, + 237, 237, 237, 237, 238, 238, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, - 239, 239, 239, 239, 240, 240, 241, 241, 242, 242, + 239, 239, 239, 239, 239, 240, 240, 241, 241, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 243, 243, 244, 244, 245, 245, 246, 247, 248, - 248, 249, 250, 251, 252, 252, 252, 252, 253, 254, - 254, 254, 254, 255, 255, 255, 255, 256, 256, 257, - 257, 258, 259, 260, 260, 261, 261, 261, 262, 262, - 262, 263, 263, 264, 264, 264, 264, 264, 264, 265, - 265, 265, 265, 265, 265, 266, 267, 267, 268, 268, - 268, 269, 269, 269, 269, 270, 270, 271, 271, 271, - 271, 271, 273, 274, 272, 275, 275, 275, 275, 276, - 276, 277, 277, 278, 279, 280, 281, 282, 283, 284, - 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, - 295, 296, 296, 297, 298, 298, 299, 300, 301, 302, - 303, 304, 304, 305, 306, 307, 308, 309, 310, 310, - 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, - 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, - 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, - 340, 341, 341, 342, 342, 343 + 242, 242, 243, 243, 244, 244, 245, 245, 246, 247, + 248, 248, 249, 250, 251, 252, 252, 252, 252, 253, + 254, 254, 254, 254, 255, 255, 255, 255, 256, 256, + 257, 257, 258, 259, 260, 260, 261, 261, 261, 262, + 262, 262, 263, 263, 264, 264, 264, 264, 264, 264, + 265, 265, 265, 265, 265, 265, 266, 267, 267, 268, + 268, 268, 269, 269, 269, 269, 270, 270, 271, 271, + 271, 271, 271, 273, 274, 272, 275, 275, 275, 275, + 276, 276, 277, 277, 278, 279, 280, 281, 282, 283, + 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 296, 297, 298, 298, 299, 300, 301, + 302, 303, 304, 304, 305, 306, 307, 308, 309, 310, + 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, + 330, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 340, 341, 341, 342, 342, 343 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -3165,36 +3165,36 @@ namespace yy 1, 1, 1, 4, 3, 6, 3, 1, 5, 3, 3, 4, 2, 2, 3, 1, 1, 2, 5, 3, 1, 1, 2, 5, 3, 1, 1, 2, 5, 3, - 1, 1, 2, 5, 3, 6, 3, 1, 1, 1, + 1, 1, 1, 2, 5, 3, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, - 3, 5, 1, 3, 2, 2, 1, 2, 2, 1, - 4, 2, 1, 4, 2, 1, 4, 3, 5, 9, - 1, 5, 3, 5, 7, 9, 4, 2, 1, 5, - 7, 4, 4, 2, 1, 7, 9, 6, 1, 1, - 1, 1, 1, 0, 1, 1, 1, 2, 2, 2, - 5, 3, 6, 3, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, + 4, 3, 5, 1, 3, 2, 2, 1, 2, 2, + 1, 4, 2, 1, 4, 2, 1, 4, 3, 5, + 9, 1, 5, 3, 5, 7, 9, 4, 2, 1, + 5, 7, 4, 4, 2, 1, 7, 9, 6, 1, + 1, 1, 1, 1, 0, 1, 1, 1, 2, 2, + 2, 5, 3, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 5, 6, 3, 1, 1, 1, + 1, 1, 1, 1, 1, 5, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 5, 6, 7, 5, 1, 3, 3, 4, 2, - 1, 5, 3, 4, 4, 6, 3, 5, 3, 2, - 5, 3, 6, 2, 5, 3, 6, 1, 1, 1, - 3, 3, 4, 2, 1, 5, 7, 9, 0, 3, - 3, 2, 5, 5, 6, 3, 7, 8, 5, 5, - 6, 3, 7, 8, 5, 6, 3, 1, 1, 1, - 1, 1, 3, 4, 6, 1, 2, 1, 1, 1, - 1, 1, 0, 0, 5, 2, 5, 3, 6, 3, - 1, 1, 1, 3, 3, 3, 1, 3, 3, 3, - 3, 1, 1, 1, 3, 3, 3, 3, 3, 1, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 1, 1, 3, 3, 3, 3, 5, 3, 3, - 3, 3, 1, 3, 3, 3, 1, 1, 1, 1, - 1, 3, 1, 1, 1, 1, 3, 3, 3, 3, - 3, 1, 1, 3, 3, 3, 1, 1, 1, 3, - 3, 1, 3, 2, 2, 2 + 1, 1, 5, 6, 7, 5, 1, 3, 3, 4, + 2, 1, 5, 3, 4, 4, 6, 3, 5, 3, + 2, 5, 3, 6, 2, 5, 3, 6, 1, 1, + 1, 3, 3, 4, 2, 1, 5, 7, 9, 0, + 3, 3, 2, 5, 5, 6, 3, 7, 8, 5, + 5, 6, 3, 7, 8, 5, 6, 3, 1, 1, + 1, 1, 1, 3, 4, 6, 1, 2, 1, 1, + 1, 1, 1, 0, 0, 5, 2, 5, 3, 6, + 3, 1, 1, 1, 3, 3, 3, 1, 3, 3, + 3, 3, 1, 1, 1, 3, 3, 3, 3, 3, + 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 1, 1, 3, 3, 3, 3, 5, 3, + 3, 3, 3, 1, 3, 3, 3, 1, 1, 1, + 1, 1, 3, 1, 1, 1, 1, 3, 3, 3, + 3, 3, 1, 1, 3, 3, 3, 1, 1, 1, + 3, 3, 1, 3, 2, 2, 2 }; #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE @@ -3360,110 +3360,110 @@ namespace yy -1, 9, 150, 212, 151, 149, -1, 212, 126, 213, -1, 213, -1, 279, -1, 103, 149, -1, 103, 150, 215, 151, 149, -1, 215, 126, 216, -1, 216, -1, - 292, -1, 111, 149, -1, 111, 150, 218, 151, 149, - -1, 111, 220, 149, -1, 111, 150, 218, 151, 220, - 149, -1, 218, 126, 219, -1, 219, -1, 278, -1, - 279, -1, 280, -1, 281, -1, 282, -1, 283, -1, - 284, -1, 285, -1, 286, -1, 287, -1, 288, -1, - 289, -1, 326, -1, 290, -1, 291, -1, 292, -1, - 293, -1, 294, -1, 295, -1, 296, -1, 220, 69, - -1, 220, 69, 23, 69, -1, 220, 126, 69, -1, - 220, 126, 69, 23, 69, -1, 69, -1, 69, 23, - 69, -1, 128, 41, -1, 127, 41, -1, 41, -1, - 128, 32, -1, 127, 32, -1, 32, -1, 25, 149, - 224, 21, -1, 224, 225, -1, 225, -1, 226, 126, - 227, 149, -1, 109, 69, -1, 69, -1, 12, 69, - 126, 69, -1, 235, 126, 228, -1, 236, 126, 235, - 126, 228, -1, 236, 126, 236, 126, 236, 126, 235, - 126, 228, -1, 236, -1, 236, 126, 236, 126, 236, - -1, 236, 126, 236, -1, 236, 126, 236, 126, 236, - -1, 236, 126, 236, 126, 236, 126, 236, -1, 236, - 126, 236, 126, 236, 126, 236, 126, 236, -1, 27, - 149, 230, 21, -1, 230, 231, -1, 231, -1, 109, - 69, 126, 236, 149, -1, 12, 69, 126, 69, 126, - 236, 149, -1, 69, 126, 236, 149, -1, 26, 149, - 233, 21, -1, 233, 234, -1, 234, -1, 109, 69, - 126, 236, 126, 236, 149, -1, 12, 69, 126, 69, - 126, 236, 126, 236, 149, -1, 69, 126, 236, 126, - 236, 149, -1, 6, -1, 34, -1, 78, -1, 42, - -1, 116, -1, -1, 41, -1, 32, -1, 69, -1, - 127, 41, -1, 127, 32, -1, 24, 149, -1, 24, - 150, 238, 151, 149, -1, 24, 220, 149, -1, 24, - 150, 238, 151, 220, 149, -1, 238, 126, 239, -1, - 239, -1, 297, -1, 298, -1, 299, -1, 300, -1, - 301, -1, 302, -1, 303, -1, 304, -1, 305, -1, - 306, -1, 307, -1, 308, -1, 309, -1, 310, -1, - 311, -1, 312, -1, 313, -1, 314, -1, 315, -1, - 316, -1, 317, -1, 318, -1, 319, -1, 320, -1, - 289, -1, 321, -1, 322, -1, 323, -1, 324, -1, - 325, -1, 327, -1, 328, -1, 333, -1, 334, -1, - 335, -1, 279, -1, 336, -1, 337, -1, 338, -1, - 95, 150, 241, 151, 149, -1, 95, 150, 241, 151, - 220, 149, -1, 241, 126, 242, -1, 242, -1, 304, - -1, 305, -1, 314, -1, 320, -1, 289, -1, 321, - -1, 322, -1, 323, -1, 324, -1, 325, -1, 333, - -1, 334, -1, 335, -1, 96, 150, 241, 151, 149, - -1, 96, 150, 241, 151, 220, 149, -1, 156, 69, - 156, 126, 156, 69, 156, -1, 156, 69, 156, 126, - 236, -1, 244, -1, 245, 126, 244, -1, 123, 220, - 149, -1, 79, 149, 248, 21, -1, 248, 249, -1, - 249, -1, 69, 150, 176, 151, 149, -1, 117, 220, - 149, -1, 84, 149, 252, 21, -1, 252, 69, 176, - 149, -1, 252, 69, 126, 69, 176, 149, -1, 69, - 176, 149, -1, 69, 126, 69, 176, 149, -1, 87, - 220, 149, -1, 86, 149, -1, 86, 150, 257, 151, - 149, -1, 86, 220, 149, -1, 86, 150, 257, 151, - 220, 149, -1, 80, 149, -1, 80, 150, 257, 151, - 149, -1, 80, 220, 149, -1, 80, 150, 257, 151, - 220, 149, -1, 329, -1, 219, -1, 256, -1, 257, - 126, 256, -1, 81, 220, 149, -1, 8, 149, 260, - 21, -1, 260, 261, -1, 261, -1, 69, 262, 23, - 176, 149, -1, 69, 126, 69, 262, 23, 176, 149, - -1, 4, 69, 150, 41, 151, 262, 23, 176, 149, - -1, -1, 150, 41, 151, -1, 150, 32, 151, -1, - 7, 149, -1, 7, 150, 13, 151, 149, -1, 20, - 150, 69, 151, 149, -1, 20, 150, 69, 151, 220, - 149, -1, 20, 69, 149, -1, 20, 150, 69, 157, - 69, 151, 149, -1, 20, 150, 69, 157, 69, 151, - 220, 149, -1, 20, 69, 157, 69, 149, -1, 19, - 150, 69, 151, 149, -1, 19, 150, 69, 151, 220, - 149, -1, 19, 69, 149, -1, 19, 150, 69, 157, - 69, 151, 149, -1, 19, 150, 69, 157, 69, 151, - 220, 149, -1, 19, 69, 157, 69, 149, -1, 64, - 150, 267, 151, 269, 149, -1, 267, 126, 268, -1, - 268, -1, 330, -1, 331, -1, 332, -1, 270, -1, - 269, 126, 270, -1, 270, 150, 236, 151, -1, 269, - 126, 270, 150, 236, 151, -1, 271, -1, 270, 271, - -1, 69, -1, 158, -1, 129, -1, 153, -1, 157, - -1, -1, -1, 90, 273, 196, 274, 149, -1, 113, - 149, -1, 113, 150, 276, 151, 149, -1, 113, 220, - 149, -1, 113, 150, 276, 151, 220, 149, -1, 276, - 126, 277, -1, 277, -1, 219, -1, 339, -1, 16, - 23, 41, -1, 107, 23, 41, -1, 104, 23, 41, - -1, 50, -1, 85, 23, 41, -1, 99, 23, 41, - -1, 17, 23, 41, -1, 3, 23, 41, -1, 72, - -1, 74, -1, 76, -1, 43, 23, 41, -1, 38, - 23, 41, -1, 39, 23, 41, -1, 89, 23, 41, - -1, 14, 23, 32, -1, 103, -1, 105, 23, 41, - -1, 97, 23, 41, -1, 97, 23, 32, -1, 15, - 23, 69, -1, 70, 23, 343, -1, 70, 23, 41, - -1, 31, 23, 41, -1, 91, 23, 41, -1, 92, - 23, 41, -1, 48, 23, 41, -1, 49, 23, 41, - -1, 75, -1, 36, -1, 10, 23, 32, -1, 58, - 23, 41, -1, 53, 23, 32, -1, 55, 23, 32, - -1, 83, 23, 150, 245, 151, -1, 54, 23, 32, - -1, 54, 23, 41, -1, 62, 23, 69, -1, 61, - 23, 41, -1, 60, -1, 94, 23, 32, -1, 56, - 23, 41, -1, 57, 23, 41, -1, 51, -1, 52, - -1, 73, -1, 5, -1, 112, -1, 33, 23, 41, - -1, 106, -1, 68, -1, 30, -1, 98, -1, 44, - 23, 41, -1, 45, 23, 41, -1, 82, 23, 236, - -1, 66, 23, 46, -1, 66, 23, 67, -1, 93, - -1, 77, -1, 124, 23, 69, -1, 125, 23, 340, - -1, 29, 23, 343, -1, 11, -1, 71, -1, 59, - -1, 114, 23, 32, -1, 69, 153, 69, -1, 41, - -1, 41, 153, 41, -1, 154, 341, -1, 342, 341, - -1, 342, 155, -1 + 292, -1, 297, -1, 111, 149, -1, 111, 150, 218, + 151, 149, -1, 111, 220, 149, -1, 111, 150, 218, + 151, 220, 149, -1, 218, 126, 219, -1, 219, -1, + 278, -1, 279, -1, 280, -1, 281, -1, 282, -1, + 283, -1, 284, -1, 285, -1, 286, -1, 287, -1, + 288, -1, 289, -1, 326, -1, 290, -1, 291, -1, + 292, -1, 293, -1, 294, -1, 295, -1, 296, -1, + 220, 69, -1, 220, 69, 23, 69, -1, 220, 126, + 69, -1, 220, 126, 69, 23, 69, -1, 69, -1, + 69, 23, 69, -1, 128, 41, -1, 127, 41, -1, + 41, -1, 128, 32, -1, 127, 32, -1, 32, -1, + 25, 149, 224, 21, -1, 224, 225, -1, 225, -1, + 226, 126, 227, 149, -1, 109, 69, -1, 69, -1, + 12, 69, 126, 69, -1, 235, 126, 228, -1, 236, + 126, 235, 126, 228, -1, 236, 126, 236, 126, 236, + 126, 235, 126, 228, -1, 236, -1, 236, 126, 236, + 126, 236, -1, 236, 126, 236, -1, 236, 126, 236, + 126, 236, -1, 236, 126, 236, 126, 236, 126, 236, + -1, 236, 126, 236, 126, 236, 126, 236, 126, 236, + -1, 27, 149, 230, 21, -1, 230, 231, -1, 231, + -1, 109, 69, 126, 236, 149, -1, 12, 69, 126, + 69, 126, 236, 149, -1, 69, 126, 236, 149, -1, + 26, 149, 233, 21, -1, 233, 234, -1, 234, -1, + 109, 69, 126, 236, 126, 236, 149, -1, 12, 69, + 126, 69, 126, 236, 126, 236, 149, -1, 69, 126, + 236, 126, 236, 149, -1, 6, -1, 34, -1, 78, + -1, 42, -1, 116, -1, -1, 41, -1, 32, -1, + 69, -1, 127, 41, -1, 127, 32, -1, 24, 149, + -1, 24, 150, 238, 151, 149, -1, 24, 220, 149, + -1, 24, 150, 238, 151, 220, 149, -1, 238, 126, + 239, -1, 239, -1, 297, -1, 298, -1, 299, -1, + 300, -1, 301, -1, 302, -1, 303, -1, 304, -1, + 305, -1, 306, -1, 307, -1, 308, -1, 309, -1, + 310, -1, 311, -1, 312, -1, 313, -1, 314, -1, + 315, -1, 316, -1, 317, -1, 318, -1, 319, -1, + 320, -1, 289, -1, 321, -1, 322, -1, 323, -1, + 324, -1, 325, -1, 327, -1, 328, -1, 333, -1, + 334, -1, 335, -1, 279, -1, 336, -1, 337, -1, + 338, -1, 95, 150, 241, 151, 149, -1, 95, 150, + 241, 151, 220, 149, -1, 241, 126, 242, -1, 242, + -1, 304, -1, 305, -1, 314, -1, 320, -1, 289, + -1, 321, -1, 322, -1, 323, -1, 324, -1, 325, + -1, 333, -1, 334, -1, 335, -1, 96, 150, 241, + 151, 149, -1, 96, 150, 241, 151, 220, 149, -1, + 156, 69, 156, 126, 156, 69, 156, -1, 156, 69, + 156, 126, 236, -1, 244, -1, 245, 126, 244, -1, + 123, 220, 149, -1, 79, 149, 248, 21, -1, 248, + 249, -1, 249, -1, 69, 150, 176, 151, 149, -1, + 117, 220, 149, -1, 84, 149, 252, 21, -1, 252, + 69, 176, 149, -1, 252, 69, 126, 69, 176, 149, + -1, 69, 176, 149, -1, 69, 126, 69, 176, 149, + -1, 87, 220, 149, -1, 86, 149, -1, 86, 150, + 257, 151, 149, -1, 86, 220, 149, -1, 86, 150, + 257, 151, 220, 149, -1, 80, 149, -1, 80, 150, + 257, 151, 149, -1, 80, 220, 149, -1, 80, 150, + 257, 151, 220, 149, -1, 329, -1, 219, -1, 256, + -1, 257, 126, 256, -1, 81, 220, 149, -1, 8, + 149, 260, 21, -1, 260, 261, -1, 261, -1, 69, + 262, 23, 176, 149, -1, 69, 126, 69, 262, 23, + 176, 149, -1, 4, 69, 150, 41, 151, 262, 23, + 176, 149, -1, -1, 150, 41, 151, -1, 150, 32, + 151, -1, 7, 149, -1, 7, 150, 13, 151, 149, + -1, 20, 150, 69, 151, 149, -1, 20, 150, 69, + 151, 220, 149, -1, 20, 69, 149, -1, 20, 150, + 69, 157, 69, 151, 149, -1, 20, 150, 69, 157, + 69, 151, 220, 149, -1, 20, 69, 157, 69, 149, + -1, 19, 150, 69, 151, 149, -1, 19, 150, 69, + 151, 220, 149, -1, 19, 69, 149, -1, 19, 150, + 69, 157, 69, 151, 149, -1, 19, 150, 69, 157, + 69, 151, 220, 149, -1, 19, 69, 157, 69, 149, + -1, 64, 150, 267, 151, 269, 149, -1, 267, 126, + 268, -1, 268, -1, 330, -1, 331, -1, 332, -1, + 270, -1, 269, 126, 270, -1, 270, 150, 236, 151, + -1, 269, 126, 270, 150, 236, 151, -1, 271, -1, + 270, 271, -1, 69, -1, 158, -1, 129, -1, 153, + -1, 157, -1, -1, -1, 90, 273, 196, 274, 149, + -1, 113, 149, -1, 113, 150, 276, 151, 149, -1, + 113, 220, 149, -1, 113, 150, 276, 151, 220, 149, + -1, 276, 126, 277, -1, 277, -1, 219, -1, 339, + -1, 16, 23, 41, -1, 107, 23, 41, -1, 104, + 23, 41, -1, 50, -1, 85, 23, 41, -1, 99, + 23, 41, -1, 17, 23, 41, -1, 3, 23, 41, + -1, 72, -1, 74, -1, 76, -1, 43, 23, 41, + -1, 38, 23, 41, -1, 39, 23, 41, -1, 89, + 23, 41, -1, 14, 23, 32, -1, 103, -1, 105, + 23, 41, -1, 97, 23, 41, -1, 97, 23, 32, + -1, 15, 23, 69, -1, 70, 23, 343, -1, 70, + 23, 41, -1, 31, 23, 41, -1, 91, 23, 41, + -1, 92, 23, 41, -1, 48, 23, 41, -1, 49, + 23, 41, -1, 75, -1, 36, -1, 10, 23, 32, + -1, 58, 23, 41, -1, 53, 23, 32, -1, 55, + 23, 32, -1, 83, 23, 150, 245, 151, -1, 54, + 23, 32, -1, 54, 23, 41, -1, 62, 23, 69, + -1, 61, 23, 41, -1, 60, -1, 94, 23, 32, + -1, 56, 23, 41, -1, 57, 23, 41, -1, 51, + -1, 52, -1, 73, -1, 5, -1, 112, -1, 33, + 23, 41, -1, 106, -1, 68, -1, 30, -1, 98, + -1, 44, 23, 41, -1, 45, 23, 41, -1, 82, + 23, 236, -1, 66, 23, 46, -1, 66, 23, 67, + -1, 93, -1, 77, -1, 124, 23, 69, -1, 125, + 23, 340, -1, 29, 23, 343, -1, 11, -1, 71, + -1, 59, -1, 114, 23, 32, -1, 69, 153, 69, + -1, 41, -1, 41, 153, 41, -1, 154, 341, -1, + 342, 341, -1, 342, 155, -1 }; /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in @@ -3492,36 +3492,36 @@ namespace yy 640, 642, 644, 646, 651, 655, 662, 666, 668, 674, 678, 682, 687, 690, 693, 697, 699, 701, 704, 710, 714, 716, 718, 721, 727, 731, 733, 735, 738, 744, - 748, 750, 752, 755, 761, 765, 772, 776, 778, 780, + 748, 750, 752, 754, 757, 763, 767, 774, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, - 802, 804, 806, 808, 810, 812, 814, 816, 818, 821, - 826, 830, 836, 838, 842, 845, 848, 850, 853, 856, - 858, 863, 866, 868, 873, 876, 878, 883, 887, 893, - 903, 905, 911, 915, 921, 929, 939, 944, 947, 949, - 955, 963, 968, 973, 976, 978, 986, 996, 1003, 1005, - 1007, 1009, 1011, 1013, 1014, 1016, 1018, 1020, 1023, 1026, - 1029, 1035, 1039, 1046, 1050, 1052, 1054, 1056, 1058, 1060, + 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, + 823, 828, 832, 838, 840, 844, 847, 850, 852, 855, + 858, 860, 865, 868, 870, 875, 878, 880, 885, 889, + 895, 905, 907, 913, 917, 923, 931, 941, 946, 949, + 951, 957, 965, 970, 975, 978, 980, 988, 998, 1005, + 1007, 1009, 1011, 1013, 1015, 1016, 1018, 1020, 1022, 1025, + 1028, 1031, 1037, 1041, 1048, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, - 1122, 1124, 1126, 1128, 1130, 1136, 1143, 1147, 1149, 1151, + 1122, 1124, 1126, 1128, 1130, 1132, 1138, 1145, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, - 1173, 1175, 1181, 1188, 1196, 1202, 1204, 1208, 1212, 1217, - 1220, 1222, 1228, 1232, 1237, 1242, 1249, 1253, 1259, 1263, - 1266, 1272, 1276, 1283, 1286, 1292, 1296, 1303, 1305, 1307, - 1309, 1313, 1317, 1322, 1325, 1327, 1333, 1341, 1351, 1352, - 1356, 1360, 1363, 1369, 1375, 1382, 1386, 1394, 1403, 1409, - 1415, 1422, 1426, 1434, 1443, 1449, 1456, 1460, 1462, 1464, - 1466, 1468, 1470, 1474, 1479, 1486, 1488, 1491, 1493, 1495, - 1497, 1499, 1501, 1502, 1503, 1509, 1512, 1518, 1522, 1529, - 1533, 1535, 1537, 1539, 1543, 1547, 1551, 1553, 1557, 1561, - 1565, 1569, 1571, 1573, 1575, 1579, 1583, 1587, 1591, 1595, - 1597, 1601, 1605, 1609, 1613, 1617, 1621, 1625, 1629, 1633, - 1637, 1641, 1643, 1645, 1649, 1653, 1657, 1661, 1667, 1671, - 1675, 1679, 1683, 1685, 1689, 1693, 1697, 1699, 1701, 1703, - 1705, 1707, 1711, 1713, 1715, 1717, 1719, 1723, 1727, 1731, - 1735, 1739, 1741, 1743, 1747, 1751, 1755, 1757, 1759, 1761, - 1765, 1769, 1771, 1775, 1778, 1781 + 1173, 1175, 1177, 1183, 1190, 1198, 1204, 1206, 1210, 1214, + 1219, 1222, 1224, 1230, 1234, 1239, 1244, 1251, 1255, 1261, + 1265, 1268, 1274, 1278, 1285, 1288, 1294, 1298, 1305, 1307, + 1309, 1311, 1315, 1319, 1324, 1327, 1329, 1335, 1343, 1353, + 1354, 1358, 1362, 1365, 1371, 1377, 1384, 1388, 1396, 1405, + 1411, 1417, 1424, 1428, 1436, 1445, 1451, 1458, 1462, 1464, + 1466, 1468, 1470, 1472, 1476, 1481, 1488, 1490, 1493, 1495, + 1497, 1499, 1501, 1503, 1504, 1505, 1511, 1514, 1520, 1524, + 1531, 1535, 1537, 1539, 1541, 1545, 1549, 1553, 1555, 1559, + 1563, 1567, 1571, 1573, 1575, 1577, 1581, 1585, 1589, 1593, + 1597, 1599, 1603, 1607, 1611, 1615, 1619, 1623, 1627, 1631, + 1635, 1639, 1643, 1645, 1647, 1651, 1655, 1659, 1663, 1669, + 1673, 1677, 1681, 1685, 1687, 1691, 1695, 1699, 1701, 1703, + 1705, 1707, 1709, 1713, 1715, 1717, 1719, 1721, 1725, 1729, + 1733, 1737, 1741, 1743, 1745, 1749, 1753, 1757, 1759, 1761, + 1763, 1767, 1771, 1773, 1777, 1780, 1783 }; /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ @@ -3549,36 +3549,36 @@ namespace yy 479, 481, 483, 485, 487, 492, 497, 499, 504, 506, 508, 510, 512, 514, 516, 518, 520, 525, 529, 533, 534, 537, 541, 543, 547, 548, 551, 555, 557, 561, - 562, 565, 569, 571, 573, 575, 579, 580, 583, 584, + 562, 565, 566, 570, 572, 574, 576, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, - 595, 596, 597, 598, 599, 600, 601, 602, 606, 608, - 610, 612, 614, 616, 621, 623, 625, 630, 632, 634, - 639, 644, 646, 651, 655, 660, 665, 675, 680, 686, - 696, 701, 712, 718, 726, 736, 750, 754, 756, 760, - 767, 776, 785, 789, 791, 795, 804, 815, 827, 829, - 831, 833, 835, 840, 841, 842, 843, 844, 846, 853, - 855, 857, 859, 864, 865, 868, 869, 870, 871, 872, + 595, 596, 597, 598, 599, 600, 601, 602, 603, 607, + 609, 611, 613, 615, 617, 622, 624, 626, 631, 633, + 635, 640, 645, 647, 652, 656, 661, 666, 676, 681, + 687, 697, 702, 713, 719, 727, 737, 751, 755, 757, + 761, 768, 777, 786, 790, 792, 796, 805, 816, 828, + 830, 832, 834, 836, 841, 842, 843, 844, 845, 847, + 854, 856, 858, 860, 865, 866, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, - 903, 904, 905, 906, 910, 912, 917, 918, 922, 923, + 903, 904, 905, 906, 907, 911, 913, 918, 919, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, - 934, 938, 940, 945, 946, 950, 951, 955, 960, 965, - 966, 969, 973, 976, 980, 982, 984, 986, 990, 993, - 994, 995, 996, 999, 1000, 1001, 1002, 1005, 1006, 1009, - 1010, 1013, 1016, 1020, 1021, 1024, 1025, 1026, 1029, 1030, - 1031, 1034, 1035, 1038, 1039, 1040, 1041, 1042, 1043, 1045, - 1046, 1047, 1048, 1049, 1050, 1052, 1056, 1057, 1060, 1061, - 1062, 1065, 1066, 1067, 1068, 1071, 1072, 1075, 1076, 1077, - 1078, 1079, 1082, 1082, 1082, 1085, 1087, 1089, 1091, 1096, - 1097, 1100, 1101, 1104, 1105, 1106, 1107, 1108, 1109, 1110, + 934, 935, 939, 941, 946, 947, 951, 952, 956, 961, + 966, 967, 970, 974, 977, 981, 983, 985, 987, 991, + 994, 995, 996, 997, 1000, 1001, 1002, 1003, 1006, 1007, + 1010, 1011, 1014, 1017, 1021, 1022, 1025, 1026, 1027, 1030, + 1031, 1032, 1035, 1036, 1039, 1040, 1041, 1042, 1043, 1044, + 1046, 1047, 1048, 1049, 1050, 1051, 1053, 1057, 1058, 1061, + 1062, 1063, 1066, 1067, 1068, 1069, 1072, 1073, 1076, 1077, + 1078, 1079, 1080, 1083, 1083, 1083, 1086, 1088, 1090, 1092, + 1097, 1098, 1101, 1102, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, - 1121, 1122, 1123, 1125, 1126, 1127, 1129, 1130, 1131, 1132, + 1121, 1122, 1123, 1124, 1126, 1127, 1128, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, - 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1163, - 1165, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, - 1178, 1186, 1187, 1191, 1192, 1201 + 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, + 1164, 1166, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, + 1177, 1179, 1187, 1188, 1192, 1193, 1202 }; // Print the state stack on the debug stream. @@ -3667,7 +3667,7 @@ namespace yy } const int parser::yyeof_ = 0; - const int parser::yylast_ = 1465; + const int parser::yylast_ = 1468; const int parser::yynnts_ = 185; const int parser::yyempty_ = -2; const int parser::yyfinal_ = 152; @@ -3680,7 +3680,7 @@ namespace yy } // namespace yy -#line 1203 "DynareBison.yy" +#line 1204 "DynareBison.yy" void diff --git a/parser.src/DynareBison.yy b/parser.src/DynareBison.yy index 2697c22a0..14793ece1 100644 --- a/parser.src/DynareBison.yy +++ b/parser.src/DynareBison.yy @@ -36,7 +36,7 @@ class ParsingDriver; %token AR AUTOCORR %token BAYESIAN_IRF BETA_PDF %token CALIB CALIB_VAR CHECK CONF_SIG CONSTANT CORR COVAR CUTOFF -%token DATAFILE DR_ALGO DROP DSAMPLE DYNASAVE DYNATYPE +%token DATAFILE DR_ALGO DROP DSAMPLE DYNASAVE DYNATYPE %token END ENDVAL EQUAL ESTIMATION ESTIMATED_PARAMS ESTIMATED_PARAMS_BOUNDS ESTIMATED_PARAMS_INIT %token FILENAME FILTER_STEP_AHEAD FILTERED_VARS FIRST_OBS %token FLOAT_NUMBER @@ -50,14 +50,14 @@ class ParsingDriver; %token LAPLACE LCC_COMPILER LIK_ALGO LIK_INIT LINEAR LOAD_MH_FILE LOGLINEAR %token MH_DROP MH_INIT_SCALE MH_JSCALE MH_MODE MH_NBLOCKS MH_REPLIC MH_RECOVER %token MODE_CHECK MODE_COMPUTE MODE_FILE MODEL MODEL_COMPARISON MSHOCKS -%token MODEL_COMPARISON_APPROXIMATION MODIFIEDHARMONICMEAN MOMENTS_VARENDO +%token MODEL_COMPARISON_APPROXIMATION MODIFIEDHARMONICMEAN MOMENTS_VARENDO %token NAME %token NOBS NOCONSTANT NOCORR NODIAGNOSTIC NOFUNCTIONS NOGRAPH NOMOMENTS NOPRINT NORMAL_PDF -%token OBSERVATION_TRENDS OLR OLR_INST OLR_BETA OPTIM OPTIM_WEIGHTS ORDER OSR OSR_PARAMS +%token OBSERVATION_TRENDS OLR OLR_INST OLR_BETA OPTIM OPTIM_WEIGHTS ORDER OSR OSR_PARAMS %token PARAMETERS PERIODS PLANNER_OBJECTIVE PREFILTER PRESAMPLE PRINT PRIOR_TRUNC PRIOR_ANALYSIS POSTERIOR_ANALYSIS %token QZ_CRITERIUM %token RELATIVE_IRF REPLIC RPLOT -%token SHOCKS SIGMA_E SIMUL SIMUL_ALGO SIMUL_SEED SMOOTHER SOLVE_ALGO SPARSE_DLL STDERR STEADY STOCH_SIMUL +%token SHOCKS SIGMA_E SIMUL SIMUL_ALGO SIMUL_SEED SMOOTHER SOLVE_ALGO SPARSE_DLL STDERR STEADY STOCH_SIMUL %token TEX RAMSEY_POLICY PLANNER_DISCOUNT %token TEX_NAME %token UNIFORM_PDF UNIT_ROOT_VARS USE_DLL @@ -67,7 +67,7 @@ class ParsingDriver; %left PLUS MINUS %left TIMES DIVIDE %left UMINUS -%nonassoc POWER +%nonassoc POWER %token EXP LOG LOG10 SIN COS TAN ASIN ACOS ATAN SINH COSH TANH ASINH ACOSH ATANH SQRT %type expression @@ -126,7 +126,7 @@ class ParsingDriver; | ramsey_policy ; - + declaration : parameters | var @@ -134,44 +134,44 @@ class ParsingDriver; | varexo_det ; - + dsample : DSAMPLE INT_NUMBER ';' { driver.dsample($2);} | DSAMPLE INT_NUMBER INT_NUMBER ';' {driver.dsample($2, $3);} - ; + ; rplot : RPLOT tmp_var_list ';' {driver.rplot();} - ; - var - : VAR var_list ';' + ; + var + : VAR var_list ';' ; - varexo + varexo : VAREXO varexo_list ';' ; varexo_det : VAREXO_DET varexo_det_list ';' ; - + parameters : PARAMETERS parameter_list ';' ; - + var_list - : var_list NAME + : var_list NAME { driver.declare_endogenous($2); } - | var_list COMMA NAME + | var_list COMMA NAME { driver.declare_endogenous($3); } | NAME { driver.declare_endogenous($1); } - | var_list NAME TEX_NAME + | var_list NAME TEX_NAME { driver.declare_endogenous($2, $3); } | var_list COMMA NAME TEX_NAME { driver.declare_endogenous($3, $4); } | NAME TEX_NAME { driver.declare_endogenous($1, $2); } - ; - + ; + varexo_list : varexo_list NAME { driver.declare_exogenous($2); } @@ -185,7 +185,7 @@ class ParsingDriver; { driver.declare_exogenous($3, $4); } | NAME TEX_NAME { driver.declare_exogenous($1, $2); } - ; + ; varexo_det_list : varexo_det_list NAME @@ -200,7 +200,7 @@ class ParsingDriver; { driver.declare_exogenous_det($3, $4); } | NAME TEX_NAME { driver.declare_exogenous_det($1, $2); } - ; + ; parameter_list : parameter_list NAME @@ -215,9 +215,9 @@ class ParsingDriver; { driver.declare_parameter($3, $4); } | NAME TEX_NAME { driver.declare_parameter($1, $2); } - ; + ; - periods + periods : PERIODS INT_NUMBER ';' { driver.periods($2); @@ -238,12 +238,12 @@ cutoff driver.cutoff($3); } ; - + init_param : NAME EQUAL expression ';' - {driver.init_param($1, $3);} + {driver.init_param($1, $3);} ; - + expression : '(' expression ')' { $$ = $2;} @@ -253,15 +253,15 @@ cutoff {$$ = driver.add_constant($1);} | INT_NUMBER {$$ = driver.add_constant($1);} - | expression PLUS expression + | expression PLUS expression {$$ = driver.add_plus($1, $3);} | expression MINUS expression {$$ = driver.add_minus($1, $3);} - | expression DIVIDE expression + | expression DIVIDE expression {$$ = driver.add_divide($1, $3);} - | expression TIMES expression + | expression TIMES expression {$$ = driver.add_times($1, $3);} - | expression POWER expression + | expression POWER expression {$$ = driver.add_power($1, $3);} | MINUS expression %prec UMINUS {$$ = driver.add_uminus($2);} @@ -287,9 +287,9 @@ cutoff {$$ = driver.add_atan($3);} | SQRT '(' expression ')' {$$ = driver.add_sqrt($3);} - | NAME '(' comma_expression ')' + | NAME '(' comma_expression ')' {$$ = driver.add_unknown_function($1);} - ; + ; comma_expression : expression @@ -307,22 +307,22 @@ cutoff initval_option : FILENAME EQUAL NAME {driver.init_val_filename($3);} ; - + endval : ENDVAL ';' initval_list END {driver.end_endval();} - ; + ; initval_list : initval_list initval_elem | initval_elem ; - initval_elem + initval_elem : NAME EQUAL expression ';' {driver.init_val($1, $3);} - ; - + ; + histval : HISTVAL ';' histval_list END { driver.end_histval(); } @@ -332,7 +332,7 @@ cutoff : histval_list histval_elem | histval_elem ; - + histval_elem : NAME '(' signed_integer ')' EQUAL expression ';' {driver.hist_val($1, $3, $6);} @@ -347,10 +347,10 @@ cutoff | GCC_COMPILER { driver.init_compiler(1); } | o_cutoff ; - + model : MODEL ';' { driver.begin_model(); } equation_list END { driver.reset_data_tree(); } - | MODEL '(' o_linear ')' ';' { driver.begin_model(); } + | MODEL '(' o_linear ')' ';' { driver.begin_model(); } equation_list END { driver.reset_data_tree(); } | MODEL '(' USE_DLL ')' ';' { driver.begin_model(); driver.use_dll(); } equation_list END { driver.reset_data_tree(); } @@ -361,19 +361,19 @@ cutoff ; equation_list - : equation_list equation + : equation_list equation | equation_list pound_expression | equation | pound_expression ; - + equation : hand_side EQUAL hand_side ';' {$$ = driver.add_model_equal($1, $3);} | hand_side ';' {$$ = driver.add_model_equal_with_zero_rhs($1);} ; - + hand_side : '(' hand_side ')' {$$ = $2;} | model_var @@ -381,16 +381,16 @@ cutoff {$$ = driver.add_constant($1);} | INT_NUMBER {$$ = driver.add_constant($1);} - | hand_side PLUS hand_side + | hand_side PLUS hand_side {$$ = driver.add_plus($1, $3);} | hand_side MINUS hand_side {$$ = driver.add_minus($1, $3);} - | hand_side DIVIDE hand_side + | hand_side DIVIDE hand_side {$$ = driver.add_divide($1, $3);} - | hand_side TIMES hand_side + | hand_side TIMES hand_side {$$ = driver.add_times($1, $3);} - | hand_side POWER hand_side - {$$ = driver.add_power($1, $3);} + | hand_side POWER hand_side + {$$ = driver.add_power($1, $3);} | MINUS hand_side %prec UMINUS { $$ = driver.add_uminus($2);} | PLUS hand_side @@ -416,17 +416,17 @@ cutoff | SQRT '(' hand_side ')' {$$ = driver.add_sqrt($3);} ; - + pound_expression: '#' NAME EQUAL hand_side ';' {driver.declare_and_init_model_local_variable($2, $4);} model_var - : NAME + : NAME {$$ = driver.add_model_variable($1);} | NAME '(' signed_integer ')' {$$ = driver.add_model_variable($1, $3);} ; - + shocks : SHOCKS ';' shock_list END {driver.end_shocks();} ; @@ -435,18 +435,18 @@ cutoff : MSHOCKS ';' shock_list END {driver.end_mshocks();} ; - shock_list + shock_list : shock_list shock_elem | shock_elem ; - shock_elem + shock_elem : VAR NAME ';' PERIODS period_list ';' VALUES value_list ';' {driver.add_det_shock($2);} | VAR NAME ';' STDERR expression ';' {driver.add_stderr_shock($2, $5);} | VAR NAME EQUAL expression ';' - {driver.add_var_shock($2, $4);} + {driver.add_var_shock($2, $4);} | VAR NAME COMMA NAME EQUAL expression ';' {driver.add_covar_shock($2, $4, $6);} | CORR NAME COMMA NAME EQUAL expression ';' @@ -456,11 +456,11 @@ cutoff period_list : period_list INT_NUMBER {driver.add_period($2);} - | period_list INT_NUMBER ':' INT_NUMBER + | period_list INT_NUMBER ':' INT_NUMBER {driver.add_period($2,$4);} | period_list COMMA INT_NUMBER {driver.add_period($3);} - | period_list COMMA INT_NUMBER ':' INT_NUMBER + | period_list COMMA INT_NUMBER ':' INT_NUMBER {driver.add_period($3, $5);} | INT_NUMBER ':' INT_NUMBER {driver.add_period($1, $3);} @@ -470,7 +470,7 @@ cutoff value_list - : value_list signed_float + : value_list signed_float {driver.add_value_const($2);} | value_list signed_integer {driver.add_value_const($2);} @@ -487,49 +487,49 @@ cutoff | '(' expression ')' {driver.add_value($2);} ; - - sigma_e - : SIGMA_E EQUAL '[' triangular_matrix ']' ';' + + sigma_e + : SIGMA_E EQUAL '[' triangular_matrix ']' ';' {driver.do_sigma_e();} ; - triangular_matrix - : triangular_matrix ';' triangular_row + triangular_matrix + : triangular_matrix ';' triangular_row {driver.end_of_row();} - | triangular_row + | triangular_row {driver.end_of_row();} ; - - triangular_row - : triangular_row COMMA '(' expression ')' + + triangular_row + : triangular_row COMMA '(' expression ')' {driver.add_to_row($4);} - | triangular_row COMMA FLOAT_NUMBER + | triangular_row COMMA FLOAT_NUMBER {driver.add_to_row_const($3);} - | triangular_row COMMA INT_NUMBER + | triangular_row COMMA INT_NUMBER {driver.add_to_row_const($3);} | triangular_row '(' expression ')' {driver.add_to_row($3);} - | triangular_row FLOAT_NUMBER + | triangular_row FLOAT_NUMBER {driver.add_to_row_const($2);} - | triangular_row INT_NUMBER + | triangular_row INT_NUMBER {driver.add_to_row_const($2);} | '(' expression ')' {driver.add_to_row($2);} - | FLOAT_NUMBER + | FLOAT_NUMBER {driver.add_to_row_const($1);} - | INT_NUMBER + | INT_NUMBER {driver.add_to_row_const($1);} ; - - steady - : STEADY ';' + + steady + : STEADY ';' { driver.steady(); } | STEADY '(' steady_options_list ')' ';' {driver.steady();} ; - + steady_options_list : steady_options_list COMMA steady_options | steady_options ; @@ -537,11 +537,11 @@ cutoff steady_options: o_solve_algo ; - check - : CHECK ';' + check + : CHECK ';' {driver.check();} - | CHECK '(' check_options_list ')' ';' - {driver.check();} + | CHECK '(' check_options_list ')' ';' + {driver.check();} ; check_options_list : check_options_list COMMA check_options @@ -551,8 +551,8 @@ cutoff check_options : o_solve_algo ; - simul - : SIMUL ';' + simul + : SIMUL ';' {driver.simulate();} | SIMUL '(' simul_options_list ')' ';' {driver.simulate();} @@ -563,19 +563,20 @@ cutoff ; simul_options: o_periods + | o_datafile ; stoch_simul : STOCH_SIMUL ';' {driver.stoch_simul();} - | STOCH_SIMUL '(' stoch_simul_options_list ')' ';' + | STOCH_SIMUL '(' stoch_simul_options_list ')' ';' {driver.stoch_simul();} | STOCH_SIMUL tmp_var_list ';' {driver.stoch_simul();} - | STOCH_SIMUL '(' stoch_simul_options_list ')' tmp_var_list ';' + | STOCH_SIMUL '(' stoch_simul_options_list ')' tmp_var_list ';' {driver.stoch_simul();} ; - + stoch_simul_options_list: stoch_simul_options_list COMMA stoch_simul_options | stoch_simul_options ; @@ -584,7 +585,7 @@ cutoff | o_solve_algo | o_simul_algo | o_linear - | o_order + | o_order | o_replic | o_drop | o_ar @@ -625,7 +626,7 @@ cutoff | INT_NUMBER {$$ = $1;} ; - + signed_float : PLUS FLOAT_NUMBER {$$ = $2;} @@ -635,24 +636,24 @@ cutoff {$$ = $1;} ; - estimated_params + estimated_params : ESTIMATED_PARAMS ';' estimated_list END { driver.estimated_params(); } ; - - estimated_list - : estimated_list estimated_elem + + estimated_list + : estimated_list estimated_elem {driver.add_estimated_params_element();} - | estimated_elem + | estimated_elem {driver.add_estimated_params_element();} ; - estimated_elem + estimated_elem : estimated_elem1 COMMA estimated_elem2 ';' ; - estimated_elem1 - : STDERR NAME + estimated_elem1 + : STDERR NAME {driver.estim_params.type = 1; driver.estim_params.name = *$2; delete $2; @@ -671,19 +672,19 @@ cutoff } ; - estimated_elem2 - : prior COMMA estimated_elem3 + estimated_elem2 + : prior COMMA estimated_elem3 { driver.estim_params.prior=*$1; delete $1; } - | value COMMA prior COMMA estimated_elem3 + | value COMMA prior COMMA estimated_elem3 {driver.estim_params.init_val=*$1; driver.estim_params.prior=*$3; delete $1; delete $3; } - | value COMMA value COMMA value COMMA prior COMMA estimated_elem3 + | value COMMA value COMMA value COMMA prior COMMA estimated_elem3 {driver.estim_params.init_val=*$1; driver.estim_params.low_bound=*$3; driver.estim_params.up_bound=*$5; @@ -693,12 +694,12 @@ cutoff delete $5; delete $7; } - | value + | value { driver.estim_params.init_val=*$1; delete $1; } - | value COMMA value COMMA value + | value COMMA value COMMA value {driver.estim_params.init_val=*$1; driver.estim_params.low_bound=*$3; driver.estim_params.up_bound=*$5; @@ -708,8 +709,8 @@ cutoff } ; - estimated_elem3 - : value COMMA value + estimated_elem3 + : value COMMA value {driver.estim_params.mean=*$1; driver.estim_params.std=*$3; delete $1; @@ -722,8 +723,8 @@ cutoff delete $1; delete $3; delete $5; - } - | value COMMA value COMMA value COMMA value + } + | value COMMA value COMMA value COMMA value {driver.estim_params.mean=*$1; driver.estim_params.std=*$3; driver.estim_params.p3=*$5; @@ -733,7 +734,7 @@ cutoff delete $5; delete $7; } - | value COMMA value COMMA value COMMA value COMMA value + | value COMMA value COMMA value COMMA value COMMA value {driver.estim_params.mean=*$1; driver.estim_params.std=*$3; driver.estim_params.p3=*$5; @@ -824,20 +825,20 @@ cutoff ; prior - : BETA_PDF + : BETA_PDF {$$ = new string("1");} - | GAMMA_PDF + | GAMMA_PDF {$$ = new string("2");} - | NORMAL_PDF + | NORMAL_PDF {$$ = new string("3");} - | INV_GAMMA_PDF + | INV_GAMMA_PDF {$$ = new string("4");} - | UNIFORM_PDF + | UNIFORM_PDF {$$ = new string("5");} ; - value - : {$$ = new string("NaN");} + value + : {$$ = new string("NaN");} | INT_NUMBER | FLOAT_NUMBER | NAME @@ -847,20 +848,20 @@ cutoff {$2->insert(0, "-"); $$ = $2;} ; - - - estimation + + + estimation : ESTIMATION ';' {driver.run_estimation();} - | ESTIMATION '(' estimation_options_list ')' ';' + | ESTIMATION '(' estimation_options_list ')' ';' {driver.run_estimation();} | ESTIMATION tmp_var_list ';' {driver.run_estimation();} - | ESTIMATION '(' estimation_options_list ')' tmp_var_list ';' + | ESTIMATION '(' estimation_options_list ')' tmp_var_list ';' {driver.run_estimation();} ; - estimation_options_list + estimation_options_list : estimation_options_list COMMA estimation_options | estimation_options ; @@ -870,22 +871,22 @@ cutoff | o_first_obs | o_prefilter | o_presample - | o_lik_algo - | o_lik_init + | o_lik_algo + | o_lik_init | o_nograph - | o_conf_sig + | o_conf_sig | o_mh_replic | o_mh_drop | o_mh_jscale | o_optim - | o_mh_init_scale - | o_mode_file - | o_mode_compute + | o_mh_init_scale + | o_mode_file + | o_mode_compute | o_mode_check - | o_prior_trunc - | o_mh_mode - | o_mh_nblcks - | o_load_mh_file + | o_prior_trunc + | o_mh_mode + | o_mh_nblcks + | o_load_mh_file | o_loglinear | o_nodiagnostic | o_bayesian_irf @@ -905,23 +906,23 @@ cutoff | o_noconstant | o_mh_recover ; - - prior_analysis - : PRIOR_ANALYSIS '(' prior_posterior_options_list ')' ';' + + prior_analysis + : PRIOR_ANALYSIS '(' prior_posterior_options_list ')' ';' {driver.run_prior_analysis();} - | PRIOR_ANALYSIS '(' prior_posterior_options_list ')' tmp_var_list ';' + | PRIOR_ANALYSIS '(' prior_posterior_options_list ')' tmp_var_list ';' {driver.run_prior_analysis();} ; - prior_posterior_options_list + prior_posterior_options_list : prior_posterior_options_list COMMA prior_posterior_options | prior_posterior_options ; - prior_posterior_options + prior_posterior_options : o_nograph - | o_conf_sig - | o_prior_trunc + | o_conf_sig + | o_prior_trunc | o_bayesian_irf | o_irf | o_tex @@ -933,11 +934,11 @@ cutoff | o_xls_range | o_filter_step_ahead ; - - posterior_analysis - : POSTERIOR_ANALYSIS '(' prior_posterior_options_list ')' ';' + + posterior_analysis + : POSTERIOR_ANALYSIS '(' prior_posterior_options_list ')' ';' {driver.run_posterior_analysis();} - | POSTERIOR_ANALYSIS '(' prior_posterior_options_list ')' tmp_var_list ';' + | POSTERIOR_ANALYSIS '(' prior_posterior_options_list ')' tmp_var_list ';' {driver.run_posterior_analysis();} ; @@ -950,9 +951,9 @@ cutoff : list_optim_option | optim_options COMMA list_optim_option; ; - - varobs - : VAROBS tmp_var_list ';' + + varobs + : VAROBS tmp_var_list ';' {driver.set_varobs();} ; @@ -961,12 +962,12 @@ cutoff { driver.set_trends(); } ; - trend_list + trend_list : trend_list trend_element | trend_element ; - trend_element : NAME '(' expression ')' ';' + trend_element : NAME '(' expression ')' ';' {driver.set_trend_element($1, $3);} ; @@ -977,7 +978,7 @@ cutoff { driver.optim_weights(); } ; - optim_weights_list : optim_weights_list NAME expression ';' + optim_weights_list : optim_weights_list NAME expression ';' {driver.set_optim_weights($2, $3);} | optim_weights_list NAME COMMA NAME expression ';' {driver.set_optim_weights($2, $4, $5);} @@ -995,17 +996,17 @@ cutoff | OSR tmp_var_list ';' {driver.run_osr();} | OSR '(' olr_options ')' tmp_var_list ';' {driver.run_osr();} ; - + olr : OLR ';' {driver.run_olr();} | OLR '(' olr_options ')' ';' {driver.run_olr();} | OLR tmp_var_list ';' {driver.run_olr();} | OLR '(' olr_options ')' tmp_var_list ';' {driver.run_olr();} ; - + olr_option : o_olr_beta | stoch_simul_options ; - + olr_options : olr_option | olr_options COMMA olr_option ; @@ -1081,22 +1082,22 @@ cutoff planner_objective : PLANNER_OBJECTIVE { driver.begin_planner_objective(); } hand_side { driver.end_planner_objective($3); } ';' ; - + ramsey_policy : RAMSEY_POLICY ';' {driver.ramsey_policy();} - | RAMSEY_POLICY '(' ramsey_policy_options_list ')' ';' + | RAMSEY_POLICY '(' ramsey_policy_options_list ')' ';' {driver.ramsey_policy();} | RAMSEY_POLICY tmp_var_list ';' {driver.ramsey_policy();} - | RAMSEY_POLICY '(' ramsey_policy_options_list ')' tmp_var_list ';' + | RAMSEY_POLICY '(' ramsey_policy_options_list ')' tmp_var_list ';' {driver.ramsey_policy();} ; - ramsey_policy_options_list : + ramsey_policy_options_list : ramsey_policy_options_list COMMA ramsey_policy_options | ramsey_policy_options ; - + ramsey_policy_options : stoch_simul_options | o_planner_discount ; @@ -1125,18 +1126,18 @@ cutoff o_datafile: DATAFILE EQUAL NAME {driver.option_str("datafile", $3);}; o_nobs: NOBS EQUAL vec_int {driver.option_num("nobs", $3);} | NOBS EQUAL INT_NUMBER {driver.option_num("nobs", $3);} - ; + ; o_first_obs: FIRST_OBS EQUAL INT_NUMBER {driver.option_num("first_obs", $3);}; o_prefilter: PREFILTER EQUAL INT_NUMBER {driver.option_num("prefilter", $3);}; o_presample: PRESAMPLE EQUAL INT_NUMBER {driver.option_num("presample", $3);}; - o_lik_algo: LIK_ALGO EQUAL INT_NUMBER {driver.option_num("lik_algo", $3);}; - o_lik_init: LIK_INIT EQUAL INT_NUMBER {driver.option_num("lik_init", $3);}; - o_nograph: NOGRAPH {driver.option_num("nograph","1");}; - | GRAPH {driver.option_num("nograph", "0");}; - o_conf_sig: CONF_SIG EQUAL FLOAT_NUMBER {driver.option_num("conf_sig", $3);}; - o_mh_replic: MH_REPLIC EQUAL INT_NUMBER {driver.option_num("mh_replic", $3);}; - o_mh_drop: MH_DROP EQUAL FLOAT_NUMBER {driver.option_num("mh_drop", $3);}; - o_mh_jscale: MH_JSCALE EQUAL FLOAT_NUMBER {driver.option_num("mh_jscale", $3);}; + o_lik_algo: LIK_ALGO EQUAL INT_NUMBER {driver.option_num("lik_algo", $3);}; + o_lik_init: LIK_INIT EQUAL INT_NUMBER {driver.option_num("lik_init", $3);}; + o_nograph: NOGRAPH {driver.option_num("nograph","1");}; + | GRAPH {driver.option_num("nograph", "0");}; + o_conf_sig: CONF_SIG EQUAL FLOAT_NUMBER {driver.option_num("conf_sig", $3);}; + o_mh_replic: MH_REPLIC EQUAL INT_NUMBER {driver.option_num("mh_replic", $3);}; + o_mh_drop: MH_DROP EQUAL FLOAT_NUMBER {driver.option_num("mh_drop", $3);}; + o_mh_jscale: MH_JSCALE EQUAL FLOAT_NUMBER {driver.option_num("mh_jscale", $3);}; o_optim: OPTIM EQUAL '(' optim_options ')'; o_mh_init_scale: MH_INIT_SCALE EQUAL FLOAT_NUMBER {driver.option_num("mh_init_scale", $3);}; | MH_INIT_SCALE EQUAL INT_NUMBER {driver.option_num("mh_init_scale", $3);}; @@ -1167,8 +1168,8 @@ cutoff ; o_print : PRINT {driver.option_num("noprint", "0");}; o_noprint : NOPRINT {driver.option_num("noprint", "1");}; - o_xls_sheet : XLS_SHEET EQUAL NAME {driver.option_str("xls_sheet", $3);} - o_xls_range : XLS_RANGE EQUAL range {driver.option_str("xls_range", $3);} + o_xls_sheet : XLS_SHEET EQUAL NAME {driver.option_str("xls_sheet", $3);} + o_xls_range : XLS_RANGE EQUAL range {driver.option_str("xls_range", $3);} o_filter_step_ahead : FILTER_STEP_AHEAD EQUAL vec_int {driver.option_num("filter_step_ahead", $3);} o_constant : CONSTANT {driver.option_num("noconstant", "0");} o_noconstant : NOCONSTANT {driver.option_num("noconstant", "1");} diff --git a/parser.src/DynareFlex.ll b/parser.src/DynareFlex.ll index e14a2986d..865c4e129 100644 --- a/parser.src/DynareFlex.ll +++ b/parser.src/DynareFlex.ll @@ -15,11 +15,11 @@ typedef yy::parser::token token; #define yyterminate() return yy::parser::token_type (0); int comment_caller; -/* Particular value : when sigma_e command is found +/* Particular value : when sigma_e command is found this flag is set to 1, when command finished it is set to 0 */ int sigma_e = 0; -%} +%} %option case-insensitive noyywrap nounput batch debug never-interactive yylineno @@ -44,10 +44,10 @@ int sigma_e = 0; /* Comments */ ["%"].* -["/"]["/"].* +["/"]["/"].* "/*" {comment_caller = YY_START; BEGIN COMMENT;} -[^*\n]* +[^*\n]* "*"+[^/\n] "*"+"/" {BEGIN comment_caller;} @@ -106,24 +106,24 @@ int sigma_e = 0; calib_var {BEGIN DYNARE_BLOCK; return token::CALIB_VAR;} /* End of a Dynare block */ -end[ \t\n]*; {BEGIN INITIAL; return token::END;} +end[ \t\n]*; {BEGIN INITIAL; return token::END;} /* Inside of a Dynare statement */ datafile {return token::DATAFILE;} nobs {return token::NOBS;} first_obs {return token::FIRST_OBS;} -prefilter {return token::PREFILTER;} -presample {return token::PRESAMPLE;} -lik_algo {return token::LIK_ALGO;} -lik_init {return token::LIK_INIT;} -graph {return token::GRAPH;} -nograph {return token::NOGRAPH;} -print {return token::PRINT;} -noprint {return token::NOPRINT;} -conf_sig {return token::CONF_SIG;} -mh_replic {return token::MH_REPLIC;} -mh_drop {return token::MH_DROP;} -mh_jscale {return token::MH_JSCALE;} +prefilter {return token::PREFILTER;} +presample {return token::PRESAMPLE;} +lik_algo {return token::LIK_ALGO;} +lik_init {return token::LIK_INIT;} +graph {return token::GRAPH;} +nograph {return token::NOGRAPH;} +print {return token::PRINT;} +noprint {return token::NOPRINT;} +conf_sig {return token::CONF_SIG;} +mh_replic {return token::MH_REPLIC;} +mh_drop {return token::MH_DROP;} +mh_jscale {return token::MH_JSCALE;} mh_init_scale {return token::MH_INIT_SCALE;} mode_file {return token::MODE_FILE;} mode_compute {return token::MODE_COMPUTE;} @@ -159,7 +159,7 @@ int sigma_e = 0; [\$][^$]*[\$] { strtok(yytext+1, "$"); - yylval->string_val = new string(yytext + 1); + yylval->string_val = new string(yytext + 1); return token::TEX_NAME; } @@ -169,6 +169,7 @@ int sigma_e = 0; values {return token::VALUES;} corr {return token::CORR;} periods {return token::PERIODS;} +cutoff {return token::CUTOFF;} filename {return token::FILENAME;} gamma_pdf {return token::GAMMA_PDF;} beta_pdf {return token::BETA_PDF;} @@ -216,7 +217,7 @@ int sigma_e = 0; linear {return token::LINEAR;} [,] {return token::COMMA;} [:] {return yy::parser::token_type (yytext[0]);} -[\(\)] {return yy::parser::token_type (yytext[0]);} +[\(\)] {return yy::parser::token_type (yytext[0]);} [\[] {return yy::parser::token_type (yytext[0]);} [\]] { if (sigma_e) @@ -261,12 +262,12 @@ int sigma_e = 0; yylval->string_val = new string(yytext); return token::INT_NUMBER; } - + /* an instruction starting with a recognized symbol (which is not a modfile local variable) is passed as NAME, otherwise it is a native statement until the end of the line */ -[A-Za-z_][A-Za-z0-9_]* { +[A-Za-z_][A-Za-z0-9_]* { if (driver.symbol_exists_and_is_not_modfile_local_variable(yytext)) { BEGIN DYNARE_STATEMENT; diff --git a/parser.src/ExprNode.cc b/parser.src/ExprNode.cc index 278d6c5d2..21a33b98c 100644 --- a/parser.src/ExprNode.cc +++ b/parser.src/ExprNode.cc @@ -335,13 +335,17 @@ VariableNode::writeOutput(ostream &output, ExprNodeOutputType output_type, double VariableNode::eval(const eval_context_type &eval_context) const throw (EvalException) { - if (lag != 0) + /*if (lag != 0) + throw EvalException();*/ + if(&eval_context==NULL) throw EvalException(); - eval_context_type::const_iterator it = eval_context.find(make_pair(symb_id, type)); if (it == eval_context.end()) - throw EvalException(); - + { + cout << "Error: the variable or parameter (" << datatree.symbol_table.getNameByID( type, symb_id) << ") has not been initialized (in derivatives evaluation)\n"; + cout.flush(); + throw EvalException(); + } return it->second; } @@ -517,7 +521,7 @@ UnaryOpNode::cost(const temporary_terms_type &temporary_terms, bool is_matlab) c } cerr << "Impossible case!" << endl; exit(-1); -} +} void UnaryOpNode::computeTemporaryTerms(map &reference_count, @@ -967,7 +971,7 @@ BinaryOpNode::writeOutput(ostream &output, ExprNodeOutputType output_type, // Treat special case of power operator in C if (op_code == oPower && (!OFFSET(output_type))) { - output << "pow("; + output << "pow1("; arg1->writeOutput(output, output_type, temporary_terms); output << ","; arg2->writeOutput(output, output_type, temporary_terms); @@ -1110,5 +1114,7 @@ UnknownFunctionNode::collectEndogenous(NodeID &Id) double UnknownFunctionNode::eval(const eval_context_type &eval_context) const throw (EvalException) { + cout << "Unknown function\n"; + cout.flush(); throw EvalException(); } diff --git a/parser.src/ModelNormalization.cc b/parser.src/ModelNormalization.cc index 52c4b004f..e69757a7c 100644 --- a/parser.src/ModelNormalization.cc +++ b/parser.src/ModelNormalization.cc @@ -10,9 +10,11 @@ using namespace std; -Normalization::Normalization() +Normalization::Normalization(const SymbolTable &symbol_table_arg) : + symbol_table(symbol_table_arg) { //Empty + fp_verbose=false; }; Normalization::~Normalization() @@ -488,10 +490,18 @@ Normalization::ErrorHandling(int n, bool* IM, simple* Index_Equ_IM) } } + void +Normalization::Set_fp_verbose(bool ok) +{ + fp_verbose=ok; +} + +bool Normalization::Normalize(int n, int prologue, int epilogue, bool* IM, simple* Index_Equ_IM, Equation_set* Equation, bool mixing, bool* IM_s) { int matchingSize, effective_n; + int save_fp_verbose=fp_verbose; fp_verbose = 0; Variable_set* Variable = (Variable_set*) malloc(sizeof(Variable_set)); #ifdef DEBUG @@ -502,23 +512,40 @@ Normalization::Normalize(int n, int prologue, int epilogue, bool* IM, simple* In MaximumMatching(Equation, Variable); matchingSize = MeasureMatching(Equation); effective_n = n - prologue - epilogue; - if(matchingSize < effective_n) + fp_verbose=save_fp_verbose; + if(matchingSize < effective_n && fp_verbose) { - cout << "Error: dynare could not normalize the model\n"; - ErrorHandling(n, IM, Index_Equ_IM); - system("PAUSE"); + cout << "Error: dynare could not normalize the model.\n The following equations:\n - "; + int i; + for(i = 0; i < Equation->size; i++) + if(Equation->Number[i].matched == -1) + cout << i << " "; + cout << "\n and the following variables:\n - "; + for(i = 0; i < Variable->size; i++) + if(Variable->Number[i].matched == -1) + cout << symbol_table.getNameByID(eEndogenous, Index_Equ_IM[i].index) << " "; + cout << "\n could not be normalized\n"; + //ErrorHandling(n, IM, Index_Equ_IM); + //system("PAUSE"); exit( -1); } - Gr_to_IM(n, prologue, epilogue, IM, Index_Equ_IM, Equation, mixing, IM_s); - if(fp_verbose) + if(matchingSize >= effective_n ) { - OutputMatching(Equation); - for(int i = 0;i < n;i++) - cout << "Index_Equ_IM[" << i << "]=" << Index_Equ_IM[i].index /*<< " == " "Index_Var_IM[" << i << "]=" << Index_Var_IM[i].index*/ << "\n"; + Gr_to_IM(n, prologue, epilogue, IM, Index_Equ_IM, Equation, mixing, IM_s); + if(fp_verbose) + { + OutputMatching(Equation); + for(int i = 0;i < n;i++) + cout << "Index_Equ_IM[" << i << "]=" << Index_Equ_IM[i].index /*<< " == " "Index_Var_IM[" << i << "]=" << Index_Var_IM[i].index*/ << "\n"; + } } Free_Other(Variable); #ifdef DEBUG cout << "end of Normalize\n"; #endif + if(matchingSize < effective_n ) + return(0); + else + return(1); } diff --git a/parser.src/ModelTree.cc b/parser.src/ModelTree.cc index 2e15e5c63..cfcfcf933 100644 --- a/parser.src/ModelTree.cc +++ b/parser.src/ModelTree.cc @@ -8,14 +8,14 @@ #include "Interface.hh" #include "Model_Graph.hh" -#include "SymbolGaussElim.hh" ModelTree::ModelTree(SymbolTable &symbol_table_arg, NumericalConstants &num_constants_arg) : DataTree(symbol_table_arg, num_constants_arg), mode(eStandardMode), compiler(LCC_COMPILE), - cutoff(1e-6), + cutoff(1e-12), + new_SGE(true), computeJacobian(false), computeJacobianExo(false), computeHessian(false), @@ -67,7 +67,7 @@ ModelTree::derive(int order) int eq = it->first.first; int var1 = it->first.second; NodeID d1 = it->second; - + // Store only second derivatives with var2 <= var1 for(int var2 = 0; var2 <= var1; var2++) { @@ -220,6 +220,7 @@ ModelTree::computeTemporaryTermsOrdered(int order, Model_Block *ModelBlock) eq_node = equations[ModelBlock->Block_List[j].Equation[0]]; lhs = eq_node->arg1; rhs = eq_node->arg2; + tmp_s.str(""); tmp_output.str(""); lhs->writeOutput(tmp_output, oCDynamicModelSparseDLL, temporary_terms); tmp_s << "y[Per_y_+" << ModelBlock->Block_List[j].Variable[0] << "]"; @@ -230,6 +231,18 @@ ModelTree::computeTemporaryTermsOrdered(int order, Model_Block *ModelBlock) else if (ModelBlock->Block_List[j].Simulation_Type==SOLVE_FOREWARD_SIMPLE) ModelBlock->Block_List[j].Simulation_Type=EVALUATE_FOREWARD; } + else + { + tmp_output.str(""); + rhs->writeOutput(tmp_output, oCDynamicModelSparseDLL, temporary_terms); + if (tmp_output.str()==tmp_s.str()) + { + if (ModelBlock->Block_List[j].Simulation_Type==SOLVE_BACKWARD_SIMPLE) + ModelBlock->Block_List[j].Simulation_Type=EVALUATE_BACKWARD_R; + else if (ModelBlock->Block_List[j].Simulation_Type==SOLVE_FOREWARD_SIMPLE) + ModelBlock->Block_List[j].Simulation_Type=EVALUATE_FOREWARD_R; + } + } } for(i = 0;i < ModelBlock->Block_List[j].Size;i++) { @@ -237,7 +250,9 @@ ModelTree::computeTemporaryTermsOrdered(int order, Model_Block *ModelBlock) eq_node->computeTemporaryTerms(reference_count, temporary_terms, first_occurence, j, ModelBlock); } if (ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_BACKWARD - && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD) + && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD + &&ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_BACKWARD_R + && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD_R) { if (ModelBlock->Block_List[j].Simulation_Type==SOLVE_TWO_BOUNDARIES_COMPLETE || ModelBlock->Block_List[j].Simulation_Type==SOLVE_TWO_BOUNDARIES_SIMPLE) @@ -295,7 +310,7 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) int prev_Simulation_Type=-1; temporary_terms_type::const_iterator it_temp=temporary_terms.begin(); //---------------------------------------------------------------------- - //Temporary variables dรฉcalaration + //Temporary variables declaration OK=true; for(temporary_terms_type::const_iterator it = temporary_terms.begin(); it != temporary_terms.end(); it++) @@ -330,7 +345,9 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) lhs_rhs_done=false; if (prev_Simulation_Type==ModelBlock->Block_List[j].Simulation_Type && (ModelBlock->Block_List[j].Simulation_Type==EVALUATE_BACKWARD - ||ModelBlock->Block_List[j].Simulation_Type==EVALUATE_FOREWARD )) + ||ModelBlock->Block_List[j].Simulation_Type==EVALUATE_FOREWARD + ||ModelBlock->Block_List[j].Simulation_Type==EVALUATE_BACKWARD_R + ||ModelBlock->Block_List[j].Simulation_Type==EVALUATE_FOREWARD_R )) skip_the_head=true; else skip_the_head=false; @@ -346,6 +363,10 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) " // Simulation type "; output << BlockTriangular::BlockSim(ModelBlock->Block_List[j].Simulation_Type) << " //\n" << " ////////////////////////////////////////////////////////////////////////\n"; +#ifdef CONDITION + if(ModelBlock->Block_List[j].Simulation_Type==SOLVE_TWO_BOUNDARIES_COMPLETE) + output << " longd condition[" << ModelBlock->Block_List[j].Size << "]; /*to improve condition*/\n"; +#endif } //The Temporary terms temporary_terms_type tt2; @@ -389,6 +410,13 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) rhs->writeOutput(output, oCDynamicModelSparseDLL, temporary_terms); output << ";\n"; break; + case EVALUATE_BACKWARD_R: + case EVALUATE_FOREWARD_R: + rhs->writeOutput(output, oCDynamicModelSparseDLL, temporary_terms); + output << " = "; + lhs->writeOutput(output, oCDynamicModelSparseDLL, temporary_terms); + output << ";\n"; + break; case SOLVE_BACKWARD_COMPLETE: case SOLVE_FOREWARD_COMPLETE: Uf[ModelBlock->Block_List[j].Equation[i]] << " u[" << i << "] = residual[" << i << "]"; @@ -403,11 +431,17 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) output << ") - ("; rhs->writeOutput(output, oCDynamicModelSparseDLL, temporary_terms); output << ");\n"; +#ifdef CONDITION + if(ModelBlock->Block_List[j].Simulation_Type==SOLVE_TWO_BOUNDARIES_COMPLETE) + output << " condition[" << i << "]=0;\n"; +#endif } } // The Jacobian if we have to solve the block if (ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_BACKWARD - && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD) + && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD + && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_BACKWARD_R + && ModelBlock->Block_List[j].Simulation_Type!=EVALUATE_FOREWARD_R) { output << " /* Jacobian */\n"; switch(ModelBlock->Block_List[j].Simulation_Type) @@ -427,11 +461,11 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) { int eq=ModelBlock->Block_List[j].IM_lead_lag[m].Equ_Index[i]; int var=ModelBlock->Block_List[j].IM_lead_lag[m].Var_Index[i]; - int u=ModelBlock->Block_List[j].IM_lead_lag[m].u[i]; + int u=ModelBlock->Block_List[j].IM_lead_lag[m].us[i]; int eqr=ModelBlock->Block_List[j].IM_lead_lag[m].Equ[i]; int varr=ModelBlock->Block_List[j].IM_lead_lag[m].Var[i]; Uf[ModelBlock->Block_List[j].Equation[eqr]] << "-u[" << u << "]*y[Per_y_+" << var << "]"; - output << " u[" << u << "] = g1[" << eqr << "*" << ModelBlock->Block_List[j].Size << "+" << varr << "] = "; + output << " u[" << u << "] = "/*g1[" << eqr << "*" << ModelBlock->Block_List[j].Size << "+" << varr << "] = "*/; writeDerivative(output, eq, var, 0, oCDynamicModelSparseDLL, temporary_terms); output << "; // variable=" << symbol_table.getNameByID(eEndogenous, var) <<"(" << variable_table.getLag(variable_table.getSymbolID(var))<< ") " << var @@ -461,10 +495,36 @@ ModelTree::writeModelEquationsOrdered(ostream &output, Model_Block *ModelBlock) output << "; // variable=" << symbol_table.getNameByID(eEndogenous, var) <<"(" << k << ") " << var << ", equation=" << eq << "\n"; +#ifdef CONDITION + output << " if(fabs(condition[" << eqr << "])Block_List[j].Size;i++) - output << Uf[ModelBlock->Block_List[j].Equation[i]].str() << ";\n"; + { + output << Uf[ModelBlock->Block_List[j].Equation[i]].str() << ";\n"; +#ifdef CONDITION + output << " if(fabs(condition[" << i << "])Block_List[j].Max_Lead+ModelBlock->Block_List[j].Max_Lag;m++) + { + k=m-ModelBlock->Block_List[j].Max_Lag; + for(i=0;iBlock_List[j].IM_lead_lag[m].size;i++) + { + int eq=ModelBlock->Block_List[j].IM_lead_lag[m].Equ_Index[i]; + int var=ModelBlock->Block_List[j].IM_lead_lag[m].Var_Index[i]; + int u=ModelBlock->Block_List[j].IM_lead_lag[m].u[i]; + int eqr=ModelBlock->Block_List[j].IM_lead_lag[m].Equ[i]; + output << " u[" << u << "+Per_u_] /= condition[" << eqr << "];\n"; + } + } + for(i = 0;i < ModelBlock->Block_List[j].Size;i++) + output << " u[" << i << "+Per_u_] /= condition[" << i << "];\n"; +#endif break; } } @@ -686,11 +746,10 @@ ModelTree::writeDynamicCFile(const string &dynamic_basename) const << " }" << endl << " params = mxGetPr(mxGetFieldByNumber(M_, 0, mxGetFieldNumber(M_,\"params\")));" << endl << " /* Gets it_ from global workspace of Matlab */" << endl - << " it_ = (int) floor(mxGetScalar(mexGetVariable(\"global\", \"it_\")))-1;" << endl + << " //it_ = (int) floor(mxGetScalar(mexGetVariable(\"global\", \"it_\")))-1;" << endl << " /* Call the C subroutines. */" << endl << " Dynamic(y, x, residual, g1, g2);" << endl << "}" << endl; - mDynamicModelFile.close(); } @@ -723,7 +782,7 @@ ModelTree::writeStaticModel(ostream &StaticOutput) const ostringstream g1; g1 << " g1" << LPAR(output_type) << eq + 1 << ", " << variable_table.getSymbolID(var) + 1 << RPAR(output_type); - + jacobian_output << g1.str() << "=" << g1.str() << "+"; d1->writeOutput(jacobian_output, output_type, temporary_terms); jacobian_output << ";" << endl; @@ -947,13 +1006,81 @@ ModelTree::writeSparseDLLDynamicHFile(const string &dynamic_basename) const mDynamicModelFile << "#endif\n"; mDynamicModelFile.close(); } - + +void +ModelTree::Write_Inf_To_Bin_File(const string &dynamic_basename, const string &bin_basename, const int &num, + int &u_count_int, bool &file_open) const +{ + int j; + std::ofstream SaveCode; + /*cout << "bin_basename=" << bin_basename << "\n"; + system("pause");*/ + if(file_open) + SaveCode.open((bin_basename + ".bin").c_str(), ios::out | ios::in | ios::binary | ios ::ate ); + else + SaveCode.open((bin_basename + ".bin").c_str(), ios::out | ios::binary); + if(!SaveCode.is_open()) + { + cout << "Error : Can't open file \"" << bin_basename << ".bin\" for writing\n"; + exit( -1); + } + u_count_int=0; + for(int m=0;m<=block_triangular.ModelBlock->Block_List[num].Max_Lead+block_triangular.ModelBlock->Block_List[num].Max_Lag;m++) + { + int k1=m-block_triangular.ModelBlock->Block_List[num].Max_Lag; + //mDynamicModelFile << " Lead_Lag.push_back(k1);\n"; + for(j=0;jBlock_List[num].IM_lead_lag[m].size;j++) + { + //int eq=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].Equ_Index[j]; + //int var=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].Var_Index[j]; + //int eqr=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].Equ[j]; + int varr=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].Var[j]+k1*block_triangular.ModelBlock->Block_List[num].Size; + int u=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].u[j]; + int eqr1=block_triangular.ModelBlock->Block_List[num].IM_lead_lag[m].Equ[j]; + /*cout << " ! IM_i[std::make_pair(std::make_pair(" << eqr1 << ", " << varr+k1*block_triangular.ModelBlock->Block_List[num].Size << "), " << k1 << ")] = " << u << ";\n"; + cout << " ? IM_i[std::make_pair(std::make_pair(" << eqr1 << ", " << varr << "), " << k1 << ")] = " << u << ";\n";*/ + SaveCode.write(reinterpret_cast(&eqr1), sizeof(eqr1)); + SaveCode.write(reinterpret_cast(&varr), sizeof(varr)); + SaveCode.write(reinterpret_cast(&k1), sizeof(k1)); + SaveCode.write(reinterpret_cast(&u), sizeof(u)); + u_count_int++; + } + } + for(j=0;jBlock_List[num].Size;j++) + { + //int eq=block_triangular.ModelBlock->Block_List[i].Equation[j]; + int eqr1=j; + int varr=block_triangular.ModelBlock->Block_List[num].Size*(block_triangular.periods + +/*block_triangular.ModelBlock->Block_List[num].Max_Lead*/block_triangular.Model_Max_Lead); + int k1=0; + //mDynamicModelFile << " var_in_equ_and_lag[std::make_pair(std::make_pair(" << j << ", 0)] = -1;\n"; + //mDynamicModelFile << " /*periods=" << block_triangular.periods << " Size=" << block_triangular.ModelBlock->Block_List[i].Size << "*/\n"; + //mDynamicModelFile << " var_in_equ_and_lag.insert(std::make_pair(std::make_pair(" << eqr1 << ", 0), " << block_triangular.ModelBlock->Block_List[i].Size*block_triangular.periods << "));\n"; + //mDynamicModelFile << " equ_in_var_and_lag[std::make_pair(std::make_pair(-1, " << k1 << ")] = " << equ << ";\n"; + SaveCode.write(reinterpret_cast(&eqr1), sizeof(eqr1)); + SaveCode.write(reinterpret_cast(&varr), sizeof(varr)); + SaveCode.write(reinterpret_cast(&k1), sizeof(k1)); + SaveCode.write(reinterpret_cast(&eqr1), sizeof(eqr1)); + //cout << " IM_i[std::make_pair(std::make_pair(" << eqr1 << ", " << varr << "), " << k1 << ")] = " << eqr1 << ";\n"; + u_count_int++; + } + for(j=0;jBlock_List[num].Size;j++) + { + //mDynamicModelFile << " index_var[" << j << "]=" << block_triangular.ModelBlock->Block_List[i].Variable[j] << ";\n"; + int varr=block_triangular.ModelBlock->Block_List[num].Variable[j]; + SaveCode.write(reinterpret_cast(&varr), sizeof(varr)); + } + SaveCode.close(); +} + void ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, const string &bin_basename) const { string filename; ofstream mDynamicModelFile; + SymbolicGaussElimination SGE; + if (compiler == LCC_COMPILE) filename = dynamic_basename + ".c"; else @@ -995,23 +1122,22 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, int i, j, k, Nb_SGE=0; bool printed = false, skip_head, open_par=false; - SymbolicGaussElimination SGE; if (computeJacobian || computeJacobianExo || computeHessian) { - mDynamicModelFile << "void Dynamic_Init(tModel_Block *Model_Block)\n"; - mDynamicModelFile << " {\n"; - mDynamicModelFile << " int i;\n"; + //mDynamicModelFile << "void Dynamic_Init(tModel_Block *Model_Block)\n"; + mDynamicModelFile << "void Dynamic_Init()\n"; + mDynamicModelFile << " {\n"; int prev_Simulation_Type=-1; for(i = 0;i < block_triangular.ModelBlock->Size;i++) { k = block_triangular.ModelBlock->Block_List[i].Simulation_Type; if (prev_Simulation_Type==k && - (k==EVALUATE_FOREWARD || k==EVALUATE_BACKWARD)) + (k==EVALUATE_FOREWARD || k==EVALUATE_BACKWARD || k==EVALUATE_FOREWARD_R || k==EVALUATE_BACKWARD_R)) skip_head=true; else skip_head=false; - if ((k == EVALUATE_FOREWARD) && (block_triangular.ModelBlock->Block_List[i].Size)) + if ((k == EVALUATE_FOREWARD || k == EVALUATE_FOREWARD_R) && (block_triangular.ModelBlock->Block_List[i].Size)) { if (!skip_head) { @@ -1027,10 +1153,10 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << "#ifdef DEBUG\n"; } for(j = 0;j < block_triangular.ModelBlock->Block_List[i].Size;j++) - mDynamicModelFile << " mexPrintf(\"y[%d, %d]=%f \\n\",it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << ",y[it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << "]);\n"; + mDynamicModelFile << " mexPrintf(\"y[%d, %d]=%f \\n\",it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << ",double(y[it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << "]));\n"; open_par=true; } - else if ((k == EVALUATE_BACKWARD) && (block_triangular.ModelBlock->Block_List[i].Size)) + else if ((k == EVALUATE_BACKWARD || k == EVALUATE_BACKWARD_R) && (block_triangular.ModelBlock->Block_List[i].Size)) { if (!skip_head) { @@ -1046,7 +1172,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << "#ifdef DEBUG\n"; } for(j = 0;j < block_triangular.ModelBlock->Block_List[i].Size;j++) - mDynamicModelFile << " mexPrintf(\"y[%d, %d]=%f \\n\",it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << ",y[it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << "]);\n"; + mDynamicModelFile << " mexPrintf(\"y[%d, %d]=%f \\n\",it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << ",double(y[it_," << block_triangular.ModelBlock->Block_List[i].Variable[j] << "]));\n"; open_par=true; } else if ((k == SOLVE_FOREWARD_SIMPLE) && (block_triangular.ModelBlock->Block_List[i].Size)) @@ -1129,7 +1255,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, { printed = true; } - SGE.SGE_compute(block_triangular.ModelBlock, i, true, bin_basename, /*mod_param.endo_nbr*/symbol_table.endo_nbr); + SGE.SGE_compute(block_triangular.ModelBlock, i, true, bin_basename, symbol_table.endo_nbr); Nb_SGE++; #ifdef PRINT_OUT cout << "end of Gaussian elimination\n"; @@ -1163,7 +1289,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " }\n"; mDynamicModelFile << " iter++;\n"; mDynamicModelFile << " cvg=(max_resBlock_List[i].Size << ", periods, true);\n"; mDynamicModelFile << " }\n"; mDynamicModelFile << " if (!cvg)\n"; mDynamicModelFile << " {\n"; @@ -1186,9 +1312,9 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " mexPrintf(\"\\n\");\n"; mDynamicModelFile << "#endif\n"; mDynamicModelFile << " }\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", periods, true);\n"; } - mDynamicModelFile << "#ifdef DEBUG\n"; + /*mDynamicModelFile << "#ifdef DEBUG\n"; mDynamicModelFile << " for(it_=y_kmin;it_List[" << i << "].Size;i++)\n"; @@ -1198,7 +1324,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " }"; mDynamicModelFile << " mexPrintf(\" \\n \");\n"; mDynamicModelFile << " }\n"; - mDynamicModelFile << "#endif\n"; + mDynamicModelFile << "#endif\n";*/ mDynamicModelFile << " mxFree(g1);\n"; mDynamicModelFile << " mxFree(r);\n"; mDynamicModelFile << " mxFree(u);\n"; @@ -1218,7 +1344,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, } SGE.SGE_compute(block_triangular.ModelBlock, i, false, bin_basename, /*mod_param.endo_nbr*/symbol_table.endo_nbr); Nb_SGE++; - mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\", periods, 0, 0, 0, 0);\n"; + mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\", periods, 0, " << symbol_table.endo_nbr << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lag << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lead << " );\n"; mDynamicModelFile << " g1=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size*block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; mDynamicModelFile << " r=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; mDynamicModelFile << " for(it_=y_kmin;it_maxit_)))\n"; mDynamicModelFile << " {\n"; mDynamicModelFile << " Dynamic" << i + 1 << "(y, x, r, g1, g2);\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", 0, false);\n"; mDynamicModelFile << " res2=0;\n"; mDynamicModelFile << " res1=0;\n"; mDynamicModelFile << " max_res=0;\n"; @@ -1254,13 +1380,13 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, else { mDynamicModelFile << " Dynamic" << i + 1 << "(y, x, r, g1, g2);\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", 0, false);\n"; } - mDynamicModelFile << "#ifdef DEBUG\n"; + /*mDynamicModelFile << "#ifdef DEBUG\n"; mDynamicModelFile << " for(i=0;iList[" << i << "].Size;i++)\n"; - mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << /*mod_param.endo_nbr*/symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; + mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; mDynamicModelFile << " mexPrintf(\" \\n \");\n"; - mDynamicModelFile << "#endif\n"; + mDynamicModelFile << "#endif\n";*/ mDynamicModelFile << " }\n"; mDynamicModelFile << " mxFree(g1);\n"; mDynamicModelFile << " mxFree(r);\n"; @@ -1276,7 +1402,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, open_par=false; SGE.SGE_compute(block_triangular.ModelBlock, i, false, bin_basename, /*mod_param.endo_nbr*/symbol_table.endo_nbr); Nb_SGE++; - mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\", periods, 0, 0, 0, 0);\n"; + mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\", periods, 0, " << symbol_table.endo_nbr << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lag << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lead << " );\n"; mDynamicModelFile << " g1=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size*block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; mDynamicModelFile << " r=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; mDynamicModelFile << " for(it_=periods+y_kmin;it_>y_kmin;it_--)\n"; @@ -1289,7 +1415,7 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " while(!((cvg)||(iter>maxit_)))\n"; mDynamicModelFile << " {\n"; mDynamicModelFile << " Dynamic" << i + 1 << "(y, x, r, g1, g2);\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", 0, false);\n"; mDynamicModelFile << " res2=0;\n"; mDynamicModelFile << " for(i=0;i<" << block_triangular.ModelBlock->Block_List[i].Size << ";i++)\n"; mDynamicModelFile << " res2+=r[i]*r[i];\n"; @@ -1305,13 +1431,13 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, else { mDynamicModelFile << " Dynamic" << i + 1 << "(y, x, r, g1, g2);\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", 0, false);\n"; } - mDynamicModelFile << "#ifdef DEBUG\n"; + /*mDynamicModelFile << "#ifdef DEBUG\n"; mDynamicModelFile << " for(i=0;iList[" << i << "].Size;i++)\n"; - mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << /*mod_param.endo_nbr*/symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; + mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; mDynamicModelFile << " mexPrintf(\" \\n \");\n"; - mDynamicModelFile << "#endif\n"; + mDynamicModelFile << "#endif\n";*/ mDynamicModelFile << " }\n"; mDynamicModelFile << " mxFree(g1);\n"; mDynamicModelFile << " mxFree(r);\n"; @@ -1329,11 +1455,33 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, { printed = true; } - SGE.SGE_compute(block_triangular.ModelBlock, i, true, bin_basename, /*mod_param.endo_nbr*/symbol_table.endo_nbr); Nb_SGE++; - mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\",periods," << - block_triangular.ModelBlock->Block_List[i].IM_lead_lag[block_triangular.ModelBlock->Block_List[i].Max_Lag + block_triangular.ModelBlock->Block_List[i].Max_Lead].u_finish + 1 << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << - ", " << block_triangular.ModelBlock->Block_List[i].Max_Lag << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lead << ");\n"; + //cout << "new_SGE=" << new_SGE << "\n"; + if(new_SGE) + { + int u_count_int=0; + Write_Inf_To_Bin_File(dynamic_basename, bin_basename, i, u_count_int,SGE.file_open); + SGE.file_is_open(); + mDynamicModelFile << " u_count=" << u_count_int << "*periods;\n"; + mDynamicModelFile << " u_count_alloc = 2*u_count;\n"; + mDynamicModelFile << " u=(longd*)mxMalloc(u_count_alloc*sizeof(longd));\n"; + mDynamicModelFile << " memset(u, 0, u_count_alloc*sizeof(longd));\n"; + mDynamicModelFile << " u_count_init=" << + block_triangular.ModelBlock->Block_List[i].IM_lead_lag[block_triangular.ModelBlock->Block_List[i].Max_Lag + + block_triangular.ModelBlock->Block_List[i].Max_Lead].u_finish + 1 << ";\n"; + //mDynamicModelFile << " index_var=(int*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size<< "*sizeof(*index_var));\n"; + mDynamicModelFile << " Read_SparseMatrix(\"" << reform(bin_basename) << "\"," + << block_triangular.ModelBlock->Block_List[i].Size << ", periods, y_kmin, y_kmax" + << ");\n"; + mDynamicModelFile << " u_count=" << u_count_int << "*(periods+y_kmax);\n"; + } + else + { + SGE.SGE_compute(block_triangular.ModelBlock, i, true, bin_basename, /*mod_param.endo_nbr*/symbol_table.endo_nbr); + mDynamicModelFile << " Read_file(\"" << reform(bin_basename) << "\",periods," << + block_triangular.ModelBlock->Block_List[i].IM_lead_lag[block_triangular.ModelBlock->Block_List[i].Max_Lag + block_triangular.ModelBlock->Block_List[i].Max_Lead].u_finish + 1 << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << + ", " << block_triangular.ModelBlock->Block_List[i].Max_Lag << ", " << block_triangular.ModelBlock->Block_List[i].Max_Lead << ");\n"; + } mDynamicModelFile << " g1=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size*block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; mDynamicModelFile << " r=(double*)mxMalloc(" << block_triangular.ModelBlock->Block_List[i].Size << "*sizeof(double));\n"; if (!block_triangular.ModelBlock->Block_List[i].is_linear) @@ -1350,6 +1498,8 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " Per_u_=(it_-y_kmin)*" << block_triangular.ModelBlock->Block_List[i].IM_lead_lag[block_triangular.ModelBlock->Block_List[i].Max_Lag + block_triangular.ModelBlock->Block_List[i].Max_Lead].u_finish + 1 << ";\n"; mDynamicModelFile << " Per_y_=it_*y_size;\n"; mDynamicModelFile << " Dynamic" << i + 1 << "(y, x, r, g1, g2);\n"; + mDynamicModelFile << " if(isnan(res1)||isinf(res1))\n"; + mDynamicModelFile << " break;\n"; mDynamicModelFile << " for(i=0;i<" << block_triangular.ModelBlock->Block_List[i].Size << ";i++)\n"; mDynamicModelFile << " {\n"; mDynamicModelFile << " if (max_resBlock_List[i].Size << ", periods, true);\n"; + else + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", periods, true);\n"; mDynamicModelFile << " iter++;\n"; mDynamicModelFile << " }\n"; mDynamicModelFile << " if (!cvg)\n"; @@ -1383,22 +1537,27 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " mexPrintf(\"\\n\");\n"; mDynamicModelFile << "#endif\n"; mDynamicModelFile << " }\n"; - mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax);\n"; + if(new_SGE) + mDynamicModelFile << " simulate_NG1(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", periods, true);\n"; + else + mDynamicModelFile << " simulate(" << i << ", " << /*mod_param.endo_nbr*/symbol_table.endo_nbr << ", it_, y_kmin, y_kmax," << block_triangular.ModelBlock->Block_List[i].Size << ", periods, true);\n"; } - mDynamicModelFile << "#ifdef DEBUG\n"; + /*mDynamicModelFile << "#ifdef DEBUG\n"; mDynamicModelFile << " for(it_=y_kmin;it_List[" << i << "].Size;i++)\n"; mDynamicModelFile << " {\n"; mDynamicModelFile << " Per_y_=it_*y_size;\n"; - mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << /*mod_param.endo_nbr*/symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; + mDynamicModelFile << " mexPrintf(\" y[%d, %d]=%f \",it_,Model_Block->List[" << i << "].Variable[i],y[it_*" << symbol_table.endo_nbr << "+Model_Block->List[" << i << "].Variable[i]]);\n"; mDynamicModelFile << " }\n"; mDynamicModelFile << " mexPrintf(\" \\n \");\n"; mDynamicModelFile << " }\n"; - mDynamicModelFile << "#endif\n"; + mDynamicModelFile << "#endif\n";*/ mDynamicModelFile << " mxFree(g1);\n"; mDynamicModelFile << " mxFree(r);\n"; mDynamicModelFile << " mxFree(u);\n"; + mDynamicModelFile << " mxFree(index_vara);\n"; + mDynamicModelFile << " memset(direction,0,size_of_direction);\n"; mDynamicModelFile << " //mexErrMsgTxt(\"Exit from Dynare\");\n"; } prev_Simulation_Type=k; @@ -1409,19 +1568,18 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " }\n"; } mDynamicModelFile << " }\n"; - + // Writing the gateway routine - mDynamicModelFile << " int max(int a, int b)\n"; + /*mDynamicModelFile << " int max(int a, int b)\n"; mDynamicModelFile << " {\n"; mDynamicModelFile << " if (a>b) return(a); else return(b);\n"; - mDynamicModelFile << " }\n\n\n"; + mDynamicModelFile << " }\n\n\n";*/ mDynamicModelFile << "/* The gateway routine */\n"; mDynamicModelFile << "void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])\n"; mDynamicModelFile << "{\n"; - mDynamicModelFile << " tModel_Block *Model_Block;\n"; + /*mDynamicModelFile << " tModel_Block *Model_Block;\n";*/ mDynamicModelFile << " mxArray *M_, *oo_, *options_;\n"; - mDynamicModelFile << " int i, j, row_y, col_y, row_x, col_x, x_FieldNumber;\n"; - mDynamicModelFile << " mxArray *x_FieldByNumber;\n"; + mDynamicModelFile << " int i, row_y, col_y, row_x, col_x;\n"; mDynamicModelFile << " double * pind ;\n"; mDynamicModelFile << "\n"; mDynamicModelFile << " /* Gets model parameters from global workspace of Matlab */\n"; @@ -1445,9 +1603,10 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " mexErrMsgTxt(\"options_ \\n\");\n"; mDynamicModelFile << " }\n"; mDynamicModelFile << " params = mxGetPr(mxGetFieldByNumber(M_, 0, mxGetFieldNumber(M_,\"params\")));\n"; - mDynamicModelFile << " y= mxGetPr(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"endo_simul\")));\n"; + mDynamicModelFile << " double *yd, *xd;\n"; + mDynamicModelFile << " yd= mxGetPr(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"endo_simul\")));\n"; mDynamicModelFile << " row_y=mxGetM(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"endo_simul\")));\n"; - mDynamicModelFile << " x= mxGetPr(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"exo_simul\")));\n"; + mDynamicModelFile << " xd= mxGetPr(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"exo_simul\")));\n"; mDynamicModelFile << " row_x=mxGetM(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"exo_simul\")));\n"; mDynamicModelFile << " col_x=mxGetN(mxGetFieldByNumber(oo_, 0, mxGetFieldNumber(oo_,\"exo_simul\")));\n"; if (compiler==GCC_COMPILE) @@ -1474,8 +1633,21 @@ ModelTree::writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, mDynamicModelFile << " col_y=row_x;\n"; mDynamicModelFile << " }\n"; mDynamicModelFile << " solve_tolf=*(mxGetPr(mxGetFieldByNumber(options_, 0, mxGetFieldNumber(options_,\"dynatol\"))));\n"; + + mDynamicModelFile << " size_of_direction=col_y*row_y*sizeof(longd);\n"; + mDynamicModelFile << " y=(longd*)mxMalloc(size_of_direction);\n"; + mDynamicModelFile << " ya=(longd*)mxMalloc(size_of_direction);\n"; + mDynamicModelFile << " direction=(longd*)mxMalloc(size_of_direction);\n"; + mDynamicModelFile << " memset(direction,0,size_of_direction);\n"; + mDynamicModelFile << " x=(longd*)mxMalloc(col_x*row_x*sizeof(longd));\n"; + mDynamicModelFile << " for(i=0;i0) - cout << i << " elements in the incidence matrices are below the cutoff (" << cutoff << ") and are discarded\n"; + { + cout << i << " elements among " << first_derivatives.size() << " in the incidence matrices are below the cutoff (" << cutoff << ") and are discarded\n"; + cout << "the contemporaneous incidence matrix has " << j << " elements\n"; + } } void ModelTree::BlockLinear(Model_Block *ModelBlock) { - int i,j,l,m; + int i,j,l,m,ll; for(j = 0;j < ModelBlock->Size;j++) { if (ModelBlock->Block_List[j].Simulation_Type==SOLVE_BACKWARD_COMPLETE || ModelBlock->Block_List[j].Simulation_Type==SOLVE_FOREWARD_COMPLETE) { - for(i=0;iBlock_List[j].IM_lead_lag[0].size;i++) + ll=ModelBlock->Block_List[j].Max_Lag; + for(i=0;iBlock_List[j].IM_lead_lag[ll].size;i++) { - int eq=ModelBlock->Block_List[j].IM_lead_lag[0].Equ_Index[i]; - int var=ModelBlock->Block_List[j].IM_lead_lag[0].Var_Index[i]; + int eq=ModelBlock->Block_List[j].IM_lead_lag[ll].Equ_Index[i]; + int var=ModelBlock->Block_List[j].IM_lead_lag[ll].Var_Index[i]; first_derivatives_type::const_iterator it=first_derivatives.find(make_pair(eq,variable_table.getmVariableSelector(var,0))); - NodeID Id = it->second; - Id->collectEndogenous(Id); - if (Id->present_endogenous_size()>0) + if(it!= first_derivatives.end()) { - for(l=0;lBlock_List[j].Size;l++) + NodeID Id = it->second; + /*cout << "i=" << i << " j=" << j << "\n"; + cout << "eq=" << eq << " var=" << var << "\n"; + cout << "Id=" << Id << "\n";*/ + Id->collectEndogenous(Id); + if (Id->present_endogenous_size()>0) { - if (Id->present_endogenous_find(ModelBlock->Block_List[j].Variable[l],0)) + for(l=0;lBlock_List[j].Size;l++) { - ModelBlock->Block_List[j].is_linear=false; - goto follow; + if (Id->present_endogenous_find(ModelBlock->Block_List[j].Variable[l],0)) + { + ModelBlock->Block_List[j].is_linear=false; + goto follow; + } } } } @@ -1882,15 +2074,18 @@ ModelTree::BlockLinear(Model_Block *ModelBlock) int var=ModelBlock->Block_List[j].IM_lead_lag[m].Var_Index[i]; first_derivatives_type::const_iterator it=first_derivatives.find(make_pair(eq,variable_table.getmVariableSelector(var,k1))); NodeID Id = it->second; - Id->collectEndogenous(Id); - if (Id->present_endogenous_size()>0) + if(it!= first_derivatives.end()) { - for(l=0;lBlock_List[j].Size;l++) + Id->collectEndogenous(Id); + if (Id->present_endogenous_size()>0) { - if (Id->present_endogenous_find(ModelBlock->Block_List[j].Variable[l],k1)) + for(l=0;lBlock_List[j].Size;l++) { - ModelBlock->Block_List[j].is_linear=false; - goto follow; + if (Id->present_endogenous_find(ModelBlock->Block_List[j].Variable[l],k1)) + { + ModelBlock->Block_List[j].is_linear=false; + goto follow; + } } } } @@ -1924,11 +2119,13 @@ ModelTree::computingPass(const eval_context_type &eval_context) if (mode == eSparseDLLMode) { + jacob_map j_m; int Size; int HSize; int *Table=variable_table.GetVariableTable(&Size,&HSize); - evaluateJacobian(eval_context); + + evaluateJacobian(eval_context, &j_m); if (block_triangular.bt_verbose) { @@ -1936,7 +2133,7 @@ ModelTree::computingPass(const eval_context_type &eval_context) block_triangular.Print_IM( symbol_table.endo_nbr); } block_triangular.SetVariableTable(Table, Size, HSize); - block_triangular.Normalize_and_BlockDecompose_Static_0_Model(); + block_triangular.Normalize_and_BlockDecompose_Static_0_Model(j_m); BlockLinear(block_triangular.ModelBlock); computeTemporaryTermsOrdered(order, block_triangular.ModelBlock); diff --git a/parser.src/Model_Graph.cc b/parser.src/Model_Graph.cc index ee874520b..bbf657b97 100644 --- a/parser.src/Model_Graph.cc +++ b/parser.src/Model_Graph.cc @@ -203,10 +203,15 @@ ModelBlock_Graph(Model_Block *ModelBlock, int Blck_num, bool dynamic, t_model_gr } else { + int sup; Lead = ModelBlock->Block_List[Blck_num].Max_Lead; Lag = ModelBlock->Block_List[Blck_num].Max_Lag; - int sup = Lead + Lag +3; - *periods = Lead + Lag + sup; + cout << "---> *periods=" << *periods << "\n"; + if(*periods>3) + { + sup = Lead + Lag +3; + *periods = Lead + Lag + sup; + } #ifdef PRINT_OUT cout << "Lag=" << Lag << " Lead=" << Lead << "\n"; cout << "periods=Lead+2*Lag+2= " << *periods << "\n"; diff --git a/parser.src/ParsingDriver.cc b/parser.src/ParsingDriver.cc index d4510ea1e..8957dc151 100644 --- a/parser.src/ParsingDriver.cc +++ b/parser.src/ParsingDriver.cc @@ -187,7 +187,7 @@ ParsingDriver::periods(string *periods) void ParsingDriver::cutoff(string *cutoff) { - int cutoff_val = atoi(cutoff->c_str()); + double cutoff_val = atof(cutoff->c_str()); mod_file->addStatement(new CutoffStatement(cutoff_val)); delete cutoff; } @@ -225,7 +225,7 @@ ParsingDriver::init_param(string *name, NodeID rhs) double val = rhs->eval(mod_file->global_eval_context); int symb_id = mod_file->symbol_table.getID(*name); mod_file->global_eval_context[make_pair(symb_id, eParameter)] = val; - } + } catch(ExprNode::EvalException &e) { } @@ -427,7 +427,7 @@ ParsingDriver::add_covar_shock(string *var1, string *var2, NodeID value) || corr_shocks.find(key_inv) != corr_shocks.end()) error("shocks: covariance or correlation shock on variable pair (" + *var1 + ", " + *var2 + ") declared twice"); - + covar_shocks[key] = value; delete var1; @@ -448,7 +448,7 @@ ParsingDriver::add_correl_shock(string *var1, string *var2, NodeID value) || corr_shocks.find(key_inv) != corr_shocks.end()) error("shocks: covariance or correlation shock on variable pair (" + *var1 + ", " + *var2 + ") declared twice"); - + corr_shocks[key] = value; delete var1; diff --git a/parser.src/SymbolGaussElim.cc b/parser.src/SymbolGaussElim.cc index 699d0f20e..4ccc08049 100644 --- a/parser.src/SymbolGaussElim.cc +++ b/parser.src/SymbolGaussElim.cc @@ -11,6 +11,7 @@ //#include "pctimer_h.hh" #include "Model_Graph.hh" #include "SymbolGaussElim.hh" +//#define SIMPLIFY using namespace std; int max_nb_table_y, max_nb_in_degree_edges=0, max_nb_out_degree_edges=0; @@ -297,10 +298,11 @@ SymbolicGaussElimination::write_to_file_table_u(t_table_u *save_table_u, t_table } void -SymbolicGaussElimination::write_to_file_table_u_b(t_table_u *save_table_u, t_table_u *last_table_u, int *nb_save_table_u) +SymbolicGaussElimination::write_to_file_table_u_b(t_table_u *save_table_u, t_table_u *last_table_u, int *nb_save_table_u, bool chk) { t_table_u *table_u; - while(save_table_u!=last_table_u) + bool OK=true; + while(/*save_table_u!=last_table_u*/OK) { #ifdef PRINT_OUT cout << "**save_table_u->type=" << int(save_table_u->type) << "\n"; @@ -349,9 +351,23 @@ SymbolicGaussElimination::write_to_file_table_u_b(t_table_u *save_table_u, t_tab #endif /**PRINT_OUT**/ break; } - table_u = save_table_u->pNext; - free(save_table_u); - save_table_u = table_u; + if(chk) + { + OK=(save_table_u!=last_table_u); + if(OK) + { + table_u = save_table_u->pNext; + free(save_table_u); + save_table_u = table_u; + } + } + else + { + table_u = save_table_u->pNext; + free(save_table_u); + save_table_u = table_u; + OK=(save_table_u!=last_table_u); + } } } @@ -525,7 +541,7 @@ SymbolicGaussElimination::interpolation(t_model_graph* model_graph, t_table_y* t t_table_u *tmp_table_u, *old_table_u; t_table_u *c_first_table_u, *c_second_table_u, *c_third_table_u; int c_first_y_blck, c_second_y_blck; - int i, j, k, up_to, op_count, k1, k2; + int i, j, k, up_to=0, op_count, k1, k2; bool OK, modify_u_count; int cur_pos, nb_table_u=0; #ifdef PRINT_OUT @@ -701,6 +717,7 @@ SymbolicGaussElimination::interpolation(t_model_graph* model_graph, t_table_y* t } op_count++; } + SaveCode.flush(); k=SaveCode.tellp(); SaveCode.seekp(cur_pos); SaveCode.write(reinterpret_cast(&nb_table_u), sizeof(nb_table_u)); @@ -974,6 +991,7 @@ SymbolicGaussElimination::Vertex_Elimination(t_model_graph* model_graph, int pos cout << "--------------------------------------------------------------- \n"; cout << "Elimination of vertex " << lvertex[vertex_to_eliminate].index << " interpolate=" << *interpolate << "\n"; cout << "min_edge=" << min_edge << " length_markowitz=" << length_markowitz << "\n"; + print_Graph(model_graph); #endif /**PRINT_OUT**/ #ifdef DIRECT_COMPUTE table_y[vertex_count].index = lvertex[vertex_to_eliminate].index; @@ -1087,7 +1105,7 @@ SymbolicGaussElimination::Vertex_Elimination(t_model_graph* model_graph, int pos #ifdef DEBUGR cout << " creation of edge between vertices " << lvertex[i1].index << " and " << lvertex[j1].index << "\n"; #endif /**DEBUGR**/ -#ifdef SYMPLIFY +#ifdef SYMPLIFY /*no reuse of free numbers, to be sure that there is no cyclcial behaviour in numbering*/ curr_u_count = get_free_u_list(dynamic); #else curr_u_count = u_count; @@ -1441,13 +1459,13 @@ SymbolicGaussElimination::Gaussian_Elimination(t_model_graph* model_graph cout << "going to open file file_open=" << file_open << " file_name={" << file_name << "}\n"; #endif if(file_open) - SaveCode.open((file_name + ".bin").c_str(), ios::app | ios::binary); + SaveCode.open((file_name + ".bin").c_str(), ios::out | ios::in | ios::binary | ios ::ate ); else SaveCode.open((file_name + ".bin").c_str(), ios::out | ios::binary); file_open = true; if(!SaveCode.is_open()) { - cout << "Error : Can't open file \"CurrentModel.bin\" for writing\n"; + cout << "Error : Can't open file \"" << file_name << ".bin\" for writing\n"; exit( -1); } #ifdef PRINT_OUT @@ -1728,14 +1746,14 @@ SymbolicGaussElimination::Gaussian_Elimination(t_model_graph* model_graph prologue_save_table_y[i-first_nb_prologue_save_table_y]=table_y[i]; k=SaveCode.tellp(); SaveCode.seekp(cur_pos); - i=nb_second_u_blck-prologue_nb_table_u; + i=nb_second_u_blck-prologue_nb_table_u+1; //cout << "nb_prologue_save_table_u=" << i << "\n"; SaveCode.write(reinterpret_cast(&i), sizeof(i)); SaveCode.seekp(k); - write_to_file_table_u_b(first_u_blck,second_u_blck, &nb_prologue_save_table_u); + write_to_file_table_u_b(first_u_blck,second_u_blck, &nb_prologue_save_table_u,true); //cout << "nb_prologue_save_table_u(1)=" << nb_prologue_save_table_u << "\n"; nb_first_u_blck=nb_second_u_blck; - nb_second_u_blck=nb_third_u_blck; + nb_second_u_blck=nb_third_u_blck+1; nb_first_y_blck=nb_second_y_blck; nb_second_y_blck=nb_third_y_blck; first_u_blck = second_u_blck; @@ -1780,7 +1798,7 @@ SymbolicGaussElimination::Gaussian_Elimination(t_model_graph* model_graph else { SaveCode.write(reinterpret_cast(&nb_table_u), sizeof(nb_table_u)); - write_to_file_table_u_b(First_table_u->pNext, table_u->pNext, &nb_last_save_table_u ); + write_to_file_table_u_b(First_table_u->pNext, table_u->pNext, &nb_last_save_table_u, false ); nb_last_save_table_y = vertex_count; last_save_table_y=(t_table_y*)malloc(nb_last_save_table_y*sizeof(*last_save_table_y)); for(i=0;iPeriods; cout << "nstacked=" << nstacked << "\n"; // t1 = pctimer(); cout << "periods=" << periods << "\n"; @@ -1872,6 +1900,9 @@ SymbolicGaussElimination::SGE_compute(Model_Block *ModelBlock, int blck, bool dy y_kmin = ModelBlock->Block_List[blck].Max_Lag; y_kmax = ModelBlock->Block_List[blck].Max_Lead; periods = ModelBlock->Periods; + if(periods<=3) + nstacked=false; + //cout << "periods=" << periods << " y_kmin=" << y_kmin << " y_kmax=" << y_kmax << "\n"; u_count_init = u_count; #ifdef PRINT_OUT cout << "size : " << size << "\n"; diff --git a/parser.src/include/BlockTriangular.hh b/parser.src/include/BlockTriangular.hh index b9de99add..2103d78fc 100644 --- a/parser.src/include/BlockTriangular.hh +++ b/parser.src/include/BlockTriangular.hh @@ -37,15 +37,17 @@ typedef struct vari }; +typedef map,double> jacob_map; + class BlockTriangular { public: - Normalization normalization; - BlockTriangular(const SymbolTable &symbol_table_arg); + BlockTriangular(const SymbolTable &symbol_table_arg); ~BlockTriangular(); /*! The incidence matrix for each lead and lags */ Blocks blocks; - SymbolTable symbol_table; + Normalization normalization; + const SymbolTable &symbol_table; List_IM* Build_IM(int lead_lag); List_IM* Get_IM(int lead_lag); bool* bGet_IM(int lead_lag); @@ -57,8 +59,9 @@ public: void Free_IM(List_IM* First_IM); void Print_SIM(bool* IM, int n); void Normalize_and_BlockDecompose_Static_Model(); - void Normalize_and_BlockDecompose_Static_0_Model(); + void Normalize_and_BlockDecompose_Static_0_Model(const jacob_map &j_m); bool Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, int n, int* prologue, int* epilogue, simple* Index_Var_IM, simple* Index_Equ_IM, bool Do_Normalization, bool mixing, bool* IM_0 ); + bool Normalize_and_BlockDecompose(bool* IM, Model_Block* ModelBlock, int n, int* prologue, int* epilogue, simple* Index_Var_IM, simple* Index_Equ_IM, bool Do_Normalization, bool mixing, bool* IM_0 , jacob_map j_m); void Normalize_and_BlockDecompose_0(); void Normalize_and_BlockDecompose_Inside_Earth(); void Prologue_Epilogue(bool* IM, int* prologue, int* epilogue, int n, simple* Index_Var_IM, simple* Index_Equ_IM); @@ -69,6 +72,7 @@ public: void Allocate_Block(int size, int *count_Equ, int *count_Block, int type, Model_Block * ModelBlock, int* Table, int TableSize); void Free_Block(Model_Block* ModelBlock); void SetVariableTable(int *Table,int Size,int HSize); + string getnamebyID(Type type, int id); List_IM *First_IM ; List_IM *Last_IM ; simple *Index_Equ_IM; @@ -104,28 +108,30 @@ public: { switch (type) { - case 0: + case EVALUATE_FOREWARD: + case EVALUATE_FOREWARD_R: return ("EVALUATE FOREWARD "); break; - case 1: + case EVALUATE_BACKWARD: + case EVALUATE_BACKWARD_R: return ("EVALUATE BACKWARD "); break; - case 2: + case SOLVE_FOREWARD_SIMPLE: return ("SOLVE FOREWARD SIMPLE "); break; - case 3: + case SOLVE_BACKWARD_SIMPLE: return ("SOLVE BACKWARD SIMPLE "); break; - case 4: + case SOLVE_TWO_BOUNDARIES_SIMPLE: return ("SOLVE TWO BOUNDARIES SIMPLE "); break; - case 5: + case SOLVE_FOREWARD_COMPLETE: return ("SOLVE FOREWARD COMPLETE "); break; - case 6: + case SOLVE_BACKWARD_COMPLETE: return ("SOLVE BACKWARD COMPLETE "); break; - case 7: + case SOLVE_TWO_BOUNDARIES_COMPLETE: return ("SOLVE TWO BOUNDARIES COMPLETE"); break; default: @@ -137,28 +143,30 @@ public: { switch (type) { - case 0: + case EVALUATE_FOREWARD: + case EVALUATE_FOREWARD_R: return ("EVALUATE_FOREWARD "); break; - case 1: + case EVALUATE_BACKWARD: + case EVALUATE_BACKWARD_R: return ("EVALUATE_BACKWARD "); break; - case 2: + case SOLVE_FOREWARD_SIMPLE: return ("SOLVE_FOREWARD_SIMPLE "); break; - case 3: + case SOLVE_BACKWARD_SIMPLE: return ("SOLVE_BACKWARD_SIMPLE "); break; - case 4: + case SOLVE_TWO_BOUNDARIES_SIMPLE: return ("SOLVE_TWO_BOUNDARIES_SIMPLE "); break; - case 5: + case SOLVE_FOREWARD_COMPLETE: return ("SOLVE_FOREWARD_COMPLETE "); break; - case 6: + case SOLVE_BACKWARD_COMPLETE: return ("SOLVE_BACKWARD_COMPLETE "); break; - case 7: + case SOLVE_TWO_BOUNDARIES_COMPLETE: return ("SOLVE_TWO_BOUNDARIES_COMPLETE"); break; default: diff --git a/parser.src/include/ComputingTasks.hh b/parser.src/include/ComputingTasks.hh index 5cda3bc9d..0f621cb6e 100644 --- a/parser.src/include/ComputingTasks.hh +++ b/parser.src/include/ComputingTasks.hh @@ -104,9 +104,9 @@ public: class CutoffStatement : public Statement { private: - const int cutoff; + const double cutoff; public: - CutoffStatement(int cutoff_arg); + CutoffStatement(double cutoff_arg); virtual void writeOutput(ostream &output, const string &basename) const; }; diff --git a/parser.src/include/DataTree.hh b/parser.src/include/DataTree.hh index b415fa5b3..7b4ce63ac 100644 --- a/parser.src/include/DataTree.hh +++ b/parser.src/include/DataTree.hh @@ -25,7 +25,7 @@ protected: SymbolTable &symbol_table; //! Reference to numerical constants table NumericalConstants &num_constants; - + typedef list node_list_type; //! The list of nodes node_list_type node_list; @@ -128,7 +128,7 @@ DataTree::AddPossiblyNegativeConstant(double v) } ostringstream ost; ost << v; - + NodeID cnode = AddNumConstant(ost.str()); if (neg) @@ -152,7 +152,8 @@ DataTree::AddUnaryOp(UnaryOpcode op_code, NodeID arg) { try { - double argval = arg->eval(eval_context_type()); + eval_context_type *evc=NULL; + double argval = arg->eval(/*eval_context_type()*/*evc); double val = UnaryOpNode::eval_opcode(op_code, argval); return AddPossiblyNegativeConstant(val); } @@ -160,7 +161,6 @@ DataTree::AddUnaryOp(UnaryOpcode op_code, NodeID arg) { } } - return new UnaryOpNode(*this, op_code, arg); } @@ -174,15 +174,15 @@ DataTree::AddBinaryOp(NodeID arg1, BinaryOpcode op_code, NodeID arg2) // Try to reduce to a constant try { - double argval1 = arg1->eval(eval_context_type()); - double argval2 = arg2->eval(eval_context_type()); + eval_context_type *evc=NULL; + double argval1 = arg1->eval(/*eval_context_type()*/*evc); + double argval2 = arg2->eval(/*eval_context_type()*/*evc); double val = BinaryOpNode::eval_opcode(argval1, op_code, argval2); return AddPossiblyNegativeConstant(val); } catch(ExprNode::EvalException &e) { } - return new BinaryOpNode(*this, arg1, op_code, arg2); } diff --git a/parser.src/include/ModelNormalization.hh b/parser.src/include/ModelNormalization.hh index ad9c5fd71..bbf8836e9 100644 --- a/parser.src/include/ModelNormalization.hh +++ b/parser.src/include/ModelNormalization.hh @@ -1,6 +1,7 @@ #ifndef MODELNORMALIZATION #define MODELNORMALIZATION #include "SymbolTableTypes.hh" +#include "SymbolTable.hh" const int SIMULTANS=0; const int PROLOGUE=1; const int EPILOGUE=2; @@ -14,6 +15,8 @@ const int SOLVE_TWO_BOUNDARIES_SIMPLE=4; const int SOLVE_FOREWARD_COMPLETE=5; const int SOLVE_BACKWARD_COMPLETE=6; const int SOLVE_TWO_BOUNDARIES_COMPLETE=7; +const int EVALUATE_FOREWARD_R=8; +const int EVALUATE_BACKWARD_R=9; typedef struct Edge { @@ -62,11 +65,13 @@ private: int v; /* current matched of u */ }; public: - Normalization(/*t_getNameByID gdi*/); + Normalization(const SymbolTable &symbol_table_arg); ~Normalization(); - void Normalize(int n, int prologue, int epilogue, bool* IM, simple* Index_Var_IM, Equation_set* Equation,bool mixing, bool* IM_s); + bool Normalize(int n, int prologue, int epilogue, bool* IM, simple* Index_Var_IM, Equation_set* Equation,bool mixing, bool* IM_s); void Gr_to_IM_basic(int n0, int prologue, int epilogue, bool* IM, Equation_set *Equation,bool transpose); t_getNameByID getnamebyID; + const SymbolTable &symbol_table; + void Set_fp_verbose(bool ok); private: void IM_to_Gr(int n0, int prologue, int epilogue, bool* IM, Equation_set *Equation, Variable_set *Variable ); void Inits(Equation_set *Equation); diff --git a/parser.src/include/ModelTree.hh b/parser.src/include/ModelTree.hh index 6456b9586..8028a3ffc 100644 --- a/parser.src/include/ModelTree.hh +++ b/parser.src/include/ModelTree.hh @@ -12,9 +12,11 @@ using namespace std; #include "NumericalConstants.hh" #include "DataTree.hh" #include "BlockTriangular.hh" +#include "SymbolGaussElim.hh" #define LCC_COMPILE 0 #define GCC_COMPILE 1 +//#define CONDITION //! The three in which ModelTree can work enum ModelTreeMode @@ -94,7 +96,7 @@ private: void writeSparseDLLDynamicHFile(const string &dynamic_basename) const; //! Writes dynamic model file when SparseDLL option is on void writeSparseDLLDynamicCFileAndBinFile(const string &dynamic_basename, const string &bin_basename) const; - void evaluateJacobian(const eval_context_type &eval_context); + void evaluateJacobian(const eval_context_type &eval_context, jacob_map *j_m); void BlockLinear(Model_Block *ModelBlock); string reform(string name) const; @@ -106,7 +108,9 @@ public: int compiler; //! Absolute value under which a number is considered to be zero double cutoff; - + //! Use a graphical and symbolic version of the symbolic gaussian elimination new_SGE = false + //! or use direct gaussian elimination new_SGE = true + bool new_SGE; //! Declare a node as an equation of the model void addEquation(NodeID eq); //! Do some checking @@ -132,6 +136,10 @@ public: void writeDynamicFile(const string &basename) const; //! Complete set to block decompose the model BlockTriangular block_triangular; + //! Adds informations for simulation in a binary file + void Write_Inf_To_Bin_File(const string &dynamic_basename, const string &bin_basename, const int &num, + int &u_count_int, bool &file_open) const; + int equation_number() const; }; diff --git a/parser.src/include/Model_Graph.hh b/parser.src/include/Model_Graph.hh index 3effc1079..acf7520ff 100644 --- a/parser.src/include/Model_Graph.hh +++ b/parser.src/include/Model_Graph.hh @@ -6,7 +6,8 @@ #define SIMPLIFYS #define SAVE #define COMPUTE -#define PRINT_OUT_OUT +//#define PRINT_OUT_OUT +//#define PRINT_OUT_1 #define DIRECT_SAVE #include "ModelTree.hh" #include "BlockTriangular.hh" diff --git a/parser.src/include/SymbolGaussElim.hh b/parser.src/include/SymbolGaussElim.hh index c730fab04..55268bfe6 100644 --- a/parser.src/include/SymbolGaussElim.hh +++ b/parser.src/include/SymbolGaussElim.hh @@ -75,7 +75,7 @@ public: void init_glb(); void write_to_file_table_y( t_table_y *save_table_y, t_table_y *save_i_table_y, int nb_save_table_y, int nb_save_i_table_y); void write_to_file_table_u(t_table_u *save_table_u,t_table_u *save_i_table_u, int nb_save_table_u); - void write_to_file_table_u_b(t_table_u *save_table_u, t_table_u *last_table_u, int *nb_save_table_u); + void write_to_file_table_u_b(t_table_u *save_table_u, t_table_u *last_table_u, int *nb_save_table_u, bool chk); bool Check_Regularity(t_table_u *first_u_blck, t_table_u *second_u_blck, t_table_u *third_u_blck); t_table_u* interpolation(t_model_graph* model_graph,t_table_y* table_y, int to_add, bool middle,int per); bool Loop_Elimination(t_model_graph* model_graph); @@ -87,6 +87,9 @@ public: , bool dynamic); int SGE_all(int endo,int Time, List_IM *First_IM); void SGE_compute(Model_Block *ModelBlock, int blck, bool dynamic, string file_name, int endo_nbr); + void file_is_open(); + void file_is_open1(); + }; //------------------------------------------------------------------------------ #endif diff --git a/tests/ferhat/Doquier.mod b/tests/ferhat/Doquier.mod new file mode 100644 index 000000000..d8353f29d --- /dev/null +++ b/tests/ferhat/Doquier.mod @@ -0,0 +1,8024 @@ +// regions // +// nam = northamerica (leader) // +// adv = advanced countries: eu-15, australia & new-zeland // +// eas = eastern europe // +// men = mediterranean world // +// lac = latin america and caribbean islands // +// jap = japan // +// ssa = subsaharian africa // +// rus = russian world // +// chi = chinese world // +// ind = indian world + pacific islands // + + +// population is divided into 8 generations: // +// individuals aged 15 to 24 in japan(generation 1): n1t // +// individuals aged 25 to 34 in japan(generation 2): n2t // +// individuals aged 35 to 44 in japan(generation 3): n3t // +// individuals aged 45 to 54 in japan(generation 4): n4t // +// individuals aged 55 to 64 in japan(generation 5): n5t // +// individuals aged 65 to 74 in japan(generation 6): n6t // +// individuals aged 75 to 84 in japan(generation 7): n7t // +// individuals aged 85 to 94 in japan(generation 8): n8t // + + +// deflating +// 1) variables deflated by the leader's technology (abar): // +// x(consumption). wag(wage), b (pension benefits) // +// bs and bu (pension benefits for skilled resp.unskilled) // +// 2) variables deflated by the the region's young generation (n1t): // +// lab(labor force) // +// 3) variables deflated by abar (i.e.tfpnam) and by the region's n1t // +// k(capital), gdp, z(assets), wea(wealth), +// gov (governement's budget) // + + +// variables // + +// xu1jap = period 1 consumption of 1 unskilled individuals in japan +// +// xs1jap = period 1 consumption of skilled individuals in japan +// + +// xu2jap, xu3jap, xu4jap, xu5jap, xu6jap, xu7jap, xu8jap +// +// (period 2 to 8 consumptions for unskilled) // +// xs2jap, xs3jap, xs4jap, xs5jap, xs6jap, xs7jap, xs8jap +// +// (period 2 to 8 consumptions for skilled) // + +// zu1jap = period 1 aggregated assets of all unskilled individuals +// +// in japan (period 1 assets equal 0) // +// zs1jap = period 1 assets of skilled individuals in japan +// +// (period 1 assets equal 0) // + +// zu2jap, zu3jap, zu4jap, zu5jap, zu6jap, zu7jap, zu8jap +// +// (period 2 to 8 assets for unskilled) // +// zs2jap, zs3jap, zs4jap, zs5jap, zs6jap, zs7jap, zs8jap +// +// (period 2 to 8 assets for skilled) // +// taujap = labor income tax +// +// bujap = pension benefits for unskilled individuals +// +// bsjap = pension benefits for skilled individuals +// + + + +// govjap = solde budg้taire +// + +// weajap = wealth in japan +// +// (sum of assets of unskilled and skilled over one period) // +// wagjap = wage in japan +// +// intratejap = (1 + interest rate) in japan +// +// gdpjap = gdp in japan +// +// kjap = capital in japan +// +// labjap = labor force in japan +// +// hjap = human capital in japan +// + +// para et v.exog่nes: // + +// ggnam = tfp growth rate of the leader (nam) +// +// p2jap to p8jap = probability of being alive at time +// +// for generation 2 (respectively generations 3,4,5,6,7,8) // +// phijap = proportion of skilled individuals +// +// lams1jap = labor force partcipation rate of +// +// the skilled individuals of generation 1 // +// lamu1jap = labor force partcipation rate of +// +// the skilled individuals of generation 1 // +// edusjap = fraction of time spent in education for skilled +// +// eduujap = fraction of time spent in education for unskilled +// +// beta = preference rate of the households +// +// alpha = technology parameter +// +// tfpjap = total factor productivity in japan (ajap/anam) +// +// ddyjap = public debt in japan // +// repujap = replacement rate for the unskilled // +// repsjap = replacement rate for the skilled // +// note: // +// if repsjap=repujap ==> bismarckian pension system // +// if repsjap=repujap/humjap ==> beveridgian pension system // + + + + +periods 50; + +var + +// ------------------------ advanced countries ------------------------ // + +xs1adv xs2adv xs3adv xs4adv xs5adv xs6adv xs7adv xs8adv +xu1adv xu2adv xu3adv xu4adv xu5adv xu6adv xu7adv xu8adv +zs2adv zs3adv zs4adv zs5adv zs6adv zs7adv zs8adv +zu2adv zu3adv zu4adv zu5adv zu6adv zu7adv zu8adv +labadv gdpadv weaadv kadv +bsadv buadv govadv tauadv bengdpadv supadv + +// ------------------------------- nam ------------------------------- // + +xs1nam xs2nam xs3nam xs4nam xs5nam xs6nam xs7nam xs8nam +xu1nam xu2nam xu3nam xu4nam xu5nam xu6nam xu7nam xu8nam +zs2nam zs3nam zs4nam zs5nam zs6nam zs7nam zs8nam +zu2nam zu3nam zu4nam zu5nam zu6nam zu7nam zu8nam +labnam gdpnam weanam knam +bsnam bunam govnam taunam bengdpnam supnam + +// ------------------------------- ssa ------------------------------- // + +xs1ssa xs2ssa xs3ssa xs4ssa xs5ssa xs6ssa xs7ssa xs8ssa +xu1ssa xu2ssa xu3ssa xu4ssa xu5ssa xu6ssa xu7ssa xu8ssa +zs2ssa zs3ssa zs4ssa zs5ssa zs6ssa zs7ssa zs8ssa +zu2ssa zu3ssa zu4ssa zu5ssa zu6ssa zu7ssa zu8ssa +labssa gdpssa weassa kssa +bsssa bussa govssa taussa bengdpssa supssa + +// ------------------------------- lac ------------------------------- // + +xs1lac xs2lac xs3lac xs4lac xs5lac xs6lac xs7lac xs8lac +xu1lac xu2lac xu3lac xu4lac xu5lac xu6lac xu7lac xu8lac +zs2lac zs3lac zs4lac zs5lac zs6lac zs7lac zs8lac +zu2lac zu3lac zu4lac zu5lac zu6lac zu7lac zu8lac +lablac gdplac wealac klac +bslac bulac govlac taulac bengdplac suplac + +// ------------------------------- japan ------------------------------ // + +xs1jap xs2jap xs3jap xs4jap xs5jap xs6jap xs7jap xs8jap +xu1jap xu2jap xu3jap xu4jap xu5jap xu6jap xu7jap xu8jap +zs2jap zs3jap zs4jap zs5jap zs6jap zs7jap zs8jap +zu2jap zu3jap zu4jap zu5jap zu6jap zu7jap zu8jap +labjap gdpjap weajap kjap +bsjap bujap govjap taujap bengdpjap supjap + +// ---------------------------- rusland ------------------------------- // + +xs1rus xs2rus xs3rus xs4rus xs5rus xs6rus xs7rus xs8rus +xu1rus xu2rus xu3rus xu4rus xu5rus xu6rus xu7rus xu8rus +zs2rus zs3rus zs4rus zs5rus zs6rus zs7rus zs8rus +zu2rus zu3rus zu4rus zu5rus zu6rus zu7rus zu8rus +labrus gdprus wearus krus +bsrus burus govrus taurus bengdprus suprus + +// ------------------------------ mena -------------------------------- // + +xs1men xs2men xs3men xs4men xs5men xs6men xs7men xs8men +xu1men xu2men xu3men xu4men xu5men xu6men xu7men xu8men +zs2men zs3men zs4men zs5men zs6men zs7men zs8men +zu2men zu3men zu4men zu5men zu6men zu7men zu8men +labmen gdpmen weamen kmen +bsmen bumen govmen taumen bengdpmen supmen + +// -------------------------- eastern europe -------------------------- // + +xs1eas xs2eas xs3eas xs4eas xs5eas xs6eas xs7eas xs8eas +xu1eas xu2eas xu3eas xu4eas xu5eas xu6eas xu7eas xu8eas +zs2eas zs3eas zs4eas zs5eas zs6eas zs7eas zs8eas +zu2eas zu3eas zu4eas zu5eas zu6eas zu7eas zu8eas +labeas gdpeas weaeas keas +bseas bueas goveas taueas bengdpeas supeas + +// ------------------------------ china ------------------------------- // + +xs1chi xs2chi xs3chi xs4chi xs5chi xs6chi xs7chi xs8chi +xu1chi xu2chi xu3chi xu4chi xu5chi xu6chi xu7chi xu8chi +zs2chi zs3chi zs4chi zs5chi zs6chi zs7chi zs8chi +zu2chi zu3chi zu4chi zu5chi zu6chi zu7chi zu8chi +labchi gdpchi weachi kchi +bschi buchi govchi tauchi bengdpchi supchi + +// ------------------------------ india ------------------------------- // + +xs1ind xs2ind xs3ind xs4ind xs5ind xs6ind xs7ind xs8ind +xu1ind xu2ind xu3ind xu4ind xu5ind xu6ind xu7ind xu8ind +zs2ind zs3ind zs4ind zs5ind zs6ind zs7ind zs8ind +zu2ind zu3ind zu4ind zu5ind zu6ind zu7ind zu8ind +labind gdpind weaind kind +bsind buind govind tauind bengdpind supind + +trgdpadv trgdpnam trgdpssa trgdplac trgdpjap trgdprus trgdpmen trgdpeas +trgdpchi +trgdpind + +lablabsshadv lablabsshnam lablabsshjap lablabsshssa lablabsshlac +lablabssheas lablabsshmen lablabsshrus lablabsshchi lablabsshind + +conspubgdpadv conspubgdpnam conspubgdpjap conspubgdpeas conspubgdpmen +conspubgdprus conspubgdplac conspubgdpssa conspubgdpchi conspubgdpind + +labsadv labsnam labsjap labsssa labslac labseas labsmen labsrus labschi +labsind + +labuadv labunam labujap labussa labulac labueas labumen laburus labuchi +labuind + +labdduadv labddunam labddujap labddussa labddulac labddueas +labddumen labddurus labdduchi labdduind + +wagsadv wagsnam wagsssa wagslac wagsjap wagseas wagsmen wagsrus wagschi +wagsind + +waguadv wagunam wagussa wagulac wagujap wagueas wagumen wagurus waguchi +waguind + +wagddsadv wagddsnam wagddsssa wagddslac wagddsjap +wagddseas wagddsmen wagddsrus wagddschi wagddsind + +wagdduadv wagddunam wagddussa wagddulac wagddujap +wagddueas wagddumen wagddurus wagdduchi wagdduind + +thetaadv thetanam thetassa thetalac thetajap thetamen thetaeas thetarus +thetachi +thetaind + +pissa pilac pimen pieas pirus pichi piind + +taxesgdpadv taxesgdpchi taxesgdpeas taxesgdpind taxesgdpjap +taxesgdplac taxesgdpmen taxesgdpnam taxesgdprus taxesgdpssa + +growthadv growthnam growthjap growthssa growthlac +growthmen growthrus growtheas growthchi growthind + +ownadv ownnam ownjap ownssa ownlac ownmen ownrus owneas ownchi ownind +faadv fanam fajap falac faeas famen farus fachi faind fassa +caadv canam cajap calac caeas camen carus cachi caind cassa + +fasum casum ownsum + +zzdebtadv zzdebtnam zzdebtjap zzdebtlac zzdebteas zzdebtmen zzdebtrus +zzdebtchi zzdebtind +zzdebtssa + +zzown2adv zzown2nam zzown2jap zzown2ssa zzown2lac zzown2men zzown2rus +zzown2eas zzown2chi +zzown2ind +zzfa2adv zzfa2nam zzfa2jap zzfa2lac zzfa2eas zzfa2men zzfa2rus zzfa2chi +zzfa2ind +zzfa2ssa +zzca2adv zzca2nam zzca2jap zzca2lac zzca2eas zzca2men zzca2rus zzca2chi +zzca2ind +zzca2ssa + +zzown2sum zzfa2sum zzca2sum zzdebtsum + +zzvardebtadv zzvardebtnam zzvardebtjap zzvardebtlac zzvardebteas zzvardebtmen +zzvardebtrus zzvardebtchi zzvardebtind +zzvardebtssa +zzvarkadv zzvarknam zzvarkjap zzvarklac zzvarkeas zzvarkmen zzvarkrus +zzvarkchi zzvarkind +zzvarkssa +zzvarweaadv zzvarweanam zzvarweajap zzvarwealac zzvarweaeas zzvarweamen +zzvarwearus zzvarweachi zzvarweaind +zzvarweassa + +zzznewcaadv zzznewcanam zzznewcajap zzznewcalac zzznewcaeas zzznewcamen +zzznewcarus zzznewcachi zzznewcaind +zzznewcassa +zzznewcasum + +intrate + +ratiogdpadv +ratiogdpssa +ratiogdplac +ratiogdpjap +ratiogdprus +ratiogdpmen +ratiogdpeas +ratiogdpchi +ratiogdpind + +urnam +uradv +ureas +urrus +urmen +urssa +urlac +urjap +urind +urchi + +hadv hnam hssa hlac hjap hrus hmen heas hchi hind + +; + +varexo + +// ------------------------ advanced countries ------------------------ // + +p2adv p3adv p4adv p5adv p6adv p7adv p8adv +edusadv eduuadv +lams1adv lams2adv lams3adv lams4adv lams5adv lams6adv lams7adv lams8adv +lamu1adv lamu2adv lamu3adv lamu4adv lamu5adv lamu6adv lamu7adv lamu8adv +ddyadv conspubadv + +// ------------------------------- nam ------------------------------- // + +p2nam p3nam p4nam p5nam p6nam p7nam p8nam +edusnam eduunam +lams1nam lams2nam lams3nam lams4nam lams5nam lams6nam lams7nam lams8nam +lamu1nam lamu2nam lamu3nam lamu4nam lamu5nam lamu6nam lamu7nam lamu8nam +ddynam conspubnam + +// ------------------------------- ssa ------------------------------- // + +p2ssa p3ssa p4ssa p5ssa p6ssa p7ssa p8ssa +edusssa eduussa +lams1ssa lams2ssa lams3ssa lams4ssa lams5ssa lams6ssa lams7ssa lams8ssa +lamu1ssa lamu2ssa lamu3ssa lamu4ssa lamu5ssa lamu6ssa lamu7ssa lamu8ssa +ddyssa conspubssa + +// ------------------------------- lac ------------------------------- // + +p2lac p3lac p4lac p5lac p6lac p7lac p8lac +eduslac eduulac +lams1lac lams2lac lams3lac lams4lac lams5lac lams6lac lams7lac lams8lac +lamu1lac lamu2lac lamu3lac lamu4lac lamu5lac lamu6lac lamu7lac lamu8lac +ddylac conspublac + +// ------------------------------ japan ------------------------------- // + +p2jap p3jap p4jap p5jap p6jap p7jap p8jap +edusjap eduujap +lams1jap lams2jap lams3jap lams4jap lams5jap lams6jap lams7jap lams8jap +lamu1jap lamu2jap lamu3jap lamu4jap lamu5jap lamu6jap lamu7jap lamu8jap +ddyjap conspubjap + +// ---------------------------- rusland ------------------------------- // + +p2rus p3rus p4rus p5rus p6rus p7rus p8rus +edusrus eduurus +lams1rus lams2rus lams3rus lams4rus lams5rus lams6rus lams7rus lams8rus +lamu1rus lamu2rus lamu3rus lamu4rus lamu5rus lamu6rus lamu7rus lamu8rus +ddyrus conspubrus + +// ------------------------------ mena -------------------------------- // + +p2men p3men p4men p5men p6men p7men p8men +edusmen eduumen +lams1men lams2men lams3men lams4men lams5men lams6men lams7men lams8men +lamu1men lamu2men lamu3men lamu4men lamu5men lamu6men lamu7men lamu8men +ddymen conspubmen + +// ------------------------ eastern countries ------------------------- // + +p2eas p3eas p4eas p5eas p6eas p7eas p8eas +eduseas eduueas +lams1eas lams2eas lams3eas lams4eas lams5eas lams6eas lams7eas lams8eas +lamu1eas lamu2eas lamu3eas lamu4eas lamu5eas lamu6eas lamu7eas lamu8eas +ddyeas conspubeas + +// ------------------------------ china ------------------------------- // + +p2chi p3chi p4chi p5chi p6chi p7chi p8chi +eduschi eduuchi +lams1chi lams2chi lams3chi lams4chi lams5chi lams6chi lams7chi lams8chi +lamu1chi lamu2chi lamu3chi lamu4chi lamu5chi lamu6chi lamu7chi lamu8chi +ddychi conspubchi + +// ------------------------------ india ------------------------------- // + +p2ind p3ind p4ind p5ind p6ind p7ind p8ind +edusind eduuind +lams1ind lams2ind lams3ind lams4ind lams5ind lams6ind lams7ind lams8ind +lamu1ind lamu2ind lamu3ind lamu4ind lamu5ind lamu6ind lamu7ind lamu8ind +ddyind conspubind + +ggnam + +repnam repadv repjap repssa replac repmen repeas reprus repchi repind + +mmnam mmadv mmeas mmrus mmmen mmssa mmlac mmjap mmind mmchi + +nnadvnam nnssanam nnlacnam nnjapnam nnrusnam nnmennam nneasnam nnchinam +nnindnam + +phinam phiadv phijap phieas phirus phimen phissa philac phichi phiind + +tcadv tcnam tcjap tclac tcssa tcmen tceas tcrus tcchi tcind + +psinam psiadv psijap psieas psimen psirus psilac psissa psichi psiind + +rankssa ranklac rankmen rankeas rankrus rankchi rankind + +tfpadv +tfpssa +tfplac +tfpjap +tfprus +tfpmen +tfpeas +tfpchi +tfpind + +etaadv etanam etajap etaeas etamen etarus etalac etassa etachi etaind + +aaadv +aanam +aassa +aalac +aajap +aaeas +aamen +aarus +aachi +aaind + +pimax +; + +parameters +beta alpha delta +rhonam rhoadv rhojap rhossa rholac rhomen rhoeas rhorus rhochi rhoind +tr1unam tr2unam tr3unam tr4unam tr5unam tr6unam tr7unam tr8unam +tr1snam tr2snam tr3snam tr4snam tr5snam tr6snam tr7snam tr8snam +tr1uadv tr2uadv tr3uadv tr4uadv tr5uadv tr6uadv tr7uadv tr8uadv +tr1sadv tr2sadv tr3sadv tr4sadv tr5sadv tr6sadv tr7sadv tr8sadv +tr1ujap tr2ujap tr3ujap tr4ujap tr5ujap tr6ujap tr7ujap tr8ujap +tr1sjap tr2sjap tr3sjap tr4sjap tr5sjap tr6sjap tr7sjap tr8sjap +tr1ueas tr2ueas tr3ueas tr4ueas tr5ueas tr6ueas tr7ueas tr8ueas +tr1seas tr2seas tr3seas tr4seas tr5seas tr6seas tr7seas tr8seas +tr1ussa tr2ussa tr3ussa tr4ussa tr5ussa tr6ussa tr7ussa tr8ussa +tr1sssa tr2sssa tr3sssa tr4sssa tr5sssa tr6sssa tr7sssa tr8sssa +tr1ulac tr2ulac tr3ulac tr4ulac tr5ulac tr6ulac tr7ulac tr8ulac +tr1slac tr2slac tr3slac tr4slac tr5slac tr6slac tr7slac tr8slac +tr1umen tr2umen tr3umen tr4umen tr5umen tr6umen tr7umen tr8umen +tr1smen tr2smen tr3smen tr4smen tr5smen tr6smen tr7smen tr8smen +tr1urus tr2urus tr3urus tr4urus tr5urus tr6urus tr7urus tr8urus +tr1srus tr2srus tr3srus tr4srus tr5srus tr6srus tr7srus tr8srus +tr1uchi tr2uchi tr3uchi tr4uchi tr5uchi tr6uchi tr7uchi tr8uchi +tr1schi tr2schi tr3schi tr4schi tr5schi tr6schi tr7schi tr8schi +tr1uind tr2uind tr3uind tr4uind tr5uind tr6uind tr7uind tr8uind +tr1sind tr2sind tr3sind tr4sind tr5sind tr6sind tr7sind tr8sind + +sigma +; + +sigma=0.285714286; +alpha=0.33; +beta=1; +delta=0.4; +rhonam=0.2; +rhoadv=0.6; +rhojap=0.8; +rhossa=0; +rholac=0; +rhomen=0; +rhoeas=0; +rhorus=0; +rhochi=0; +rhoind=0; + +tr1unam= 0.07 ; +tr2unam= 0.12 ; +tr3unam= 0.12 ; +tr4unam= 0.12 ; +tr5unam= 0.12 ; +tr6unam= 0.2 ; +tr7unam= 0.25 ; +tr8unam= 0.25 ; +tr1snam= 0.005 ; +tr2snam= 0.01 ; +tr3snam= 0.01 ; +tr4snam= 0.01 ; +tr5snam= 0.01 ; +tr6snam= 0.06 ; +tr7snam= 0.12 ; +tr8snam= 0.12 ; + +tr1uadv= 0.1 ; +tr2uadv= 0.18 ; +tr3uadv= 0.18 ; +tr4uadv= 0.18 ; +tr5uadv= 0.18 ; +tr6uadv= 0.2 ; +tr7uadv= 0.22 ; +tr8uadv= 0.22 ; +tr1sadv= 0.03 ; +tr2sadv= 0.06 ; +tr3sadv= 0.06 ; +tr4sadv= 0.06 ; +tr5sadv= 0.06 ; +tr6sadv= 0.1 ; +tr7sadv= 0.15 ; +tr8sadv= 0.15 ; + +tr1ueas= 0.007 ; +tr2ueas= 0.012 ; +tr3ueas= 0.012 ; +tr4ueas= 0.012 ; +tr5ueas= 0.012 ; +tr6ueas= 0.02 ; +tr7ueas= 0.025 ; +tr8ueas= 0.025 ; +tr1seas= 0.0005 ; +tr2seas= 0.001 ; +tr3seas= 0.001 ; +tr4seas= 0.001 ; +tr5seas= 0.001 ; +tr6seas= 0.006 ; +tr7seas= 0.012 ; +tr8seas= 0.012 ; + +tr1ulac= 0.007 ; +tr2ulac= 0.012 ; +tr3ulac= 0.012 ; +tr4ulac= 0.012 ; +tr5ulac= 0.012 ; +tr6ulac= 0.02 ; +tr7ulac= 0.025 ; +tr8ulac= 0.025 ; +tr1slac= 0.0005 ; +tr2slac= 0.001 ; +tr3slac= 0.001 ; +tr4slac= 0.001 ; +tr5slac= 0.001 ; +tr6slac= 0.006 ; +tr7slac= 0.012 ; +tr8slac= 0.012 ; + +tr1ussa= 0.007 ; +tr2ussa= 0.012 ; +tr3ussa= 0.012 ; +tr4ussa= 0.012 ; +tr5ussa= 0.012 ; +tr6ussa= 0.02 ; +tr7ussa= 0.025 ; +tr8ussa= 0.025 ; +tr1sssa= 0.0005 ; +tr2sssa= 0.001 ; +tr3sssa= 0.001 ; +tr4sssa= 0.001 ; +tr5sssa= 0.001 ; +tr6sssa= 0.006 ; +tr7sssa= 0.012 ; +tr8sssa= 0.012 ; + +tr1uchi= 0.007 ; +tr2uchi= 0.012 ; +tr3uchi= 0.012 ; +tr4uchi= 0.012 ; +tr5uchi= 0.012 ; +tr6uchi= 0.02 ; +tr7uchi= 0.025 ; +tr8uchi= 0.025 ; +tr1schi= 0.0005 ; +tr2schi= 0.001 ; +tr3schi= 0.001 ; +tr4schi= 0.001 ; +tr5schi= 0.001 ; +tr6schi= 0.006 ; +tr7schi= 0.012 ; +tr8schi= 0.012 ; + +tr1uind= 0.007 ; +tr2uind= 0.012 ; +tr3uind= 0.012 ; +tr4uind= 0.012 ; +tr5uind= 0.012 ; +tr6uind= 0.02 ; +tr7uind= 0.025 ; +tr8uind= 0.025 ; +tr1sind= 0.0005 ; +tr2sind= 0.001 ; +tr3sind= 0.001 ; +tr4sind= 0.001 ; +tr5sind= 0.001 ; +tr6sind= 0.006 ; +tr7sind= 0.012 ; +tr8sind= 0.012 ; + +tr1umen= 0.007 ; +tr2umen= 0.012 ; +tr3umen= 0.012 ; +tr4umen= 0.012 ; +tr5umen= 0.012 ; +tr6umen= 0.02 ; +tr7umen= 0.025 ; +tr8umen= 0.025 ; +tr1smen= 0.0005 ; +tr2smen= 0.001 ; +tr3smen= 0.001 ; +tr4smen= 0.001 ; +tr5smen= 0.001 ; +tr6smen= 0.006 ; +tr7smen= 0.012 ; +tr8smen= 0.012 ; + +tr1urus= 0.007 ; +tr2urus= 0.012 ; +tr3urus= 0.012 ; +tr4urus= 0.012 ; +tr5urus= 0.012 ; +tr6urus= 0.02 ; +tr7urus= 0.025 ; +tr8urus= 0.025 ; +tr1srus= 0.0005 ; +tr2srus= 0.001 ; +tr3srus= 0.001 ; +tr4srus= 0.001 ; +tr5srus= 0.001 ; +tr6srus= 0.006 ; +tr7srus= 0.012 ; +tr8srus= 0.012 ; + +tr1ujap= 0.1 ; +tr2ujap= 0.18 ; +tr3ujap= 0.18 ; +tr4ujap= 0.18 ; +tr5ujap= 0.18 ; +tr6ujap= 0.2 ; +tr7ujap= 0.22 ; +tr8ujap= 0.22 ; +tr1sjap= 0.03 ; +tr2sjap= 0.06 ; +tr3sjap= 0.06 ; +tr4sjap= 0.06 ; +tr5sjap= 0.06 ; +tr6sjap= 0.1 ; +tr7sjap= 0.15 ; +tr8sjap= 0.15 ; + + +model(sparse_dll,GCC_Compiler, cutoff = 1.0e-17); + +// -------------------------------- open ------------------------------- // + +knam+kadv*nnadvnam+kssa*nnssanam+klac*nnlacnam ++kjap*nnjapnam+krus*nnrusnam+kmen*nnmennam ++keas*nneasnam+kchi*nnchinam+kind*nnindnam ++ddynam*gdpnam ++ddyadv*gdpadv*nnadvnam+ddyssa*gdpssa*nnssanam+ddylac*gdplac*nnlacnam ++ddyjap*gdpjap*nnjapnam+ddyrus*gdprus*nnrusnam+ddymen*gdpmen*nnmennam ++ddyeas*gdpeas*nneasnam+ddychi*gdpchi*nnchinam+ddyind*gdpind*nnindnam +=weanam ++weaadv*nnadvnam+weassa*nnssanam+wealac*nnlacnam ++weajap*nnjapnam+wearus*nnrusnam+weamen*nnmennam ++weaeas*nneasnam+weachi*nnchinam+weaind*nnindnam; + +intrate=1+alpha*knam^(alpha-1)*labnam^(1-alpha)-delta; +knam^(alpha-1)*labnam^(1-alpha)=kadv^(alpha-1)*(tfpadv*labadv)^(1-alpha); +knam^(alpha-1)*labnam^(1-alpha)=kjap^(alpha-1)*(tfpjap*labjap)^(1-alpha); + +intrate*(1+pissa)=(1+alpha*kssa^(alpha-1)*(tfpssa*labssa)^(1-alpha)-delta); +intrate*(1+pilac)=(1+alpha*klac^(alpha-1)*(tfplac*lablac)^(1-alpha)-delta); +intrate*(1+pirus)=(1+alpha*krus^(alpha-1)*(tfprus*labrus)^(1-alpha)-delta); +intrate*(1+pimen)=(1+alpha*kmen^(alpha-1)*(tfpmen*labmen)^(1-alpha)-delta); +intrate*(1+pieas)=(1+alpha*keas^(alpha-1)*(tfpeas*labeas)^(1-alpha)-delta); +intrate*(1+pichi)=(1+alpha*kchi^(alpha-1)*(tfpchi*labchi)^(1-alpha)-delta); +intrate*(1+piind)=(1+alpha*kind^(alpha-1)*(tfpind*labind)^(1-alpha)-delta); + +ddyadv(+1)*gdpadv(+1)=intrate*ddyadv*gdpadv/(ggnam(+1)*mmadv)-govadv/(ggnam(+1)*mmadv); +ddynam(+1)*gdpnam(+1)=intrate*ddynam*gdpnam/(ggnam(+1)*mmnam)-govnam/(ggnam(+1)*mmnam); +ddyssa(+1)*gdpssa(+1)=intrate*ddyssa*gdpssa/(ggnam(+1)*mmssa)-govssa/(ggnam(+1)*mmssa); +ddylac(+1)*gdplac(+1)=intrate*ddylac*gdplac/(ggnam(+1)*mmlac)-govlac/(ggnam(+1)*mmlac); +ddyjap(+1)*gdpjap(+1)=intrate*ddyjap*gdpjap/(ggnam(+1)*mmjap)-govjap/(ggnam(+1)*mmjap); +ddyrus(+1)*gdprus(+1)=intrate*ddyrus*gdprus/(ggnam(+1)*mmrus)-govrus/(ggnam(+1)*mmrus); +ddymen(+1)*gdpmen(+1)=intrate*ddymen*gdpmen/(ggnam(+1)*mmmen)-govmen/(ggnam(+1)*mmmen); +ddyeas(+1)*gdpeas(+1)=intrate*ddyeas*gdpeas/(ggnam(+1)*mmeas)-goveas/(ggnam(+1)*mmeas); +ddychi(+1)*gdpchi(+1)=intrate*ddychi*gdpchi/(ggnam(+1)*mmchi)-govchi/(ggnam(+1)*mmchi); +ddyind(+1)*gdpind(+1)=intrate*ddyind*gdpind/(ggnam(+1)*mmind)-govind/(ggnam(+1)*mmind); + +bsadv=repadv*(rhoadv*wagddsadv+(1-rhoadv)*(1-uradv)*wagdduadv); +buadv=repadv*(1-uradv)*wagdduadv; +bsnam=repnam*(rhonam*wagddsnam+(1-rhonam)*(1-urnam)*wagddunam); +bunam=repnam*(1-urnam)*wagddunam; +bsssa=repssa*(rhossa*wagddsssa+(1-rhossa)*(1-urssa)*wagddussa); +bussa=repssa*(1-urssa)*wagddussa; +bslac=replac*(rholac*wagddslac+(1-rholac)*(1-urlac)*wagddulac); +bulac=replac*(1-urlac)*wagddulac; +bsjap=repjap*(rhojap*wagddsjap+(1-rhojap)*(1-urjap)*wagddujap); +bujap=repjap*(1-urjap)*wagddujap; +bsrus=reprus*(rhorus*wagddsrus+(1-rhorus)*(1-urrus)*wagddurus); +burus=reprus*(1-urrus)*wagddurus; +bsmen=repmen*(rhomen*wagddsmen+(1-rhomen)*(1-urmen)*wagddumen); +bumen=repmen*(1-urmen)*wagddumen; +bseas=repeas*(rhoeas*wagddseas+(1-rhoeas)*(1-ureas)*wagddueas); +bueas=repeas*(1-ureas)*wagddueas; +bschi=repchi*(rhochi*wagddschi+(1-rhochi)*(1-urchi)*wagdduchi); +buchi=repchi*(1-urchi)*wagdduchi; +bsind=repind*(rhoind*wagddsind+(1-rhoind)*(1-urind)*wagdduind); +buind=repind*(1-urind)*wagdduind; + +// ----------------------------- pi ----------------------------------- // + +pissa=rankssa/7*pimax; +pilac=ranklac/7*pimax; +pimen=rankmen/7*pimax; +pieas=rankeas/7*pimax; +pirus=rankrus/7*pimax; +pichi=rankchi/7*pimax; +piind=rankind/7*pimax; + +// ----------------------------- labs and labu ------------------------ // + +labsadv=(1-edusadv)*phiadv*lams1adv ++phiadv(-1)*lams2adv*p2adv/mmadv(-1) ++phiadv(-2)*lams3adv*p3adv/(mmadv(-1)*mmadv(-2)) ++phiadv(-3)*lams4adv*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++phiadv(-4)*lams5adv*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++phiadv(-5)*lams6adv*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++phiadv(-6)*lams7adv*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++phiadv(-7)*lams8adv*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)); + +labuadv=(1-eduuadv)*(1-phiadv)*lamu1adv ++(1-phiadv(-1))*lamu2adv*p2adv/mmadv(-1) ++(1-phiadv(-2))*lamu3adv*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-phiadv(-3))*lamu4adv*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-phiadv(-4))*lamu5adv*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-phiadv(-5))*lamu6adv*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-phiadv(-6))*lamu7adv*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-phiadv(-7))*lamu8adv*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)); + +labsnam=(1-edusnam)*phinam*lams1nam ++phinam(-1)*lams2nam*p2nam/mmnam(-1) ++phinam(-2)*lams3nam*p3nam/(mmnam(-1)*mmnam(-2)) ++phinam(-3)*lams4nam*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++phinam(-4)*lams5nam*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++phinam(-5)*lams6nam*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++phinam(-6)*lams7nam*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++phinam(-7)*lams8nam*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)); + +labunam=(1-eduunam)*(1-phinam)*lamu1nam ++(1-phinam(-1))*lamu2nam*p2nam/mmnam(-1) ++(1-phinam(-2))*lamu3nam*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-phinam(-3))*lamu4nam*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-phinam(-4))*lamu5nam*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-phinam(-5))*lamu6nam*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-phinam(-6))*lamu7nam*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-phinam(-7))*lamu8nam*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)); + +labsssa=(1-edusssa)*phissa*lams1ssa ++phissa(-1)*lams2ssa*p2ssa/mmssa(-1) ++phissa(-2)*lams3ssa*p3ssa/(mmssa(-1)*mmssa(-2)) ++phissa(-3)*lams4ssa*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++phissa(-4)*lams5ssa*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++phissa(-5)*lams6ssa*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++phissa(-6)*lams7ssa*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++phissa(-7)*lams8ssa*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)); + +labussa=(1-eduussa)*(1-phissa)*lamu1ssa ++(1-phissa(-1))*lamu2ssa*p2ssa/mmssa(-1) ++(1-phissa(-2))*lamu3ssa*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-phissa(-3))*lamu4ssa*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-phissa(-4))*lamu5ssa*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-phissa(-5))*lamu6ssa*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-phissa(-6))*lamu7ssa*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-phissa(-7))*lamu8ssa*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)); + +labslac=(1-eduslac)*philac*lams1lac ++philac(-1)*lams2lac*p2lac/mmlac(-1) ++philac(-2)*lams3lac*p3lac/(mmlac(-1)*mmlac(-2)) ++philac(-3)*lams4lac*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++philac(-4)*lams5lac*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++philac(-5)*lams6lac*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++philac(-6)*lams7lac*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++philac(-7)*lams8lac*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)); + +labulac=(1-eduulac)*(1-philac)*lamu1lac ++(1-philac(-1))*lamu2lac*p2lac/mmlac(-1) ++(1-philac(-2))*lamu3lac*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-philac(-3))*lamu4lac*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-philac(-4))*lamu5lac*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-philac(-5))*lamu6lac*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-philac(-6))*lamu7lac*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-philac(-7))*lamu8lac*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)); + +labsjap=(1-edusjap)*phijap*lams1jap ++phijap(-1)*lams2jap*p2jap/mmjap(-1) ++phijap(-2)*lams3jap*p3jap/(mmjap(-1)*mmjap(-2)) ++phijap(-3)*lams4jap*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++phijap(-4)*lams5jap*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++phijap(-5)*lams6jap*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++phijap(-6)*lams7jap*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++phijap(-7)*lams8jap*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)); + +labujap=(1-eduujap)*(1-phijap)*lamu1jap ++(1-phijap(-1))*lamu2jap*p2jap/mmjap(-1) ++(1-phijap(-2))*lamu3jap*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-phijap(-3))*lamu4jap*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-phijap(-4))*lamu5jap*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-phijap(-5))*lamu6jap*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-phijap(-6))*lamu7jap*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-phijap(-7))*lamu8jap*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)); + +labseas=(1-eduseas)*phieas*lams1eas ++phieas(-1)*lams2eas*p2eas/mmeas(-1) ++phieas(-2)*lams3eas*p3eas/(mmeas(-1)*mmeas(-2)) ++phieas(-3)*lams4eas*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++phieas(-4)*lams5eas*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++phieas(-5)*lams6eas*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++phieas(-6)*lams7eas*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++phieas(-7)*lams8eas*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)); + +labueas=(1-eduueas)*(1-phieas)*lamu1eas ++(1-phieas(-1))*lamu2eas*p2eas/mmeas(-1) ++(1-phieas(-2))*lamu3eas*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-phieas(-3))*lamu4eas*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-phieas(-4))*lamu5eas*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-phieas(-5))*lamu6eas*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-phieas(-6))*lamu7eas*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-phieas(-7))*lamu8eas*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)); + +labsmen=(1-edusmen)*phimen*lams1men ++phimen(-1)*lams2men*p2men/mmmen(-1) ++phimen(-2)*lams3men*p3men/(mmmen(-1)*mmmen(-2)) ++phimen(-3)*lams4men*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++phimen(-4)*lams5men*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++phimen(-5)*lams6men*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++phimen(-6)*lams7men*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++phimen(-7)*lams8men*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)); + +labumen=(1-eduumen)*(1-phimen)*lamu1men ++(1-phimen(-1))*lamu2men*p2men/mmmen(-1) ++(1-phimen(-2))*lamu3men*p3men/(mmmen(-1)*mmmen(-2)) ++(1-phimen(-3))*lamu4men*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-phimen(-4))*lamu5men*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-phimen(-5))*lamu6men*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-phimen(-6))*lamu7men*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-phimen(-7))*lamu8men*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)); + +labsrus=(1-edusrus)*phirus*lams1rus ++phirus(-1)*lams2rus*p2rus/mmrus(-1) ++phirus(-2)*lams3rus*p3rus/(mmrus(-1)*mmrus(-2)) ++phirus(-3)*lams4rus*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++phirus(-4)*lams5rus*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++phirus(-5)*lams6rus*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++phirus(-6)*lams7rus*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++phirus(-7)*lams8rus*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)); + +laburus=(1-eduurus)*(1-phirus)*lamu1rus ++(1-phirus(-1))*lamu2rus*p2rus/mmrus(-1) ++(1-phirus(-2))*lamu3rus*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-phirus(-3))*lamu4rus*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-phirus(-4))*lamu5rus*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-phirus(-5))*lamu6rus*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-phirus(-6))*lamu7rus*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-phirus(-7))*lamu8rus*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)); + +labschi=(1-eduschi)*phichi*lams1chi ++phichi(-1)*lams2chi*p2chi/mmchi(-1) ++phichi(-2)*lams3chi*p3chi/(mmchi(-1)*mmchi(-2)) ++phichi(-3)*lams4chi*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++phichi(-4)*lams5chi*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++phichi(-5)*lams6chi*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++phichi(-6)*lams7chi*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++phichi(-7)*lams8chi*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)); + +labuchi=(1-eduuchi)*(1-phichi)*lamu1chi ++(1-phichi(-1))*lamu2chi*p2chi/mmchi(-1) ++(1-phichi(-2))*lamu3chi*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-phichi(-3))*lamu4chi*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-phichi(-4))*lamu5chi*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-phichi(-5))*lamu6chi*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-phichi(-6))*lamu7chi*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-phichi(-7))*lamu8chi*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)); + +labsind=(1-edusind)*phiind*lams1ind ++phiind(-1)*lams2ind*p2ind/mmind(-1) ++phiind(-2)*lams3ind*p3ind/(mmind(-1)*mmind(-2)) ++phiind(-3)*lams4ind*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++phiind(-4)*lams5ind*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++phiind(-5)*lams6ind*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++phiind(-6)*lams7ind*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++phiind(-7)*lams8ind*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)); + +labuind=(1-eduuind)*(1-phiind)*lamu1ind ++(1-phiind(-1))*lamu2ind*p2ind/mmind(-1) ++(1-phiind(-2))*lamu3ind*p3ind/(mmind(-1)*mmind(-2)) ++(1-phiind(-3))*lamu4ind*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-phiind(-4))*lamu5ind*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-phiind(-5))*lamu6ind*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-phiind(-6))*lamu7ind*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-phiind(-7))*lamu8ind*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)); + + +// -------------------------------- aa ------------------------------- // + +wagsadv/waguadv=hadv; +wagsnam/wagunam=hnam; +wagsssa/wagussa=hssa; +wagslac/wagulac=hlac; +wagsjap/wagujap=hjap; +wagseas/wagueas=heas; +wagsmen/wagumen=hmen; +wagsrus/wagurus=hrus; +wagschi/waguchi=hchi; +wagsind/waguind=hind; + +wagddsadv/wagdduadv=thetaadv; +wagddsnam/wagddunam=thetanam; +wagddsssa/wagddussa=thetassa; +wagddslac/wagddulac=thetalac; +wagddsjap/wagddujap=thetajap; +wagddseas/wagddueas=thetaeas; +wagddsmen/wagddumen=thetamen; +wagddsrus/wagddurus=thetarus; +wagddschi/wagdduchi=thetachi; +wagddsind/wagdduind=thetaind; + +// ------------------------- labddu & wagddu ------------------------- // + +wagdduadv=etaadv*wagddsadv+(1-etaadv)*waguadv; +wagddunam=etanam*wagddsnam+(1-etanam)*wagunam; +wagddussa=etassa*wagddsssa+(1-etassa)*wagussa; +wagddulac=etalac*wagddslac+(1-etalac)*wagulac; +wagddujap=etajap*wagddsjap+(1-etajap)*wagujap; +wagddueas=etaeas*wagddseas+(1-etaeas)*wagueas; +wagddumen=etamen*wagddsmen+(1-etamen)*wagumen; +wagddurus=etarus*wagddsrus+(1-etarus)*wagurus; +wagdduchi=etachi*wagddschi+(1-etachi)*waguchi; +wagdduind=etaind*wagddsind+(1-etaind)*waguind; + + +wagdduadv=(1-aaadv)*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labdduadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^((1-alpha-sigma)/sigma); +wagddunam=(1-aanam)*(1-alpha)*knam^alpha*labddunam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^((1-alpha-sigma)/sigma); +wagddussa=(1-aassa)*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labddussa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^((1-alpha-sigma)/sigma); +wagddulac=(1-aalac)*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labddulac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^((1-alpha-sigma)/sigma); +wagddujap=(1-aajap)*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labddujap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^((1-alpha-sigma)/sigma); +wagddueas=(1-aaeas)*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labddueas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^((1-alpha-sigma)/sigma); +wagddumen=(1-aamen)*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labddumen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^((1-alpha-sigma)/sigma); +wagddurus=(1-aarus)*(1-alpha)*krus^alpha*tfprus^(1-alpha)*labddurus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^((1-alpha-sigma)/sigma); +wagdduchi=(1-aachi)*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labdduchi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^((1-alpha-sigma)/sigma); +wagdduind=(1-aaind)*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labdduind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^((1-alpha-sigma)/sigma); + +// --------------------------- unemeployement ----------------------- // + +uradv=(labuadv-labdduadv)/labuadv; +urnam=(labunam-labddunam)/labunam; +urssa=(labussa-labddussa)/labussa; +urlac=(labulac-labddulac)/labulac; +urjap=(labujap-labddujap)/labujap; +ureas=(labueas-labddueas)/labueas; +urmen=(labumen-labddumen)/labumen; +urrus=(laburus-labddurus)/laburus; +urchi=(labuchi-labdduchi)/labuchi; +urind=(labuind-labdduind)/labuind; + +// -------------------------------- ces ------------------------------- // + +labadv=(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^(1/sigma); +labnam=(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^(1/sigma); +labssa=(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^(1/sigma); +lablac=(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^(1/sigma); +labjap=(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^(1/sigma); +labeas=(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^(1/sigma); +labmen=(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^(1/sigma); +labrus=(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^(1/sigma); +labchi=(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^(1/sigma); +labind=(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^(1/sigma); + +// ----------------------------- wagdds ------------------------------- // + +wagddsadv=aaadv*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labsadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^((1-alpha-sigma)/sigma); +wagddsnam=aanam*(1-alpha)*knam^alpha*labsnam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^((1-alpha-sigma)/sigma); +wagddsssa=aassa*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labsssa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^((1-alpha-sigma)/sigma); +wagddslac=aalac*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labslac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^((1-alpha-sigma)/sigma); +wagddsjap=aajap*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labsjap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^((1-alpha-sigma)/sigma); +wagddseas=aaeas*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labseas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^((1-alpha-sigma)/sigma); +wagddsmen=aamen*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labsmen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^((1-alpha-sigma)/sigma); +wagddsrus=aarus*(1-alpha)*krus^alpha*tfprus^(1-alpha)*labsrus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^((1-alpha-sigma)/sigma); +wagddschi=aachi*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labschi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^((1-alpha-sigma)/sigma); +wagddsind=aaind*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labsind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^((1-alpha-sigma)/sigma); + +// ---------------------- wagddu and wagdds ------------------------- // + +wagsadv=aaadv*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labsadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labuadv^sigma)^((1-alpha-sigma)/sigma); +wagsnam=aanam*(1-alpha)*knam^alpha*labsnam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labunam^sigma)^((1-alpha-sigma)/sigma); +wagsssa=aassa*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labsssa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labussa^sigma)^((1-alpha-sigma)/sigma); +wagslac=aalac*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labslac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labulac^sigma)^((1-alpha-sigma)/sigma); +wagsjap=aajap*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labsjap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labujap^sigma)^((1-alpha-sigma)/sigma); +wagseas=aaeas*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labseas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labueas^sigma)^((1-alpha-sigma)/sigma); +wagsmen=aamen*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labsmen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labumen^sigma)^((1-alpha-sigma)/sigma); +wagsrus=aarus*(1-alpha)*krus^alpha*tfprus^(1-alpha)*labsrus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*laburus^sigma)^((1-alpha-sigma)/sigma); +wagschi=aachi*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labschi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labuchi^sigma)^((1-alpha-sigma)/sigma); +wagsind=aaind*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labsind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labuind^sigma)^((1-alpha-sigma)/sigma); + +waguadv=(1-aaadv)*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labuadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labuadv^sigma)^((1-alpha-sigma)/sigma); +wagunam=(1-aanam)*(1-alpha)*knam^alpha*labunam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labunam^sigma)^((1-alpha-sigma)/sigma); +wagussa=(1-aassa)*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labussa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labussa^sigma)^((1-alpha-sigma)/sigma); +wagulac=(1-aalac)*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labulac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labulac^sigma)^((1-alpha-sigma)/sigma); +wagujap=(1-aajap)*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labujap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labujap^sigma)^((1-alpha-sigma)/sigma); +wagueas=(1-aaeas)*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labueas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labueas^sigma)^((1-alpha-sigma)/sigma); +wagumen=(1-aamen)*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labumen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labumen^sigma)^((1-alpha-sigma)/sigma); +wagurus=(1-aarus)*(1-alpha)*krus^alpha*tfprus^(1-alpha)*laburus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*laburus^sigma)^((1-alpha-sigma)/sigma); +waguchi=(1-aachi)*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labuchi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labuchi^sigma)^((1-alpha-sigma)/sigma); +waguind=(1-aaind)*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labuind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labuind^sigma)^((1-alpha-sigma)/sigma); + +//------------------------- ratiogdp -------------------------------- // + +ratiogdpadv=gdpadv/gdpnam +/(1+p2adv/mmadv(-1)+p3adv/(mmadv(-1)*mmadv(-2))+p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4))+p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpssa=gdpssa/gdpnam +/(1+p2ssa/mmssa(-1)+p3ssa/(mmssa(-1)*mmssa(-2))+p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4))+p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdplac=gdplac/gdpnam +/(1+p2lac/mmlac(-1)+p3lac/(mmlac(-1)*mmlac(-2))+p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4))+p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpjap=gdpjap/gdpnam +/(1+p2jap/mmjap(-1)+p3jap/(mmjap(-1)*mmjap(-2))+p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4))+p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdprus=gdprus/gdpnam +/(1+p2rus/mmrus(-1)+p3rus/(mmrus(-1)*mmrus(-2))+p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4))+p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpmen=gdpmen/gdpnam +/(1+p2men/mmmen(-1)+p3men/(mmmen(-1)*mmmen(-2))+p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4))+p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpeas=gdpeas/gdpnam +/(1+p2eas/mmeas(-1)+p3eas/(mmeas(-1)*mmeas(-2))+p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4))+p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpchi=gdpchi/gdpnam +/(1+p2chi/mmchi(-1)+p3chi/(mmchi(-1)*mmchi(-2))+p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4))+p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +ratiogdpind=gdpind/gdpnam +/(1+p2ind/mmind(-1)+p3ind/(mmind(-1)*mmind(-2))+p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4))+p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +*(1+p2nam/mmnam(-1)+p3nam/(mmnam(-1)*mmnam(-2))+p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4))+p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + + +// ----------------------- advanced countries ------------------------- // + +xs8adv*(1+tcadv)=1/(p8adv*phiadv(-7))*intrate*zs8adv*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)+lams8adv*(1-tauadv)*wagddsadv+psiadv*tr8sadv*wagddsadv+(1-lams8adv)*bsadv; +xu8adv*(1+tcadv)=1/(p8adv*(1-phiadv(-7)))*intrate*zu8adv*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)+(1-uradv)*lamu8adv*(1-tauadv)*wagdduadv+psiadv*tr8uadv*wagdduadv+(1-lamu8adv)*buadv; + +xs2adv(+1)*ggnam(+1)=beta*intrate(+1)*xs1adv*(1+tcadv)/(1+tcadv(+1)); +xs3adv(+1)*ggnam(+1)=beta*intrate(+1)*xs2adv*(1+tcadv)/(1+tcadv(+1)); +xs4adv(+1)*ggnam(+1)=beta*intrate(+1)*xs3adv*(1+tcadv)/(1+tcadv(+1)); +xs5adv(+1)*ggnam(+1)=beta*intrate(+1)*xs4adv*(1+tcadv)/(1+tcadv(+1)); +xs6adv(+1)*ggnam(+1)=beta*intrate(+1)*xs5adv*(1+tcadv)/(1+tcadv(+1)); +xs7adv(+1)*ggnam(+1)=beta*intrate(+1)*xs6adv*(1+tcadv)/(1+tcadv(+1)); +xs8adv(+1)*ggnam(+1)=beta*intrate(+1)*xs7adv*(1+tcadv)/(1+tcadv(+1)); + +xu2adv(+1)*ggnam(+1)=beta*intrate(+1)*xu1adv*(1+tcadv)/(1+tcadv(+1)); +xu3adv(+1)*ggnam(+1)=beta*intrate(+1)*xu2adv*(1+tcadv)/(1+tcadv(+1)); +xu4adv(+1)*ggnam(+1)=beta*intrate(+1)*xu3adv*(1+tcadv)/(1+tcadv(+1)); +xu5adv(+1)*ggnam(+1)=beta*intrate(+1)*xu4adv*(1+tcadv)/(1+tcadv(+1)); +xu6adv(+1)*ggnam(+1)=beta*intrate(+1)*xu5adv*(1+tcadv)/(1+tcadv(+1)); +xu7adv(+1)*ggnam(+1)=beta*intrate(+1)*xu6adv*(1+tcadv)/(1+tcadv(+1)); +xu8adv(+1)*ggnam(+1)=beta*intrate(+1)*xu7adv*(1+tcadv)/(1+tcadv(+1)); + +zs2adv=phiadv(-1)*((1-edusadv(-1))*(1-tauadv(-1))*lams1adv(-1)*wagddsadv(-1)+psiadv(-1)*tr1sadv(-1)*wagddsadv(-1)+(1-edusadv(-1))*(1-lams1adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs1adv(-1))/(ggnam*mmadv(-1)); +zs3adv=intrate(-1)*zs2adv(-1)/(ggnam*mmadv(-1))+phiadv(-2)*p2adv(-1)*((1-tauadv(-1))*lams2adv(-1)*wagddsadv(-1)+psiadv(-1)*tr2sadv(-1)*wagddsadv(-1)+(1-lams2adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs2adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)); +zs4adv=intrate(-1)*zs3adv(-1)/(ggnam*mmadv(-1))+phiadv(-3)*p3adv(-1)*((1-tauadv(-1))*lams3adv(-1)*wagddsadv(-1)+psiadv(-1)*tr3sadv(-1)*wagddsadv(-1)+(1-lams3adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs3adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)); +zs5adv=intrate(-1)*zs4adv(-1)/(ggnam*mmadv(-1))+phiadv(-4)*p4adv(-1)*((1-tauadv(-1))*lams4adv(-1)*wagddsadv(-1)+psiadv(-1)*tr4sadv(-1)*wagddsadv(-1)+(1-lams4adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs4adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)); +zs6adv=intrate(-1)*zs5adv(-1)/(ggnam*mmadv(-1))+phiadv(-5)*p5adv(-1)*((1-tauadv(-1))*lams5adv(-1)*wagddsadv(-1)+psiadv(-1)*tr5sadv(-1)*wagddsadv(-1)+(1-lams5adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs5adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)); +zs7adv=intrate(-1)*zs6adv(-1)/(ggnam*mmadv(-1))+phiadv(-6)*p6adv(-1)*((1-tauadv(-1))*lams6adv(-1)*wagddsadv(-1)+psiadv(-1)*tr6sadv(-1)*wagddsadv(-1)+(1-lams6adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs6adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)); +zs8adv=intrate(-1)*zs7adv(-1)/(ggnam*mmadv(-1))+phiadv(-7)*p7adv(-1)*((1-tauadv(-1))*lams7adv(-1)*wagddsadv(-1)+psiadv(-1)*tr7sadv(-1)*wagddsadv(-1)+(1-lams7adv(-1))*bsadv(-1)-(1+tcadv(-1))*xs7adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)); + +zu2adv=(1-phiadv(-1))*((1-eduuadv(-1))*(1-tauadv(-1))*lamu1adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr1uadv(-1)*wagdduadv(-1)+(1-eduuadv(-1))*(1-lamu1adv(-1))*buadv(-1)-(1+tcadv(-1))*xu1adv(-1))/(ggnam*mmadv(-1)); +zu3adv=intrate(-1)*zu2adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-2))*p2adv(-1)*((1-tauadv(-1))*lamu2adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr2uadv(-1)*wagdduadv(-1)+(1-lamu2adv(-1))*buadv(-1)-(1+tcadv(-1))*xu2adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)); +zu4adv=intrate(-1)*zu3adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-3))*p3adv(-1)*((1-tauadv(-1))*lamu3adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr3uadv(-1)*wagdduadv(-1)+(1-lamu3adv(-1))*buadv(-1)-(1+tcadv(-1))*xu3adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)); +zu5adv=intrate(-1)*zu4adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-4))*p4adv(-1)*((1-tauadv(-1))*lamu4adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr4uadv(-1)*wagdduadv(-1)+(1-lamu4adv(-1))*buadv(-1)-(1+tcadv(-1))*xu4adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)); +zu6adv=intrate(-1)*zu5adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-5))*p5adv(-1)*((1-tauadv(-1))*lamu5adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr5uadv(-1)*wagdduadv(-1)+(1-lamu5adv(-1))*buadv(-1)-(1+tcadv(-1))*xu5adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)); +zu7adv=intrate(-1)*zu6adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-6))*p6adv(-1)*((1-tauadv(-1))*lamu6adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr6uadv(-1)*wagdduadv(-1)+(1-lamu6adv(-1))*buadv(-1)-(1+tcadv(-1))*xu6adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)); +zu8adv=intrate(-1)*zu7adv(-1)/(ggnam*mmadv(-1))+(1-phiadv(-7))*p7adv(-1)*((1-tauadv(-1))*lamu7adv(-1)*(1-uradv)*wagdduadv(-1)+psiadv(-1)*tr7uadv(-1)*wagdduadv(-1)+(1-lamu7adv(-1))*buadv(-1)-(1+tcadv(-1))*xu7adv(-1))/(ggnam*mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)); + +weaadv=zs2adv+zs3adv+zs4adv+zs5adv+zs6adv+zs7adv+zs8adv ++zu2adv+zu3adv+zu4adv+zu5adv+zu6adv+zu7adv+zu8adv; + +gdpadv=kadv^alpha*(tfpadv*labadv)^(1-alpha); + +govadv=tauadv*(wagddsadv*labsadv+wagdduadv*labdduadv) ++tcadv*(phiadv*xs1adv ++xs2adv*phiadv(-1)*p2adv/mmadv(-1) ++xs3adv*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++xs4adv*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++xs5adv*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++xs6adv*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++xs7adv*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++xs8adv*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) ++tcadv*((1-phiadv)*xu1adv ++xu2adv*(1-phiadv(-1))*p2adv/mmadv(-1) ++xu3adv*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++xu4adv*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++xu5adv*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++xu6adv*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++xu7adv*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++xu8adv*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +-bsadv*((1-lams1adv)*phiadv*(1-edusadv) ++(1-lams2adv)*phiadv(-1)*p2adv/mmadv(-1) ++(1-lams3adv)*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-lams4adv)*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-lams5adv)*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-lams6adv)*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-lams7adv)*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-lams8adv)*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +-buadv*((1-lamu1adv)*(1-phiadv)*(1-eduuadv) ++(1-lamu2adv)*(1-phiadv(-1))*p2adv/mmadv(-1) ++(1-lamu3adv)*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-lamu4adv)*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-lamu5adv)*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-lamu6adv)*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-lamu7adv)*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-lamu8adv)*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +-psiadv*wagddsadv*(tr1sadv*phiadv ++tr2sadv*phiadv(-1)*p2adv/mmadv(-1) ++tr3sadv*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++tr4sadv*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++tr5sadv*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++tr6sadv*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++tr7sadv*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++tr8sadv*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +-psiadv*wagdduadv*(tr1uadv*(1-phiadv) ++tr2uadv*(1-phiadv(-1))*p2adv/mmadv(-1) ++tr3uadv*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++tr4uadv*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++tr5uadv*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++tr6uadv*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++tr7uadv*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++tr8uadv*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) +-conspubgdpadv; + +// -------------------------------- nam ------------------------------- // + +xs8nam*(1+tcnam)=1/(p8nam*phinam(-7))*intrate*zs8nam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)+lams8nam*(1-taunam)*wagddsnam+psinam*tr8snam*wagddsnam+(1-lams8nam)*bsnam; +xu8nam*(1+tcnam)=1/(p8nam*(1-phinam(-7)))*intrate*zu8nam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)+(1-urnam)*lamu8nam*(1-taunam)*wagddunam+psinam*tr8unam*wagddunam+(1-lamu8nam)*bunam; + +xs2nam(+1)*ggnam(+1)=beta*intrate(+1)*xs1nam*(1+tcnam)/(1+tcnam(+1)); +xs3nam(+1)*ggnam(+1)=beta*intrate(+1)*xs2nam*(1+tcnam)/(1+tcnam(+1)); +xs4nam(+1)*ggnam(+1)=beta*intrate(+1)*xs3nam*(1+tcnam)/(1+tcnam(+1)); +xs5nam(+1)*ggnam(+1)=beta*intrate(+1)*xs4nam*(1+tcnam)/(1+tcnam(+1)); +xs6nam(+1)*ggnam(+1)=beta*intrate(+1)*xs5nam*(1+tcnam)/(1+tcnam(+1)); +xs7nam(+1)*ggnam(+1)=beta*intrate(+1)*xs6nam*(1+tcnam)/(1+tcnam(+1)); +xs8nam(+1)*ggnam(+1)=beta*intrate(+1)*xs7nam*(1+tcnam)/(1+tcnam(+1)); + +xu2nam(+1)*ggnam(+1)=beta*intrate(+1)*xu1nam*(1+tcnam)/(1+tcnam(+1)); +xu3nam(+1)*ggnam(+1)=beta*intrate(+1)*xu2nam*(1+tcnam)/(1+tcnam(+1)); +xu4nam(+1)*ggnam(+1)=beta*intrate(+1)*xu3nam*(1+tcnam)/(1+tcnam(+1)); +xu5nam(+1)*ggnam(+1)=beta*intrate(+1)*xu4nam*(1+tcnam)/(1+tcnam(+1)); +xu6nam(+1)*ggnam(+1)=beta*intrate(+1)*xu5nam*(1+tcnam)/(1+tcnam(+1)); +xu7nam(+1)*ggnam(+1)=beta*intrate(+1)*xu6nam*(1+tcnam)/(1+tcnam(+1)); +xu8nam(+1)*ggnam(+1)=beta*intrate(+1)*xu7nam*(1+tcnam)/(1+tcnam(+1)); + +zs2nam=phinam(-1)*((1-edusnam(-1))*(1-taunam(-1))*lams1nam(-1)*wagddsnam(-1)+psinam(-1)*tr1snam(-1)*wagddsnam(-1)+(1-edusnam(-1))*(1-lams1nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs1nam(-1))/(ggnam*mmnam(-1)); +zs3nam=intrate(-1)*zs2nam(-1)/(ggnam*mmnam(-1))+phinam(-2)*p2nam(-1)*((1-taunam(-1))*lams2nam(-1)*wagddsnam(-1)+psinam(-1)*tr2snam(-1)*wagddsnam(-1)+(1-lams2nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs2nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)); +zs4nam=intrate(-1)*zs3nam(-1)/(ggnam*mmnam(-1))+phinam(-3)*p3nam(-1)*((1-taunam(-1))*lams3nam(-1)*wagddsnam(-1)+psinam(-1)*tr3snam(-1)*wagddsnam(-1)+(1-lams3nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs3nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)); +zs5nam=intrate(-1)*zs4nam(-1)/(ggnam*mmnam(-1))+phinam(-4)*p4nam(-1)*((1-taunam(-1))*lams4nam(-1)*wagddsnam(-1)+psinam(-1)*tr4snam(-1)*wagddsnam(-1)+(1-lams4nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs4nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)); +zs6nam=intrate(-1)*zs5nam(-1)/(ggnam*mmnam(-1))+phinam(-5)*p5nam(-1)*((1-taunam(-1))*lams5nam(-1)*wagddsnam(-1)+psinam(-1)*tr5snam(-1)*wagddsnam(-1)+(1-lams5nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs5nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)); +zs7nam=intrate(-1)*zs6nam(-1)/(ggnam*mmnam(-1))+phinam(-6)*p6nam(-1)*((1-taunam(-1))*lams6nam(-1)*wagddsnam(-1)+psinam(-1)*tr6snam(-1)*wagddsnam(-1)+(1-lams6nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs6nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)); +zs8nam=intrate(-1)*zs7nam(-1)/(ggnam*mmnam(-1))+phinam(-7)*p7nam(-1)*((1-taunam(-1))*lams7nam(-1)*wagddsnam(-1)+psinam(-1)*tr7snam(-1)*wagddsnam(-1)+(1-lams7nam(-1))*bsnam(-1)-(1+tcnam(-1))*xs7nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)); + +zu2nam=(1-phinam(-1))*((1-eduunam(-1))*(1-taunam(-1))*lamu1nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr1unam(-1)*wagddunam(-1)+(1-eduunam(-1))*(1-lamu1nam(-1))*bunam(-1)-(1+tcnam(-1))*xu1nam(-1))/(ggnam*mmnam(-1)); +zu3nam=intrate(-1)*zu2nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-2))*p2nam(-1)*((1-taunam(-1))*lamu2nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr2unam(-1)*wagddunam(-1)+(1-lamu2nam(-1))*bunam(-1)-(1+tcnam(-1))*xu2nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)); +zu4nam=intrate(-1)*zu3nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-3))*p3nam(-1)*((1-taunam(-1))*lamu3nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr3unam(-1)*wagddunam(-1)+(1-lamu3nam(-1))*bunam(-1)-(1+tcnam(-1))*xu3nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)); +zu5nam=intrate(-1)*zu4nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-4))*p4nam(-1)*((1-taunam(-1))*lamu4nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr4unam(-1)*wagddunam(-1)+(1-lamu4nam(-1))*bunam(-1)-(1+tcnam(-1))*xu4nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)); +zu6nam=intrate(-1)*zu5nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-5))*p5nam(-1)*((1-taunam(-1))*lamu5nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr5unam(-1)*wagddunam(-1)+(1-lamu5nam(-1))*bunam(-1)-(1+tcnam(-1))*xu5nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)); +zu7nam=intrate(-1)*zu6nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-6))*p6nam(-1)*((1-taunam(-1))*lamu6nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr6unam(-1)*wagddunam(-1)+(1-lamu6nam(-1))*bunam(-1)-(1+tcnam(-1))*xu6nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)); +zu8nam=intrate(-1)*zu7nam(-1)/(ggnam*mmnam(-1))+(1-phinam(-7))*p7nam(-1)*((1-taunam(-1))*lamu7nam(-1)*(1-urnam)*wagddunam(-1)+psinam(-1)*tr7unam(-1)*wagddunam(-1)+(1-lamu7nam(-1))*bunam(-1)-(1+tcnam(-1))*xu7nam(-1))/(ggnam*mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)); + +weanam=zs2nam+zs3nam+zs4nam+zs5nam+zs6nam+zs7nam+zs8nam ++zu2nam+zu3nam+zu4nam+zu5nam+zu6nam+zu7nam+zu8nam; + +gdpnam=knam^alpha*labnam^(1-alpha); + +govnam=taunam*(wagddsnam*labsnam+wagddunam*labddunam) ++tcnam*(phinam*xs1nam ++xs2nam*phinam(-1)*p2nam/mmnam(-1) ++xs3nam*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++xs4nam*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++xs5nam*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++xs6nam*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++xs7nam*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++xs8nam*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) ++tcnam*((1-phinam)*xu1nam ++xu2nam*(1-phinam(-1))*p2nam/mmnam(-1) ++xu3nam*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++xu4nam*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++xu5nam*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++xu6nam*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++xu7nam*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++xu8nam*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) +-bsnam*((1-lams1nam)*phinam*(1-edusnam) ++(1-lams2nam)*phinam(-1)*p2nam/mmnam(-1) ++(1-lams3nam)*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-lams4nam)*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-lams5nam)*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-lams6nam)*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-lams7nam)*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-lams8nam)*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) +-bunam*((1-lamu1nam)*(1-phinam)*(1-eduunam) ++(1-lamu2nam)*(1-phinam(-1))*p2nam/mmnam(-1) ++(1-lamu3nam)*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-lamu4nam)*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-lamu5nam)*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-lamu6nam)*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-lamu7nam)*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-lamu8nam)*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) +-psinam*wagddsnam*(tr1snam*phinam ++tr2snam*phinam(-1)*p2nam/mmnam(-1) ++tr3snam*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++tr4snam*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++tr5snam*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++tr6snam*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++tr7snam*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++tr8snam*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) +-psinam*wagddunam*(tr1unam*(1-phinam) ++tr2unam*(1-phinam(-1))*p2nam/mmnam(-1) ++tr3unam*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++tr4unam*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++tr5unam*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++tr6unam*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++tr7unam*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++tr8unam*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) +-conspubgdpnam; + +// ------------------------------ japan ------------------------------- // + +xs8jap*(1+tcjap)=1/(p8jap*phijap(-7))*intrate*zs8jap*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)+lams8jap*(1-taujap)*wagddsjap+psijap*tr8sjap*wagddsjap+(1-lams8jap)*bsjap; +xu8jap*(1+tcjap)=1/(p8jap*(1-phijap(-7)))*intrate*zu8jap*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)+(1-urjap)*lamu8jap*(1-taujap)*wagddujap+psijap*tr8ujap*wagddujap+(1-lamu8jap)*bujap; + +xs2jap(+1)*ggnam(+1)=beta*intrate(+1)*xs1jap*(1+tcjap)/(1+tcjap(+1)); +xs3jap(+1)*ggnam(+1)=beta*intrate(+1)*xs2jap*(1+tcjap)/(1+tcjap(+1)); +xs4jap(+1)*ggnam(+1)=beta*intrate(+1)*xs3jap*(1+tcjap)/(1+tcjap(+1)); +xs5jap(+1)*ggnam(+1)=beta*intrate(+1)*xs4jap*(1+tcjap)/(1+tcjap(+1)); +xs6jap(+1)*ggnam(+1)=beta*intrate(+1)*xs5jap*(1+tcjap)/(1+tcjap(+1)); +xs7jap(+1)*ggnam(+1)=beta*intrate(+1)*xs6jap*(1+tcjap)/(1+tcjap(+1)); +xs8jap(+1)*ggnam(+1)=beta*intrate(+1)*xs7jap*(1+tcjap)/(1+tcjap(+1)); + +xu2jap(+1)*ggnam(+1)=beta*intrate(+1)*xu1jap*(1+tcjap)/(1+tcjap(+1)); +xu3jap(+1)*ggnam(+1)=beta*intrate(+1)*xu2jap*(1+tcjap)/(1+tcjap(+1)); +xu4jap(+1)*ggnam(+1)=beta*intrate(+1)*xu3jap*(1+tcjap)/(1+tcjap(+1)); +xu5jap(+1)*ggnam(+1)=beta*intrate(+1)*xu4jap*(1+tcjap)/(1+tcjap(+1)); +xu6jap(+1)*ggnam(+1)=beta*intrate(+1)*xu5jap*(1+tcjap)/(1+tcjap(+1)); +xu7jap(+1)*ggnam(+1)=beta*intrate(+1)*xu6jap*(1+tcjap)/(1+tcjap(+1)); +xu8jap(+1)*ggnam(+1)=beta*intrate(+1)*xu7jap*(1+tcjap)/(1+tcjap(+1)); + +zs2jap=phijap(-1)*((1-edusjap(-1))*(1-taujap(-1))*lams1jap(-1)*wagddsjap(-1)+psijap(-1)*tr1sjap(-1)*wagddsjap(-1)+(1-edusjap(-1))*(1-lams1jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs1jap(-1))/(ggnam*mmjap(-1)); +zs3jap=intrate(-1)*zs2jap(-1)/(ggnam*mmjap(-1))+phijap(-2)*p2jap(-1)*((1-taujap(-1))*lams2jap(-1)*wagddsjap(-1)+psijap(-1)*tr2sjap(-1)*wagddsjap(-1)+(1-lams2jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs2jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)); +zs4jap=intrate(-1)*zs3jap(-1)/(ggnam*mmjap(-1))+phijap(-3)*p3jap(-1)*((1-taujap(-1))*lams3jap(-1)*wagddsjap(-1)+psijap(-1)*tr3sjap(-1)*wagddsjap(-1)+(1-lams3jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs3jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)); +zs5jap=intrate(-1)*zs4jap(-1)/(ggnam*mmjap(-1))+phijap(-4)*p4jap(-1)*((1-taujap(-1))*lams4jap(-1)*wagddsjap(-1)+psijap(-1)*tr4sjap(-1)*wagddsjap(-1)+(1-lams4jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs4jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)); +zs6jap=intrate(-1)*zs5jap(-1)/(ggnam*mmjap(-1))+phijap(-5)*p5jap(-1)*((1-taujap(-1))*lams5jap(-1)*wagddsjap(-1)+psijap(-1)*tr5sjap(-1)*wagddsjap(-1)+(1-lams5jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs5jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)); +zs7jap=intrate(-1)*zs6jap(-1)/(ggnam*mmjap(-1))+phijap(-6)*p6jap(-1)*((1-taujap(-1))*lams6jap(-1)*wagddsjap(-1)+psijap(-1)*tr6sjap(-1)*wagddsjap(-1)+(1-lams6jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs6jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)); +zs8jap=intrate(-1)*zs7jap(-1)/(ggnam*mmjap(-1))+phijap(-7)*p7jap(-1)*((1-taujap(-1))*lams7jap(-1)*wagddsjap(-1)+psijap(-1)*tr7sjap(-1)*wagddsjap(-1)+(1-lams7jap(-1))*bsjap(-1)-(1+tcjap(-1))*xs7jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)); + +zu2jap=(1-phijap(-1))*((1-eduujap(-1))*(1-taujap(-1))*lamu1jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr1ujap(-1)*wagddujap(-1)+(1-eduujap(-1))*(1-lamu1jap(-1))*bujap(-1)-(1+tcjap(-1))*xu1jap(-1))/(ggnam*mmjap(-1)); +zu3jap=intrate(-1)*zu2jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-2))*p2jap(-1)*((1-taujap(-1))*lamu2jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr2ujap(-1)*wagddujap(-1)+(1-lamu2jap(-1))*bujap(-1)-(1+tcjap(-1))*xu2jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)); +zu4jap=intrate(-1)*zu3jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-3))*p3jap(-1)*((1-taujap(-1))*lamu3jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr3ujap(-1)*wagddujap(-1)+(1-lamu3jap(-1))*bujap(-1)-(1+tcjap(-1))*xu3jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)); +zu5jap=intrate(-1)*zu4jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-4))*p4jap(-1)*((1-taujap(-1))*lamu4jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr4ujap(-1)*wagddujap(-1)+(1-lamu4jap(-1))*bujap(-1)-(1+tcjap(-1))*xu4jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)); +zu6jap=intrate(-1)*zu5jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-5))*p5jap(-1)*((1-taujap(-1))*lamu5jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr5ujap(-1)*wagddujap(-1)+(1-lamu5jap(-1))*bujap(-1)-(1+tcjap(-1))*xu5jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)); +zu7jap=intrate(-1)*zu6jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-6))*p6jap(-1)*((1-taujap(-1))*lamu6jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr6ujap(-1)*wagddujap(-1)+(1-lamu6jap(-1))*bujap(-1)-(1+tcjap(-1))*xu6jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)); +zu8jap=intrate(-1)*zu7jap(-1)/(ggnam*mmjap(-1))+(1-phijap(-7))*p7jap(-1)*((1-taujap(-1))*lamu7jap(-1)*(1-urjap(-1))*wagddujap(-1)+psijap(-1)*tr7ujap(-1)*wagddujap(-1)+(1-lamu7jap(-1))*bujap(-1)-(1+tcjap(-1))*xu7jap(-1))/(ggnam*mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)); + +weajap=zs2jap+zs3jap+zs4jap+zs5jap+zs6jap+zs7jap+zs8jap ++zu2jap+zu3jap+zu4jap+zu5jap+zu6jap+zu7jap+zu8jap; + +gdpjap=kjap^alpha*(tfpjap*labjap)^(1-alpha); + +govjap=taujap*(wagddsjap*labsjap+wagddujap*labddujap) ++tcjap*(phijap*xs1jap ++xs2jap*phijap(-1)*p2jap/mmjap(-1) ++xs3jap*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++xs4jap*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++xs5jap*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++xs6jap*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++xs7jap*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++xs8jap*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) ++tcjap*((1-phijap)*xu1jap ++xu2jap*(1-phijap(-1))*p2jap/mmjap(-1) ++xu3jap*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++xu4jap*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++xu5jap*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++xu6jap*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++xu7jap*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++xu8jap*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +-bsjap*((1-lams1jap)*phijap*(1-edusjap) ++(1-lams2jap)*phijap(-1)*p2jap/mmjap(-1) ++(1-lams3jap)*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-lams4jap)*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-lams5jap)*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-lams6jap)*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-lams7jap)*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-lams8jap)*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +-bujap*((1-lamu1jap)*(1-phijap)*(1-eduujap) ++(1-lamu2jap)*(1-phijap(-1))*p2jap/mmjap(-1) ++(1-lamu3jap)*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-lamu4jap)*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-lamu5jap)*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-lamu6jap)*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-lamu7jap)*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-lamu8jap)*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +-psijap*wagddsjap*(tr1sjap*phijap ++tr2sjap*phijap(-1)*p2jap/mmjap(-1) ++tr3sjap*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++tr4sjap*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++tr5sjap*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++tr6sjap*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++tr7sjap*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++tr8sjap*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +-psijap*wagddujap*(tr1ujap*(1-phijap) ++tr2ujap*(1-phijap(-1))*p2jap/mmjap(-1) ++tr3ujap*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++tr4ujap*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++tr5ujap*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++tr6ujap*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++tr7ujap*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++tr8ujap*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) +-conspubgdpjap; + +// -------------------------------- ssa ------------------------------- // + +xs8ssa*(1+tcssa)=1/(p8ssa*phissa(-7))*intrate*zs8ssa*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)+lams8ssa*(1-taussa)*wagddsssa+psissa*tr8sssa*wagddsssa+(1-lams8ssa)*bsssa; +xu8ssa*(1+tcssa)=1/(p8ssa*(1-phissa(-7)))*intrate*zu8ssa*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)+(1-urssa)*lamu8ssa*(1-taussa)*wagddussa+psissa*tr8ussa*wagddussa+(1-lamu8ssa)*bussa; + +xs2ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs1ssa*(1+tcssa)/(1+tcssa(+1)); +xs3ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs2ssa*(1+tcssa)/(1+tcssa(+1)); +xs4ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs3ssa*(1+tcssa)/(1+tcssa(+1)); +xs5ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs4ssa*(1+tcssa)/(1+tcssa(+1)); +xs6ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs5ssa*(1+tcssa)/(1+tcssa(+1)); +xs7ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs6ssa*(1+tcssa)/(1+tcssa(+1)); +xs8ssa(+1)*ggnam(+1)=beta*intrate(+1)*xs7ssa*(1+tcssa)/(1+tcssa(+1)); + +xu2ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu1ssa*(1+tcssa)/(1+tcssa(+1)); +xu3ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu2ssa*(1+tcssa)/(1+tcssa(+1)); +xu4ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu3ssa*(1+tcssa)/(1+tcssa(+1)); +xu5ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu4ssa*(1+tcssa)/(1+tcssa(+1)); +xu6ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu5ssa*(1+tcssa)/(1+tcssa(+1)); +xu7ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu6ssa*(1+tcssa)/(1+tcssa(+1)); +xu8ssa(+1)*ggnam(+1)=beta*intrate(+1)*xu7ssa*(1+tcssa)/(1+tcssa(+1)); + +zs2ssa=phissa(-1)*((1-edusssa(-1))*(1-taussa(-1))*lams1ssa(-1)*wagddsssa(-1)+psissa(-1)*tr1sssa(-1)*wagddsssa(-1)+(1-edusssa(-1))*(1-lams1ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs1ssa(-1))/(ggnam*mmssa(-1)); +zs3ssa=intrate(-1)*zs2ssa(-1)/(ggnam*mmssa(-1))+phissa(-2)*p2ssa(-1)*((1-taussa(-1))*lams2ssa(-1)*wagddsssa(-1)+psissa(-1)*tr2sssa(-1)*wagddsssa(-1)+(1-lams2ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs2ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)); +zs4ssa=intrate(-1)*zs3ssa(-1)/(ggnam*mmssa(-1))+phissa(-3)*p3ssa(-1)*((1-taussa(-1))*lams3ssa(-1)*wagddsssa(-1)+psissa(-1)*tr3sssa(-1)*wagddsssa(-1)+(1-lams3ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs3ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)); +zs5ssa=intrate(-1)*zs4ssa(-1)/(ggnam*mmssa(-1))+phissa(-4)*p4ssa(-1)*((1-taussa(-1))*lams4ssa(-1)*wagddsssa(-1)+psissa(-1)*tr4sssa(-1)*wagddsssa(-1)+(1-lams4ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs4ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)); +zs6ssa=intrate(-1)*zs5ssa(-1)/(ggnam*mmssa(-1))+phissa(-5)*p5ssa(-1)*((1-taussa(-1))*lams5ssa(-1)*wagddsssa(-1)+psissa(-1)*tr5sssa(-1)*wagddsssa(-1)+(1-lams5ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs5ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)); +zs7ssa=intrate(-1)*zs6ssa(-1)/(ggnam*mmssa(-1))+phissa(-6)*p6ssa(-1)*((1-taussa(-1))*lams6ssa(-1)*wagddsssa(-1)+psissa(-1)*tr6sssa(-1)*wagddsssa(-1)+(1-lams6ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs6ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)); +zs8ssa=intrate(-1)*zs7ssa(-1)/(ggnam*mmssa(-1))+phissa(-7)*p7ssa(-1)*((1-taussa(-1))*lams7ssa(-1)*wagddsssa(-1)+psissa(-1)*tr7sssa(-1)*wagddsssa(-1)+(1-lams7ssa(-1))*bsssa(-1)-(1+tcssa(-1))*xs7ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)); + +zu2ssa=(1-phissa(-1))*((1-eduussa(-1))*(1-taussa(-1))*lamu1ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr1ussa(-1)*wagddussa(-1)+(1-eduussa(-1))*(1-lamu1ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu1ssa(-1))/(ggnam*mmssa(-1)); +zu3ssa=intrate(-1)*zu2ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-2))*p2ssa(-1)*((1-taussa(-1))*lamu2ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr2ussa(-1)*wagddussa(-1)+(1-lamu2ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu2ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)); +zu4ssa=intrate(-1)*zu3ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-3))*p3ssa(-1)*((1-taussa(-1))*lamu3ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr3ussa(-1)*wagddussa(-1)+(1-lamu3ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu3ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)); +zu5ssa=intrate(-1)*zu4ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-4))*p4ssa(-1)*((1-taussa(-1))*lamu4ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr4ussa(-1)*wagddussa(-1)+(1-lamu4ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu4ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)); +zu6ssa=intrate(-1)*zu5ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-5))*p5ssa(-1)*((1-taussa(-1))*lamu5ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr5ussa(-1)*wagddussa(-1)+(1-lamu5ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu5ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)); +zu7ssa=intrate(-1)*zu6ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-6))*p6ssa(-1)*((1-taussa(-1))*lamu6ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr6ussa(-1)*wagddussa(-1)+(1-lamu6ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu6ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)); +zu8ssa=intrate(-1)*zu7ssa(-1)/(ggnam*mmssa(-1))+(1-phissa(-7))*p7ssa(-1)*((1-taussa(-1))*lamu7ssa(-1)*(1-urssa(-1))*wagddussa(-1)+psissa(-1)*tr7ussa(-1)*wagddussa(-1)+(1-lamu7ssa(-1))*bussa(-1)-(1+tcssa(-1))*xu7ssa(-1))/(ggnam*mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)); + +weassa=zs2ssa+zs3ssa+zs4ssa+zs5ssa+zs6ssa+zs7ssa+zs8ssa ++zu2ssa+zu3ssa+zu4ssa+zu5ssa+zu6ssa+zu7ssa+zu8ssa; + +gdpssa=kssa^alpha*(tfpssa*labssa)^(1-alpha); + +govssa=taussa*(wagddsssa*labsssa+wagddussa*labddussa) ++pissa*intrate*kssa ++tcssa*(phissa*xs1ssa ++xs2ssa*phissa(-1)*p2ssa/mmssa(-1) ++xs3ssa*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++xs4ssa*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++xs5ssa*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++xs6ssa*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++xs7ssa*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++xs8ssa*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) ++tcssa*((1-phissa)*xu1ssa ++xu2ssa*(1-phissa(-1))*p2ssa/mmssa(-1) ++xu3ssa*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++xu4ssa*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++xu5ssa*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++xu6ssa*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++xu7ssa*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++xu8ssa*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +-bsssa*((1-lams1ssa)*phissa*(1-edusssa) ++(1-lams2ssa)*phissa(-1)*p2ssa/mmssa(-1) ++(1-lams3ssa)*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-lams4ssa)*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-lams5ssa)*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-lams6ssa)*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-lams7ssa)*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-lams8ssa)*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +-bussa*((1-lamu1ssa)*(1-phissa)*(1-eduussa) ++(1-lamu2ssa)*(1-phissa(-1))*p2ssa/mmssa(-1) ++(1-lamu3ssa)*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-lamu4ssa)*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-lamu5ssa)*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-lamu6ssa)*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-lamu7ssa)*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-lamu8ssa)*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +-psissa*wagddsssa*(tr1sssa*phissa ++tr2sssa*phissa(-1)*p2ssa/mmssa(-1) ++tr3sssa*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++tr4sssa*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++tr5sssa*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++tr6sssa*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++tr7sssa*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++tr8sssa*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +-psissa*wagddussa*(tr1ussa*(1-phissa) ++tr2ussa*(1-phissa(-1))*p2ssa/mmssa(-1) ++tr3ussa*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++tr4ussa*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++tr5ussa*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++tr6ussa*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++tr7ussa*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++tr8ussa*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) +-conspubgdpssa +-pissa*intrate*kssa; + +// ------------------------------- lac ------------------------------- // + +xs8lac*(1+tclac)=1/(p8lac*philac(-7))*intrate*zs8lac*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)+lams8lac*(1-taulac)*wagddslac+psilac*tr8slac*wagddslac+(1-lams8lac)*bslac; +xu8lac*(1+tclac)=1/(p8lac*(1-philac(-7)))*intrate*zu8lac*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)+(1-urlac)*lamu8lac*(1-taulac)*wagddulac+psilac*tr8ulac*wagddulac+(1-lamu8lac)*bulac; + +xs2lac(+1)*ggnam(+1)=beta*intrate(+1)*xs1lac*(1+tclac)/(1+tclac(+1)); +xs3lac(+1)*ggnam(+1)=beta*intrate(+1)*xs2lac*(1+tclac)/(1+tclac(+1)); +xs4lac(+1)*ggnam(+1)=beta*intrate(+1)*xs3lac*(1+tclac)/(1+tclac(+1)); +xs5lac(+1)*ggnam(+1)=beta*intrate(+1)*xs4lac*(1+tclac)/(1+tclac(+1)); +xs6lac(+1)*ggnam(+1)=beta*intrate(+1)*xs5lac*(1+tclac)/(1+tclac(+1)); +xs7lac(+1)*ggnam(+1)=beta*intrate(+1)*xs6lac*(1+tclac)/(1+tclac(+1)); +xs8lac(+1)*ggnam(+1)=beta*intrate(+1)*xs7lac*(1+tclac)/(1+tclac(+1)); + +xu2lac(+1)*ggnam(+1)=beta*intrate(+1)*xu1lac*(1+tclac)/(1+tclac(+1)); +xu3lac(+1)*ggnam(+1)=beta*intrate(+1)*xu2lac*(1+tclac)/(1+tclac(+1)); +xu4lac(+1)*ggnam(+1)=beta*intrate(+1)*xu3lac*(1+tclac)/(1+tclac(+1)); +xu5lac(+1)*ggnam(+1)=beta*intrate(+1)*xu4lac*(1+tclac)/(1+tclac(+1)); +xu6lac(+1)*ggnam(+1)=beta*intrate(+1)*xu5lac*(1+tclac)/(1+tclac(+1)); +xu7lac(+1)*ggnam(+1)=beta*intrate(+1)*xu6lac*(1+tclac)/(1+tclac(+1)); +xu8lac(+1)*ggnam(+1)=beta*intrate(+1)*xu7lac*(1+tclac)/(1+tclac(+1)); + +zs2lac=philac(-1)*((1-eduslac(-1))*(1-taulac(-1))*lams1lac(-1)*wagddslac(-1)+psilac(-1)*tr1slac(-1)*wagddslac(-1)+(1-eduslac(-1))*(1-lams1lac(-1))*bslac(-1)-(1+tclac(-1))*xs1lac(-1))/(ggnam*mmlac(-1)); +zs3lac=intrate(-1)*zs2lac(-1)/(ggnam*mmlac(-1))+philac(-2)*p2lac(-1)*((1-taulac(-1))*lams2lac(-1)*wagddslac(-1)+psilac(-1)*tr2slac(-1)*wagddslac(-1)+(1-lams2lac(-1))*bslac(-1)-(1+tclac(-1))*xs2lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)); +zs4lac=intrate(-1)*zs3lac(-1)/(ggnam*mmlac(-1))+philac(-3)*p3lac(-1)*((1-taulac(-1))*lams3lac(-1)*wagddslac(-1)+psilac(-1)*tr3slac(-1)*wagddslac(-1)+(1-lams3lac(-1))*bslac(-1)-(1+tclac(-1))*xs3lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)); +zs5lac=intrate(-1)*zs4lac(-1)/(ggnam*mmlac(-1))+philac(-4)*p4lac(-1)*((1-taulac(-1))*lams4lac(-1)*wagddslac(-1)+psilac(-1)*tr4slac(-1)*wagddslac(-1)+(1-lams4lac(-1))*bslac(-1)-(1+tclac(-1))*xs4lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)); +zs6lac=intrate(-1)*zs5lac(-1)/(ggnam*mmlac(-1))+philac(-5)*p5lac(-1)*((1-taulac(-1))*lams5lac(-1)*wagddslac(-1)+psilac(-1)*tr5slac(-1)*wagddslac(-1)+(1-lams5lac(-1))*bslac(-1)-(1+tclac(-1))*xs5lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)); +zs7lac=intrate(-1)*zs6lac(-1)/(ggnam*mmlac(-1))+philac(-6)*p6lac(-1)*((1-taulac(-1))*lams6lac(-1)*wagddslac(-1)+psilac(-1)*tr6slac(-1)*wagddslac(-1)+(1-lams6lac(-1))*bslac(-1)-(1+tclac(-1))*xs6lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)); +zs8lac=intrate(-1)*zs7lac(-1)/(ggnam*mmlac(-1))+philac(-7)*p7lac(-1)*((1-taulac(-1))*lams7lac(-1)*wagddslac(-1)+psilac(-1)*tr7slac(-1)*wagddslac(-1)+(1-lams7lac(-1))*bslac(-1)-(1+tclac(-1))*xs7lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)); + +zu2lac=(1-philac(-1))*((1-eduulac(-1))*(1-taulac(-1))*lamu1lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr1ulac(-1)*wagddulac(-1)+(1-eduulac(-1))*(1-lamu1lac(-1))*bulac(-1)-(1+tclac(-1))*xu1lac(-1))/(ggnam*mmlac(-1)); +zu3lac=intrate(-1)*zu2lac(-1)/(ggnam*mmlac(-1))+(1-philac(-2))*p2lac(-1)*((1-taulac(-1))*lamu2lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr2ulac(-1)*wagddulac(-1)+(1-lamu2lac(-1))*bulac(-1)-(1+tclac(-1))*xu2lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)); +zu4lac=intrate(-1)*zu3lac(-1)/(ggnam*mmlac(-1))+(1-philac(-3))*p3lac(-1)*((1-taulac(-1))*lamu3lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr3ulac(-1)*wagddulac(-1)+(1-lamu3lac(-1))*bulac(-1)-(1+tclac(-1))*xu3lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)); +zu5lac=intrate(-1)*zu4lac(-1)/(ggnam*mmlac(-1))+(1-philac(-4))*p4lac(-1)*((1-taulac(-1))*lamu4lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr4ulac(-1)*wagddulac(-1)+(1-lamu4lac(-1))*bulac(-1)-(1+tclac(-1))*xu4lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)); +zu6lac=intrate(-1)*zu5lac(-1)/(ggnam*mmlac(-1))+(1-philac(-5))*p5lac(-1)*((1-taulac(-1))*lamu5lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr5ulac(-1)*wagddulac(-1)+(1-lamu5lac(-1))*bulac(-1)-(1+tclac(-1))*xu5lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)); +zu7lac=intrate(-1)*zu6lac(-1)/(ggnam*mmlac(-1))+(1-philac(-6))*p6lac(-1)*((1-taulac(-1))*lamu6lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr6ulac(-1)*wagddulac(-1)+(1-lamu6lac(-1))*bulac(-1)-(1+tclac(-1))*xu6lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)); +zu8lac=intrate(-1)*zu7lac(-1)/(ggnam*mmlac(-1))+(1-philac(-7))*p7lac(-1)*((1-taulac(-1))*lamu7lac(-1)*(1-urlac(-1))*wagddulac(-1)+psilac(-1)*tr7ulac(-1)*wagddulac(-1)+(1-lamu7lac(-1))*bulac(-1)-(1+tclac(-1))*xu7lac(-1))/(ggnam*mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)); + +wealac=zs2lac+zs3lac+zs4lac+zs5lac+zs6lac+zs7lac+zs8lac ++zu2lac+zu3lac+zu4lac+zu5lac+zu6lac+zu7lac+zu8lac; + +gdplac=klac^alpha*(tfplac*lablac)^(1-alpha); + +govlac=taulac*(wagddslac*labslac+wagddulac*labddulac) ++pilac*intrate*klac ++tclac*(philac*xs1lac ++xs2lac*philac(-1)*p2lac/mmlac(-1) ++xs3lac*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++xs4lac*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++xs5lac*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++xs6lac*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++xs7lac*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++xs8lac*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) ++tclac*((1-philac)*xu1lac ++xu2lac*(1-philac(-1))*p2lac/mmlac(-1) ++xu3lac*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++xu4lac*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++xu5lac*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++xu6lac*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++xu7lac*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++xu8lac*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +-bslac*((1-lams1lac)*philac*(1-eduslac) ++(1-lams2lac)*philac(-1)*p2lac/mmlac(-1) ++(1-lams3lac)*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-lams4lac)*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-lams5lac)*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-lams6lac)*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-lams7lac)*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-lams8lac)*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +-bulac*((1-lamu1lac)*(1-philac)*(1-eduulac) ++(1-lamu2lac)*(1-philac(-1))*p2lac/mmlac(-1) ++(1-lamu3lac)*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-lamu4lac)*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-lamu5lac)*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-lamu6lac)*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-lamu7lac)*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-lamu8lac)*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +-psilac*wagddslac*(tr1slac*philac ++tr2slac*philac(-1)*p2lac/mmlac(-1) ++tr3slac*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++tr4slac*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++tr5slac*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++tr6slac*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++tr7slac*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++tr8slac*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +-psilac*wagddulac*(tr1ulac*(1-philac) ++tr2ulac*(1-philac(-1))*p2lac/mmlac(-1) ++tr3ulac*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++tr4ulac*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++tr5ulac*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++tr6ulac*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++tr7ulac*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++tr8ulac*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) +-conspubgdplac +-pilac*intrate*klac; + +// ---------------------------- rusland ------------------------------- // + +xs8rus*(1+tcrus)=1/(p8rus*phirus(-7))*intrate*zs8rus*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)+lams8rus*(1-taurus)*wagddsrus+psirus*tr8srus*wagddsrus+(1-lams8rus)*bsrus; +xu8rus*(1+tcrus)=1/(p8rus*(1-phirus(-7)))*intrate*zu8rus*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)+(1-urrus)*lamu8rus*(1-taurus)*wagddurus+psirus*tr8urus*wagddurus+(1-lamu8rus)*burus; + +xs2rus(+1)*ggnam(+1)=beta*intrate(+1)*xs1rus*(1+tcrus)/(1+tcrus(+1)); +xs3rus(+1)*ggnam(+1)=beta*intrate(+1)*xs2rus*(1+tcrus)/(1+tcrus(+1)); +xs4rus(+1)*ggnam(+1)=beta*intrate(+1)*xs3rus*(1+tcrus)/(1+tcrus(+1)); +xs5rus(+1)*ggnam(+1)=beta*intrate(+1)*xs4rus*(1+tcrus)/(1+tcrus(+1)); +xs6rus(+1)*ggnam(+1)=beta*intrate(+1)*xs5rus*(1+tcrus)/(1+tcrus(+1)); +xs7rus(+1)*ggnam(+1)=beta*intrate(+1)*xs6rus*(1+tcrus)/(1+tcrus(+1)); +xs8rus(+1)*ggnam(+1)=beta*intrate(+1)*xs7rus*(1+tcrus)/(1+tcrus(+1)); + +xu2rus(+1)*ggnam(+1)=beta*intrate(+1)*xu1rus*(1+tcrus)/(1+tcrus(+1)); +xu3rus(+1)*ggnam(+1)=beta*intrate(+1)*xu2rus*(1+tcrus)/(1+tcrus(+1)); +xu4rus(+1)*ggnam(+1)=beta*intrate(+1)*xu3rus*(1+tcrus)/(1+tcrus(+1)); +xu5rus(+1)*ggnam(+1)=beta*intrate(+1)*xu4rus*(1+tcrus)/(1+tcrus(+1)); +xu6rus(+1)*ggnam(+1)=beta*intrate(+1)*xu5rus*(1+tcrus)/(1+tcrus(+1)); +xu7rus(+1)*ggnam(+1)=beta*intrate(+1)*xu6rus*(1+tcrus)/(1+tcrus(+1)); +xu8rus(+1)*ggnam(+1)=beta*intrate(+1)*xu7rus*(1+tcrus)/(1+tcrus(+1)); + +zs2rus=phirus(-1)*((1-edusrus(-1))*(1-taurus(-1))*lams1rus(-1)*wagddsrus(-1)+psirus(-1)*tr1srus(-1)*wagddsrus(-1)+(1-edusrus(-1))*(1-lams1rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs1rus(-1))/(ggnam*mmrus(-1)); +zs3rus=intrate(-1)*zs2rus(-1)/(ggnam*mmrus(-1))+phirus(-2)*p2rus(-1)*((1-taurus(-1))*lams2rus(-1)*wagddsrus(-1)+psirus(-1)*tr2srus(-1)*wagddsrus(-1)+(1-lams2rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs2rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)); +zs4rus=intrate(-1)*zs3rus(-1)/(ggnam*mmrus(-1))+phirus(-3)*p3rus(-1)*((1-taurus(-1))*lams3rus(-1)*wagddsrus(-1)+psirus(-1)*tr3srus(-1)*wagddsrus(-1)+(1-lams3rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs3rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)); +zs5rus=intrate(-1)*zs4rus(-1)/(ggnam*mmrus(-1))+phirus(-4)*p4rus(-1)*((1-taurus(-1))*lams4rus(-1)*wagddsrus(-1)+psirus(-1)*tr4srus(-1)*wagddsrus(-1)+(1-lams4rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs4rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)); +zs6rus=intrate(-1)*zs5rus(-1)/(ggnam*mmrus(-1))+phirus(-5)*p5rus(-1)*((1-taurus(-1))*lams5rus(-1)*wagddsrus(-1)+psirus(-1)*tr5srus(-1)*wagddsrus(-1)+(1-lams5rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs5rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)); +zs7rus=intrate(-1)*zs6rus(-1)/(ggnam*mmrus(-1))+phirus(-6)*p6rus(-1)*((1-taurus(-1))*lams6rus(-1)*wagddsrus(-1)+psirus(-1)*tr6srus(-1)*wagddsrus(-1)+(1-lams6rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs6rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)); +zs8rus=intrate(-1)*zs7rus(-1)/(ggnam*mmrus(-1))+phirus(-7)*p7rus(-1)*((1-taurus(-1))*lams7rus(-1)*wagddsrus(-1)+psirus(-1)*tr7srus(-1)*wagddsrus(-1)+(1-lams7rus(-1))*bsrus(-1)-(1+tcrus(-1))*xs7rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)); + +zu2rus=(1-phirus(-1))*((1-eduurus(-1))*(1-taurus(-1))*lamu1rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr1urus(-1)*wagddurus(-1)+(1-eduurus(-1))*(1-lamu1rus(-1))*burus(-1)-(1+tcrus(-1))*xu1rus(-1))/(ggnam*mmrus(-1)); +zu3rus=intrate(-1)*zu2rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-2))*p2rus(-1)*((1-taurus(-1))*lamu2rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr2urus(-1)*wagddurus(-1)+(1-lamu2rus(-1))*burus(-1)-(1+tcrus(-1))*xu2rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)); +zu4rus=intrate(-1)*zu3rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-3))*p3rus(-1)*((1-taurus(-1))*lamu3rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr3urus(-1)*wagddurus(-1)+(1-lamu3rus(-1))*burus(-1)-(1+tcrus(-1))*xu3rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)); +zu5rus=intrate(-1)*zu4rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-4))*p4rus(-1)*((1-taurus(-1))*lamu4rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr4urus(-1)*wagddurus(-1)+(1-lamu4rus(-1))*burus(-1)-(1+tcrus(-1))*xu4rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)); +zu6rus=intrate(-1)*zu5rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-5))*p5rus(-1)*((1-taurus(-1))*lamu5rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr5urus(-1)*wagddurus(-1)+(1-lamu5rus(-1))*burus(-1)-(1+tcrus(-1))*xu5rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)); +zu7rus=intrate(-1)*zu6rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-6))*p6rus(-1)*((1-taurus(-1))*lamu6rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr6urus(-1)*wagddurus(-1)+(1-lamu6rus(-1))*burus(-1)-(1+tcrus(-1))*xu6rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)); +zu8rus=intrate(-1)*zu7rus(-1)/(ggnam*mmrus(-1))+(1-phirus(-7))*p7rus(-1)*((1-taurus(-1))*lamu7rus(-1)*(1-urrus)*wagddurus(-1)+psirus(-1)*tr7urus(-1)*wagddurus(-1)+(1-lamu7rus(-1))*burus(-1)-(1+tcrus(-1))*xu7rus(-1))/(ggnam*mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)); + +wearus=zs2rus+zs3rus+zs4rus+zs5rus+zs6rus+zs7rus+zs8rus ++zu2rus+zu3rus+zu4rus+zu5rus+zu6rus+zu7rus+zu8rus; + +gdprus=krus^alpha*(tfprus*labrus)^(1-alpha); + +govrus=taurus*(wagddsrus*labsrus+wagddurus*labddurus) ++pirus*intrate*krus ++tcrus*(phirus*xs1rus ++xs2rus*phirus(-1)*p2rus/mmrus(-1) ++xs3rus*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++xs4rus*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++xs5rus*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++xs6rus*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++xs7rus*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++xs8rus*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) ++tcrus*((1-phirus)*xu1rus ++xu2rus*(1-phirus(-1))*p2rus/mmrus(-1) ++xu3rus*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++xu4rus*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++xu5rus*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++xu6rus*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++xu7rus*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++xu8rus*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +-bsrus*((1-lams1rus)*phirus*(1-edusrus) ++(1-lams2rus)*phirus(-1)*p2rus/mmrus(-1) ++(1-lams3rus)*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-lams4rus)*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-lams5rus)*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-lams6rus)*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-lams7rus)*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-lams8rus)*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +-burus*((1-lamu1rus)*(1-phirus)*(1-eduurus) ++(1-lamu2rus)*(1-phirus(-1))*p2rus/mmrus(-1) ++(1-lamu3rus)*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-lamu4rus)*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-lamu5rus)*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-lamu6rus)*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-lamu7rus)*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-lamu8rus)*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +-psirus*wagddsrus*(tr1srus*phirus ++tr2srus*phirus(-1)*p2rus/mmrus(-1) ++tr3srus*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++tr4srus*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++tr5srus*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++tr6srus*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++tr7srus*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++tr8srus*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +-psirus*wagddurus*(tr1urus*(1-phirus) ++tr2urus*(1-phirus(-1))*p2rus/mmrus(-1) ++tr3urus*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++tr4urus*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++tr5urus*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++tr6urus*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++tr7urus*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++tr8urus*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) +-conspubgdprus +-pirus*intrate*krus; + +// ------------------------------ mena -------------------------------- // + +xs8men*(1+tcmen)=1/(p8men*phimen(-7))*intrate*zs8men*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)+lams8men*(1-taumen)*wagddsmen+psimen*tr8smen*wagddsmen+(1-lams8men)*bsmen; +xu8men*(1+tcmen)=1/(p8men*(1-phimen(-7)))*intrate*zu8men*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)+(1-urmen)*lamu8men*(1-taumen)*wagddumen+psimen*tr8umen*wagddumen+(1-lamu8men)*bumen; + +xs2men(+1)*ggnam(+1)=beta*intrate(+1)*xs1men*(1+tcmen)/(1+tcmen(+1)); +xs3men(+1)*ggnam(+1)=beta*intrate(+1)*xs2men*(1+tcmen)/(1+tcmen(+1)); +xs4men(+1)*ggnam(+1)=beta*intrate(+1)*xs3men*(1+tcmen)/(1+tcmen(+1)); +xs5men(+1)*ggnam(+1)=beta*intrate(+1)*xs4men*(1+tcmen)/(1+tcmen(+1)); +xs6men(+1)*ggnam(+1)=beta*intrate(+1)*xs5men*(1+tcmen)/(1+tcmen(+1)); +xs7men(+1)*ggnam(+1)=beta*intrate(+1)*xs6men*(1+tcmen)/(1+tcmen(+1)); +xs8men(+1)*ggnam(+1)=beta*intrate(+1)*xs7men*(1+tcmen)/(1+tcmen(+1)); + +xu2men(+1)*ggnam(+1)=beta*intrate(+1)*xu1men*(1+tcmen)/(1+tcmen(+1)); +xu3men(+1)*ggnam(+1)=beta*intrate(+1)*xu2men*(1+tcmen)/(1+tcmen(+1)); +xu4men(+1)*ggnam(+1)=beta*intrate(+1)*xu3men*(1+tcmen)/(1+tcmen(+1)); +xu5men(+1)*ggnam(+1)=beta*intrate(+1)*xu4men*(1+tcmen)/(1+tcmen(+1)); +xu6men(+1)*ggnam(+1)=beta*intrate(+1)*xu5men*(1+tcmen)/(1+tcmen(+1)); +xu7men(+1)*ggnam(+1)=beta*intrate(+1)*xu6men*(1+tcmen)/(1+tcmen(+1)); +xu8men(+1)*ggnam(+1)=beta*intrate(+1)*xu7men*(1+tcmen)/(1+tcmen(+1)); + +zs2men=phimen(-1)*((1-edusmen(-1))*(1-taumen(-1))*lams1men(-1)*wagddsmen(-1)+psimen(-1)*tr1smen(-1)*wagddsmen(-1)+(1-edusmen(-1))*(1-lams1men(-1))*bsmen(-1)-(1+tcmen(-1))*xs1men(-1))/(ggnam*mmmen(-1)); +zs3men=intrate(-1)*zs2men(-1)/(ggnam*mmmen(-1))+phimen(-2)*p2men(-1)*((1-taumen(-1))*lams2men(-1)*wagddsmen(-1)+psimen(-1)*tr2smen(-1)*wagddsmen(-1)+(1-lams2men(-1))*bsmen(-1)-(1+tcmen(-1))*xs2men(-1))/(ggnam*mmmen(-1)*mmmen(-2)); +zs4men=intrate(-1)*zs3men(-1)/(ggnam*mmmen(-1))+phimen(-3)*p3men(-1)*((1-taumen(-1))*lams3men(-1)*wagddsmen(-1)+psimen(-1)*tr3smen(-1)*wagddsmen(-1)+(1-lams3men(-1))*bsmen(-1)-(1+tcmen(-1))*xs3men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)); +zs5men=intrate(-1)*zs4men(-1)/(ggnam*mmmen(-1))+phimen(-4)*p4men(-1)*((1-taumen(-1))*lams4men(-1)*wagddsmen(-1)+psimen(-1)*tr4smen(-1)*wagddsmen(-1)+(1-lams4men(-1))*bsmen(-1)-(1+tcmen(-1))*xs4men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)); +zs6men=intrate(-1)*zs5men(-1)/(ggnam*mmmen(-1))+phimen(-5)*p5men(-1)*((1-taumen(-1))*lams5men(-1)*wagddsmen(-1)+psimen(-1)*tr5smen(-1)*wagddsmen(-1)+(1-lams5men(-1))*bsmen(-1)-(1+tcmen(-1))*xs5men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)); +zs7men=intrate(-1)*zs6men(-1)/(ggnam*mmmen(-1))+phimen(-6)*p6men(-1)*((1-taumen(-1))*lams6men(-1)*wagddsmen(-1)+psimen(-1)*tr6smen(-1)*wagddsmen(-1)+(1-lams6men(-1))*bsmen(-1)-(1+tcmen(-1))*xs6men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)); +zs8men=intrate(-1)*zs7men(-1)/(ggnam*mmmen(-1))+phimen(-7)*p7men(-1)*((1-taumen(-1))*lams7men(-1)*wagddsmen(-1)+psimen(-1)*tr7smen(-1)*wagddsmen(-1)+(1-lams7men(-1))*bsmen(-1)-(1+tcmen(-1))*xs7men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)); + +zu2men=(1-phimen(-1))*((1-eduumen(-1))*(1-taumen(-1))*lamu1men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr1umen(-1)*wagddumen(-1)+(1-eduumen(-1))*(1-lamu1men(-1))*bumen(-1)-(1+tcmen(-1))*xu1men(-1))/(ggnam*mmmen(-1)); +zu3men=intrate(-1)*zu2men(-1)/(ggnam*mmmen(-1))+(1-phimen(-2))*p2men(-1)*((1-taumen(-1))*lamu2men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr2umen(-1)*wagddumen(-1)+(1-lamu2men(-1))*bumen(-1)-(1+tcmen(-1))*xu2men(-1))/(ggnam*mmmen(-1)*mmmen(-2)); +zu4men=intrate(-1)*zu3men(-1)/(ggnam*mmmen(-1))+(1-phimen(-3))*p3men(-1)*((1-taumen(-1))*lamu3men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr3umen(-1)*wagddumen(-1)+(1-lamu3men(-1))*bumen(-1)-(1+tcmen(-1))*xu3men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)); +zu5men=intrate(-1)*zu4men(-1)/(ggnam*mmmen(-1))+(1-phimen(-4))*p4men(-1)*((1-taumen(-1))*lamu4men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr4umen(-1)*wagddumen(-1)+(1-lamu4men(-1))*bumen(-1)-(1+tcmen(-1))*xu4men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)); +zu6men=intrate(-1)*zu5men(-1)/(ggnam*mmmen(-1))+(1-phimen(-5))*p5men(-1)*((1-taumen(-1))*lamu5men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr5umen(-1)*wagddumen(-1)+(1-lamu5men(-1))*bumen(-1)-(1+tcmen(-1))*xu5men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)); +zu7men=intrate(-1)*zu6men(-1)/(ggnam*mmmen(-1))+(1-phimen(-6))*p6men(-1)*((1-taumen(-1))*lamu6men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr6umen(-1)*wagddumen(-1)+(1-lamu6men(-1))*bumen(-1)-(1+tcmen(-1))*xu6men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)); +zu8men=intrate(-1)*zu7men(-1)/(ggnam*mmmen(-1))+(1-phimen(-7))*p7men(-1)*((1-taumen(-1))*lamu7men(-1)*(1-urmen(-1))*wagddumen(-1)+psimen(-1)*tr7umen(-1)*wagddumen(-1)+(1-lamu7men(-1))*bumen(-1)-(1+tcmen(-1))*xu7men(-1))/(ggnam*mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)); + +weamen=zs2men+zs3men+zs4men+zs5men+zs6men+zs7men+zs8men ++zu2men+zu3men+zu4men+zu5men+zu6men+zu7men+zu8men; + +gdpmen=kmen^alpha*(tfpmen*labmen)^(1-alpha); + +govmen=taumen*(wagddsmen*labsmen+wagddumen*labddumen) ++pimen*intrate*kmen ++tcmen*(phimen*xs1men ++xs2men*phimen(-1)*p2men/mmmen(-1) ++xs3men*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++xs4men*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++xs5men*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++xs6men*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++xs7men*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++xs8men*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) ++tcmen*((1-phimen)*xu1men ++xu2men*(1-phimen(-1))*p2men/mmmen(-1) ++xu3men*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++xu4men*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++xu5men*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++xu6men*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++xu7men*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++xu8men*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +-bsmen*((1-lams1men)*phimen*(1-edusmen) ++(1-lams2men)*phimen(-1)*p2men/mmmen(-1) ++(1-lams3men)*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++(1-lams4men)*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-lams5men)*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-lams6men)*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-lams7men)*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-lams8men)*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +-bumen*((1-lamu1men)*(1-phimen)*(1-eduumen) ++(1-lamu2men)*(1-phimen(-1))*p2men/mmmen(-1) ++(1-lamu3men)*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++(1-lamu4men)*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-lamu5men)*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-lamu6men)*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-lamu7men)*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-lamu8men)*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +-psimen*wagddsmen*(tr1smen*phimen ++tr2smen*phimen(-1)*p2men/mmmen(-1) ++tr3smen*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++tr4smen*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++tr5smen*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++tr6smen*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++tr7smen*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++tr8smen*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +-psimen*wagddumen*(tr1umen*(1-phimen) ++tr2umen*(1-phimen(-1))*p2men/mmmen(-1) ++tr3umen*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++tr4umen*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++tr5umen*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++tr6umen*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++tr7umen*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++tr8umen*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) +-conspubgdpmen +-pimen*intrate*kmen; + +// ------------------------ eastern europe ---------------------------- // + +xs8eas*(1+tceas)=1/(p8eas*phieas(-7))*intrate*zs8eas*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)+lams8eas*(1-taueas)*wagddseas+psieas*tr8seas*wagddseas+(1-lams8eas)*bseas; +xu8eas*(1+tceas)=1/(p8eas*(1-phieas(-7)))*intrate*zu8eas*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)+(1-ureas)*lamu8eas*(1-taueas)*wagddueas+psieas*tr8ueas*wagddueas+(1-lamu8eas)*bueas; + +xs2eas(+1)*ggnam(+1)=beta*intrate(+1)*xs1eas*(1+tceas)/(1+tceas(+1)); +xs3eas(+1)*ggnam(+1)=beta*intrate(+1)*xs2eas*(1+tceas)/(1+tceas(+1)); +xs4eas(+1)*ggnam(+1)=beta*intrate(+1)*xs3eas*(1+tceas)/(1+tceas(+1)); +xs5eas(+1)*ggnam(+1)=beta*intrate(+1)*xs4eas*(1+tceas)/(1+tceas(+1)); +xs6eas(+1)*ggnam(+1)=beta*intrate(+1)*xs5eas*(1+tceas)/(1+tceas(+1)); +xs7eas(+1)*ggnam(+1)=beta*intrate(+1)*xs6eas*(1+tceas)/(1+tceas(+1)); +xs8eas(+1)*ggnam(+1)=beta*intrate(+1)*xs7eas*(1+tceas)/(1+tceas(+1)); + +xu2eas(+1)*ggnam(+1)=beta*intrate(+1)*xu1eas*(1+tceas)/(1+tceas(+1)); +xu3eas(+1)*ggnam(+1)=beta*intrate(+1)*xu2eas*(1+tceas)/(1+tceas(+1)); +xu4eas(+1)*ggnam(+1)=beta*intrate(+1)*xu3eas*(1+tceas)/(1+tceas(+1)); +xu5eas(+1)*ggnam(+1)=beta*intrate(+1)*xu4eas*(1+tceas)/(1+tceas(+1)); +xu6eas(+1)*ggnam(+1)=beta*intrate(+1)*xu5eas*(1+tceas)/(1+tceas(+1)); +xu7eas(+1)*ggnam(+1)=beta*intrate(+1)*xu6eas*(1+tceas)/(1+tceas(+1)); +xu8eas(+1)*ggnam(+1)=beta*intrate(+1)*xu7eas*(1+tceas)/(1+tceas(+1)); + +zs2eas=phieas(-1)*((1-eduseas(-1))*(1-taueas(-1))*lams1eas(-1)*wagddseas(-1)+psieas(-1)*tr1seas(-1)*wagddseas(-1)+(1-eduseas(-1))*(1-lams1eas(-1))*bseas(-1)-(1+tceas(-1))*xs1eas(-1))/(ggnam*mmeas(-1)); +zs3eas=intrate(-1)*zs2eas(-1)/(ggnam*mmeas(-1))+phieas(-2)*p2eas(-1)*((1-taueas(-1))*lams2eas(-1)*wagddseas(-1)+psieas(-1)*tr2seas(-1)*wagddseas(-1)+(1-lams2eas(-1))*bseas(-1)-(1+tceas(-1))*xs2eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)); +zs4eas=intrate(-1)*zs3eas(-1)/(ggnam*mmeas(-1))+phieas(-3)*p3eas(-1)*((1-taueas(-1))*lams3eas(-1)*wagddseas(-1)+psieas(-1)*tr3seas(-1)*wagddseas(-1)+(1-lams3eas(-1))*bseas(-1)-(1+tceas(-1))*xs3eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)); +zs5eas=intrate(-1)*zs4eas(-1)/(ggnam*mmeas(-1))+phieas(-4)*p4eas(-1)*((1-taueas(-1))*lams4eas(-1)*wagddseas(-1)+psieas(-1)*tr4seas(-1)*wagddseas(-1)+(1-lams4eas(-1))*bseas(-1)-(1+tceas(-1))*xs4eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)); +zs6eas=intrate(-1)*zs5eas(-1)/(ggnam*mmeas(-1))+phieas(-5)*p5eas(-1)*((1-taueas(-1))*lams5eas(-1)*wagddseas(-1)+psieas(-1)*tr5seas(-1)*wagddseas(-1)+(1-lams5eas(-1))*bseas(-1)-(1+tceas(-1))*xs5eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)); +zs7eas=intrate(-1)*zs6eas(-1)/(ggnam*mmeas(-1))+phieas(-6)*p6eas(-1)*((1-taueas(-1))*lams6eas(-1)*wagddseas(-1)+psieas(-1)*tr6seas(-1)*wagddseas(-1)+(1-lams6eas(-1))*bseas(-1)-(1+tceas(-1))*xs6eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)); +zs8eas=intrate(-1)*zs7eas(-1)/(ggnam*mmeas(-1))+phieas(-7)*p7eas(-1)*((1-taueas(-1))*lams7eas(-1)*wagddseas(-1)+psieas(-1)*tr7seas(-1)*wagddseas(-1)+(1-lams7eas(-1))*bseas(-1)-(1+tceas(-1))*xs7eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)); + +zu2eas=(1-phieas(-1))*((1-eduueas(-1))*(1-taueas(-1))*lamu1eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr1ueas(-1)*wagddueas(-1)+(1-eduueas(-1))*(1-lamu1eas(-1))*bueas(-1)-(1+tceas(-1))*xu1eas(-1))/(ggnam*mmeas(-1)); +zu3eas=intrate(-1)*zu2eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-2))*p2eas(-1)*((1-taueas(-1))*lamu2eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr2ueas(-1)*wagddueas(-1)+(1-lamu2eas(-1))*bueas(-1)-(1+tceas(-1))*xu2eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)); +zu4eas=intrate(-1)*zu3eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-3))*p3eas(-1)*((1-taueas(-1))*lamu3eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr3ueas(-1)*wagddueas(-1)+(1-lamu3eas(-1))*bueas(-1)-(1+tceas(-1))*xu3eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)); +zu5eas=intrate(-1)*zu4eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-4))*p4eas(-1)*((1-taueas(-1))*lamu4eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr4ueas(-1)*wagddueas(-1)+(1-lamu4eas(-1))*bueas(-1)-(1+tceas(-1))*xu4eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)); +zu6eas=intrate(-1)*zu5eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-5))*p5eas(-1)*((1-taueas(-1))*lamu5eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr5ueas(-1)*wagddueas(-1)+(1-lamu5eas(-1))*bueas(-1)-(1+tceas(-1))*xu5eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)); +zu7eas=intrate(-1)*zu6eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-6))*p6eas(-1)*((1-taueas(-1))*lamu6eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr6ueas(-1)*wagddueas(-1)+(1-lamu6eas(-1))*bueas(-1)-(1+tceas(-1))*xu6eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)); +zu8eas=intrate(-1)*zu7eas(-1)/(ggnam*mmeas(-1))+(1-phieas(-7))*p7eas(-1)*((1-taueas(-1))*lamu7eas(-1)*(1-ureas(-1))*wagddueas(-1)+psieas(-1)*tr7ueas(-1)*wagddueas(-1)+(1-lamu7eas(-1))*bueas(-1)-(1+tceas(-1))*xu7eas(-1))/(ggnam*mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)); + +weaeas=zs2eas+zs3eas+zs4eas+zs5eas+zs6eas+zs7eas+zs8eas ++zu2eas+zu3eas+zu4eas+zu5eas+zu6eas+zu7eas+zu8eas; + +gdpeas=keas^alpha*(tfpeas*labeas)^(1-alpha); + +goveas=taueas*(wagddseas*labseas+wagddueas*labddueas) ++pieas*intrate*keas ++tceas*(phieas*xs1eas ++xs2eas*phieas(-1)*p2eas/mmeas(-1) ++xs3eas*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++xs4eas*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++xs5eas*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++xs6eas*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++xs7eas*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++xs8eas*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) ++tceas*((1-phieas)*xu1eas ++xu2eas*(1-phieas(-1))*p2eas/mmeas(-1) ++xu3eas*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++xu4eas*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++xu5eas*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++xu6eas*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++xu7eas*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++xu8eas*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +-bseas*((1-lams1eas)*phieas*(1-eduseas) ++(1-lams2eas)*phieas(-1)*p2eas/mmeas(-1) ++(1-lams3eas)*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-lams4eas)*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-lams5eas)*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-lams6eas)*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-lams7eas)*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-lams8eas)*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +-bueas*((1-lamu1eas)*(1-phieas)*(1-eduueas) ++(1-lamu2eas)*(1-phieas(-1))*p2eas/mmeas(-1) ++(1-lamu3eas)*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-lamu4eas)*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-lamu5eas)*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-lamu6eas)*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-lamu7eas)*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-lamu8eas)*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +-psieas*wagddseas*(tr1seas*phieas ++tr2seas*phieas(-1)*p2eas/mmeas(-1) ++tr3seas*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++tr4seas*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++tr5seas*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++tr6seas*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++tr7seas*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++tr8seas*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +-psieas*wagddueas*(tr1ueas*(1-phieas) ++tr2ueas*(1-phieas(-1))*p2eas/mmeas(-1) ++tr3ueas*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++tr4ueas*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++tr5ueas*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++tr6ueas*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++tr7ueas*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++tr8ueas*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) +-conspubgdpeas +-pieas*intrate*keas; + +// ------------------------------ china ------------------------------- // + +xs8chi*(1+tcchi)=1/(p8chi*phichi(-7))*intrate*zs8chi*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)+lams8chi*(1-tauchi)*wagddschi+psichi*tr8schi*wagddschi+(1-lams8chi)*bschi; +xu8chi*(1+tcchi)=1/(p8chi*(1-phichi(-7)))*intrate*zu8chi*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)+(1-urchi)*lamu8chi*(1-tauchi)*wagdduchi+psichi*tr8uchi*wagdduchi+(1-lamu8chi)*buchi; + +xs2chi(+1)*ggnam(+1)=beta*intrate(+1)*xs1chi*(1+tcchi)/(1+tcchi(+1)); +xs3chi(+1)*ggnam(+1)=beta*intrate(+1)*xs2chi*(1+tcchi)/(1+tcchi(+1)); +xs4chi(+1)*ggnam(+1)=beta*intrate(+1)*xs3chi*(1+tcchi)/(1+tcchi(+1)); +xs5chi(+1)*ggnam(+1)=beta*intrate(+1)*xs4chi*(1+tcchi)/(1+tcchi(+1)); +xs6chi(+1)*ggnam(+1)=beta*intrate(+1)*xs5chi*(1+tcchi)/(1+tcchi(+1)); +xs7chi(+1)*ggnam(+1)=beta*intrate(+1)*xs6chi*(1+tcchi)/(1+tcchi(+1)); +xs8chi(+1)*ggnam(+1)=beta*intrate(+1)*xs7chi*(1+tcchi)/(1+tcchi(+1)); + +xu2chi(+1)*ggnam(+1)=beta*intrate(+1)*xu1chi*(1+tcchi)/(1+tcchi(+1)); +xu3chi(+1)*ggnam(+1)=beta*intrate(+1)*xu2chi*(1+tcchi)/(1+tcchi(+1)); +xu4chi(+1)*ggnam(+1)=beta*intrate(+1)*xu3chi*(1+tcchi)/(1+tcchi(+1)); +xu5chi(+1)*ggnam(+1)=beta*intrate(+1)*xu4chi*(1+tcchi)/(1+tcchi(+1)); +xu6chi(+1)*ggnam(+1)=beta*intrate(+1)*xu5chi*(1+tcchi)/(1+tcchi(+1)); +xu7chi(+1)*ggnam(+1)=beta*intrate(+1)*xu6chi*(1+tcchi)/(1+tcchi(+1)); +xu8chi(+1)*ggnam(+1)=beta*intrate(+1)*xu7chi*(1+tcchi)/(1+tcchi(+1)); + +zs2chi=phichi(-1)*((1-eduschi(-1))*(1-tauchi(-1))*lams1chi(-1)*wagddschi(-1)+psichi(-1)*tr1schi(-1)*wagddschi(-1)+(1-eduschi(-1))*(1-lams1chi(-1))*bschi(-1)-(1+tcchi(-1))*xs1chi(-1))/(ggnam*mmchi(-1)); +zs3chi=intrate(-1)*zs2chi(-1)/(ggnam*mmchi(-1))+phichi(-2)*p2chi(-1)*((1-tauchi(-1))*lams2chi(-1)*wagddschi(-1)+psichi(-1)*tr2schi(-1)*wagddschi(-1)+(1-lams2chi(-1))*bschi(-1)-(1+tcchi(-1))*xs2chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)); +zs4chi=intrate(-1)*zs3chi(-1)/(ggnam*mmchi(-1))+phichi(-3)*p3chi(-1)*((1-tauchi(-1))*lams3chi(-1)*wagddschi(-1)+psichi(-1)*tr3schi(-1)*wagddschi(-1)+(1-lams3chi(-1))*bschi(-1)-(1+tcchi(-1))*xs3chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)); +zs5chi=intrate(-1)*zs4chi(-1)/(ggnam*mmchi(-1))+phichi(-4)*p4chi(-1)*((1-tauchi(-1))*lams4chi(-1)*wagddschi(-1)+psichi(-1)*tr4schi(-1)*wagddschi(-1)+(1-lams4chi(-1))*bschi(-1)-(1+tcchi(-1))*xs4chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)); +zs6chi=intrate(-1)*zs5chi(-1)/(ggnam*mmchi(-1))+phichi(-5)*p5chi(-1)*((1-tauchi(-1))*lams5chi(-1)*wagddschi(-1)+psichi(-1)*tr5schi(-1)*wagddschi(-1)+(1-lams5chi(-1))*bschi(-1)-(1+tcchi(-1))*xs5chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)); +zs7chi=intrate(-1)*zs6chi(-1)/(ggnam*mmchi(-1))+phichi(-6)*p6chi(-1)*((1-tauchi(-1))*lams6chi(-1)*wagddschi(-1)+psichi(-1)*tr6schi(-1)*wagddschi(-1)+(1-lams6chi(-1))*bschi(-1)-(1+tcchi(-1))*xs6chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)); +zs8chi=intrate(-1)*zs7chi(-1)/(ggnam*mmchi(-1))+phichi(-7)*p7chi(-1)*((1-tauchi(-1))*lams7chi(-1)*wagddschi(-1)+psichi(-1)*tr7schi(-1)*wagddschi(-1)+(1-lams7chi(-1))*bschi(-1)-(1+tcchi(-1))*xs7chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)); + +zu2chi=(1-phichi(-1))*((1-eduuchi(-1))*(1-tauchi(-1))*lamu1chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr1uchi(-1)*wagdduchi(-1)+(1-eduuchi(-1))*(1-lamu1chi(-1))*buchi(-1)-(1+tcchi(-1))*xu1chi(-1))/(ggnam*mmchi(-1)); +zu3chi=intrate(-1)*zu2chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-2))*p2chi(-1)*((1-tauchi(-1))*lamu2chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr2uchi(-1)*wagdduchi(-1)+(1-lamu2chi(-1))*buchi(-1)-(1+tcchi(-1))*xu2chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)); +zu4chi=intrate(-1)*zu3chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-3))*p3chi(-1)*((1-tauchi(-1))*lamu3chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr3uchi(-1)*wagdduchi(-1)+(1-lamu3chi(-1))*buchi(-1)-(1+tcchi(-1))*xu3chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)); +zu5chi=intrate(-1)*zu4chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-4))*p4chi(-1)*((1-tauchi(-1))*lamu4chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr4uchi(-1)*wagdduchi(-1)+(1-lamu4chi(-1))*buchi(-1)-(1+tcchi(-1))*xu4chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)); +zu6chi=intrate(-1)*zu5chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-5))*p5chi(-1)*((1-tauchi(-1))*lamu5chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr5uchi(-1)*wagdduchi(-1)+(1-lamu5chi(-1))*buchi(-1)-(1+tcchi(-1))*xu5chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)); +zu7chi=intrate(-1)*zu6chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-6))*p6chi(-1)*((1-tauchi(-1))*lamu6chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr6uchi(-1)*wagdduchi(-1)+(1-lamu6chi(-1))*buchi(-1)-(1+tcchi(-1))*xu6chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)); +zu8chi=intrate(-1)*zu7chi(-1)/(ggnam*mmchi(-1))+(1-phichi(-7))*p7chi(-1)*((1-tauchi(-1))*lamu7chi(-1)*(1-urchi(-1))*wagdduchi(-1)+psichi(-1)*tr7uchi(-1)*wagdduchi(-1)+(1-lamu7chi(-1))*buchi(-1)-(1+tcchi(-1))*xu7chi(-1))/(ggnam*mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)); + +weachi=zs2chi+zs3chi+zs4chi+zs5chi+zs6chi+zs7chi+zs8chi ++zu2chi+zu3chi+zu4chi+zu5chi+zu6chi+zu7chi+zu8chi; + +gdpchi=kchi^alpha*(tfpchi*labchi)^(1-alpha); + +govchi=tauchi*(wagddschi*labschi+wagdduchi*labdduchi) ++pichi*intrate*kchi ++tcchi*(phichi*xs1chi ++xs2chi*phichi(-1)*p2chi/mmchi(-1) ++xs3chi*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++xs4chi*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++xs5chi*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++xs6chi*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++xs7chi*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++xs8chi*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) ++tcchi*((1-phichi)*xu1chi ++xu2chi*(1-phichi(-1))*p2chi/mmchi(-1) ++xu3chi*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++xu4chi*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++xu5chi*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++xu6chi*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++xu7chi*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++xu8chi*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +-bschi*((1-lams1chi)*phichi*(1-eduschi) ++(1-lams2chi)*phichi(-1)*p2chi/mmchi(-1) ++(1-lams3chi)*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-lams4chi)*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-lams5chi)*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-lams6chi)*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-lams7chi)*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-lams8chi)*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +-buchi*((1-lamu1chi)*(1-phichi)*(1-eduuchi) ++(1-lamu2chi)*(1-phichi(-1))*p2chi/mmchi(-1) ++(1-lamu3chi)*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-lamu4chi)*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-lamu5chi)*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-lamu6chi)*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-lamu7chi)*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-lamu8chi)*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +-psichi*wagddschi*(tr1schi*phichi ++tr2schi*phichi(-1)*p2chi/mmchi(-1) ++tr3schi*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++tr4schi*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++tr5schi*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++tr6schi*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++tr7schi*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++tr8schi*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +-psichi*wagdduchi*(tr1uchi*(1-phichi) ++tr2uchi*(1-phichi(-1))*p2chi/mmchi(-1) ++tr3uchi*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++tr4uchi*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++tr5uchi*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++tr6uchi*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++tr7uchi*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++tr8uchi*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) +-conspubgdpchi +-pichi*intrate*kchi; + +// ------------------------------ india ------------------------------- // + +xs8ind*(1+tcind)=1/(p8ind*phiind(-7))*intrate*zs8ind*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)+lams8ind*(1-tauind)*wagddsind+psiind*tr8sind*wagddsind+(1-lams8ind)*bsind; +xu8ind*(1+tcind)=1/(p8ind*(1-phiind(-7)))*intrate*zu8ind*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)+(1-urind)*lamu8ind*(1-tauind)*wagdduind+psiind*tr8uind*wagdduind+(1-lamu8ind)*buind; + +xs2ind(+1)*ggnam(+1)=beta*intrate(+1)*xs1ind*(1+tcind)/(1+tcind(+1)); +xs3ind(+1)*ggnam(+1)=beta*intrate(+1)*xs2ind*(1+tcind)/(1+tcind(+1)); +xs4ind(+1)*ggnam(+1)=beta*intrate(+1)*xs3ind*(1+tcind)/(1+tcind(+1)); +xs5ind(+1)*ggnam(+1)=beta*intrate(+1)*xs4ind*(1+tcind)/(1+tcind(+1)); +xs6ind(+1)*ggnam(+1)=beta*intrate(+1)*xs5ind*(1+tcind)/(1+tcind(+1)); +xs7ind(+1)*ggnam(+1)=beta*intrate(+1)*xs6ind*(1+tcind)/(1+tcind(+1)); +xs8ind(+1)*ggnam(+1)=beta*intrate(+1)*xs7ind*(1+tcind)/(1+tcind(+1)); + +xu2ind(+1)*ggnam(+1)=beta*intrate(+1)*xu1ind*(1+tcind)/(1+tcind(+1)); +xu3ind(+1)*ggnam(+1)=beta*intrate(+1)*xu2ind*(1+tcind)/(1+tcind(+1)); +xu4ind(+1)*ggnam(+1)=beta*intrate(+1)*xu3ind*(1+tcind)/(1+tcind(+1)); +xu5ind(+1)*ggnam(+1)=beta*intrate(+1)*xu4ind*(1+tcind)/(1+tcind(+1)); +xu6ind(+1)*ggnam(+1)=beta*intrate(+1)*xu5ind*(1+tcind)/(1+tcind(+1)); +xu7ind(+1)*ggnam(+1)=beta*intrate(+1)*xu6ind*(1+tcind)/(1+tcind(+1)); +xu8ind(+1)*ggnam(+1)=beta*intrate(+1)*xu7ind*(1+tcind)/(1+tcind(+1)); + +zs2ind=phiind(-1)*((1-edusind(-1))*(1-tauind(-1))*lams1ind(-1)*wagddsind(-1)+psiind(-1)*tr1sind(-1)*wagddsind(-1)+(1-edusind(-1))*(1-lams1ind(-1))*bsind(-1)-(1+tcind(-1))*xs1ind(-1))/(ggnam*mmind(-1)); +zs3ind=intrate(-1)*zs2ind(-1)/(ggnam*mmind(-1))+phiind(-2)*p2ind(-1)*((1-tauind(-1))*lams2ind(-1)*wagddsind(-1)+psiind(-1)*tr2sind(-1)*wagddsind(-1)+(1-lams2ind(-1))*bsind(-1)-(1+tcind(-1))*xs2ind(-1))/(ggnam*mmind(-1)*mmind(-2)); +zs4ind=intrate(-1)*zs3ind(-1)/(ggnam*mmind(-1))+phiind(-3)*p3ind(-1)*((1-tauind(-1))*lams3ind(-1)*wagddsind(-1)+psiind(-1)*tr3sind(-1)*wagddsind(-1)+(1-lams3ind(-1))*bsind(-1)-(1+tcind(-1))*xs3ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)); +zs5ind=intrate(-1)*zs4ind(-1)/(ggnam*mmind(-1))+phiind(-4)*p4ind(-1)*((1-tauind(-1))*lams4ind(-1)*wagddsind(-1)+psiind(-1)*tr4sind(-1)*wagddsind(-1)+(1-lams4ind(-1))*bsind(-1)-(1+tcind(-1))*xs4ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)); +zs6ind=intrate(-1)*zs5ind(-1)/(ggnam*mmind(-1))+phiind(-5)*p5ind(-1)*((1-tauind(-1))*lams5ind(-1)*wagddsind(-1)+psiind(-1)*tr5sind(-1)*wagddsind(-1)+(1-lams5ind(-1))*bsind(-1)-(1+tcind(-1))*xs5ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)); +zs7ind=intrate(-1)*zs6ind(-1)/(ggnam*mmind(-1))+phiind(-6)*p6ind(-1)*((1-tauind(-1))*lams6ind(-1)*wagddsind(-1)+psiind(-1)*tr6sind(-1)*wagddsind(-1)+(1-lams6ind(-1))*bsind(-1)-(1+tcind(-1))*xs6ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)); +zs8ind=intrate(-1)*zs7ind(-1)/(ggnam*mmind(-1))+phiind(-7)*p7ind(-1)*((1-tauind(-1))*lams7ind(-1)*wagddsind(-1)+psiind(-1)*tr7sind(-1)*wagddsind(-1)+(1-lams7ind(-1))*bsind(-1)-(1+tcind(-1))*xs7ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)); + +zu2ind=(1-phiind(-1))*((1-eduuind(-1))*(1-tauind(-1))*lamu1ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr1uind(-1)*wagdduind(-1)+(1-eduuind(-1))*(1-lamu1ind(-1))*buind(-1)-(1+tcind(-1))*xu1ind(-1))/(ggnam*mmind(-1)); +zu3ind=intrate(-1)*zu2ind(-1)/(ggnam*mmind(-1))+(1-phiind(-2))*p2ind(-1)*((1-tauind(-1))*lamu2ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr2uind(-1)*wagdduind(-1)+(1-lamu2ind(-1))*buind(-1)-(1+tcind(-1))*xu2ind(-1))/(ggnam*mmind(-1)*mmind(-2)); +zu4ind=intrate(-1)*zu3ind(-1)/(ggnam*mmind(-1))+(1-phiind(-3))*p3ind(-1)*((1-tauind(-1))*lamu3ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr3uind(-1)*wagdduind(-1)+(1-lamu3ind(-1))*buind(-1)-(1+tcind(-1))*xu3ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)); +zu5ind=intrate(-1)*zu4ind(-1)/(ggnam*mmind(-1))+(1-phiind(-4))*p4ind(-1)*((1-tauind(-1))*lamu4ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr4uind(-1)*wagdduind(-1)+(1-lamu4ind(-1))*buind(-1)-(1+tcind(-1))*xu4ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)); +zu6ind=intrate(-1)*zu5ind(-1)/(ggnam*mmind(-1))+(1-phiind(-5))*p5ind(-1)*((1-tauind(-1))*lamu5ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr5uind(-1)*wagdduind(-1)+(1-lamu5ind(-1))*buind(-1)-(1+tcind(-1))*xu5ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)); +zu7ind=intrate(-1)*zu6ind(-1)/(ggnam*mmind(-1))+(1-phiind(-6))*p6ind(-1)*((1-tauind(-1))*lamu6ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr6uind(-1)*wagdduind(-1)+(1-lamu6ind(-1))*buind(-1)-(1+tcind(-1))*xu6ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)); +zu8ind=intrate(-1)*zu7ind(-1)/(ggnam*mmind(-1))+(1-phiind(-7))*p7ind(-1)*((1-tauind(-1))*lamu7ind(-1)*(1-urind(-1))*wagdduind(-1)+psiind(-1)*tr7uind(-1)*wagdduind(-1)+(1-lamu7ind(-1))*buind(-1)-(1+tcind(-1))*xu7ind(-1))/(ggnam*mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)); + +weaind=zs2ind+zs3ind+zs4ind+zs5ind+zs6ind+zs7ind+zs8ind ++zu2ind+zu3ind+zu4ind+zu5ind+zu6ind+zu7ind+zu8ind; + +gdpind=kind^alpha*(tfpind*labind)^(1-alpha); + +govind=tauind*(wagddsind*labsind+wagdduind*labdduind) ++piind*intrate*kind ++tcind*(phiind*xs1ind ++xs2ind*phiind(-1)*p2ind/mmind(-1) ++xs3ind*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++xs4ind*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++xs5ind*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++xs6ind*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++xs7ind*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++xs8ind*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) ++tcind*((1-phiind)*xu1ind ++xu2ind*(1-phiind(-1))*p2ind/mmind(-1) ++xu3ind*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++xu4ind*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++xu5ind*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++xu6ind*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++xu7ind*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++xu8ind*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +-bsind*((1-lams1ind)*phiind*(1-edusind) ++(1-lams2ind)*phiind(-1)*p2ind/mmind(-1) ++(1-lams3ind)*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++(1-lams4ind)*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-lams5ind)*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-lams6ind)*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-lams7ind)*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-lams8ind)*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +-buind*((1-lamu1ind)*(1-phiind)*(1-eduuind) ++(1-lamu2ind)*(1-phiind(-1))*p2ind/mmind(-1) ++(1-lamu3ind)*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++(1-lamu4ind)*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-lamu5ind)*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-lamu6ind)*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-lamu7ind)*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-lamu8ind)*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +-psiind*wagddsind*(tr1sind*phiind ++tr2sind*phiind(-1)*p2ind/mmind(-1) ++tr3sind*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++tr4sind*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++tr5sind*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++tr6sind*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++tr7sind*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++tr8sind*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +-psiind*wagdduind*(tr1uind*(1-phiind) ++tr2uind*(1-phiind(-1))*p2ind/mmind(-1) ++tr3uind*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++tr4uind*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++tr5uind*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++tr6uind*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++tr7uind*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++tr8uind*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) +-conspubgdpind +-piind*intrate*kind; + +//--------------------------- bengdp --------------------------------- // + +bengdpadv=(bsadv*((1-lams1adv)*phiadv*(1-edusadv) ++(1-lams2adv)*phiadv(-1)*p2adv/mmadv(-1) ++(1-lams3adv)*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-lams4adv)*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-lams5adv)*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-lams6adv)*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-lams7adv)*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-lams8adv)*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) ++buadv*((1-lamu1adv)*(1-phiadv)*(1-eduuadv) ++(1-lamu2adv)*(1-phiadv(-1))*p2adv/mmadv(-1) ++(1-lamu3adv)*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-lamu4adv)*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-lamu5adv)*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-lamu6adv)*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-lamu7adv)*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-lamu8adv)*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))))/gdpadv; + +bengdpnam=(bsnam*((1-lams1nam)*phinam*(1-edusnam) ++(1-lams2nam)*phinam(-1)*p2nam/mmnam(-1) ++(1-lams3nam)*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-lams4nam)*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-lams5nam)*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-lams6nam)*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-lams7nam)*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-lams8nam)*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) ++bunam*((1-lamu1nam)*(1-phinam)*(1-eduunam) ++(1-lamu2nam)*(1-phinam(-1))*p2nam/mmnam(-1) ++(1-lamu3nam)*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-lamu4nam)*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-lamu5nam)*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-lamu6nam)*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-lamu7nam)*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-lamu8nam)*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))))/gdpnam; + +bengdpssa=(bsssa*((1-lams1ssa)*phissa*(1-edusssa) ++(1-lams2ssa)*phissa(-1)*p2ssa/mmssa(-1) ++(1-lams3ssa)*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-lams4ssa)*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-lams5ssa)*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-lams6ssa)*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-lams7ssa)*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-lams8ssa)*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) ++bussa*((1-lamu1ssa)*(1-phissa)*(1-eduussa) ++(1-lamu2ssa)*(1-phissa(-1))*p2ssa/mmssa(-1) ++(1-lamu3ssa)*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-lamu4ssa)*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-lamu5ssa)*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-lamu6ssa)*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-lamu7ssa)*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-lamu8ssa)*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))))/gdpssa; + +bengdplac=(bslac*((1-lams1lac)*philac*(1-eduslac) ++(1-lams2lac)*philac(-1)*p2lac/mmlac(-1) ++(1-lams3lac)*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-lams4lac)*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-lams5lac)*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-lams6lac)*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-lams7lac)*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-lams8lac)*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) ++bulac*((1-lamu1lac)*(1-philac)*(1-eduulac) ++(1-lamu2lac)*(1-philac(-1))*p2lac/mmlac(-1) ++(1-lamu3lac)*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-lamu4lac)*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-lamu5lac)*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-lamu6lac)*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-lamu7lac)*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-lamu8lac)*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))))/gdplac; + +bengdpjap=(bsjap*((1-lams1jap)*phijap*(1-edusjap) ++(1-lams2jap)*phijap(-1)*p2jap/mmjap(-1) ++(1-lams3jap)*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-lams4jap)*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-lams5jap)*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-lams6jap)*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-lams7jap)*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-lams8jap)*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) ++bujap*((1-lamu1jap)*(1-phijap)*(1-eduujap) ++(1-lamu2jap)*(1-phijap(-1))*p2jap/mmjap(-1) ++(1-lamu3jap)*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-lamu4jap)*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-lamu5jap)*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-lamu6jap)*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-lamu7jap)*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-lamu8jap)*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))))/gdpjap; + +bengdpeas=(bseas*((1-lams1eas)*phieas*(1-eduseas) ++(1-lams2eas)*phieas(-1)*p2eas/mmeas(-1) ++(1-lams3eas)*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-lams4eas)*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-lams5eas)*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-lams6eas)*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-lams7eas)*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-lams8eas)*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) ++bueas*((1-lamu1eas)*(1-phieas)*(1-eduueas) ++(1-lamu2eas)*(1-phieas(-1))*p2eas/mmeas(-1) ++(1-lamu3eas)*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-lamu4eas)*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-lamu5eas)*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-lamu6eas)*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-lamu7eas)*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-lamu8eas)*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))))/gdpeas; + +bengdprus=(bsrus*((1-lams1rus)*phirus*(1-edusrus) ++(1-lams2rus)*phirus(-1)*p2rus/mmrus(-1) ++(1-lams3rus)*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-lams4rus)*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-lams5rus)*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-lams6rus)*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-lams7rus)*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-lams8rus)*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) ++burus*((1-lamu1rus)*(1-phirus)*(1-eduurus) ++(1-lamu2rus)*(1-phirus(-1))*p2rus/mmrus(-1) ++(1-lamu3rus)*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-lamu4rus)*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-lamu5rus)*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-lamu6rus)*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-lamu7rus)*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-lamu8rus)*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))))/gdprus; + +bengdpmen=(bsmen*((1-lams1men)*phimen*(1-edusmen) ++(1-lams2men)*phimen(-1)*p2men/mmmen(-1) ++(1-lams3men)*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++(1-lams4men)*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-lams5men)*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-lams6men)*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-lams7men)*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-lams8men)*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) ++bumen*((1-lamu1men)*(1-phimen)*(1-eduumen) ++(1-lamu2men)*(1-phimen(-1))*p2men/mmmen(-1) ++(1-lamu3men)*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++(1-lamu4men)*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-lamu5men)*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-lamu6men)*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-lamu7men)*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-lamu8men)*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))))/gdpmen; + +bengdpchi=(bschi*((1-lams1chi)*phichi*(1-eduschi) ++(1-lams2chi)*phichi(-1)*p2chi/mmchi(-1) ++(1-lams3chi)*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-lams4chi)*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-lams5chi)*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-lams6chi)*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-lams7chi)*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-lams8chi)*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) ++buchi*((1-lamu1chi)*(1-phichi)*(1-eduuchi) ++(1-lamu2chi)*(1-phichi(-1))*p2chi/mmchi(-1) ++(1-lamu3chi)*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-lamu4chi)*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-lamu5chi)*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-lamu6chi)*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-lamu7chi)*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-lamu8chi)*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))))/gdpchi; + +bengdpind=(bsind*((1-lams1ind)*phiind*(1-edusind) ++(1-lams2ind)*phiind(-1)*p2ind/mmind(-1) ++(1-lams3ind)*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++(1-lams4ind)*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-lams5ind)*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-lams6ind)*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-lams7ind)*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-lams8ind)*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) ++buind*((1-lamu1ind)*(1-phiind)*(1-eduuind) ++(1-lamu2ind)*(1-phiind(-1))*p2ind/mmind(-1) ++(1-lamu3ind)*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++(1-lamu4ind)*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-lamu5ind)*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-lamu6ind)*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-lamu7ind)*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-lamu8ind)*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))))/gdpind; + +// ----------------------------- sup ----------------------------------- // + +supadv=(1+p2adv/mmadv(-1) ++p3adv/(mmadv(-1)*mmadv(-2)) ++p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)))/ +(p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))); + +supnam=(1+p2nam/mmnam(-1) ++p3nam/(mmnam(-1)*mmnam(-2)) ++p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)))/ +(p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +supssa=(1+p2ssa/mmssa(-1) ++p3ssa/(mmssa(-1)*mmssa(-2)) ++p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)))/ +(p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))); + +suplac=(1+p2lac/mmlac(-1) ++p3lac/(mmlac(-1)*mmlac(-2)) ++p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)))/ +(p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))); + +supeas=(1+p2eas/mmeas(-1) ++p3eas/(mmeas(-1)*mmeas(-2)) ++p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)))/ +(p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))); + +supmen=(1+p2men/mmmen(-1) ++p3men/(mmmen(-1)*mmmen(-2)) ++p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)))/ +(p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))); + +suprus=(1+p2rus/mmrus(-1) ++p3rus/(mmrus(-1)*mmrus(-2)) ++p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)))/ +(p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))); + +supjap=(1+p2jap/mmjap(-1) ++p3jap/(mmjap(-1)*mmjap(-2)) ++p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)))/ +(p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))); + +supchi=(1+p2chi/mmchi(-1) ++p3chi/(mmchi(-1)*mmchi(-2)) ++p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)))/ +(p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))); + +supind=(1+p2ind/mmind(-1) ++p3ind/(mmind(-1)*mmind(-2)) ++p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)))/ +(p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))); + +// ----------------------------- trgdp -------------------------------- // + +trgdpadv=(psiadv*wagddsadv*(tr1sadv*phiadv ++tr2sadv*phiadv(-1)*p2adv/mmadv(-1) ++tr3sadv*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++tr4sadv*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++tr5sadv*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++tr6sadv*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++tr7sadv*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++tr8sadv*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) ++psiadv*wagdduadv*(tr1uadv*(1-phiadv) ++tr2uadv*(1-phiadv(-1))*p2adv/mmadv(-1) ++tr3uadv*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++tr4uadv*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++tr5uadv*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++tr6uadv*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++tr7uadv*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++tr8uadv*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))))/gdpadv; + +trgdpnam=(psinam*wagddsnam*(tr1snam*phinam ++tr2snam*phinam(-1)*p2nam/mmnam(-1) ++tr3snam*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++tr4snam*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++tr5snam*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++tr6snam*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++tr7snam*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++tr8snam*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) ++psinam*wagddunam*(tr1unam*(1-phinam) ++tr2unam*(1-phinam(-1))*p2nam/mmnam(-1) ++tr3unam*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++tr4unam*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++tr5unam*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++tr6unam*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++tr7unam*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++tr8unam*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))))/gdpnam; + +trgdpssa=(psissa*wagddsssa*(tr1sssa*phissa ++tr2sssa*phissa(-1)*p2ssa/mmssa(-1) ++tr3sssa*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++tr4sssa*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++tr5sssa*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++tr6sssa*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++tr7sssa*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++tr8sssa*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) ++psissa*wagddussa*(tr1ussa*(1-phissa) ++tr2ussa*(1-phissa(-1))*p2ssa/mmssa(-1) ++tr3ussa*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++tr4ussa*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++tr5ussa*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++tr6ussa*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++tr7ussa*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++tr8ussa*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))))/gdpssa; + +trgdplac=(psilac*wagddslac*(tr1slac*philac ++tr2slac*philac(-1)*p2lac/mmlac(-1) ++tr3slac*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++tr4slac*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++tr5slac*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++tr6slac*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++tr7slac*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++tr8slac*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) ++psilac*wagddulac*(tr1ulac*(1-philac) ++tr2ulac*(1-philac(-1))*p2lac/mmlac(-1) ++tr3ulac*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++tr4ulac*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++tr5ulac*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++tr6ulac*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++tr7ulac*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++tr8ulac*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))))/gdplac; + +trgdpjap=(psijap*hjap*wagddsjap*(tr1sjap*phijap ++tr2sjap*phijap(-1)*p2jap/mmjap(-1) ++tr3sjap*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++tr4sjap*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++tr5sjap*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++tr6sjap*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++tr7sjap*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++tr8sjap*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) ++psijap*wagddujap*(tr1ujap*(1-phijap) ++tr2ujap*(1-phijap(-1))*p2jap/mmjap(-1) ++tr3ujap*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++tr4ujap*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++tr5ujap*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++tr6ujap*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++tr7ujap*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++tr8ujap*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))))/gdpjap; + +trgdprus=(psirus*wagddsrus*(tr1srus*phirus ++tr2srus*phirus(-1)*p2rus/mmrus(-1) ++tr3srus*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++tr4srus*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++tr5srus*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++tr6srus*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++tr7srus*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++tr8srus*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) ++psirus*wagddurus*(tr1urus*(1-phirus) ++tr2urus*(1-phirus(-1))*p2rus/mmrus(-1) ++tr3urus*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++tr4urus*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++tr5urus*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++tr6urus*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++tr7urus*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++tr8urus*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))))/gdprus; + +trgdpmen=(psimen*wagddsmen*(tr1smen*phimen ++tr2smen*phimen(-1)*p2men/mmmen(-1) ++tr3smen*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++tr4smen*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++tr5smen*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++tr6smen*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++tr7smen*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++tr8smen*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) ++psimen*wagddumen*(tr1umen*(1-phimen) ++tr2umen*(1-phimen(-1))*p2men/mmmen(-1) ++tr3umen*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++tr4umen*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++tr5umen*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++tr6umen*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++tr7umen*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++tr8umen*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))))/gdpmen; + +trgdpeas=(psieas*wagddseas*(tr1seas*phieas ++tr2seas*phieas(-1)*p2eas/mmeas(-1) ++tr3seas*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++tr4seas*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++tr5seas*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++tr6seas*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++tr7seas*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++tr8seas*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) ++psieas*wagddueas*(tr1ueas*(1-phieas) ++tr2ueas*(1-phieas(-1))*p2eas/mmeas(-1) ++tr3ueas*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++tr4ueas*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++tr5ueas*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++tr6ueas*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++tr7ueas*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++tr8ueas*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))))/gdpeas; + +trgdpchi=(psichi*wagddschi*(tr1schi*phichi ++tr2schi*phichi(-1)*p2chi/mmchi(-1) ++tr3schi*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++tr4schi*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++tr5schi*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++tr6schi*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++tr7schi*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++tr8schi*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) ++psichi*wagdduchi*(tr1uchi*(1-phichi) ++tr2uchi*(1-phichi(-1))*p2chi/mmchi(-1) ++tr3uchi*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++tr4uchi*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++tr5uchi*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++tr6uchi*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++tr7uchi*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++tr8uchi*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))))/gdpchi; + +trgdpind=(psiind*wagddsind*(tr1sind*phiind ++tr2sind*phiind(-1)*p2ind/mmind(-1) ++tr3sind*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++tr4sind*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++tr5sind*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++tr6sind*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++tr7sind*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++tr8sind*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) ++psiind*wagdduind*(tr1uind*(1-phiind) ++tr2uind*(1-phiind(-1))*p2ind/mmind(-1) ++tr3uind*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++tr4uind*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++tr5uind*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++tr6uind*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++tr7uind*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++tr8uind*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))))/gdpind; + +// ------------------------- rapport lab-lab sans h ------------------- // + +lablabsshadv=labadv/((1-edusadv)*phiadv*lams1adv ++phiadv(-1)*lams2adv*p2adv/mmadv(-1) ++phiadv(-2)*lams3adv*p3adv/(mmadv(-1)*mmadv(-2)) ++phiadv(-3)*lams4adv*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++phiadv(-4)*lams5adv*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++phiadv(-5)*lams6adv*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++phiadv(-6)*lams7adv*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++phiadv(-7)*lams8adv*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7)) ++(1-eduuadv)*(1-phiadv)*lamu1adv ++(1-phiadv(-1))*lamu2adv*p2adv/mmadv(-1) ++(1-phiadv(-2))*lamu3adv*p3adv/(mmadv(-1)*mmadv(-2)) ++(1-phiadv(-3))*lamu4adv*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++(1-phiadv(-4))*lamu5adv*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++(1-phiadv(-5))*lamu6adv*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++(1-phiadv(-6))*lamu7adv*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++(1-phiadv(-7))*lamu8adv*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))); + +lablabsshnam=labnam/((1-edusnam)*phinam*lams1nam ++phinam(-1)*lams2nam*p2nam/mmnam(-1) ++phinam(-2)*lams3nam*p3nam/(mmnam(-1)*mmnam(-2)) ++phinam(-3)*lams4nam*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++phinam(-4)*lams5nam*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++phinam(-5)*lams6nam*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++phinam(-6)*lams7nam*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++phinam(-7)*lams8nam*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7)) ++(1-eduunam)*(1-phinam)*lamu1nam ++(1-phinam(-1))*lamu2nam*p2nam/mmnam(-1) ++(1-phinam(-2))*lamu3nam*p3nam/(mmnam(-1)*mmnam(-2)) ++(1-phinam(-3))*lamu4nam*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++(1-phinam(-4))*lamu5nam*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++(1-phinam(-5))*lamu6nam*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++(1-phinam(-6))*lamu7nam*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++(1-phinam(-7))*lamu8nam*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))); + +lablabsshjap=labjap/((1-edusjap)*phijap*lams1jap ++phijap(-1)*lams2jap*p2jap/mmjap(-1) ++phijap(-2)*lams3jap*p3jap/(mmjap(-1)*mmjap(-2)) ++phijap(-3)*lams4jap*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++phijap(-4)*lams5jap*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++phijap(-5)*lams6jap*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++phijap(-6)*lams7jap*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++phijap(-7)*lams8jap*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7)) ++(1-eduujap)*(1-phijap)*lamu1jap ++(1-phijap(-1))*lamu2jap*p2jap/mmjap(-1) ++(1-phijap(-2))*lamu3jap*p3jap/(mmjap(-1)*mmjap(-2)) ++(1-phijap(-3))*lamu4jap*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++(1-phijap(-4))*lamu5jap*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++(1-phijap(-5))*lamu6jap*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++(1-phijap(-6))*lamu7jap*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++(1-phijap(-7))*lamu8jap*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))); + +lablabsshlac=lablac/((1-eduslac)*philac*lams1lac ++philac(-1)*lams2lac*p2lac/mmlac(-1) ++philac(-2)*lams3lac*p3lac/(mmlac(-1)*mmlac(-2)) ++philac(-3)*lams4lac*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++philac(-4)*lams5lac*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++philac(-5)*lams6lac*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++philac(-6)*lams7lac*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++philac(-7)*lams8lac*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7)) ++(1-eduulac)*(1-philac)*lamu1lac ++(1-philac(-1))*lamu2lac*p2lac/mmlac(-1) ++(1-philac(-2))*lamu3lac*p3lac/(mmlac(-1)*mmlac(-2)) ++(1-philac(-3))*lamu4lac*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++(1-philac(-4))*lamu5lac*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++(1-philac(-5))*lamu6lac*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++(1-philac(-6))*lamu7lac*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++(1-philac(-7))*lamu8lac*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))); + +lablabsshssa=labssa/((1-edusssa)*phissa*lams1ssa ++phissa(-1)*lams2ssa*p2ssa/mmssa(-1) ++phissa(-2)*lams3ssa*p3ssa/(mmssa(-1)*mmssa(-2)) ++phissa(-3)*lams4ssa*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++phissa(-4)*lams5ssa*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++phissa(-5)*lams6ssa*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++phissa(-6)*lams7ssa*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++phissa(-7)*lams8ssa*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7)) ++(1-eduussa)*(1-phissa)*lamu1ssa ++(1-phissa(-1))*lamu2ssa*p2ssa/mmssa(-1) ++(1-phissa(-2))*lamu3ssa*p3ssa/(mmssa(-1)*mmssa(-2)) ++(1-phissa(-3))*lamu4ssa*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++(1-phissa(-4))*lamu5ssa*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++(1-phissa(-5))*lamu6ssa*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++(1-phissa(-6))*lamu7ssa*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++(1-phissa(-7))*lamu8ssa*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))); + +lablabssheas=labeas/((1-eduseas)*phieas*lams1eas ++phieas(-1)*lams2eas*p2eas/mmeas(-1) ++phieas(-2)*lams3eas*p3eas/(mmeas(-1)*mmeas(-2)) ++phieas(-3)*lams4eas*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++phieas(-4)*lams5eas*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++phieas(-5)*lams6eas*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++phieas(-6)*lams7eas*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++phieas(-7)*lams8eas*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7)) ++(1-eduueas)*(1-phieas)*lamu1eas ++(1-phieas(-1))*lamu2eas*p2eas/mmeas(-1) ++(1-phieas(-2))*lamu3eas*p3eas/(mmeas(-1)*mmeas(-2)) ++(1-phieas(-3))*lamu4eas*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++(1-phieas(-4))*lamu5eas*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++(1-phieas(-5))*lamu6eas*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++(1-phieas(-6))*lamu7eas*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++(1-phieas(-7))*lamu8eas*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))); + +lablabsshmen=labmen/((1-edusmen)*phimen*lams1men ++phimen(-1)*lams2men*p2men/mmmen(-1) ++phimen(-2)*lams3men*p3men/(mmmen(-1)*mmmen(-2)) ++phimen(-3)*lams4men*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++phimen(-4)*lams5men*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++phimen(-5)*lams6men*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++phimen(-6)*lams7men*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++phimen(-7)*lams8men*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7)) ++(1-eduumen)*(1-phimen)*lamu1men ++(1-phimen(-1))*lamu2men*p2men/mmmen(-1) ++(1-phimen(-2))*lamu3men*p3men/(mmmen(-1)*mmmen(-2)) ++(1-phimen(-3))*lamu4men*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++(1-phimen(-4))*lamu5men*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++(1-phimen(-5))*lamu6men*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++(1-phimen(-6))*lamu7men*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++(1-phimen(-7))*lamu8men*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))); + +lablabsshrus=labrus/((1-edusrus)*phirus*lams1rus ++phirus(-1)*lams2rus*p2rus/mmrus(-1) ++phirus(-2)*lams3rus*p3rus/(mmrus(-1)*mmrus(-2)) ++phirus(-3)*lams4rus*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++phirus(-4)*lams5rus*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++phirus(-5)*lams6rus*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++phirus(-6)*lams7rus*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++phirus(-7)*lams8rus*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7)) ++(1-eduurus)*(1-phirus)*lamu1rus ++(1-phirus(-1))*lamu2rus*p2rus/mmrus(-1) ++(1-phirus(-2))*lamu3rus*p3rus/(mmrus(-1)*mmrus(-2)) ++(1-phirus(-3))*lamu4rus*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++(1-phirus(-4))*lamu5rus*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++(1-phirus(-5))*lamu6rus*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++(1-phirus(-6))*lamu7rus*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++(1-phirus(-7))*lamu8rus*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))); + +lablabsshchi=labchi/((1-eduschi)*phichi*lams1chi ++phichi(-1)*lams2chi*p2chi/mmchi(-1) ++phichi(-2)*lams3chi*p3chi/(mmchi(-1)*mmchi(-2)) ++phichi(-3)*lams4chi*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++phichi(-4)*lams5chi*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++phichi(-5)*lams6chi*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++phichi(-6)*lams7chi*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++phichi(-7)*lams8chi*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7)) ++(1-eduuchi)*(1-phichi)*lamu1chi ++(1-phichi(-1))*lamu2chi*p2chi/mmchi(-1) ++(1-phichi(-2))*lamu3chi*p3chi/(mmchi(-1)*mmchi(-2)) ++(1-phichi(-3))*lamu4chi*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++(1-phichi(-4))*lamu5chi*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++(1-phichi(-5))*lamu6chi*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++(1-phichi(-6))*lamu7chi*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++(1-phichi(-7))*lamu8chi*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))); + +lablabsshind=labind/((1-edusind)*phiind*lams1ind ++phiind(-1)*lams2ind*p2ind/mmind(-1) ++phiind(-2)*lams3ind*p3ind/(mmind(-1)*mmind(-2)) ++phiind(-3)*lams4ind*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++phiind(-4)*lams5ind*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++phiind(-5)*lams6ind*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++phiind(-6)*lams7ind*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++phiind(-7)*lams8ind*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7)) ++(1-eduuind)*(1-phiind)*lamu1ind ++(1-phiind(-1))*lamu2ind*p2ind/mmind(-1) ++(1-phiind(-2))*lamu3ind*p3ind/(mmind(-1)*mmind(-2)) ++(1-phiind(-3))*lamu4ind*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++(1-phiind(-4))*lamu5ind*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++(1-phiind(-5))*lamu6ind*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++(1-phiind(-6))*lamu7ind*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++(1-phiind(-7))*lamu8ind*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))); + +// ---- tx de pr้l่vement --- (labortax + constax) over gdp ---------- // + +taxesgdpadv=(tauadv*(wagddsadv*labsadv+wagdduadv*labdduadv) ++tcadv*(phiadv*xs1adv ++xs2adv*phiadv(-1)*p2adv/mmadv(-1) ++xs3adv*phiadv(-2)*p3adv/(mmadv(-1)*mmadv(-2)) ++xs4adv*phiadv(-3)*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++xs5adv*phiadv(-4)*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++xs6adv*phiadv(-5)*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++xs7adv*phiadv(-6)*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++xs8adv*phiadv(-7)*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))) ++tcadv*((1-phiadv)*xu1adv ++xu2adv*(1-phiadv(-1))*p2adv/mmadv(-1) ++xu3adv*(1-phiadv(-2))*p3adv/(mmadv(-1)*mmadv(-2)) ++xu4adv*(1-phiadv(-3))*p4adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)) ++xu5adv*(1-phiadv(-4))*p5adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)) ++xu6adv*(1-phiadv(-5))*p6adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)) ++xu7adv*(1-phiadv(-6))*p7adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)) ++xu8adv*(1-phiadv(-7))*p8adv/(mmadv(-1)*mmadv(-2)*mmadv(-3)*mmadv(-4)*mmadv(-5)*mmadv(-6)*mmadv(-7))))/gdpadv; + +taxesgdpnam=(taunam*(wagddsnam*labsnam+wagddunam*labddunam) ++tcnam*(phinam*xs1nam ++xs2nam*phinam(-1)*p2nam/mmnam(-1) ++xs3nam*phinam(-2)*p3nam/(mmnam(-1)*mmnam(-2)) ++xs4nam*phinam(-3)*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++xs5nam*phinam(-4)*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++xs6nam*phinam(-5)*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++xs7nam*phinam(-6)*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++xs8nam*phinam(-7)*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))) ++tcnam*((1-phinam)*xu1nam ++xu2nam*(1-phinam(-1))*p2nam/mmnam(-1) ++xu3nam*(1-phinam(-2))*p3nam/(mmnam(-1)*mmnam(-2)) ++xu4nam*(1-phinam(-3))*p4nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)) ++xu5nam*(1-phinam(-4))*p5nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)) ++xu6nam*(1-phinam(-5))*p6nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)) ++xu7nam*(1-phinam(-6))*p7nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)) ++xu8nam*(1-phinam(-7))*p8nam/(mmnam(-1)*mmnam(-2)*mmnam(-3)*mmnam(-4)*mmnam(-5)*mmnam(-6)*mmnam(-7))))/gdpnam; + +taxesgdpchi=(tauchi*(wagddschi*labschi+wagdduchi*labdduchi) ++tcchi*(phichi*xs1chi ++xs2chi*phichi(-1)*p2chi/mmchi(-1) ++xs3chi*phichi(-2)*p3chi/(mmchi(-1)*mmchi(-2)) ++xs4chi*phichi(-3)*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++xs5chi*phichi(-4)*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++xs6chi*phichi(-5)*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++xs7chi*phichi(-6)*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++xs8chi*phichi(-7)*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))) ++tcchi*((1-phichi)*xu1chi ++xu2chi*(1-phichi(-1))*p2chi/mmchi(-1) ++xu3chi*(1-phichi(-2))*p3chi/(mmchi(-1)*mmchi(-2)) ++xu4chi*(1-phichi(-3))*p4chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)) ++xu5chi*(1-phichi(-4))*p5chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)) ++xu6chi*(1-phichi(-5))*p6chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)) ++xu7chi*(1-phichi(-6))*p7chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)) ++xu8chi*(1-phichi(-7))*p8chi/(mmchi(-1)*mmchi(-2)*mmchi(-3)*mmchi(-4)*mmchi(-5)*mmchi(-6)*mmchi(-7))))/gdpchi; + +taxesgdpeas=(taueas*(wagddseas*labseas+wagddueas*labddueas) ++tceas*(phieas*xs1eas ++xs2eas*phieas(-1)*p2eas/mmeas(-1) ++xs3eas*phieas(-2)*p3eas/(mmeas(-1)*mmeas(-2)) ++xs4eas*phieas(-3)*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++xs5eas*phieas(-4)*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++xs6eas*phieas(-5)*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++xs7eas*phieas(-6)*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++xs8eas*phieas(-7)*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))) ++tceas*((1-phieas)*xu1eas ++xu2eas*(1-phieas(-1))*p2eas/mmeas(-1) ++xu3eas*(1-phieas(-2))*p3eas/(mmeas(-1)*mmeas(-2)) ++xu4eas*(1-phieas(-3))*p4eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)) ++xu5eas*(1-phieas(-4))*p5eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)) ++xu6eas*(1-phieas(-5))*p6eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)) ++xu7eas*(1-phieas(-6))*p7eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)) ++xu8eas*(1-phieas(-7))*p8eas/(mmeas(-1)*mmeas(-2)*mmeas(-3)*mmeas(-4)*mmeas(-5)*mmeas(-6)*mmeas(-7))))/gdpeas; + +taxesgdpind=(tauind*(wagddsind*labsind+wagdduind*labdduind) ++tcind*(phiind*xs1ind ++xs2ind*phiind(-1)*p2ind/mmind(-1) ++xs3ind*phiind(-2)*p3ind/(mmind(-1)*mmind(-2)) ++xs4ind*phiind(-3)*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++xs5ind*phiind(-4)*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++xs6ind*phiind(-5)*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++xs7ind*phiind(-6)*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++xs8ind*phiind(-7)*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))) ++tcind*((1-phiind)*xu1ind ++xu2ind*(1-phiind(-1))*p2ind/mmind(-1) ++xu3ind*(1-phiind(-2))*p3ind/(mmind(-1)*mmind(-2)) ++xu4ind*(1-phiind(-3))*p4ind/(mmind(-1)*mmind(-2)*mmind(-3)) ++xu5ind*(1-phiind(-4))*p5ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)) ++xu6ind*(1-phiind(-5))*p6ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)) ++xu7ind*(1-phiind(-6))*p7ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)) ++xu8ind*(1-phiind(-7))*p8ind/(mmind(-1)*mmind(-2)*mmind(-3)*mmind(-4)*mmind(-5)*mmind(-6)*mmind(-7))))/gdpind; + +taxesgdpjap=(taujap*(wagddsjap*labsjap+wagddujap*labddujap) ++tcjap*(phijap*xs1jap ++xs2jap*phijap(-1)*p2jap/mmjap(-1) ++xs3jap*phijap(-2)*p3jap/(mmjap(-1)*mmjap(-2)) ++xs4jap*phijap(-3)*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++xs5jap*phijap(-4)*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++xs6jap*phijap(-5)*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++xs7jap*phijap(-6)*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++xs8jap*phijap(-7)*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))) ++tcjap*((1-phijap)*xu1jap ++xu2jap*(1-phijap(-1))*p2jap/mmjap(-1) ++xu3jap*(1-phijap(-2))*p3jap/(mmjap(-1)*mmjap(-2)) ++xu4jap*(1-phijap(-3))*p4jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)) ++xu5jap*(1-phijap(-4))*p5jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)) ++xu6jap*(1-phijap(-5))*p6jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)) ++xu7jap*(1-phijap(-6))*p7jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)) ++xu8jap*(1-phijap(-7))*p8jap/(mmjap(-1)*mmjap(-2)*mmjap(-3)*mmjap(-4)*mmjap(-5)*mmjap(-6)*mmjap(-7))))/gdpjap; + +taxesgdplac=(taulac*(wagddslac*labslac+wagddulac*labddulac) ++tclac*(philac*xs1lac ++xs2lac*philac(-1)*p2lac/mmlac(-1) ++xs3lac*philac(-2)*p3lac/(mmlac(-1)*mmlac(-2)) ++xs4lac*philac(-3)*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++xs5lac*philac(-4)*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++xs6lac*philac(-5)*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++xs7lac*philac(-6)*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++xs8lac*philac(-7)*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))) ++tclac*((1-philac)*xu1lac ++xu2lac*(1-philac(-1))*p2lac/mmlac(-1) ++xu3lac*(1-philac(-2))*p3lac/(mmlac(-1)*mmlac(-2)) ++xu4lac*(1-philac(-3))*p4lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)) ++xu5lac*(1-philac(-4))*p5lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)) ++xu6lac*(1-philac(-5))*p6lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)) ++xu7lac*(1-philac(-6))*p7lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)) ++xu8lac*(1-philac(-7))*p8lac/(mmlac(-1)*mmlac(-2)*mmlac(-3)*mmlac(-4)*mmlac(-5)*mmlac(-6)*mmlac(-7))))/gdplac; + +taxesgdpmen=(taumen*(wagddsmen*labsmen+wagddumen*labddumen) ++tcmen*(phimen*xs1men ++xs2men*phimen(-1)*p2men/mmmen(-1) ++xs3men*phimen(-2)*p3men/(mmmen(-1)*mmmen(-2)) ++xs4men*phimen(-3)*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++xs5men*phimen(-4)*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++xs6men*phimen(-5)*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++xs7men*phimen(-6)*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++xs8men*phimen(-7)*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))) ++tcmen*((1-phimen)*xu1men ++xu2men*(1-phimen(-1))*p2men/mmmen(-1) ++xu3men*(1-phimen(-2))*p3men/(mmmen(-1)*mmmen(-2)) ++xu4men*(1-phimen(-3))*p4men/(mmmen(-1)*mmmen(-2)*mmmen(-3)) ++xu5men*(1-phimen(-4))*p5men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)) ++xu6men*(1-phimen(-5))*p6men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)) ++xu7men*(1-phimen(-6))*p7men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)) ++xu8men*(1-phimen(-7))*p8men/(mmmen(-1)*mmmen(-2)*mmmen(-3)*mmmen(-4)*mmmen(-5)*mmmen(-6)*mmmen(-7))))/gdpmen; + +taxesgdprus=(taurus*(wagddsrus*labsrus+wagddurus*labddurus) ++tcrus*(phirus*xs1rus ++xs2rus*phirus(-1)*p2rus/mmrus(-1) ++xs3rus*phirus(-2)*p3rus/(mmrus(-1)*mmrus(-2)) ++xs4rus*phirus(-3)*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++xs5rus*phirus(-4)*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++xs6rus*phirus(-5)*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++xs7rus*phirus(-6)*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++xs8rus*phirus(-7)*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))) ++tcrus*((1-phirus)*xu1rus ++xu2rus*(1-phirus(-1))*p2rus/mmrus(-1) ++xu3rus*(1-phirus(-2))*p3rus/(mmrus(-1)*mmrus(-2)) ++xu4rus*(1-phirus(-3))*p4rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)) ++xu5rus*(1-phirus(-4))*p5rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)) ++xu6rus*(1-phirus(-5))*p6rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)) ++xu7rus*(1-phirus(-6))*p7rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)) ++xu8rus*(1-phirus(-7))*p8rus/(mmrus(-1)*mmrus(-2)*mmrus(-3)*mmrus(-4)*mmrus(-5)*mmrus(-6)*mmrus(-7))))/gdprus; + +taxesgdpssa=(taussa*(wagddsssa*labsssa+wagddussa*labddussa) ++tcssa*(phissa*xs1ssa ++xs2ssa*phissa(-1)*p2ssa/mmssa(-1) ++xs3ssa*phissa(-2)*p3ssa/(mmssa(-1)*mmssa(-2)) ++xs4ssa*phissa(-3)*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++xs5ssa*phissa(-4)*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++xs6ssa*phissa(-5)*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++xs7ssa*phissa(-6)*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++xs8ssa*phissa(-7)*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))) ++tcssa*((1-phissa)*xu1ssa ++xu2ssa*(1-phissa(-1))*p2ssa/mmssa(-1) ++xu3ssa*(1-phissa(-2))*p3ssa/(mmssa(-1)*mmssa(-2)) ++xu4ssa*(1-phissa(-3))*p4ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)) ++xu5ssa*(1-phissa(-4))*p5ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)) ++xu6ssa*(1-phissa(-5))*p6ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)) ++xu7ssa*(1-phissa(-6))*p7ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)) ++xu8ssa*(1-phissa(-7))*p8ssa/(mmssa(-1)*mmssa(-2)*mmssa(-3)*mmssa(-4)*mmssa(-5)*mmssa(-6)*mmssa(-7))))/gdpssa; + +// -------------------------- growth gdp -------------------------------// + +growthadv=(gdpadv/gdpadv(-1)-1); +growthnam=(gdpnam/gdpnam(-1)-1); +growthjap=(gdpjap/gdpjap(-1)-1); +growthssa=(gdpssa/gdpssa(-1)-1); +growthlac=(gdplac/gdplac(-1)-1); +growthmen=(gdpmen/gdpmen(-1)-1); +growthrus=(gdprus/gdprus(-1)-1); +growtheas=(gdpeas/gdpeas(-1)-1); +growthchi=(gdpchi/gdpchi(-1)-1); +growthind=(gdpind/gdpind(-1)-1); + +// ------------------------- ownership ratio ---------------------------// + +ownadv=weaadv/kadv; +ownnam=weanam/knam; +ownjap=weajap/kjap; +ownssa=weassa/kssa; +ownlac=wealac/klac; +ownmen=weamen/kmen; +ownrus=wearus/krus; +owneas=weaeas/keas; +ownchi=weachi/kchi; +ownind=weaind/kind; + +ownsum=ownadv+ownnam+ownjap+ownssa+ownlac+ownmen+ownrus+owneas+ownchi+ownind; + +// ----------------------- foreign assets fa ------------------------- // + +faadv=weaadv-kadv; +fanam=weanam-knam; +fajap=weajap-kjap; +falac=wealac-klac; +faeas=weaeas-keas; +famen=weamen-kmen; +farus=wearus-krus; +fachi=weachi-kchi; +faind=weaind-kind; +fassa=weassa-kssa; + +fasum=faadv+fanam+fajap+falac+faeas+famen+farus+fachi+faind+fassa; + +// ----------------------- courrent account ca ----------------------- // + +caadv=faadv-faadv(-1)/(ggnam*mmadv(-1)); +canam=fanam-fanam(-1)/(ggnam*mmnam(-1)); +cajap=fajap-fajap(-1)/(ggnam*mmjap(-1)); +calac=falac-falac(-1)/(ggnam*mmlac(-1)); +caeas=faeas-faeas(-1)/(ggnam*mmeas(-1)); +camen=famen-famen(-1)/(ggnam*mmmen(-1)); +carus=farus-farus(-1)/(ggnam*mmrus(-1)); +cachi=fachi-fachi(-1)/(ggnam*mmchi(-1)); +caind=faind-faind(-1)/(ggnam*mmind(-1)); +cassa=fassa-fassa(-1)/(ggnam*mmssa(-1)); + +casum=caadv+canam+cajap+calac+caeas+camen+carus+cachi+caind+cassa; + +// ------------------------- dette int้rieure ---------------------------// + +zzdebtadv=ddyadv*gdpadv; +zzdebtnam=ddynam*gdpnam; +zzdebtjap=ddyjap*gdpjap; +zzdebtlac=ddylac*gdplac; +zzdebteas=ddyeas*gdpeas; +zzdebtmen=ddymen*gdpmen; +zzdebtrus=ddyrus*gdprus; +zzdebtchi=ddychi*gdpchi; +zzdebtind=ddyind*gdpind; +zzdebtssa=ddyssa*gdpssa; + +zzdebtsum=zzdebtadv+zzdebtnam+zzdebtjap+zzdebtlac+zzdebteas+zzdebtmen+zzdebtrus+zzdebtchi+zzdebtind+zzdebtssa; + +// ------------------------- zzownership ratio ---------------------------// + +zzown2adv=weaadv/(kadv+zzdebtadv); +zzown2nam=weanam/(knam+zzdebtnam); +zzown2jap=weajap/(kjap+zzdebtjap); +zzown2ssa=weassa/(kssa+zzdebtssa); +zzown2lac=wealac/(klac+zzdebtlac); +zzown2men=weamen/(kmen+zzdebtmen); +zzown2rus=wearus/(krus+zzdebtrus); +zzown2eas=weaeas/(keas+zzdebteas); +zzown2chi=weachi/(kchi+zzdebtchi); +zzown2ind=weaind/(kind+zzdebtind); + +zzown2sum=zzown2adv+zzown2nam+zzown2jap+zzown2ssa+zzown2lac+zzown2men+zzown2rus+zzown2eas+zzown2chi+zzown2ind; + +// ----------------------- foreign assets zzfa2 ------------------------- // + +zzfa2adv=weaadv-kadv-zzdebtadv; +zzfa2nam=weanam-knam-zzdebtnam; +zzfa2jap=weajap-kjap-zzdebtjap; +zzfa2lac=wealac-klac-zzdebtlac; +zzfa2eas=weaeas-keas-zzdebteas; +zzfa2men=weamen-kmen-zzdebtmen; +zzfa2rus=wearus-krus-zzdebtrus; +zzfa2chi=weachi-kchi-zzdebtchi; +zzfa2ind=weaind-kind-zzdebtind; +zzfa2ssa=weassa-kssa-zzdebtssa; + +zzfa2sum=zzfa2adv+zzfa2nam+zzfa2jap+zzfa2lac+zzfa2eas+zzfa2men+zzfa2rus+zzfa2chi+zzfa2ind+zzfa2ssa; + +// ----------------------- courrent account zzca2 ----------------------- // + +zzca2adv=zzfa2adv-zzfa2adv(-1)/(ggnam*mmadv(-1)); +zzca2nam=zzfa2nam-zzfa2nam(-1)/(ggnam*mmnam(-1)); +zzca2jap=zzfa2jap-zzfa2jap(-1)/(ggnam*mmjap(-1)); +zzca2lac=zzfa2lac-zzfa2lac(-1)/(ggnam*mmlac(-1)); +zzca2eas=zzfa2eas-zzfa2eas(-1)/(ggnam*mmeas(-1)); +zzca2men=zzfa2men-zzfa2men(-1)/(ggnam*mmmen(-1)); +zzca2rus=zzfa2rus-zzfa2rus(-1)/(ggnam*mmrus(-1)); +zzca2chi=zzfa2chi-zzfa2chi(-1)/(ggnam*mmchi(-1)); +zzca2ind=zzfa2ind-zzfa2ind(-1)/(ggnam*mmind(-1)); +zzca2ssa=zzfa2ssa-zzfa2ssa(-1)/(ggnam*mmssa(-1)); + +zzca2sum=zzca2adv+zzca2nam+zzca2jap+zzca2lac+zzca2eas+zzca2men+zzca2rus+zzca2chi+zzca2ind+zzca2ssa; + +// -------------------- new courrent account --------------------------- // + +zzvardebtadv=zzdebtadv-zzdebtadv(-1); +zzvardebtnam=zzdebtnam-zzdebtnam(-1); +zzvardebtjap=zzdebtjap-zzdebtjap(-1); +zzvardebtlac=zzdebtlac-zzdebtlac(-1); +zzvardebteas=zzdebteas-zzdebteas(-1); +zzvardebtmen=zzdebtmen-zzdebtmen(-1); +zzvardebtrus=zzdebtrus-zzdebtrus(-1); +zzvardebtind=zzdebtind-zzdebtind(-1); +zzvardebtchi=zzdebtchi-zzdebtchi(-1); +zzvardebtssa=zzdebtssa-zzdebtssa(-1); + +zzvarkadv=kadv-kadv(-1); +zzvarknam=knam-knam(-1); +zzvarkjap=kjap-kjap(-1); +zzvarklac=klac-klac(-1); +zzvarkeas=keas-keas(-1); +zzvarkmen=kmen-kmen(-1); +zzvarkrus=krus-krus(-1); +zzvarkind=kind-kind(-1); +zzvarkchi=kchi-kchi(-1); +zzvarkssa=kssa-kssa(-1); + +zzvarweaadv=weaadv-weaadv(-1); +zzvarweanam=weanam-weanam(-1); +zzvarweajap=weajap-weajap(-1); +zzvarwealac=wealac-wealac(-1); +zzvarweaeas=weaeas-weaeas(-1); +zzvarweamen=weamen-weamen(-1); +zzvarwearus=wearus-wearus(-1); +zzvarweaind=weaind-weaind(-1); +zzvarweachi=weachi-weachi(-1); +zzvarweassa=weassa-weassa(-1); + +zzznewcaadv=zzvarkadv+zzvardebtadv-zzvarweaadv; +zzznewcanam=zzvarknam+zzvardebtnam-zzvarweanam; +zzznewcajap=zzvarkjap+zzvardebtjap-zzvarweajap; +zzznewcalac=zzvarklac+zzvardebtlac-zzvarwealac; +zzznewcaeas=zzvarkeas+zzvardebteas-zzvarweaeas; +zzznewcamen=zzvarkmen+zzvardebtmen-zzvarweamen; +zzznewcarus=zzvarkrus+zzvardebtrus-zzvarwearus; +zzznewcaind=zzvarkind+zzvardebtind-zzvarweaind; +zzznewcachi=zzvarkchi+zzvardebtchi-zzvarweachi; +zzznewcassa=zzvarkssa+zzvardebtssa-zzvarweassa; + +zzznewcasum=zzznewcaadv+zzznewcanam+zzznewcajap+zzznewcalac+zzznewcaeas+zzznewcamen+zzznewcarus+zzznewcachi+zzznewcaind+zzznewcassa; + +// -------------------------- conspubgdp -------------------------------// + +conspubgdpadv=conspubadv*gdpadv; +conspubgdpnam=conspubnam*gdpnam; +conspubgdpjap=conspubjap*gdpjap; +conspubgdpssa=conspubssa*gdpssa; +conspubgdplac=conspublac*gdplac; +conspubgdpmen=conspubmen*gdpmen; +conspubgdprus=conspubrus*gdprus; +conspubgdpeas=conspubeas*gdpeas; +conspubgdpchi=conspubchi*gdpchi; +conspubgdpind=conspubind*gdpind; + +end; + + + +initval; + +bsadv = 0.0879639; +bschi = 0.0021782; +bseas = 0.022133; +bsind = 0.00620355; +bsjap = 0.0605122; +bslac = 0.0100509; +bsmen = 0.0134604; +bsnam = 0.0751243; +bsrus = 0.0171303; +bsssa = 0.000954535; + +buadv = 0.0494179; +buchi = 0.0021782; +bueas = 0.022133; +buind = 0.00620355; +bujap = 0.0296629; +bulac = 0.0100509; +bumen = 0.0134604; +bunam = 0.0596225; +burus = 0.0171303; +bussa = 0.000954535; + +gdpadv = 0.993448; +gdpchi = 0.0690066; +gdpeas = 0.561693; +gdpind = 0.094746; +gdpjap = 0.737872; +gdplac = 0.342757; +gdpmen = 0.343658; +gdpnam = 1.13712; +gdprus = 0.376223; +gdpssa = 0.125961; + +govadv = 0.013303; +govchi = 0.0000203725; +goveas = 0.000382988; +govind = 0.0000269601; +govjap = 0.0150679; +govlac = 0.000151691; +govmen = 0.000197734; +govnam = 0.0144935; +govrus = 0.000336704; +govssa = 0.0000546259; + +intrate = 1.49773; + +kadv = 0.365185; +kchi = 0.0253664; +keas = 0.206475; +kind = 0.034828; +kjap = 0.271237; +klac = 0.125995; +kmen = 0.126326; +knam = 0.417997; +krus = 0.138297; +kssa = 0.0463025; + +tauadv = 0.220401; +tauchi = 0.0724983; +taueas = 0.144628; +tauind = 0.130217; +taujap = 0.146443; +taulac = 0.107896; +taumen = 0.230856; +taunam = 0.237564; +taurus = 0.178388; +taussa = 0.0960451; + +weaadv = 0.573545; +weachi = 0.00873825; +weaeas = 0.256306; +weaind = 0.0138542; +weajap = 0.244631; +wealac = 0.101088; +weamen = 0.0876558; +weanam = 0.506575; +wearus = 0.134789; +weassa = 0.0199077; + +xs1adv = 0.000399832; +xs1chi = 0.00488419; +xs1eas = 0.0763439; +xs1ind = 0.00531336; +xs1jap = 0.252527; +xs1lac = 0.0597624; +xs1men = 0.0387268; +xs1nam = 0.320226; +xs1rus = 0.0467355; +xs1ssa = 0.0103293; + +xs2adv = 0.000500379; +xs2chi = 0.00611243; +xs2eas = 0.0955425; +xs2ind = 0.00664953; +xs2jap = 0.316031; +xs2lac = 0.0747912; +xs2men = 0.0484656; +xs2nam = 0.400755; +xs2rus = 0.0584883; +xs2ssa = 0.0129268; + +xs3adv = 0.000626212; +xs3chi = 0.00764956; +xs3eas = 0.119569; +xs3ind = 0.00832172; +xs3jap = 0.395505; +xs3lac = 0.0935993; +xs3men = 0.0606534; +xs3nam = 0.501535; +xs3rus = 0.0731966; +xs3ssa = 0.0161776; + +xs4adv = 0.000783688; +xs4chi = 0.00957322; +xs4eas = 0.149637; +xs4ind = 0.0104144; +xs4jap = 0.494964; +xs4lac = 0.117137; +xs4men = 0.0759062; +xs4nam = 0.627658; +xs4rus = 0.0916037; +xs4ssa = 0.0202459; + +xs5adv = 0.000980766; +xs5chi = 0.0119806; +xs5eas = 0.187268; +xs5ind = 0.0130334; +xs5jap = 0.619435; +xs5lac = 0.146594; +xs5men = 0.0949947; +xs5nam = 0.785498; +xs5rus = 0.11464; +xs5ssa = 0.0253372; + +xs6adv = 0.0012274; +xs6chi = 0.0149935; +xs6eas = 0.234361; +xs6ind = 0.0163109; +xs6jap = 0.775207; +xs6lac = 0.183459; +xs6men = 0.118884; +xs6nam = 0.983031; +xs6rus = 0.143469; +xs6ssa = 0.0317089; + +xs7adv = 0.00153606; +xs7chi = 0.018764; +xs7eas = 0.293296; +xs7ind = 0.0204127; +xs7jap = 0.970152; +xs7lac = 0.229594; +xs7men = 0.14878; +xs7nam = 1.23024; +xs7rus = 0.179547; +xs7ssa = 0.0396828; + +xs8adv = 0.00192235; +xs8chi = 0.0234826; +xs8eas = 0.367053; +xs8ind = 0.025546; +xs8jap = 1.21412; +xs8lac = 0.287331; +xs8men = 0.186194; +xs8nam = 1.53961; +xs8rus = 0.224699; +xs8ssa = 0.0496621; + +xu1adv = 0.145054; +xu1chi = 0.00286073; +xu1eas = 0.0439333; +xu1ind = 0.00301439; +xu1jap = 0.145247; +xu1lac = 0.0361301; +xu1men = 0.0223818; +xu1nam = 0.183847; +xu1rus = 0.0275213; +xu1ssa = 0.00595664; + +xu2adv = 0.181531; +xu2chi = 0.00358013; +xu2eas = 0.0549815; +xu2ind = 0.00377243; +xu2jap = 0.181773; +xu2lac = 0.0452159; +xu2men = 0.0280103; +xu2nam = 0.23008; +xu2rus = 0.0344422; +xu2ssa = 0.00745458; + +xu3adv = 0.227182; +xu3chi = 0.00448044; +xu3eas = 0.0688079; +xu3ind = 0.0047211; +xu3jap = 0.227484; +xu3lac = 0.0565865; +xu3men = 0.0350541; +xu3nam = 0.28794; +xu3rus = 0.0431035; +xu3ssa = 0.00932922; + +xu4adv = 0.284312; +xu4chi = 0.00560715; +xu4eas = 0.0861113; +xu4ind = 0.00590833; +xu4jap = 0.284691; +xu4lac = 0.0708166; +xu4men = 0.0438694; +xu4nam = 0.360349; +xu4rus = 0.0539429; +xu4ssa = 0.0116753; + +xu5adv = 0.355809; +xu5chi = 0.00701721; +xu5eas = 0.107766; +xu5ind = 0.00739413; +xu5jap = 0.356283; +xu5lac = 0.0886251; +xu5men = 0.0549014; +xu5nam = 0.450968; +xu5rus = 0.0675082; +xu5ssa = 0.0146113; + +xu6adv = 0.445286; +xu6chi = 0.00878186; +xu6eas = 0.134867; +xu6ind = 0.00925356; +xu6jap = 0.445879; +xu6lac = 0.110912; +xu6men = 0.0687077; +xu6nam = 0.564375; +xu6rus = 0.0844848; +xu6ssa = 0.0182857; + +xu7adv = 0.557265; +xu7chi = 0.0109903; +xu7eas = 0.168782; +xu7ind = 0.0115806; +xu7jap = 0.558006; +xu7lac = 0.138804; +xu7men = 0.0859859; +xu7nam = 0.706301; +xu7rus = 0.105731; +xu7ssa = 0.0228841; + +xu8adv = 0.697402; +xu8chi = 0.013754; +xu8eas = 0.211227; +xu8ind = 0.0144928; +xu8jap = 0.698331; +xu8lac = 0.173709; +xu8men = 0.107609; +xu8nam = 0.883918; +xu8rus = 0.132319; +xu8ssa = 0.0286388; + +zs2adv = -0.000769199; +zs2chi = -0.0000276826; +zs2eas = -0.000238203; +zs2ind = -0.00000847775; +zs2jap = -0.00200381; +zs2lac = -0.000211421; +zs2men = -0.0000608569; +zs2nam = -0.00531673; +zs2rus = -0.000270973; +zs2ssa = -0.0000153023; +zs3adv = 0.00127683; +zs3chi = 0.0000356709; +zs3eas = 0.00100211; +zs3ind = 0.0000219374; +zs3jap = 0.00106761; +zs3lac = 0.000252602; +zs3men = 0.000121134; +zs3nam = 0.00648828; +zs3rus = 0.000848925; +zs3ssa = 0.0000224589; +zs4adv = 0.00265069; +zs4chi = 0.0000759496; +zs4eas = 0.00200234; +zs4ind = 0.0000451285; +zs4jap = 0.00259837; +zs4lac = 0.000530455; +zs4men = 0.000248052; +zs4nam = 0.013711; +zs4rus = 0.00169616; +zs4ssa = 0.0000465965; +zs5adv = 0.00343248; +zs5chi = 0.0000940641; +zs5eas = 0.00273632; +zs5ind = 0.0000585869; +zs5jap = 0.00314945; +zs5lac = 0.000665846; +zs5men = 0.000317401; +zs5nam = 0.0177472; +zs5rus = 0.00229048; +zs5ssa = 0.0000576693; +zs6adv = 0.0029937; +zs6chi = 0.0000647072; +zs6eas = 0.00223273; +zs6ind = 0.0000431499; +zs6jap = 0.00240093; +zs6lac = 0.000476397; +zs6men = 0.000230167; +zs6nam = 0.0150142; +zs6rus = 0.00185827; +zs6ssa = 0.0000389781; +zs7adv = 0.00129282; +zs7chi = 0.0000214387; +zs7eas = 0.000956671; +zs7ind = 0.0000147898; +zs7jap = 0.000835275; +zs7lac = 0.0001775; +zs7men = 0.0000788313; +zs7nam = 0.00636224; +zs7rus = 0.000833786; +zs7ssa = 0.0000120502; +zs8adv = 0.000243118; +zs8chi = 0.00000256661; +zs8eas = 0.000167295; +zs8ind = 0.00000189823; +zs8jap = 0.000127513; +zs8lac = 0.000027157; +zs8men = 0.00000861939; +zs8nam = 0.00141281; +zs8rus = 0.000174784; +zs8ssa = 0.00000125136; + +zu2adv = 0.065095; +zu2chi = 0.00113188; +zu2eas = 0.0242198; +zu2ind = 0.00148454; +zu2jap = 0.0260368; +zu2lac = 0.0133506; +zu2men = 0.0100839; +zu2nam = 0.0420942; +zu2rus = 0.0136097; +zu2ssa = 0.00247341; +zu3adv = 0.104583; +zu3chi = 0.00180724; +zu3eas = 0.0422828; +zu3ind = 0.00260809; +zu3jap = 0.0495755; +zu3lac = 0.0204486; +zu3men = 0.016935; +zu3nam = 0.082379; +zu3rus = 0.0227462; +zu3ssa = 0.00407417; +zu4adv = 0.12704; +zu4chi = 0.00205922; +zu4eas = 0.0547875; +zu4ind = 0.00324124; +zu4jap = 0.0577143; +zu4lac = 0.0230174; +zu4men = 0.0203709; +zu4nam = 0.103604; +zu4rus = 0.0285324; +zu4ssa = 0.00472059; +zu5adv = 0.131196; +zu5chi = 0.00196138; +zu5eas = 0.0603009; +zu5ind = 0.0033146; +zu5jap = 0.0553282; +zu5lac = 0.0222218; +zu5men = 0.0206023; +zu5nam = 0.107669; +zu5rus = 0.0304534; +zu5ssa = 0.00465565; +zu6adv = 0.0962605; +zu6chi = 0.00124973; +zu6eas = 0.0459305; +zu6ind = 0.00226309; +zu6jap = 0.034952; +zu6lac = 0.0146768; +zu6men = 0.0138615; +zu6nam = 0.0764772; +zu6rus = 0.022965; +zu6ssa = 0.00293021; +zu7adv = 0.0416822; +zu7chi = 0.000417616; +zu7eas = 0.0199463; +zu7ind = 0.000795451; +zu7jap = 0.0122058; +zu7lac = 0.00550799; +zu7men = 0.00481262; +zu7nam = 0.0329505; +zu7rus = 0.0104473; +zu7ssa = 0.000909698; +zu8adv = 0.00780175; +zu8chi = 0.0000503712; +zu8eas = 0.00352983; +zu8ind = 0.000104291; +zu8jap = 0.00185819; +zu8lac = 0.00084801; +zu8men = 0.000532558; +zu8nam = 0.00738873; +zu8rus = 0.00221635; +zu8ssa = 0.0000948063; + +// -------------------------------- open ------------------------------- // + +ggnam=1.2; + +// -------------------------- advanced countries -------------------- // + +p2adv= 0.737909705 ; +p3adv= 0.583190133 ; +p4adv= 0.503607555 ; +p5adv= 0.378770303 ; +p6adv= 0.246313345 ; +p7adv= 0.106602647 ; +p8adv= 0.018188066 ; + +edusadv=0.6; +eduuadv=0.2; + +lams1adv=1; +lams2adv=1; +lams3adv=1; +lams4adv=1; +lams5adv=0.7; +lams6adv=0; +lams7adv=0; +lams8adv=0; + +lamu1adv=1; +lamu2adv=1; +lamu3adv=1; +lamu4adv=1; +lamu5adv=0.5; +lamu6adv=0; +lamu7adv=0; +lamu8adv=0; + +// -------------------------------- nam ------------------------------- // + +p2nam= 0.636432622 ; +p3nam= 0.461119686 ; +p4nam= 0.390384311 ; +p5nam= 0.283128152 ; +p6nam= 0.170478555 ; +p7nam= 0.07064341 ; +p8nam= 0.014933077 ; + +edusnam=0.6; +eduunam=0.2; + +lams1nam=1; +lams2nam=1; +lams3nam=1; +lams4nam=1; +lams5nam=0.7; +lams6nam=0; +lams7nam=0; +lams8nam=0; + +lamu1nam=1; +lamu2nam=1; +lamu3nam=1; +lamu4nam=1; +lamu5nam=0.5; +lamu6nam=0; +lamu7nam=0; +lamu8nam=0; + +// -------------------------------- ssa ------------------------------- // + +p2ssa= 0.902353166 ; +p3ssa= 0.738544114 ; +p4ssa= 0.498549334 ; +p5ssa= 0.338863948 ; +p6ssa= 0.18145258 ; +p7ssa= 0.05461183 ; +p8ssa= 0.00494107 ; + +edusssa=0.6; +eduussa=0; + +lams1ssa=1; +lams2ssa=1; +lams3ssa=1; +lams4ssa=1; +lams5ssa=0.5; +lams6ssa=0; +lams7ssa=0; +lams8ssa=0; + +lamu1ssa=1; +lamu2ssa=1; +lamu3ssa=1; +lamu4ssa=1; +lamu5ssa=0.5; +lamu6ssa=0; +lamu7ssa=0; +lamu8ssa=0; + +// ------------------------------- lac ------------------------------- // + +p2lac= 0.750142354 ; +p3lac= 0.556601439 ; +p4lac= 0.395251537 ; +p5lac= 0.262137139 ; +p6lac= 0.147394629 ; +p7lac= 0.054555101 ; +p8lac= 0.007563576 ; + +eduslac=0.6; +eduulac=0; + +lams1lac=1; +lams2lac=1; +lams3lac=1; +lams4lac=1; +lams5lac=0.5; +lams6lac=0; +lams7lac=0; +lams8lac=0; + +lamu1lac=1; +lamu2lac=1; +lamu3lac=1; +lamu4lac=1; +lamu5lac=0.5; +lamu6lac=0; +lamu7lac=0; +lamu8lac=0; + +// ------------------------------- japan ------------------------------ // + +p2jap= 0.6281131 ; +p3jap= 0.415373856 ; +p4jap= 0.289803583 ; +p5jap= 0.180504043 ; +p6jap= 0.093402302 ; +p7jap= 0.031027247 ; +p8jap= 0.004218908 ; + +edusjap=0.6; +eduujap=0.2; + +lams1jap=1; +lams2jap=1; +lams3jap=1; +lams4jap=1; +lams5jap=0.7; +lams6jap=0; +lams7jap=0; +lams8jap=0; + +lamu1jap=1; +lamu2jap=1; +lamu3jap=1; +lamu4jap=1; +lamu5jap=0.5; +lamu6jap=0; +lamu7jap=0; +lamu8jap=0; + +// ---------------------------- rusland ------------------------------- // + +p2rus= 0.779655487 ; +p3rus= 0.651536269 ; +p4rus= 0.587062227 ; +p5rus= 0.457712116 ; +p6rus= 0.304849621 ; +p7rus= 0.139703701 ; +p8rus= 0.027761084 ; + +edusrus=0.6; +eduurus=0; + +lams1rus=1; +lams2rus=1; +lams3rus=1; +lams4rus=1; +lams5rus=0.5; +lams6rus=0; +lams7rus=0; +lams8rus=0; + +lamu1rus=1; +lamu2rus=1; +lamu3rus=1; +lamu4rus=1; +lamu5rus=0.5; +lamu6rus=0; +lamu7rus=0; +lamu8rus=0; + +// ------------------------------ mena -------------------------------- // + +p2men= 0.883787741 ; +p3men= 0.745430149 ; +p4men= 0.568707292 ; +p5men= 0.419926284 ; +p6men= 0.248344451 ; +p7men= 0.084274197 ; +p8men= 0.007979153 ; + +edusmen=0.6; +eduumen=0; + +lams1men=1; +lams2men=1; +lams3men=1; +lams4men=1; +lams5men=0.5; +lams6men=0; +lams7men=0; +lams8men=0; + +lamu1men=1; +lamu2men=1; +lamu3men=1; +lamu4men=1; +lamu5men=0.5; +lamu6men=0; +lamu7men=0; +lamu8men=0; + +// ---------------------------- eastern europe ------------------------- // + +p2eas= 0.847752891 ; +p3eas= 0.747812449 ; +p4eas= 0.685932238 ; +p5eas= 0.562651715 ; +p6eas= 0.385404591 ; +p7eas= 0.17026944 ; +p8eas= 0.027344764 ; + +eduseas=0.6; +eduueas=0; + +lams1eas=1; +lams2eas=1; +lams3eas=1; +lams4eas=1; +lams5eas=0.5; +lams6eas=0; +lams7eas=0; +lams8eas=0; + +lamu1eas=1; +lamu2eas=1; +lamu3eas=1; +lamu4eas=1; +lamu5eas=0.5; +lamu6eas=0; +lamu7eas=0; +lamu8eas=0; + +// ------------------------------ china ------------------------------- // + +p2chi= 0.836132961 ; +p3chi= 0.683547181 ; +p4chi= 0.491653627 ; +p5chi= 0.308911372 ; +p6chi= 0.16753083 ; +p7chi= 0.054191479 ; +p8chi= 0.005700256 ; + +eduschi=0.6; +eduuchi=0; + +lams1chi=1; +lams2chi=1; +lams3chi=1; +lams4chi=1; +lams5chi=0.5; +lams6chi=0; +lams7chi=0; +lams8chi=0; + +lamu1chi=1; +lamu2chi=1; +lamu3chi=1; +lamu4chi=1; +lamu5chi=0.5; +lamu6chi=0; +lamu7chi=0; +lamu8chi=0; + +// ------------------------------ india ------------------------------- // + +p2ind= 0.959325838 ; +p3ind= 0.877249138 ; +p4ind= 0.714826409 ; +p5ind= 0.555043112 ; +p6ind= 0.335815557 ; +p7ind= 0.110766231 ; +p8ind= 0.012399205 ; + +edusind=0.6; +eduuind=0; + +lams1ind=1; +lams2ind=1; +lams3ind=1; +lams4ind=1; +lams5ind=0.5; +lams6ind=0; +lams7ind=0; +lams8ind=0; + +lamu1ind=1; +lamu2ind=1; +lamu3ind=1; +lamu4ind=1; +lamu5ind=0.5; +lamu6ind=0; +lamu7ind=0; +lamu8ind=0; + +//------------------- initval for conspublique ------------------------// + +conspubnam= 0.170280977 ; +conspubadv= 0.142865046 ; +conspubeas= 0.104169516 ; +conspubmen= 0.167804208 ; +conspublac= 0.101727665 ; +conspubjap= 0.108820692 ; +conspubssa= 0.100729755 ; +conspubrus= 0.126599505 ; +conspubchi= 0.077531613 ; +conspubind= 0.080276755 ; + +//----------------------- initval for debtratio -----------------------// + +ddynam= 0.042809925 ; +ddyadv= 0.044976211 ; +ddyeas= 0.002290146 ; +ddymen= 0.001932557 ; +ddylac= 0.001486455 ; +ddyjap= 0.068588 ; +ddyssa= 0.001456596 ; +ddyrus= 0.003005931 ; +ddychi= 0.00099159 ; +ddyind= 0.000955737 ; + +// --------------------- initval for consumption tax ------------------// + +tcnam= 0.111111111 ; +tcadv= 0.111111111 ; +tceas= 0.061111111 ; +tcmen= 0.061111111 ; +tclac= 0.061111111 ; +tcjap= 0.111111111 ; +tcssa= 0.061111111 ; +tcrus= 0.061111111 ; +tcchi= 0.061111111 ; +tcind= 0.061111111 ; + +//-------------------- initval for country risk rating ----------------// + +rankeas= 3.4 ; +rankmen= 3.952380952 ; +ranklac= 5.185185185 ; +rankssa= 6.404761905 ; +rankrus= 6.166666667 ; +rankchi= 3.181818182 ; +rankind= 4.888888889 ; + +//-------------------- initval for risk premium pi ---------------------// + +pimax=0.5; + +pissa=rankssa/7*pimax; +pilac=ranklac/7*pimax; +pimen=rankmen/7*pimax; +pieas=rankeas/7*pimax; +pirus=rankrus/7*pimax; +pichi=rankchi/7*pimax; +piind=rankind/7*pimax; + +//-------------------- initval for replacementratio -------------------// + +repnam= 0.2075 ; +repadv= 0.2125 ; +repeas= 0.2125 ; +repmen= 0.2 ; +replac= 0.125 ; +repjap= 0.1375 ; +repssa= 0.0375 ; +reprus= 0.225 ; +repchi= 0.15 ; +repind= 0.375 ; + +//------------------- initval for skilled proportion -------------------// + +phinam= 0.093717733 ; +phiadv= 0.016504496 ; +phieas= 0.015494457 ; +phimen= 0.004347393 ; +philac= 0.009983981 ; +phijap= 0.03315712 ; +phissa= 0.002270809 ; +phirus= 0.02242942 ; +phichi= 0.006617984 ; +phiind= 0.002329718 ; + +// ------------------------- initval for nn -----------------------// + +nnadvnam= 2.737660895 ; +nneasnam= 0.776607208 ; +nnmennam= 0.643436259 ; +nnlacnam= 0.628185755 ; +nnjapnam= 0.316280356 ; +nnssanam= 1.078307209 ; +nnrusnam= 1.263917419 ; +nnchinam= 4.749303854 ; +nnindnam= 4.054790781 ; + +//-------------------------- initval for mm --------------------------// + +mmnam=1; +mmadv=1; +mmeas=1; +mmmen=1; +mmlac=1; +mmjap=1; +mmssa=1; +mmrus=1; +mmchi=1; +mmind=1; + +//----------------------- initval for ratiogdp ------------------------// + +ratiogdpadv=0.739851327; +ratiogdpeas=0.337751537; +ratiogdpmen=0.231113615; +ratiogdplac=0.287509372; +ratiogdpjap=0.743360884; +ratiogdpssa=0.090156639; +ratiogdprus=0.253666004; +ratiogdpchi=0.051781166; +ratiogdpind=0.055246393; + +//-------------------------- initval for psi --------------------------// + +psinam= 0.25 ; +psiadv= 0.25 ; +psieas= 0.25 ; +psimen= 0.25 ; +psilac= 0.25 ; +psijap= 0.25 ; +psissa= 0.25 ; +psirus= 0.25 ; +psichi= 0.25 ; +psiind= 0.25 ; + +//-------------------------- initval for tfp --------------------------// + +tfpadv= 0.5486741 ; +tfpchi= 0.038072393 ; +tfpeas= 0.29634405 ; +tfpind= 0.044222983 ; +tfpjap= 0.57740563 ; +tfplac= 0.23485451 ; +tfpmen= 0.17735133 ; +tfprus= 0.25550939 ; +tfpssa= 0.072830822 ; + + +// -------------------------- non-walras ----------------------------- // + +// ------------ initval --------- labs and labu ---------------------- // + +labsadv = 0.0410937; +labschi = 0.0169804; +labseas = 0.0459073; +labsind = 0.00752248; +labsjap = 0.0616604; +labslac = 0.0222949; +labsmen = 0.012207; +labsnam = 0.195507; +labsrus = 0.0593731; +labsssa = 0.00615135; + +labuadv = 2.76765; +labuchi = 3.14484; +labueas = 3.50762; +labuind = 3.82; +labujap = 2.14982; +labulac = 2.80478; +labumen = 3.39307; +labunam = 2.20181; +laburus = 3.17428; +labussa = 3.30136; + +//------------------ initval for wags and wagu ----------------------// + +wagsadv = 0.216341; +wagschi = 0.0184062; +wagseas = 0.122834; +wagsind = 0.02097; +wagsjap = 0.257108; +wagslac = 0.0990729; +wagsmen = 0.0788896; +wagsnam = 0.359164; +wagsrus = 0.0975531; +wagsssa = 0.0350297; + +waguadv = 0.198091; +waguchi = 0.0121864; +wagueas = 0.0881035; +waguind = 0.0138838; +wagujap = 0.184412; +wagulac = 0.0676766; +wagumen = 0.0565839; +wagunam = 0.257612; +wagurus = 0.064588; +wagussa = 0.0215359; + +//-------------------- endval for aa ------------------------// + +aaadv= 0.051225074 ; +aachi= 0.034984234 ; +aaeas= 0.059252538 ; +aaind= 0.017332098 ; +aajap= 0.099350937 ; +aalac= 0.044266179 ; +aamen= 0.024427738 ; +aanam= 0.19824889 ; +aarus= 0.080930529 ; +aassa= 0.01793136 ; + + +//-------------------- endval for eta ------------------------// + +etaadv= 0.028799459 ; +etachi= 0.003354951 ; +etaeas= 0.005201302 ; +etaind= 0.006033906 ; +etajap= 0.001886245 ; +etalac= 0.00439495 ; +etamen= 0.007953791 ; +etanam= 0.00734676 ; +etarus= 0.004312647 ; +etassa= 0.011768173 ; + + +// ---------- initval ------------ wagddu -------------------------------// + +wagdduadv=etaadv*wagsadv+(1-etaadv)*waguadv; +wagddunam=etanam*wagsnam+(1-etanam)*wagunam; +wagddussa=etassa*wagsssa+(1-etassa)*wagussa; +wagddulac=etalac*wagslac+(1-etalac)*wagulac; +wagddujap=etajap*wagsjap+(1-etajap)*wagujap; +wagddueas=etaeas*wagseas+(1-etaeas)*wagueas; +wagddumen=etamen*wagsmen+(1-etamen)*wagumen; +wagddurus=etarus*wagsrus+(1-etarus)*wagurus; +wagdduchi=etachi*wagschi+(1-etachi)*waguchi; +wagdduind=etaind*wagsind+(1-etaind)*waguind; + +labdduadv = 2.74665; +labdduchi = 3.12882; +labddueas = 3.48653; +labdduind = 3.78506; +labddujap = 2.1452; +labddulac = 2.78787; +labddumen = 3.36162; +labddunam = 2.18494; +labddurus = 3.154; +labddussa = 3.23047; + +wagddsadv=aaadv*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labsadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^((1-alpha-sigma)/sigma); +wagddsnam=aanam*(1-alpha)*knam^alpha*labsnam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^((1-alpha-sigma)/sigma); +wagddsssa=aassa*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labsssa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^((1-alpha-sigma)/sigma); +wagddslac=aalac*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labslac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^((1-alpha-sigma)/sigma); +wagddsjap=aajap*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labsjap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^((1-alpha-sigma)/sigma); +wagddseas=aaeas*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labseas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^((1-alpha-sigma)/sigma); +wagddsmen=aamen*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labsmen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^((1-alpha-sigma)/sigma); +wagddsrus=aarus*(1-alpha)*krus^alpha*tfprus^(1-alpha)*labsrus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^((1-alpha-sigma)/sigma); +wagddschi=aachi*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labschi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^((1-alpha-sigma)/sigma); +wagddsind=aaind*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labsind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^((1-alpha-sigma)/sigma); + +// ------------- initval ------- unemeployement ----------------------- // + +uradv=(labuadv-labdduadv)/labuadv; +urnam=(labunam-labddunam)/labunam; +urssa=(labussa-labddussa)/labussa; +urlac=(labulac-labddulac)/labulac; +urjap=(labujap-labddujap)/labujap; +ureas=(labueas-labddueas)/labueas; +urmen=(labumen-labddumen)/labumen; +urrus=(laburus-labddurus)/laburus; +urchi=(labuchi-labdduchi)/labuchi; +urind=(labuind-labdduind)/labuind; + +// -------------------------------- h ------------------------------- // + +hadv=wagsadv/waguadv; +hnam=wagsnam/wagunam; +hssa=wagsssa/wagussa; +hlac=wagslac/wagulac; +hjap=wagsjap/wagujap; +heas=wagseas/wagueas; +hmen=wagsmen/wagumen; +hrus=wagsrus/wagurus; +hchi=wagschi/waguchi; +hind=wagsind/waguind; + +// ------------------------- labddu & wagddu ------------------------- // + +thetaadv=wagddsadv/wagdduadv; +thetanam=wagddsnam/wagddunam; +thetassa=wagddsssa/wagddussa; +thetalac=wagddslac/wagddulac; +thetajap=wagddsjap/wagddujap; +thetaeas=wagddseas/wagddueas; +thetamen=wagddsmen/wagddumen; +thetarus=wagddsrus/wagddurus; +thetachi=wagddschi/wagdduchi; +thetaind=wagddsind/wagdduind; + +// -------------------------------- ces ------------------------------- // + +labadv=(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^(1/sigma); +labnam=(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^(1/sigma); +labssa=(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^(1/sigma); +lablac=(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^(1/sigma); +labjap=(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^(1/sigma); +labeas=(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^(1/sigma); +labmen=(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^(1/sigma); +labrus=(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^(1/sigma); +labchi=(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^(1/sigma); +labind=(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^(1/sigma); + +// ---------- end --------- non-walras -------------------------------// + +// ---------- fin --------- non-walras -------------------------------// + +//-------------------- new variables ------ bengdp ---------------------// + +bengdpadv = 0.0281291; +bengdpchi = 0.012054; +bengdpeas = 0.0340587; +bengdpind = 0.048223; +bengdpjap = 0.00900521; +bengdplac = 0.0099871; +bengdpmen = 0.0215644; +bengdpnam = 0.0210058; +bengdprus = 0.0319259; +bengdpssa = 0.0031103; + +// ------------------ init ------ sup -------------------------------- // + +supadv = 8.63229; +supchi = 14.5995; +supeas = 6.59353; +supind = 8.94687; +supjap = 19.54; +suplac = 14.1477; +supmen = 10.6221; +supnam = 10.8221; +suprus = 7.35943; +supssa = 14.4325; + +// ------------------ init ------ trgdp ------------------------------- // + + +trgdpadv = 0.0334561; +trgdpchi = 0.0020779; +trgdpeas = 0.00246767; +trgdpind = 0.00235646; +trgdpjap = 0.0299275; +trgdplac = 0.00204177; +trgdpmen = 0.00222994; +trgdpnam = 0.0199405; +trgdprus = 0.00234201; +trgdpssa = 0.00211111; + +// --------- initval ---------- rapport lab-lab sans h --------------- // + +lablabsshadv = 0.953313; +lablabsshchi = 0.982495; +lablabssheas = 0.958614; +lablabsshind = 0.993544; +lablabsshjap = 0.913683; +lablabsshlac = 0.974443; +lablabsshmen = 0.988267; +lablabsshnam = 0.776518; +lablabsshrus = 0.941908; +lablabsshssa = 0.993889; + +// --------- initval ---------- tx de pr้l่vement --------------- // + +taxesgdpadv=(tauadv*(wagddsadv*labsadv+wagdduadv*labdduadv) ++tcadv*(phiadv*xs1adv ++xs2adv*phiadv*p2adv/mmadv ++xs3adv*phiadv*p3adv/(mmadv^2) ++xs4adv*phiadv*p4adv/(mmadv^3) ++xs5adv*phiadv*p5adv/(mmadv^4) ++xs6adv*phiadv*p6adv/(mmadv^5) ++xs7adv*phiadv*p7adv/(mmadv^6) ++xs8adv*phiadv*p8adv/(mmadv^7)) ++tcadv*((1-phiadv)*xu1adv ++xu2adv*(1-phiadv)*p2adv/mmadv ++xu3adv*(1-phiadv)*p3adv/(mmadv^2) ++xu4adv*(1-phiadv)*p4adv/(mmadv^3) ++xu5adv*(1-phiadv)*p5adv/(mmadv^4) ++xu6adv*(1-phiadv)*p6adv/(mmadv^5) ++xu7adv*(1-phiadv)*p7adv/(mmadv^6) ++xu8adv*(1-phiadv)*p8adv/(mmadv^7)))/gdpadv; + +taxesgdplac=(taulac*(wagddslac*labslac+wagddulac*labddulac) ++tclac*(philac*xs1lac ++xs2lac*philac*p2lac/mmlac ++xs3lac*philac*p3lac/(mmlac^2) ++xs4lac*philac*p4lac/(mmlac^3) ++xs5lac*philac*p5lac/(mmlac^4) ++xs6lac*philac*p6lac/(mmlac^5) ++xs7lac*philac*p7lac/(mmlac^6) ++xs8lac*philac*p8lac/(mmlac^7)) ++tclac*((1-philac)*xu1lac ++xu2lac*(1-philac)*p2lac/mmlac ++xu3lac*(1-philac)*p3lac/(mmlac^2) ++xu4lac*(1-philac)*p4lac/(mmlac^3) ++xu5lac*(1-philac)*p5lac/(mmlac^4) ++xu6lac*(1-philac)*p6lac/(mmlac^5) ++xu7lac*(1-philac)*p7lac/(mmlac^6) ++xu8lac*(1-philac)*p8lac/(mmlac^7)))/gdplac; + +taxesgdpjap=(taujap*(wagddsjap*labsjap+wagddujap*labddujap) ++tcjap*(phijap*xs1jap ++xs2jap*phijap*p2jap/mmjap ++xs3jap*phijap*p3jap/(mmjap^2) ++xs4jap*phijap*p4jap/(mmjap^3) ++xs5jap*phijap*p5jap/(mmjap^4) ++xs6jap*phijap*p6jap/(mmjap^5) ++xs7jap*phijap*p7jap/(mmjap^6) ++xs8jap*phijap*p8jap/(mmjap^7)) ++tcjap*((1-phijap)*xu1jap ++xu2jap*(1-phijap)*p2jap/mmjap ++xu3jap*(1-phijap)*p3jap/(mmjap^2) ++xu4jap*(1-phijap)*p4jap/(mmjap^3) ++xu5jap*(1-phijap)*p5jap/(mmjap^4) ++xu6jap*(1-phijap)*p6jap/(mmjap^5) ++xu7jap*(1-phijap)*p7jap/(mmjap^6) ++xu8jap*(1-phijap)*p8jap/(mmjap^7)))/gdpjap; + +taxesgdpeas=(taueas*(wagddseas*labseas+wagddueas*labddueas) ++tceas*(phieas*xs1eas ++xs2eas*phieas*p2eas/mmeas ++xs3eas*phieas*p3eas/(mmeas^2) ++xs4eas*phieas*p4eas/(mmeas^3) ++xs5eas*phieas*p5eas/(mmeas^4) ++xs6eas*phieas*p6eas/(mmeas^5) ++xs7eas*phieas*p7eas/(mmeas^6) ++xs8eas*phieas*p8eas/(mmeas^7)) ++tceas*((1-phieas)*xu1eas ++xu2eas*(1-phieas)*p2eas/mmeas ++xu3eas*(1-phieas)*p3eas/(mmeas^2) ++xu4eas*(1-phieas)*p4eas/(mmeas^3) ++xu5eas*(1-phieas)*p5eas/(mmeas^4) ++xu6eas*(1-phieas)*p6eas/(mmeas^5) ++xu7eas*(1-phieas)*p7eas/(mmeas^6) ++xu8eas*(1-phieas)*p8eas/(mmeas^7)))/gdpeas; + +taxesgdpnam=(taunam*(wagddsnam*labsnam+wagddunam*labddunam) ++tcnam*(phinam*xs1nam ++xs2nam*phinam*p2nam/mmnam ++xs3nam*phinam*p3nam/(mmnam^2) ++xs4nam*phinam*p4nam/(mmnam^3) ++xs5nam*phinam*p5nam/(mmnam^4) ++xs6nam*phinam*p6nam/(mmnam^5) ++xs7nam*phinam*p7nam/(mmnam^6) ++xs8nam*phinam*p8nam/(mmnam^7)) ++tcnam*((1-phinam)*xu1nam ++xu2nam*(1-phinam)*p2nam/mmnam ++xu3nam*(1-phinam)*p3nam/(mmnam^2) ++xu4nam*(1-phinam)*p4nam/(mmnam^3) ++xu5nam*(1-phinam)*p5nam/(mmnam^4) ++xu6nam*(1-phinam)*p6nam/(mmnam^5) ++xu7nam*(1-phinam)*p7nam/(mmnam^6) ++xu8nam*(1-phinam)*p8nam/(mmnam^7)))/gdpnam; + +taxesgdpmen=(taumen*(wagddsmen*labsmen+wagddumen*labddumen) ++tcmen*(phimen*xs1men ++xs2men*phimen*p2men/mmmen ++xs3men*phimen*p3men/(mmmen^2) ++xs4men*phimen*p4men/(mmmen^3) ++xs5men*phimen*p5men/(mmmen^4) ++xs6men*phimen*p6men/(mmmen^5) ++xs7men*phimen*p7men/(mmmen^6) ++xs8men*phimen*p8men/(mmmen^7)) ++tcmen*((1-phimen)*xu1men ++xu2men*(1-phimen)*p2men/mmmen ++xu3men*(1-phimen)*p3men/(mmmen^2) ++xu4men*(1-phimen)*p4men/(mmmen^3) ++xu5men*(1-phimen)*p5men/(mmmen^4) ++xu6men*(1-phimen)*p6men/(mmmen^5) ++xu7men*(1-phimen)*p7men/(mmmen^6) ++xu8men*(1-phimen)*p8men/(mmmen^7)))/gdpmen; + +taxesgdpchi=(tauchi*(wagddschi*labschi+wagdduchi*labdduchi) ++tcchi*(phichi*xs1chi ++xs2chi*phichi*p2chi/mmchi ++xs3chi*phichi*p3chi/(mmchi^2) ++xs4chi*phichi*p4chi/(mmchi^3) ++xs5chi*phichi*p5chi/(mmchi^4) ++xs6chi*phichi*p6chi/(mmchi^5) ++xs7chi*phichi*p7chi/(mmchi^6) ++xs8chi*phichi*p8chi/(mmchi^7)) ++tcchi*((1-phichi)*xu1chi ++xu2chi*(1-phichi)*p2chi/mmchi ++xu3chi*(1-phichi)*p3chi/(mmchi^2) ++xu4chi*(1-phichi)*p4chi/(mmchi^3) ++xu5chi*(1-phichi)*p5chi/(mmchi^4) ++xu6chi*(1-phichi)*p6chi/(mmchi^5) ++xu7chi*(1-phichi)*p7chi/(mmchi^6) ++xu8chi*(1-phichi)*p8chi/(mmchi^7)))/gdpchi; + +taxesgdpind=(tauind*(wagddsind*labsind+wagdduind*labdduind) ++tcind*(phiind*xs1ind ++xs2ind*phiind*p2ind/mmind ++xs3ind*phiind*p3ind/(mmind^2) ++xs4ind*phiind*p4ind/(mmind^3) ++xs5ind*phiind*p5ind/(mmind^4) ++xs6ind*phiind*p6ind/(mmind^5) ++xs7ind*phiind*p7ind/(mmind^6) ++xs8ind*phiind*p8ind/(mmind^7)) ++tcind*((1-phiind)*xu1ind ++xu2ind*(1-phiind)*p2ind/mmind ++xu3ind*(1-phiind)*p3ind/(mmind^2) ++xu4ind*(1-phiind)*p4ind/(mmind^3) ++xu5ind*(1-phiind)*p5ind/(mmind^4) ++xu6ind*(1-phiind)*p6ind/(mmind^5) ++xu7ind*(1-phiind)*p7ind/(mmind^6) ++xu8ind*(1-phiind)*p8ind/(mmind^7)))/gdpind; + +taxesgdprus=(taurus*(wagddsrus*labsrus+wagddurus*labddurus) ++tcrus*(phirus*xs1rus ++xs2rus*phirus*p2rus/mmrus ++xs3rus*phirus*p3rus/(mmrus^2) ++xs4rus*phirus*p4rus/(mmrus^3) ++xs5rus*phirus*p5rus/(mmrus^4) ++xs6rus*phirus*p6rus/(mmrus^5) ++xs7rus*phirus*p7rus/(mmrus^6) ++xs8rus*phirus*p8rus/(mmrus^7)) ++tcrus*((1-phirus)*xu1rus ++xu2rus*(1-phirus)*p2rus/mmrus ++xu3rus*(1-phirus)*p3rus/(mmrus^2) ++xu4rus*(1-phirus)*p4rus/(mmrus^3) ++xu5rus*(1-phirus)*p5rus/(mmrus^4) ++xu6rus*(1-phirus)*p6rus/(mmrus^5) ++xu7rus*(1-phirus)*p7rus/(mmrus^6) ++xu8rus*(1-phirus)*p8rus/(mmrus^7)))/gdprus; + +taxesgdpssa=(taussa*(wagddsssa*labsssa+wagddussa*labddussa) ++tcssa*(phissa*xs1ssa ++xs2ssa*phissa*p2ssa/mmssa ++xs3ssa*phissa*p3ssa/(mmssa^2) ++xs4ssa*phissa*p4ssa/(mmssa^3) ++xs5ssa*phissa*p5ssa/(mmssa^4) ++xs6ssa*phissa*p6ssa/(mmssa^5) ++xs7ssa*phissa*p7ssa/(mmssa^6) ++xs8ssa*phissa*p8ssa/(mmssa^7)) ++tcssa*((1-phissa)*xu1ssa ++xu2ssa*(1-phissa)*p2ssa/mmssa ++xu3ssa*(1-phissa)*p3ssa/(mmssa^2) ++xu4ssa*(1-phissa)*p4ssa/(mmssa^3) ++xu5ssa*(1-phissa)*p5ssa/(mmssa^4) ++xu6ssa*(1-phissa)*p6ssa/(mmssa^5) ++xu7ssa*(1-phissa)*p7ssa/(mmssa^6) ++xu8ssa*(1-phissa)*p8ssa/(mmssa^7)))/gdpssa; + +// --------- init ----------- growth gdp ------------------------------// + +growthadv=(gdpadv/gdpadv-1); +growthnam=(gdpnam/gdpnam-1); +growthjap=(gdpjap/gdpjap-1); +growthssa=(gdpssa/gdpssa-1); +growthlac=(gdplac/gdplac-1); +growthmen=(gdpmen/gdpmen-1); +growthrus=(gdprus/gdprus-1); +growtheas=(gdpeas/gdpeas-1); +growthchi=(gdpchi/gdpchi-1); +growthind=(gdpind/gdpind-1); + +// -------- init ---------- ownership ratio ---------------------------// + +ownadv=weaadv/kadv; +ownnam=weanam/knam; +ownjap=weajap/kjap; +ownssa=weassa/kssa; +ownlac=wealac/klac; +ownmen=weamen/kmen; +ownrus=wearus/krus; +owneas=weaeas/keas; +ownchi=weachi/kchi; +ownind=weaind/kind; + +ownsum=ownadv+ownnam+ownjap+ownssa+ownlac+ownmen+ownrus+owneas+ownchi+ownind; + +// -------- init ---------- foreign assets fa ------------------------- // + +faadv=weaadv-kadv; +fanam=weanam-knam; +fajap=weajap-kjap; +falac=wealac-klac; +faeas=weaeas-keas; +famen=weamen-kmen; +farus=wearus-krus; +fachi=weachi-kchi; +faind=weaind-kind; +fassa=weassa-kssa; + +fasum=faadv+fanam+fajap+falac+faeas+famen+farus+fachi+faind+fassa; + +// --------- init --------- courrent account ca ----------------------- // + +caadv=faadv-faadv/(ggnam*mmadv); +canam=fanam-fanam/(ggnam*mmnam); +cajap=fajap-fajap/(ggnam*mmjap); +calac=falac-falac/(ggnam*mmlac); +caeas=faeas-faeas/(ggnam*mmeas); +camen=famen-famen/(ggnam*mmmen); +carus=farus-farus/(ggnam*mmrus); +cachi=fachi-fachi/(ggnam*mmchi); +caind=faind-faind/(ggnam*mmind); +cassa=fassa-fassa/(ggnam*mmssa); + +casum=caadv+canam+cajap+calac+caeas+camen+carus+cachi+caind+cassa; + +// ------------------------- dette int้rieure ---------------------------// + +zzdebtadv=ddyadv*gdpadv; +zzdebtnam=ddynam*gdpnam; +zzdebtjap=ddyjap*gdpjap; +zzdebtlac=ddylac*gdplac; +zzdebteas=ddyeas*gdpeas; +zzdebtmen=ddymen*gdpmen; +zzdebtrus=ddyrus*gdprus; +zzdebtchi=ddychi*gdpchi; +zzdebtind=ddyind*gdpind; +zzdebtssa=ddyssa*gdpssa; + +zzdebtsum=zzdebtadv+zzdebtnam+zzdebtjap+zzdebtlac+zzdebteas+zzdebtmen+zzdebtrus+zzdebtchi+zzdebtind+zzdebtssa; + +// ------------------------- zzownership ratio ---------------------------// + +zzown2adv=weaadv/(kadv+zzdebtadv); +zzown2nam=weanam/(knam+zzdebtnam); +zzown2jap=weajap/(kjap+zzdebtjap); +zzown2ssa=weassa/(kssa+zzdebtssa); +zzown2lac=wealac/(klac+zzdebtlac); +zzown2men=weamen/(kmen+zzdebtmen); +zzown2rus=wearus/(krus+zzdebtrus); +zzown2eas=weaeas/(keas+zzdebteas); +zzown2chi=weachi/(kchi+zzdebtchi); +zzown2ind=weaind/(kind+zzdebtind); + +zzown2sum=zzown2adv+zzown2nam+zzown2jap+zzown2ssa+zzown2lac+zzown2men+zzown2rus+zzown2eas+zzown2chi+zzown2ind; + +// ----------------------- foreign assets zzfa2 ------------------------- // + +zzfa2adv=weaadv-kadv-zzdebtadv; +zzfa2nam=weanam-knam-zzdebtnam; +zzfa2jap=weajap-kjap-zzdebtjap; +zzfa2lac=wealac-klac-zzdebtlac; +zzfa2eas=weaeas-keas-zzdebteas; +zzfa2men=weamen-kmen-zzdebtmen; +zzfa2rus=wearus-krus-zzdebtrus; +zzfa2chi=weachi-kchi-zzdebtchi; +zzfa2ind=weaind-kind-zzdebtind; +zzfa2ssa=weassa-kssa-zzdebtssa; + +zzfa2sum=zzfa2adv+zzfa2nam+zzfa2jap+zzfa2lac+zzfa2eas+zzfa2men+zzfa2rus+zzfa2chi+zzfa2ind+zzfa2ssa; + +// ----------------------- courrent account zzca2 ----------------------- // + +zzca2adv=zzfa2adv-zzfa2adv/(ggnam*mmadv); +zzca2nam=zzfa2nam-zzfa2nam/(ggnam*mmnam); +zzca2jap=zzfa2jap-zzfa2jap/(ggnam*mmjap); +zzca2lac=zzfa2lac-zzfa2lac/(ggnam*mmlac); +zzca2eas=zzfa2eas-zzfa2eas/(ggnam*mmeas); +zzca2men=zzfa2men-zzfa2men/(ggnam*mmmen); +zzca2rus=zzfa2rus-zzfa2rus/(ggnam*mmrus); +zzca2chi=zzfa2chi-zzfa2chi/(ggnam*mmchi); +zzca2ind=zzfa2ind-zzfa2ind/(ggnam*mmind); +zzca2ssa=zzfa2ssa-zzfa2ssa/(ggnam*mmssa); + +zzca2sum=zzca2adv+zzca2nam+zzca2jap+zzca2lac+zzca2eas+zzca2men+zzca2rus+zzca2chi+zzca2ind+zzca2ssa; + +// -------------------- new courrent account --------------------------- // + +zzvardebtadv=zzdebtadv-zzdebtadv; +zzvardebtnam=zzdebtnam-zzdebtnam; +zzvardebtjap=zzdebtjap-zzdebtjap; +zzvardebtlac=zzdebtlac-zzdebtlac; +zzvardebteas=zzdebteas-zzdebteas; +zzvardebtmen=zzdebtmen-zzdebtmen; +zzvardebtrus=zzdebtrus-zzdebtrus; +zzvardebtind=zzdebtind-zzdebtind; +zzvardebtchi=zzdebtchi-zzdebtchi; +zzvardebtssa=zzdebtssa-zzdebtssa; + +zzvarkadv=kadv-kadv; +zzvarknam=knam-knam; +zzvarkjap=kjap-kjap; +zzvarklac=klac-klac; +zzvarkeas=keas-keas; +zzvarkmen=kmen-kmen; +zzvarkrus=krus-krus; +zzvarkind=kind-kind; +zzvarkchi=kchi-kchi; +zzvarkssa=kssa-kssa; + +zzvarweaadv=weaadv-weaadv; +zzvarweanam=weanam-weanam; +zzvarweajap=weajap-weajap; +zzvarwealac=wealac-wealac; +zzvarweaeas=weaeas-weaeas; +zzvarweamen=weamen-weamen; +zzvarwearus=wearus-wearus; +zzvarweaind=weaind-weaind; +zzvarweachi=weachi-weachi; +zzvarweassa=weassa-weassa; + +zzznewcaadv=zzvarkadv+zzvardebtadv-zzvarweaadv; +zzznewcanam=zzvarknam+zzvardebtnam-zzvarweanam; +zzznewcajap=zzvarkjap+zzvardebtjap-zzvarweajap; +zzznewcalac=zzvarklac+zzvardebtlac-zzvarwealac; +zzznewcaeas=zzvarkeas+zzvardebteas-zzvarweaeas; +zzznewcamen=zzvarkmen+zzvardebtmen-zzvarweamen; +zzznewcarus=zzvarkrus+zzvardebtrus-zzvarwearus; +zzznewcaind=zzvarkind+zzvardebtind-zzvarweaind; +zzznewcachi=zzvarkchi+zzvardebtchi-zzvarweachi; +zzznewcassa=zzvarkssa+zzvardebtssa-zzvarweassa; + +zzznewcasum=zzznewcaadv+zzznewcanam+zzznewcajap+zzznewcalac+zzznewcaeas+zzznewcamen+zzznewcarus+zzznewcachi+zzznewcaind+zzznewcassa; + +// -------------------------- conspubgdp -------------------------------// + +conspubgdpadv=conspubadv*gdpadv; +conspubgdpnam=conspubnam*gdpnam; +conspubgdpjap=conspubjap*gdpjap; +conspubgdpssa=conspubssa*gdpssa; +conspubgdplac=conspublac*gdplac; +conspubgdpmen=conspubmen*gdpmen; +conspubgdprus=conspubrus*gdprus; +conspubgdpeas=conspubeas*gdpeas; +conspubgdpchi=conspubchi*gdpchi; +conspubgdpind=conspubind*gdpind; + +end; + +steady(solve_algo=3); +//check; + + + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + +// ------------------------------ endval ------------------------------// + + + + +endval; + +// ------------endo var---------------// + + +bsadv = 0.348342; +bschi = 0.00816161; +bseas = 0.0386837; +bsind = 0.00877731; +bsjap = 0.258279; +bslac = 0.0132808; +bsmen = 0.0145322; +bsnam = 0.218346; +bsrus = 0.0156579; +bsssa = 0.00051421; +buadv = 0.165483; +buchi = 0.00816161; +bueas = 0.0386837; +buind = 0.00877731; +bujap = 0.112295; +bulac = 0.0132808; +bumen = 0.0145322; +bunam = 0.173291; +burus = 0.0156579; +bussa = 0.00051421; + +gdpadv = 3.34309; +gdpchi = 0.192905; +gdpeas = 0.70728; +gdpind = 0.0827861; +gdpjap = 3.65576; +gdplac = 0.389729; +gdpmen = 0.271159; +gdpnam = 4.37187; +gdprus = 0.271172; +gdpssa = 0.043046; + +govadv = 0.057936; +govchi = 0.0000926278; +goveas = 0.000646183; +govind = 0.0000548723; +govjap = 0.128242; +govlac = 0.000418856; +govmen = 0.000305629; +govnam = 0.0698228; +govrus = 0.000213442; +govssa = 0.0000362923; + +intrate = 1.46185; + +kadv = 1.28006; +kchi = 0.0738627; +keas = 0.270815; +kind = 0.0316985; +kjap = 1.39978; +klac = 0.149226; +kmen = 0.103826; +knam = 1.67397; +krus = 0.103831; +kssa = 0.0164821; + +tauadv = 0.570843; +tauchi = 0.268101; +taueas = 0.366485; +tauind = 0.403354; +taujap = 0.466199; +taulac = 0.284974; +taumen = 0.34579; +taunam = 0.36596; +taurus = 0.336702; +taussa = 0.204874; + +weaadv = 0.909112; +weachi = 0.117435; +weaeas = 0.320515; +weaind = 0.0249183; +weajap = 1.66902; +wealac = 0.243415; +weamen = 0.128726; +weanam = 2.07816; +wearus = 0.111155; +weassa = 0.0230922; + +xs1adv = 0.188576; +xs1chi = 0.0189034; +xs1eas = 0.0565248; +xs1ind = 0.00741483; +xs1jap = 0.219451; +xs1lac = 0.0356519; +xs1men = 0.0232345; +xs1nam = 0.245332; +xs1rus = 0.0238094; +xs1ssa = 0.00573089; +xs2adv = 0.229726; +xs2chi = 0.0230283; +xs2eas = 0.0688591; +xs2ind = 0.00903283; +xs2jap = 0.267337; +xs2lac = 0.0434315; +xs2men = 0.0283045; +xs2nam = 0.298866; +xs2rus = 0.0290049; +xs2ssa = 0.00698143; +xs3adv = 0.279854; +xs3chi = 0.0280533; +xs3eas = 0.0838849; +xs3ind = 0.0110039; +xs3jap = 0.325673; +xs3lac = 0.0529087; +xs3men = 0.0344808; +xs3nam = 0.364082; +xs3rus = 0.035334; +xs3ssa = 0.00850485; +xs4adv = 0.340921; +xs4chi = 0.0341749; +xs4eas = 0.102189; +xs4ind = 0.013405; +xs4jap = 0.396738; +xs4lac = 0.0644539; +xs4men = 0.0420048; +xs4nam = 0.443528; +xs4rus = 0.0430442; +xs4ssa = 0.0103607; +xs5adv = 0.415314; +xs5chi = 0.0416321; +xs5eas = 0.124488; +xs5ind = 0.0163301; +xs5jap = 0.48331; +xs5lac = 0.0785184; +xs5men = 0.0511707; +xs5nam = 0.54031; +xs5rus = 0.0524369; +xs5ssa = 0.0126215; +xs6adv = 0.505939; +xs6chi = 0.0507167; +xs6eas = 0.151653; +xs6ind = 0.0198935; +xs6jap = 0.588774; +xs6lac = 0.0956519; +xs6men = 0.0623366; +xs6nam = 0.658211; +xs6rus = 0.0638792; +xs6ssa = 0.0153756; +xs7adv = 0.61634; +xs7chi = 0.0617836; +xs7eas = 0.184745; +xs7ind = 0.0242345; +xs7jap = 0.71725; +xs7lac = 0.116524; +xs7men = 0.0759391; +xs7nam = 0.80184; +xs7rus = 0.0778182; +xs7ssa = 0.0187308; +xs8adv = 0.750832; +xs8chi = 0.0752654; +xs8eas = 0.225058; +xs8ind = 0.0295227; +xs8jap = 0.873761; +xs8lac = 0.141951; +xs8men = 0.0925098; +xs8nam = 0.976809; +xs8rus = 0.094799; +xs8ssa = 0.022818; + +xu1adv = 0.0977925; +xu1chi = 0.0106559; +xu1eas = 0.0325568; +xu1ind = 0.00443707; +xu1jap = 0.111348; +xu1lac = 0.0200241; +xu1men = 0.0133057; +xu1nam = 0.136053; +xu1rus = 0.0136576; +xu1ssa = 0.00316713; +xu2adv = 0.119132; +xu2chi = 0.0129811; +xu2eas = 0.039661; +xu2ind = 0.00540528; +xu2jap = 0.135645; +xu2lac = 0.0243935; +xu2men = 0.0162091; +xu2nam = 0.165741; +xu2rus = 0.0166378; +xu2ssa = 0.00385823; +xu3adv = 0.145128; +xu3chi = 0.0158137; +xu3eas = 0.0483155; +xu3ind = 0.00658476; +xu3jap = 0.165245; +xu3lac = 0.0297164; +xu3men = 0.0197461; +xu3nam = 0.201907; +xu3rus = 0.0202683; +xu3ssa = 0.00470013; +xu4adv = 0.176796; +xu4chi = 0.0192644; +xu4eas = 0.0588584; +xu4ind = 0.00802162; +xu4jap = 0.201303; +xu4lac = 0.0362008; +xu4men = 0.0240549; +xu4nam = 0.245965; +xu4rus = 0.0246911; +xu4ssa = 0.00572575; +xu5adv = 0.215374; +xu5chi = 0.0234681; +xu5eas = 0.0717018; +xu5ind = 0.00977202; +xu5jap = 0.245229; +xu5lac = 0.0441002; +xu5men = 0.0293039; +xu5nam = 0.299637; +xu5rus = 0.0300789; +xu5ssa = 0.00697516; +xu6adv = 0.262371; +xu6chi = 0.028589; +xu6eas = 0.0873479; +xu6ind = 0.0119044; +xu6jap = 0.29874; +xu6lac = 0.0537233; +xu6men = 0.0356983; +xu6nam = 0.365021; +xu6rus = 0.0366424; +xu6ssa = 0.00849721; +xu7adv = 0.319623; +xu7chi = 0.0348274; +xu7eas = 0.106408; +xu7ind = 0.014502; +xu7jap = 0.363928; +xu7lac = 0.0654463; +xu7men = 0.043488; +xu7nam = 0.444672; +xu7rus = 0.0446382; +xu7ssa = 0.0103514; +xu8adv = 0.389368; +xu8chi = 0.0424271; +xu8eas = 0.129627; +xu8ind = 0.0176665; +xu8jap = 0.443341; +xu8lac = 0.0797273; +xu8men = 0.0529775; +xu8nam = 0.541704; +xu8rus = 0.0543787; +xu8ssa = 0.0126102; + +zs2adv = -0.00932546; +zs2chi = -0.000118167; +zs2eas = -0.000993383; +zs2ind = -0.000109752; +zs2jap = -0.00683773; +zs2lac = -0.000284554; +zs2men = -0.000298793; +zs2nam = -0.00970037; +zs2rus = -0.000755272; +zs2ssa = -0.0000403761; +zs3adv = 0.0270161; +zs3chi = 0.0016419; +zs3eas = 0.0087632; +zs3ind = 0.000410655; +zs3jap = 0.0585838; +zs3lac = 0.00482788; +zs3men = 0.00272908; +zs3nam = 0.11799; +zs3rus = 0.00375978; +zs3ssa = 0.000166243; +zs4adv = 0.0581496; +zs4chi = 0.00331119; +zs4eas = 0.0178318; +zs4ind = 0.000863409; +zs4jap = 0.119815; +zs4lac = 0.0097086; +zs4men = 0.00554865; +zs4nam = 0.238217; +zs4rus = 0.00779536; +zs4ssa = 0.000347761; +zs5adv = 0.0808529; +zs5chi = 0.00482829; +zs5eas = 0.0258694; +zs5ind = 0.00121377; +zs5jap = 0.174414; +zs5lac = 0.0141308; +zs5men = 0.00806328; +zs5nam = 0.349621; +zs5rus = 0.0109728; +zs5ssa = 0.000478034; +zs6adv = 0.0877184; +zs6chi = 0.0046579; +zs6eas = 0.0248172; +zs6ind = 0.00114184; +zs6jap = 0.194938; +zs6lac = 0.0138119; +zs6men = 0.00768292; +zs6nam = 0.384453; +zs6rus = 0.0100367; +zs6ssa = 0.000406518; +zs7adv = 0.0676125; +zs7chi = 0.00280069; +zs7eas = 0.0147763; +zs7ind = 0.000677689; +zs7jap = 0.145891; +zs7lac = 0.00880478; +zs7men = 0.00443579; +zs7nam = 0.256298; +zs7rus = 0.00570608; +zs7ssa = 0.000196048; +zs8adv = 0.0321169; +zs8chi = 0.000973923; +zs8eas = 0.00500638; +zs8ind = 0.000219513; +zs8jap = 0.0732824; +zs8lac = 0.00344264; +zs8men = 0.00136606; +zs8nam = 0.103887; +zs8rus = 0.00182655; +zs8ssa = 0.0000477022; + +zu2adv = 0.0276745; +zu2chi = 0.00697915; +zu2eas = 0.0168485; +zu2ind = 0.00192522; +zu2jap = 0.0407056; +zu2lac = 0.0127909; +zu2men = 0.00745783; +zu2nam = 0.0312747; +zu2rus = 0.0059286; +zu2ssa = 0.00181839; +zu3adv = 0.0663281; +zu3chi = 0.0132624; +zu3eas = 0.0313889; +zu3ind = 0.00336202; +zu3jap = 0.097917; +zu3lac = 0.0244314; +zu3men = 0.013941; +zu3nam = 0.0747455; +zu3rus = 0.0108041; +zu3ssa = 0.00334136; +zu4adv = 0.0983058; +zu4chi = 0.0186499; +zu4eas = 0.0430135; +zu4ind = 0.00419973; +zu4jap = 0.151047; +zu4lac = 0.0345763; +zu4men = 0.0191905; +zu4nam = 0.112646; +zu4rus = 0.0143709; +zu4ssa = 0.00449726; +zu5adv = 0.118732; +zu5chi = 0.0226366; +zu5eas = 0.0501596; +zu5ind = 0.00415828; +zu5jap = 0.196773; +zu5lac = 0.042352; +zu5men = 0.0225353; +zu5nam = 0.141869; +zu5rus = 0.0160961; +zu5ssa = 0.00517425; +zu6adv = 0.119711; +zu6chi = 0.0206435; +zu6eas = 0.0451531; +zu6ind = 0.00357049; +zu6jap = 0.199297; +zu6lac = 0.0392683; +zu6men = 0.0201576; +zu6nam = 0.13906; +zu6rus = 0.0137628; +zu6ssa = 0.00415519; +zu7adv = 0.0917906; +zu7chi = 0.0126792; +zu7eas = 0.0280445; +zu7ind = 0.00242234; +zu7jap = 0.149251; +zu7lac = 0.0254583; +zu7men = 0.0120783; +zu7nam = 0.0971875; +zu7rus = 0.00815216; +zu7ssa = 0.0020125; +zu8adv = 0.0424288; +zu8chi = 0.00448912; +zu8eas = 0.00983556; +zu8ind = 0.000863094; +zu8jap = 0.0739413; +zu8lac = 0.0100958; +zu8men = 0.003838; +zu8nam = 0.0406161; +zu8rus = 0.00269801; +zu8ssa = 0.000491313; + +// -------------------------------- open ------------------------------- // + +ggnam=1.2; + +// -------------------------- advanced countries -------------------- // + +p2adv= 0.986289852 ; +p3adv= 0.955148399 ; +p4adv= 1 ; +p5adv= 1 ; +p6adv= 0.976430451 ; +p7adv= 0.75710297 ; +p8adv= 0.379784022 ; + +edusadv=0.6; +eduuadv=0.2; + +lams1adv=1; +lams2adv=1; +lams3adv=1; +lams4adv=1; +lams5adv=0.8; +lams6adv=0; +lams7adv=0; +lams8adv=0; + +lamu1adv=1; +lamu2adv=1; +lamu3adv=1; +lamu4adv=1; +lamu5adv=0.6; +lamu6adv=0; +lamu7adv=0; +lamu8adv=0; + +// -------------------------------- nam ------------------------------- // + +p2nam= 0.986289852 ; +p3nam= 0.955148399 ; +p4nam= 1 ; +p5nam= 1 ; +p6nam= 0.98579086 ; +p7nam= 0.742740395 ; +p8nam= 0.344004851 ; + +edusnam=0.6; +eduunam=0.2; + +lams1nam=1; +lams2nam=1; +lams3nam=1; +lams4nam=1; +lams5nam=0.8; +lams6nam=0; +lams7nam=0; +lams8nam=0; + +lamu1nam=1; +lamu2nam=1; +lamu3nam=1; +lamu4nam=1; +lamu5nam=0.6; +lamu6nam=0; +lamu7nam=0; +lamu8nam=0; + +// -------------------------------- ssa ------------------------------- // + +p2ssa= 0.986289852 ; +p3ssa= 0.955148399 ; +p4ssa= 0.759653392 ; +p5ssa= 0.634364253 ; +p6ssa= 0.463109632 ; +p7ssa= 0.241577047 ; +p8ssa= 0.059963112 ; + +edusssa=0.6; +eduussa=0; + +lams1ssa=1; +lams2ssa=1; +lams3ssa=1; +lams4ssa=1; +lams5ssa=0.5; +lams6ssa=0; +lams7ssa=0; +lams8ssa=0; + +lamu1ssa=1; +lamu2ssa=1; +lamu3ssa=1; +lamu4ssa=1; +lamu5ssa=0.5; +lamu6ssa=0; +lamu7ssa=0; +lamu8ssa=0; + +// ------------------------------- lac ------------------------------- // + +p2lac= 0.986289852 ; +p3lac= 0.955148399 ; +p4lac= 0.918592142 ; +p5lac= 0.860181373 ; +p6lac= 0.743582371 ; +p7lac= 0.539856069 ; +p8lac= 0.24944583 ; + +eduslac=0.6; +eduulac=0; + +lams1lac=1; +lams2lac=1; +lams3lac=1; +lams4lac=1; +lams5lac=0.5; +lams6lac=0; +lams7lac=0; +lams8lac=0; + +lamu1lac=1; +lamu2lac=1; +lamu3lac=1; +lamu4lac=1; +lamu5lac=0.5; +lamu6lac=0; +lamu7lac=0; +lamu8lac=0; + +// ------------------------------- japan ------------------------------ // + +p2jap= 0.986289852 ; +p3jap= 0.955148399 ; +p4jap= 1 ; +p5jap= 0.99240326 ; +p6jap= 0.926086957 ; +p7jap= 0.773898233 ; +p8jap= 0.483304477 ; + +edusjap=0.6; +eduujap=0.2; + +lams1jap=1; +lams2jap=1; +lams3jap=1; +lams4jap=1; +lams5jap=0.8; +lams6jap=0; +lams7jap=0; +lams8jap=0; + +lamu1jap=1; +lamu2jap=1; +lamu3jap=1; +lamu4jap=1; +lamu5jap=0.6; +lamu6jap=0; +lamu7jap=0; +lamu8jap=0; + +// ---------------------------- rusland ------------------------------- // + +p2rus= 0.986289852 ; +p3rus= 0.955148399 ; +p4rus= 0.870982898 ; +p5rus= 0.784798781 ; +p6rus= 0.615551778 ; +p7rus= 0.376706946 ; +p8rus= 0.128615306 ; + +edusrus=0.6; +eduurus=0; + +lams1rus=1; +lams2rus=1; +lams3rus=1; +lams4rus=1; +lams5rus=0.5; +lams6rus=0; +lams7rus=0; +lams8rus=0; + +lamu1rus=1; +lamu2rus=1; +lamu3rus=1; +lamu4rus=1; +lamu5rus=0.5; +lamu6rus=0; +lamu7rus=0; +lamu8rus=0; + +// ------------------------------ mena -------------------------------- // + +p2men= 0.986289852 ; +p3men= 0.955148399 ; +p4men= 0.965180767 ; +p5men= 0.909809812 ; +p6men= 0.782296592 ; +p7men= 0.501229312 ; +p8men= 0.162832053 ; + +edusmen=0.6; +eduumen=0; + +lams1men=1; +lams2men=1; +lams3men=1; +lams4men=1; +lams5men=0.5; +lams6men=0; +lams7men=0; +lams8men=0; + +lamu1men=1; +lamu2men=1; +lamu3men=1; +lamu4men=1; +lamu5men=0.5; +lamu6men=0; +lamu7men=0; +lamu8men=0; + +// ---------------------------- eastern europe ------------------------- // + +p2eas= 0.986289852 ; +p3eas= 0.955148399 ; +p4eas= 0.959572785 ; +p5eas= 0.90729252 ; +p6eas= 0.778366337 ; +p7eas= 0.508173052 ; +p8eas= 0.187129118 ; + +eduseas=0.6; +eduueas=0; + +lams1eas=1; +lams2eas=1; +lams3eas=1; +lams4eas=1; +lams5eas=0.5; +lams6eas=0; +lams7eas=0; +lams8eas=0; + +lamu1eas=1; +lamu2eas=1; +lamu3eas=1; +lamu4eas=1; +lamu5eas=0.5; +lamu6eas=0; +lamu7eas=0; +lamu8eas=0; + +// ------------------------------ china ------------------------------- // + +p2chi= 0.986289852 ; +p3chi= 0.955148399 ; +p4chi= 0.943012567 ; +p5chi= 0.891094232 ; +p6chi= 0.772421699 ; +p7chi= 0.521311169 ; +p8chi= 0.202793499 ; + +eduschi=0.6; +eduuchi=0; + +lams1chi=1; +lams2chi=1; +lams3chi=1; +lams4chi=1; +lams5chi=0.5; +lams6chi=0; +lams7chi=0; +lams8chi=0; + +lamu1chi=1; +lamu2chi=1; +lamu3chi=1; +lamu4chi=1; +lamu5chi=0.5; +lamu6chi=0; +lamu7chi=0; +lamu8chi=0; + +// ------------------------------ india ------------------------------- // + +p2ind= 0.986289852 ; +p3ind= 0.955148399 ; +p4ind= 0.941906608 ; +p5ind= 0.873350269 ; +p6ind= 0.717620394 ; +p7ind= 0.442768491 ; +p8ind= 0.146184372 ; + +edusind=0.6; +eduuind=0; + +lams1ind=1; +lams2ind=1; +lams3ind=1; +lams4ind=1; +lams5ind=0.5; +lams6ind=0; +lams7ind=0; +lams8ind=0; + +lamu1ind=1; +lamu2ind=1; +lamu3ind=1; +lamu4ind=1; +lamu5ind=0.5; +lamu6ind=0; +lamu7ind=0; +lamu8ind=0; + +//------------------- endval for conspublique ------------------------// + +conspubnam= 0.149242875 ; +conspubadv= 0.171279136 ; +conspubeas= 0.164212094 ; +conspubmen= 0.154196071 ; +conspublac= 0.150334205 ; +conspubjap= 0.164831366 ; +conspubssa= 0.150356571 ; +conspubrus= 0.162501299 ; +conspubchi= 0.125176012 ; +conspubind= 0.110200901 ; + +//------------------------- endval for debtratio -----------------------// + +ddynam= 0.060992156 ; +ddyadv= 0.066182791 ; +ddyeas= 0.003489057 ; +ddymen= 0.004304415 ; +ddylac= 0.004104364 ; +ddyjap= 0.13396642 ; +ddyssa= 0.003219776 ; +ddyrus= 0.003005931 ; +ddychi= 0.001833757 ; +ddyind= 0.002531276 ; + +//------------------- endval for replacement ratio --------------------// + +repnam= 0.36 ; +repadv= 0.37 ; +repeas= 0.425 ; +repmen= 0.4 ; +replac= 0.25 ; +repjap= 0.22 ; +repssa= 0.075 ; +reprus= 0.45 ; +repchi= 0.3 ; +repind= 0.75 ; + +// ------------------------- endval for nn -----------------------// + +nnadvnam= 0.573599005 ; +nneasnam= 0.110787211 ; +nnmennam= 1.128846267 ; +nnlacnam= 1.091592768 ; +nnjapnam= 0.121486769 ; +nnssanam= 3.212828821 ; +nnrusnam= 0.285373715 ; +nnchinam= 2.348366248 ; +nnindnam= 4.049241021 ; + +//-------------------- endval for skilled proportion -------------------// + +phinam= 0.55 ; +phiadv= 0.3 ; +phieas= 0.2 ; +phimen= 0.15 ; +philac= 0.15 ; +phijap= 0.35 ; +phissa= 0.05 ; +phirus= 0.25 ; +phichi= 0.1 ; +phiind= 0.1 ; + +//-------------------------- endval for nn --------------------------// + +mmnam= 1 ; +mmadv= 1 ; +mmeas= 1 ; +mmmen= 1 ; +mmlac= 1 ; +mmjap= 1 ; +mmssa= 1 ; +mmrus= 1 ; +mmchi= 1 ; +mmind= 1 ; + +// --------------------- endval for consumption tax ------------------// + +tcnam= 0.2 ; +tcadv= 0.2 ; +tceas= 0.11 ; +tcmen= 0.11 ; +tclac= 0.11 ; +tcjap= 0.2 ; +tcssa= 0.11 ; +tcrus= 0.11 ; +tcchi= 0.11 ; +tcind= 0.11 ; + +//-------------------- endval for country risk rating ----------------// + +rankeas= 3.4 ; +rankmen= 3.952380952 ; +ranklac= 5.185185185 ; +rankssa= 6.404761905 ; +rankrus= 6.166666667 ; +rankchi= 3.181818182 ; +rankind= 4.888888889 ; + +pimax=0.5; + +//-------------------- endval for risk premium pi ---------------------// + +pissa=rankssa/7*pimax; +pilac=ranklac/7*pimax; +pimen=rankmen/7*pimax; +pieas=rankeas/7*pimax; +pirus=rankrus/7*pimax; +pichi=rankchi/7*pimax; +piind=rankind/7*pimax; + +//----------------------- endval for ratiogdp ------------------------// + +ratiogdpadv= 0.741069062 ; +ratiogdpeas= 0.275195235 ; +ratiogdpmen= 0.166749549 ; +ratiogdplac= 0.21486832 ; +ratiogdpjap= 0.77302212 ; +ratiogdpssa= 0.051913099 ; +ratiogdprus= 0.157734113 ; +ratiogdpchi= 0.128682334 ; +ratiogdpind= 0.074176055 ; + +//-------------------------- endval for psi --------------------------// + +psinam= 1 ; +psiadv= 1 ; +psieas= 1 ; +psimen= 1 ; +psilac= 1 ; +psijap= 1 ; +psissa= 1 ; +psirus= 1 ; +psichi= 1 ; +psiind= 1 ; + +//-------------------------- endval for tfp --------------------------// + +tfpadv= 0.86190594 ; +tfpchi= 0.12008983 ; +tfpeas= 0.37457905 ; +tfpind= 0.074057072 ; +tfpjap= 0.96311579 ; +tfplac= 0.26885901 ; +tfpmen= 0.1884702 ; +tfprus= 0.24294775 ; +tfpssa= 0.05747975 ; + + +// -------------------------- non-walras ---------------------------- // + +// ------------ endval --------- labs and labu ---------------------- // + +labsadv= 1.212431476 ; +labsnam= 2.222791039 ; +labseas= 0.750931459 ; +labsmen= 0.564228589 ; +labslac= 0.553518162 ; +labsjap= 1.412642187 ; +labsssa= 0.170913689 ; +labsrus= 0.901205135 ; +labschi= 0.372999794 ; +labsind= 0.372001999 ; + +labuadv= 2.969006776 ; +labunam= 1.908647213 ; +labueas= 3.483725837 ; +labumen= 3.707295336 ; +labulac= 3.646602919 ; +labujap= 2.754465923 ; +labussa= 3.817360082 ; +laburus= 3.153615405 ; +labuchi= 3.896998142 ; +labuind= 3.888017995 ; + +// ---------------------- wagu and wags ------------------------- // + +wagsadv = 0.28896; +wagschi = 0.0669124; +wagseas = 0.129274; +wagsind = 0.0380894; +wagsjap = 0.318184; +wagslac = 0.107604; +wagsmen = 0.083527; +wagsnam = 0.328897; +wagsrus = 0.064897; +wagsssa = 0.0285806; + +waguadv = 0.122962; +waguchi = 0.0223041; +wagueas = 0.0430914; +waguind = 0.0126965; +wagujap = 0.106061; +wagulac = 0.035868; +wagumen = 0.0278423; +wagunam = 0.109632; +wagurus = 0.0216323; +wagussa = 0.00952686; + +//-------------------- endval for eta ------------------------// + +etaadv= 0.02798426 ; +etachi= 0.004929291 ; +etaeas= 0.026936141 ; +etaind= 0.011677204 ; +etajap= 0.010524406 ; +etalac= 0.016353353 ; +etamen= 0.025747531 ; +etanam= 0.010414856 ; +etarus= 0.017247165 ; +etassa= 0.036543636 ; + + +//-------------------- endval for aa ------------------------// + +aaadv= 0.55367118 ; +aachi= 0.3781675 ; +aaeas= 0.50062749 ; +aaind= 0.37810508 ; +aajap= 0.65077675 ; +aalac= 0.45036167 ; +aamen= 0.43878344 ; +aanam= 0.7699911 ; +aarus= 0.57051699 ; +aassa= 0.27569454 ; + + +// ---------- initval ------------ wagddu -------------------------------// + +wagdduadv=etaadv*wagsadv+(1-etaadv)*waguadv; +wagddunam=etanam*wagsnam+(1-etanam)*wagunam; +wagddussa=etassa*wagsssa+(1-etassa)*wagussa; +wagddulac=etalac*wagslac+(1-etalac)*wagulac; +wagddujap=etajap*wagsjap+(1-etajap)*wagujap; +wagddueas=etaeas*wagseas+(1-etaeas)*wagueas; +wagddumen=etamen*wagsmen+(1-etamen)*wagumen; +wagddurus=etarus*wagsrus+(1-etarus)*wagurus; +wagdduchi=etachi*wagschi+(1-etachi)*waguchi; +wagdduind=etaind*wagsind+(1-etaind)*waguind; + +labdduadv = 2.83422; +labdduchi = 3.79741; +labddueas = 3.13659; +labdduind = 3.66172; +labddujap = 2.71749; +labddulac = 3.38703; +labddumen = 3.33222; +labddunam = 1.89092; +labddurus = 2.93369; +labddussa = 3.10161; + +wagddsadv=aaadv*(1-alpha)*kadv^alpha*tfpadv^(1-alpha)*labsadv^(sigma-1) +*(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^((1-alpha-sigma)/sigma); +wagddsnam=aanam*(1-alpha)*knam^alpha*labsnam^(sigma-1) +*(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^((1-alpha-sigma)/sigma); +wagddsssa=aassa*(1-alpha)*kssa^alpha*tfpssa^(1-alpha)*labsssa^(sigma-1) +*(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^((1-alpha-sigma)/sigma); +wagddslac=aalac*(1-alpha)*klac^alpha*tfplac^(1-alpha)*labslac^(sigma-1) +*(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^((1-alpha-sigma)/sigma); +wagddsjap=aajap*(1-alpha)*kjap^alpha*tfpjap^(1-alpha)*labsjap^(sigma-1) +*(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^((1-alpha-sigma)/sigma); +wagddseas=aaeas*(1-alpha)*keas^alpha*tfpeas^(1-alpha)*labseas^(sigma-1) +*(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^((1-alpha-sigma)/sigma); +wagddsmen=aamen*(1-alpha)*kmen^alpha*tfpmen^(1-alpha)*labsmen^(sigma-1) +*(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^((1-alpha-sigma)/sigma); +wagddsrus=aarus*(1-alpha)*krus^alpha*tfprus^(1-alpha)*labsrus^(sigma-1) +*(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^((1-alpha-sigma)/sigma); +wagddschi=aachi*(1-alpha)*kchi^alpha*tfpchi^(1-alpha)*labschi^(sigma-1) +*(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^((1-alpha-sigma)/sigma); +wagddsind=aaind*(1-alpha)*kind^alpha*tfpind^(1-alpha)*labsind^(sigma-1) +*(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^((1-alpha-sigma)/sigma); + +// ------------- initval ------- unemeployement ----------------------- // + +uradv=(labuadv-labdduadv)/labuadv; +urnam=(labunam-labddunam)/labunam; +urssa=(labussa-labddussa)/labussa; +urlac=(labulac-labddulac)/labulac; +urjap=(labujap-labddujap)/labujap; +ureas=(labueas-labddueas)/labueas; +urmen=(labumen-labddumen)/labumen; +urrus=(laburus-labddurus)/laburus; +urchi=(labuchi-labdduchi)/labuchi; +urind=(labuind-labdduind)/labuind; + +// -------------------------------- h ------------------------------- // + +hadv=wagsadv/waguadv; +hnam=wagsnam/wagunam; +hssa=wagsssa/wagussa; +hlac=wagslac/wagulac; +hjap=wagsjap/wagujap; +heas=wagseas/wagueas; +hmen=wagsmen/wagumen; +hrus=wagsrus/wagurus; +hchi=wagschi/waguchi; +hind=wagsind/waguind; + +// ------------------------- labddu & wagddu ------------------------- // + +thetaadv=wagddsadv/wagdduadv; +thetanam=wagddsnam/wagddunam; +thetassa=wagddsssa/wagddussa; +thetalac=wagddslac/wagddulac; +thetajap=wagddsjap/wagddujap; +thetaeas=wagddseas/wagddueas; +thetamen=wagddsmen/wagddumen; +thetarus=wagddsrus/wagddurus; +thetachi=wagddschi/wagdduchi; +thetaind=wagddsind/wagdduind; + +// -------------------------------- ces ------------------------------- // + +labadv=(aaadv*labsadv^sigma+(1-aaadv)*labdduadv^sigma)^(1/sigma); +labnam=(aanam*labsnam^sigma+(1-aanam)*labddunam^sigma)^(1/sigma); +labssa=(aassa*labsssa^sigma+(1-aassa)*labddussa^sigma)^(1/sigma); +lablac=(aalac*labslac^sigma+(1-aalac)*labddulac^sigma)^(1/sigma); +labjap=(aajap*labsjap^sigma+(1-aajap)*labddujap^sigma)^(1/sigma); +labeas=(aaeas*labseas^sigma+(1-aaeas)*labddueas^sigma)^(1/sigma); +labmen=(aamen*labsmen^sigma+(1-aamen)*labddumen^sigma)^(1/sigma); +labrus=(aarus*labsrus^sigma+(1-aarus)*labddurus^sigma)^(1/sigma); +labchi=(aachi*labschi^sigma+(1-aachi)*labdduchi^sigma)^(1/sigma); +labind=(aaind*labsind^sigma+(1-aaind)*labdduind^sigma)^(1/sigma); + +// ---------- end --------- non-walras -------------------------------// + +//------------ fin ------------ non-walras ----------------------------// + +//--------- new variables -------------------- bengdp ------------// + +bengdpadv=(bsadv*((1-lams1adv)*phiadv*(1-edusadv) ++(1-lams2adv)*phiadv*p2adv/mmadv ++(1-lams3adv)*phiadv*p3adv/(mmadv*mmadv) ++(1-lams4adv)*phiadv*p4adv/(mmadv*mmadv*mmadv) ++(1-lams5adv)*phiadv*p5adv/(mmadv*mmadv*mmadv*mmadv) ++(1-lams6adv)*phiadv*p6adv/(mmadv*mmadv*mmadv*mmadv*mmadv) ++(1-lams7adv)*phiadv*p7adv/(mmadv*mmadv*mmadv*mmadv*mmadv*mmadv) ++(1-lams8adv)*phiadv*p8adv/(mmadv*mmadv*mmadv*mmadv*mmadv*mmadv*mmadv)) ++buadv*((1-lamu1adv)*(1-phiadv)*(1-eduuadv) ++(1-lamu2adv)*(1-phiadv)*p2adv/mmadv ++(1-lamu3adv)*(1-phiadv)*p3adv/(mmadv*mmadv) ++(1-lamu4adv)*(1-phiadv)*p4adv/(mmadv*mmadv*mmadv) ++(1-lamu5adv)*(1-phiadv)*p5adv/(mmadv*mmadv*mmadv*mmadv) ++(1-lamu6adv)*(1-phiadv)*p6adv/(mmadv*mmadv*mmadv*mmadv*mmadv) ++(1-lamu7adv)*(1-phiadv)*p7adv/(mmadv*mmadv*mmadv*mmadv*mmadv*mmadv) ++(1-lamu8adv)*(1-phiadv)*p8adv/(mmadv*mmadv*mmadv*mmadv*mmadv*mmadv*mmadv)))/gdpadv; + +bengdpnam=(bsnam*((1-lams1nam)*phinam*(1-edusnam) ++(1-lams2nam)*phinam*p2nam/mmnam ++(1-lams3nam)*phinam*p3nam/(mmnam*mmnam) ++(1-lams4nam)*phinam*p4nam/(mmnam*mmnam*mmnam) ++(1-lams5nam)*phinam*p5nam/(mmnam*mmnam*mmnam*mmnam) ++(1-lams6nam)*phinam*p6nam/(mmnam*mmnam*mmnam*mmnam*mmnam) ++(1-lams7nam)*phinam*p7nam/(mmnam*mmnam*mmnam*mmnam*mmnam*mmnam) ++(1-lams8nam)*phinam*p8nam/(mmnam*mmnam*mmnam*mmnam*mmnam*mmnam*mmnam)) ++bunam*((1-lamu1nam)*(1-phinam)*(1-eduunam) ++(1-lamu2nam)*(1-phinam)*p2nam/mmnam ++(1-lamu3nam)*(1-phinam)*p3nam/(mmnam*mmnam) ++(1-lamu4nam)*(1-phinam)*p4nam/(mmnam*mmnam*mmnam) ++(1-lamu5nam)*(1-phinam)*p5nam/(mmnam*mmnam*mmnam*mmnam) ++(1-lamu6nam)*(1-phinam)*p6nam/(mmnam*mmnam*mmnam*mmnam*mmnam) ++(1-lamu7nam)*(1-phinam)*p7nam/(mmnam*mmnam*mmnam*mmnam*mmnam*mmnam) ++(1-lamu8nam)*(1-phinam)*p8nam/(mmnam*mmnam*mmnam*mmnam*mmnam*mmnam*mmnam)))/gdpnam; + +bengdpssa=(bsssa*((1-lams1ssa)*phissa*(1-edusssa) ++(1-lams2ssa)*phissa*p2ssa/mmssa ++(1-lams3ssa)*phissa*p3ssa/(mmssa*mmssa) ++(1-lams4ssa)*phissa*p4ssa/(mmssa*mmssa*mmssa) ++(1-lams5ssa)*phissa*p5ssa/(mmssa*mmssa*mmssa*mmssa) ++(1-lams6ssa)*phissa*p6ssa/(mmssa*mmssa*mmssa*mmssa*mmssa) ++(1-lams7ssa)*phissa*p7ssa/(mmssa*mmssa*mmssa*mmssa*mmssa*mmssa) ++(1-lams8ssa)*phissa*p8ssa/(mmssa*mmssa*mmssa*mmssa*mmssa*mmssa*mmssa)) ++bussa*((1-lamu1ssa)*(1-phissa)*(1-eduussa) ++(1-lamu2ssa)*(1-phissa)*p2ssa/mmssa ++(1-lamu3ssa)*(1-phissa)*p3ssa/(mmssa*mmssa) ++(1-lamu4ssa)*(1-phissa)*p4ssa/(mmssa*mmssa*mmssa) ++(1-lamu5ssa)*(1-phissa)*p5ssa/(mmssa*mmssa*mmssa*mmssa) ++(1-lamu6ssa)*(1-phissa)*p6ssa/(mmssa*mmssa*mmssa*mmssa*mmssa) ++(1-lamu7ssa)*(1-phissa)*p7ssa/(mmssa*mmssa*mmssa*mmssa*mmssa*mmssa) ++(1-lamu8ssa)*(1-phissa)*p8ssa/(mmssa*mmssa*mmssa*mmssa*mmssa*mmssa*mmssa)))/gdpssa; + +bengdplac=(bslac*((1-lams1lac)*philac*(1-eduslac) ++(1-lams2lac)*philac*p2lac/mmlac ++(1-lams3lac)*philac*p3lac/(mmlac*mmlac) ++(1-lams4lac)*philac*p4lac/(mmlac*mmlac*mmlac) ++(1-lams5lac)*philac*p5lac/(mmlac*mmlac*mmlac*mmlac) ++(1-lams6lac)*philac*p6lac/(mmlac*mmlac*mmlac*mmlac*mmlac) ++(1-lams7lac)*philac*p7lac/(mmlac*mmlac*mmlac*mmlac*mmlac*mmlac) ++(1-lams8lac)*philac*p8lac/(mmlac*mmlac*mmlac*mmlac*mmlac*mmlac*mmlac)) ++bulac*((1-lamu1lac)*(1-philac)*(1-eduulac) ++(1-lamu2lac)*(1-philac)*p2lac/mmlac ++(1-lamu3lac)*(1-philac)*p3lac/(mmlac*mmlac) ++(1-lamu4lac)*(1-philac)*p4lac/(mmlac*mmlac*mmlac) ++(1-lamu5lac)*(1-philac)*p5lac/(mmlac*mmlac*mmlac*mmlac) ++(1-lamu6lac)*(1-philac)*p6lac/(mmlac*mmlac*mmlac*mmlac*mmlac) ++(1-lamu7lac)*(1-philac)*p7lac/(mmlac*mmlac*mmlac*mmlac*mmlac*mmlac) ++(1-lamu8lac)*(1-philac)*p8lac/(mmlac*mmlac*mmlac*mmlac*mmlac*mmlac*mmlac)))/gdplac; + +bengdpjap=(bsjap*((1-lams1jap)*phijap*(1-edusjap) ++(1-lams2jap)*phijap*p2jap/mmjap ++(1-lams3jap)*phijap*p3jap/(mmjap*mmjap) ++(1-lams4jap)*phijap*p4jap/(mmjap*mmjap*mmjap) ++(1-lams5jap)*phijap*p5jap/(mmjap*mmjap*mmjap*mmjap) ++(1-lams6jap)*phijap*p6jap/(mmjap*mmjap*mmjap*mmjap*mmjap) ++(1-lams7jap)*phijap*p7jap/(mmjap*mmjap*mmjap*mmjap*mmjap*mmjap) ++(1-lams8jap)*phijap*p8jap/(mmjap*mmjap*mmjap*mmjap*mmjap*mmjap*mmjap)) ++bujap*((1-lamu1jap)*(1-phijap)*(1-eduujap) ++(1-lamu2jap)*(1-phijap)*p2jap/mmjap ++(1-lamu3jap)*(1-phijap)*p3jap/(mmjap*mmjap) ++(1-lamu4jap)*(1-phijap)*p4jap/(mmjap*mmjap*mmjap) ++(1-lamu5jap)*(1-phijap)*p5jap/(mmjap*mmjap*mmjap*mmjap) ++(1-lamu6jap)*(1-phijap)*p6jap/(mmjap*mmjap*mmjap*mmjap*mmjap) ++(1-lamu7jap)*(1-phijap)*p7jap/(mmjap*mmjap*mmjap*mmjap*mmjap*mmjap) ++(1-lamu8jap)*(1-phijap)*p8jap/(mmjap*mmjap*mmjap*mmjap*mmjap*mmjap*mmjap)))/gdpjap; + +bengdprus=(bsrus*((1-lams1rus)*phirus*(1-edusrus) ++(1-lams2rus)*phirus*p2rus/mmrus ++(1-lams3rus)*phirus*p3rus/(mmrus*mmrus) ++(1-lams4rus)*phirus*p4rus/(mmrus*mmrus*mmrus) ++(1-lams5rus)*phirus*p5rus/(mmrus*mmrus*mmrus*mmrus) ++(1-lams6rus)*phirus*p6rus/(mmrus*mmrus*mmrus*mmrus*mmrus) ++(1-lams7rus)*phirus*p7rus/(mmrus*mmrus*mmrus*mmrus*mmrus*mmrus) ++(1-lams8rus)*phirus*p8rus/(mmrus*mmrus*mmrus*mmrus*mmrus*mmrus*mmrus)) ++burus*((1-lamu1rus)*(1-phirus)*(1-eduurus) ++(1-lamu2rus)*(1-phirus)*p2rus/mmrus ++(1-lamu3rus)*(1-phirus)*p3rus/(mmrus*mmrus) ++(1-lamu4rus)*(1-phirus)*p4rus/(mmrus*mmrus*mmrus) ++(1-lamu5rus)*(1-phirus)*p5rus/(mmrus*mmrus*mmrus*mmrus) ++(1-lamu6rus)*(1-phirus)*p6rus/(mmrus*mmrus*mmrus*mmrus*mmrus) ++(1-lamu7rus)*(1-phirus)*p7rus/(mmrus*mmrus*mmrus*mmrus*mmrus*mmrus) ++(1-lamu8rus)*(1-phirus)*p8rus/(mmrus*mmrus*mmrus*mmrus*mmrus*mmrus*mmrus)))/gdprus; + +bengdpmen=(bsmen*((1-lams1men)*phimen*(1-edusmen) ++(1-lams2men)*phimen*p2men/mmmen ++(1-lams3men)*phimen*p3men/(mmmen*mmmen) ++(1-lams4men)*phimen*p4men/(mmmen*mmmen*mmmen) ++(1-lams5men)*phimen*p5men/(mmmen*mmmen*mmmen*mmmen) ++(1-lams6men)*phimen*p6men/(mmmen*mmmen*mmmen*mmmen*mmmen) ++(1-lams7men)*phimen*p7men/(mmmen*mmmen*mmmen*mmmen*mmmen*mmmen) ++(1-lams8men)*phimen*p8men/(mmmen*mmmen*mmmen*mmmen*mmmen*mmmen*mmmen)) ++bumen*((1-lamu1men)*(1-phimen)*(1-eduumen) ++(1-lamu2men)*(1-phimen)*p2men/mmmen ++(1-lamu3men)*(1-phimen)*p3men/(mmmen*mmmen) ++(1-lamu4men)*(1-phimen)*p4men/(mmmen*mmmen*mmmen) ++(1-lamu5men)*(1-phimen)*p5men/(mmmen*mmmen*mmmen*mmmen) ++(1-lamu6men)*(1-phimen)*p6men/(mmmen*mmmen*mmmen*mmmen*mmmen) ++(1-lamu7men)*(1-phimen)*p7men/(mmmen*mmmen*mmmen*mmmen*mmmen*mmmen) ++(1-lamu8men)*(1-phimen)*p8men/(mmmen*mmmen*mmmen*mmmen*mmmen*mmmen*mmmen)))/gdpmen; + +bengdpeas=(bseas*((1-lams1eas)*phieas*(1-eduseas) ++(1-lams2eas)*phieas*p2eas/mmeas ++(1-lams3eas)*phieas*p3eas/(mmeas*mmeas) ++(1-lams4eas)*phieas*p4eas/(mmeas*mmeas*mmeas) ++(1-lams5eas)*phieas*p5eas/(mmeas*mmeas*mmeas*mmeas) ++(1-lams6eas)*phieas*p6eas/(mmeas*mmeas*mmeas*mmeas*mmeas) ++(1-lams7eas)*phieas*p7eas/(mmeas*mmeas*mmeas*mmeas*mmeas*mmeas) ++(1-lams8eas)*phieas*p8eas/(mmeas*mmeas*mmeas*mmeas*mmeas*mmeas*mmeas)) ++bueas*((1-lamu1eas)*(1-phieas)*(1-eduueas) ++(1-lamu2eas)*(1-phieas)*p2eas/mmeas ++(1-lamu3eas)*(1-phieas)*p3eas/(mmeas*mmeas) ++(1-lamu4eas)*(1-phieas)*p4eas/(mmeas*mmeas*mmeas) ++(1-lamu5eas)*(1-phieas)*p5eas/(mmeas*mmeas*mmeas*mmeas) ++(1-lamu6eas)*(1-phieas)*p6eas/(mmeas*mmeas*mmeas*mmeas*mmeas) ++(1-lamu7eas)*(1-phieas)*p7eas/(mmeas*mmeas*mmeas*mmeas*mmeas*mmeas) ++(1-lamu8eas)*(1-phieas)*p8eas/(mmeas*mmeas*mmeas*mmeas*mmeas*mmeas*mmeas)))/gdpeas; + +bengdpchi=(bschi*((1-lams1chi)*phichi*(1-eduschi) ++(1-lams2chi)*phichi*p2chi/mmchi ++(1-lams3chi)*phichi*p3chi/(mmchi*mmchi) ++(1-lams4chi)*phichi*p4chi/(mmchi*mmchi*mmchi) ++(1-lams5chi)*phichi*p5chi/(mmchi*mmchi*mmchi*mmchi) ++(1-lams6chi)*phichi*p6chi/(mmchi*mmchi*mmchi*mmchi*mmchi) ++(1-lams7chi)*phichi*p7chi/(mmchi*mmchi*mmchi*mmchi*mmchi*mmchi) ++(1-lams8chi)*phichi*p8chi/(mmchi*mmchi*mmchi*mmchi*mmchi*mmchi*mmchi)) ++buchi*((1-lamu1chi)*(1-phichi)*(1-eduuchi) ++(1-lamu2chi)*(1-phichi)*p2chi/mmchi ++(1-lamu3chi)*(1-phichi)*p3chi/(mmchi*mmchi) ++(1-lamu4chi)*(1-phichi)*p4chi/(mmchi*mmchi*mmchi) ++(1-lamu5chi)*(1-phichi)*p5chi/(mmchi*mmchi*mmchi*mmchi) ++(1-lamu6chi)*(1-phichi)*p6chi/(mmchi*mmchi*mmchi*mmchi*mmchi) ++(1-lamu7chi)*(1-phichi)*p7chi/(mmchi*mmchi*mmchi*mmchi*mmchi*mmchi) ++(1-lamu8chi)*(1-phichi)*p8chi/(mmchi*mmchi*mmchi*mmchi*mmchi*mmchi*mmchi)))/gdpchi; + +bengdpind=(bsind*((1-lams1ind)*phiind*(1-edusind) ++(1-lams2ind)*phiind*p2ind/mmind ++(1-lams3ind)*phiind*p3ind/(mmind*mmind) ++(1-lams4ind)*phiind*p4ind/(mmind*mmind*mmind) ++(1-lams5ind)*phiind*p5ind/(mmind*mmind*mmind*mmind) ++(1-lams6ind)*phiind*p6ind/(mmind*mmind*mmind*mmind*mmind) ++(1-lams7ind)*phiind*p7ind/(mmind*mmind*mmind*mmind*mmind*mmind) ++(1-lams8ind)*phiind*p8ind/(mmind*mmind*mmind*mmind*mmind*mmind*mmind)) ++buind*((1-lamu1ind)*(1-phiind)*(1-eduuind) ++(1-lamu2ind)*(1-phiind)*p2ind/mmind ++(1-lamu3ind)*(1-phiind)*p3ind/(mmind*mmind) ++(1-lamu4ind)*(1-phiind)*p4ind/(mmind*mmind*mmind) ++(1-lamu5ind)*(1-phiind)*p5ind/(mmind*mmind*mmind*mmind) ++(1-lamu6ind)*(1-phiind)*p6ind/(mmind*mmind*mmind*mmind*mmind) ++(1-lamu7ind)*(1-phiind)*p7ind/(mmind*mmind*mmind*mmind*mmind*mmind) ++(1-lamu8ind)*(1-phiind)*p8ind/(mmind*mmind*mmind*mmind*mmind*mmind*mmind)))/gdpind; + +// --------------- endval --------- sup ------------------------------- // + +supadv = 2.33651; +supchi = 3.18865; +supeas = 3.26033; +supind = 3.63779; +supjap = 2.25815; +suplac = 3.07692; +supmen = 3.32751; +supnam = 2.38249; +suprus = 4.0982; +supssa = 5.66508; + +// ------------------ endval ------ trgdp ----------------------------- // + +trgdpadv=(psiadv*wagddsadv*(tr1sadv*phiadv ++tr2sadv*phiadv*p2adv/mmadv ++tr3sadv*phiadv*p3adv/(mmadv^2) ++tr4sadv*phiadv*p4adv/(mmadv^3) ++tr5sadv*phiadv*p5adv/(mmadv^4) ++tr6sadv*phiadv*p6adv/(mmadv^5) ++tr7sadv*phiadv*p7adv/(mmadv^6) ++tr8sadv*phiadv*p8adv/(mmadv^7)) ++psiadv*waguadv*(tr1uadv*(1-phiadv) ++tr2uadv*(1-phiadv)*p2adv/mmadv ++tr3uadv*(1-phiadv)*p3adv/(mmadv^2) ++tr4uadv*(1-phiadv)*p4adv/(mmadv^3) ++tr5uadv*(1-phiadv)*p5adv/(mmadv^4) ++tr6uadv*(1-phiadv)*p6adv/(mmadv^5) ++tr7uadv*(1-phiadv)*p7adv/(mmadv^6) ++tr8uadv*(1-phiadv)*p8adv/(mmadv^7)))/gdpadv; + +trgdpnam=(psinam*wagddsnam*(tr1snam*phinam ++tr2snam*phinam*p2nam/mmnam ++tr3snam*phinam*p3nam/(mmnam^2) ++tr4snam*phinam*p4nam/(mmnam^3) ++tr5snam*phinam*p5nam/(mmnam^4) ++tr6snam*phinam*p6nam/(mmnam^5) ++tr7snam*phinam*p7nam/(mmnam^6) ++tr8snam*phinam*p8nam/(mmnam^7)) ++psinam*wagunam*(tr1unam*(1-phinam) ++tr2unam*(1-phinam)*p2nam/mmnam ++tr3unam*(1-phinam)*p3nam/(mmnam^2) ++tr4unam*(1-phinam)*p4nam/(mmnam^3) ++tr5unam*(1-phinam)*p5nam/(mmnam^4) ++tr6unam*(1-phinam)*p6nam/(mmnam^5) ++tr7unam*(1-phinam)*p7nam/(mmnam^6) ++tr8unam*(1-phinam)*p8nam/(mmnam^7)))/gdpnam; + +trgdpssa=(psissa*wagddsssa*(tr1sssa*phissa ++tr2sssa*phissa*p2ssa/mmssa ++tr3sssa*phissa*p3ssa/(mmssa^2) ++tr4sssa*phissa*p4ssa/(mmssa^3) ++tr5sssa*phissa*p5ssa/(mmssa^4) ++tr6sssa*phissa*p6ssa/(mmssa^5) ++tr7sssa*phissa*p7ssa/(mmssa^6) ++tr8sssa*phissa*p8ssa/(mmssa^7)) ++psissa*wagussa*(tr1ussa*(1-phissa) ++tr2ussa*(1-phissa)*p2ssa/mmssa ++tr3ussa*(1-phissa)*p3ssa/(mmssa^2) ++tr4ussa*(1-phissa)*p4ssa/(mmssa^3) ++tr5ussa*(1-phissa)*p5ssa/(mmssa^4) ++tr6ussa*(1-phissa)*p6ssa/(mmssa^5) ++tr7ussa*(1-phissa)*p7ssa/(mmssa^6) ++tr8ussa*(1-phissa)*p8ssa/(mmssa^7)))/gdpssa; + +trgdplac=(psilac*wagddslac*(tr1slac*philac ++tr2slac*philac*p2lac/mmlac ++tr3slac*philac*p3lac/(mmlac^2) ++tr4slac*philac*p4lac/(mmlac^3) ++tr5slac*philac*p5lac/(mmlac^4) ++tr6slac*philac*p6lac/(mmlac^5) ++tr7slac*philac*p7lac/(mmlac^6) ++tr8slac*philac*p8lac/(mmlac^7)) ++psilac*wagulac*(tr1ulac*(1-philac) ++tr2ulac*(1-philac)*p2lac/mmlac ++tr3ulac*(1-philac)*p3lac/(mmlac^2) ++tr4ulac*(1-philac)*p4lac/(mmlac^3) ++tr5ulac*(1-philac)*p5lac/(mmlac^4) ++tr6ulac*(1-philac)*p6lac/(mmlac^5) ++tr7ulac*(1-philac)*p7lac/(mmlac^6) ++tr8ulac*(1-philac)*p8lac/(mmlac^7)))/gdplac; + +trgdpjap=(psijap*wagddsjap*(tr1sjap*phijap ++tr2sjap*phijap*p2jap/mmjap ++tr3sjap*phijap*p3jap/(mmjap^2) ++tr4sjap*phijap*p4jap/(mmjap^3) ++tr5sjap*phijap*p5jap/(mmjap^4) ++tr6sjap*phijap*p6jap/(mmjap^5) ++tr7sjap*phijap*p7jap/(mmjap^6) ++tr8sjap*phijap*p8jap/(mmjap^7)) ++psijap*wagujap*(tr1ujap*(1-phijap) ++tr2ujap*(1-phijap)*p2jap/mmjap ++tr3ujap*(1-phijap)*p3jap/(mmjap^2) ++tr4ujap*(1-phijap)*p4jap/(mmjap^3) ++tr5ujap*(1-phijap)*p5jap/(mmjap^4) ++tr6ujap*(1-phijap)*p6jap/(mmjap^5) ++tr7ujap*(1-phijap)*p7jap/(mmjap^6) ++tr8ujap*(1-phijap)*p8jap/(mmjap^7)))/gdpjap; + +trgdprus=(psirus*wagddsrus*(tr1srus*phirus ++tr2srus*phirus*p2rus/mmrus ++tr3srus*phirus*p3rus/(mmrus^2) ++tr4srus*phirus*p4rus/(mmrus^3) ++tr5srus*phirus*p5rus/(mmrus^4) ++tr6srus*phirus*p6rus/(mmrus^5) ++tr7srus*phirus*p7rus/(mmrus^6) ++tr8srus*phirus*p8rus/(mmrus^7)) ++psirus*wagurus*(tr1urus*(1-phirus) ++tr2urus*(1-phirus)*p2rus/mmrus ++tr3urus*(1-phirus)*p3rus/(mmrus^2) ++tr4urus*(1-phirus)*p4rus/(mmrus^3) ++tr5urus*(1-phirus)*p5rus/(mmrus^4) ++tr6urus*(1-phirus)*p6rus/(mmrus^5) ++tr7urus*(1-phirus)*p7rus/(mmrus^6) ++tr8urus*(1-phirus)*p8rus/(mmrus^7)))/gdprus; + +trgdpmen=(psimen*wagddsmen*(tr1smen*phimen ++tr2smen*phimen*p2men/mmmen ++tr3smen*phimen*p3men/(mmmen^2) ++tr4smen*phimen*p4men/(mmmen^3) ++tr5smen*phimen*p5men/(mmmen^4) ++tr6smen*phimen*p6men/(mmmen^5) ++tr7smen*phimen*p7men/(mmmen^6) ++tr8smen*phimen*p8men/(mmmen^7)) ++psimen*wagumen*(tr1umen*(1-phimen) ++tr2umen*(1-phimen)*p2men/mmmen ++tr3umen*(1-phimen)*p3men/(mmmen^2) ++tr4umen*(1-phimen)*p4men/(mmmen^3) ++tr5umen*(1-phimen)*p5men/(mmmen^4) ++tr6umen*(1-phimen)*p6men/(mmmen^5) ++tr7umen*(1-phimen)*p7men/(mmmen^6) ++tr8umen*(1-phimen)*p8men/(mmmen^7)))/gdpmen; + +trgdpeas=(psieas*wagddseas*(tr1seas*phieas ++tr2seas*phieas*p2eas/mmeas ++tr3seas*phieas*p3eas/(mmeas^2) ++tr4seas*phieas*p4eas/(mmeas^3) ++tr5seas*phieas*p5eas/(mmeas^4) ++tr6seas*phieas*p6eas/(mmeas^5) ++tr7seas*phieas*p7eas/(mmeas^6) ++tr8seas*phieas*p8eas/(mmeas^7)) ++psieas*wagueas*(tr1ueas*(1-phieas) ++tr2ueas*(1-phieas)*p2eas/mmeas ++tr3ueas*(1-phieas)*p3eas/(mmeas^2) ++tr4ueas*(1-phieas)*p4eas/(mmeas^3) ++tr5ueas*(1-phieas)*p5eas/(mmeas^4) ++tr6ueas*(1-phieas)*p6eas/(mmeas^5) ++tr7ueas*(1-phieas)*p7eas/(mmeas^6) ++tr8ueas*(1-phieas)*p8eas/(mmeas^7)))/gdpeas; + +trgdpchi=(psichi*wagddschi*(tr1schi*phichi ++tr2schi*phichi*p2chi/mmchi ++tr3schi*phichi*p3chi/(mmchi^2) ++tr4schi*phichi*p4chi/(mmchi^3) ++tr5schi*phichi*p5chi/(mmchi^4) ++tr6schi*phichi*p6chi/(mmchi^5) ++tr7schi*phichi*p7chi/(mmchi^6) ++tr8schi*phichi*p8chi/(mmchi^7)) ++psichi*waguchi*(tr1uchi*(1-phichi) ++tr2uchi*(1-phichi)*p2chi/mmchi ++tr3uchi*(1-phichi)*p3chi/(mmchi^2) ++tr4uchi*(1-phichi)*p4chi/(mmchi^3) ++tr5uchi*(1-phichi)*p5chi/(mmchi^4) ++tr6uchi*(1-phichi)*p6chi/(mmchi^5) ++tr7uchi*(1-phichi)*p7chi/(mmchi^6) ++tr8uchi*(1-phichi)*p8chi/(mmchi^7)))/gdpchi; + +trgdpind=(psiind*wagddsind*(tr1sind*phiind ++tr2sind*phiind*p2ind/mmind ++tr3sind*phiind*p3ind/(mmind^2) ++tr4sind*phiind*p4ind/(mmind^3) ++tr5sind*phiind*p5ind/(mmind^4) ++tr6sind*phiind*p6ind/(mmind^5) ++tr7sind*phiind*p7ind/(mmind^6) ++tr8sind*phiind*p8ind/(mmind^7)) ++psiind*waguind*(tr1uind*(1-phiind) ++tr2uind*(1-phiind)*p2ind/mmind ++tr3uind*(1-phiind)*p3ind/(mmind^2) ++tr4uind*(1-phiind)*p4ind/(mmind^3) ++tr5uind*(1-phiind)*p5ind/(mmind^4) ++tr6uind*(1-phiind)*p6ind/(mmind^5) ++tr7uind*(1-phiind)*p7ind/(mmind^6) ++tr8uind*(1-phiind)*p8ind/(mmind^7)))/gdpind; + +// --------- endval ---------- rapport lab-lab sans h --------------- // + +lablabsshadv=labadv/((1-edusadv)*phiadv*lams1adv ++phiadv*lams2adv*p2adv/mmadv ++phiadv*lams3adv*p3adv/(mmadv^2) ++phiadv*lams4adv*p4adv/(mmadv^3) ++phiadv*lams5adv*p5adv/(mmadv^4) ++phiadv*lams6adv*p6adv/(mmadv^5) ++phiadv*lams7adv*p7adv/(mmadv^6) ++phiadv*lams8adv*p8adv/(mmadv^7) ++(1-eduuadv)*(1-phiadv)*lamu1adv ++(1-phiadv)*lamu2adv*p2adv/mmadv ++(1-phiadv)*lamu3adv*p3adv/(mmadv^2) ++(1-phiadv)*lamu4adv*p4adv/(mmadv^3) ++(1-phiadv)*lamu5adv*p5adv/(mmadv^4) ++(1-phiadv)*lamu6adv*p6adv/(mmadv^5) ++(1-phiadv)*lamu7adv*p7adv/(mmadv^6) ++(1-phiadv)*lamu8adv*p8adv/(mmadv^7)); + +lablabsshnam=labnam/((1-edusnam)*phinam*lams1nam ++phinam*lams2nam*p2nam/mmnam ++phinam*lams3nam*p3nam/(mmnam^2) ++phinam*lams4nam*p4nam/(mmnam^3) ++phinam*lams5nam*p5nam/(mmnam^4) ++phinam*lams6nam*p6nam/(mmnam^5) ++phinam*lams7nam*p7nam/(mmnam^6) ++phinam*lams8nam*p8nam/(mmnam^7) ++(1-eduunam)*(1-phinam)*lamu1nam ++(1-phinam)*lamu2nam*p2nam/mmnam ++(1-phinam)*lamu3nam*p3nam/(mmnam^2) ++(1-phinam)*lamu4nam*p4nam/(mmnam^3) ++(1-phinam)*lamu5nam*p5nam/(mmnam^4) ++(1-phinam)*lamu6nam*p6nam/(mmnam^5) ++(1-phinam)*lamu7nam*p7nam/(mmnam^6) ++(1-phinam)*lamu8nam*p8nam/(mmnam^7)); + +lablabsshjap=labjap/((1-edusjap)*phijap*lams1jap ++phijap*lams2jap*p2jap/mmjap ++phijap*lams3jap*p3jap/(mmjap^2) ++phijap*lams4jap*p4jap/(mmjap^3) ++phijap*lams5jap*p5jap/(mmjap^4) ++phijap*lams6jap*p6jap/(mmjap^5) ++phijap*lams7jap*p7jap/(mmjap^6) ++phijap*lams8jap*p8jap/(mmjap^7) ++(1-eduujap)*(1-phijap)*lamu1jap ++(1-phijap)*lamu2jap*p2jap/mmjap ++(1-phijap)*lamu3jap*p3jap/(mmjap^2) ++(1-phijap)*lamu4jap*p4jap/(mmjap^3) ++(1-phijap)*lamu5jap*p5jap/(mmjap^4) ++(1-phijap)*lamu6jap*p6jap/(mmjap^5) ++(1-phijap)*lamu7jap*p7jap/(mmjap^6) ++(1-phijap)*lamu8jap*p8jap/(mmjap^7)); + +lablabsshlac=lablac/((1-eduslac)*philac*lams1lac ++philac*lams2lac*p2lac/mmlac ++philac*lams3lac*p3lac/(mmlac^2) ++philac*lams4lac*p4lac/(mmlac^3) ++philac*lams5lac*p5lac/(mmlac^4) ++philac*lams6lac*p6lac/(mmlac^5) ++philac*lams7lac*p7lac/(mmlac^6) ++philac*lams8lac*p8lac/(mmlac^7) ++(1-eduulac)*(1-philac)*lamu1lac ++(1-philac)*lamu2lac*p2lac/mmlac ++(1-philac)*lamu3lac*p3lac/(mmlac^2) ++(1-philac)*lamu4lac*p4lac/(mmlac^3) ++(1-philac)*lamu5lac*p5lac/(mmlac^4) ++(1-philac)*lamu6lac*p6lac/(mmlac^5) ++(1-philac)*lamu7lac*p7lac/(mmlac^6) ++(1-philac)*lamu8lac*p8lac/(mmlac^7)); + +lablabssheas=labeas/((1-eduseas)*phieas*lams1eas ++phieas*lams2eas*p2eas/mmeas ++phieas*lams3eas*p3eas/(mmeas^2) ++phieas*lams4eas*p4eas/(mmeas^3) ++phieas*lams5eas*p5eas/(mmeas^4) ++phieas*lams6eas*p6eas/(mmeas^5) ++phieas*lams7eas*p7eas/(mmeas^6) ++phieas*lams8eas*p8eas/(mmeas^7) ++(1-eduueas)*(1-phieas)*lamu1eas ++(1-phieas)*lamu2eas*p2eas/mmeas ++(1-phieas)*lamu3eas*p3eas/(mmeas^2) ++(1-phieas)*lamu4eas*p4eas/(mmeas^3) ++(1-phieas)*lamu5eas*p5eas/(mmeas^4) ++(1-phieas)*lamu6eas*p6eas/(mmeas^5) ++(1-phieas)*lamu7eas*p7eas/(mmeas^6) ++(1-phieas)*lamu8eas*p8eas/(mmeas^7)); + +lablabsshmen=labmen/((1-edusmen)*phimen*lams1men ++phimen*lams2men*p2men/mmmen ++phimen*lams3men*p3men/(mmmen^2) ++phimen*lams4men*p4men/(mmmen^3) ++phimen*lams5men*p5men/(mmmen^4) ++phimen*lams6men*p6men/(mmmen^5) ++phimen*lams7men*p7men/(mmmen^6) ++phimen*lams8men*p8men/(mmmen^7) ++(1-eduumen)*(1-phimen)*lamu1men ++(1-phimen)*lamu2men*p2men/mmmen ++(1-phimen)*lamu3men*p3men/(mmmen^2) ++(1-phimen)*lamu4men*p4men/(mmmen^3) ++(1-phimen)*lamu5men*p5men/(mmmen^4) ++(1-phimen)*lamu6men*p6men/(mmmen^5) ++(1-phimen)*lamu7men*p7men/(mmmen^6) ++(1-phimen)*lamu8men*p8men/(mmmen^7)); + +lablabsshrus=labrus/((1-edusrus)*phirus*lams1rus ++phirus*lams2rus*p2rus/mmrus ++phirus*lams3rus*p3rus/(mmrus^2) ++phirus*lams4rus*p4rus/(mmrus^3) ++phirus*lams5rus*p5rus/(mmrus^4) ++phirus*lams6rus*p6rus/(mmrus^5) ++phirus*lams7rus*p7rus/(mmrus^6) ++phirus*lams8rus*p8rus/(mmrus^7) ++(1-eduurus)*(1-phirus)*lamu1rus ++(1-phirus)*lamu2rus*p2rus/mmrus ++(1-phirus)*lamu3rus*p3rus/(mmrus^2) ++(1-phirus)*lamu4rus*p4rus/(mmrus^3) ++(1-phirus)*lamu5rus*p5rus/(mmrus^4) ++(1-phirus)*lamu6rus*p6rus/(mmrus^5) ++(1-phirus)*lamu7rus*p7rus/(mmrus^6) ++(1-phirus)*lamu8rus*p8rus/(mmrus^7)); + +lablabsshind=labind/((1-edusind)*phiind*lams1ind ++phiind*lams2ind*p2ind/mmind ++phiind*lams3ind*p3ind/(mmind^2) ++phiind*lams4ind*p4ind/(mmind^3) ++phiind*lams5ind*p5ind/(mmind^4) ++phiind*lams6ind*p6ind/(mmind^5) ++phiind*lams7ind*p7ind/(mmind^6) ++phiind*lams8ind*p8ind/(mmind^7) ++(1-eduuind)*(1-phiind)*lamu1ind ++(1-phiind)*lamu2ind*p2ind/mmind ++(1-phiind)*lamu3ind*p3ind/(mmind^2) ++(1-phiind)*lamu4ind*p4ind/(mmind^3) ++(1-phiind)*lamu5ind*p5ind/(mmind^4) ++(1-phiind)*lamu6ind*p6ind/(mmind^5) ++(1-phiind)*lamu7ind*p7ind/(mmind^6) ++(1-phiind)*lamu8ind*p8ind/(mmind^7)); + +lablabsshchi=labchi/((1-eduschi)*phichi*lams1chi ++phichi*lams2chi*p2chi/mmchi ++phichi*lams3chi*p3chi/(mmchi^2) ++phichi*lams4chi*p4chi/(mmchi^3) ++phichi*lams5chi*p5chi/(mmchi^4) ++phichi*lams6chi*p6chi/(mmchi^5) ++phichi*lams7chi*p7chi/(mmchi^6) ++phichi*lams8chi*p8chi/(mmchi^7) ++(1-eduuchi)*(1-phichi)*lamu1chi ++(1-phichi)*lamu2chi*p2chi/mmchi ++(1-phichi)*lamu3chi*p3chi/(mmchi^2) ++(1-phichi)*lamu4chi*p4chi/(mmchi^3) ++(1-phichi)*lamu5chi*p5chi/(mmchi^4) ++(1-phichi)*lamu6chi*p6chi/(mmchi^5) ++(1-phichi)*lamu7chi*p7chi/(mmchi^6) ++(1-phichi)*lamu8chi*p8chi/(mmchi^7)); + +lablabsshssa=labssa/((1-edusssa)*phissa*lams1ssa ++phissa*lams2ssa*p2ssa/mmssa ++phissa*lams3ssa*p3ssa/(mmssa^2) ++phissa*lams4ssa*p4ssa/(mmssa^3) ++phissa*lams5ssa*p5ssa/(mmssa^4) ++phissa*lams6ssa*p6ssa/(mmssa^5) ++phissa*lams7ssa*p7ssa/(mmssa^6) ++phissa*lams8ssa*p8ssa/(mmssa^7) ++(1-eduussa)*(1-phissa)*lamu1ssa ++(1-phissa)*lamu2ssa*p2ssa/mmssa ++(1-phissa)*lamu3ssa*p3ssa/(mmssa^2) ++(1-phissa)*lamu4ssa*p4ssa/(mmssa^3) ++(1-phissa)*lamu5ssa*p5ssa/(mmssa^4) ++(1-phissa)*lamu6ssa*p6ssa/(mmssa^5) ++(1-phissa)*lamu7ssa*p7ssa/(mmssa^6) ++(1-phissa)*lamu8ssa*p8ssa/(mmssa^7)); + +// --------- endval ---------- tx de pr้l่vement --------------- // + +taxesgdpadv=(tauadv*(wagddsadv*labsadv+wagdduadv*labdduadv) ++tcadv*(phiadv*xs1adv ++xs2adv*phiadv*p2adv/mmadv ++xs3adv*phiadv*p3adv/(mmadv^2) ++xs4adv*phiadv*p4adv/(mmadv^3) ++xs5adv*phiadv*p5adv/(mmadv^4) ++xs6adv*phiadv*p6adv/(mmadv^5) ++xs7adv*phiadv*p7adv/(mmadv^6) ++xs8adv*phiadv*p8adv/(mmadv^7)) ++tcadv*((1-phiadv)*xu1adv ++xu2adv*(1-phiadv)*p2adv/mmadv ++xu3adv*(1-phiadv)*p3adv/(mmadv^2) ++xu4adv*(1-phiadv)*p4adv/(mmadv^3) ++xu5adv*(1-phiadv)*p5adv/(mmadv^4) ++xu6adv*(1-phiadv)*p6adv/(mmadv^5) ++xu7adv*(1-phiadv)*p7adv/(mmadv^6) ++xu8adv*(1-phiadv)*p8adv/(mmadv^7)))/gdpadv; + +taxesgdplac=(taulac*(wagddslac*labslac+wagddulac*labddulac) ++tclac*(philac*xs1lac ++xs2lac*philac*p2lac/mmlac ++xs3lac*philac*p3lac/(mmlac^2) ++xs4lac*philac*p4lac/(mmlac^3) ++xs5lac*philac*p5lac/(mmlac^4) ++xs6lac*philac*p6lac/(mmlac^5) ++xs7lac*philac*p7lac/(mmlac^6) ++xs8lac*philac*p8lac/(mmlac^7)) ++tclac*((1-philac)*xu1lac ++xu2lac*(1-philac)*p2lac/mmlac ++xu3lac*(1-philac)*p3lac/(mmlac^2) ++xu4lac*(1-philac)*p4lac/(mmlac^3) ++xu5lac*(1-philac)*p5lac/(mmlac^4) ++xu6lac*(1-philac)*p6lac/(mmlac^5) ++xu7lac*(1-philac)*p7lac/(mmlac^6) ++xu8lac*(1-philac)*p8lac/(mmlac^7)))/gdplac; + +taxesgdpjap=(taujap*(wagddsjap*labsjap+wagddujap*labddujap) ++tcjap*(phijap*xs1jap ++xs2jap*phijap*p2jap/mmjap ++xs3jap*phijap*p3jap/(mmjap^2) ++xs4jap*phijap*p4jap/(mmjap^3) ++xs5jap*phijap*p5jap/(mmjap^4) ++xs6jap*phijap*p6jap/(mmjap^5) ++xs7jap*phijap*p7jap/(mmjap^6) ++xs8jap*phijap*p8jap/(mmjap^7)) ++tcjap*((1-phijap)*xu1jap ++xu2jap*(1-phijap)*p2jap/mmjap ++xu3jap*(1-phijap)*p3jap/(mmjap^2) ++xu4jap*(1-phijap)*p4jap/(mmjap^3) ++xu5jap*(1-phijap)*p5jap/(mmjap^4) ++xu6jap*(1-phijap)*p6jap/(mmjap^5) ++xu7jap*(1-phijap)*p7jap/(mmjap^6) ++xu8jap*(1-phijap)*p8jap/(mmjap^7)))/gdpjap; + +taxesgdpeas=(taueas*(wagddseas*labseas+wagddueas*labddueas) ++tceas*(phieas*xs1eas ++xs2eas*phieas*p2eas/mmeas ++xs3eas*phieas*p3eas/(mmeas^2) ++xs4eas*phieas*p4eas/(mmeas^3) ++xs5eas*phieas*p5eas/(mmeas^4) ++xs6eas*phieas*p6eas/(mmeas^5) ++xs7eas*phieas*p7eas/(mmeas^6) ++xs8eas*phieas*p8eas/(mmeas^7)) ++tceas*((1-phieas)*xu1eas ++xu2eas*(1-phieas)*p2eas/mmeas ++xu3eas*(1-phieas)*p3eas/(mmeas^2) ++xu4eas*(1-phieas)*p4eas/(mmeas^3) ++xu5eas*(1-phieas)*p5eas/(mmeas^4) ++xu6eas*(1-phieas)*p6eas/(mmeas^5) ++xu7eas*(1-phieas)*p7eas/(mmeas^6) ++xu8eas*(1-phieas)*p8eas/(mmeas^7)))/gdpeas; + +taxesgdpnam=(taunam*(wagddsnam*labsnam+wagddunam*labddunam) ++tcnam*(phinam*xs1nam ++xs2nam*phinam*p2nam/mmnam ++xs3nam*phinam*p3nam/(mmnam^2) ++xs4nam*phinam*p4nam/(mmnam^3) ++xs5nam*phinam*p5nam/(mmnam^4) ++xs6nam*phinam*p6nam/(mmnam^5) ++xs7nam*phinam*p7nam/(mmnam^6) ++xs8nam*phinam*p8nam/(mmnam^7)) ++tcnam*((1-phinam)*xu1nam ++xu2nam*(1-phinam)*p2nam/mmnam ++xu3nam*(1-phinam)*p3nam/(mmnam^2) ++xu4nam*(1-phinam)*p4nam/(mmnam^3) ++xu5nam*(1-phinam)*p5nam/(mmnam^4) ++xu6nam*(1-phinam)*p6nam/(mmnam^5) ++xu7nam*(1-phinam)*p7nam/(mmnam^6) ++xu8nam*(1-phinam)*p8nam/(mmnam^7)))/gdpnam; + +taxesgdpmen=(taumen*(wagddsmen*labsmen+wagddumen*labddumen) ++tcmen*(phimen*xs1men ++xs2men*phimen*p2men/mmmen ++xs3men*phimen*p3men/(mmmen^2) ++xs4men*phimen*p4men/(mmmen^3) ++xs5men*phimen*p5men/(mmmen^4) ++xs6men*phimen*p6men/(mmmen^5) ++xs7men*phimen*p7men/(mmmen^6) ++xs8men*phimen*p8men/(mmmen^7)) ++tcmen*((1-phimen)*xu1men ++xu2men*(1-phimen)*p2men/mmmen ++xu3men*(1-phimen)*p3men/(mmmen^2) ++xu4men*(1-phimen)*p4men/(mmmen^3) ++xu5men*(1-phimen)*p5men/(mmmen^4) ++xu6men*(1-phimen)*p6men/(mmmen^5) ++xu7men*(1-phimen)*p7men/(mmmen^6) ++xu8men*(1-phimen)*p8men/(mmmen^7)))/gdpmen; + +taxesgdpchi=(tauchi*(wagddschi*labschi+wagdduchi*labdduchi) ++tcchi*(phichi*xs1chi ++xs2chi*phichi*p2chi/mmchi ++xs3chi*phichi*p3chi/(mmchi^2) ++xs4chi*phichi*p4chi/(mmchi^3) ++xs5chi*phichi*p5chi/(mmchi^4) ++xs6chi*phichi*p6chi/(mmchi^5) ++xs7chi*phichi*p7chi/(mmchi^6) ++xs8chi*phichi*p8chi/(mmchi^7)) ++tcchi*((1-phichi)*xu1chi ++xu2chi*(1-phichi)*p2chi/mmchi ++xu3chi*(1-phichi)*p3chi/(mmchi^2) ++xu4chi*(1-phichi)*p4chi/(mmchi^3) ++xu5chi*(1-phichi)*p5chi/(mmchi^4) ++xu6chi*(1-phichi)*p6chi/(mmchi^5) ++xu7chi*(1-phichi)*p7chi/(mmchi^6) ++xu8chi*(1-phichi)*p8chi/(mmchi^7)))/gdpchi; + +taxesgdpind=(tauind*(wagddsind*labsind+wagdduind*labdduind) ++tcind*(phiind*xs1ind ++xs2ind*phiind*p2ind/mmind ++xs3ind*phiind*p3ind/(mmind^2) ++xs4ind*phiind*p4ind/(mmind^3) ++xs5ind*phiind*p5ind/(mmind^4) ++xs6ind*phiind*p6ind/(mmind^5) ++xs7ind*phiind*p7ind/(mmind^6) ++xs8ind*phiind*p8ind/(mmind^7)) ++tcind*((1-phiind)*xu1ind ++xu2ind*(1-phiind)*p2ind/mmind ++xu3ind*(1-phiind)*p3ind/(mmind^2) ++xu4ind*(1-phiind)*p4ind/(mmind^3) ++xu5ind*(1-phiind)*p5ind/(mmind^4) ++xu6ind*(1-phiind)*p6ind/(mmind^5) ++xu7ind*(1-phiind)*p7ind/(mmind^6) ++xu8ind*(1-phiind)*p8ind/(mmind^7)))/gdpind; + +taxesgdprus=(taurus*(wagddsrus*labsrus+wagddurus*labddurus) ++tcrus*(phirus*xs1rus ++xs2rus*phirus*p2rus/mmrus ++xs3rus*phirus*p3rus/(mmrus^2) ++xs4rus*phirus*p4rus/(mmrus^3) ++xs5rus*phirus*p5rus/(mmrus^4) ++xs6rus*phirus*p6rus/(mmrus^5) ++xs7rus*phirus*p7rus/(mmrus^6) ++xs8rus*phirus*p8rus/(mmrus^7)) ++tcrus*((1-phirus)*xu1rus ++xu2rus*(1-phirus)*p2rus/mmrus ++xu3rus*(1-phirus)*p3rus/(mmrus^2) ++xu4rus*(1-phirus)*p4rus/(mmrus^3) ++xu5rus*(1-phirus)*p5rus/(mmrus^4) ++xu6rus*(1-phirus)*p6rus/(mmrus^5) ++xu7rus*(1-phirus)*p7rus/(mmrus^6) ++xu8rus*(1-phirus)*p8rus/(mmrus^7)))/gdprus; + +taxesgdpssa=(taussa*(wagddsssa*labsssa+wagddussa*labddussa) ++tcssa*(phissa*xs1ssa ++xs2ssa*phissa*p2ssa/mmssa ++xs3ssa*phissa*p3ssa/(mmssa^2) ++xs4ssa*phissa*p4ssa/(mmssa^3) ++xs5ssa*phissa*p5ssa/(mmssa^4) ++xs6ssa*phissa*p6ssa/(mmssa^5) ++xs7ssa*phissa*p7ssa/(mmssa^6) ++xs8ssa*phissa*p8ssa/(mmssa^7)) ++tcssa*((1-phissa)*xu1ssa ++xu2ssa*(1-phissa)*p2ssa/mmssa ++xu3ssa*(1-phissa)*p3ssa/(mmssa^2) ++xu4ssa*(1-phissa)*p4ssa/(mmssa^3) ++xu5ssa*(1-phissa)*p5ssa/(mmssa^4) ++xu6ssa*(1-phissa)*p6ssa/(mmssa^5) ++xu7ssa*(1-phissa)*p7ssa/(mmssa^6) ++xu8ssa*(1-phissa)*p8ssa/(mmssa^7)))/gdpssa; + +// --------- end ----------- growth gdp ------------------------------// + +growthadv=(gdpadv/gdpadv-1); +growthnam=(gdpnam/gdpnam-1); +growthjap=(gdpjap/gdpjap-1); +growthssa=(gdpssa/gdpssa-1); +growthlac=(gdplac/gdplac-1); +growthmen=(gdpmen/gdpmen-1); +growthrus=(gdprus/gdprus-1); +growtheas=(gdpeas/gdpeas-1); +growthchi=(gdpchi/gdpchi-1); +growthind=(gdpind/gdpind-1); + +// -------- end ---------- ownership ratio ---------------------------// + +ownadv=weaadv/kadv; +ownnam=weanam/knam; +ownjap=weajap/kjap; +ownssa=weassa/kssa; +ownlac=wealac/klac; +ownmen=weamen/kmen; +ownrus=wearus/krus; +owneas=weaeas/keas; +ownchi=weachi/kchi; +ownind=weaind/kind; + +ownsum=ownadv+ownnam+ownjap+ownssa+ownlac+ownmen+ownrus+owneas+ownchi+ownind; + +// -------- end ---------- foreign assets fa ------------------------- // + +faadv=weaadv-kadv; +fanam=weanam-knam; +fajap=weajap-kjap; +falac=wealac-klac; +faeas=weaeas-keas; +famen=weamen-kmen; +farus=wearus-krus; +fachi=weachi-kchi; +faind=weaind-kind; +fassa=weassa-kssa; + +fasum=faadv+fanam+fajap+falac+faeas+famen+farus+fachi+faind+fassa; + +// --------- end --------- courrent account ca ----------------------- // + +caadv=faadv-faadv/(ggnam*mmadv); +canam=fanam-fanam/(ggnam*mmnam); +cajap=fajap-fajap/(ggnam*mmjap); +calac=falac-falac/(ggnam*mmlac); +caeas=faeas-faeas/(ggnam*mmeas); +camen=famen-famen/(ggnam*mmmen); +carus=farus-farus/(ggnam*mmrus); +cachi=fachi-fachi/(ggnam*mmchi); +caind=faind-faind/(ggnam*mmind); +cassa=fassa-fassa/(ggnam*mmssa); + +casum=caadv+canam+cajap+calac+caeas+camen+carus+cachi+caind+cassa; + +// ------------------------- dette int้rieure ---------------------------// + +zzdebtadv=ddyadv*gdpadv; +zzdebtnam=ddynam*gdpnam; +zzdebtjap=ddyjap*gdpjap; +zzdebtlac=ddylac*gdplac; +zzdebteas=ddyeas*gdpeas; +zzdebtmen=ddymen*gdpmen; +zzdebtrus=ddyrus*gdprus; +zzdebtchi=ddychi*gdpchi; +zzdebtind=ddyind*gdpind; +zzdebtssa=ddyssa*gdpssa; + +zzdebtsum=zzdebtadv+zzdebtnam+zzdebtjap+zzdebtlac+zzdebteas+zzdebtmen+zzdebtrus+zzdebtchi+zzdebtind+zzdebtssa; + +// ------------------------- zzownership ratio ---------------------------// + +zzown2adv=weaadv/(kadv+zzdebtadv); +zzown2nam=weanam/(knam+zzdebtnam); +zzown2jap=weajap/(kjap+zzdebtjap); +zzown2ssa=weassa/(kssa+zzdebtssa); +zzown2lac=wealac/(klac+zzdebtlac); +zzown2men=weamen/(kmen+zzdebtmen); +zzown2rus=wearus/(krus+zzdebtrus); +zzown2eas=weaeas/(keas+zzdebteas); +zzown2chi=weachi/(kchi+zzdebtchi); +zzown2ind=weaind/(kind+zzdebtind); + +zzown2sum=zzown2adv+zzown2nam+zzown2jap+zzown2ssa+zzown2lac+zzown2men+zzown2rus+zzown2eas+zzown2chi+zzown2ind; + +// ----------------------- foreign assets zzfa2 ------------------------- // + +zzfa2adv=weaadv-kadv-zzdebtadv; +zzfa2nam=weanam-knam-zzdebtnam; +zzfa2jap=weajap-kjap-zzdebtjap; +zzfa2lac=wealac-klac-zzdebtlac; +zzfa2eas=weaeas-keas-zzdebteas; +zzfa2men=weamen-kmen-zzdebtmen; +zzfa2rus=wearus-krus-zzdebtrus; +zzfa2chi=weachi-kchi-zzdebtchi; +zzfa2ind=weaind-kind-zzdebtind; +zzfa2ssa=weassa-kssa-zzdebtssa; + +zzfa2sum=zzfa2adv+zzfa2nam+zzfa2jap+zzfa2lac+zzfa2eas+zzfa2men+zzfa2rus+zzfa2chi+zzfa2ind+zzfa2ssa; + +// ----------------------- courrent account zzca2 ----------------------- // + +zzca2adv=zzfa2adv-zzfa2adv/(ggnam*mmadv); +zzca2nam=zzfa2nam-zzfa2nam/(ggnam*mmnam); +zzca2jap=zzfa2jap-zzfa2jap/(ggnam*mmjap); +zzca2lac=zzfa2lac-zzfa2lac/(ggnam*mmlac); +zzca2eas=zzfa2eas-zzfa2eas/(ggnam*mmeas); +zzca2men=zzfa2men-zzfa2men/(ggnam*mmmen); +zzca2rus=zzfa2rus-zzfa2rus/(ggnam*mmrus); +zzca2chi=zzfa2chi-zzfa2chi/(ggnam*mmchi); +zzca2ind=zzfa2ind-zzfa2ind/(ggnam*mmind); +zzca2ssa=zzfa2ssa-zzfa2ssa/(ggnam*mmssa); + +zzca2sum=zzca2adv+zzca2nam+zzca2jap+zzca2lac+zzca2eas+zzca2men+zzca2rus+zzca2chi+zzca2ind+zzca2ssa; + +// -------------------- new courrent account --------------------------- // + +zzvardebtadv=zzdebtadv-zzdebtadv; +zzvardebtnam=zzdebtnam-zzdebtnam; +zzvardebtjap=zzdebtjap-zzdebtjap; +zzvardebtlac=zzdebtlac-zzdebtlac; +zzvardebteas=zzdebteas-zzdebteas; +zzvardebtmen=zzdebtmen-zzdebtmen; +zzvardebtrus=zzdebtrus-zzdebtrus; +zzvardebtind=zzdebtind-zzdebtind; +zzvardebtchi=zzdebtchi-zzdebtchi; +zzvardebtssa=zzdebtssa-zzdebtssa; + +zzvarkadv=kadv-kadv; +zzvarknam=knam-knam; +zzvarkjap=kjap-kjap; +zzvarklac=klac-klac; +zzvarkeas=keas-keas; +zzvarkmen=kmen-kmen; +zzvarkrus=krus-krus; +zzvarkind=kind-kind; +zzvarkchi=kchi-kchi; +zzvarkssa=kssa-kssa; + +zzvarweaadv=weaadv-weaadv; +zzvarweanam=weanam-weanam; +zzvarweajap=weajap-weajap; +zzvarwealac=wealac-wealac; +zzvarweaeas=weaeas-weaeas; +zzvarweamen=weamen-weamen; +zzvarwearus=wearus-wearus; +zzvarweaind=weaind-weaind; +zzvarweachi=weachi-weachi; +zzvarweassa=weassa-weassa; + +zzznewcaadv=zzvarkadv+zzvardebtadv-zzvarweaadv; +zzznewcanam=zzvarknam+zzvardebtnam-zzvarweanam; +zzznewcajap=zzvarkjap+zzvardebtjap-zzvarweajap; +zzznewcalac=zzvarklac+zzvardebtlac-zzvarwealac; +zzznewcaeas=zzvarkeas+zzvardebteas-zzvarweaeas; +zzznewcamen=zzvarkmen+zzvardebtmen-zzvarweamen; +zzznewcarus=zzvarkrus+zzvardebtrus-zzvarwearus; +zzznewcaind=zzvarkind+zzvardebtind-zzvarweaind; +zzznewcachi=zzvarkchi+zzvardebtchi-zzvarweachi; +zzznewcassa=zzvarkssa+zzvardebtssa-zzvarweassa; + +zzznewcasum=zzznewcaadv+zzznewcanam+zzznewcajap+zzznewcalac+zzznewcaeas+zzznewcamen+zzznewcarus+zzznewcachi+zzznewcaind+zzznewcassa; + +// -------------------------- conspubgdp -------------------------------// + +conspubgdpadv=conspubadv*gdpadv; +conspubgdpnam=conspubnam*gdpnam; +conspubgdpjap=conspubjap*gdpjap; +conspubgdpssa=conspubssa*gdpssa; +conspubgdplac=conspublac*gdplac; +conspubgdpmen=conspubmen*gdpmen; +conspubgdprus=conspubrus*gdprus; +conspubgdpeas=conspubeas*gdpeas; +conspubgdpchi=conspubchi*gdpchi; +conspubgdpind=conspubind*gdpind; + +end; + +steady(solve_algo=3); +//check; + + +shocks; + +// ----------- adv ------- shocks on population growth ------------- // + +var p2adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.737909705 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.583190133 0.700937377 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.503607555 0.603885033 0.724129591 +0.931150656 0.931150656 0.931150656 0.931150656 0.931150656 + 0.931150656 0.913727623 0.94237471 0.965192065 0.999853812 1 + 1 1 1 1 1 1 1 1 1 1 + 1 1 +; +var p5adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.378770303 0.4541904 0.544628018 +0.653073421 0.83978027 0.83978027 0.83978027 0.83978027 +0.83978027 0.851911004 0.84525192 0.883235148 0.91763412 +0.959286602 0.996323771 1 1 1 1 1 1 +1 1 1 1 1 +; +var p6adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.246313345 0.295358838 0.354170186 +0.42469195 0.509255887 0.654846811 0.654846811 0.654846811 + 0.654846811 0.666005536 0.67788039 0.724291031 0.768026054 +0.814798973 0.86245523 0.90668286 0.95239868 0.976430451 +0.976430451 0.976430451 0.976430451 0.976430451 0.976430451 +0.976430451 0.976430451 0.976430451 +; +var p7adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.106602647 0.127829184 0.153282313 +0.183803626 0.220402291 0.264288419 0.33984571 0.33984571 +0.33984571 0.358716145 0.390600311 0.433508694 0.498405133 +0.551132592 0.602142653 0.656421314 0.708330598 0.75710297 + 0.75710297 0.75710297 0.75710297 0.75710297 0.75710297 +0.75710297 0.75710297 0.75710297 +; +var p8adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.018188066 0.021809643 0.026152342 +0.031359751 0.037604051 0.045091706 0.05407029 0.069528419 + 0.069528419 0.076933959 0.093751186 0.117228621 0.151445195 +0.207377725 0.240478759 0.283168357 0.330385206 0.379784022 + 0.379784022 0.379784022 0.379784022 0.379784022 0.379784022 +0.379784022 0.379784022 0.379784022 +; + +// ----------- nam ------- shocks on population growth ------------- // + +var p2nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.636432622 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.461119686 0.604544715 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.390384311 0.510622679 0.667894464 +0.99577746 0.99577746 0.99577746 0.99577746 0.99577746 +0.99577746 0.993548831 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var p5nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.283128152 0.370331622 0.484393762 +0.633587041 0.944627824 0.944627824 0.944627824 0.944627824 + 0.944627824 0.899145345 0.909478155 0.940986163 0.982585015 +0.997363103 1 1 1 1 1 1 1 1 +1 1 1 1 +; +var p6nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.170478555 0.22298595 0.291665622 +0.381498634 0.499000213 0.743969582 0.743969582 0.743969582 + 0.743969582 0.740136849 0.729172153 0.76296682 0.803547067 +0.855699287 0.878407019 0.895466522 0.962934307 0.98579086 + 0.98579086 0.98579086 0.98579086 0.98579086 0.98579086 +0.98579086 0.98579086 0.98579086 +; +var p7nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.07064341 0.09240158 0.120861267 +0.158086538 0.206777191 0.270464566 0.403241131 0.403241131 + 0.403241131 0.433041351 0.462067849 0.46980248 0.520100166 +0.559656987 0.62013115 0.651387451 0.676592363 0.742740395 + 0.742740395 0.742740395 0.742740395 0.742740395 0.742740395 +0.742740395 0.742740395 0.742740395 +; +var p8nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.014933077 0.019532465 0.025548464 +0.033417391 0.043709947 0.057172611 0.074781775 0.111493672 + 0.111493672 0.113423494 0.147333468 0.155385172 0.176866312 +0.219578588 0.246267784 0.292471423 0.320666371 0.344004851 + 0.344004851 0.344004851 0.344004851 0.344004851 0.344004851 +0.344004851 0.344004851 0.344004851 +; + +// ----------- eas ------- shocks on population growth ------------- // + +var p2eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.847752891 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.747812449 0.805276964 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.685932238 0.736930917 0.79172132 +0.886155508 0.886155508 0.886155508 0.886155508 0.886155508 + 0.886155508 0.898787349 0.893099482 0.899570219 0.882894021 +0.888530796 0.901098334 0.946485149 0.956279995 0.959572785 + 0.959572785 0.959572785 0.959572785 0.959572785 0.959572785 +0.959572785 0.959572785 0.959572785 +; +var p5eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.562651715 0.604484556 0.649427645 +0.697712229 0.780933289 0.780933289 0.780933289 0.780933289 + 0.780933289 0.798962505 0.809848059 0.797124784 0.801036531 +0.806735572 0.820748926 0.842726757 0.892376238 0.90729252 + 0.90729252 0.90729252 0.90729252 0.90729252 0.90729252 +0.90729252 0.90729252 0.90729252 +; +var p6eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.385404591 0.414059208 0.444844279 +0.477918203 0.513451155 0.574694097 0.574694097 0.574694097 + 0.574694097 0.605645259 0.620117767 0.635896669 0.624209316 +0.647958539 0.670243806 0.691119296 0.724797607 0.778366337 + 0.778366337 0.778366337 0.778366337 0.778366337 0.778366337 +0.778366337 0.778366337 0.778366337 +; +var p7eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.17026944 0.182928878 0.196529538 +0.211141399 0.226839645 0.243705046 0.272773466 0.272773466 + 0.272773466 0.304865436 0.325711343 0.329875475 0.366075656 +0.371880391 0.402540766 0.439048514 0.464804584 0.508173052 + 0.508173052 0.508173052 0.508173052 0.508173052 0.508173052 +0.508173052 0.508173052 0.508173052 +; +var p8eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.027344764 0.029377832 0.031562057 +0.033908678 0.03642977 0.039138303 0.042048214 0.047063601 + 0.047063601 0.056094543 0.066319608 0.06907781 0.07933714 +0.109037259 0.116158712 0.136518771 0.167499135 0.187129118 + 0.187129118 0.187129118 0.187129118 0.187129118 0.187129118 +0.187129118 0.187129118 0.187129118 +; + +// ----------- men ------- shocks on population growth ------------- // + +var p2men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.883787741 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.745430149 0.839506319 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.568707292 0.638996957 0.717974109 +0.77084612 0.77084612 0.77084612 0.77084612 0.77084612 +0.77084612 0.773019711 0.845076122 0.822999064 0.880943706 +0.937650933 0.931637048 0.95338357 0.959676172 0.965180767 + 0.965180767 0.965180767 0.965180767 0.965180767 0.965180767 +0.965180767 0.965180767 0.965180767 +; +var p5men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.419926284 0.471827285 0.530143017 +0.595666311 0.639531509 0.639531509 0.639531509 0.639531509 + 0.639531509 0.670954811 0.688488346 0.74447423 0.746789147 +0.793465719 0.863051592 0.869329901 0.898480595 0.909809812 + 0.909809812 0.909809812 0.909809812 0.909809812 0.909809812 +0.909809812 0.909809812 0.909809812 +; +var p6men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.248344451 0.279038709 0.31352664 +0.352277123 0.395816992 0.424965175 0.424965175 0.424965175 + 0.424965175 0.480571715 0.486989614 0.520822279 0.58848819 +0.591647529 0.652760066 0.724939627 0.744484596 0.782296592 + 0.782296592 0.782296592 0.782296592 0.782296592 0.782296592 +0.782296592 0.782296592 0.782296592 +; +var p7men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.084274197 0.094690109 0.106393381 +0.119543124 0.134318117 0.150919233 0.162033009 0.162033009 + 0.162033009 0.200992215 0.22419106 0.235235463 0.274344516 +0.31606899 0.338776899 0.402562701 0.466169045 0.501229312 + 0.501229312 0.501229312 0.501229312 0.501229312 0.501229312 +0.501229312 0.501229312 0.501229312 +; +var p8men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.007979153 0.00896534 0.010073416 +0.011318445 0.012717354 0.014289161 0.016055238 0.017237554 + 0.017237554 0.026604546 0.033697155 0.03730206 0.044335534 +0.057994768 0.073440898 0.091690057 0.126890144 0.162832053 + 0.162832053 0.162832053 0.162832053 0.162832053 0.162832053 +0.162832053 0.162832053 0.162832053 +; + +// ----------- lac ------- shocks on population growth ------------- // + +var p2lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.750142354 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.556601439 0.712557119 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.395251537 0.504826221 0.644778044 +0.815592896 0.815592896 0.815592896 0.815592896 0.815592896 + 0.815592896 0.821080631 0.831050378 0.839664438 0.853066858 +0.859878083 0.87368216 0.892479302 0.909529124 0.918592142 + 0.918592142 0.918592142 0.918592142 0.918592142 0.918592142 +0.918592142 0.918592142 0.918592142 +; +var p5lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.262137139 0.334808821 0.427627108 +0.546177198 0.690870674 0.690870674 0.690870674 0.690870674 + 0.690870674 0.702579 0.720750021 0.734479715 0.754699174 +0.779553018 0.795940704 0.816396223 0.839234545 0.860181373 + 0.860181373 0.860181373 0.860181373 0.860181373 0.860181373 +0.860181373 0.860181373 0.860181373 +; +var p6lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.147394629 0.188256507 0.240446429 +0.307104845 0.392242822 0.496155944 0.496155944 0.496155944 + 0.496155944 0.513647055 0.539511031 0.563105549 0.593219785 +0.626897365 0.663439722 0.689262954 0.716400807 0.743582371 + 0.743582371 0.743582371 0.743582371 0.743582371 0.743582371 +0.743582371 0.743582371 0.743582371 +; +var p7lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.054555101 0.069679288 0.088996318 +0.113668564 0.145180641 0.18542874 0.234552594 0.234552594 + 0.234552594 0.254514149 0.277390762 0.30012199 0.350864505 +0.391447906 0.433844541 0.477045833 0.509310058 0.539856069 + 0.539856069 0.539856069 0.539856069 0.539856069 0.539856069 +0.539856069 0.539856069 0.539856069 +; +var p8lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.007563576 0.009660409 0.012338542 +0.015759128 0.020127996 0.025708034 0.032835014 0.041533678 + 0.041533678 0.047338822 0.057355301 0.070839207 0.096413557 +0.13682587 0.16407859 0.194756849 0.226119347 0.24944583 + 0.24944583 0.24944583 0.24944583 0.24944583 0.24944583 +0.24944583 0.24944583 0.24944583 +; + +// ----------- jap -------- shocks on population growth ------------- // + +var p2jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.6281131 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.415373856 0.596642035 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.289803583 0.415309071 0.595167331 +0.899100241 0.899100241 0.899100241 0.899100241 0.899100241 + 0.899100241 0.9062793 0.926384484 0.964227367 0.978821038 +0.971988622 0.986054929 1 1 1 1 1 1 +1 1 1 1 1 +; +var p5jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.180504043 0.258675085 0.370699728 +0.53123898 0.802525727 0.802525727 0.802525727 0.802525727 + 0.802525727 0.813935938 0.847308204 0.878628934 0.924792969 +0.941556149 0.942926045 0.961730892 0.979751553 0.99240326 + 0.99240326 0.99240326 0.99240326 0.99240326 0.99240326 +0.99240326 0.99240326 0.99240326 +; +var p6jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.093402302 0.133852118 0.19181957 +0.274891038 0.393938338 0.595110041 0.595110041 0.595110041 + 0.595110041 0.622826852 0.69076607 0.750909893 0.79019273 +0.841586389 0.866017851 0.878679199 0.904566745 0.926086957 + 0.926086957 0.926086957 0.926086957 0.926086957 0.926086957 +0.926086957 0.926086957 0.926086957 +; +var p7jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.031027247 0.044464243 0.063720412 +0.091315866 0.130862107 0.187534673 0.283302629 0.283302629 + 0.283302629 0.307235477 0.374786664 0.477258366 0.565125593 +0.614845084 0.67517323 0.707982452 0.737818452 0.773898233 + 0.773898233 0.773898233 0.773898233 0.773898233 0.773898233 +0.773898233 0.773898233 0.773898233 +; +var p8jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.004218908 0.006045995 0.008664339 +0.012416611 0.017793884 0.025499897 0.036543159 0.055204581 + 0.055204581 0.056233924 0.080934966 0.130866342 0.207140279 +0.289110447 0.339046109 0.401216833 0.438555796 0.483304477 + 0.483304477 0.483304477 0.483304477 0.483304477 0.483304477 +0.483304477 0.483304477 0.483304477 +; + +// ----------- ssa ------- shocks on population growth ------------- // + +var p2ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.902353166 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.738544114 0.85714154 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.498549334 0.57726765 0.668415173 +0.702872633 0.702872633 0.702872633 0.702872633 0.702872633 + 0.702872633 0.704654295 0.727023117 0.752795833 0.756215419 +0.687287383 0.628534924 0.657570715 0.710203709 0.759653392 + 0.759653392 0.759653392 0.759653392 0.759653392 0.759653392 +0.759653392 0.759653392 0.759653392 +; +var p5ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.338863948 0.392368782 0.454321748 +0.526056761 0.553175505 0.553175505 0.553175505 0.553175505 + 0.553175505 0.565793179 0.579748533 0.609518467 0.633745938 +0.626263371 0.576460141 0.539592157 0.576860788 0.634364253 + 0.634364253 0.634364253 0.634364253 0.634364253 0.634364253 +0.634364253 0.634364253 0.634364253 +; +var p6ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.18145258 0.210102987 0.243277143 +0.281689324 0.326166585 0.342980794 0.342980794 0.342980794 + 0.342980794 0.35753283 0.380463572 0.402405576 0.431578637 +0.454884343 0.462154187 0.437680169 0.422007827 0.463109632 + 0.463109632 0.463109632 0.463109632 0.463109632 0.463109632 +0.463109632 0.463109632 0.463109632 +; +var p7ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.05461183 0.063234751 0.073219185 +0.084780109 0.098166442 0.113666406 0.119526021 0.119526021 + 0.119526021 0.128859076 0.145041609 0.1599109 0.180536364 +0.202503617 0.225172051 0.241718923 0.239633855 0.241577047 + 0.241577047 0.241577047 0.241577047 0.241577047 0.241577047 +0.241577047 0.241577047 0.241577047 +; +var p8ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.00494107 0.005721239 0.006624593 +0.007670581 0.008881726 0.010284103 0.011907909 0.012521774 + 0.012521774 0.01408529 0.017172335 0.02039561 0.025464097 +0.03334933 0.040447581 0.049058497 0.057174474 0.059963112 + 0.059963112 0.059963112 0.059963112 0.059963112 0.059963112 +0.059963112 0.059963112 0.059963112 +; + +// ----------- rus ------- shocks on population growth ------------- // + +var p2rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.779655487 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.651536269 0.740591522 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.587062227 0.66575932 0.755005947 +0.918870933 0.918870933 0.918870933 0.918870933 0.918870933 + 0.918870933 0.929225222 0.903051964 0.873271822 0.88541803 +0.850482041 0.823926712 0.830798029 0.861320247 0.870982898 + 0.870982898 0.870982898 0.870982898 0.870982898 0.870982898 +0.870982898 0.870982898 0.870982898 +; +var p5rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.457712116 0.519069518 0.588652027 +0.667562237 0.812448614 0.812448614 0.812448614 0.812448614 + 0.812448614 0.816684995 0.87277968 0.798871918 0.73440638 +0.756827525 0.740679123 0.732193732 0.750091443 0.784798781 + 0.784798781 0.784798781 0.784798781 0.784798781 0.784798781 +0.784798781 0.784798781 0.784798781 +; +var p6rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.304849621 0.345715441 0.392059422 +0.444615924 0.50421775 0.613652166 0.613652166 0.613652166 + 0.613652166 0.633713029 0.632490448 0.677077928 0.573674364 +0.531332771 0.578932209 0.579750021 0.588564692 0.615551778 + 0.615551778 0.615551778 0.615551778 0.615551778 0.615551778 +0.615551778 0.615551778 0.615551778 +; +var p7rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.139703701 0.158431316 0.179669412 +0.203754526 0.231068306 0.262043565 0.318916978 0.318916978 + 0.318916978 0.328884131 0.351561699 0.342250284 0.359622113 +0.298718343 0.288762115 0.346311958 0.356432898 0.376706946 + 0.376706946 0.376706946 0.376706946 0.376706946 0.376706946 +0.376706946 0.376706946 0.376706946 +; +var p8rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.027761084 0.031482524 0.035702832 +0.040488882 0.045916513 0.052071731 0.059052071 0.071868615 + 0.071868615 0.076156935 0.088095187 0.088901255 0.084454347 +0.0961499 0.08214894 0.084611578 0.120368673 0.128615306 + 0.128615306 0.128615306 0.128615306 0.128615306 0.128615306 +0.128615306 0.128615306 0.128615306 +; + +// ----------- chi ------- shocks on population growth ------------- // + +var p2chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.836132961 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.683547181 0.794239241 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.491653627 0.569947783 0.660710016 +0.749794805 0.749794805 0.749794805 0.749794805 0.749794805 + 0.749794805 0.767346148 0.837291833 0.897669459 0.924235766 +0.927326659 0.928582001 0.930409222 0.934926285 0.943012567 + 0.943012567 0.943012567 0.943012567 0.943012567 0.943012567 +0.943012567 0.943012567 0.943012567 +; +var p5chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.308911372 0.35810445 0.415131357 +0.481239604 0.546126056 0.546126056 0.546126056 0.546126056 + 0.546126056 0.617668188 0.671554824 0.752348239 0.82106626 +0.858361466 0.868551545 0.873828738 0.881553809 0.891094232 + 0.891094232 0.891094232 0.891094232 0.891094232 0.891094232 +0.891094232 0.891094232 0.891094232 +; +var p6chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.16753083 0.19420954 0.225136745 +0.260989 0.302550605 0.343344079 0.343344079 0.343344079 +0.343344079 0.355765139 0.451398943 0.50847355 0.58936333 +0.665696877 0.718604759 0.740631634 0.753983577 0.772421699 +0.772421699 0.772421699 0.772421699 0.772421699 0.772421699 + 0.772421699 0.772421699 0.772421699 +; +var p7chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.054191479 0.062821286 0.072825361 +0.08442255 0.097866552 0.113451466 0.128748343 0.128748343 + 0.128748343 0.147531918 0.162627249 0.218362137 0.26796558 +0.339587166 0.406549886 0.467778875 0.500926956 0.521311169 + 0.521311169 0.521311169 0.521311169 0.521311169 0.521311169 +0.521311169 0.521311169 0.521311169 +; +var p8chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.005700256 0.006608003 0.007660305 +0.008880182 0.01029432 0.011933656 0.013834049 0.015699321 + 0.015699321 0.018607093 0.02296815 0.033239529 0.045978447 +0.072245484 0.103892298 0.137159177 0.176628117 0.202793499 + 0.202793499 0.202793499 0.202793499 0.202793499 0.202793499 +0.202793499 0.202793499 0.202793499 +; + +// ----------- ind -------- shocks on population growth ------------- // + +var p2ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.959325838 0.949864173 0.950909591 +0.951317554 0.95117407 0.952222059 0.952616763 0.950409741 + 0.950032412 0.95982936 0.972921729 0.978023109 0.972715466 +0.973405737 0.976937955 0.979571631 0.982535753 0.985385192 + 0.984810427 0.984994912 0.985187772 0.985389345 0.985599978 +0.985820028 0.986049861 0.986289852 +; +var p3ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.877249138 0.911259646 0.903504933 +0.905772372 0.907244185 0.906864312 0.908402897 0.908387086 + 0.886189877 0.902719134 0.922981791 0.944931726 0.946159968 +0.936900814 0.937557748 0.944264423 0.950474173 0.957863989 + 0.955282509 0.952976695 0.953299945 0.953637869 0.95399106 +0.954360125 0.954745691 0.955148399 +; +var p4ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.714826409 0.740820097 0.767759009 +0.759391375 0.759391375 0.759391375 0.759391375 0.759391375 + 0.759391375 0.764418728 0.788893603 0.816787491 0.855256765 +0.881993314 0.890468302 0.909074626 0.928166104 0.941906608 + 0.941906608 0.941906608 0.941906608 0.941906608 0.941906608 +0.941906608 0.941906608 0.941906608 +; +var p5ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.555043112 0.575226498 0.596143825 +0.617821782 0.61108828 0.61108828 0.61108828 0.61108828 +0.61108828 0.628831302 0.650372481 0.672116155 0.71456104 +0.763784067 0.800683037 0.82039103 0.848005054 0.873350269 + 0.873350269 0.873350269 0.873350269 0.873350269 0.873350269 +0.873350269 0.873350269 0.873350269 +; +var p6ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.335815557 0.348027032 0.360682561 +0.37379829 0.387390955 0.383168868 0.383168868 0.383168868 + 0.383168868 0.407277714 0.438134553 0.45109628 0.48986942 +0.541557468 0.601173856 0.647937661 0.680201732 0.717620394 + 0.717620394 0.717620394 0.717620394 0.717620394 0.717620394 +0.717620394 0.717620394 0.717620394 +; +var p7ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.110766231 0.114794094 0.118968424 +0.123294549 0.127777987 0.132424459 0.130981195 0.130981195 + 0.130981195 0.145233361 0.167534599 0.195433492 0.22324047 +0.25954839 0.30501012 0.359393119 0.405151639 0.442768491 + 0.442768491 0.442768491 0.442768491 0.442768491 0.442768491 +0.442768491 0.442768491 0.442768491 +; +var p8ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.012399205 0.012850085 0.013317361 +0.013801629 0.014303506 0.014823633 0.015362675 0.01519524 +0.01519524 0.017061322 0.020650202 0.030745102 0.042858973 +0.057869269 0.07338896 0.093001314 0.120708978 0.146184372 + 0.146184372 0.146184372 0.146184372 0.146184372 0.146184372 +0.146184372 0.146184372 0.146184372 +; + +//------------------- shocks on debtratio ------------------------------// + +var ddynam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.042809925 0.042809925 0.042809925 +0.042809925 0.042809925 0.042809925 0.042809925 0.042809925 +0.040669429 0.035318189 0.039093472 0.047024413 0.060992156 +0.060992156 0.060992156 0.060992156 0.060992156 0.060992156 + 0.060992156 0.060992156 0.060992156 0.060992156 0.060992156 +0.060992156 0.060992156 0.060992156 +; +var ddyadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.044976211 0.044976211 0.044976211 +0.044976211 0.044976211 0.044976211 0.044976211 0.044976211 +0.044976211 0.041602995 0.038229779 0.051722642 0.066182791 +0.066182791 0.066182791 0.066182791 0.066182791 0.066182791 + 0.066182791 0.066182791 0.066182791 0.066182791 0.066182791 +0.066182791 0.066182791 0.066182791 +; +var ddyeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.002290146 0.002290146 0.002290146 +0.002290146 0.002290146 0.002290146 0.002290146 0.002290146 +0.002290146 0.002290146 0.002290146 0.002290146 0.003489057 +0.003489057 0.003489057 0.003489057 0.003489057 0.003489057 + 0.003489057 0.003489057 0.003489057 0.003489057 0.003489057 +0.003489057 0.003489057 0.003489057 +; +var ddymen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.001932557 0.001932557 0.001932557 +0.001932557 0.001932557 0.001932557 0.001932557 0.001932557 +0.001546046 0.001835929 0.002653999 0.004999042 0.004304415 +0.004304415 0.004304415 0.004304415 0.004304415 0.004304415 + 0.004304415 0.004304415 0.004304415 0.004304415 0.004304415 +0.004304415 0.004304415 0.004304415 +; +var ddylac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.001486455 0.001486455 0.001486455 +0.001486455 0.001486455 0.001486455 0.001486455 0.001486455 +0.001486455 0.001486455 0.004012812 0.003674548 0.004104364 +0.004104364 0.004104364 0.004104364 0.004104364 0.004104364 + 0.004104364 0.004104364 0.004104364 0.004104364 0.004104364 +0.004104364 0.004104364 0.004104364 +; +var ddyjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.068588 0.068588 0.068588 +0.068588 0.068588 0.06927388 0.0703027 0.0668733 +0.0651586 0.068588 0.0720174 0.085735 0.13396642 +0.13396642 0.13396642 0.13396642 0.13396642 0.13396642 +0.13396642 0.13396642 0.13396642 0.13396642 0.13396642 +0.13396642 0.13396642 0.13396642 +; +var ddyssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.001456596 0.001456596 0.001456596 +0.001456596 0.001456596 0.001310936 0.001456596 0.001456596 +0.001456596 0.001383766 0.002435258 0.004958908 0.003219776 +0.003219776 0.003219776 0.003219776 0.003219776 0.003219776 + 0.003219776 0.003219776 0.003219776 0.003219776 0.003219776 +0.003219776 0.003219776 0.003219776 +; +var ddyrus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.003005931 0.003005931 0.003005931 +0.003005931 0.003005931 0.003005931 0.003005931 0.003005931 +0.003005931 0.003005931 0.003005931 0.002479893 0.003005931 +0.003005931 0.003005931 0.003005931 0.003005931 0.003005931 + 0.003005931 0.003005931 0.003005931 0.003005931 0.003005931 +0.003005931 0.003005931 0.003005931 +; +var ddychi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.00099159 0.00099159 0.00099159 +0.00099159 0.00099159 0.00099159 0.00099159 0.001090749 +0.00099159 0.001090749 0.00098226 0.001930948 0.001833757 +0.001833757 0.001833757 0.001833757 0.001833757 0.001833757 + 0.001833757 0.001833757 0.001833757 0.001833757 0.001833757 +0.001833757 0.001833757 0.001833757 +; +var ddyind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.000955737 0.000955737 0.000955737 +0.000955737 0.000955737 0.000955737 0.000955737 0.000955737 +0.000955737 0.000955737 0.001399205 0.002562997 0.002531276 +0.002531276 0.002531276 0.002531276 0.002531276 0.002531276 + 0.002531276 0.002531276 0.002531276 0.002531276 0.002531276 +0.002531276 0.002531276 0.002531276 +; + +//--------------------- shocks on conspublique -------------------------// + +var conspubnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.170280977 0.170280977 0.170280977 +0.170280977 0.170280977 0.170280977 0.170280977 0.170280977 + 0.164321143 0.169202777 0.15708339 0.159702597 0.149242875 +0.149242875 0.149242875 0.149242875 0.149242875 0.149242875 +0.149242875 0.149242875 0.149242875 0.149242875 0.149242875 + 0.149242875 0.149242875 0.149242875 +; +var conspubadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.142865046 0.142865046 0.142865046 +0.142865046 0.142865046 0.142865046 0.142865046 0.142865046 + 0.142865046 0.163146515 0.197673806 0.198800038 0.195747583 +0.195747583 0.195747583 0.195747583 0.195747583 0.195747583 +0.171279136 0.171279136 0.171279136 0.171279136 0.171279136 + 0.171279136 0.171279136 0.171279136 +; +var conspubeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.104169516 0.104169516 0.104169516 +0.104169516 0.104169516 0.104169516 0.104169516 0.105732058 + 0.104169516 0.106773754 0.117547985 0.136812642 0.164212094 +0.164212094 0.164212094 0.164212094 0.164212094 0.164212094 +0.164212094 0.164212094 0.164212094 0.164212094 0.164212094 + 0.164212094 0.164212094 0.164212094 +; +var conspubmen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.167804208 0.167804208 0.167804208 +0.167804208 0.167804208 0.167804208 0.167804208 0.167804208 + 0.167804208 0.161295015 0.161988101 0.151067262 0.154196071 +0.154196071 0.154196071 0.154196071 0.154196071 0.154196071 +0.154196071 0.154196071 0.154196071 0.154196071 0.154196071 + 0.154196071 0.154196071 0.154196071 +; +var conspublac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.101727665 0.101727665 0.101727665 +0.101727665 0.101727665 0.101727665 0.101727665 0.101727665 + 0.101727665 0.102440887 0.106998074 0.117975453 0.150334205 +0.150334205 0.150334205 0.150334205 0.150334205 0.150334205 +0.150334205 0.150334205 0.150334205 0.150334205 0.150334205 + 0.150334205 0.150334205 0.150334205 +; +var conspubjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.108820692 0.108820692 0.108820692 +0.108820692 0.108820692 0.108820692 0.108820692 0.110453003 + 0.108820692 0.104568715 0.13509521 0.129785657 0.164831366 +0.164831366 0.164831366 0.164831366 0.164831366 0.164831366 +0.164831366 0.164831366 0.164831366 0.164831366 0.164831366 + 0.164831366 0.164831366 0.164831366 +; +var conspubssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.100729755 0.100729755 0.100729755 +0.100729755 0.100729755 0.100729755 0.100729755 0.100729755 + 0.100729755 0.123849429 0.139029694 0.148638944 0.150356571 +0.150356571 0.150356571 0.150356571 0.150356571 0.150356571 +0.150356571 0.150356571 0.150356571 0.150356571 0.150356571 + 0.150356571 0.150356571 0.150356571 +; +var conspubrus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.126599505 0.126599505 0.126599505 +0.126599505 0.126599505 0.126599505 0.126599505 0.126599505 + 0.126599505 0.126599505 0.124067515 0.125006736 0.162501299 +0.162501299 0.162501299 0.162501299 0.162501299 0.162501299 +0.162501299 0.162501299 0.162501299 0.162501299 0.162501299 + 0.162501299 0.162501299 0.162501299 +; +var conspubchi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.077531613 0.077531613 0.077531613 +0.077531613 0.077531613 0.077531613 0.077531613 0.077531613 + 0.077531613 0.089595279 0.108449084 0.114667849 0.125176012 +0.125176012 0.125176012 0.125176012 0.125176012 0.125176012 +0.125176012 0.125176012 0.125176012 0.125176012 0.125176012 + 0.125176012 0.125176012 0.125176012 +; +var conspubind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 +22 23 24 25 26:49; values 0.080276755 0.080276755 0.080276755 +0.080276755 0.080276755 0.080276755 0.080276755 0.080276755 + 0.080276755 0.097866454 0.099278094 0.106501051 0.110200901 +0.110200901 0.110200901 0.110200901 0.110200901 0.110200901 +0.110200901 0.110200901 0.110200901 0.110200901 0.110200901 + 0.110200901 0.110200901 0.110200901 +; + +//------------------ shocks ---------- consumption tax -----------------// + +var tcnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.111111111 0.111111111 0.111111111 +0.111111111 0.111111111 0.111111111 0.125888889 0.14 +0.173333333 0.191111111 0.184166667 0.204166667 0.2 0.2 +0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 + 0.2 0.2 +; +var tcadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.111111111 0.111111111 0.111111111 +0.111111111 0.111111111 0.113888889 0.122222222 0.12 +0.144444444 0.177777778 0.188888889 0.194444444 0.2 0.2 +0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 + 0.2 0.2 +; +var tceas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.079444444 0.097777778 0.109083333 0.106944444 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 0.11 +; +var tcmen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.085402778 0.099733333 0.119472222 0.106944444 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 0.11 +; +var tclac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.083416667 0.088 0.114277778 0.088229167 0.11 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 +; +var tcjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.111111111 0.111111111 0.111111111 +0.111111111 0.111111111 0.111111111 0.122222222 0.133333333 +0.144444444 0.177777778 0.179444444 0.170138889 0.2 0.2 + 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 + 0.2 +; +var tcssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.079444444 0.129555556 0.155833333 0.139027778 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 0.11 +; +var tcrus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.0715 +0.079444444 0.097777778 0.103888889 0.157743056 0.11 0.11 +0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 + 0.11 +; +var tcchi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.079444444 0.095333333 0.064930556 0.052402778 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 0.11 +; +var tcind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 0.061111111 0.061111111 0.061111111 +0.061111111 0.061111111 0.061111111 0.067222222 0.073333333 +0.079444444 0.1012 0.101291667 0.106944444 0.11 0.11 0.11 + 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 0.11 +0.11 +; + +//--------------- shocks replacement rate rep --------------------------// + +var repnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.2075 0.2075 0.2075 0.2075 0.2075 0.2075 +0.2075 0.2075 0.259375 0.31125 0.363125 0.415 0.415 0.404 +0.393 0.382 0.371 0.36 0.36 0.36 0.36 0.36 0.36 0.36 +0.36 0.36 +; +var repadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.2125 0.2125 0.2125 0.2125 0.2125 0.2125 +0.2125 0.2125 0.265625 0.31875 0.371875 0.425 0.425 0.414 +0.403 0.392 0.381 0.37 0.37 0.37 0.37 0.37 0.37 0.37 +0.37 0.37 +; +var repeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.2125 0.2125 0.2125 0.2125 0.2125 0.2125 +0.2125 0.2125 0.265625 0.31875 0.371875 0.425 0.425 0.425 +0.425 0.425 0.425 0.425 0.425 0.425 0.425 0.425 0.425 0.425 +0.425 0.425 +; +var repmen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.2 0.2 0.2 0.2 0.2 0.2 0.2 + 0.2 0.25 0.3 0.35 0.4 0.4 0.4 0.4 0.4 0.4 + 0.4 0.4 0.4 0.4 0.4 0.4 0.4 0.4 0.4 +; +var replac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.125 0.125 0.125 0.125 0.125 0.125 +0.125 0.125 0.15625 0.1875 0.21875 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 +; +var repjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.1375 0.1375 0.1375 0.1375 0.1375 0.1375 +0.1375 0.1375 0.171875 0.20625 0.240625 0.275 0.275 0.264 +0.253 0.242 0.231 0.22 0.22 0.22 0.22 0.22 0.22 0.22 +0.22 0.22 +; +var repssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.0375 0.0375 0.0375 0.0375 0.0375 0.0375 +0.0375 0.0375 0.046875 0.05625 0.065625 0.075 0.075 0.075 +0.075 0.075 0.075 0.075 0.075 0.075 0.075 0.075 0.075 0.075 +0.075 0.075 +; +var reprus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.225 0.225 0.225 0.225 0.225 0.225 +0.225 0.225 0.28125 0.3375 0.39375 0.45 0.45 0.45 0.45 0.45 +0.45 0.45 0.45 0.45 0.45 0.45 0.45 0.45 0.45 0.45 +; +var repchi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.15 0.15 0.15 0.15 0.15 0.15 +0.15 0.15 0.1875 0.225 0.2625 0.3 0.3 0.3 0.3 0.3 +0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 + +; +var repind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.375 0.375 0.375 0.375 0.375 0.375 +0.375 0.375 0.46875 0.5625 0.65625 0.75 0.75 0.75 0.75 0.75 +0.75 0.75 0.75 0.75 0.75 0.75 0.75 0.75 0.75 0.75 +; + +//-------------------------- shocks on mm -------------------------// + +var mmnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.304725656 1.48659229 1.244390949 +1.138966681 1.256260388 1.160434015 0.952488625 1.090173354 + 1.431325881 1.177891962 0.917263535 1.047459359 1.112045976 +0.987444341 1.034684953 1.01409443 1.019806974 1.04964396 + 1.04962793 1.049611265 1.049593949 1.049575966 1.049557301 +1.049537937 1.049517862 1 +; +var mmadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.196116518 1.311395468 1.14941639 +1.219559241 1.09070021 0.936104331 1.097953935 1.012073365 + 1.113627525 1.140827264 1.018353653 0.873889021 0.955996284 +0.941345278 0.961561539 1.001355938 1.003215022 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.071660001 1.182556046 1.209118711 +1.379305901 1.163357608 0.937726165 1.320726152 0.900969122 + 1.236137585 0.946576569 1.006700167 1.087146758 0.845747172 +0.735526865 0.935010124 0.917914682 0.88994537 0.999660915 +0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmmen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.120782786 1.21610902 1.188976026 +1.255549969 1.215078874 1.19943558 1.292437927 1.170745012 + 1.476581934 1.455614356 1.315081885 1.359042294 1.109713323 +0.998428051 1.10684688 1.001092799 0.970196439 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmlac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.274030412 1.425960203 1.384041576 +1.295090486 1.240877839 1.242174864 1.254134084 1.227105175 + 1.363684893 1.361237476 1.230101103 1.173452937 1.065258834 +1.019818583 0.988949924 0.966788036 0.945854919 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.42948343 1.561702179 1.222408219 +1.307451543 1.217945727 1.185235075 1.38495464 1.096795003 + 1.100373222 0.805927297 1.186612228 0.867508904 0.784828611 +0.948653874 0.932539134 0.909851286 0.996252361 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.154996155 1.19012962 1.196092464 +1.198904455 1.221043173 1.264114244 1.223842194 1.239098236 + 1.287279154 1.295817985 1.236354924 1.384675549 1.354822468 +1.265788584 1.246078701 1.137262553 1.088876736 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmrus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.131213491 1.24170553 1.146590632 +1.319262583 1.356505614 0.883044864 1.55957394 0.900309783 + 1.14168977 1.169268662 0.841395805 1.133901052 0.978563665 +0.713515635 1.05313342 0.887962562 0.889089681 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmchi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.156344609 1.526697904 1.223293886 +1.029885905 1.101027645 1.136643323 1.187590173 1.109346786 + 1.466024095 1.268604948 1.278139903 0.85168693 1.089554455 +0.840292383 0.973047699 0.974323038 0.897926599 0.999660915 + 0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; +var mmind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26:49; values 1.033769286 1.164773996 1.191858705 +1.177044004 1.266885477 1.218714623 1.249482588 1.169656384 + 1.25292936 1.377121195 1.259398912 1.199135153 1.175703687 +1.047073439 1.023387394 0.982640009 0.95042704 0.999660915 +0.999645647 0.999629776 0.999613285 0.999596158 0.999578382 +0.99955994 0.999540821 1 +; + +//------------------------- shocks on nn --------------------------// + +var nnadvnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 2.737660895 2.509770081 2.213990435 +2.045013984 2.189717877 1.901139104 1.533619772 1.767836191 +1.641188455 1.276908817 1.236728359 1.373026173 1.14550745 +0.984762221 0.938788373 0.872442177 0.861483042 0.847466972 + 0.807111402 0.768677526 0.732073834 0.697213175 0.664012548 +0.632392903 0.602278955 0.573599005 +; +var nneasnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.776607208 0.637880368 0.507421766 +0.493038906 0.597077583 0.552922591 0.446806948 0.619545059 +0.512020374 0.442196733 0.355357774 0.390006489 0.404783524 +0.307851049 0.229311879 0.207221462 0.187567959 0.163683168 + 0.155888732 0.148465459 0.141395675 0.134662548 0.128250045 +0.1221429 0.116326572 0.110787211 +; +var nnmennam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.643436259 0.552723309 0.45215612 +0.432020811 0.476241952 0.460630249 0.476111784 0.646039136 +0.693786078 0.715722396 0.884474832 1.26807268 1.645280449 +1.641829271 1.660091947 1.775871571 1.753103251 1.667820062 + 1.588400059 1.512761961 1.440725677 1.372119693 1.30678066 +1.244553009 1.18528858 1.128846267 +; +var nnlacnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.628185755 0.613406928 0.58838854 +0.654419902 0.744124479 0.735012888 0.786787118 1.035956247 +1.166078098 1.110972077 1.283901136 1.721782392 1.928886871 +1.847732758 1.908312324 1.823961315 1.738875518 1.612779677 + 1.535980645 1.462838709 1.393179723 1.326837832 1.263655078 +1.203481026 1.146172406 1.091592768 +; +var nnjapnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.316280356 0.346523061 0.364031095 +0.357600321 0.410499358 0.397979546 0.406485256 0.591045002 +0.594634975 0.457142857 0.312782428 0.404629029 0.335114945 +0.236508024 0.227217114 0.204785863 0.18373504 0.179491288 + 0.170944084 0.16280389 0.155051323 0.147667927 0.140636121 +0.133939163 0.127561107 0.121486769 +; +var nnssanam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 1.078307209 0.954561347 0.764198591 +0.734537789 0.773192615 0.751517419 0.818662554 1.051890542 +1.195585739 1.075263585 1.182914849 1.594419208 2.107722151 +2.567869843 3.291709921 3.964230475 4.44571111 4.746811432 + 4.520772792 4.305497897 4.100474188 3.905213512 3.719250964 +3.542143775 3.373470262 3.212828821 +; +var nnrusnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 1.263917419 1.095832238 0.91531549 +0.843378174 0.97688307 1.054834955 0.802688113 1.314295447 +1.085398981 0.865762948 0.859424732 0.788340904 0.85339882 +0.750962725 0.542636809 0.552312041 0.483616122 0.421626949 + 0.401549476 0.382428072 0.364217211 0.346873535 0.330355747 +0.314624521 0.299642401 0.285373715 +; +var nnchinam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 4.749303854 4.209185189 4.322741514 +4.249454939 3.842477413 3.367672736 3.298630238 4.112826918 +4.18516129 4.286618005 4.616743291 6.433095393 5.230735895 +5.124942421 4.361207919 4.101406247 3.940554726 3.469606497 + 3.30438714 3.147035371 2.997176544 2.854453851 2.718527478 +2.589073788 2.46578456 2.348366248 +; +var nnindnam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 4.054790781 3.212719968 2.517228631 +2.410963258 2.491565288 2.512638231 2.638830744 3.461640362 +3.714023769 3.251118063 3.801013792 5.218775687 5.974472739 +6.316474122 6.697908943 6.624775552 6.41929323 5.98257319 +5.697688752 5.42637024 5.167971657 4.921877769 4.687502637 +4.464288226 4.251703072 4.049241021 +; + +//--------------------- shocks on skilled proportions ------------------// + +var phinam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.093717733 0.093717733 0.093717733 +0.093717733 0.117147166 0.146433958 0.183042448 0.228803059 +0.302113752 0.469195452 0.5 0.525 0.55 0.55 0.55 0.55 + 0.55 0.55 0.55 0.55 0.55 0.55 0.55 0.55 0.55 0.55 +; +var phiadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.016504496 0.016504496 0.016504496 +0.016504496 0.02063062 0.025788275 0.032235344 0.04029418 +0.108049582 0.168556391 0.24 0.278653805 0.3 0.3 0.3 + 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 + +; +var phieas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.015494457 0.015494457 0.015494457 +0.015494457 0.019368072 0.02421009 0.030262612 0.037828265 +0.091359618 0.082126471 0.138541498 0.18584032 0.2 0.2 + 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 + 0.2 +; +var phimen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.004347393 0.004347393 0.004347393 +0.004347393 0.005434242 0.006792802 0.008491003 0.010613753 +0.033885697 0.071755788 0.082896999 0.1332004 0.15 0.15 + 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 +0.15 0.15 +; +var philac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.009983981 0.009983981 0.009983981 +0.009983981 0.012479976 0.01559997 0.019499963 0.024374954 +0.03307769 0.095009906 0.139989615 0.15254428 0.15 0.15 +0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 0.15 +0.15 0.15 +; +var phijap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.03315712 0.03315712 0.03315712 +0.03315712 0.0414464 0.051807999 0.064759999 0.080949999 +0.04 0.27 0.3 0.32 0.35 0.35 0.35 0.35 0.35 0.35 0.35 + 0.35 0.35 0.35 0.35 0.35 0.35 0.35 +; +var phissa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.002270809 0.002270809 0.002270809 +0.002270809 0.002838512 0.00354814 0.004435175 0.005543968 +0.014673323 0.001551918 0.036498519 0.039281761 0.05 0.05 + 0.05 0.05 0.05 0.05 0.05 0.05 0.05 0.05 0.05 0.05 +0.05 0.05 +; +var phirus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.02242942 0.02242942 0.02242942 +0.02242942 0.028036775 0.035045969 0.043807461 0.054759326 +0.143437283 0.119411389 0.206495405 0.326101236 0.25 0.25 + 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 +; +var phichi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.006617984 0.006617984 0.006617984 +0.006617984 0.00827248 0.0103406 0.01292575 0.016157188 +0.013309886 0.022024493 0.061736833 0.071152581 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 +; +var phiind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.002329718 0.002329718 0.002329718 +0.002329718 0.002912148 0.003640185 0.004550231 0.005687789 +0.024016439 0.034087044 0.053144364 0.055489056 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 +; + +// ------------------------- shocks on psi ------------------------- // + +var psinam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psiadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psieas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psimen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psilac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psijap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psissa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psirus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psichi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; +var psiind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:49; values 0.25 0.25 0.25 0.25 0.25 0.25 +0.25 0.25 0.4 0.55 0.7 0.95 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 +; + +// ---------------------- shocks on lams & lamu 5 --------------------- // + +var lams5nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.7 0.7 0.7 0.7 0.7 0.7 0.7 + 0.7 0.7 0.7 0.7 0.7 0.7 0.72 0.74 0.76 0.78 +0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 +; +var lams5adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.7 0.7 0.7 0.7 0.7 0.7 0.7 + 0.7 0.7 0.7 0.7 0.7 0.7 0.72 0.74 0.76 0.78 +0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 +; +var lams5eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.7 0.7 0.7 0.7 0.7 0.7 0.7 + 0.7 0.7 0.7 0.7 0.7 0.7 0.72 0.74 0.76 0.78 +0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 0.8 +; +var lams5ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lams5ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; + +var lamu5nam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.52 0.54 0.56 0.58 +0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 +; +var lamu5adv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.52 0.54 0.56 0.58 +0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 +; +var lamu5eas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5men; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5lac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5jap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.52 0.54 0.56 0.58 +0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 0.6 +; +var lamu5ssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5rus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5chi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; +var lamu5ind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26:33; values 0.5 0.5 0.5 0.5 0.5 0.5 0.5 + 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 +; + +// ------------- shocks on skill premium -------------------- // + +var aaadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.051225354 0.05132346 +0.051006191 0.051353981 0.052775478 0.057273857 0.079390417 + 0.11020285 0.15364 0.22563639 0.29163103 0.40506609 +0.48132536 0.51834073 0.54216328 0.55330774 0.55529325 +0.55467315 0.5539995 0.55362385 0.55364874 0.55368488 +0.55368681 0.55368882 0.55369091 0.55369309 0.55368663 +0.55368081 0.55367564 0.55367118 0.55367118 0.55367118 +0.55367118 +; +var aachi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.034984369 0.034966913 +0.033816958 0.034057256 0.03591725 0.039132271 0.054480762 +0.077313776 0.092083555 0.10377004 0.13867089 0.21696072 +0.28499411 0.32716509 0.35744666 0.37325825 0.38024337 +0.38139566 0.38002483 0.37918308 0.37847744 0.37816992 +0.37817422 0.3781787 0.37818338 0.37818825 0.3781792 +0.3781727 0.37816878 0.3781675 0.3781675 0.3781675 +0.3781675 +; +var aaeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.059252714 0.05935244 +0.058860925 0.058408217 0.059021848 0.064653089 0.090907789 + 0.12462666 0.17224715 0.22292505 0.26067335 0.35630235 +0.42305344 0.46490446 0.49542013 0.50526813 0.50658514 +0.50583184 0.50340406 0.50198882 0.50098796 0.50063023 +0.50063475 0.50063947 0.50064439 0.50064952 0.50063995 +0.50063305 0.50062886 0.50062749 0.50062749 0.50062749 +0.50062749 +; +var aaind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.017332253 0.017312142 +0.017084583 0.016881181 0.017268646 0.018659045 0.026406117 + 0.038010594 0.064958282 0.10868949 0.14676483 0.21287982 +0.27260998 0.3183419 0.34757641 0.36768362 0.37712164 +0.3790948 0.37893313 0.37858845 0.37824461 0.37810743 +0.37811174 0.37811624 0.37812094 0.37812583 0.37811676 +0.37811026 0.37810634 0.37810508 0.37810508 0.37810508 +0.37810508 +; +var aajap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.099351354 0.099571621 +0.098899921 0.10072341 0.10436869 0.11382969 0.15516842 +0.21066256 0.23623332 0.30789837 0.39381032 0.49854734 +0.5826052 0.63034986 0.64146624 0.65141946 0.65562445 +0.65322413 0.65250178 0.65168691 0.65081809 0.65078928 +0.65079106 0.65079292 0.65079485 0.65079686 0.65079092 +0.65078557 0.65078083 0.65077675 0.65077675 0.65077675 +0.65077675 +; +var aalac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.044266378 0.044264741 +0.043659876 0.043463734 0.04521925 0.04980653 0.069691246 +0.098491037 0.12397274 0.182333 0.25261875 0.35438321 +0.41285166 0.43601899 0.44592465 0.44920526 0.45073869 +0.45212234 0.45155233 0.45096024 0.45052278 0.45036394 +0.45036854 0.45037334 0.45037834 0.45038356 0.45037396 +0.45036709 0.450363 0.45036167 0.45036167 0.45036167 +0.45036167 +; +var aamen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.024427944 0.02439484 +0.02414939 0.024047192 0.024566425 0.026780679 0.037767165 + 0.053852722 0.083835446 0.14601966 0.19664869 0.28918809 +0.35992176 0.39748083 0.42214749 0.43253881 0.43678283 +0.43853655 0.43894939 0.43904878 0.43887068 0.43878618 +0.43879062 0.43879526 0.43880009 0.43880513 0.43879572 +0.43878893 0.43878479 0.43878344 0.43878344 0.43878344 +0.43878344 +; +var aanam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.19824931 0.19895977 +0.1974446 0.19924844 0.2071317 0.22244286 0.29182085 +0.38102177 0.44690783 0.52990884 0.59318295 0.68516085 +0.73293504 0.75266234 0.76233989 0.76663314 0.76884628 +0.76943714 0.76889088 0.76868624 0.76840454 0.76821317 +0.76821483 0.76821657 0.76821837 0.76822025 0.7687914 +0.76926394 0.76966027 0.7699911 0.7699911 0.7699911 +0.7699911 +; +var aarus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.080930759 0.081167691 +0.080583015 0.080918 0.082213217 0.08850542 0.12481007 + 0.16742038 0.23509727 0.30135319 0.34417475 0.46859933 +0.53633178 0.56438173 0.58681749 0.5810137 0.575027 +0.5752283 0.57320177 0.57190822 0.5708485 0.57051859 +0.57052331 0.57052824 0.57053338 0.57053874 0.57052905 +0.57052221 0.57051824 0.57051699 0.57051699 0.57051699 +0.57051699 +; +var aassa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +24 25 26 27 28 29 30 31 32 33:49; values 0.01793145 0.017867044 +0.017750796 0.017663189 0.018139919 0.01974299 0.027845297 + 0.040208054 0.059667278 0.069935812 0.091112601 0.15861224 +0.20883917 0.24041485 0.25699231 0.26298821 0.26758372 +0.27048431 0.27339569 0.2748902 0.27552723 0.27569453 +0.27569871 0.27570308 0.27570763 0.27571238 0.27570415 +0.2756985 0.27569545 0.27569454 0.27569454 0.27569454 +0.27569454 +; + +// ---------------------- shocks on unemployment --------------------- // + +var etaadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.028799361 0.036368878 + 0.046041377 0.058505114 0.074709126 0.096088731 0.028706397 + 0.018773315 0.020291803 0.024453205 0.036996943 0.042719526 +0.035676528 0.034978042 0.033746848 0.032050714 0.030060795 +0.028012313 0.027993451 0.027982935 0.027983632 0.027984644 + 0.027984698 0.027984754 0.027984812 0.027984873 0.027984693 +0.02798453 0.027984385 0.02798426 0.02798426 0.02798426 +0.02798426 +; +var etachi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.003354953 0.004203341 + 0.005267076 0.006608319 0.008303857 0.010452273 0.007555024 + 0.006241689 0.00690921 0.008083529 0.011334506 0.005049266 +0.006097755 0.005999323 0.005833913 0.005582555 0.005279234 +0.004944844 0.004938227 0.004934173 0.00493078 0.004929302 + 0.004929323 0.004929345 0.004929367 0.00492939 0.004929347 +0.004929316 0.004929297 0.004929291 0.004929291 0.004929291 + 0.004929291 +; +var etaeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.00520133 0.006521829 + 0.008181477 0.010273663 0.012923514 0.016323428 0.010945181 + 0.008797024 0.00989863 0.011915085 0.017043906 0.012317887 +0.034692213 0.034043042 0.032965845 0.03118168 0.029144204 +0.027078489 0.027011989 0.026973301 0.026945975 0.026936215 + 0.026936339 0.026936467 0.026936602 0.026936741 0.02693648 +0.026936292 0.026936178 0.026936141 0.026936141 0.026936141 + 0.026936141 +; +var etaind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.006033912 0.007573918 + 0.009516546 0.011973574 0.015092986 0.019071367 0.013748483 + 0.01133147 0.012662659 0.015156604 0.021548579 0.012458576 +0.014517858 0.014269006 0.013812754 0.013229158 0.012503447 +0.011688336 0.011686516 0.011682638 0.011678772 0.01167723 +0.011677279 0.01167733 0.011677382 0.011677437 0.011677335 +0.011677262 0.011677218 0.011677204 0.011677204 0.011677204 + 0.011677204 +; +var etajap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.001886256 0.002360675 + 0.002953516 0.003702426 0.004648767 0.005863276 0.003983901 + 0.003257032 0.003601951 0.004412352 0.006593738 0.005773679 +0.01327615 0.013200758 0.012611396 0.011996621 0.011308294 +0.010549669 0.010542213 0.010533802 0.010524833 0.010524536 + 0.010524554 0.010524573 0.010524593 0.010524614 0.010524552 +0.010524497 0.010524448 0.010524406 0.010524406 0.010524406 + 0.010524406 +; +var etalac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.004394963 0.005509337 + 0.006909461 0.00867478 0.010912652 0.013765008 0.009695453 + 0.007941499 0.008835512 0.010666661 0.015565321 0.014139132 +0.021631624 0.020901287 0.019880911 0.018728509 0.017551646 +0.016382597 0.016373121 0.016363286 0.016356025 0.01635339 +0.016353466 0.016353546 0.016353629 0.016353716 0.016353556 +0.016353442 0.016353374 0.016353353 0.016353353 0.016353353 + 0.016353353 +; +var etamen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.007953811 0.009989573 + 0.01256076 0.015818749 0.0199646 0.025273636 0.016789244 + 0.013371911 0.014868411 0.017974314 0.026040068 0.026972246 +0.033267444 0.032443542 0.031198558 0.029506931 0.027646662 +0.025741205 0.025751785 0.025754333 0.025749767 0.025747602 + 0.025747715 0.025747834 0.025747958 0.025748087 0.025747846 +0.025747672 0.025747566 0.025747531 0.025747531 0.025747531 + 0.025747531 +; +var etanam; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.007346759 0.009223341 + 0.011567458 0.014567017 0.018470765 0.023624088 0.016533262 + 0.014108394 0.016430622 0.020746723 0.030731861 0.020226198 +0.013604296 0.013115643 0.012499044 0.011821164 0.011122317 +0.010410149 0.010405504 0.010403763 0.010401365 0.010399736 + 0.01039975 0.010399765 0.01039978 0.010399796 0.010404657 +0.010408676 0.010412045 0.010414856 0.010414856 0.010414856 + 0.010414856 +; +var etarus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.004312659 0.005407054 + 0.006780961 0.008516164 0.010713515 0.013536352 0.009919526 + 0.008325402 0.009629154 0.011860082 0.017050648 0.018571051 +0.022818989 0.022183581 0.021383213 0.019969589 0.01858101 +0.017330581 0.017294668 0.01727177 0.017253026 0.017247193 + 0.017247277 0.017247364 0.017247455 0.017247549 0.017247378 +0.017247257 0.017247187 0.017247165 0.017247165 0.017247165 + 0.017247165 +; +var etassa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 +23 24 25 26 27 28 29 30 31 32 33:49; values 0.011768195 0.014846073 + 0.018773662 0.023813134 0.030328319 0.038833064 0.029739879 + 0.025465414 0.029129089 0.035364787 0.051469669 0.047591205 +0.051033983 0.048579098 0.045695962 0.042544434 0.03944654 +0.03639647 0.036478447 0.036520781 0.036538878 0.036543636 + 0.036543755 0.036543879 0.036544008 0.036544143 0.036543909 +0.036543748 0.036543662 0.036543636 0.036543636 0.036543636 + 0.036543636 +; + +// ------------------------- shocks on ratiogdp ----------------------- // + +var tfpadv; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.54867406 + 0.55016499 0.55121556 0.55257325 0.54694673 0.53305848 +0.49862037 0.47456139 0.49338723 0.54622994 0.62600955 +0.78216742 0.86190594 +; +var tfpchi; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.038072378 + 0.03827747 0.037949004 0.037950494 0.03742763 0.036270315 +0.033675815 0.031491077 0.029989213 0.028510546 0.03180544 + 0.058644165 0.12008983 +; +var tfpeas; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.29634396 + 0.2973081 0.29611524 0.29469976 0.28529983 0.27385948 +0.25642445 0.24087838 0.25212456 0.26718522 0.2965297 +0.30392631 0.37457905 +; +var tfpind; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.044222969 + 0.04454361 0.044561181 0.044528604 0.043284816 0.041044388 +0.036578589 0.032644145 0.032236979 0.033713483 0.037997868 + 0.052396567 0.074057072 +; +var tfpjap; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.57740571 + 0.57920045 0.58100637 0.58220513 0.57938844 0.5708945 +0.55478998 0.54603175 0.52064545 0.56200272 0.63596243 +0.88365177 0.96311579 +; +var tfplac; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.23485445 + 0.23599867 0.23552658 0.23597783 0.23260414 0.22617245 +0.21087118 0.19861263 0.19518601 0.2093886 0.24472491 +0.24102078 0.26885901 +; +var tfpmen; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.1773513 + 0.17863369 0.17902194 0.17994256 0.17599616 0.1688019 +0.15269466 0.13800441 0.13742846 0.15013 0.16938041 +0.1666316 0.1884702 +; +var tfprus; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.25550934 + 0.25598589 0.25468463 0.25535451 0.25085884 0.24251532 +0.23429214 0.22333872 0.23918689 0.25441269 0.2796369 +0.43555429 0.24294775 +; +var tfpssa; periods 1 2 3 4 5 6 7 8 9 10 11 12 13:33; values 0.072830787 + 0.07363556 0.074326737 0.075369592 0.074512119 0.072238779 +0.065726662 0.05982857 0.058836395 0.057469768 0.064671243 + 0.057775313 0.05747975 +; + + + +end; + + +options_.maxit = 200; +options_.slowc = 1; + + + +simul(periods=80); + + + +%dynatype(bslur3dyna); + +rplot tauadv; +/*rplot zu2adv; +rplot labadv; +rplot bsadv; +*/ \ No newline at end of file diff --git a/tests/ferhat/MARK3_endo.dat b/tests/ferhat/MARK3_endo.dat new file mode 100644 index 000000000..93ecc66ec --- /dev/null +++ b/tests/ferhat/MARK3_endo.dat @@ -0,0 +1,131 @@ +CA_A CA_ACT CA_B CA_BT CA_C CA_COIL CA_CPI CA_CU CA_CURBAL CA_C_DI CA_C_PI CA_DLGDP CA_DLLF CA_ER CA_FACT CA_GDEF CA_GDP CA_GDP_FE CA_GE CA_GNP CA_IM CA_INFL CA_INVEST CA_IOIL CA_IT CA_K CA_LF CA_M CA_MPC CA_MPCINV CA_MPK CA_NEER CA_NFA CA_P CA_PFM CA_PGNP CA_PGNPNO CA_PIM CA_PIMA CA_PIT CA_PXM CA_PXT CA_Q CA_R CA_RCI CA_RL CA_RLR CA_RS CA_RSR CA_TAX CA_TAXH CA_TAXK CA_TB CA_TFP_FE CA_TRATE CA_UNR CA_UNR_A CA_W CA_WH CA_WH1 CA_WH2 CA_WH3 CA_WK CA_XM CA_XMA CA_XT CA_YD DC_A DC_CTOT DC_DEBT DC_GDP DC_GDP_FE DC_IM DC_INVEST DC_INVESTC DC_INVESTM DC_IOIL DC_IT DC_K DC_KC DC_KM DC_NFA DC_NNPCAP DC_P DC_PGNP DC_PIM DC_PIMA DC_PIT DC_PXM DC_PXT DC_QNT DC_XCOM DC_XM DC_XMA DC_XOIL DC_XSM DC_XT FR_A FR_ACT FR_B FR_BT FR_C FR_COIL FR_CPI FR_CU FR_CURBAL FR_C_DI FR_C_PI FR_DLGDP FR_DLLF FR_ER FR_FACT FR_GDEF FR_GDP FR_GDP_FE FR_GE FR_GNP FR_IM FR_INFL FR_INVEST FR_IOIL FR_IT FR_K FR_LF FR_M FR_MPC FR_MPCINV FR_MPK FR_NEER FR_NFA FR_P FR_PFM FR_PGNP FR_PGNPNO FR_PIM FR_PIMA FR_PIT FR_PXM FR_PXT FR_Q FR_R FR_RCI FR_RL FR_RLR FR_RS FR_RSR FR_TAX FR_TAXH FR_TAXK FR_TB FR_TFP_FE FR_TRATE FR_UNR FR_UNR_A FR_W FR_WH FR_WH1 FR_WH2 FR_WH3 FR_WK FR_XM FR_XMA FR_XT FR_YD GR_A GR_ACT GR_B GR_BT GR_C GR_COIL GR_CPI GR_CU GR_CURBAL GR_C_DI GR_C_PI GR_DLGDP GR_DLLF GR_ER GR_FACT GR_GDEF GR_GDP GR_GDP_FE GR_GE GR_GNP GR_IM GR_INFL GR_INVEST GR_IOIL GR_IT GR_K GR_LF GR_M GR_MPC GR_MPCINV GR_MPK GR_NEER GR_NFA GR_P GR_PFM GR_PGNP GR_PGNPNO GR_PIM GR_PIMA GR_PIT GR_PXM GR_PXT GR_Q GR_R GR_RCI GR_RL GR_RLR GR_RS GR_RSR GR_TAX GR_TAXH GR_TAXK GR_TB GR_TFP_FE GR_TRATE GR_UNR GR_UNR_A GR_W GR_WH GR_WH1 GR_WH2 GR_WH3 GR_WK GR_XM GR_XMA GR_XT GR_YD HO_A HO_GDP HO_ICOM HO_IM HO_IT HO_NFA HO_PIT HO_PXT HO_XOIL HO_XT IT_A IT_ACT IT_B IT_BT IT_C IT_COIL IT_CPI IT_CU IT_CURBAL IT_C_DI IT_C_PI IT_DLGDP IT_DLLF IT_ER IT_FACT IT_GDEF IT_GDP IT_GDP_FE IT_GE IT_GNP IT_IM IT_INFL IT_INVEST IT_IOIL IT_IT IT_K IT_LF IT_M IT_MPC IT_MPCINV IT_MPK IT_NEER IT_NFA IT_P IT_PFM IT_PGNP IT_PGNPNO IT_PIM IT_PIMA IT_PIT IT_PXM IT_PXT IT_Q IT_R IT_RCI IT_RL IT_RLR IT_RS IT_RSR IT_TAX IT_TAXH IT_TAXK IT_TB IT_TFP_FE IT_TRATE IT_UNR IT_UNR_A IT_W IT_WH IT_WH1 IT_WH2 IT_WH3 IT_WK IT_XM IT_XMA IT_XT IT_YD JA_A JA_ACT JA_B JA_BT JA_C JA_COIL JA_CPI JA_CU JA_CURBAL JA_C_DI JA_C_PI JA_DLGDP JA_DLLF JA_ER JA_FACT JA_GDEF JA_GDP JA_GDP_FE JA_GE JA_GNP JA_IM JA_INFL JA_INVEST JA_IOIL JA_IT JA_K JA_LF JA_M JA_MPC JA_MPCINV JA_MPK JA_NEER JA_NFA JA_P JA_PFM JA_PGNP JA_PGNPNO JA_PIM JA_PIMA JA_PIT JA_PXM JA_PXT JA_Q JA_R JA_RCI JA_RL JA_RLR JA_RS JA_RSR JA_TAX JA_TAXH JA_TAXK JA_TB JA_TFP_FE JA_TRATE JA_UNR JA_UNR_A JA_W JA_WH JA_WH1 JA_WH2 JA_WH3 JA_WK JA_XM JA_XMA JA_XT JA_YD PCOM POIL RES_CA_ICOM RES_FR_ICOM RES_GR_ICOM RES_IT_ICOM RES_JA_ICOM RES_SI_ICOM RES_UK_ICOM RES_US_ICOM RW_FACT RW_IM RW_NEER RW_PFM RW_PIM RW_PIMA RW_PXM RW_RCI RW_XCOM RW_XM RW_XMA RW_XOIL SI_A SI_ACT SI_B SI_BT SI_C SI_COIL SI_CPI SI_CU SI_CURBAL SI_C_DI SI_C_PI SI_DLGDP SI_DLLF SI_ER SI_FACT SI_GDEF SI_GDP SI_GDP_FE SI_GE SI_GNP SI_IM SI_INFL SI_INVEST SI_IOIL SI_IT SI_K SI_LF SI_M SI_MPC SI_MPCINV SI_MPK SI_NEER SI_NFA SI_P SI_PFM SI_PGNP SI_PGNPNO SI_PIM SI_PIMA SI_PIT SI_PXM SI_PXT SI_Q SI_R SI_RCI SI_RL SI_RLR SI_RS SI_RSR SI_TAX SI_TAXH SI_TAXK SI_TB SI_TFP_FE SI_TRATE SI_UNR SI_UNR_A SI_W SI_WH SI_WH1 SI_WH2 SI_WH3 SI_WK SI_XM SI_XMA SI_XT SI_YD UK_A UK_ACT UK_B UK_BT UK_C UK_COIL UK_CPI UK_CU UK_CURBAL UK_C_DI UK_C_PI UK_DLGDP UK_DLLF UK_ER UK_FACT UK_GDEF UK_GDP UK_GDP_FE UK_GE UK_GNP UK_IM UK_INFL UK_INVEST UK_IOIL UK_IT UK_K UK_LF UK_M UK_MPC UK_MPCINV UK_MPK UK_NEER UK_NFA UK_P UK_PFM UK_PGNP UK_PGNPNO UK_PIM UK_PIMA UK_PIT UK_PXM UK_PXT UK_Q UK_R UK_RCI UK_RL UK_RLR UK_RS UK_RSR UK_TAX UK_TAXH UK_TAXK UK_TB UK_TFP_FE UK_TRATE UK_UNR UK_UNR_A UK_W UK_WH UK_WH1 UK_WH2 UK_WH3 UK_WK UK_XM UK_XMA UK_XT UK_YD US_A US_ACT US_B US_BT US_C US_COIL US_CPI US_CU US_CURBAL US_C_DI US_C_PI US_DLGDP US_DLLF US_ER US_FACT US_GDEF US_GDP US_GDP_FE US_GE US_GNP US_IM US_INFL US_INVEST US_IOIL US_IT US_K US_LF US_M US_MPC US_MPCINV US_MPK US_NEER US_NFA US_P US_PFM US_PGNP US_PGNPNO US_PIM US_PIMA US_PIT US_PXM US_PXT US_Q US_R US_RCI US_RL US_RLR US_RR US_RS US_RSR US_TAX US_TAXH US_TAXK US_TB US_TFP_FE US_TRATE US_UNR US_UNR_A US_W US_WH US_WH1 US_WH2 US_WH3 US_WK US_XM US_XMA US_XT US_YD WTRADE WTRADER + 1258.37061 349.58590 809.80955 809.80955 905.68825 24.74436 1.57959 100.00000 -18.42038 693.92820 211.76005 0.02176 0.00144 0.74787 575.42834 42.17950 1267.73017 1267.73017 423.62007 1247.17158 511.06233 1.02700 116.45666 10.15217 529.07219 2493.27232 17618.85124 82.86612 0.07542 13.25936 0.16779 1.03345 -389.84389 1.54745 1.35746 1.54608 1.55124 1.36171 1.36171 1.36239 1.36288 1.36239 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 381.44056 255.56518 125.87539 12.75134 0.14572 0.19782 8.61939 8.61939 17287.63905 14607.98517 7183.72844 5276.93646 6467.86241 2439.64491 522.94975 522.94975 538.43176 957.33249 11536.07722 8912.56874 4375.05948 11588.02363 11589.39559 2196.74507 2623.50848 66.91282 2556.59566 723.06893 2919.81400 23256.85317 615.95341 22640.89976 -3138.05919 9548.73513 1.51215 1.60264 1.50780 1.50780 1.47422 1.52500 1.47428 8616.26322 309.58110 1815.66021 1815.66021 846.51909 1815.66021 2971.76040 12428.31209 2554.65168 8164.71454 8164.71455 8559.94269 115.46254 1.55309 100.00000 25.89770 5759.91517 2800.02752 0.02176 -0.00311 0.16463 3378.53951 421.95999 12373.97124 12373.97123 4594.93602 12505.32769 3083.11858 1.02700 1273.69077 124.90686 3295.60069 26180.57806 26401.37859 765.53343 0.05377 18.59610 0.14652 0.94413 548.09208 1.54525 1.58647 1.54545 1.54542 1.48686 1.48686 1.49869 1.49797 1.49869 1.00005 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 4172.97603 2879.35346 1293.62257 -81.44004 0.50190 0.21592 9.10358 9.10358 168360.06399 134808.15311 66294.23238 48697.61640 59687.94305 25618.22705 3223.65008 3223.65008 3241.25984 8965.07962 5547.54705 1244.30607 2836.64064 2836.64064 3764.15899 47.88847 1.57327 100.00000 32.78105 2362.84341 1401.31558 0.02176 -0.00533 0.55484 1752.82325 171.99749 5527.29511 5527.29510 1986.46345 5576.35539 1545.57559 1.02700 635.95804 41.79135 1638.57061 13176.16323 35257.11809 803.46800 0.05348 18.69885 0.13004 0.92571 693.76944 1.55394 1.61278 1.55410 1.55408 1.49900 1.49900 1.51034 1.50991 1.51034 1.00003 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 1814.46596 1251.98151 562.48445 -30.58725 0.22619 0.20937 8.52113 8.52113 75273.98357 59233.99252 29129.33657 21397.47619 26226.56783 12892.82612 1613.17494 1613.17494 1618.31866 4007.91449 429.07131 417.23579 9.86321 183.85890 193.84446 719.34782 1.48676 1.48676 84.61262 182.00895 2882.89903 585.12227 4162.90203 4162.90204 2085.39821 32.31344 1.57443 100.00000 22.58451 1291.08424 794.31397 0.02176 -0.00734 0.56895 866.58983 217.88599 2869.00971 2869.00971 1110.16465 2900.89912 746.30792 1.02700 292.04273 40.54189 814.78573 6651.22322 21512.10470 448.37859 0.05609 17.82906 0.14235 0.99370 477.97249 1.60574 1.51024 1.60635 1.60637 1.46833 1.46833 1.47957 1.47868 1.47957 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 892.27866 597.82670 294.45196 -20.55023 0.21032 0.19148 9.67630 9.67630 42237.36280 32334.26014 15900.92962 11680.31280 14316.38542 6508.16627 792.45269 792.45269 800.89641 2165.56405 783.05615 63.51826 259.10111 259.10111 543.44083 6.60124 1.46659 100.00000 151.02733 163.36587 380.07496 0.02176 -0.01016 9.25925 99.12823 18.47186 775.77344 775.77344 210.49870 790.35519 73.62096 1.02700 106.41967 6.25650 87.98217 1897.42378 62800.22779 131.83233 0.06065 16.48796 0.17581 1.06586 3196.30195 1.44087 1.33811 1.44351 1.44352 1.11077 1.11077 1.15949 1.15875 1.15949 1.00002 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 192.02685 109.45530 82.57154 -8.44425 0.05648 0.16831 2.62369 2.62369 10917.90538 8550.40521 4204.80911 3088.71788 3785.79550 1856.60530 80.40548 80.40548 80.69947 578.35177 1.45590 1.37223 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2225.86319 2380.60397 1.07755 1.29322 1.50631 1.50631 1.52812 0.16691 299.71789 1913.05653 1913.05653 931.13172 5117.76378 1401.01453 2898.55853 2898.55853 3549.97232 62.08272 1.60754 100.00000 39.96404 2222.98337 1326.98895 0.02176 -0.00284 0.85628 1607.96516 163.94593 5101.35488 5101.35488 1796.19136 5138.84297 1701.62919 1.02700 578.90939 84.76028 1847.18267 11924.34969 69787.17394 571.14916 0.05512 18.14201 0.13262 0.88273 845.78820 1.60619 1.57681 1.60662 1.60664 1.45789 1.45789 1.47250 1.46723 1.47250 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 1632.24543 1126.24935 505.99608 -24.16218 0.13483 0.19770 8.92256 8.92256 70393.27452 55950.30395 27514.52613 20211.28824 24772.67494 11667.78939 1759.39367 1759.39367 1830.77377 3764.28654 1155.31071 319.82995 582.35940 582.35940 787.28270 13.20846 1.65344 100.00000 36.60478 415.84570 371.43700 0.02176 -0.00277 1.63522 374.75009 31.05301 1146.69203 1146.69203 432.93445 1164.20179 387.21210 1.02700 130.59805 6.64852 405.11235 3010.13959 28680.24951 74.83822 0.06400 15.62576 0.11809 1.18232 774.69368 1.64753 1.26531 1.64980 1.65413 1.34388 1.34388 1.34463 1.34606 1.34463 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 401.88144 277.29820 124.58325 -11.58892 0.08408 0.20924 6.24796 6.24796 15847.09757 12215.21008 6007.04006 4412.57892 5408.43226 2945.43253 380.46001 380.46001 396.49368 838.55377 11697.61612 1151.05135 5527.77753 5527.77753 8506.90301 188.73642 1.68518 100.00000 -176.15336 2451.73706 6055.16594 0.02176 0.00299 1.00000 1386.00983 318.19996 11765.36594 11765.36594 3666.60708 11627.42071 1673.26975 1.02700 1208.37275 101.66333 1846.76371 13666.65796 156293.68604 1206.52096 0.08153 12.26543 0.24966 1.04811 -3728.06256 1.64966 1.31988 1.64792 1.65037 1.33975 1.33975 1.34606 1.34593 1.34606 1.00004 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 3348.40713 2377.36906 971.03807 91.19531 0.15930 0.17475 5.86949 5.86949 156126.12346 140930.83352 69305.16596 50909.35161 62398.83396 13372.95814 1905.03140 1905.03140 1914.51354 8809.01195 15038.16624 3382.59415 + 1286.05475 357.27678 849.97124 849.97124 925.61338 25.28874 1.62224 100.00000 -19.33392 709.19461 216.41876 0.02176 -0.00178 0.74787 588.08775 44.27135 1295.62022 1295.62022 444.62908 1274.60935 522.30569 1.02700 119.01870 10.37552 540.71177 2548.12816 17587.49874 86.97578 0.07542 13.25937 0.16779 1.03345 -409.17781 1.58923 1.39412 1.58782 1.59313 1.39848 1.39848 1.39917 1.39968 1.39917 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 400.35772 268.23968 132.11805 13.38373 0.14804 0.19782 8.61939 8.61939 17667.96861 14929.36067 7341.77038 5393.02900 6610.15531 2493.31877 534.45464 534.45464 550.27725 978.39369 11789.87079 9108.64515 4592.03616 11842.96001 11844.36216 2245.07344 2681.22564 68.38490 2612.84074 738.97643 2984.04987 23844.96202 628.90250 23216.05952 -3293.68808 9751.24538 1.55298 1.64592 1.54851 1.54851 1.51403 1.56618 1.51409 8805.82092 316.39188 1855.60471 1855.60471 865.14250 1855.60471 3037.13910 12701.73481 2610.85399 8569.63535 8569.63536 8748.26133 118.00271 1.59502 100.00000 27.18208 5886.63324 2861.62809 0.02176 -0.00406 0.16463 3452.86734 442.88667 12646.19846 12646.19846 4822.81726 12780.44475 3150.94715 1.02700 1301.71195 127.65481 3368.10387 26756.65835 26294.39161 803.49929 0.05377 18.59612 0.14652 0.94413 575.27415 1.58697 1.62930 1.58718 1.58715 1.52700 1.52700 1.53915 1.53842 1.53915 1.00005 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 4379.93059 3022.15210 1357.77848 -85.47897 0.51092 0.21592 9.10358 9.10358 172064.02818 137773.93090 67752.70471 49768.96339 61001.07710 26181.87250 3294.57034 3294.57034 3312.56751 9162.30820 5669.59302 1271.68079 2977.32098 2977.32098 3846.97045 48.94201 1.61575 100.00000 34.40680 2414.82594 1432.14451 0.02176 -0.01044 0.55484 1791.38534 180.52753 5648.89553 5648.89553 2084.98010 5699.03514 1579.57823 1.02700 649.94911 42.71076 1674.61914 13466.06500 34890.94270 843.31519 0.05348 18.69886 0.13004 0.92571 728.17624 1.59590 1.65633 1.59606 1.59604 1.53947 1.53947 1.55112 1.55068 1.55112 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 1904.45258 1314.07228 590.38030 -32.10420 0.23127 0.20937 8.52113 8.52113 76930.02138 60537.13966 29770.18164 21868.22041 26803.55202 13176.47919 1648.66477 1648.66477 1653.92165 4096.08782 438.51087 426.41497 10.08020 187.90379 198.10904 755.02315 1.52690 1.52690 86.47410 186.01314 2946.32278 597.99495 4369.35698 4369.35698 2131.27694 33.02434 1.61694 100.00000 23.70456 1319.48808 811.78886 0.02176 -0.00800 0.56895 885.65480 228.69183 2932.12789 2932.12789 1165.22215 2964.71886 762.72669 1.02700 298.46766 41.43381 832.71101 6797.56070 21340.74746 470.61548 0.05609 17.82906 0.14235 0.99370 501.67705 1.64909 1.55102 1.64972 1.64974 1.50798 1.50798 1.51952 1.51860 1.51952 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 936.53032 627.47531 309.05501 -21.56939 0.21456 0.19148 9.67630 9.67630 43166.58931 33045.61349 16250.74989 11937.27955 14631.34573 6651.35088 809.88664 809.88664 818.51612 2213.20618 800.28337 64.91566 271.95096 271.95096 555.39652 6.74647 1.50619 100.00000 158.51738 166.95992 388.43661 0.02176 -0.00666 9.25925 101.30905 19.38795 792.84045 792.84045 220.93817 807.74299 75.24062 1.02700 108.76091 6.39414 89.91778 1939.16938 62383.30580 138.37043 0.06065 16.48797 0.17581 1.06586 3354.81933 1.47978 1.37424 1.48249 1.48249 1.14076 1.14076 1.19080 1.19004 1.19080 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 201.55022 114.88363 86.66660 -8.86304 0.05740 0.16831 2.62369 2.62369 11158.09992 8738.51403 4297.31486 3156.66964 3869.08296 1897.45134 82.17440 82.17440 82.47486 591.07541 1.49521 1.40928 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2274.83216 2432.97723 1.07755 1.32813 1.54698 1.54698 1.56938 0.16691 306.31168 1955.14375 1955.14375 951.61660 5230.35452 1431.83683 3042.30962 3042.30962 3628.07167 63.44853 1.65095 100.00000 41.94602 2271.88898 1356.18269 0.02176 -0.00414 0.85628 1643.34037 172.07666 5213.58463 5213.58463 1885.27167 5251.89745 1739.06501 1.02700 591.64539 86.62501 1887.82067 12186.69655 69498.94922 599.47473 0.05512 18.14201 0.13262 0.88273 887.73421 1.64955 1.61939 1.64999 1.65002 1.49725 1.49725 1.51226 1.50684 1.51226 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 1713.19500 1182.10455 531.09045 -25.36048 0.13726 0.19770 8.92256 8.92256 71941.93043 57181.20998 28119.84538 20655.93634 25317.67349 11924.48532 1798.10031 1798.10031 1871.05077 3847.10048 1180.72753 326.86621 611.24092 611.24093 804.60291 13.49905 1.69808 100.00000 38.42015 424.99430 379.60861 0.02176 -0.00238 1.63522 382.99459 32.59306 1171.91924 1171.91924 454.40540 1189.81422 395.73076 1.02700 133.47121 6.79479 414.02482 3076.37065 28611.99016 78.54975 0.06400 15.62577 0.11809 1.18232 813.11383 1.69201 1.29948 1.69435 1.69879 1.38017 1.38017 1.38093 1.38241 1.38093 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 421.81235 291.05052 130.76183 -12.16366 0.08549 0.20924 6.24796 6.24796 16195.73737 12483.94456 6139.19487 4509.65561 5527.41770 3010.23585 388.83012 388.83012 405.21653 857.00176 11954.96354 1176.37446 5801.92210 5801.92210 8694.05478 192.88862 1.73068 100.00000 -184.88951 2505.67525 6188.37953 0.02176 -0.00029 1.00000 1416.50203 333.98076 12024.20386 12024.20386 3848.44878 11883.22383 1710.08166 1.02700 1234.95694 103.89992 1887.39249 13967.36606 156247.75053 1266.35715 0.08153 12.26543 0.24965 1.04811 -3912.95208 1.69421 1.35551 1.69241 1.69493 1.37593 1.37593 1.38240 1.38227 1.38240 1.00004 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 3514.46801 2495.27229 1019.19572 95.71805 0.16181 0.17475 5.86949 5.86949 159560.89260 144031.31023 70829.87881 52029.35676 63771.60759 13667.15929 1946.94207 1946.94206 1956.63281 9002.80705 15783.96897 3457.01118 + 1314.34793 365.13687 892.12471 892.12471 945.97686 25.84509 1.66604 100.00000 -20.29276 724.79689 221.17997 0.02176 -0.00178 0.74787 601.02568 46.46695 1324.12385 1324.12385 466.68001 1302.65074 533.79641 1.02700 121.63711 10.60378 552.60742 2604.19072 17556.23190 91.28926 0.07542 13.25938 0.16779 1.03345 -429.47057 1.63214 1.43176 1.63070 1.63614 1.43624 1.43624 1.43695 1.43747 1.43695 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 420.21306 281.54275 138.67031 14.04749 0.15039 0.19782 8.61939 8.61939 18056.66537 15257.80643 7503.28924 5511.67557 6755.57865 2548.17341 546.21264 546.21264 562.38334 999.91824 12049.24781 9309.03524 4819.77357 12103.50500 12104.93799 2294.46503 2740.21257 69.88937 2670.32321 755.23391 3049.69893 24439.12801 642.19064 23796.93737 -3457.03523 9958.89141 1.59491 1.69036 1.59032 1.59032 1.55491 1.60846 1.55497 8999.54888 323.35250 1896.42799 1896.42799 884.17563 1896.42799 3103.95612 12981.17283 2668.29274 8994.63780 8994.63781 8940.72298 120.59877 1.63809 100.00000 28.53014 6016.13910 2924.58387 0.02176 -0.00407 0.16463 3528.83038 464.85119 12924.41468 12924.41468 5062.00003 13061.61439 3220.26795 1.02700 1330.34960 130.46322 3442.20211 27345.40941 26187.69694 843.34803 0.05377 18.59614 0.14652 0.94413 603.80430 1.62982 1.67329 1.63003 1.63000 1.56823 1.56823 1.58071 1.57996 1.58071 1.00005 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 4597.14884 3172.03270 1425.11614 -89.71822 0.52011 0.21592 9.10358 9.10358 175849.47831 140804.95578 69243.26343 50863.88001 62343.10008 26757.91691 3367.05085 3367.05085 3385.44396 9363.87588 5794.32400 1299.65776 3124.97822 3124.97822 3931.60375 50.01873 1.65937 100.00000 36.11317 2467.95208 1463.65167 0.02176 -0.01052 0.55484 1830.79580 189.48061 5773.17117 5773.17117 2188.38260 5824.41385 1614.32894 1.02700 664.24798 43.65039 1711.46074 13762.34389 34525.76779 885.13856 0.05348 18.69887 0.13004 0.92571 764.28941 1.63899 1.70105 1.63916 1.63913 1.58104 1.58104 1.59300 1.59255 1.59300 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 1998.90199 1379.24237 619.65962 -33.69637 0.23648 0.20937 8.52113 8.52113 78622.49170 61868.95603 30425.12529 22349.32101 27393.22985 13466.37233 1684.93537 1684.93537 1690.30791 4186.20099 448.15810 435.79610 10.30196 192.03767 202.46743 792.46777 1.56813 1.56813 88.37653 190.10543 3011.14184 611.15084 4586.05084 4586.05084 2178.16501 33.75087 1.66060 100.00000 24.88017 1348.51680 829.64821 0.02176 -0.00804 0.56895 905.13919 240.03357 2996.63467 2996.63467 1223.01017 3029.94264 779.50667 1.02700 305.03395 42.34536 851.03064 6947.11735 21169.85840 493.95518 0.05609 17.82907 0.14235 0.99370 526.55722 1.69362 1.59290 1.69426 1.69429 1.54869 1.54869 1.56055 1.55961 1.56055 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 982.97660 658.59432 324.38228 -22.63911 0.21889 0.19148 9.67630 9.67630 44116.25869 33772.61660 16608.26620 12199.89956 14953.23517 6797.68544 827.70414 827.70414 836.52346 2261.89645 817.88960 66.34381 285.43810 285.43810 567.61524 6.89489 1.54686 100.00000 166.37889 170.63303 396.98221 0.02176 -0.00669 9.25925 103.53785 20.34948 810.28293 810.28293 231.89538 825.51333 76.89591 1.02700 111.15364 6.53481 91.89597 1981.83330 61967.52294 145.23277 0.06065 16.48797 0.17581 1.06586 3521.19822 1.51973 1.41134 1.52252 1.52252 1.17156 1.17156 1.22295 1.22217 1.22295 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 211.54590 120.58117 90.96474 -9.30259 0.05834 0.16831 2.62369 2.62369 11403.57870 8930.76124 4391.85574 3226.11633 3954.20274 1939.19596 83.98224 83.98224 84.28930 604.07899 1.53558 1.44733 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2324.87844 2486.50270 1.07755 1.36399 1.58874 1.58874 1.61175 0.16691 313.05054 1998.15689 1998.15689 972.55216 5345.42226 1463.33722 3193.18991 3193.18991 3707.88921 64.84440 1.69552 100.00000 44.02629 2321.87051 1386.01869 0.02176 -0.00414 0.85628 1679.49384 180.61063 5328.28343 5328.28343 1978.76982 5367.43914 1777.32442 1.02700 604.66158 88.53076 1929.35270 12454.81472 69211.51200 629.20508 0.05512 18.14202 0.13262 0.88273 931.76050 1.69409 1.66311 1.69454 1.69457 1.53768 1.53768 1.55309 1.54753 1.55309 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 1798.15919 1240.72984 557.42935 -26.61820 0.13974 0.19770 8.92256 8.92256 73524.65664 58439.19593 28738.48166 21110.36670 25874.66202 12186.82843 1837.65849 1837.65849 1912.21387 3931.73633 1206.70352 334.05726 641.55480 641.55480 822.30416 13.79603 1.74393 100.00000 40.32556 434.34417 387.96000 0.02176 -0.00238 1.63522 391.42047 34.20948 1197.70145 1197.70145 476.94118 1215.99012 404.43683 1.02700 136.40757 6.94427 423.13336 3144.05861 28543.91732 82.44535 0.06400 15.62578 0.11809 1.18232 853.43939 1.73769 1.33456 1.74009 1.74466 1.41743 1.41743 1.41822 1.41973 1.41822 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 442.73171 305.48488 137.24683 -12.76690 0.08693 0.20924 6.24796 6.24796 16552.04716 12758.59120 6274.25708 4608.86798 5649.02083 3076.46476 397.38438 397.38438 414.13129 875.85561 12217.97260 1202.25469 6089.66259 6089.66259 8885.32388 197.13217 1.77740 100.00000 -194.05892 2560.80008 6324.52380 0.02176 -0.00029 1.00000 1447.66506 350.54420 12288.73621 12288.73621 4039.30872 12144.65462 1747.70344 1.02700 1262.12598 106.18572 1928.91510 14274.68687 156201.94053 1329.16086 0.08153 12.26543 0.24965 1.04811 -4107.01100 1.73995 1.39211 1.73810 1.74070 1.41308 1.41308 1.41973 1.41959 1.41973 1.00003 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 3688.76452 2619.02281 1069.74171 100.46509 0.16437 0.17475 5.86949 5.86949 163071.22688 147199.99740 72388.13533 53174.00202 65174.58223 13967.83311 1989.77477 1989.77477 1999.67871 9200.86585 16566.75905 3533.06539 + 1343.26357 373.16987 936.36874 936.36874 966.78834 26.41368 1.71102 100.00000 -21.29916 740.74241 226.04593 0.02176 -0.00178 0.74787 614.24824 48.77143 1353.25456 1353.25456 489.82454 1331.30904 545.53993 1.02700 124.31313 10.83706 564.76478 2661.48656 17524.96505 95.81666 0.07542 13.25939 0.16779 1.03345 -450.76973 1.67620 1.47042 1.67472 1.68032 1.47502 1.47502 1.47575 1.47628 1.47575 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 441.05311 295.50558 145.54753 14.74416 0.15278 0.19782 8.61939 8.61939 18453.91341 15593.47800 7668.36152 5632.93237 6904.20131 2604.23480 558.22931 558.22931 574.75577 1021.91633 12314.33112 9513.83391 5058.80540 12369.78197 12371.24649 2344.94323 2800.49722 71.42693 2729.07029 771.84904 3116.79228 25040.10371 655.82042 24384.28329 -3628.48342 10171.72497 1.63797 1.73600 1.63325 1.63325 1.59689 1.65189 1.59696 9197.53885 330.46625 1938.14939 1938.14939 903.62748 1938.14939 3172.24312 13266.75849 2726.99515 9440.71782 9440.71782 9137.41878 123.25194 1.68231 100.00000 29.94507 6148.49409 2988.92469 0.02176 -0.00408 0.16463 3606.46461 487.90502 13208.75166 13208.75165 5313.04483 13348.96976 3291.11381 1.02700 1359.61727 133.33341 3517.93052 27947.11007 26081.00228 885.17302 0.05377 18.59615 0.14652 0.94413 633.74936 1.67382 1.71847 1.67405 1.67401 1.61057 1.61057 1.62339 1.62262 1.62339 1.00004 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 4825.13982 3329.34647 1495.79334 -94.16770 0.52946 0.21592 9.10358 9.10358 179718.20713 143902.66318 70766.61443 51982.88478 63714.64757 27346.63308 3441.12593 3441.12593 3459.92369 9569.87813 5921.79906 1328.25021 3279.95837 3279.95837 4018.09899 51.11915 1.70418 100.00000 37.90416 2522.24700 1495.85199 0.02176 -0.01063 0.55484 1871.07328 198.87771 5900.18087 5900.18087 2296.91323 5952.55089 1649.84415 1.02700 678.86143 44.61070 1749.11286 14065.14021 34160.59288 929.03611 0.05348 18.69887 0.13004 0.92571 802.19357 1.68324 1.74698 1.68341 1.68339 1.62373 1.62373 1.63601 1.63555 1.63601 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2098.03552 1447.64451 650.39101 -35.36751 0.24182 0.20937 8.52113 8.52113 80352.19607 63230.07236 31094.47769 22841.00581 27995.88060 13762.64282 1722.00393 1722.00393 1727.49467 4278.29666 458.01758 445.38361 10.52861 196.26250 206.92172 831.76941 1.61047 1.61047 90.32081 194.28774 3077.38693 624.59615 4813.49142 4813.49142 2226.08462 34.49339 1.70543 100.00000 26.11408 1378.18415 847.90046 0.02176 -0.00811 0.56895 925.05224 251.93779 3062.56060 3062.56060 1283.66413 3096.60135 796.65581 1.02700 311.74469 43.27695 869.75330 7099.96401 20998.96934 518.45239 0.05609 17.82908 0.14235 0.99370 552.67130 1.73934 1.63591 1.74001 1.74003 1.59051 1.59051 1.60268 1.60172 1.60268 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1031.72634 691.25665 340.46969 -23.76187 0.22331 0.19148 9.67630 9.67630 45086.82067 34515.61378 16973.64787 12468.29721 15282.20617 6947.23923 845.91362 845.91362 854.92697 2311.65791 835.88316 67.80337 299.59411 299.59411 580.10277 7.04658 1.58862 100.00000 174.63029 174.38696 405.71581 0.02176 -0.00673 9.25925 105.81568 21.35869 828.10915 828.10915 243.39600 843.67461 78.58762 1.02700 113.59902 6.67858 93.91768 2025.43575 61551.74008 152.43544 0.06065 16.48797 0.17581 1.06586 3695.82851 1.56076 1.44945 1.56362 1.56363 1.20319 1.20319 1.25597 1.25517 1.25597 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 222.03731 126.56127 95.47604 -9.76394 0.05929 0.16831 2.62369 2.62369 11654.45800 9127.23788 4488.47651 3297.09086 4041.19515 1981.85895 85.82985 85.82985 86.14367 617.36864 1.57704 1.48641 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2376.02574 2541.20573 1.07755 1.40082 1.63164 1.63164 1.65527 0.16691 319.93765 2042.11632 2042.11632 993.94829 5463.02149 1495.53062 3351.55295 3351.55295 3789.46273 66.27098 1.74130 100.00000 46.20973 2372.95164 1416.51109 0.02176 -0.00416 0.85628 1716.44269 189.56784 5445.50560 5445.50560 2076.90492 5485.52274 1816.42554 1.02700 617.96412 90.47843 1971.79844 12728.83119 68924.07478 660.40987 0.05512 18.14202 0.13262 0.88273 977.97022 1.73983 1.70801 1.74030 1.74033 1.57920 1.57920 1.59503 1.58931 1.59503 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 1887.33708 1302.26259 585.07450 -27.93831 0.14226 0.19770 8.92256 8.92256 75142.20269 59724.85758 29370.72792 21574.79453 26443.90429 12454.94297 1878.08696 1878.08696 1954.28255 4018.23418 1233.25098 341.40652 673.37207 673.37207 840.39485 14.09954 1.79102 100.00000 42.32547 443.89973 396.49511 0.02176 -0.00239 1.63522 400.03171 35.90606 1224.05087 1224.05087 500.59460 1242.74189 413.33444 1.02700 139.40854 7.09705 432.44229 3213.23553 28475.84448 86.53414 0.06400 15.62579 0.11809 1.18232 895.76486 1.78461 1.37060 1.78708 1.79176 1.45570 1.45570 1.45651 1.45807 1.45651 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 464.68854 320.63509 144.05345 -13.40006 0.08839 0.20924 6.24796 6.24796 16916.19567 13039.28006 6412.29067 4710.26302 5773.29922 3144.15062 406.12683 406.12683 423.24218 895.12425 12486.76786 1228.70428 6391.67328 6391.67328 9080.80091 201.46907 1.82539 100.00000 -203.68308 2617.13765 6463.66326 0.02176 -0.00029 1.00000 1479.51367 367.92909 12559.08826 12559.08826 4239.63418 12411.83688 1786.15289 1.02700 1289.89273 108.52180 1971.35121 14588.76608 156156.13052 1395.07926 0.08153 12.26543 0.24965 1.04811 -4310.69408 1.78693 1.42970 1.78503 1.78770 1.45123 1.45123 1.45806 1.45792 1.45806 1.00003 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 3871.70509 2748.91061 1122.79448 105.44756 0.16696 0.17475 5.86949 5.86949 166658.78872 150438.39565 73980.67348 54343.82945 66608.42229 14275.12200 2033.54979 2033.54979 2043.67162 9403.28213 17388.37081 3610.79278 + 1372.81536 381.37961 982.80701 982.80701 988.05767 26.99478 1.75722 100.00000 -22.35547 757.03873 231.01894 0.02176 -0.00179 0.74787 627.76169 51.19020 1383.02615 1383.02615 514.11689 1360.59782 557.54180 1.02700 127.04802 11.07548 577.18960 2720.04281 17493.69821 100.56859 0.07542 13.25939 0.16779 1.03345 -473.12520 1.72146 1.51012 1.71994 1.72569 1.51484 1.51484 1.51559 1.51614 1.51559 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 462.92669 310.16088 152.76581 15.47538 0.15521 0.19782 8.61939 8.61939 18859.90086 15936.53434 7837.06539 5756.85682 7056.09366 2661.52951 570.51035 570.51035 587.40039 1044.39839 12585.24627 9723.13815 5309.69176 12641.91703 12643.41377 2396.53196 2862.10812 72.99832 2789.10980 788.82971 3185.36167 25648.60250 669.79490 24978.80759 -3808.43441 10389.80444 1.68220 1.78287 1.67735 1.67735 1.64000 1.69649 1.64007 9399.88460 337.73651 1980.78865 1980.78865 923.50728 1980.78865 3242.03243 13558.62702 2786.98901 9908.92073 9908.92073 9338.44189 125.96348 1.72774 100.00000 31.43016 6283.76089 3054.68099 0.02176 -0.00410 0.16463 3685.80679 512.10218 13499.34404 13499.34404 5576.53995 13642.64694 3363.51828 1.02700 1389.52884 136.26674 3595.32495 28562.04532 25974.30761 929.07229 0.05377 18.59616 0.14652 0.94413 665.17953 1.71902 1.76487 1.71924 1.71921 1.65406 1.65406 1.66722 1.66643 1.66722 1.00004 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 5064.43777 3494.46206 1569.97571 -98.83786 0.53900 0.21592 9.10358 9.10358 183672.04677 147068.52013 72323.47914 53126.50765 65116.36909 27948.29983 3516.83066 3516.83066 3536.04197 9780.41252 6052.07857 1357.47170 3442.62461 3442.62461 4106.49712 52.24377 1.75019 100.00000 39.78398 2577.73640 1528.76072 0.02176 -0.01075 0.55484 1912.23687 208.74085 6029.98478 6029.98478 2410.82633 6083.50694 1686.14071 1.02700 693.79637 45.59214 1787.59332 14374.59736 33795.41797 975.11073 0.05348 18.69888 0.13004 0.92571 841.97756 1.72869 1.79415 1.72887 1.72884 1.66757 1.66757 1.68018 1.67971 1.68018 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2202.08548 1519.43898 682.64650 -37.12153 0.24731 0.20937 8.52113 8.52113 82119.95363 64621.13322 31778.55585 23343.50768 28611.78965 14065.43097 1759.88800 1759.88800 1765.49953 4372.41846 468.09396 455.18204 10.76023 200.58027 211.47399 873.02018 1.65395 1.65395 92.30787 198.56207 3145.08941 638.33726 5052.21169 5052.21169 2275.05845 35.25225 1.75148 100.00000 27.40918 1408.50419 866.55426 0.02176 -0.00817 0.56895 945.40338 264.43239 3129.93689 3129.93690 1347.32616 3164.72654 814.18222 1.02700 318.60307 44.22905 888.88787 7256.17306 20828.08028 544.16452 0.05609 17.82908 0.14234 0.99370 580.08047 1.78631 1.68008 1.78699 1.78701 1.63345 1.63345 1.64595 1.64496 1.64595 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1082.89377 725.53882 357.35494 -24.94032 0.22783 0.19148 9.67630 9.67630 46078.73490 35274.95689 17347.06793 12742.59961 15618.41454 7100.08311 864.52371 864.52371 873.73535 2362.51412 854.27258 69.29504 314.45218 314.45218 592.86502 7.20161 1.63151 100.00000 183.29090 178.22347 414.64156 0.02176 -0.00678 9.25925 108.14362 22.41795 846.32754 846.32754 255.46698 862.23545 80.31655 1.02700 116.09820 6.82551 95.98387 2069.99737 61135.95722 159.99532 0.06065 16.48797 0.17581 1.06586 3879.11940 1.60290 1.48859 1.60584 1.60584 1.23568 1.23568 1.28988 1.28906 1.28988 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 233.04903 132.83795 100.21108 -10.24817 0.06026 0.16831 2.62369 2.62369 11910.85661 9328.03701 4587.22295 3369.62682 4130.10140 2025.46049 87.71810 87.71810 88.03883 630.95067 1.61962 1.52654 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2428.29828 2597.11223 1.07755 1.43864 1.67569 1.67569 1.69996 0.16691 326.97627 2087.04286 2087.04285 1015.81515 5583.20790 1528.43228 3517.76985 3517.76985 3872.83087 67.72894 1.78832 100.00000 48.50145 2425.15655 1447.67432 0.02176 -0.00418 0.85628 1754.20441 198.96926 5565.30666 5565.30666 2179.90693 5606.20417 1856.38688 1.02700 631.55933 92.46896 2015.17798 13008.87572 68636.63756 693.16223 0.05512 18.14202 0.13262 0.88273 1026.47167 1.78681 1.75413 1.78729 1.78732 1.62183 1.62183 1.63809 1.63222 1.63809 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 1980.93767 1366.84699 614.09068 -29.32388 0.14483 0.19770 8.92256 8.92256 76795.33463 61038.80377 30016.88361 22049.43976 27025.66988 12728.95590 1919.40485 1919.40485 1997.27674 4106.63499 1260.38249 348.91746 706.76728 706.76728 858.88352 14.40973 1.83938 100.00000 44.42456 453.66552 405.21800 0.02176 -0.00239 1.63522 408.83241 37.68678 1250.97998 1250.97998 525.42109 1270.08219 422.42779 1.02700 142.47552 7.25318 441.95601 3283.93417 28407.77164 90.82571 0.06400 15.62580 0.11809 1.18232 940.18942 1.83280 1.40760 1.83533 1.84014 1.49501 1.49501 1.49584 1.49743 1.49584 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 487.73430 336.53667 151.19763 -14.06463 0.08987 0.20924 6.24796 6.24796 17288.35537 13326.14407 6553.36099 4813.88875 5900.31174 3213.32548 415.06162 415.06162 432.55350 914.81680 12761.47661 1255.73576 6708.66189 6708.66189 9280.57842 205.90139 1.87468 100.00000 -213.78454 2674.71465 6605.86377 0.02176 -0.00029 1.00000 1512.06296 386.17616 12835.38806 12835.38806 4449.89457 12684.89715 1825.44824 1.02700 1318.27036 110.90928 2014.72091 14909.75255 156110.32051 1464.26681 0.08153 12.26543 0.24965 1.04811 -4524.47862 1.83517 1.46830 1.83323 1.83596 1.49041 1.49041 1.49743 1.49728 1.49743 1.00003 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 4063.71841 2885.24007 1178.47834 110.67712 0.16960 0.17475 5.86949 5.86949 170325.27709 153748.03862 75608.24745 55539.39308 68073.80681 14589.17146 2078.28786 2078.28786 2088.63237 9610.15175 18250.72957 3690.23018 + 1403.01728 389.76995 1031.54833 1031.54833 1009.79493 27.58867 1.80466 100.00000 -23.46417 773.69358 236.10135 0.02176 -0.00179 0.74787 641.57244 53.72892 1413.45270 1413.45270 539.61400 1390.53096 569.80771 1.02700 129.84307 11.31914 589.88776 2779.88721 17462.34571 105.55619 0.07542 13.25940 0.16779 1.03345 -496.58937 1.76794 1.55089 1.76638 1.77228 1.55574 1.55574 1.55651 1.55708 1.55651 1.00002 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 485.88508 325.54300 160.34208 16.24286 0.15768 0.19782 8.61939 8.61939 19274.81999 16287.13791 8009.48074 5883.50761 7211.32764 2720.08466 583.06157 583.06157 600.32319 1067.37505 12862.12154 9937.04707 5573.02059 12920.03906 12921.56873 2449.25563 2925.07447 74.60429 2850.47018 806.18396 3255.43959 26265.30274 684.11764 25581.18510 -3997.30988 10613.19451 1.72762 1.83100 1.72264 1.72264 1.68428 1.74230 1.68436 9606.68195 345.16671 2024.36598 2024.36598 943.82443 2024.36598 3313.35711 13856.91666 2848.30274 10400.34369 10400.34369 9543.88750 128.73468 1.77439 100.00000 32.98891 6422.00356 3121.88394 0.02176 -0.00413 0.16463 3766.89450 537.49937 13796.32945 13796.32945 5853.10284 13942.78501 3437.51564 1.02700 1420.09846 139.26461 3674.42206 29190.50639 25867.32063 975.14869 0.05377 18.59618 0.14652 0.94413 698.16844 1.76543 1.81252 1.76566 1.76563 1.69872 1.69872 1.71224 1.71142 1.71224 1.00004 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 5315.60347 3667.76640 1647.83708 -103.73962 0.54871 0.21592 9.10358 9.10358 187712.86970 150304.02590 73914.59485 54295.29022 66548.92847 28563.20211 3594.20090 3594.20090 3613.83485 9995.57873 6185.22423 1387.33606 3613.35812 3613.35812 4196.84001 53.39313 1.79745 100.00000 41.75703 2634.44657 1562.39344 0.02176 -0.01089 0.55484 1954.30606 219.09314 6162.64438 6162.64438 2530.38884 6217.34402 1723.23578 1.02700 709.05988 46.59516 1826.92036 14690.86191 33429.24259 1023.47036 0.05348 18.69889 0.13004 0.92571 883.73459 1.77536 1.84259 1.77555 1.77552 1.71259 1.71259 1.72554 1.72506 1.72554 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2311.29570 1594.79403 716.50167 -38.96253 0.25294 0.20937 8.52113 8.52113 83926.60156 66042.79742 32477.68372 23857.06458 29241.24870 14374.88018 1798.60551 1798.60551 1804.34050 4468.61095 478.39202 465.19604 10.99696 204.99304 216.12642 916.31673 1.69861 1.69861 94.33864 202.93044 3214.28134 652.38067 5302.77105 5302.77105 2325.10971 36.02780 1.79877 100.00000 28.76851 1439.49127 885.61845 0.02176 -0.00826 0.56895 966.20225 277.54665 3198.79547 3198.79547 1414.14545 3234.35049 832.09422 1.02700 325.61233 45.20208 908.44339 7415.81848 20656.72303 571.15181 0.05609 17.82909 0.14234 0.99370 608.84898 1.83454 1.72544 1.83524 1.83526 1.67756 1.67756 1.69039 1.68938 1.69039 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1136.59879 761.52119 375.07760 -26.17721 0.23246 0.19148 9.67630 9.67630 47092.47113 36051.00555 17728.70323 13022.93666 15962.01948 7256.28944 883.54322 883.54322 892.95752 2414.48918 873.06657 70.81953 330.04712 330.04712 605.90805 7.36004 1.67557 100.00000 192.38103 182.14438 423.76367 0.02176 -0.00684 9.25925 110.52278 23.52975 864.94673 864.94673 268.13661 881.20462 82.08351 1.02700 118.65236 6.97567 98.09551 2115.53928 60719.03523 167.93013 0.06065 16.48797 0.17581 1.06586 4071.50043 1.64618 1.52878 1.64920 1.64920 1.26904 1.26904 1.32471 1.32386 1.32471 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 244.60686 139.42591 105.18095 -10.75642 0.06126 0.16831 2.62369 2.62369 12172.89596 9533.25372 4688.14180 3443.75857 4220.96358 2070.02124 89.64790 89.64790 89.97568 644.83150 1.66335 1.56776 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2481.72081 2654.24867 1.07755 1.47749 1.72094 1.72094 1.74586 0.16691 334.16974 2132.95777 2132.95777 1038.16307 5706.03841 1562.05777 3692.23011 3692.23011 3958.03310 69.21897 1.83660 100.00000 50.90683 2478.50996 1479.52314 0.02176 -0.00421 0.85628 1792.79688 208.83694 5687.74335 5687.74335 2288.01723 5729.54060 1897.22737 1.02700 645.45363 94.50327 2059.51187 13295.08095 68348.41284 727.53892 0.05512 18.14202 0.13262 0.88273 1077.37850 1.83505 1.80149 1.83554 1.83557 1.66562 1.66562 1.68232 1.67629 1.68232 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2079.18028 1434.63440 644.54589 -30.77817 0.14745 0.19770 8.92256 8.92256 78484.83533 62381.65677 30677.25471 22534.52719 27620.23431 13008.99699 1961.63174 1961.63174 2041.21681 4196.98063 1288.11089 356.59364 741.81869 741.81869 877.77895 14.72675 1.88904 100.00000 46.62775 463.64616 414.13279 0.02176 -0.00241 1.63522 417.82671 39.55582 1278.50152 1278.50152 551.47882 1298.02399 431.72120 1.02700 145.60998 7.41275 451.67904 3356.18802 28339.51230 95.33012 0.06400 15.62581 0.11809 1.18232 986.81717 1.88228 1.44561 1.88488 1.88982 1.53537 1.53537 1.53622 1.53786 1.53622 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 511.92300 353.22687 158.69613 -14.76215 0.09138 0.20924 6.24796 6.24796 17668.70250 13619.31909 6697.53486 4919.79425 6030.11853 3284.02212 424.19297 424.19297 442.06967 934.94260 13042.22895 1283.36193 7041.37124 7041.37124 9484.75104 210.43122 1.92530 100.00000 -224.38697 2733.55834 6751.19270 0.02176 -0.00029 1.00000 1545.32832 405.32818 13117.76645 13117.76645 4670.58262 12963.96474 1865.60808 1.02700 1347.27229 113.34928 2059.04475 15237.79841 156064.38500 1536.88565 0.08153 12.26543 0.24965 1.04811 -4748.86558 1.88472 1.50795 1.88273 1.88553 1.53066 1.53066 1.53786 1.53771 1.53786 1.00003 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 4265.25444 3028.33065 1236.92379 116.16605 0.17227 0.17475 5.86949 5.86949 174072.42838 157130.49370 77271.62802 56761.25909 69571.42978 14910.13022 2124.01017 2124.01017 2134.58226 9821.57267 19155.85616 3771.41521 + 1433.88364 398.34489 1082.70694 1082.70694 1032.01041 28.19562 1.85339 100.00000 -24.62785 790.71483 241.29558 0.02176 -0.00427 0.74787 655.68703 56.39356 1444.54865 1444.54865 566.37562 1421.12262 582.34348 1.02700 132.69962 11.56816 602.86529 2841.04809 17387.86700 110.79114 0.07542 13.25941 0.16779 1.03345 -521.21722 1.81568 1.59276 1.81407 1.82013 1.59775 1.59775 1.59854 1.59912 1.59854 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 509.98206 341.68798 168.29408 17.04841 0.16045 0.19782 8.61939 8.61939 19698.86730 16645.45476 8185.68922 6012.94471 7369.97676 2779.92798 595.88892 595.88892 613.53029 1090.85720 13145.08807 10155.66200 5849.40894 13204.27977 13205.84310 2503.13923 2989.42607 76.24558 2913.18050 823.92000 3327.05923 26890.85157 698.79264 26192.05893 -4195.55245 10841.96585 1.77426 1.88044 1.76915 1.76915 1.72976 1.78934 1.72983 9818.02884 352.76037 2068.90201 2068.90201 964.58855 2068.90201 3386.25093 14161.76867 2910.96537 10916.13828 10916.13828 9753.85292 131.56684 1.82229 100.00000 34.62496 6563.28756 3190.56535 0.02176 -0.00394 0.16463 3849.76614 564.15611 14099.84854 14099.84855 6143.38159 14249.52612 3513.14095 1.02700 1451.34061 142.32843 3755.25930 29832.79093 25765.48428 1023.51021 0.05377 18.59619 0.14652 0.94413 732.79340 1.81310 1.86146 1.81334 1.81330 1.74458 1.74458 1.75847 1.75763 1.75847 1.00004 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 5579.22549 3849.66559 1729.55990 -108.88448 0.55853 0.21592 9.10358 9.10358 191842.58959 153610.71276 75540.71510 55489.78599 68013.00414 29191.63112 3673.27328 3673.27328 3693.33918 10215.47868 6321.29910 1417.85744 3792.55898 3792.55898 4289.17044 54.56778 1.84598 100.00000 43.82793 2692.40437 1596.76608 0.02176 -0.01252 0.55484 1997.30078 229.95885 6298.22248 6298.22248 2655.88093 6354.12552 1761.14695 1.02700 724.65919 47.62026 1867.11258 15014.08363 33013.36538 1074.22834 0.05348 18.69889 0.13004 0.92571 927.56251 1.82330 1.89234 1.82349 1.82346 1.75883 1.75883 1.77213 1.77164 1.77213 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2425.92209 1673.88624 752.03585 -40.89484 0.25900 0.20937 8.52113 8.52113 85772.99546 67495.73821 33192.19239 24381.91973 29884.55583 14691.13699 1838.17481 1838.17481 1844.03597 4566.91970 488.91664 475.43035 11.23889 209.50288 220.88120 961.76054 1.74447 1.74447 96.41409 207.39490 3284.99549 666.73304 5565.75665 5565.75665 2376.26210 36.82041 1.84734 100.00000 30.19525 1471.16006 905.10204 0.02176 -0.00991 0.56895 987.45868 291.31130 3269.16893 3269.16893 1484.27857 3305.50616 850.40029 1.02700 332.77580 46.19653 928.42913 7578.97588 20453.01147 599.47751 0.05609 17.82909 0.14234 0.99370 639.04423 1.88407 1.77202 1.88479 1.88481 1.72285 1.72285 1.73603 1.73499 1.73603 1.00002 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1192.96727 799.28807 393.67920 -27.47544 0.23745 0.19148 9.67630 9.67630 48128.50943 36844.12726 18118.73450 13309.44112 16313.18373 7415.93220 902.98116 902.98116 912.60258 2467.60769 892.27402 72.37756 346.41548 346.41548 619.23802 7.52196 1.72081 100.00000 201.92197 186.15156 433.08646 0.02176 -0.00405 9.25925 112.95428 24.69668 883.97555 883.97555 281.43457 900.59111 83.88935 1.02700 121.26271 7.12913 100.25361 2162.08304 60473.91500 176.25846 0.06065 16.48797 0.17581 1.06586 4273.42240 1.69063 1.57005 1.69373 1.69373 1.30330 1.30330 1.36048 1.35961 1.36048 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 256.73789 146.34060 110.39729 -11.28988 0.06216 0.16831 2.62369 2.62369 12440.70015 9742.98519 4791.28086 3519.52122 4313.82473 2115.56230 91.62015 91.62015 91.95514 659.01772 1.70826 1.61008 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2536.31864 2712.64211 1.07755 1.51738 1.76740 1.76740 1.79300 0.16691 341.52148 2179.88282 2179.88282 1061.00264 5831.57119 1596.42303 3875.34255 3875.34255 4045.10978 70.74179 1.88619 100.00000 53.43150 2533.03715 1512.07263 0.02176 -0.00581 0.85628 1832.23839 219.19400 5812.87364 5812.87363 2401.48914 5855.59043 1938.96635 1.02700 659.65360 96.58234 2104.82111 13587.58240 67952.41143 763.62048 0.05512 18.14203 0.13262 0.88273 1130.81001 1.88460 1.85013 1.88510 1.88513 1.71060 1.71060 1.72774 1.72155 1.72774 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2182.29514 1505.78365 676.51149 -32.30458 0.15028 0.19770 8.92256 8.92256 80211.50491 63754.05251 31352.15396 23030.28653 28227.87916 13295.19886 2004.78761 2004.78761 2086.12355 4289.31387 1316.44932 364.43869 778.60845 778.60845 897.09008 15.05073 1.94004 100.00000 48.94021 473.84637 423.24371 0.02176 -0.00408 1.63522 427.01890 41.51755 1306.62854 1306.62854 578.82886 1326.58050 441.21906 1.02700 148.81340 7.57583 461.61597 3430.03128 28224.06717 100.05792 0.06400 15.62582 0.11809 1.18232 1035.75737 1.93310 1.48464 1.93577 1.94085 1.57683 1.57683 1.57770 1.57939 1.57770 1.00003 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 537.31130 370.74480 166.56650 -15.49426 0.09303 0.20924 6.24796 6.24796 18057.41719 13918.94395 6844.88055 5028.02967 6162.78107 3356.27399 433.52521 433.52521 451.79520 955.51116 13329.15783 1311.59588 7390.58096 7390.58096 9693.41546 215.06070 1.97728 100.00000 -235.51521 2793.69659 6899.71886 0.02176 -0.00265 1.00000 1579.32553 425.43003 13406.35717 13406.35717 4902.21547 13249.17182 1906.65143 1.02700 1376.91227 115.84296 2104.34371 15573.05912 155651.07311 1613.10595 0.08153 12.26543 0.24965 1.04811 -4984.38079 1.93561 1.54866 1.93356 1.93644 1.57198 1.57198 1.57938 1.57923 1.57938 1.00002 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 4476.78544 3178.51767 1298.26778 121.92718 0.17529 0.17475 5.86949 5.86949 177902.01714 160587.36274 78971.60295 58010.00613 71102.00044 15238.15026 2170.73837 2170.73837 2181.54305 10037.64501 20105.87159 3854.38630 + 1465.42907 407.10847 1136.40270 1136.40270 1054.71463 28.81592 1.90343 100.00000 -25.84924 808.11054 246.60408 0.02176 -0.00429 0.74787 670.11213 59.19034 1476.32870 1476.32870 594.46444 1452.38730 595.15503 1.02700 135.61901 11.82266 616.12832 2903.55443 17313.38829 116.28572 0.07542 13.25941 0.16779 1.03345 -547.06647 1.86470 1.63577 1.86305 1.86928 1.64089 1.64089 1.64170 1.64229 1.64170 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 535.27411 358.63365 176.64046 17.89391 0.16328 0.19782 8.61939 8.61939 20132.24361 17011.65457 8365.77429 6145.22942 7532.11617 2841.08781 608.99846 608.99846 627.02795 1114.85595 13434.27986 10379.08644 6139.50450 13494.77378 13496.37149 2558.20826 3055.19341 77.92298 2977.27043 842.04623 3400.25449 27525.86834 713.82428 26812.04406 -4403.62665 11076.19485 1.82217 1.93121 1.81692 1.81692 1.77646 1.83765 1.77654 10034.02537 360.52109 2114.41783 2114.41783 985.80949 2114.41783 3460.74841 14473.32742 2975.00657 11457.51319 11457.51319 9968.43757 134.46131 1.87150 100.00000 36.34215 6707.67981 3260.75775 0.02176 -0.00396 0.16463 3934.46095 592.13486 14410.04505 14410.04505 6448.05643 14563.01554 3590.43001 1.02700 1483.27008 145.45965 3837.87496 30489.20312 25663.64792 1074.27017 0.05377 18.59620 0.14651 0.94413 769.13555 1.86205 1.91172 1.86230 1.86226 1.79169 1.79169 1.80595 1.80508 1.80595 1.00004 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 5855.92156 4040.58588 1815.33568 -114.28450 0.56853 0.21592 9.10358 9.10358 196063.16218 156990.14669 77202.60997 56710.56065 69509.28945 29833.88448 3754.08525 3754.08525 3774.59260 10440.21649 6460.36760 1449.05029 3980.64713 3980.64713 4383.53214 55.76827 1.89582 100.00000 46.00153 2751.63723 1631.89491 0.02176 -0.01268 0.55484 2041.24137 241.36342 6436.78331 6436.78331 2787.59668 6493.91621 1799.89216 1.02700 740.60169 48.66790 1908.18904 15344.41559 32597.48817 1127.50362 0.05348 18.69890 0.13004 0.92571 973.56404 1.87253 1.94343 1.87272 1.87269 1.80632 1.80632 1.81998 1.81947 1.81998 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2546.23325 1756.90094 789.33231 -42.92298 0.26523 0.20937 8.52113 8.52113 87660.00973 68980.64368 33922.42024 24918.32169 30542.01572 15014.35120 1878.61464 1878.61464 1884.60474 4667.39125 499.67280 485.88981 11.48615 214.11194 225.74058 1009.45809 1.79157 1.79157 98.53520 211.95759 3357.26536 681.40115 5841.78475 5841.78475 2428.53984 37.63046 1.89721 100.00000 31.69276 1503.52556 925.01428 0.02176 -0.01001 0.56895 1009.18276 305.75859 3341.09061 3341.09061 1557.88987 3378.22726 869.10908 1.02700 340.09687 47.21285 948.85456 7745.72252 20249.29991 629.20799 0.05609 17.82910 0.14234 0.99370 670.73699 1.93494 1.81987 1.93568 1.93570 1.76937 1.76937 1.78291 1.78183 1.78291 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1252.13128 838.92796 413.20332 -28.83805 0.24256 0.19148 9.67630 9.67630 49187.34047 37654.69764 18517.34645 13602.24867 16672.07358 7579.08699 922.84674 922.84674 932.67982 2521.89482 911.90404 73.96987 363.59561 363.59561 632.86125 7.68744 1.76727 100.00000 211.93609 190.24689 442.61436 0.02176 -0.00406 9.25925 115.43927 25.92149 903.42300 903.42300 295.39204 920.40410 85.73492 1.02700 123.93049 7.28597 102.45919 2209.65069 60228.79477 184.99982 0.06065 16.48798 0.17581 1.06586 4485.35849 1.73628 1.61245 1.73946 1.73946 1.33849 1.33849 1.39721 1.39632 1.39721 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 269.47055 153.59821 115.87234 -11.84979 0.06308 0.16831 2.62369 2.62369 12714.39601 9957.33075 4896.68899 3596.95065 4408.72883 2162.10525 93.63580 93.63580 93.97816 673.51603 1.75439 1.65356 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2592.11762 2772.32021 1.07755 1.55835 1.81512 1.81512 1.84141 0.16691 349.03494 2227.84022 2227.84022 1084.34469 5959.86569 1631.54432 4067.53627 4067.53627 4134.10215 72.29811 1.93712 100.00000 56.08138 2588.76394 1545.33821 0.02176 -0.00584 0.85628 1872.54762 230.06471 5940.75679 5940.75679 2520.58858 5984.41335 1981.62359 1.02700 674.16597 98.70716 2151.12715 13886.51861 67556.41001 801.49147 0.05512 18.14203 0.13262 0.88273 1186.89139 1.93548 1.90009 1.93600 1.93603 1.75678 1.75678 1.77439 1.76804 1.77439 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2290.52387 1580.46147 710.06240 -33.90669 0.15317 0.19770 8.92256 8.92256 81976.16107 65156.64093 32041.90099 23536.95257 28848.89218 13587.69706 2048.89292 2048.89292 2132.01825 4383.67846 1345.41119 372.45634 817.22275 817.22275 916.82605 15.38185 1.99242 100.00000 51.36735 484.27098 432.55507 0.02176 -0.00410 1.63522 436.41331 43.57658 1335.37435 1335.37435 607.53529 1355.76526 450.92587 1.02700 152.08730 7.74250 471.77152 3505.49893 28108.62204 105.02020 0.06400 15.62582 0.11809 1.18232 1087.12472 1.98530 1.52472 1.98804 1.99325 1.61940 1.61940 1.62030 1.62203 1.62030 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 563.95872 389.13151 174.82720 -16.26268 0.09470 0.20924 6.24796 6.24796 18454.68351 14225.16056 6995.46784 5138.64626 6298.36218 3430.11534 443.06276 443.06276 461.73469 976.53223 13622.39915 1340.45097 7757.10940 7757.10940 9906.67048 219.79203 2.03067 100.00000 -247.19535 2855.15788 7051.51260 0.02176 -0.00266 1.00000 1614.07067 446.52880 13701.29687 13701.29687 5145.33592 13540.65345 1948.59774 1.02700 1407.20432 118.39151 2150.63925 15915.69356 155237.76123 1693.10632 0.08153 12.26543 0.24965 1.04811 -5231.57614 1.98787 1.59048 1.98577 1.98873 1.61443 1.61443 1.62202 1.62187 1.62202 1.00002 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 4698.80712 3336.15305 1362.65406 127.97404 0.17835 0.17475 5.86949 5.86949 181815.85699 164120.28286 80708.97730 59286.22560 72666.24363 15573.38692 2218.49459 2218.49459 2229.53697 10258.47108 21103.00207 3939.18275 + 1497.66849 416.06485 1192.76145 1192.76145 1077.91834 29.44987 1.95482 100.00000 -27.13121 825.88897 252.02937 0.02176 -0.00431 0.74787 684.85459 62.12582 1508.80792 1508.80792 623.94631 1484.33981 608.24843 1.02700 138.60262 12.08276 629.68313 2967.43582 17238.90959 122.05279 0.07542 13.25942 0.16779 1.03345 -574.19768 1.91505 1.67993 1.91335 1.91975 1.68519 1.68519 1.68602 1.68663 1.68602 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 561.82049 376.41973 185.40076 18.78134 0.16616 0.19782 8.61939 8.61939 20575.15415 17385.91078 8549.82123 6280.42440 7697.82263 2903.59312 622.39642 622.39642 640.82256 1139.38269 13729.83386 10607.42623 6443.98705 13791.65865 13793.29151 2614.48881 3122.40763 79.63729 3042.77035 860.57124 3475.06005 28170.94782 729.21738 27441.73045 -4622.02009 11315.96336 1.87136 1.98336 1.86598 1.86598 1.82443 1.88727 1.82450 10254.77381 368.45255 2160.93500 2160.93500 1007.49729 2160.93500 3536.88484 14791.74046 3040.45668 12025.73703 12025.73703 10187.74308 137.41945 1.92203 100.00000 38.14450 6855.24869 3332.49439 0.02176 -0.00398 0.16463 4021.01904 621.50120 14727.06588 14727.06588 6767.84130 14883.40171 3669.41943 1.02700 1515.90201 148.65976 3922.30817 31160.05384 25561.81157 1127.54752 0.05377 18.59621 0.14651 0.94413 807.28005 1.91233 1.96334 1.91258 1.91254 1.84006 1.84006 1.85471 1.85382 1.85471 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 6146.34011 4240.97467 1905.36543 -119.95232 0.57872 0.21592 9.10358 9.10358 200376.58626 160443.92812 78901.06651 57958.19233 71038.49303 30490.26636 3836.67508 3836.67508 3857.63359 10669.89861 6602.49562 1480.92938 4178.06332 4178.06332 4479.96980 56.99517 1.94701 100.00000 48.28293 2812.17322 1667.79658 0.02176 -0.01284 0.55484 2086.14866 253.33360 6578.39247 6578.39247 2925.84473 6636.78229 1839.48977 1.02700 756.89492 49.73859 1950.16918 15682.01425 32181.61097 1183.42103 0.05348 18.69890 0.13004 0.92571 1021.84697 1.92309 1.99591 1.92328 1.92325 1.85509 1.85509 1.86912 1.86859 1.86912 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2672.51113 1844.03268 828.47845 -45.05170 0.27163 0.20937 8.52113 8.52113 89588.53804 70498.21705 34668.71310 25466.52448 31213.93972 15344.67585 1919.94414 1919.94414 1926.06602 4770.07320 510.66560 496.57938 11.73884 218.82240 230.70687 1059.52115 1.83994 1.83994 100.70297 216.62065 3431.12515 696.39197 6131.50220 6131.50220 2481.96769 38.45833 1.94844 100.00000 33.26453 1536.60311 945.36458 0.02176 -0.01011 0.56895 1031.38477 320.92238 3414.59457 3414.59457 1635.15185 3452.54822 888.22947 1.02700 347.57899 48.25154 969.72935 7916.13738 20045.58835 660.41293 0.05609 17.82910 0.14234 0.99370 704.00152 1.98718 1.86901 1.98794 1.98797 1.81714 1.81714 1.83105 1.82994 1.83105 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1314.22947 880.53375 433.69573 -30.26825 0.24779 0.19148 9.67630 9.67630 50269.46566 38483.10055 18924.72786 13901.49799 17038.85901 7745.83110 943.14936 943.14936 953.19877 2577.37626 931.96592 75.59720 381.62776 381.62776 646.78419 7.85657 1.81498 100.00000 222.44684 194.43232 452.35187 0.02176 -0.00408 9.25925 117.97894 27.20704 923.29830 923.29830 310.04171 940.65298 87.62108 1.02700 126.65696 7.44626 104.71329 2258.26477 59983.67454 194.17470 0.06065 16.48798 0.17581 1.06586 4707.80533 1.78315 1.65598 1.78642 1.78643 1.37463 1.37463 1.43493 1.43402 1.43493 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 282.83467 161.21576 121.61891 -12.43747 0.06402 0.16831 2.62369 2.62369 12994.11316 10176.39191 5004.41609 3676.08352 4505.72081 2209.67212 95.69578 95.69578 96.04568 688.33331 1.80175 1.69820 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2649.14418 2833.31122 1.07755 1.60042 1.86413 1.86413 1.89113 0.16691 356.71371 2276.85268 2276.85268 1108.20026 6090.98267 1667.43827 4269.26164 4269.26164 4225.05235 73.88867 1.98942 100.00000 58.86268 2645.71672 1579.33563 0.02176 -0.00588 0.85628 1913.74364 241.47454 6071.45337 6071.45337 2645.59464 6116.07038 2025.21928 1.02700 688.99761 100.87871 2198.45192 14192.03116 67160.40860 841.24063 0.05512 18.14203 0.13262 0.88273 1245.75407 1.98774 1.95139 1.98827 1.98831 1.80421 1.80421 1.82230 1.81577 1.82230 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2404.12010 1658.84287 745.27723 -35.58826 0.15612 0.19770 8.92256 8.92256 83779.63954 66590.08628 32746.82245 24054.76526 29483.56747 13886.63011 2093.96854 2093.96854 2178.92263 4480.11907 1375.01022 380.65038 857.75209 857.75209 936.99621 15.72025 2.04622 100.00000 53.91486 494.92494 442.07127 0.02176 -0.00412 1.63522 446.01440 45.73771 1364.75257 1364.75257 637.66539 1385.59208 460.84624 1.02700 155.43321 7.91283 482.15049 3582.62672 27993.17692 110.22857 0.06400 15.62583 0.11809 1.18232 1141.03958 2.03890 1.56589 2.04172 2.04707 1.66312 1.66312 1.66405 1.66583 1.66405 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 591.92768 408.43010 183.49758 -17.06922 0.09641 0.20924 6.24796 6.24796 18860.68961 14538.11393 7149.36805 5251.69642 6436.92608 3505.58111 452.81013 452.81013 471.89285 998.01577 13922.09178 1369.94088 8141.81544 8141.81544 10124.61712 224.62746 2.08549 100.00000 -259.45476 2917.97133 7206.64580 0.02176 -0.00267 1.00000 1649.58021 468.67395 14002.72524 14002.72524 5400.51368 13838.54767 1991.46687 1.02700 1438.16280 120.99612 2197.95329 16265.86409 154824.44934 1777.07423 0.08153 12.26543 0.24965 1.04811 -5491.03090 2.04155 1.63342 2.03938 2.04242 1.65802 1.65802 1.66582 1.66566 1.66582 1.00002 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 4931.83973 3501.60621 1430.23352 134.32078 0.18147 0.17475 5.86949 5.86949 185815.80144 167730.92719 82484.57388 60590.52188 74264.90015 15915.99895 2267.30145 2267.30145 2278.58676 10484.15546 22149.58424 4025.84473 + 1530.61718 425.21828 1251.91525 1251.91525 1101.63253 30.09777 2.00760 100.00000 -28.47676 844.05852 257.57401 0.02176 -0.00434 0.74787 699.92139 65.20689 1542.00167 1542.00167 654.89030 1516.99527 621.62989 1.02700 141.65188 12.34858 643.53616 3032.72251 17164.22683 128.10588 0.07542 13.25942 0.16779 1.03345 -602.67444 1.96675 1.72529 1.96502 1.97158 1.73069 1.73069 1.73155 1.73217 1.73155 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 589.68341 395.08789 194.59553 19.71278 0.16909 0.19782 8.61939 8.61939 21027.80868 17768.40061 8737.91720 6418.59366 7867.17464 2967.47352 636.08914 636.08914 654.92065 1164.44901 14031.89005 10840.78948 6763.57011 14095.07498 14096.74377 2672.00754 3191.10057 81.38930 3109.71126 879.50379 3551.51133 28826.66309 744.97712 28081.68597 -4851.24453 11561.35846 1.92189 2.03691 1.91636 1.91636 1.87369 1.93823 1.87377 10480.37872 376.55850 2208.47554 2208.47554 1029.66222 2208.47554 3614.69626 15117.15858 3107.34670 12622.14137 12622.14137 10411.87331 140.44268 1.97392 100.00000 40.03624 7006.06409 3405.80923 0.02176 -0.00400 0.16463 4109.48142 652.32392 15051.06116 15051.06116 7103.48559 15210.83638 3750.14661 1.02700 1549.25183 151.93027 4008.59891 31845.66082 25459.69621 1183.46711 0.05377 18.59622 0.14651 0.94413 847.31629 1.96396 2.01635 1.96422 1.96418 1.88975 1.88975 1.90478 1.90388 1.90478 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 6451.16167 4451.30155 1999.86012 -125.90124 0.58910 0.21592 9.10358 9.10358 204784.90460 163973.69269 80636.88907 59233.27190 72601.33906 31161.08762 3921.08189 3921.08189 3942.50149 10904.63380 6747.75045 1513.50981 4385.27017 4385.27017 4578.52909 58.24906 1.99957 100.00000 50.67747 2874.04100 1704.48809 0.02176 -0.01304 0.55484 2132.04390 265.89743 6723.11702 6723.11702 3070.94906 6782.79143 1879.95852 1.02700 773.54660 50.83284 1993.07287 16027.03948 31764.59437 1242.11160 0.05348 18.69891 0.13004 0.92571 1072.52445 1.97501 2.04980 1.97521 1.97518 1.90518 1.90518 1.91959 1.91905 1.91959 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2805.05163 1935.48563 869.56601 -47.28599 0.27824 0.20937 8.52113 8.52113 91559.49370 72049.17702 35431.42439 26026.78773 31900.64604 15682.26739 1962.18289 1962.18289 1968.43945 4875.01416 521.90023 507.50412 11.99710 223.63649 235.78242 1112.06703 1.88962 1.88962 102.91844 221.38630 3506.60987 711.71259 6435.58788 6435.58788 2536.57095 39.30441 2.00105 100.00000 34.91425 1570.40836 966.16259 0.02176 -0.01024 0.56895 1054.07523 336.83820 3489.71561 3489.71561 1716.24557 3528.50424 907.77051 1.02700 355.22573 49.31307 991.06339 8090.30115 19841.31867 693.16545 0.05609 17.82911 0.14234 0.99370 738.91576 2.04084 1.91947 2.04161 2.04164 1.86620 1.86620 1.88048 1.87935 1.88048 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1379.40736 924.20293 455.20443 -31.76937 0.25316 0.19148 9.67630 9.67630 51375.39751 39329.72832 19341.07165 14207.33078 17413.71371 7916.24347 963.89863 963.89863 974.16913 2634.07830 952.46916 77.26034 400.55421 400.55421 661.01343 8.02941 1.86399 100.00000 233.47887 198.70983 462.30361 0.02176 -0.00411 9.25925 120.57447 28.55634 943.61085 943.61085 325.41792 961.34734 89.54875 1.02700 129.44341 7.61008 107.01698 2307.94829 59737.88275 203.80460 0.06065 16.48798 0.17581 1.06586 4941.28420 1.83130 1.70069 1.83466 1.83466 1.41175 1.41175 1.47368 1.47273 1.47368 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 296.86157 169.21110 127.65048 -13.05429 0.06497 0.16831 2.62369 2.62369 13279.98405 10400.27242 5114.51319 3756.95731 4604.84662 2258.28544 97.80109 97.80109 98.15868 703.47657 1.85040 1.74405 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2707.42532 2895.64403 1.07755 1.64363 1.91446 1.91446 1.94219 0.16691 364.56141 2326.94341 2326.94341 1132.58065 6224.98422 1704.12190 4480.99138 4480.99138 4318.00346 75.51422 2.04313 100.00000 61.78192 2703.92246 1614.08100 0.02176 -0.00593 0.85628 1955.84598 253.45022 6205.02527 6205.02527 2776.80024 6250.62386 2069.77408 1.02700 704.15555 103.09804 2246.81784 14504.26471 66763.32225 882.96112 0.05512 18.14203 0.13262 0.88273 1307.53599 2.04141 2.00408 2.04195 2.04199 1.85293 1.85293 1.87150 1.86480 1.87150 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2523.35002 1741.11151 782.23851 -37.35323 0.15913 0.19770 8.92256 8.92256 85622.79440 68055.06741 33467.25216 24583.96982 30132.20562 14192.13957 2140.03582 2140.03582 2226.85890 4578.68138 1405.26043 389.02468 900.29144 900.29144 957.61012 16.06610 2.10147 100.00000 56.58871 505.81328 451.79684 0.02176 -0.00414 1.63522 455.82671 48.00603 1394.77712 1394.77712 669.28977 1416.07509 470.98485 1.02700 158.85274 8.08692 492.75779 3661.45116 27877.41550 115.69524 0.06400 15.62584 0.11809 1.18232 1197.62829 2.09395 1.60817 2.09684 2.10234 1.70803 1.70803 1.70898 1.71080 1.70898 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 621.28374 428.68578 192.59796 -17.91575 0.09815 0.20924 6.24796 6.24796 19275.62777 14857.95227 7306.65407 5367.23368 6578.53838 3582.70706 462.77195 462.77195 482.27448 1019.97196 14228.37764 1400.07956 8545.60059 8545.60059 10347.35858 229.56926 2.14180 100.00000 -272.32215 2982.16666 7365.19192 0.02176 -0.00268 1.00000 1685.87096 491.91736 14310.78504 14310.78504 5668.34673 14142.99556 2035.27912 1.02700 1469.80236 123.65803 2246.30824 16623.73662 154410.00509 1865.20644 0.08153 12.26542 0.24965 1.04811 -5763.35305 2.09667 1.67752 2.09445 2.09757 1.70278 1.70278 1.71080 1.71063 1.71080 1.00002 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 5176.42937 3675.26485 1501.16452 140.98229 0.18465 0.17475 5.86949 5.86949 189903.74479 171421.00565 84299.23355 61923.51267 75898.72710 16266.14860 2317.18205 2317.18205 2328.71564 10714.80502 23248.07061 4114.41327 + 1564.29074 434.57307 1314.00273 1314.00273 1125.86843 30.75992 2.06181 100.00000 -29.88903 862.62779 263.24064 0.02176 -0.00435 0.74787 715.31965 68.44076 1575.92569 1575.92569 687.36893 1550.36915 635.30574 1.02700 144.76822 12.62025 657.69394 3099.44543 17089.74812 134.45916 0.07542 13.25943 0.16779 1.03345 -632.56347 2.01985 1.77187 2.01807 2.02481 1.77742 1.77742 1.77830 1.77894 1.77830 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 618.92817 414.68187 204.24629 20.69042 0.17207 0.19782 8.61939 8.61939 21490.42157 18159.30522 8930.15127 6559.80265 8040.25240 3032.75924 650.08309 650.08309 669.32890 1190.06679 14340.59147 11079.28673 7099.00257 14405.16647 14406.87197 2730.79167 3261.30474 83.17987 3178.12487 898.85287 3629.64454 29493.56815 761.10905 28732.45910 -5091.83712 11812.47229 1.97378 2.09190 1.96810 1.96810 1.92428 1.99056 1.92436 10710.94693 384.84279 2257.06198 2257.06198 1052.31477 2257.06198 3694.21954 15449.73589 3175.70829 13248.12378 13248.12378 10640.93441 143.53242 2.02722 100.00000 42.02180 7160.19742 3480.73699 0.02176 -0.00401 0.16463 4199.88996 684.67527 15382.18433 15382.18433 7455.77581 15545.47461 3832.64980 1.02700 1583.33536 155.27274 4096.78804 32546.34875 25357.85986 1242.15997 0.05377 18.59623 0.14651 0.94413 889.33809 2.01699 2.07079 2.01725 2.01721 1.94077 1.94077 1.95621 1.95528 1.95621 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 6771.10054 4672.05937 2099.04117 -132.14519 0.59966 0.21592 9.10358 9.10358 209290.20490 167581.11205 82410.89970 60536.40320 74198.56769 31846.66594 4007.34564 4007.34564 4029.23648 11144.53323 6896.20088 1546.80701 4602.75324 4602.75324 4679.25667 59.53054 2.05356 100.00000 53.19077 2937.26987 1741.98681 0.02176 -0.01318 0.55484 2178.94884 279.08434 6871.02552 6871.02552 3223.24969 6932.01276 1921.31759 1.02700 790.56461 51.95116 2036.92046 16379.65468 31348.71716 1303.71288 0.05348 18.69891 0.13004 0.92571 1125.71522 2.02833 2.10514 2.02854 2.02851 1.95662 1.95662 1.97142 1.97086 1.97142 1.00002 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 2944.16535 2031.47409 912.69126 -49.63110 0.28503 0.20937 8.52113 8.52113 93573.81012 73634.25809 36210.91532 26599.37676 32602.45988 16027.28571 2005.35089 2005.35089 2011.74510 4982.26384 533.38203 518.66921 12.26103 228.55649 240.96963 1167.21888 1.94064 1.94064 105.18264 226.25680 3583.75525 727.37026 6754.75439 6754.75440 2592.37548 40.16911 2.05508 100.00000 36.64578 1604.95732 987.41816 0.02176 -0.01032 0.56895 1077.26487 353.54335 3566.48931 3566.48931 1801.36104 3606.13130 927.74145 1.02700 363.04069 50.39796 1012.86677 8268.29632 19637.60711 727.54229 0.05609 17.82911 0.14234 0.99370 775.56155 2.09594 1.97129 2.09674 2.09677 1.91659 1.91659 1.93126 1.93009 1.93126 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1447.81768 970.03785 477.77984 -33.34494 0.25866 0.19148 9.67630 9.67630 52505.65974 40194.98189 19766.57501 14519.89190 17796.81522 8090.40481 985.10439 985.10439 995.60084 2692.02779 973.42347 78.96007 420.41929 420.41929 675.55572 8.20606 1.91432 100.00000 245.05802 203.08144 472.47428 0.02176 -0.00411 9.25925 123.22711 29.97257 964.37028 964.37028 341.55669 982.49697 91.51882 1.02700 132.29116 7.77750 109.37136 2358.72478 59492.76252 213.91208 0.06065 16.48798 0.17581 1.06586 5186.34222 1.88075 1.74661 1.88419 1.88420 1.44987 1.44987 1.51347 1.51250 1.51347 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 311.58412 177.60295 133.98117 -13.70170 0.06594 0.16831 2.62369 2.62369 13572.14409 10629.07829 5227.03242 3839.61033 4706.15319 2307.96823 99.95271 99.95271 100.31817 718.95299 1.90036 1.79114 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2766.98865 2959.34817 1.07755 1.68801 1.96615 1.96615 1.99463 0.16691 372.58175 2378.13614 2378.13614 1157.49741 6361.93380 1741.61256 4703.22164 4703.22164 4412.99948 77.17553 2.09830 100.00000 64.84593 2763.40872 1649.59076 0.02176 -0.00595 0.85628 1998.87457 266.01983 6341.53576 6341.53576 2914.51286 6388.13751 2115.30909 1.02700 719.64697 105.36620 2296.24781 14823.36716 66367.32084 926.75068 0.05512 18.14204 0.13262 0.88273 1372.38193 2.09653 2.05819 2.09709 2.09712 1.90296 1.90296 1.92203 1.91515 1.92203 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2648.49303 1827.46019 821.03284 -39.20572 0.16220 0.19770 8.92256 8.92256 87506.49855 69552.27811 34203.53133 25124.81687 30795.11380 14504.37013 2187.11658 2187.11658 2275.84977 4679.41207 1436.17614 397.58322 944.94049 944.94049 978.67753 16.41955 2.15821 100.00000 59.39517 516.94117 461.73636 0.02176 -0.00415 1.63522 465.85489 50.38684 1425.46220 1425.46220 702.48252 1447.22872 481.34651 1.02700 162.34750 8.26483 503.59846 3742.00959 27761.97038 121.43303 0.06400 15.62585 0.11809 1.18232 1257.02346 2.15049 1.65159 2.15346 2.15910 1.75414 1.75414 1.75512 1.75699 1.75512 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 652.09568 449.94602 202.14966 -18.80426 0.09992 0.20924 6.24796 6.24796 19699.69449 15184.82704 7467.40037 5485.31276 6723.26615 3661.52971 472.95293 472.95293 492.88452 1042.41118 14541.40178 1430.88130 8969.41106 8969.41106 10575.00035 234.61978 2.19963 100.00000 -285.82770 3047.77429 7527.22606 0.02176 -0.00268 1.00000 1722.96010 516.31351 14625.62215 14625.62215 5949.46269 14454.14130 2080.05524 1.02700 1502.13800 126.37851 2295.72699 16989.48072 153996.69320 1957.70947 0.08153 12.26542 0.24965 1.04811 -6049.18075 2.15328 1.72281 2.15100 2.15420 1.74876 1.74876 1.75699 1.75682 1.75699 1.00002 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 5433.14918 3857.53592 1575.61326 147.97416 0.18788 0.17475 5.86949 5.86949 194081.62299 175192.26580 86153.81572 63285.82924 77568.49822 16624.00168 2368.16003 2368.16003 2379.94736 10950.52898 24401.03529 4204.93031 + 1598.70512 444.13368 1379.16938 1379.16938 1150.63752 31.43664 2.11747 100.00000 -31.37135 881.60559 269.03193 0.02176 -0.00562 0.74787 731.05667 71.83501 1610.59604 1610.59604 721.45830 1584.47725 649.28246 1.02700 147.95312 12.89789 672.16320 3167.63618 16993.91162 141.12752 0.07542 13.25943 0.16779 1.03345 -663.93482 2.07439 1.81972 2.07256 2.07948 1.82541 1.82541 1.82631 1.82697 1.82631 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 649.62329 435.24760 214.37568 21.71654 0.17526 0.19782 8.61939 8.61939 21963.21191 18558.80972 9126.61450 6704.11823 8217.13786 3099.48122 664.38491 664.38491 684.05412 1216.24817 14656.08432 11323.03091 7451.07047 14722.07997 14723.82299 2790.86906 3333.05341 85.00982 3248.04358 918.62762 3709.49668 30172.20043 777.61906 29394.58137 -5344.36166 12069.40186 2.02707 2.14838 2.02124 2.02124 1.97623 2.04430 1.97632 10946.58764 393.30932 2306.71732 2306.71732 1075.46569 2306.71732 3775.49233 15789.62991 3245.57383 13905.15116 13905.15116 10875.03484 146.69013 2.08195 100.00000 44.10583 7317.72168 3557.31316 0.02176 -0.00440 0.16463 4292.28749 718.63105 15720.59221 15720.59221 7825.53752 15887.47487 3916.96805 1.02700 1618.16872 158.68874 4186.91733 33262.44949 25246.56991 1303.76365 0.05377 18.59624 0.14651 0.94413 933.44392 2.07144 2.12670 2.07172 2.07168 1.99317 1.99317 2.00903 2.00807 2.00903 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 7106.90647 4903.76546 2203.14100 -138.69879 0.61059 0.21592 9.10358 9.10358 213894.62079 171267.89459 84223.93855 61868.20338 75830.93533 32547.32601 4095.50720 4095.50720 4117.87963 11389.71052 7047.91722 1580.83674 4831.02216 4831.02216 4782.20027 60.84021 2.10901 100.00000 55.82871 3001.88977 1780.31050 0.02176 -0.01585 0.55484 2226.88569 292.92525 7022.18801 7022.18801 3383.10352 7084.51696 1963.58655 1.02700 807.95702 53.09409 2081.73268 16740.02686 30855.79462 1368.36921 0.05348 18.69892 0.13004 0.92571 1181.54393 2.08310 2.16198 2.08331 2.08328 2.00945 2.00945 2.02464 2.02407 2.02464 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3090.17827 2132.22301 957.95526 -52.09250 0.29252 0.20937 8.52113 8.52113 95632.44124 75254.21092 37007.55504 27184.56274 33319.71363 16379.89418 2049.46859 2049.46859 2056.00347 5091.87303 545.11643 530.07992 12.53078 233.58473 246.27096 1225.10592 1.99304 1.99304 107.49666 231.23445 3662.59782 743.37239 7089.74965 7089.74965 2649.40771 41.05283 2.11056 100.00000 38.46319 1640.26637 1009.14134 0.02176 -0.01357 0.56895 1100.96469 371.07698 3644.95204 3644.95204 1890.69773 3685.46614 948.15175 1.02700 371.02758 51.50671 1035.14983 8450.20719 19372.84711 763.62402 0.05609 17.82911 0.14234 0.99370 814.02474 2.15253 2.02452 2.15335 2.15338 1.96834 1.96834 1.98340 1.98221 1.98340 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1519.62075 1018.14590 501.47485 -34.99865 0.26486 0.19148 9.67630 9.67630 53660.78764 41079.27103 20201.43943 14839.32935 18188.34495 8268.39761 1006.77668 1006.77667 1017.50405 2751.25218 994.83877 80.69719 441.26957 441.26957 690.41794 8.38659 1.96600 100.00000 257.21143 207.54923 482.86871 0.02176 -0.00541 9.25925 125.93810 31.45903 985.58642 985.58642 358.49585 1004.11189 93.53223 1.02700 135.20157 7.94861 111.77753 2410.61831 59171.57589 224.52084 0.06065 16.48798 0.17581 1.06586 5443.55365 1.93153 1.79377 1.93507 1.93507 1.48901 1.48901 1.55433 1.55334 1.55433 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 327.03682 186.41099 140.62583 -14.38123 0.06697 0.16831 2.62369 2.62369 13870.73162 10862.91789 5342.02707 3924.08172 4809.68851 2358.74402 102.15167 102.15167 102.52517 734.76989 1.95167 1.83951 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2827.86236 3024.45379 1.07755 1.73359 2.01924 2.01924 2.04848 0.16691 380.77855 2430.45511 2430.45511 1182.96234 6501.89627 1779.92801 4936.47319 4936.47319 4510.08542 78.87339 2.15495 100.00000 68.06190 2824.20368 1685.88174 0.02176 -0.00755 0.85628 2042.84979 279.21282 6481.04947 6481.04947 3059.05519 6528.67646 2161.84586 1.02700 735.47919 107.68425 2346.76523 15149.48961 65868.40238 972.71195 0.05512 18.14204 0.13262 0.88273 1440.44383 2.15313 2.11376 2.15371 2.15375 1.95434 1.95434 1.97393 1.96686 1.97393 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2779.84238 1918.09124 861.75114 -41.15009 0.16552 0.19770 8.92256 8.92256 89431.64406 71082.42743 34956.00862 25677.56256 31472.60595 14823.46966 2235.23312 2235.23312 2325.91844 4782.35884 1467.77200 406.33004 991.80386 991.80386 1000.20842 16.78078 2.21648 100.00000 62.34081 528.31387 471.89456 0.02176 -0.00687 1.63522 476.10369 52.88572 1456.82235 1456.82235 737.32143 1479.06774 491.93613 1.02700 165.91914 8.44665 514.67762 3824.34016 27571.81799 127.45538 0.06400 15.62585 0.11809 1.18232 1319.36427 2.20855 1.69619 2.21160 2.21740 1.80151 1.80151 1.80251 1.80443 1.80251 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 684.43571 472.26064 212.17507 -19.73684 0.10191 0.20924 6.24796 6.24796 20133.09061 15518.89306 7631.68310 5605.98958 6871.17792 3742.08638 483.35789 483.35789 503.72797 1065.34407 14861.31246 1462.36067 9414.23998 9414.23998 10807.65024 239.78141 2.25902 100.00000 -300.00303 3114.82529 7692.82495 0.02176 -0.00242 1.00000 1760.86520 541.91956 14947.38567 14947.38567 6244.52031 14772.13224 2125.81643 1.02700 1535.18502 129.15883 2346.23296 17363.26968 153624.50582 2054.80011 0.08153 12.26542 0.24965 1.04811 -6349.18378 2.21142 1.76933 2.20907 2.21237 1.79597 1.79597 1.80443 1.80425 1.80443 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 5702.60075 4048.84653 1653.75422 155.31279 0.19113 0.17475 5.86949 5.86949 198351.41460 179046.49363 88049.19868 64678.11675 79275.00429 16989.72767 2420.25953 2420.25953 2432.30617 11191.43899 25611.18011 4297.43873 + 1633.87661 453.90461 1447.56789 1447.56789 1175.95153 32.12824 2.17465 100.00000 -32.92718 901.00091 274.95063 0.02176 -0.00566 0.74787 747.13991 75.39760 1646.02913 1646.02913 757.23830 1619.33573 663.56666 1.02700 151.20809 13.18164 686.95079 3237.32705 16898.07512 148.12660 0.07542 13.25944 0.16779 1.03345 -696.86200 2.13040 1.86885 2.12852 2.13563 1.87469 1.87469 1.87562 1.87630 1.87562 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 681.84070 456.83327 225.00743 22.79355 0.17851 0.19782 8.61939 8.61939 22446.40359 18967.10332 9327.39991 6851.60876 8397.91479 3167.67104 679.00137 679.00137 699.10331 1243.00554 14978.51801 11572.13746 7820.59881 15045.96556 15047.74693 2852.26815 3406.38055 86.88004 3319.50051 938.83742 3791.10556 30863.08293 794.51338 30068.56955 -5609.40991 12332.24889 2.08181 2.20639 2.07581 2.07581 2.02959 2.09950 2.02968 11187.41244 401.96212 2357.46507 2357.46507 1099.12592 2357.46507 3858.55311 16137.00158 3316.97642 14594.76315 14594.76315 11114.28548 149.91731 2.13816 100.00000 46.29321 7478.71147 3635.57401 0.02176 -0.00442 0.16463 4386.71777 754.27084 16066.44506 16066.44506 8213.63719 16236.99913 4003.14130 1.02700 1653.76841 162.17989 4279.02946 33994.30218 25135.27995 1368.42249 0.05377 18.59625 0.14651 0.94413 979.73713 2.12737 2.18412 2.12766 2.12761 2.04699 2.04699 2.06327 2.06229 2.06327 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 7459.36635 5146.96278 2312.40357 -145.57742 0.62171 0.21592 9.10358 9.10358 218600.33284 175035.78630 86076.86423 63229.30315 77499.21503 33263.39967 4185.60831 4185.60831 4208.47294 11640.28176 7202.97132 1615.61513 5070.61185 5070.61185 4887.40862 62.17870 2.16595 100.00000 58.59748 3067.93131 1819.47731 0.02176 -0.01610 0.55484 2275.87715 307.45258 7176.67606 7176.67606 3550.88514 7240.37625 2006.78544 1.02700 825.73207 54.26216 2127.53078 17108.32667 30362.87208 1436.23211 0.05348 18.69892 0.13004 0.92571 1240.14141 2.13934 2.22035 2.13956 2.13953 2.06370 2.06370 2.07931 2.07872 2.07931 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3243.43255 2237.96846 1005.46409 -54.67598 0.30026 0.20937 8.52113 8.52113 97736.36200 76909.80269 37821.72083 27782.62281 34052.74695 16740.25981 2094.55687 2094.55687 2101.23552 5203.89363 557.10899 541.74167 12.80645 238.72360 251.68892 1285.86382 2.04685 2.04685 109.86158 236.32160 3743.17493 759.72658 7441.35865 7441.35865 2707.69465 41.95599 2.16755 100.00000 40.37074 1676.35221 1031.34244 0.02176 -0.01376 0.56895 1125.18590 389.48017 3725.14094 3725.14094 1984.46498 3766.54636 969.01108 1.02700 379.19018 52.63986 1057.92311 8636.11990 19108.08710 801.49519 0.05609 17.82912 0.14234 0.99370 854.39548 2.21065 2.07918 2.21149 2.21152 2.02148 2.02148 2.03695 2.03573 2.03695 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1594.98481 1068.63982 526.34499 -36.73437 0.27124 0.19148 9.67630 9.67630 54841.32824 41983.01452 20645.87087 15165.79443 18588.48832 8450.30616 1028.92575 1028.92575 1039.88912 2811.77950 1016.72522 82.47253 463.15389 463.15389 705.60713 8.57110 2.01908 100.00000 269.96757 212.11531 493.49182 0.02176 -0.00544 9.25925 128.70874 33.01921 1007.26931 1007.26931 376.27509 1026.20234 95.58994 1.02700 138.17600 8.12348 114.23663 2463.65343 58850.38926 235.65572 0.06065 16.48798 0.17581 1.06586 5713.52122 1.98368 1.84220 1.98731 1.98732 1.52922 1.52922 1.59630 1.59528 1.59630 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 343.25589 195.65586 147.60003 -15.09445 0.06801 0.16831 2.62369 2.62369 14175.88806 11101.90196 5459.55160 4010.41147 4915.50160 2410.63686 104.39901 104.39901 104.78072 750.93476 2.00437 1.88917 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2890.07530 3090.99174 1.07755 1.78040 2.07376 2.07376 2.10379 0.16691 389.15567 2483.92509 2483.92509 1208.98750 6644.93791 1819.08641 5181.29262 5181.29262 4609.30725 80.60860 2.21313 100.00000 71.43736 2886.33613 1722.97112 0.02176 -0.00760 0.85628 2087.79246 293.06010 6623.63249 6623.63249 3210.76596 6672.30727 2209.40645 1.02700 751.65973 110.05331 2398.39404 15482.78651 65369.48392 1020.95262 0.05512 18.14204 0.13262 0.88273 1511.88119 2.21127 2.17083 2.21186 2.21190 2.00710 2.00710 2.02723 2.01996 2.02723 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 2917.70586 2013.21705 904.48882 -43.19089 0.16890 0.19770 8.92256 8.92256 91399.14266 72646.24002 35725.04041 26242.46864 32165.00292 15149.58928 2284.40823 2284.40823 2377.08862 4887.57044 1500.06297 415.26930 1040.99138 1040.99138 1022.21300 17.14996 2.27632 100.00000 65.43254 539.93677 482.27623 0.02176 -0.00692 1.63522 486.57797 55.50854 1488.87242 1488.87242 773.88815 1511.60721 502.75872 1.02700 169.56936 8.63248 526.00052 3908.48185 27381.66559 133.77640 0.06400 15.62586 0.11809 1.18232 1384.79682 2.26818 1.74198 2.27131 2.27727 1.85015 1.85015 1.85118 1.85315 1.85118 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 718.37961 495.68193 222.69768 -20.71567 0.10395 0.20924 6.24796 6.24796 20576.02137 15860.30853 7799.58004 5729.32129 7022.34376 3824.41524 493.99176 493.99176 514.80998 1088.78148 15188.26116 1494.53259 9881.12975 9881.12975 11045.41842 245.05660 2.32001 100.00000 -314.88138 3183.35141 7862.06701 0.02176 -0.00243 1.00000 1799.60421 568.79551 15276.22798 15276.22798 6554.21101 15097.11898 2172.58437 1.02700 1568.95907 132.00033 2397.85006 17745.28059 153252.31844 2156.70585 0.08153 12.26542 0.24965 1.04811 -6664.06516 2.27112 1.81710 2.26872 2.27210 1.84447 1.84447 1.85315 1.85297 1.85315 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 5985.41550 4249.64501 1735.77049 163.01537 0.19444 0.17475 5.86949 5.86949 202715.14170 182985.51443 89986.28004 66101.03458 81019.05348 17363.49975 2473.50521 2473.50521 2485.81688 11437.64911 26881.34083 4391.98233 + 1669.82188 463.89051 1519.35857 1519.35857 1201.82245 32.83506 2.23336 100.00000 -34.56017 920.82292 280.99954 0.02176 -0.00570 0.74787 763.57698 79.13686 1682.24176 1682.24176 794.79277 1654.96110 678.16512 1.02700 154.53466 13.47164 702.06370 3308.55103 16801.97606 155.47279 0.07542 13.25944 0.16779 1.03345 -731.42217 2.18792 1.91931 2.18599 2.19329 1.92531 1.92531 1.92627 1.92696 1.92627 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 715.65590 479.48946 236.16645 23.92397 0.18182 0.19782 8.61939 8.61939 22940.22545 19384.37938 9532.60260 7002.34407 8582.66882 3237.36101 693.93940 693.93940 714.48357 1270.35157 15308.04523 11826.72435 8208.45355 15376.97663 15378.79719 2915.01801 3481.32088 88.79140 3392.52948 959.49183 3874.50984 31566.72635 811.79858 30754.92777 -5887.60295 12601.11972 2.13801 2.26596 2.13186 2.13186 2.08439 2.15619 2.08448 11433.53539 410.80529 2409.32928 2409.32928 1123.30668 2409.32928 3943.44124 16492.01543 3389.94986 15318.57576 15318.57576 11358.79964 153.21549 2.19589 100.00000 48.58908 7643.24304 3715.55660 0.02176 -0.00445 0.16463 4483.22551 791.67814 16419.90667 16419.90667 8620.98426 16594.21293 4091.21036 1.02700 1690.15130 165.74784 4373.16806 34742.25343 25023.68510 1436.28803 0.05377 18.59626 0.14651 0.94413 1028.32621 2.18481 2.24309 2.18510 2.18506 2.10225 2.10225 2.11898 2.11797 2.11898 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 7829.30612 5402.22122 2427.08490 -152.79719 0.63306 0.21592 9.10358 9.10358 223409.56959 178886.57158 87970.55426 64620.34709 79204.19688 33995.22602 4277.69165 4277.69165 4301.05929 11896.36563 7361.43660 1651.15865 5322.08374 5322.08374 4994.93155 63.54663 2.22443 100.00000 61.50357 3135.42576 1859.50579 0.02176 -0.01641 0.55484 2325.94643 322.70038 7334.56285 7334.56285 3726.98771 7399.66445 2050.93469 1.02700 843.89817 55.45593 2174.33643 17484.72854 29868.59907 1507.46059 0.05348 18.69893 0.13004 0.92571 1301.64498 2.19711 2.28030 2.19733 2.19730 2.11942 2.11942 2.13545 2.13485 2.13545 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3404.28733 2348.95826 1055.32907 -57.38758 0.30828 0.20937 8.52113 8.52113 99886.56876 78601.81747 38653.79826 28393.84020 34801.90699 17108.55326 2140.63710 2140.63710 2147.46268 5318.37870 569.36538 553.65999 13.08820 243.97551 257.22607 1349.63494 2.10212 2.10212 112.27854 241.52068 3825.52474 776.44055 7810.40535 7810.40535 2767.26390 42.87902 2.22607 100.00000 42.37288 1713.23194 1054.03196 0.02176 -0.01399 0.56895 1149.93997 408.79605 3807.09400 3807.09400 2082.88253 3849.41033 990.32931 1.02700 387.53236 53.79793 1081.19741 8826.12250 18842.60173 841.24453 0.05609 17.82912 0.14234 0.99370 896.76836 2.27034 2.13532 2.27120 2.27123 2.07606 2.07606 2.09195 2.09069 2.09195 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1674.08648 1121.63794 552.44854 -38.55618 0.27782 0.19148 9.67630 9.67630 56047.84064 42906.64035 21100.07979 15499.44173 18997.43485 8636.21661 1051.56211 1051.56210 1062.76667 2873.63843 1039.09316 84.28692 486.12354 486.12354 721.13047 8.75966 2.07360 100.00000 283.35634 216.78184 504.34863 0.02176 -0.00549 9.25925 131.54033 34.65676 1029.42922 1029.42922 394.93608 1048.77878 97.69292 1.02700 141.21587 8.30219 116.74983 2517.85527 58528.32267 247.34283 0.06065 16.48798 0.17581 1.06586 5996.87756 2.03724 1.89194 2.04097 2.04097 1.57050 1.57050 1.63940 1.63835 1.63940 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 360.27932 205.35921 154.92011 -15.84304 0.06908 0.16831 2.62369 2.62369 14487.75791 11346.14368 5579.66168 4098.64047 5023.64258 2463.67133 106.69578 106.69578 107.08589 767.45526 2.05849 1.94018 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 2953.65693 3158.99353 1.07755 1.82847 2.12975 2.12975 2.16060 0.16691 397.71709 2538.57141 2538.57141 1235.58521 6791.12647 1859.10629 5438.25362 5438.25362 4710.71196 82.38199 2.27289 100.00000 74.98023 2949.83549 1760.87646 0.02176 -0.00768 0.85628 2133.72387 307.59412 6769.35233 6769.35233 3370.00067 6819.09795 2258.01337 1.02700 768.19623 112.47448 2451.15868 15823.41572 64869.19856 1071.58574 0.05512 18.14204 0.13262 0.88273 1586.86141 2.27097 2.22944 2.27158 2.27162 2.06130 2.06130 2.08196 2.07450 2.08196 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3062.40655 2113.06052 949.34603 -45.33290 0.17237 0.19770 8.92256 8.92256 93409.92611 74244.45646 36510.99089 26819.80265 32872.63261 15482.88343 2334.66518 2334.66518 2429.38454 4995.09671 1533.06433 424.40522 1092.61830 1092.61830 1044.70167 17.52726 2.33778 100.00000 68.67761 551.81537 492.88630 0.02176 -0.00699 1.63522 497.28268 58.26143 1521.62760 1521.62760 812.26835 1544.86255 513.81940 1.02700 173.29989 8.82240 537.57253 3994.47453 27190.99223 140.41091 0.06400 15.62586 0.11809 1.18232 1453.47442 2.32942 1.78902 2.33264 2.33875 1.90010 1.90010 1.90116 1.90319 1.90116 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 754.00693 520.26478 233.74215 -21.74304 0.10603 0.20924 6.24796 6.24796 21028.69653 16209.23514 7971.17071 5855.36629 7176.83524 3908.55526 504.85957 504.85957 526.13579 1112.73452 15522.40273 1527.41229 10371.17445 10371.17445 11288.41750 250.44784 2.38265 100.00000 -330.49761 3253.38511 8035.03239 0.02176 -0.00244 1.00000 1839.19549 597.00435 15612.30482 15612.30482 6879.26052 15429.25543 2220.38120 1.02700 1603.47615 134.90433 2450.60273 18135.69442 152879.11137 2263.66551 0.08153 12.26542 0.24965 1.04811 -6994.56277 2.33244 1.86616 2.32997 2.33345 1.89427 1.89427 1.90318 1.90300 1.90318 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 6282.25616 4460.40188 1821.85429 171.09996 0.19781 0.17475 5.86949 5.86949 207174.87087 187011.19364 91965.97717 67555.25659 82801.47173 17745.49493 2527.92229 2527.92229 2540.50482 11689.27595 28214.49391 4488.60589 + 1706.55794 474.09609 1594.70963 1594.70963 1228.26253 33.55743 2.29366 100.00000 -36.27415 941.08101 287.18152 0.02176 -0.00572 0.74787 780.37567 83.06158 1719.25106 1719.25106 834.20972 1691.37022 693.08475 1.02700 157.93442 13.76802 717.50909 3381.34188 16706.13956 163.18331 0.07542 13.25945 0.16779 1.03345 -767.69632 2.24699 1.97113 2.24501 2.25251 1.97729 1.97729 1.97827 1.97899 1.97827 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 751.14814 503.26925 247.87889 25.11046 0.18520 0.19782 8.61939 8.61939 23444.91136 19810.83550 9742.31975 7156.39556 8771.48744 3308.58413 709.20605 709.20605 730.20220 1298.29922 15644.82205 12086.91215 8615.54355 15715.26994 15717.13055 2979.14838 3557.90990 90.74481 3467.16509 980.60064 3959.74901 32283.63088 829.48151 31454.14936 -6179.59270 12876.12518 2.19574 2.32715 2.18942 2.18942 2.14067 2.21440 2.14076 11685.07304 419.84300 2462.33449 2462.33449 1148.01941 2462.33449 4030.19690 16854.83959 3464.52872 16078.28512 16078.28512 11608.69310 156.58623 2.25518 100.00000 50.99880 7811.39430 3797.29880 0.02176 -0.00446 0.16463 4581.85642 830.94062 16781.14443 16781.14443 9048.53331 16959.28542 4181.21694 1.02700 1727.33461 169.39429 4469.37771 35506.65746 24912.39515 1507.51929 0.05377 18.59627 0.14651 0.94413 1079.32501 2.24380 2.30365 2.24410 2.24406 2.15901 2.15901 2.17619 2.17516 2.17619 1.00003 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 8217.59269 5670.13895 2547.45373 -160.37501 0.64462 0.21592 9.10358 9.10358 228324.60861 182822.07410 89905.90544 66041.99399 80946.68830 34743.15166 4371.80082 4371.80082 4395.68255 12158.08340 7523.38813 1687.48412 5586.02713 5586.02713 5104.81999 64.94465 2.28449 100.00000 64.55377 3204.40510 1900.41489 0.02176 -0.01664 0.55484 2377.11722 338.70438 7495.92315 7495.92315 3911.82392 7562.45698 2096.05523 1.02700 862.46392 56.67596 2222.17181 17869.41074 29375.67653 1582.22159 0.05348 18.69893 0.13004 0.92571 1366.19875 2.25643 2.34187 2.25666 2.25662 2.17665 2.17665 2.19311 2.19249 2.19311 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3573.11954 2465.45248 1107.66706 -60.23365 0.31655 0.20937 8.52113 8.52113 102084.07983 80331.05655 39504.18137 29018.50436 35567.54854 17484.94894 2187.73109 2187.73109 2194.70683 5435.38246 581.89141 565.84050 13.37614 249.34297 262.88504 1416.56873 2.15887 2.15887 114.74866 246.83413 3909.68624 793.52224 8197.75456 8197.75456 2828.14368 43.82236 2.28618 100.00000 44.47432 1750.92302 1077.22065 0.02176 -0.01415 0.56895 1175.23864 429.06988 3890.85002 3890.85002 2186.18099 3934.09732 1012.11655 1.02700 396.05807 54.98149 1104.98374 9020.30496 18577.84172 882.96521 0.05609 17.82912 0.14234 0.99370 941.24269 2.33163 2.19297 2.33252 2.33256 2.13212 2.13212 2.14843 2.14714 2.14843 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1757.11111 1177.26445 579.84667 -40.46833 0.28458 0.19148 9.67630 9.67630 57280.89620 43850.58594 21564.28130 15840.42927 19415.37820 8826.21699 1074.69646 1074.69646 1086.14753 2936.85826 1061.95320 86.14123 510.23235 510.23235 736.99534 8.95237 2.12959 100.00000 297.40911 221.55104 515.44429 0.02176 -0.00550 9.25925 134.43422 36.37553 1052.07665 1052.07665 414.52254 1071.85190 99.84216 1.02700 144.32262 8.48484 119.31833 2573.24949 58207.13605 259.60955 0.06065 16.48798 0.17581 1.06586 6294.28667 2.09224 1.94302 2.09608 2.09608 1.61291 1.61291 1.68366 1.68258 1.68366 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 378.14701 215.54379 162.60321 -16.62876 0.07016 0.16831 2.62369 2.62369 14806.48889 11595.75871 5702.41417 4188.81052 5134.16266 2517.87253 109.04309 109.04309 109.44178 784.33922 2.11407 1.99256 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3018.63735 3228.49135 1.07755 1.87783 2.18725 2.18725 2.21893 0.16691 406.46686 2594.41996 2594.41996 1262.76807 6940.53117 1900.00661 5707.95834 5707.95834 4814.34756 84.19439 2.33426 100.00000 78.69879 3014.73184 1799.61573 0.02176 -0.00772 0.85628 2180.66577 322.84894 6918.27800 6918.27800 3537.13246 6969.11803 2307.68963 1.02700 785.09654 114.94891 2505.08414 16171.53853 64370.28010 1124.72996 0.05512 18.14204 0.13262 0.88273 1665.56021 2.33229 2.28964 2.33291 2.33295 2.11695 2.11695 2.13817 2.13051 2.13817 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3214.28353 2217.85563 996.42789 -47.58114 0.17591 0.19770 8.92256 8.92256 95464.94668 75877.83365 37314.23227 27409.83800 33595.83015 15823.50996 2386.02779 2386.02779 2482.83097 5104.98856 1566.79173 433.74213 1146.80561 1146.80561 1067.68510 17.91285 2.40090 100.00000 72.08360 563.95530 503.72980 0.02176 -0.00702 1.63522 508.22289 61.15084 1555.10339 1555.10339 852.55199 1578.84951 525.12342 1.02700 177.11248 9.01649 549.39912 4082.35890 27000.83984 147.37445 0.06400 15.62587 0.11809 1.18232 1525.55803 2.39232 1.83732 2.39562 2.40190 1.95140 1.95140 1.95249 1.95457 1.95249 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 791.40114 546.06679 245.33435 -22.82136 0.10816 0.20924 6.24796 6.24796 21491.33047 16565.83813 8146.53637 5984.18428 7334.72553 3994.54629 515.96647 515.96647 537.71077 1137.21453 15863.89542 1561.01534 10885.52242 10885.52242 11536.76256 255.95769 2.44699 100.00000 -346.88830 3324.95954 8211.80301 0.02176 -0.00244 1.00000 1879.65777 626.61219 15955.77535 15955.77535 7220.43053 15768.69887 2269.22956 1.02700 1638.75261 137.87223 2504.51596 18534.69613 152506.92398 2375.92973 0.08153 12.26542 0.24965 1.04811 -7341.45107 2.39542 1.91655 2.39288 2.39645 1.94541 1.94541 1.95457 1.95438 1.95457 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 6593.81834 4681.61102 1912.20732 179.58549 0.20124 0.17475 5.86949 5.86949 211732.71414 191125.43774 93989.22761 69041.47146 84623.10315 18135.89410 2583.53656 2583.53656 2596.39590 11946.43867 29613.76337 4587.35517 + 1744.10220 484.52620 1673.79765 1673.79765 1255.28430 34.29570 2.35559 100.00000 -38.07313 961.78478 293.49951 0.02176 -0.00575 0.74787 797.54392 87.18093 1757.07456 1757.07456 875.58151 1728.58035 708.33260 1.02700 161.40898 14.07091 733.29428 3455.73405 16610.30306 171.27622 0.07542 13.25945 0.16779 1.03345 -805.76944 2.30766 2.02435 2.30563 2.31333 2.03068 2.03068 2.03169 2.03242 2.03169 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 788.40058 528.22839 260.17219 26.35579 0.18865 0.19782 8.61939 8.61939 23960.70031 20246.67365 9956.65067 7313.83618 8964.46006 3381.37412 724.80858 724.80858 746.26664 1326.86172 15989.00796 12352.82408 9042.82277 16061.00570 16062.90724 3044.68961 3636.18388 92.74119 3543.44268 1002.17384 4046.86345 33014.28797 847.56937 32166.71860 -6486.06339 13157.38046 2.25503 2.38998 2.24853 2.24853 2.19847 2.27419 2.19856 11942.14451 429.07954 2516.50582 2516.50582 1173.27582 2516.50582 4118.86119 17225.64586 3540.74832 16875.67151 16875.67151 11864.08422 160.03112 2.31607 100.00000 53.52804 7983.24488 3880.83933 0.02176 -0.00448 0.16463 4682.65721 872.15029 17150.32941 17150.32941 9497.28622 17332.38951 4273.20367 1.02700 1765.33595 173.12097 4567.70396 36287.87630 24801.10520 1582.28319 0.05377 18.59627 0.14651 0.94413 1132.85305 2.30439 2.36585 2.30469 2.30464 2.21731 2.21731 2.23495 2.23389 2.23495 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 8625.13593 5951.34380 2673.79214 -168.32865 0.65639 0.21592 9.10358 9.10358 233347.77757 186844.15762 91883.83433 67494.91710 82727.51451 35507.53080 4467.98038 4467.98038 4492.38751 12425.55903 7688.90258 1724.60875 5863.06053 5863.06053 5217.12597 66.37343 2.34617 100.00000 67.75525 3274.90197 1942.22400 0.02176 -0.01692 0.55484 2429.41377 355.50209 7660.83338 7660.83338 4105.82690 7728.83095 2142.16842 1.02700 881.43811 57.92283 2271.05956 18262.55544 28882.75399 1660.69027 0.05348 18.69893 0.13004 0.92571 1433.95400 2.31735 2.40510 2.31759 2.31755 2.23542 2.23542 2.25232 2.25169 2.25232 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3750.32481 2587.72412 1162.60069 -63.22088 0.32512 0.20937 8.52113 8.52113 104329.93590 82098.33886 40373.27291 29656.91112 36350.03420 17869.62511 2235.86115 2235.86115 2242.99036 5554.96031 594.69301 578.28898 13.67041 254.82851 268.66851 1486.82203 2.21716 2.21716 117.27313 252.26448 3995.69929 810.97972 8604.31395 8604.31395 2890.36280 44.78645 2.34790 100.00000 46.67998 1789.44331 1100.91950 0.02176 -0.01435 0.56895 1201.09388 450.34917 3976.44868 3976.44868 2294.60244 4020.64741 1034.38310 1.02700 404.77134 56.19108 1129.29337 9218.75927 18313.08172 926.75498 0.05609 17.82913 0.14234 0.99370 987.92267 2.39459 2.25218 2.39550 2.39554 2.18968 2.18968 2.20644 2.20511 2.20644 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1844.25327 1235.64969 608.60358 -42.47532 0.29155 0.19148 9.67630 9.67630 58541.07890 44815.29833 22038.69524 16188.91853 19842.51630 9020.39730 1098.33977 1098.33977 1110.04276 3001.46892 1085.31615 88.03634 535.53681 535.53681 753.20923 9.14933 2.18709 100.00000 312.15882 226.42516 526.78406 0.02176 -0.00553 9.25925 137.39177 38.17953 1075.22232 1075.22232 435.08036 1095.43263 102.03868 1.02700 147.49771 8.67151 121.94333 2629.86234 57885.94942 272.48462 0.06065 16.48798 0.17581 1.06586 6606.44549 2.14873 1.99549 2.15267 2.15267 1.65646 1.65646 1.72912 1.72801 1.72912 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 396.90083 226.23347 170.66736 -17.45345 0.07126 0.16831 2.62369 2.62369 15132.23192 11850.86527 5827.86722 4280.96430 5247.11418 2573.26615 111.44204 111.44204 111.84950 801.59462 2.17114 2.04636 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3085.04733 3299.51812 1.07755 1.92854 2.24631 2.24631 2.27884 0.16691 415.40913 2651.49717 2651.49717 1290.54896 7093.22278 1941.80673 5991.03879 5991.03879 4920.26316 86.04667 2.39728 100.00000 82.60178 3081.05591 1839.20725 0.02176 -0.00778 0.85628 2228.64039 338.86031 7070.48004 7070.48004 3712.55299 7122.43855 2358.45878 1.02700 802.36866 117.47779 2560.19597 16527.31984 63871.36164 1180.50981 0.05512 18.14205 0.13262 0.88273 1748.16199 2.39526 2.35146 2.39590 2.39594 2.17411 2.17411 2.19590 2.18804 2.19590 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3373.69269 2327.84795 1045.84473 -49.94087 0.17954 0.19770 8.92256 8.92256 97565.17759 77547.14512 38135.14496 28012.85412 34334.93803 16171.63018 2438.52037 2438.52037 2537.45322 5217.29803 1601.26113 443.28445 1203.68028 1203.68028 1091.17416 18.30694 2.46573 100.00000 75.65852 576.36231 514.81185 0.02176 -0.00707 1.63522 519.40379 64.18356 1589.31565 1589.31565 894.83344 1613.58418 536.67613 1.02700 181.00896 9.21485 561.48589 4172.17660 26810.68745 154.68333 0.06400 15.62588 0.11809 1.18232 1601.21654 2.45691 1.88693 2.46030 2.46675 2.00409 2.00409 2.00521 2.00735 2.00521 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 830.64989 573.14842 257.50146 -23.95317 0.11033 0.20924 6.24796 6.24796 21964.14229 16930.28637 8325.76008 6115.83627 7496.08941 4082.42906 527.31773 527.31773 549.54041 1162.23310 16212.90093 1595.35766 11425.37896 11425.37896 11790.57120 261.58876 2.51306 100.00000 -364.09188 3398.10862 8392.46259 0.02176 -0.00244 1.00000 1921.01022 657.68839 16306.80223 16306.80223 7578.52052 16115.61007 2319.15258 1.02700 1674.80515 140.90541 2559.61529 18942.47474 152134.73660 2493.76157 0.08153 12.26542 0.24965 1.04811 -7705.54295 2.46010 1.96830 2.45749 2.46116 1.99794 1.99794 2.00734 2.00715 2.00734 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 6920.83213 4913.79082 2007.04132 188.49185 0.20473 0.17475 5.86949 5.86949 216390.83001 195330.19517 96056.98954 70560.38304 86484.81045 18534.88216 2640.37433 2640.37433 2653.51658 12209.25904 31082.42819 4688.27693 + 1782.47243 495.18577 1756.80796 1756.80796 1282.90054 35.05020 2.41919 100.00000 -39.96133 982.94404 299.95650 0.02176 -0.00223 0.74787 815.08988 91.50458 1795.73018 1795.73018 919.00509 1766.60910 723.91591 1.02700 164.95997 14.38047 749.42675 3531.76277 16573.34087 179.77049 0.07542 13.25945 0.16779 1.03345 -845.73077 2.36997 2.07901 2.36788 2.37579 2.08551 2.08551 2.08654 2.08730 2.08654 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 827.50051 554.42534 273.07517 27.66288 0.19170 0.19782 8.61939 8.61939 24487.83659 20692.10024 10175.69687 7474.74049 9161.67808 3455.76546 740.75436 740.75436 762.68450 1356.05259 16340.76595 12624.58607 9491.29247 16414.34764 16416.29102 3111.67274 3716.17988 94.78150 3621.39838 1024.22165 4135.89440 33759.18193 866.06963 32893.11231 -6807.73318 13445.00510 2.31591 2.45451 2.30924 2.30924 2.25783 2.33559 2.25792 12204.87155 438.51928 2571.86892 2571.86892 1199.08788 2571.86892 4209.47609 17604.60988 3618.64474 17712.60347 17712.60347 12125.09393 163.55181 2.37861 100.00000 56.18271 8158.87618 3966.21775 0.02176 -0.00407 0.16463 4785.67561 915.40371 17527.63647 17527.63647 9968.29459 17713.70188 4367.21410 1.02700 1804.17332 176.92963 4668.19340 37086.27992 24700.36751 1660.75494 0.05377 18.59628 0.14651 0.94413 1189.03576 2.36660 2.42973 2.36692 2.36687 2.27718 2.27718 2.29530 2.29420 2.29530 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 9052.89088 6246.49471 2806.39617 -176.67674 0.66820 0.21592 9.10358 9.10358 238481.45535 190954.72694 93905.27763 68979.80450 84547.51888 36288.72543 4566.27590 4566.27590 4591.21999 12698.91917 7858.05835 1762.55012 6153.83313 6153.83313 5331.90268 67.83365 2.40952 100.00000 71.11551 3346.94978 1984.95290 0.02176 -0.01399 0.55484 2482.86085 373.13286 7829.37162 7829.37162 4309.45125 7898.86514 2189.29610 1.02700 900.82974 59.19713 2321.02285 18664.34882 28481.35846 1743.05054 0.05348 18.69894 0.13004 0.92571 1505.06951 2.37992 2.47004 2.38016 2.38013 2.29577 2.29577 2.31313 2.31248 2.31313 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 3936.31840 2716.05969 1220.25870 -66.35626 0.33324 0.20937 8.52113 8.52113 106625.20058 83904.50137 41261.48445 30309.36282 37149.73454 18262.76395 2285.05007 2285.05007 2292.33612 5677.16888 607.77625 591.01133 13.97116 260.43474 274.57921 1560.55948 2.27703 2.27703 119.85314 257.81429 4083.60463 828.82126 9031.03625 9031.03625 2953.95075 45.77175 2.41130 100.00000 48.99503 1828.81104 1125.13971 0.02176 -0.01447 0.56895 1227.51793 472.68378 4063.93051 4063.93051 2408.40094 4109.10161 1057.13952 1.02700 413.67631 57.42728 1154.13781 9421.57938 18049.97544 972.71646 0.05609 17.82913 0.14234 0.99370 1036.91770 2.45924 2.31299 2.46018 2.46021 2.24881 2.24881 2.26601 2.26465 2.26601 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 1935.71716 1296.93050 638.78666 -44.58184 0.29872 0.19148 9.67630 9.67630 59828.98551 45801.23438 22523.54628 16545.07455 20279.05143 9218.84949 1122.50323 1122.50323 1134.46369 3067.50103 1109.19310 89.97314 562.09621 562.09621 769.77982 9.35061 2.24614 100.00000 327.64002 231.40651 538.37331 0.02176 -0.00765 9.25925 140.41439 40.07301 1098.87720 1098.87720 456.65774 1119.53214 104.28353 1.02700 150.74266 8.86228 124.62608 2687.72062 57444.78324 285.99823 0.06065 16.48798 0.17581 1.06586 6934.08551 2.20675 2.04936 2.21079 2.21080 1.70118 1.70118 1.77581 1.77467 1.77581 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 416.58473 237.45329 179.13143 -18.31903 0.07246 0.16831 2.62369 2.62369 15465.14128 12111.58416 5956.08023 4375.14547 5362.55063 2629.87841 113.89376 113.89376 114.31019 819.22964 2.22977 2.10162 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3152.91834 3372.10748 1.07755 1.98061 2.30696 2.30696 2.34037 0.16691 424.54813 2709.83007 2709.83007 1318.94102 7249.27360 1984.52646 6288.15834 6288.15834 5028.50889 87.93970 2.46201 100.00000 86.69833 3148.83910 1879.66979 0.02176 -0.00777 0.85628 2277.67046 355.66574 7226.03052 7226.03052 3896.67333 7279.13211 2410.34485 1.02700 820.02076 120.06230 2616.52025 16890.92811 63376.82337 1239.05601 0.05512 18.14205 0.13262 0.88273 1834.86033 2.45993 2.41495 2.46059 2.46063 2.23281 2.23281 2.25519 2.24711 2.25519 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3541.00758 2443.29523 1097.71235 -52.41764 0.18323 0.19770 8.92256 8.92256 99711.61347 79253.18142 38974.11771 28629.13659 35090.30627 16527.40895 2492.16779 2492.16779 2593.27717 5332.07831 1636.48886 453.03670 1263.37559 1263.37559 1115.17998 18.70969 2.53230 100.00000 79.41072 589.04228 526.13770 0.02176 -0.00543 1.63522 530.83067 67.36668 1624.28057 1624.28057 939.21181 1649.08302 548.48300 1.02700 184.99115 9.41758 573.83857 4263.97015 26665.58565 162.35470 0.06400 15.62588 0.11809 1.18232 1680.62727 2.52324 1.93787 2.52673 2.53335 2.05820 2.05820 2.05935 2.06155 2.05935 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 871.84513 601.57314 270.27199 -25.14110 0.11242 0.20924 6.24796 6.24796 22447.35591 17302.75248 8508.92670 6250.38459 7661.00329 4172.24519 538.91871 538.91871 561.63029 1187.80209 16569.58457 1630.45551 11992.00914 11992.00914 12049.96363 267.34371 2.58091 100.00000 -382.14865 3472.86697 8577.09667 0.02176 -0.00012 1.00000 1963.27242 690.30578 16665.55169 16665.55169 7954.36963 16470.15331 2370.17391 1.02700 1711.65084 144.00533 2615.92679 19359.22341 152116.35436 2617.43717 0.08153 12.26542 0.24965 1.04811 -8087.69160 2.52652 2.02144 2.52384 2.52761 2.05188 2.05188 2.06154 2.06134 2.06154 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 7264.06385 5157.48533 2106.57851 197.83991 0.20794 0.17475 5.86949 5.86949 221151.42447 199627.45721 98170.24220 72112.71065 88387.47529 18942.64805 2698.46254 2698.46253 2711.89391 12477.86154 32623.92996 4791.41897 + 1821.68680 506.07985 1843.93509 1843.93509 1311.12433 35.82131 2.48451 100.00000 -41.94317 1004.56879 306.55554 0.02176 -0.00224 0.74787 833.02185 96.04266 1835.23622 1835.23622 964.58223 1805.47448 739.84206 1.02700 168.58909 14.69684 765.91413 3609.46406 16536.27741 188.68603 0.07542 13.25946 0.16779 1.03345 -887.67394 2.43396 2.13514 2.43181 2.43993 2.14182 2.14182 2.14288 2.14366 2.14288 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 868.53957 581.92151 286.61806 29.03479 0.19481 0.19782 8.61939 8.61939 25026.56983 21147.32621 10399.56209 7639.18470 9363.23489 3531.79338 757.05095 757.05095 779.46355 1385.88567 16700.26261 12902.32682 9962.00358 16775.46310 16777.44923 3180.12951 3797.93579 96.86669 3701.06910 1046.75452 4226.88403 34518.79135 884.99005 33633.80130 -7145.35586 13739.12286 2.37844 2.52078 2.37159 2.37159 2.31879 2.39866 2.31888 12473.37859 448.16670 2628.45001 2628.45001 1225.46780 2628.45001 4302.08451 17991.91109 3698.25488 18591.04223 18591.04223 12391.84586 167.14994 2.44283 100.00000 58.96903 8338.37136 4053.47450 0.02176 -0.00410 0.16463 4890.96042 960.80223 17913.24427 17913.24427 10462.66213 18103.40312 4463.29276 1.02700 1843.86511 180.82208 4770.89360 37902.24646 24599.35382 1743.11841 0.05377 18.59629 0.14651 0.94413 1248.00479 2.43050 2.49533 2.43082 2.43078 2.33866 2.33866 2.35727 2.35615 2.35727 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 9501.85990 6556.28333 2945.57657 -185.43884 0.68023 0.21592 9.10358 9.10358 243728.07317 195155.72873 95971.19266 70497.35941 86407.56333 37087.10552 4666.73392 4666.73392 4692.22678 12978.29328 8030.93554 1801.32621 6459.02629 6459.02629 5449.20448 69.32599 2.47458 100.00000 74.64241 3420.58263 2028.62185 0.02176 -0.01423 0.55484 2537.48376 391.63801 8001.61771 8001.61771 4523.17416 8072.64008 2237.46059 1.02700 920.64798 60.49946 2372.08532 19074.98119 28078.86322 1829.49538 0.05348 18.69894 0.13004 0.92571 1579.71191 2.44418 2.53673 2.44443 2.44439 2.35776 2.35776 2.37559 2.37492 2.37559 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 4131.53615 2850.75994 1280.77621 -69.64713 0.34162 0.20937 8.52113 8.52113 108970.96086 85750.39944 42169.23663 30976.16846 37967.02827 18664.55164 2335.32115 2335.32115 2342.76749 5802.06606 621.14732 604.01358 14.27852 266.16430 280.61995 1637.95386 2.33851 2.33851 122.48991 263.48620 4173.44388 847.05532 9478.92141 9478.92141 3018.93763 46.77873 2.47640 100.00000 51.42489 1869.04486 1149.89277 0.02176 -0.01472 0.56895 1254.52331 496.12606 4153.33693 4153.33693 2527.84316 4199.50180 1080.39657 1.02700 422.77718 58.69068 1179.52883 9628.86137 17786.14832 1020.95736 0.05609 17.82913 0.14234 0.99370 1088.34259 2.52564 2.37544 2.52660 2.52664 2.30952 2.30952 2.32720 2.32580 2.32720 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2031.71711 1361.25046 670.46664 -46.79283 0.30611 0.19148 9.67630 9.67630 61145.22597 46808.86100 23019.06404 16909.06600 20725.19033 9421.66754 1147.19829 1147.19829 1159.42188 3134.98585 1133.59533 91.95254 589.97281 589.97281 786.71497 9.55632 2.30678 100.00000 343.88900 236.49745 550.21751 0.02176 -0.00773 9.25925 143.50350 42.06039 1123.05249 1123.05249 479.30522 1144.16183 106.57777 1.02700 154.05900 9.05725 127.36786 2746.85174 57002.40839 300.18202 0.06065 16.48799 0.17581 1.06586 7277.97451 2.26633 2.10470 2.27048 2.27049 1.74711 1.74711 1.82375 1.82259 1.82375 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 437.24483 249.22955 188.01528 -19.22755 0.07369 0.16831 2.62369 2.62369 15805.37463 12378.03888 6087.11392 4471.39862 5480.52668 2687.73612 116.39942 116.39942 116.82501 837.25264 2.28997 2.15836 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3222.28251 3446.29381 1.07755 2.03408 2.36925 2.36925 2.40356 0.16691 433.88818 2769.44630 2769.44630 1347.95771 7408.75754 2028.18602 6600.01323 6600.01323 5139.13603 89.87437 2.52848 100.00000 90.99805 3218.11352 1921.02250 0.02176 -0.00786 0.85628 2327.77918 373.30463 7385.00311 7385.00311 4089.92492 7439.27294 2463.37240 1.02700 838.06120 122.70367 2674.08366 17262.53556 62880.93020 1300.50575 0.05512 18.14205 0.13262 0.88273 1925.85838 2.52635 2.48015 2.52703 2.52707 2.29310 2.29310 2.31608 2.30779 2.31608 1.00001 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3716.62029 2564.46800 1152.15229 -55.01724 0.18702 0.19770 8.92256 8.92256 101905.27082 80996.75050 39831.54785 29258.97727 35862.29261 16891.01476 2546.99546 2546.99546 2650.32923 5449.38377 1672.49159 463.00351 1326.03143 1326.03143 1139.71392 19.12130 2.60068 100.00000 83.34902 602.00120 537.71272 0.02176 -0.00547 1.63522 542.50893 70.70766 1660.01473 1660.01473 985.79108 1685.36282 560.54962 1.02700 189.06095 9.62476 586.46302 4357.78303 26520.08631 170.40652 0.06400 15.62589 0.11809 1.18232 1763.97629 2.59137 1.99020 2.59495 2.60175 2.11377 2.11377 2.11495 2.11721 2.11495 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 915.08342 631.40756 283.67586 -26.38795 0.11455 0.20924 6.24796 6.24796 22941.20015 17683.41283 8696.12299 6387.89298 7829.54528 4264.03721 550.77492 550.77492 573.98615 1213.93359 16934.11524 1666.32551 12586.74078 12586.74078 12315.06270 273.22527 2.65059 100.00000 -401.10093 3549.27000 8765.79270 0.02176 -0.00012 1.00000 2006.46439 724.54080 17032.19364 17032.19364 8348.85859 16832.49649 2422.31771 1.02700 1749.30714 147.17345 2673.47715 19785.13956 152097.92176 2747.24634 0.08153 12.26542 0.24965 1.04811 -8488.79252 2.59474 2.07602 2.59199 2.59585 2.10728 2.10728 2.11720 2.11700 2.11720 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 7624.31779 5413.26563 2211.05216 207.65159 0.21119 0.17475 5.86949 5.86949 226016.75205 204019.25896 100329.98640 73699.18946 90331.99873 19359.38488 2757.82868 2757.82868 2771.55555 12752.37337 34241.88097 4896.83013 + 1861.76389 517.21361 1935.38319 1935.38319 1339.96905 36.60937 2.55159 100.00000 -44.02330 1026.66930 313.29976 0.02176 -0.00224 0.74787 851.34832 100.80580 1875.61140 1875.61140 1012.41971 1845.19489 756.11857 1.02700 172.29805 15.02017 782.76423 3688.87472 16499.31522 198.04372 0.07542 13.25946 0.16779 1.03345 -931.69723 2.49968 2.19279 2.49747 2.50581 2.19965 2.19965 2.20074 2.20153 2.20074 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 911.61391 610.78132 300.83259 30.47474 0.19797 0.19782 8.61939 8.61939 25577.15517 21612.56714 10628.35233 7807.24667 9569.22595 3609.49388 773.70606 773.70606 796.61174 1416.37507 17067.66820 13186.17786 10456.05913 17144.52310 17146.55293 3250.09232 3881.49034 98.99776 3782.49258 1069.78311 4319.87543 35293.59047 904.33870 34389.25177 -7499.72261 14039.86170 2.44266 2.58884 2.43563 2.43563 2.38139 2.46342 2.38149 12747.79277 458.02637 2686.27588 2686.27588 1252.42808 2686.27588 4396.73032 18387.73293 3779.61645 19513.04628 19513.04628 12664.46633 170.82724 2.50879 100.00000 61.89354 8521.81544 4142.65089 0.02176 -0.00410 0.16463 4998.56149 1008.45225 18307.33544 18307.33544 10981.54734 18501.67778 4561.48515 1.02700 1884.43012 184.80016 4875.85320 38736.16234 24498.61613 1829.56662 0.05377 18.59630 0.14651 0.94413 1309.89833 2.49613 2.56271 2.49646 2.49641 2.40180 2.40180 2.42092 2.41976 2.42092 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 9973.09509 6881.43561 3091.65948 -194.63550 0.69247 0.21592 9.10358 9.10358 249090.11572 199449.15252 98082.55780 72048.30050 88308.52873 37903.04917 4769.40201 4769.40201 4795.45571 13263.81368 8207.61603 1840.95536 6779.35521 6779.35521 5569.08692 70.85116 2.54139 100.00000 78.34422 3495.83541 2073.25150 0.02176 -0.01440 0.55484 2593.30837 411.06090 8177.65321 8177.65321 4747.49643 8250.23807 2286.68470 1.02700 940.90223 61.83045 2424.27117 19494.64699 27677.46769 1920.22736 0.05348 18.69894 0.13004 0.92571 1658.05613 2.51017 2.60522 2.51043 2.51039 2.42142 2.42142 2.43973 2.43904 2.43973 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 4336.43553 2992.14052 1344.29501 -73.10121 0.35025 0.20937 8.52113 8.52113 111368.32764 87636.90723 43096.95936 31657.64381 38802.30246 19075.17846 2386.69818 2386.69818 2394.30835 5929.71098 634.81256 617.30187 14.59265 272.01991 286.79359 1719.18653 2.40165 2.40165 125.18468 269.28290 4265.25960 865.69053 9949.01899 9949.01899 3085.35423 47.80786 2.54326 100.00000 53.97526 1910.16383 1175.19040 0.02176 -0.01490 0.56895 1282.12281 520.73093 4244.71030 4244.71030 2653.20901 4291.89079 1104.16529 1.02700 432.07828 59.98188 1205.47845 9840.70339 17523.04203 1071.59071 0.05609 17.82914 0.14234 0.99370 1142.31785 2.59383 2.43958 2.59482 2.59486 2.37188 2.37188 2.39003 2.38859 2.39003 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2132.47807 1428.76031 703.71776 -49.11347 0.31372 0.19148 9.67630 9.67630 62490.42363 47838.65541 23525.48319 17281.06526 21181.14428 9628.94751 1172.43664 1172.43664 1184.92914 3203.95533 1158.53442 93.97550 619.23192 619.23192 804.02269 9.76656 2.36907 100.00000 360.94383 241.70040 562.32229 0.02176 -0.00777 9.25925 146.66058 44.14633 1147.75963 1147.75963 503.07588 1169.33338 108.92248 1.02700 157.44829 9.25651 130.16995 2807.28369 56561.24221 315.06924 0.06065 16.48799 0.17581 1.06586 7638.91834 2.32752 2.16152 2.33179 2.33179 1.79428 1.79428 1.87299 1.87180 1.87299 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 458.92954 261.58984 197.33970 -20.18112 0.07494 0.16831 2.62369 2.62369 16153.09309 12650.35559 6221.03036 4569.76933 5601.09820 2746.86669 118.96021 118.96021 119.39516 855.67214 2.35180 2.21663 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3293.17269 3522.11223 1.07755 2.08900 2.43322 2.43322 2.46846 0.16691 443.43371 2830.37409 2830.37409 1377.61276 7571.75012 2072.80609 6927.33425 6927.33425 5252.19696 91.85160 2.59675 100.00000 95.51101 3288.91199 1963.28498 0.02176 -0.00790 0.85628 2378.99030 391.81830 7547.47309 7547.47309 4292.76064 7602.93686 2517.56657 1.02700 856.49854 125.40315 2732.91347 17642.31816 62386.39194 1365.00302 0.05512 18.14205 0.13262 0.88273 2021.36938 2.59456 2.54711 2.59526 2.59530 2.35501 2.35501 2.37862 2.37010 2.37862 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 3900.94234 2691.65022 1209.29213 -57.74577 0.19088 0.19770 8.92256 8.92256 104147.18852 82778.67808 40707.84145 29902.67443 36651.26264 17262.61981 2603.02933 2603.02933 2708.63645 5569.26995 1709.28639 473.18958 1391.79463 1391.79463 1164.78762 19.54197 2.67089 100.00000 87.48263 615.24522 549.54240 0.02176 -0.00549 1.63522 554.44412 74.21434 1696.53503 1696.53503 1034.68039 1722.44079 572.88171 1.02700 193.22029 9.83651 599.36520 4453.65967 26374.98451 178.85766 0.06400 15.62589 0.11809 1.18232 1851.45892 2.66134 2.04393 2.66502 2.67200 2.17085 2.17085 2.17205 2.17437 2.17205 1.00002 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 960.46606 662.72158 297.74448 -27.69663 0.11673 0.20924 6.24796 6.24796 23445.90891 18072.44771 8887.43760 6528.42656 8001.79518 4357.84859 562.89196 562.89196 586.61384 1240.63999 17306.66558 1702.98466 13210.96753 13210.96753 12585.99393 279.23622 2.72216 100.00000 -420.99312 3627.35390 8958.64004 0.02176 -0.00012 1.00000 2050.60658 760.47367 17406.90170 17406.90170 8762.91184 17202.81122 2475.60867 1.02700 1787.79188 150.41126 2732.29362 20220.42494 152079.53953 2883.49326 0.08153 12.26542 0.24965 1.04811 -8909.78564 2.66479 2.13207 2.66197 2.66594 2.16418 2.16418 2.17436 2.17415 2.17436 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 8002.43817 5681.73110 2320.70707 217.94986 0.21450 0.17475 5.86949 5.86949 230989.11686 208507.68030 102537.24495 75320.57078 92319.30167 19785.28999 2818.50088 2818.50088 2832.52974 13032.92451 35940.07263 5004.56034 + 1902.72267 528.59230 2031.36658 2031.36658 1369.44836 37.41478 2.62049 100.00000 -46.20659 1049.25601 320.19235 0.02176 -0.00224 0.74787 870.07797 105.80516 1916.87483 1916.87483 1062.62965 1885.78916 772.75317 1.02700 176.08860 15.35062 799.98503 3770.03234 16462.35302 207.86550 0.07542 13.25946 0.16779 1.03345 -977.90382 2.56717 2.25199 2.56490 2.57347 2.25904 2.25904 2.26016 2.26098 2.26016 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 956.82449 641.07241 315.75208 31.98610 0.20118 0.19782 8.61939 8.61939 26139.85335 22088.04337 10862.17596 7979.00601 9779.74881 3688.90376 790.72758 790.72758 814.13719 1447.53524 17443.15671 13476.27362 10974.61687 17521.70241 17523.77689 3321.59431 3966.88308 101.17571 3865.70737 1093.31832 4414.91264 36084.05041 924.12393 35159.92648 -7871.66381 14347.35375 2.50861 2.65874 2.50139 2.50139 2.44569 2.52993 2.44579 13028.24407 468.10294 2745.37392 2745.37392 1279.98148 2745.37392 4493.45834 18792.26284 3862.76796 20480.77619 20480.77619 12943.08444 174.58544 2.57652 100.00000 64.96309 8709.29528 4233.78916 0.02176 -0.00412 0.16463 5108.52979 1058.46543 18710.09661 18710.09661 11526.16614 18908.71448 4661.83777 1.02700 1925.88756 188.86576 4983.12192 39588.42251 24397.87844 1920.30213 0.05377 18.59630 0.14651 0.94413 1374.86142 2.56352 2.63190 2.56386 2.56381 2.46665 2.46665 2.48628 2.48510 2.48628 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 10467.70071 7222.71349 3244.98722 -204.28825 0.70495 0.21592 9.10358 9.10358 254570.12239 203837.03158 100240.37294 73633.36229 90251.31535 38736.94280 4874.32880 4874.32880 4900.95568 13555.61557 8388.18349 1881.45636 7115.57051 7115.57051 5691.60676 72.40988 2.61001 100.00000 82.22962 3572.74375 2118.86301 0.02176 -0.01461 0.55484 2650.36113 431.44705 8357.56148 8357.56148 4982.94374 8431.74322 2336.99174 1.02700 961.60207 63.19072 2477.60511 19923.54499 27276.07216 2015.45911 0.05348 18.69895 0.13004 0.92571 1740.28576 2.57794 2.67556 2.57821 2.57817 2.48679 2.48679 2.50560 2.50490 2.50560 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 4551.49669 3140.53272 1410.96397 -76.72659 0.35915 0.20937 8.52113 8.52113 113818.43627 89564.91818 44045.09197 32354.11161 39655.95266 19494.83888 2439.20552 2439.20552 2446.98310 6060.16411 648.77843 630.88250 14.91369 278.00435 293.10304 1804.44786 2.46649 2.46649 127.93875 275.20712 4359.09526 884.73571 10442.43058 10442.43058 3153.23199 48.85963 2.61193 100.00000 56.65210 1952.18741 1201.04458 0.02176 -0.01513 0.56895 1310.32949 546.55606 4338.09387 4338.09387 2784.79224 4386.31234 1128.45691 1.02700 441.58399 61.30148 1231.99896 10057.20576 17259.93575 1124.73518 0.05609 17.82914 0.14234 0.99370 1198.96995 2.66387 2.50545 2.66488 2.66492 2.43592 2.43592 2.45456 2.45308 2.45456 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2238.23618 1499.61824 738.61794 -51.54921 0.32157 0.19148 9.67630 9.67630 63865.21554 48891.10528 24043.04355 17661.24850 21647.12921 9840.78756 1198.23023 1198.23023 1210.99757 3274.44215 1184.02216 96.04296 649.94210 649.94210 821.71118 9.98143 2.43303 100.00000 378.84447 247.01780 574.69338 0.02176 -0.00783 9.25925 149.88711 46.33573 1173.01033 1173.01033 528.02542 1195.05870 111.31877 1.02700 160.91216 9.46015 133.03368 2869.04510 56120.07603 330.69479 0.06065 16.48799 0.17581 1.06586 8017.76281 2.39036 2.21988 2.39475 2.39475 1.84273 1.84273 1.92357 1.92233 1.92357 1.00001 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 481.68969 274.56313 207.12657 -21.18198 0.07622 0.16831 2.62369 2.62369 16508.46134 12928.66327 6357.89296 4670.30421 5724.32230 2807.29811 121.57733 121.57733 122.02185 874.49687 2.41530 2.27648 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3365.62245 3599.59866 1.07755 2.14541 2.49891 2.49891 2.53511 0.16691 453.18925 2892.64229 2892.64229 1407.92023 7738.32853 2118.40780 7270.88842 7270.88842 5367.74523 93.87234 2.66686 100.00000 100.24778 3361.26801 2006.47722 0.02176 -0.00796 0.85628 2431.32806 411.25013 7713.51741 7713.51741 4505.65578 7770.20138 2572.95301 1.02700 875.34150 128.16202 2793.03754 18030.45579 61891.85367 1432.69897 0.05512 18.14205 0.13262 0.88273 2121.61716 2.66461 2.61589 2.66533 2.66537 2.41860 2.41860 2.44284 2.43409 2.44284 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 4094.40565 2825.13990 1269.26575 -60.60961 0.19484 0.19770 8.92256 8.92256 106438.42831 84599.80804 41603.41349 30560.53293 37457.58999 17642.40009 2660.29594 2660.29594 2768.22642 5691.79363 1746.89067 483.59974 1460.81928 1460.81928 1190.41293 19.97189 2.74301 100.00000 91.82124 628.78061 561.63232 0.02176 -0.00552 1.63522 566.64189 77.89492 1733.85878 1733.85878 1085.99433 1760.33446 585.48510 1.02700 197.47114 10.05291 612.55122 4551.64548 26229.88271 187.72792 0.06400 15.62590 0.11809 1.18232 1943.28016 2.73320 2.09912 2.73697 2.74415 2.22946 2.22946 2.23070 2.23308 2.23070 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1008.09941 695.58859 312.51082 -29.07022 0.11894 0.20924 6.24796 6.24796 23961.72119 18470.04135 9082.96112 6672.05186 8177.83459 4453.72377 575.27558 575.27558 599.51933 1267.93394 17687.41203 1740.45030 13866.15219 13866.15219 12862.88566 285.37941 2.79566 100.00000 -441.87185 3707.15564 9155.73001 0.02176 -0.00012 1.00000 2095.71990 798.18860 17789.85334 17789.85334 9197.49964 17581.27287 2530.07204 1.02700 1827.12328 153.72031 2792.40405 20665.28574 152061.15729 3026.49720 0.08153 12.26542 0.24965 1.04811 -9351.65750 2.73674 2.18964 2.73384 2.73792 2.22261 2.22261 2.23307 2.23286 2.23307 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 8399.31104 5963.51084 2435.80020 228.75886 0.21786 0.17475 5.86949 5.86949 236070.87371 213094.84686 104793.06316 76977.62248 94350.32524 20220.56508 2880.50787 2880.50787 2894.84536 13319.64785 37722.48440 5114.66061 + 1944.58255 540.22132 2132.11016 2132.11016 1399.57621 38.23791 2.69124 100.00000 -48.49816 1072.33963 327.23658 0.02176 -0.00225 0.74787 889.21968 111.05246 1959.04605 1959.04605 1115.32970 1927.27650 789.75373 1.02700 179.96255 15.68833 817.58469 3852.97537 16425.39083 218.17438 0.07542 13.25947 0.16779 1.03345 -1026.40198 2.63648 2.31280 2.63415 2.64295 2.32003 2.32003 2.32118 2.32202 2.32118 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1004.27724 672.86575 331.41149 33.57242 0.20444 0.19782 8.61939 8.61939 26714.93086 22573.98007 11101.14371 8154.54405 9994.90317 3770.06064 808.12358 808.12358 832.04820 1479.38094 17826.90595 13772.75149 11518.89197 17907.17966 17909.29979 3394.66935 4054.15446 103.40157 3950.75289 1117.37131 4512.04066 36890.64034 944.35434 35946.28599 -8262.05106 14661.73525 2.57634 2.73052 2.56893 2.56893 2.51173 2.59824 2.51183 13314.86529 478.40120 2805.77211 2805.77211 1308.14106 2805.77211 4592.31437 19205.69241 3947.74882 21496.49969 21496.49969 13227.83215 178.42632 2.64609 100.00000 68.18487 8900.89968 4326.93248 0.02176 -0.00414 0.16463 5220.91739 1110.95896 19121.71852 19121.71852 12097.79477 19324.70598 4764.39815 1.02700 1968.25707 193.02080 5092.75054 40459.43059 24297.14075 2015.53759 0.05377 18.59631 0.14651 0.94413 1443.04629 2.63274 2.70296 2.63308 2.63303 2.53325 2.53325 2.55341 2.55219 2.55341 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 10986.83581 7580.91671 3405.91910 -214.41972 0.71766 0.21592 9.10358 9.10358 260170.68839 208321.44393 102445.66000 75253.29542 92236.84325 39589.18133 4981.56398 4981.56398 5008.77665 13853.83716 8572.72343 1922.84838 7468.46008 7468.46008 5816.82205 74.00290 2.68048 100.00000 86.30772 3651.34407 2165.47798 0.02176 -0.01483 0.55484 2708.66904 452.84423 8541.42774 8541.42774 5230.06783 8617.24147 2388.40553 1.02700 982.75730 64.58092 2532.11239 20361.87831 26874.67663 2115.41377 0.05348 18.69895 0.13004 0.92571 1826.59348 2.64755 2.74780 2.64782 2.64778 2.55394 2.55394 2.57325 2.57253 2.57325 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 4777.22360 3296.28428 1480.93931 -80.53177 0.36833 0.20937 8.52113 8.52113 116322.44708 91535.34535 45014.08348 33065.90169 40528.38317 19923.73163 2492.86801 2492.86801 2500.81670 6193.48721 663.05155 644.76191 15.24179 284.12044 299.55131 1893.93763 2.53309 2.53309 130.75340 281.26167 4454.99531 904.19988 10960.31243 10960.31243 3222.60305 49.93454 2.68245 100.00000 59.46171 1995.13551 1227.46754 0.02176 -0.01536 0.56895 1339.15673 573.66196 4433.53189 4433.53189 2922.90121 4482.81116 1153.28295 1.02700 451.29884 62.65011 1259.10292 10278.47103 16996.82947 1180.51529 0.05609 17.82914 0.14234 0.99370 1258.43166 2.73579 2.57310 2.73683 2.73687 2.50169 2.50169 2.52083 2.51932 2.52083 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2349.23925 1573.99030 775.24895 -54.10574 0.32967 0.19148 9.67630 9.67630 65270.25279 49966.70903 24571.99023 18049.79576 22123.36580 10057.28801 1224.59128 1224.59128 1237.63950 3346.47968 1210.07064 98.15590 682.17533 682.17533 839.78881 10.20102 2.49872 100.00000 397.63288 252.45219 587.33662 0.02176 -0.00789 9.25925 153.18462 48.63370 1198.81654 1198.81654 554.21231 1221.34998 113.76779 1.02700 164.45222 9.66828 135.96042 2932.16522 55678.90985 347.09526 0.06065 16.48799 0.17581 1.06586 8415.39569 2.45490 2.27982 2.45940 2.45941 1.89248 1.89248 1.97550 1.97424 1.97550 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 505.57861 288.17981 217.39880 -22.23248 0.07752 0.16831 2.62369 2.62369 16871.64768 13213.09371 6497.76653 4773.05085 5850.25733 2869.05902 124.25203 124.25203 124.70633 893.73575 2.48051 2.33795 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3439.66610 3678.78979 1.07755 2.20333 2.56639 2.56639 2.60355 0.16691 463.15941 2956.28039 2956.28039 1438.89445 7908.57167 2165.01274 7631.48083 7631.48083 5485.83557 95.93753 2.73887 100.00000 105.21947 3435.21587 2050.61970 0.02176 -0.00802 0.85628 2484.81724 431.64567 7883.21471 7883.21471 4729.10925 7941.14572 2629.55794 1.02700 894.59900 130.98158 2854.48433 18427.13225 61397.31540 1503.75224 0.05512 18.14205 0.13262 0.88273 2226.83663 2.73656 2.68651 2.73729 2.73734 2.48390 2.48390 2.50880 2.49981 2.50880 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 4297.46359 2965.24988 1332.21371 -63.61548 0.19888 0.19770 8.92256 8.92256 108780.07527 86461.00284 42518.68811 31232.86430 38281.65654 18030.53545 2718.82242 2718.82242 2829.12737 5817.01284 1785.32225 494.23893 1533.26715 1533.26715 1216.60200 20.41128 2.81707 100.00000 96.37503 642.61377 573.98823 0.02176 -0.00555 1.63522 579.10800 81.75804 1772.00366 1772.00366 1139.85312 1799.06180 598.36576 1.02700 201.81550 10.27408 626.02734 4651.78685 26084.78092 197.03810 0.06400 15.62590 0.11809 1.18232 2039.65519 2.80699 2.15579 2.81087 2.81824 2.28965 2.28965 2.29093 2.29337 2.29093 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1058.09508 730.08561 328.00948 -30.51193 0.12121 0.20924 6.24796 6.24796 24488.88128 18876.38205 9282.78617 6818.83693 8357.74685 4551.70814 587.93163 587.93163 612.70875 1295.82835 18076.53489 1778.74019 14553.83006 14553.83006 13145.86900 291.65776 2.87114 100.00000 -463.78604 3788.71303 9357.15597 0.02176 -0.00012 1.00000 2141.82572 837.77396 18181.22991 18181.22991 9653.64039 17968.06068 2585.73359 1.02700 1867.31997 157.10215 2853.83691 21119.93267 152042.77505 3176.59329 0.08153 12.26542 0.24965 1.04811 -9815.44354 2.81064 2.24876 2.80766 2.81184 2.28262 2.28262 2.29337 2.29314 2.29337 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 8815.86643 6259.26517 2556.60126 240.10393 0.22127 0.17475 5.86949 5.86949 241264.42923 217782.93104 107098.50934 78671.12929 96426.03131 20665.41630 2943.87901 2943.87901 2958.53192 13612.67915 39593.29309 5227.18309 + 1987.36334 552.10619 2237.85002 2237.85002 1430.36687 39.07914 2.76390 100.00000 -50.90337 1095.93109 334.43578 0.02176 -0.00048 0.74787 908.78250 116.56000 2002.14504 2002.14504 1170.64336 1969.67656 807.12831 1.02700 183.92173 16.03347 835.57155 3937.74308 16417.49107 228.99452 0.07542 13.25947 0.16779 1.03345 -1077.30535 2.70767 2.37524 2.70527 2.71431 2.38267 2.38267 2.38385 2.38472 2.38385 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1054.08336 706.23585 347.84751 35.23741 0.20751 0.19782 8.61939 8.61939 27302.66003 23070.60737 11345.36874 8333.94392 10214.79093 3853.00294 825.90229 825.90229 850.35325 1511.92724 18219.09768 14075.75187 12090.15983 18301.13741 18303.30418 3469.35204 4143.34582 105.67640 4037.66941 1141.95347 4611.30551 37713.82852 965.03886 36748.78966 -8671.79918 14983.14655 2.64590 2.80425 2.63829 2.63829 2.57954 2.66839 2.57965 13607.79217 488.92602 2867.49907 2867.49907 1336.92015 2867.49907 4693.34523 19628.21743 4034.59924 22562.59698 22562.59698 13518.84431 182.35169 2.71753 100.00000 71.56643 9096.71937 4422.12494 0.02176 -0.00096 0.16463 5335.77751 1166.05585 19542.39611 19542.39611 12697.77273 19749.84929 4869.21485 1.02700 2011.55870 197.26726 5204.79100 41349.59908 24273.83664 2115.49615 0.05377 18.59631 0.14651 0.94413 1514.61272 2.70382 2.77594 2.70418 2.70412 2.60165 2.60165 2.62235 2.62110 2.62235 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 11531.71688 7956.88465 3574.83223 -225.05365 0.72900 0.21592 9.10358 9.10358 265894.46604 212904.51329 104699.46334 76908.86705 94266.05274 40460.16838 5091.15833 5091.15833 5118.96968 14158.61966 8761.32325 1965.15102 7838.85085 7838.85085 5944.79207 75.63096 2.75285 100.00000 90.58806 3731.67360 2213.11847 0.02176 -0.00555 0.55484 2768.25973 475.30259 8729.33905 8729.33905 5489.44779 8806.82068 2440.95042 1.02700 1004.37795 66.00169 2587.81884 20809.85453 26725.96515 2220.32559 0.05348 18.69895 0.13004 0.92571 1917.18154 2.71903 2.82199 2.71931 2.71927 2.62289 2.62289 2.64273 2.64199 2.64273 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 5014.14520 3459.76019 1554.38501 -84.52566 0.37534 0.20937 8.52113 8.52113 118881.54592 93549.12189 46004.39280 33793.35115 41420.00713 20362.05985 2547.71108 2547.71108 2555.83464 6329.74343 677.63867 658.94666 15.57711 290.37108 306.14143 1987.86557 2.60148 2.60148 133.62997 287.44942 4553.00516 924.09227 11503.87811 11503.87811 3293.50028 51.03310 2.75488 100.00000 62.41065 2039.02847 1254.47182 0.02176 -0.00545 0.56895 1368.61816 602.11214 4531.06954 4531.06954 3067.85956 4581.43295 1178.65516 1.02700 461.22740 64.02841 1286.80317 10504.60397 16904.37819 1239.06175 0.05609 17.82914 0.14234 0.99370 1320.84231 2.80966 2.64257 2.81073 2.81077 2.56924 2.56924 2.58890 2.58734 2.58890 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2465.74741 1652.05077 813.69665 -56.78906 0.33574 0.19148 9.67630 9.67630 66706.20076 51065.97605 25112.57373 18446.89106 22610.07960 10278.55139 1251.53228 1251.53228 1264.86756 3420.10203 1236.69218 100.31533 716.00713 716.00713 858.26416 10.42544 2.56619 100.00000 417.35309 258.00614 600.25802 0.02176 -0.00303 9.25925 156.55468 51.04564 1225.19049 1225.19049 581.69791 1248.21966 116.27068 1.02700 168.07017 9.88098 138.95155 2996.67394 55510.49598 364.30910 0.06065 16.48799 0.17581 1.06586 8832.74878 2.52119 2.34138 2.52581 2.52581 1.94358 1.94358 2.02884 2.02754 2.02884 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 530.65227 302.47180 228.18048 -23.33508 0.07862 0.16831 2.62369 2.62369 17242.82409 13503.78162 6640.71732 4878.05791 5978.96292 2932.17864 126.98557 126.98557 127.44987 913.39789 2.54748 2.40107 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3515.33872 3759.72312 1.07755 2.26282 2.63568 2.63568 2.67385 0.16691 473.34891 3021.31852 3021.31852 1470.55012 8082.56016 2212.64300 8009.95644 8009.95644 5606.52389 98.04815 2.81282 100.00000 110.43772 3510.79058 2095.73331 0.02176 -0.00208 0.85628 2539.48320 453.05270 8056.64534 8056.64534 4963.64467 8115.85084 2687.40819 1.02700 914.28017 133.86317 2917.28296 18832.53540 61269.45143 1578.32932 0.05512 18.14206 0.13262 0.88273 2337.27435 2.81045 2.75905 2.81120 2.81125 2.55096 2.55096 2.57653 2.56730 2.57653 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 4510.59197 3112.30846 1398.28351 -66.77043 0.20218 0.19770 8.92256 8.92256 111173.23836 88363.14391 43454.09876 31919.98696 39123.85255 18427.20971 2778.63649 2778.63649 2891.36814 5944.98687 1824.59932 505.11218 1609.30799 1609.30799 1243.36723 20.86032 2.89313 100.00000 101.15465 656.75127 586.61596 0.02176 -0.00114 1.63522 591.84837 85.81275 1810.98772 1810.98772 1196.38299 1838.64114 611.52980 1.02700 206.25544 10.50011 639.79994 4754.13121 26055.09795 206.81001 0.06400 15.62590 0.11809 1.18232 2140.80984 2.88278 2.21400 2.88676 2.89433 2.35147 2.35147 2.35278 2.35529 2.35278 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1110.57024 766.29347 344.27678 -32.02513 0.12314 0.20924 6.24796 6.24796 25027.63883 19291.66224 9487.00735 6968.85126 8541.61719 4651.84811 600.86612 600.86612 626.18834 1324.33644 18474.21845 1817.87245 15275.61263 15275.61263 13435.07796 298.07422 2.94866 100.00000 -486.78704 3872.06467 9563.01329 0.02176 0.00066 1.00000 2188.94586 879.32252 18581.21676 18581.21676 10132.40298 18363.35781 2642.61970 1.02700 1908.40099 160.55840 2916.62129 21584.58108 152143.48323 3334.13324 0.08153 12.26542 0.24965 1.04811 -10302.23059 2.88652 2.30947 2.88346 2.88776 2.34425 2.34425 2.35529 2.35506 2.35529 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 9253.08046 6569.68713 2683.39333 252.01164 0.22461 0.17475 5.86949 5.86949 246572.24297 222574.15300 109454.67532 80401.89323 98547.40289 21120.05430 3008.64431 3008.64431 3023.61959 13912.15719 41556.88265 5342.18106 + 2031.08531 564.25252 2348.83394 2348.83394 1461.83492 39.93888 2.83853 100.00000 -53.42788 1120.04156 341.79336 0.02176 -0.00048 0.74787 928.77570 122.34067 2046.19221 2046.19221 1228.70024 2013.00942 824.88512 1.02700 187.96800 16.38621 853.95411 4024.37562 16409.61288 240.35128 0.07542 13.25947 0.16779 1.03345 -1130.73323 2.78077 2.43937 2.77832 2.78760 2.44701 2.44701 2.44822 2.44910 2.44822 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1106.35956 741.26091 365.09865 36.98498 0.21062 0.19782 8.61939 8.61939 27903.31922 23578.16046 11594.96673 8517.29060 10439.51621 3937.76994 844.07213 844.07213 869.06101 1545.18956 18619.91762 14385.41825 12689.75915 18703.76222 18705.97666 3545.67774 4234.49938 108.00128 4126.49809 1167.07643 4712.75418 38554.08333 986.18665 37567.89669 -9101.86834 15311.73209 2.71734 2.87996 2.70952 2.70952 2.64919 2.74044 2.64930 13907.16345 499.68239 2930.58401 2930.58401 1366.33237 2930.58402 4796.59878 20060.03799 4123.36038 23681.56630 23681.56630 13816.25873 186.36343 2.79091 100.00000 75.11569 9296.84709 4519.41164 0.02176 -0.00096 0.16463 5453.16455 1223.88522 19972.32860 19972.32860 13327.50601 20184.34575 4976.33752 1.02700 2055.81297 201.60714 5319.29634 42259.34957 24250.59620 2220.41205 0.05377 18.59632 0.14651 0.94413 1589.72841 2.77682 2.85089 2.77719 2.77714 2.67189 2.67189 2.69315 2.69187 2.69315 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 12103.62079 8351.49835 3752.12244 -236.21496 0.74052 0.21592 9.10358 9.10358 271744.16604 217588.41013 107002.85033 78600.86125 96339.90482 41350.31642 5203.16375 5203.16375 5231.58695 14470.10743 8954.07226 2008.38432 8227.61078 8227.61078 6075.57742 77.29484 2.82718 100.00000 95.08069 3813.77038 2261.80705 0.02176 -0.00556 0.55484 2829.16141 498.87474 8921.38441 8921.38441 5761.69143 9000.57064 2494.65131 1.02700 1026.47426 67.45373 2644.75082 21267.68581 26577.65999 2330.44041 0.05348 18.69896 0.13004 0.92571 2012.26223 2.79245 2.89819 2.79273 2.79269 2.69371 2.69371 2.71409 2.71332 2.71409 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 5262.81669 3631.34352 1631.47317 -88.71763 0.38248 0.20937 8.52113 8.52113 121496.94474 95607.20149 47016.48892 34536.80449 42331.24681 20810.03111 2603.76069 2603.76069 2612.06297 6468.99730 692.54671 673.44348 15.91981 296.75924 312.87654 2086.45176 2.67172 2.67172 136.56983 293.77331 4653.17122 944.42229 12074.40138 12074.40138 3365.95725 52.15583 2.82926 100.00000 65.50585 2083.88707 1282.07018 0.02176 -0.00547 0.56895 1398.72774 631.97329 4630.75302 4630.75302 3220.00697 4682.22442 1204.58556 1.02700 471.37440 65.43704 1315.11283 10735.71168 16812.17950 1300.51178 0.05609 17.82915 0.14234 0.99370 1386.34816 2.88552 2.71392 2.88662 2.88666 2.63861 2.63861 2.65880 2.65720 2.65880 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2588.03368 1733.98256 854.05111 -59.60546 0.34192 0.19148 9.67630 9.67630 68173.73950 52189.42693 25665.05007 18852.72245 23107.50109 10504.68250 1279.06597 1279.06597 1292.69463 3495.34409 1263.89939 102.52227 751.51678 751.51678 877.14596 10.65480 2.63548 100.00000 438.05129 263.68227 613.46369 0.02176 -0.00303 9.25925 159.99888 53.57720 1252.14467 1252.14467 610.54664 1275.68048 118.82863 1.02700 171.76771 10.09836 142.00848 3062.60181 55342.54226 382.37665 0.06065 16.48799 0.17581 1.06586 9270.80007 2.58926 2.40459 2.59400 2.59401 1.99606 1.99606 2.08362 2.08229 2.08362 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 556.96944 317.47258 239.49686 -24.49236 0.07974 0.16831 2.62369 2.62369 17622.16637 13800.86466 6786.81302 4985.37513 6110.50004 2996.68689 129.77925 129.77925 130.25377 933.49259 2.61627 2.46590 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3592.67613 3842.43699 1.07755 2.32392 2.70684 2.70684 2.74604 0.16691 483.76258 3087.78749 3087.78749 1502.90220 8260.37639 2261.32112 8407.20218 8407.20218 5729.86735 100.20521 2.88876 100.00000 115.91477 3588.02793 2141.83942 0.02176 -0.00208 0.85628 2595.35180 475.52139 8233.89145 8233.89145 5209.81164 8294.39946 2746.53114 1.02700 934.39432 136.80816 2981.46315 19246.85724 61141.93681 1656.60498 0.05512 18.14206 0.13262 0.88273 2453.18912 2.88633 2.83354 2.88710 2.88715 2.61984 2.61984 2.64610 2.63662 2.64610 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 4734.29025 3266.66027 1467.62998 -70.08184 0.20554 0.19770 8.92256 8.92256 113619.05094 90307.13206 44410.08843 32622.22630 39984.57685 18832.61073 2839.76646 2839.76646 2954.97820 6075.77634 1864.74048 516.22465 1689.12000 1689.12000 1270.72130 21.31925 2.97125 100.00000 106.17131 671.19979 599.52151 0.02176 -0.00114 1.63522 604.86903 90.06855 1850.82943 1850.82943 1255.71641 1879.09122 624.98345 1.02700 210.79306 10.73111 653.87553 4858.72703 26025.49608 217.06654 0.06400 15.62591 0.11809 1.18232 2246.98115 2.96062 2.27378 2.96471 2.97248 2.41496 2.41496 2.41631 2.41889 2.41631 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1165.64786 804.29702 361.35084 -33.61339 0.12510 0.20924 6.24796 6.24796 25578.24899 19716.07858 9695.72141 7122.16591 8729.53267 4754.19111 614.08517 614.08517 639.96448 1353.47171 18880.65105 1857.86562 16033.19128 16033.19128 13730.64952 304.63185 3.02827 100.00000 -510.92876 3957.25005 9773.39948 0.02176 0.00066 1.00000 2237.10264 922.93164 18990.00332 18990.00332 10634.90932 18767.35147 2700.75731 1.02700 1950.38579 164.09068 2980.78692 22059.45106 152243.91625 3499.48623 0.08153 12.26542 0.24965 1.04811 -10813.15934 2.96446 2.37183 2.96132 2.96573 2.40755 2.40755 2.41888 2.41864 2.41888 1.00001 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 9711.97768 6895.50416 2816.47353 264.50990 0.22800 0.17475 5.86949 5.86949 251996.82862 227470.78180 111862.67692 82170.73396 100715.44462 21584.69440 3074.83445 3074.83445 3090.13919 14218.22380 43617.85447 5459.70898 + 2075.76917 576.66606 2465.32200 2465.32200 1493.99527 40.81753 2.91517 100.00000 -56.07758 1144.68246 349.31281 0.02176 -0.00048 0.74787 949.20876 128.40804 2091.20842 2091.20842 1289.63639 2057.29561 843.03258 1.02700 192.10330 16.74671 872.74109 4112.91402 16401.73470 252.27126 0.07542 13.25948 0.16779 1.03345 -1186.81081 2.85585 2.50524 2.85333 2.86286 2.51307 2.51307 2.51432 2.51523 2.51432 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1161.22835 778.02300 383.20536 38.81921 0.21379 0.19782 8.61939 8.61939 28517.19288 24096.87972 11850.05586 8704.67089 10669.18545 4024.40179 862.64171 862.64171 888.18034 1579.18366 19029.55560 14701.89728 13319.09500 19115.24478 19117.50793 3623.68261 4327.65831 110.37731 4217.28100 1192.75210 4816.43471 39411.87415 1007.80716 38404.06699 -9553.26635 15647.64043 2.79071 2.95772 2.78268 2.78268 2.72072 2.81443 2.72083 14213.12088 510.67540 2995.05683 2995.05683 1396.39167 2995.05683 4902.12389 20501.35859 4214.07426 24856.02977 24856.02977 14120.21626 190.46342 2.86626 100.00000 78.84098 9501.37762 4618.83865 0.02176 -0.00096 0.16463 5573.13411 1284.58257 20411.71960 20411.71960 13988.47027 20628.40113 5085.81689 1.02700 2101.04083 206.04249 5436.32080 43189.11290 24227.35576 2330.53115 0.05377 18.59632 0.14651 0.94413 1668.56939 2.85180 2.92787 2.85217 2.85212 2.74403 2.74403 2.76587 2.76455 2.76587 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 12703.88769 8765.68251 3938.20518 -247.92980 0.75222 0.21592 9.10358 9.10358 277722.55867 222375.35264 109356.91181 80330.07929 98459.38162 42260.04703 5317.63330 5317.63330 5346.68181 14788.44797 9151.06175 2052.56875 8635.65086 8635.65086 6209.24006 78.99533 2.90351 100.00000 99.79612 3897.67328 2311.56678 0.02176 -0.00560 0.55484 2891.40293 523.61593 9117.65477 9117.65477 6047.43672 9198.58309 2549.53361 1.02700 1049.05668 68.93771 2702.93531 21735.58896 26429.35483 2446.01626 0.05348 18.69896 0.13004 0.92571 2112.05835 2.86784 2.97644 2.86814 2.86809 2.76644 2.76644 2.78737 2.78658 2.78737 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 5523.82079 3811.43635 1712.38444 -93.11749 0.38977 0.20937 8.52113 8.52113 124169.88212 97710.55882 48050.85113 35296.61379 43262.53376 21267.85756 2661.04340 2661.04340 2669.52833 6611.31477 707.78273 688.25923 16.27004 303.28794 319.75982 2189.92724 2.74386 2.74386 139.57436 300.23632 4755.54093 965.19957 12673.21917 12673.21917 3440.00827 53.30326 2.90565 100.00000 68.75454 2129.73256 1310.27571 0.02176 -0.00550 0.56895 1429.49974 663.31537 4732.62953 4732.62953 3379.69998 4785.23331 1231.08643 1.02700 481.74463 66.87665 1344.04530 10971.90361 16719.98082 1365.00935 0.05609 17.82915 0.14234 0.99370 1455.10270 2.96343 2.78720 2.96456 2.96460 2.70985 2.70985 2.73059 2.72894 2.73059 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2716.38460 1819.97769 896.40692 -62.56153 0.34822 0.19148 9.67630 9.67630 69673.56400 53337.59372 26229.68087 19267.48213 23615.86585 10735.78841 1307.20541 1307.20541 1321.13390 3572.24147 1291.70516 104.77776 788.78750 788.78750 896.44316 10.88921 2.70663 100.00000 459.77601 269.48327 626.95989 0.02176 -0.00304 9.25925 163.51886 56.23430 1279.69184 1279.69184 640.82608 1303.74544 121.44286 1.02700 175.54660 10.32052 145.13267 3129.98006 55174.58853 401.34023 0.06065 16.48799 0.17581 1.06586 9730.57608 2.65917 2.46952 2.66404 2.66405 2.04995 2.04995 2.13988 2.13851 2.13988 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 584.59178 333.21731 251.37446 -25.70703 0.08087 0.16831 2.62369 2.62369 18009.85417 14104.48352 6936.12283 5095.05332 6244.93097 3062.61430 132.63440 132.63440 133.11935 954.02938 2.68691 2.53248 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3671.71496 3926.97056 1.07755 2.38666 2.77993 2.77993 2.82019 0.16691 494.40535 3155.71878 3155.71878 1535.96603 8442.10458 2311.07016 8824.14892 8824.14892 5855.92437 102.40972 2.96676 100.00000 121.66344 3666.96450 2188.95986 0.02176 -0.00209 0.85628 2652.44951 499.10440 8415.03696 8415.03696 5468.18701 8476.87615 2806.95479 1.02700 954.95099 139.81794 3047.05530 19670.29399 61014.42219 1738.76263 0.05512 18.14206 0.13262 0.88273 2574.85257 2.96426 2.91005 2.96505 2.96510 2.69057 2.69057 2.71755 2.70781 2.71755 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 4969.08261 3428.66700 1540.41561 -73.55748 0.20895 0.19770 8.92256 8.92256 116118.67129 92293.88792 45387.10987 33339.91491 40864.23709 19246.93049 2902.24129 2902.24129 3019.98769 6209.44317 1905.76475 527.58158 1772.89021 1772.89021 1298.67715 21.78827 3.05147 100.00000 111.43677 685.96618 612.71097 0.02176 -0.00114 1.63522 618.17614 94.53541 1891.54765 1891.54765 1317.99240 1920.43121 638.73308 1.02700 215.43050 10.96719 668.26078 4965.62385 25995.89421 227.83174 0.06400 15.62591 0.11809 1.18232 2358.41792 3.04055 2.33517 3.04475 3.05273 2.48017 2.48017 2.48155 2.48420 2.48155 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1223.45699 844.18533 379.27167 -35.28041 0.12709 0.20924 6.24796 6.24796 26140.97250 20149.83209 9909.02717 7278.85348 8921.58229 4858.78559 627.59504 627.59504 654.04369 1383.24797 19296.02515 1898.73864 16828.34129 16828.34129 14032.72366 311.33375 3.11004 100.00000 -536.26776 4044.30950 9988.41415 0.02176 0.00066 1.00000 2286.31888 968.70350 19407.78317 19407.78317 11162.33696 19180.23299 2760.17393 1.02700 1993.29425 167.70067 3046.36420 22544.76753 152344.34927 3673.03973 0.08153 12.26542 0.24965 1.04811 -11349.42710 3.04450 2.43587 3.04127 3.04581 2.47255 2.47255 2.48419 2.48395 2.48419 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 10193.63345 7237.47975 2956.15370 277.62801 0.23144 0.17475 5.86949 5.86949 257540.75515 232475.13637 114323.65452 83978.48916 102931.18325 22059.55663 3142.48077 3142.48077 3158.12222 14531.02391 45781.03811 5579.82251 + 2121.43607 589.35271 2587.58717 2587.58717 1526.86315 41.71552 2.99388 100.00000 -58.85869 1169.86546 356.99769 0.02176 -0.00048 0.74787 970.09134 134.77631 2137.21498 2137.21498 1353.59461 2102.55609 861.57929 1.02700 196.32957 17.11513 891.94139 4203.40020 16393.85652 264.78240 0.07542 13.25948 0.16779 1.03345 -1245.66950 2.93296 2.57288 2.93037 2.94016 2.58093 2.58093 2.58221 2.58314 2.58221 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1218.81830 816.60826 402.21004 40.74441 0.21700 0.19782 8.61939 8.61939 29144.57172 24627.01079 12110.75695 8896.17355 10903.90741 4112.93951 881.61982 881.61982 907.72030 1613.92562 19448.20560 15025.33886 13979.64213 19535.77995 19538.09289 3703.40359 4422.86675 112.80561 4310.06114 1218.99263 4922.39622 40287.67222 1029.91012 39257.76210 -10027.05099 15991.02421 2.86606 3.03758 2.85781 2.85781 2.79418 2.89042 2.79429 14525.80938 521.91025 3060.94805 3060.94804 1427.11227 3060.94805 5009.97056 20952.38825 4306.78385 26088.73958 26088.73958 14430.86086 194.65361 2.94365 100.00000 82.75102 9710.40782 4720.45304 0.02176 -0.00096 0.16463 5695.74300 1348.29016 20860.77720 20860.77720 14682.21439 21082.22572 5197.70481 1.02700 2147.26370 210.57543 5555.91979 44139.32940 24204.11532 2446.11150 0.05377 18.59633 0.14651 0.94413 1751.32041 2.92880 3.00692 2.92918 2.92913 2.81812 2.81812 2.84055 2.83920 2.84055 1.00002 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 13333.92423 9200.40772 4133.51651 -260.22563 0.76411 0.21592 9.10358 9.10358 283832.47521 227267.60784 111762.76261 82097.34011 100625.48689 43189.79102 5434.62117 5434.62117 5464.30875 15113.79205 9352.38500 2097.72524 9063.92728 9063.92728 6345.84327 80.73323 2.98191 100.00000 104.74541 3983.42205 2362.42122 0.02176 -0.00563 0.55484 2955.01376 549.58414 9318.24307 9318.24307 6347.35327 9400.95181 2605.62332 1.02700 1072.13591 70.45434 2762.39986 22213.78559 26281.04967 2567.32398 0.05348 18.69896 0.13004 0.92571 2216.80376 2.94527 3.05680 2.94558 2.94553 2.84114 2.84114 2.86263 2.86182 2.86263 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 5797.76913 4000.46070 1797.30843 -97.73556 0.39721 0.20937 8.52113 8.52113 126901.62394 99860.18999 49107.96930 36073.13889 44214.30900 21735.75602 2719.58632 2719.58632 2728.25792 6756.76323 723.35395 703.40093 16.62798 309.96028 326.79453 2298.53448 2.81794 2.81794 142.64500 306.84151 4860.16278 986.43395 13301.73474 13301.73474 3515.68842 54.47593 2.98410 100.00000 72.16435 2176.58665 1339.10176 0.02176 -0.00553 0.56895 1460.94872 696.21183 4836.74733 4836.74733 3547.31280 4890.50839 1258.17032 1.02700 492.34301 68.34793 1373.61428 11213.29161 16627.78213 1432.70562 0.05609 17.82915 0.14234 0.99370 1527.26705 3.04344 2.86245 3.04460 3.04464 2.78301 2.78301 2.80431 2.80262 2.80431 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2851.10097 1910.23765 940.86332 -65.66420 0.35465 0.19148 9.67630 9.67630 71206.38456 54511.02017 26806.73355 19691.36652 24135.41462 10971.97859 1335.96391 1335.96391 1350.19883 3650.83059 1320.12266 107.08287 827.90663 827.90663 916.16490 11.12877 2.77971 100.00000 482.57814 275.41190 640.75300 0.02176 -0.00305 9.25925 167.11627 59.02319 1307.84504 1307.84504 672.60721 1332.42782 124.11460 1.02700 179.40862 10.54758 148.32559 3198.84059 55006.63481 421.24430 0.06065 16.48799 0.17581 1.06586 10213.15422 2.73097 2.53619 2.73597 2.73598 2.10530 2.10530 2.19765 2.19625 2.19765 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 613.58402 349.74289 263.84113 -26.98195 0.08203 0.16831 2.62369 2.62369 18406.07108 14414.78199 7088.71745 5207.14444 6382.31937 3129.99211 135.55235 135.55235 136.04797 975.01798 2.75945 2.60086 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3752.49265 4013.36387 1.07755 2.45110 2.85498 2.85498 2.89633 0.16691 505.28227 3225.14456 3225.14456 1569.75727 8627.83078 2361.91367 9261.77372 9261.77372 5984.75464 104.66274 3.04686 100.00000 127.69722 3747.63768 2237.11695 0.02176 -0.00209 0.85628 2710.80337 523.85698 8600.16768 8600.16768 5739.37625 8663.36733 2868.70776 1.02700 975.95990 142.89393 3114.09048 20103.04617 60886.90757 1824.99482 0.05512 18.14206 0.13262 0.88273 2702.54979 3.04429 2.98862 3.04511 3.04516 2.76322 2.76322 2.79092 2.78092 2.79092 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 5215.51927 3598.70830 1616.81097 -77.20549 0.21241 0.19770 8.92256 8.92256 118673.28318 94324.35239 46385.62576 34073.39265 41763.24983 19670.36521 2966.09056 2966.09056 3086.42739 6346.05069 1947.69155 539.18837 1860.81492 1860.81492 1327.24803 22.26762 3.13386 100.00000 116.96337 701.05742 626.19061 0.02176 -0.00114 1.63522 631.77601 99.22379 1933.16168 1933.16168 1383.35691 1962.68068 652.78520 1.02700 220.16997 11.20847 682.96251 5074.87229 25966.29235 239.13082 0.06400 15.62592 0.11809 1.18232 2475.38129 3.12265 2.39822 3.12696 3.13516 2.54713 2.54713 2.54855 2.55127 2.54855 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1284.13311 886.05185 398.08126 -37.03011 0.12912 0.20924 6.24796 6.24796 26716.07588 20593.12816 10127.02565 7438.98817 9117.85699 4965.68110 641.40212 641.40212 668.43264 1413.67930 19720.53749 1940.51087 17662.92595 17662.92595 14341.44342 318.18309 3.19401 100.00000 -562.86341 4133.28427 10208.15915 0.02176 0.00066 1.00000 2336.61786 1016.74538 19834.75418 19834.75418 11715.92184 19602.19789 2820.89773 1.02700 2037.14670 171.39009 3113.38418 23040.76036 152444.78230 3855.20044 0.08153 12.26542 0.24965 1.04811 -11912.29051 3.12670 2.50164 3.12339 3.12805 2.53931 2.53931 2.55126 2.55101 2.55126 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 10699.17646 7596.41529 3102.76117 291.39669 0.23493 0.17475 5.86949 5.86949 263206.64805 237589.58668 116838.77361 85826.01496 105195.66810 22544.86589 3211.61532 3211.61532 3227.60087 14850.70567 48051.50266 5702.57854 + 2168.10763 602.31846 2715.91595 2715.91595 1560.45412 42.63326 3.07471 100.00000 -61.77773 1195.60249 364.85163 0.02176 -0.00048 0.74787 991.43334 141.46040 2184.23368 2184.23368 1420.72477 2148.81230 880.53402 1.02700 200.64881 17.49167 911.56409 4295.87703 16385.95675 277.91401 0.07542 13.25948 0.16779 1.03345 -1307.44722 3.01215 2.64235 3.00949 3.01954 2.65061 2.65061 2.65193 2.65289 2.65193 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1279.26437 857.10713 422.15724 42.76509 0.22025 0.19782 8.61939 8.61939 29785.75287 25168.80475 12377.19347 9091.88927 11143.79324 4203.42504 901.01544 901.01544 927.69014 1649.43191 19876.06590 15355.89614 14672.94842 19965.56688 19967.93071 3784.87843 4520.16977 115.28733 4404.88243 1245.81046 5030.68888 41181.95149 1052.50555 40129.44594 -10524.33250 16342.04021 2.94344 3.11960 2.93497 2.93497 2.86962 2.96846 2.86974 14845.37702 533.39227 3128.28887 3128.28887 1458.50872 3128.28887 5120.18986 21413.34055 4401.53304 27382.58439 27382.58439 14748.33963 198.93599 3.02313 100.00000 86.85497 9924.03668 4824.30296 0.02176 -0.00096 0.16463 5821.04928 1415.15725 21319.71406 21319.71406 15410.36405 21546.03444 5312.05425 1.02700 2194.50348 215.20808 5678.14997 45110.44909 24180.81120 2567.42394 0.05377 18.59633 0.14651 0.94413 1838.17539 3.00787 3.08810 3.00827 3.00821 2.89421 2.89421 2.91724 2.91585 2.91724 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 13995.20680 9656.69269 4338.51411 -273.13126 0.77618 0.21592 9.10358 9.10358 290076.80918 232267.49259 114221.54211 83903.48065 102839.24644 44139.98873 5554.18277 5554.18277 5584.52348 15446.29373 9558.13736 2143.87517 9513.44364 9513.44364 6485.45175 82.50936 3.06242 100.00000 109.94015 4071.05729 2414.39446 0.02176 -0.00567 0.55484 3020.02403 576.84021 9523.24431 9523.24431 6662.14387 9607.77264 2662.94700 1.02700 1095.72289 72.00434 2823.17262 22702.50216 26132.33819 2694.64783 0.05348 18.69896 0.13004 0.92571 2326.74391 3.02480 3.13933 3.02511 3.02506 2.91785 2.91785 2.93992 2.93909 2.93992 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 6085.30366 4198.85953 1886.44413 -102.58265 0.40480 0.20937 8.52113 8.52113 129693.46388 102057.11301 50188.34406 36866.74753 45187.02329 22213.94808 2779.41719 2779.41719 2788.27957 6905.41156 739.26773 718.87574 16.99380 316.77940 333.98401 2412.52799 2.89402 2.89402 145.78319 313.59202 4967.08630 1008.13549 13961.42090 13961.42090 3593.03352 55.67440 3.06467 100.00000 75.74327 2224.47154 1368.56199 0.02176 -0.00558 0.56895 1493.08957 730.73976 4943.15571 4943.15571 3723.23821 4998.09951 1285.85005 1.02700 503.17455 69.85159 1403.83378 11459.99001 16535.33084 1503.75921 0.05609 17.82915 0.14234 0.99370 1603.01033 3.12561 2.93974 3.12680 3.12685 2.85816 2.85816 2.88003 2.87829 2.88003 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 2992.49845 2004.97397 987.52449 -68.92075 0.36120 0.19148 9.67630 9.67630 72772.92708 55710.26198 27396.48138 20124.57635 24666.39347 11213.36487 1365.35510 1365.35510 1379.90319 3731.14868 1349.16534 109.43869 868.96582 868.96582 936.32052 11.37360 2.85476 100.00000 506.51111 281.47096 654.84956 0.02176 -0.00307 9.25925 170.79283 61.95038 1336.61762 1336.61762 705.96449 1361.74122 126.84512 1.02700 183.35561 10.77962 151.58875 3269.21601 54838.22094 442.13549 0.06065 16.48799 0.17581 1.06586 10719.66533 2.80470 2.60467 2.80984 2.80985 2.16214 2.16214 2.25699 2.25555 2.25699 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 644.01410 367.08804 276.92606 -28.32009 0.08320 0.16831 2.62369 2.62369 18811.00474 14731.90703 7244.66916 5321.70156 6522.73033 3198.85221 138.53450 138.53450 139.04102 996.46833 2.83396 2.67108 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3835.04745 4101.65783 1.07755 2.51728 2.93207 2.93207 2.97453 0.16691 516.39847 3296.09770 3296.09770 1604.29191 8817.64296 2413.87575 9721.10207 9721.10207 6116.41917 106.96532 3.12913 100.00000 134.03024 3830.08567 2286.33350 0.02176 -0.00210 0.85628 2770.44101 549.83714 8789.37127 8789.37127 6024.01484 8853.96132 2931.81930 1.02700 997.43100 146.03760 3182.60044 20545.31872 60759.04359 1915.50360 0.05512 18.14206 0.13262 0.88273 2836.58002 3.12649 3.06931 3.12733 3.12738 2.83783 2.83783 2.86627 2.85600 2.86627 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 5474.17770 3777.18262 1696.99509 -81.03442 0.21594 0.19770 8.92256 8.92256 121284.09645 96399.48705 47406.10900 34823.00690 42682.04085 20103.11542 3031.34452 3031.34452 3154.32875 6485.66356 1990.54074 551.05051 1953.10016 1953.10016 1356.44747 22.75750 3.21847 100.00000 122.76405 716.48068 639.96680 0.02176 -0.00114 1.63522 645.67508 104.14470 1975.69121 1975.69121 1451.96310 2005.85963 667.14647 1.02700 225.01371 11.45506 697.98768 5186.52409 25936.60938 250.99028 0.06400 15.62592 0.11809 1.18232 2598.14533 3.20696 2.46297 3.21139 3.21981 2.61591 2.61591 2.61736 2.62016 2.61736 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1347.81840 929.99470 417.82370 -38.86658 0.13117 0.20924 6.24796 6.24796 27303.83148 21046.17674 10349.82010 7602.64583 9318.44974 5074.92826 655.51296 655.51296 683.13815 1444.78012 20154.38909 1983.20209 18538.90101 18538.90101 14656.95501 325.18311 3.28025 100.00000 -590.77806 4224.21647 10432.73854 0.02176 0.00066 1.00000 2388.02343 1067.16985 20271.11855 20271.11855 12296.96120 20033.44602 2882.95745 1.02700 2081.96391 175.16067 3181.87859 23547.66446 152545.49048 4046.39523 0.08153 12.26542 0.24965 1.04811 -12503.06857 3.21112 2.56918 3.20772 3.21250 2.60787 2.60787 2.62015 2.61989 2.62015 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 11229.79136 7973.15186 3256.63949 305.84822 0.23848 0.17475 5.86949 5.86949 268997.19058 242816.55484 119409.22528 87714.18630 107509.97159 23040.85199 3282.27082 3282.27082 3298.60805 15177.42047 50434.56863 5828.03521 + 2215.80598 615.56946 2850.60907 2850.60907 1594.78410 43.57119 3.15773 100.00000 -64.84153 1221.90573 372.87837 0.02176 -0.00043 0.74787 1013.24486 148.47599 2232.28680 2232.28680 1491.18419 2196.08614 899.90576 1.02700 205.06309 17.87648 931.61849 4390.38829 16378.85022 291.69688 0.07542 13.25948 0.16779 1.03345 -1372.28875 3.09348 2.71369 3.09075 3.10107 2.72218 2.72218 2.72353 2.72451 2.72353 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1342.70820 899.61450 443.09371 44.88598 0.22355 0.19782 8.61939 8.61939 30441.03997 25722.51816 12649.49158 9291.91073 11388.95657 4295.90123 920.83777 920.83777 948.09931 1685.71934 20313.33913 15693.72568 15400.63855 20404.80912 20407.22496 3868.14571 4619.61345 117.82365 4501.78980 1273.21827 5141.36398 42095.18930 1075.60370 41019.58560 -11046.27619 16700.84932 3.02292 3.20383 3.01421 3.01421 2.94710 3.04861 2.94722 15171.97515 545.12689 3197.11119 3197.11119 1490.59590 3197.11119 5232.83398 21884.43380 4498.36672 28740.59613 28740.59613 15072.80294 203.31258 3.10475 100.00000 91.16246 10142.36537 4930.43757 0.02176 -0.00087 0.16463 5949.11230 1485.34055 21788.74752 21788.74752 16174.62556 22020.04695 5428.91939 1.02700 2242.78253 219.94266 5803.06920 46102.93187 24159.85669 2694.75275 0.05377 18.59634 0.14651 0.94413 1929.33784 3.08909 3.17148 3.08949 3.08943 2.97236 2.97236 2.99601 2.99458 2.99601 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 14689.28501 10135.60666 4553.67835 -286.67693 0.78840 0.21592 9.10358 9.10358 296458.51780 237377.37474 116734.41472 85749.35627 105101.70868 45111.09014 5676.37473 5676.37473 5707.38293 15786.11050 9768.41628 2191.04040 9985.25332 9985.25332 6628.13161 84.32456 3.14510 100.00000 115.39252 4160.62050 2467.51111 0.02176 -0.00511 0.55484 3086.46452 605.44802 9732.75558 9732.75558 6992.54620 9819.14353 2721.53180 1.02700 1119.82878 73.58843 2885.28239 23201.97012 25999.21747 2828.28618 0.05348 18.69897 0.13004 0.92571 2442.13643 3.10647 3.22410 3.10679 3.10674 2.99663 2.99663 3.01929 3.01844 3.01929 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 6387.09818 4407.09774 1980.00043 -107.67014 0.41237 0.20937 8.52113 8.52113 132546.72411 104302.36832 51292.48705 37677.81555 46181.13729 22702.66021 2840.56434 2840.56434 2849.62168 7057.33017 755.53161 734.69100 17.36766 323.74854 341.33165 2532.17489 2.97216 2.97216 148.99041 320.49104 5076.36214 1030.31446 14653.82353 14653.82353 3672.08022 56.89923 3.14742 100.00000 79.49968 2273.40988 1398.67033 0.02176 -0.00502 0.56895 1525.93752 766.98006 5051.90508 5051.90508 3907.88847 5108.05765 1314.13874 1.02700 514.24438 71.38832 1434.71810 11712.11562 16452.56427 1578.33664 0.05609 17.82916 0.14234 0.99370 1682.51001 3.21001 3.01911 3.21123 3.21127 2.93533 2.93533 2.95779 2.95601 2.95779 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 3140.90841 2104.40863 1036.49977 -72.33881 0.36774 0.19148 9.67630 9.67630 74373.93345 56935.88710 27999.20365 20567.31680 25209.05384 11460.06159 1395.39290 1395.39290 1410.26104 3813.23377 1378.84697 111.84634 912.06131 912.06131 956.91956 11.62382 2.93184 100.00000 531.63102 287.66332 669.25624 0.02176 -0.00276 9.25925 174.55027 65.02275 1366.02319 1366.02319 740.97609 1391.69951 129.63571 1.02700 187.38943 11.01677 154.92370 3341.13966 54687.08937 464.06275 0.06065 16.48799 0.17581 1.06586 11251.29635 2.88043 2.67500 2.88571 2.88571 2.22052 2.22052 2.31793 2.31645 2.31793 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 675.95333 385.29340 290.65993 -29.72459 0.08437 0.16831 2.62369 2.62369 19224.84693 15056.00882 7404.05179 5438.77893 6666.23032 3269.22723 141.58226 141.58226 142.09993 1018.39058 2.91047 2.74320 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 3919.41845 4191.89425 1.07755 2.58525 3.01123 3.01123 3.05485 0.16691 527.75923 3368.61182 3368.61182 1639.58631 9011.63100 2466.98099 10203.21036 10203.21036 6250.98032 109.31855 3.21362 100.00000 140.67733 3914.34751 2336.63281 0.02176 -0.00189 0.85628 2831.39068 577.10576 8982.73734 8982.73734 6322.76980 9048.74836 2996.31929 1.02700 1019.37448 149.25042 3252.61761 20997.32111 60644.19561 2010.50108 0.05512 18.14206 0.13262 0.88273 2977.25735 3.21090 3.15219 3.21176 3.21182 2.91445 2.91445 2.94366 2.93312 2.94366 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 5745.66404 3964.50819 1781.15585 -85.05324 0.21949 0.19770 8.92256 8.92256 123952.34750 98520.27465 48449.04285 35589.11265 43621.04526 20545.38606 3098.03407 3098.03406 3223.72395 6628.34793 2034.33262 563.17361 2049.96220 2049.96220 1386.28930 23.25817 3.30537 100.00000 128.85241 732.24325 654.04606 0.02176 -0.00103 1.63522 659.87992 109.30965 2019.15640 2019.15640 1523.97175 2049.98852 681.82368 1.02700 229.96401 11.70707 713.34340 5300.63212 25909.92372 263.43789 0.06400 15.62592 0.11809 1.18232 2726.99774 3.29355 2.52947 3.29810 3.30674 2.68654 2.68654 2.68803 2.69090 2.68803 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1414.66210 976.11685 438.54525 -40.79413 0.13325 0.20924 6.24796 6.24796 27904.51764 21509.19238 10577.51602 7769.90395 9523.45553 5186.57881 669.93424 669.93424 698.16718 1476.56516 20597.78542 2026.83251 19458.31917 19458.31917 14979.40785 332.33714 3.36881 100.00000 -620.07710 4317.14919 10662.25867 0.02176 0.00059 1.00000 2440.55992 1120.09506 20717.08292 20717.08292 12906.81663 20474.18161 2946.38248 1.02700 2127.76709 179.01420 3251.87988 24065.71992 152636.18472 4247.07213 0.08153 12.26542 0.24965 1.04811 -13123.14568 3.29782 2.63855 3.29433 3.29924 2.67829 2.67829 2.69089 2.69063 2.69089 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 11786.72157 8368.57232 3418.14925 321.01645 0.24209 0.17475 5.86949 5.86949 274915.12502 248158.51624 122036.22686 89643.89739 109875.18973 23547.74982 3354.48074 3354.48074 3371.17739 15511.32302 52935.82035 5956.25191 + 2264.55368 629.11199 2991.98216 2991.98216 1629.86933 44.52976 3.24299 100.00000 -68.05728 1248.78764 381.08169 0.02176 -0.00039 0.74787 1035.53624 155.83950 2281.39708 2281.39708 1565.13797 2244.40001 919.70368 1.02700 209.57447 18.26977 952.11408 4486.97875 16372.53588 306.16329 0.07542 13.25949 0.16779 1.03345 -1440.34603 3.17700 2.78696 3.17420 3.18480 2.79568 2.79568 2.79706 2.79808 2.79706 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1409.29847 944.22997 465.06849 47.11205 0.22690 0.19782 8.61939 8.61939 31110.74336 26288.41326 12927.78025 9496.33265 11639.51348 4390.41187 941.09619 941.09619 968.95748 1722.80510 20760.23236 16038.98746 16164.41773 20853.71469 20856.18367 3953.24487 4721.24489 120.41577 4600.82912 1301.22906 5254.47393 43027.86716 1099.21514 41928.65202 -11594.10515 17067.61663 3.10454 3.29033 3.09560 3.09560 3.02667 3.13092 3.02680 15505.75843 557.11968 3267.44760 3267.44760 1523.38899 3267.44760 5347.95627 22365.89109 4597.33074 30165.95710 30165.95710 15404.40443 207.78546 3.18858 100.00000 95.68357 10365.49729 5038.90714 0.02176 -0.00077 0.16463 6079.99270 1559.00452 22268.09972 22268.09972 16976.78986 22504.48773 5548.35555 1.02700 2292.12372 224.78139 5930.73666 47117.24779 24141.24569 2828.39631 0.05377 18.59634 0.14651 0.94413 2025.02141 3.17249 3.25711 3.17291 3.17285 3.05261 3.05261 3.07690 3.07544 3.07690 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 15417.78533 10638.27188 4779.51345 -300.89438 0.80075 0.21592 9.10358 9.10358 302980.62332 242599.67424 119302.57050 87635.84112 107413.94507 46103.55516 5801.25491 5801.25491 5832.94529 16133.40327 9983.32132 2239.24326 10480.46192 10480.46192 6773.95043 86.17970 3.23002 100.00000 121.11530 4252.15411 2521.79633 0.02176 -0.00454 0.55484 3154.36671 635.47461 9946.87609 9946.87609 7339.33450 10035.16458 2781.40547 1.02700 1144.46500 75.20738 2948.75857 23712.42601 25881.45734 2968.55219 0.05348 18.69897 0.13004 0.92571 2563.25173 3.19034 3.31115 3.19067 3.19062 3.07754 3.07754 3.10081 3.09994 3.10081 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 6703.85989 4625.66333 2078.19656 -113.00993 0.41992 0.20937 8.52113 8.52113 135462.75589 106597.01922 52420.92118 38506.72706 47197.12177 23202.12385 2903.05672 2903.05672 2912.31333 7212.59099 772.15329 750.85419 17.74975 330.87101 348.84094 2657.75555 3.05241 3.05241 152.26820 327.54184 5188.04205 1052.98136 15380.56518 15380.56518 3752.86594 58.15102 3.23240 100.00000 83.44239 2323.42488 1429.44107 0.02176 -0.00446 0.56895 1559.50813 805.01766 5163.04694 5163.04694 4101.69627 5220.43486 1343.04977 1.02700 525.55776 72.95886 1466.28188 11969.78786 16379.34184 1656.61266 0.05609 17.82916 0.14234 0.99370 1765.95240 3.29668 3.10062 3.29793 3.29798 3.01458 3.01458 3.03765 3.03582 3.03765 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 3296.67860 2208.77466 1087.90394 -75.92638 0.37426 0.19148 9.67630 9.67630 76010.16188 58188.47596 28615.18581 21019.79754 25763.65274 11712.18557 1426.09153 1426.09153 1441.28677 3897.12473 1409.18158 114.30696 957.29407 957.29407 977.97178 11.87955 3.01100 100.00000 557.99673 293.99191 683.97987 0.02176 -0.00245 9.25925 178.39037 68.24749 1396.07569 1396.07569 777.72405 1422.31688 132.48769 1.02700 191.51199 11.25914 158.33202 3414.64560 54553.09989 487.07748 0.06065 16.48799 0.17581 1.06586 11809.29308 2.95820 2.74722 2.96362 2.96363 2.28047 2.28047 2.38051 2.37899 2.38051 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 709.47656 404.40164 305.07492 -31.19876 0.08554 0.16831 2.62369 2.62369 19647.79363 15387.24084 7566.94085 5558.43200 6812.88731 3341.15048 144.69707 144.69707 145.22612 1040.79513 2.98906 2.81727 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4005.64561 4284.11588 1.07755 2.65505 3.09254 3.09254 3.13733 0.16691 539.36993 3442.72124 3442.72124 1675.65719 9209.88678 2521.25454 10709.22831 10709.22831 6388.50182 111.72356 3.30038 100.00000 147.65408 4000.46311 2388.03871 0.02176 -0.00168 0.85628 2893.68124 605.72674 9180.35746 9180.35746 6636.34121 9247.82072 3062.23828 1.02700 1041.80070 152.53393 3324.17516 21459.26739 60542.29078 2110.20986 0.05512 18.14206 0.13262 0.88273 3124.91144 3.29760 3.23730 3.29848 3.29854 2.99314 2.99314 3.02314 3.01231 3.02314 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 6030.61448 4161.12399 1869.49049 -89.27137 0.22307 0.19770 8.92256 8.92256 126679.29999 100687.71956 49514.92123 36372.07272 44580.70775 20997.38659 3166.19078 3166.19078 3294.64584 6774.17135 2079.08791 575.56343 2151.62802 2151.62802 1416.78765 23.76985 3.39462 100.00000 135.24271 748.35259 668.43506 0.02176 -0.00092 1.63522 674.39727 114.73075 2063.57781 2063.57781 1599.55160 2095.08824 696.82380 1.02700 235.02321 11.96462 729.03695 5417.25042 25886.22618 276.50282 0.06400 15.62593 0.11809 1.18232 2862.24045 3.38247 2.59777 3.38715 3.39602 2.75907 2.75907 2.76061 2.76355 2.76061 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1484.82085 1024.52638 460.29446 -42.81727 0.13535 0.20924 6.24796 6.24796 28518.41884 21982.39437 10810.22125 7940.84174 9732.97144 5300.68562 684.67278 684.67278 713.52685 1509.04947 21050.93646 2071.42281 20423.33494 20423.33494 15308.95465 339.64855 3.45977 100.00000 -650.82920 4412.12642 10896.82823 0.02176 0.00053 1.00000 2494.25221 1175.64505 21172.85851 21172.85851 13546.91722 20924.61337 3011.20286 1.02700 2174.57794 182.95251 3323.42121 24595.17211 152716.84710 4457.70141 0.08153 12.26542 0.24965 1.04811 -13773.97488 3.38686 2.70979 3.38327 3.38832 2.75060 2.75060 2.76354 2.76328 2.76354 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 12371.27217 8783.60325 3587.66893 336.93694 0.24577 0.17475 5.86949 5.86949 280963.25400 253618.00073 124721.02245 91616.06210 112292.44264 24065.79945 3428.27927 3428.27927 3445.34326 15852.57146 55561.11914 6087.28939 + 2314.37384 642.95244 3140.36651 3140.36651 1665.72644 45.50941 3.33055 100.00000 -71.43251 1276.26096 389.46548 0.02176 -0.00034 0.74787 1058.31802 163.56821 2331.58779 2331.58779 1642.75941 2293.77679 939.93715 1.02700 214.18511 18.67170 973.06058 4585.69415 16367.01284 321.34715 0.07542 13.25949 0.16779 1.03345 -1511.77855 3.26278 2.86221 3.25990 3.27079 2.87116 2.87116 2.87258 2.87362 2.87258 1.00001 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1479.19121 991.05811 488.13310 49.44853 0.23028 0.19782 8.61939 8.61939 31795.18020 26866.75805 13212.19127 9705.25186 11895.58264 4487.00172 961.80030 961.80030 990.27454 1760.70674 21216.95723 16391.84501 16966.07578 21312.49618 21315.01947 4040.21621 4825.11223 123.06492 4702.04731 1329.85608 5370.07230 43980.47134 1123.35069 42857.12064 -12169.10314 17442.51143 3.18836 3.37917 3.17918 3.17918 3.10839 3.21546 3.10852 15846.88493 569.37630 3339.33141 3339.33141 1556.90353 3339.33141 5465.61124 22857.94044 4698.47196 31662.00741 31662.00741 15743.30115 212.35673 3.27467 100.00000 100.42890 10593.53812 5149.76304 0.02176 -0.00067 0.16463 6213.75247 1636.32179 22757.99766 22757.99766 17818.73668 22999.58621 5670.41931 1.02700 2342.55042 229.72658 6061.21280 48153.87720 24124.97283 2968.66778 0.05377 18.59635 0.14651 0.94413 2125.45031 3.25815 3.34506 3.25858 3.25852 3.13503 3.13503 3.15998 3.15847 3.15998 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 16182.41490 11165.86628 5016.54861 -315.81694 0.81324 0.21592 9.10358 9.10358 309646.21449 247936.86427 121927.22568 89563.82862 109777.05062 47117.85380 5928.88245 5928.88245 5961.27002 16488.33651 10202.95428 2288.50659 11000.22989 11000.22989 6922.97726 88.07565 3.31723 100.00000 127.12189 4345.70145 2577.27582 0.02176 -0.00397 0.55484 3223.76274 666.99033 10165.70725 10165.70725 7703.32141 10255.93808 2842.59636 1.02700 1169.64322 76.86194 3013.63122 24234.11158 25778.85485 3115.77455 0.05348 18.69897 0.13004 0.92571 2690.37362 3.27648 3.40055 3.27682 3.27677 3.16063 3.16063 3.18454 3.18364 3.18454 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 7036.33108 4855.06845 2181.26263 -118.61454 0.42745 0.20937 8.52113 8.52113 138442.94018 108942.15241 53574.18084 39353.87461 48235.45791 23712.57554 2966.92394 2966.92393 2976.38419 7371.26756 789.14066 767.37298 18.14024 338.15016 356.51544 2789.56427 3.13483 3.13483 155.61810 334.74776 5302.17892 1076.14694 16143.34884 16143.34884 3835.42895 59.43034 3.31968 100.00000 87.58063 2374.54020 1460.88875 0.02176 -0.00390 0.56895 1593.81729 844.94171 5276.63391 5276.63391 4305.11577 5335.28436 1372.59685 1.02700 537.12002 74.56396 1498.54007 12233.12875 16315.53958 1738.77070 0.05609 17.82916 0.14234 0.99370 1853.53303 3.38569 3.18434 3.38697 3.38702 3.09597 3.09597 3.11967 3.11779 3.11967 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 3460.17406 2318.31662 1141.85744 -79.69187 0.38075 0.19148 9.67630 9.67630 77682.38725 59468.62176 29244.71957 21482.23284 26330.45280 11969.85620 1457.46553 1457.46553 1472.99506 3982.86130 1440.18356 116.82171 1004.77011 1004.77011 999.48715 12.14089 3.09230 100.00000 585.67001 300.45973 699.02742 0.02176 -0.00215 9.25925 182.31496 71.63215 1426.78934 1426.78934 816.29449 1453.60784 135.40242 1.02700 195.72526 11.50684 161.81532 3489.76863 54436.12842 511.23359 0.06065 16.48799 0.17581 1.06586 12394.96309 3.03807 2.82140 3.04364 3.04365 2.34205 2.34205 2.44479 2.44322 2.44479 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 744.66234 424.45753 320.20480 -32.74603 0.08671 0.16831 2.62369 2.62369 20080.04515 15725.75996 7733.41346 5680.71744 6962.77075 3414.65603 147.88040 147.88040 148.42110 1063.69258 3.06976 2.89333 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4093.76976 4378.36638 1.07755 2.72674 3.17604 3.17604 3.22203 0.16691 551.23606 3518.46107 3518.46106 1712.52163 9412.50419 2576.72211 11240.34173 11240.34173 6529.04878 114.18148 3.38949 100.00000 154.97684 4088.47325 2440.57553 0.02176 -0.00147 0.85628 2957.34220 635.76715 9382.32522 9382.32522 6965.46388 9451.27267 3129.60749 1.02700 1064.72031 155.88967 3397.30698 21931.37634 60453.26453 2214.86359 0.05512 18.14206 0.13262 0.88273 3279.88827 3.38663 3.32470 3.38754 3.38760 3.07395 3.07395 3.10477 3.09364 3.10477 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 6329.69674 4367.49075 1962.20599 -93.69869 0.22668 0.19770 8.92256 8.92256 129466.24533 102902.84822 50604.24893 37172.25791 45561.48281 21459.33106 3235.84694 3235.84694 3367.12801 6923.20289 2124.82782 588.22582 2258.33585 2258.33585 1447.95696 24.29278 3.48627 100.00000 141.94994 764.81634 683.14063 0.02176 -0.00080 1.63522 689.23400 120.42071 2108.97650 2108.97650 1678.87975 2141.18016 712.15391 1.02700 240.19372 12.22784 745.07575 5536.43423 25865.50862 290.21570 0.06400 15.62593 0.11809 1.18232 3004.19039 3.47380 2.66791 3.47860 3.48772 2.83357 2.83357 2.83514 2.83817 2.83514 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1558.45904 1075.33674 483.12230 -44.94075 0.13748 0.20924 6.24796 6.24796 29145.82581 22466.00679 11048.04599 8115.54017 9947.09670 5417.30273 699.73558 699.73558 729.22443 1542.24845 21514.05682 2116.99408 21436.20971 21436.20971 15645.75148 347.12082 3.55319 100.00000 -683.10642 4509.19315 11136.55833 0.02176 0.00046 1.00000 2549.12573 1233.94998 21638.66116 21638.66116 14218.76296 21384.95462 3077.44929 1.02700 2222.41863 186.97746 3396.53643 25136.27179 152787.46164 4678.77663 0.08153 12.26542 0.24965 1.04811 -14457.08130 3.47831 2.78296 3.47462 3.47980 2.82487 2.82487 2.83816 2.83789 2.83816 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 12984.81298 9219.21722 3765.59576 353.64699 0.24951 0.17475 5.86949 5.86949 287144.44179 259197.59381 127464.88351 93631.61442 114762.87508 24595.24620 3503.70138 3503.70138 3521.14077 16201.32740 58316.61699 6221.20969 + 2365.29004 657.09739 3296.10983 3296.10983 1702.37240 46.51062 3.42047 100.00000 -74.97514 1304.33868 398.03371 0.02176 -0.00029 0.74787 1081.60101 171.68021 2382.88270 2382.88270 1724.23042 2344.23985 960.61576 1.02700 218.89718 19.08248 994.46790 4686.58123 16362.28029 337.28404 0.07542 13.25949 0.16779 1.03345 -1586.75368 3.35088 2.93949 3.34792 3.35910 2.94868 2.94868 2.95014 2.95121 2.95014 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1552.55021 1040.20864 512.34157 51.90088 0.23371 0.19782 8.61939 8.61939 32494.67461 27457.82641 13502.85932 9918.76729 12157.28532 4585.71653 982.95989 982.95989 1012.06056 1799.44222 21683.73005 16752.46541 17807.49125 21781.37085 21783.94966 4129.10092 4931.26464 125.77234 4805.49229 1359.11290 5488.21383 44953.49356 1148.02148 43805.47208 -12772.61757 17825.70724 3.27445 3.47040 3.26502 3.26502 3.19232 3.30228 3.19245 16195.51622 581.90258 3412.79666 3412.79666 1591.15539 3412.79666 5585.85463 23360.81487 4801.83829 33232.25284 33232.25284 16089.65360 217.02858 3.36309 100.00000 105.40957 10826.59583 5263.05776 0.02176 -0.00058 0.16463 6350.45495 1717.47352 23258.67335 23258.67335 18702.43901 23505.57684 5795.16847 1.02700 2394.08650 234.78056 6194.55941 49213.31105 24111.03340 3115.89587 0.05377 18.59635 0.14651 0.94413 2230.85988 3.34612 3.43537 3.34656 3.34650 3.21968 3.21968 3.24530 3.24375 3.24530 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 16984.96549 11719.62620 5265.33930 -331.47956 0.82587 0.21592 9.10358 9.10358 316458.44800 253391.47242 124609.62324 91534.23182 112192.14447 48154.46641 6059.31780 6059.31780 6092.41789 16851.07833 10427.41916 2338.85371 11545.77523 11545.77523 7075.28269 90.01332 3.40680 100.00000 133.42637 4441.30683 2633.97585 0.02176 -0.00340 0.55484 3294.68548 700.06905 10389.35269 10389.35269 8085.35990 10481.56860 2905.13345 1.02700 1195.37536 78.55290 3079.93107 24767.27387 25691.23366 3270.29825 0.05348 18.69897 0.13004 0.92571 2823.79999 3.36495 3.49236 3.36529 3.36524 3.24597 3.24597 3.27052 3.26960 3.27052 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 7385.29085 5095.85069 2289.44016 -124.49711 0.43493 0.20937 8.52113 8.52113 141488.68835 111338.87850 54752.81220 40219.65940 49296.63743 24234.25702 3032.19623 3032.19623 3041.86461 7533.43502 806.50174 784.25517 18.53933 345.58946 364.35878 2927.90990 3.21947 3.21947 159.04170 342.11221 5418.82679 1099.82216 16943.96200 16943.96200 3919.80834 60.73780 3.40931 100.00000 91.92411 2426.78005 1493.02829 0.02176 -0.00335 0.56895 1628.88126 886.84574 5392.71980 5392.71980 4518.62366 5452.66056 1402.79397 1.02700 548.93665 76.20437 1531.50793 12502.26301 16261.04977 1825.00328 0.05609 17.82916 0.14234 0.99370 1945.45714 3.47710 3.27032 3.47842 3.47847 3.17956 3.17956 3.20390 3.20197 3.20390 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 3631.77792 2433.29121 1198.48671 -83.64411 0.38721 0.19148 9.67630 9.67630 79391.40150 60776.93075 29888.10306 21954.84172 26909.72246 12233.19553 1489.52975 1489.52975 1505.40094 4070.48407 1471.86758 119.39178 1054.60067 1054.60067 1021.47585 12.40799 3.17579 100.00000 614.71573 307.06984 714.40601 0.02176 -0.00184 9.25925 186.32588 75.18468 1458.17869 1458.17869 856.77780 1485.58719 138.38127 1.02700 200.03121 11.75999 165.37526 3566.54434 54336.06681 536.58771 0.06065 16.48799 0.17581 1.06586 13009.67882 3.12010 2.89758 3.12582 3.12582 2.40528 2.40528 2.51080 2.50919 2.51080 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 781.59312 445.50808 336.08504 -34.37003 0.08789 0.16831 2.62369 2.62369 20521.80618 16071.72649 7903.54847 5805.69316 7115.95163 3489.77870 151.13377 151.13377 151.68636 1087.09378 3.15264 2.97145 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4183.83265 4474.69039 1.07755 2.80036 3.26179 3.26179 3.30903 0.16691 563.36325 3595.86717 3595.86717 1750.19709 9619.57917 2633.40997 11797.79517 11797.79517 6672.68778 116.69347 3.48101 100.00000 162.66276 4178.41962 2494.26817 0.02176 -0.00126 0.85628 3022.40369 667.29738 9588.73627 9588.73627 7310.90906 9659.20056 3198.45882 1.02700 1088.14414 159.31924 3472.04769 22413.87153 60377.06051 2324.70753 0.05512 18.14206 0.13262 0.88273 3442.55103 3.47807 3.41447 3.47900 3.47906 3.15695 3.15695 3.18860 3.17717 3.18860 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 6643.61168 4584.09206 2059.51962 -98.34558 0.23031 0.19770 8.92256 8.92256 132314.50338 105166.70969 51717.54183 37990.04715 46563.83491 21931.43825 3307.03554 3307.03554 3441.20479 7075.51313 2171.57401 601.16678 2370.33574 2370.33574 1479.81200 24.82722 3.58040 100.00000 148.98980 781.64229 698.16971 0.02176 -0.00069 1.63522 704.39714 126.39285 2155.37396 2155.37396 1762.14210 2188.28610 727.82129 1.02700 245.47798 12.49686 761.46741 5658.23998 25847.76391 304.60866 0.06400 15.62593 0.11809 1.18232 3153.18019 3.56759 2.73994 3.57252 3.58189 2.91007 2.91007 2.91169 2.91480 2.91169 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1635.74925 1128.66698 507.08227 -47.16954 0.13962 0.20924 6.24796 6.24796 29787.03568 22960.25868 11291.10288 8294.08196 10165.93272 5536.48536 715.12975 715.12975 745.26736 1576.17780 21987.36583 2163.56793 22499.31698 22499.31698 15989.95783 354.75747 3.64912 100.00000 -716.98440 4608.39535 11381.56249 0.02176 0.00040 1.00000 2605.20647 1295.14649 22114.71145 22114.71145 14923.92822 21855.42338 3145.15314 1.02700 2271.31182 191.09096 3471.26020 25689.27524 152848.01438 4910.81585 0.08153 12.26542 0.24965 1.04811 -15174.06569 3.57222 2.85810 3.56844 3.57376 2.90114 2.90114 2.91479 2.91451 2.91479 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 13628.78173 9676.43503 3952.34670 371.18575 0.25333 0.17475 5.86949 5.86949 293461.61567 264899.93787 130269.10948 95691.50886 117287.65701 25136.34082 3580.78277 3580.78277 3598.60582 16557.75600 61208.77097 6358.07623 + 2417.32639 671.55352 3459.57708 3459.57708 1739.82457 47.53385 3.51283 100.00000 -78.69345 1333.03412 406.79045 0.02176 -0.00024 0.74787 1105.39622 180.19452 2435.30609 2435.30609 1809.74189 2395.81310 981.74929 1.02700 223.71291 19.50229 1016.34619 4789.68778 16358.33753 354.01130 0.07542 13.25949 0.16779 1.03345 -1665.44714 3.44135 3.01885 3.43831 3.44980 3.02830 3.02830 3.02980 3.03089 3.02980 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1629.54737 1091.79674 537.75063 54.47485 0.23718 0.19782 8.61939 8.61939 33209.55787 28061.89828 13799.92207 10136.98006 12424.74546 4686.60303 1004.58500 1004.58500 1034.32589 1839.02988 22160.77186 17121.01946 18690.63587 22260.56076 22263.19630 4219.94110 5039.75240 128.53933 4911.21307 1389.01337 5608.95447 45947.43154 1173.23888 44774.19266 -13406.06270 18217.38188 3.36286 3.56411 3.35317 3.35317 3.27851 3.39144 3.27865 16551.81739 594.70443 3487.87815 3487.87815 1626.16079 3487.87815 5708.74336 23874.75253 4907.47868 34880.37301 34880.37301 16443.62579 221.80321 3.45389 100.00000 110.63725 11064.78082 5378.84498 0.02176 -0.00048 0.16463 6490.16489 1802.64989 23770.36390 23770.36390 19629.96767 24022.69926 5922.66211 1.02700 2446.75638 239.94573 6330.83964 50296.05107 24099.42336 3270.42559 0.05377 18.59635 0.14651 0.94413 2341.49713 3.43646 3.52813 3.43692 3.43685 3.30661 3.30661 3.33292 3.33133 3.33292 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 17827.31778 12300.84927 5526.46851 -347.91896 0.83865 0.21592 9.10358 9.10358 323420.55001 258966.08189 127351.03352 93547.98387 114660.37036 49213.88393 6192.62272 6192.62272 6226.45101 17221.80050 10656.82226 2390.30846 12118.37634 12118.37634 7230.93882 91.99361 3.49878 100.00000 140.04352 4539.01553 2691.92329 0.02176 -0.00284 0.55484 3367.16853 734.78827 10617.91833 10617.91833 8486.34519 10712.16299 2969.04635 1.02700 1221.67360 80.28106 3147.68952 25312.16540 25618.44354 3432.48541 0.05348 18.69897 0.13004 0.92571 2963.84351 3.45580 3.58666 3.45615 3.45610 3.33361 3.33361 3.35882 3.35788 3.35882 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 7751.55692 5348.57428 2402.98264 -130.67142 0.44238 0.20937 8.52113 8.52113 144601.44280 113788.33254 55957.37344 41104.49145 50381.16289 24767.41534 3098.90451 3098.90451 3108.78559 7699.17017 824.24477 801.50878 18.94719 353.19243 372.37466 3073.11665 3.30639 3.30639 162.54061 349.63867 5538.04092 1124.01823 17784.28076 17784.28076 4006.04408 62.07404 3.50136 100.00000 96.48299 2480.16919 1525.87489 0.02176 -0.00279 0.56895 1664.71662 930.82796 5511.35957 5511.35957 4742.72025 5572.61903 1433.65542 1.02700 561.01325 77.88086 1565.20109 12777.31809 16215.78064 1915.51248 0.05609 17.82916 0.14234 0.99370 2041.94013 3.57098 3.35862 3.57234 3.57239 3.26541 3.26541 3.29040 3.28842 3.29040 1.00001 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 3811.89229 2553.96784 1257.92445 -87.79236 0.39363 0.19148 9.67630 9.67630 81138.01399 62114.02252 30545.64099 22437.84798 27501.73604 12502.32826 1522.29939 1522.29939 1538.51974 4160.03455 1504.24865 122.01840 1106.90253 1106.90253 1043.94831 12.68097 3.26154 100.00000 645.20194 313.82537 730.12294 0.02176 -0.00153 9.25925 190.42505 78.91339 1490.25860 1490.25860 899.26883 1518.27009 141.42566 1.02700 204.43189 12.01871 169.01351 3645.00908 54252.82265 563.19924 0.06065 16.48799 0.17581 1.06586 13654.88076 3.20434 2.97581 3.21022 3.21022 2.47023 2.47023 2.57859 2.57694 2.57859 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 820.35544 467.60260 352.75284 -36.07458 0.08906 0.16831 2.62369 2.62369 20973.28594 16425.30429 8077.42644 5933.41835 7272.50248 3566.55405 154.45871 154.45871 155.02346 1111.00980 3.23777 3.05168 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4275.87692 4573.13352 1.07755 2.87597 3.34986 3.34986 3.39837 0.16691 575.75723 3674.97621 3674.97620 1788.70141 9831.20980 2691.34496 12382.89496 12382.89496 6819.48684 119.26072 3.57500 100.00000 170.72985 4270.34480 2549.14204 0.02176 -0.00105 0.85628 3088.89654 700.39132 9799.68835 9799.68835 7673.48625 9871.70287 3268.82488 1.02700 1112.08330 162.82427 3548.43270 22906.98146 60313.63055 2439.99906 0.05512 18.14206 0.13262 0.88273 3613.28088 3.57198 3.50666 3.57294 3.57300 3.24219 3.24219 3.27469 3.26296 3.27469 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 6973.09493 4811.43550 2161.65943 -103.22294 0.23396 0.19770 8.92256 8.92256 135225.42301 107480.37609 52855.32715 38825.82775 47588.23874 22413.93173 3379.79028 3379.79028 3516.91125 7231.17420 2219.34861 614.39244 2487.89016 2487.89016 1512.36785 25.37342 3.67707 100.00000 156.37880 798.83841 713.52944 0.02176 -0.00057 1.63522 719.89387 132.66118 2202.79216 2202.79216 1849.53377 2236.42837 743.83335 1.02700 250.87849 12.77179 778.21969 5782.72536 25832.98594 319.71542 0.06400 15.62593 0.11809 1.18232 3309.55899 3.66392 2.81392 3.66898 3.67860 2.98865 2.98865 2.99031 2.99350 2.99031 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1716.87259 1184.64209 532.23050 -49.50887 0.14179 0.20924 6.24796 6.24796 30442.35211 23465.38411 11539.50701 8476.55167 10389.58312 5658.28997 730.86260 730.86260 761.66324 1610.85360 22471.08762 2211.16640 23615.14798 23615.14798 16341.73672 362.56213 3.74765 100.00000 -752.54252 4709.77999 11631.95673 0.02176 0.00033 1.00000 2662.52098 1359.37798 22601.23485 22601.23485 15664.06543 22336.24245 3214.34647 1.02700 2321.28065 195.29496 3547.62788 26254.44436 152898.49333 5154.36282 0.08153 12.26542 0.24965 1.04811 -15926.60821 3.66867 2.93526 3.66478 3.67025 2.97947 2.97947 2.99349 2.99320 2.99349 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 14304.68745 10156.32810 4148.35936 389.59434 0.25721 0.17475 5.86949 5.86949 299917.76734 270727.73344 133135.02839 97796.72096 119867.98412 25689.33954 3659.55995 3659.55995 3677.77511 16922.02605 64244.35843 6497.95383 + 2470.50754 686.32769 3631.15133 3631.15133 1778.10069 48.57960 3.60767 100.00000 -82.59618 1362.36086 415.73984 0.02176 -0.00019 0.74787 1129.71492 189.13108 2488.88280 2488.88280 1899.49422 2448.52096 1003.34777 1.02700 228.63459 19.93134 1038.70579 4895.06263 16355.18402 371.56814 0.07542 13.25949 0.16779 1.03345 -1748.04331 3.53427 3.10036 3.53115 3.54294 3.11006 3.11006 3.11160 3.11273 3.11160 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1710.36314 1145.94330 564.41984 57.17648 0.24069 0.19782 8.61939 8.61939 33940.16854 28679.25971 14103.52020 10359.99350 12698.08972 4789.70902 1026.68586 1026.68586 1057.08104 1879.48847 22648.30859 17497.68169 19617.57917 22750.29284 22752.98637 4312.77975 5150.62690 131.36720 5019.25970 1419.57165 5732.35140 46962.78960 1199.01458 45763.77502 -14070.92290 18617.71753 3.45365 3.66034 3.44371 3.44371 3.36703 3.48301 3.36717 16915.95719 607.78792 3564.61143 3564.61142 1661.93631 3564.61143 5834.33565 24399.99681 5015.44315 36610.23004 36610.23004 16805.38537 226.68287 3.54715 100.00000 116.12419 11308.20587 5497.17950 0.02176 -0.00039 0.16463 6632.94844 1892.05050 24293.31163 24293.31163 20603.49619 24551.19837 6052.96061 1.02700 2500.58499 245.22454 6470.11804 51402.61004 24090.13935 3432.61906 0.05377 18.59636 0.14651 0.94413 2457.62132 3.52925 3.62339 3.52972 3.52965 3.39589 3.39589 3.42291 3.42128 3.42291 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 18711.44569 12910.89753 5800.54816 -365.17365 0.85156 0.21592 9.10358 9.10358 330535.81763 264663.33269 130152.75479 95606.03844 117182.89719 50296.60807 6328.86035 6328.86035 6363.43286 17600.67859 10891.27223 2442.89522 12719.37504 12719.37504 7390.01939 94.01747 3.59325 100.00000 146.98883 4638.87382 2751.14558 0.02176 -0.00227 0.55484 3441.24619 771.22935 10851.51241 10851.51241 8907.21695 10947.83046 3034.36534 1.02700 1248.55040 82.04724 3216.93865 25869.04422 25560.35996 3602.71607 0.05348 18.69898 0.13004 0.92571 3110.83234 3.54911 3.68350 3.54947 3.54942 3.42362 3.42362 3.44951 3.44854 3.44951 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 8135.98760 5613.83144 2522.15615 -137.15194 0.44978 0.20937 8.52113 8.52113 147782.67768 116291.67454 57188.43501 42008.78979 51489.54789 25312.30300 3167.08037 3167.08037 3177.17884 7868.55151 842.37815 819.14196 19.36403 360.96266 380.56690 3225.52478 3.39567 3.39567 166.11650 357.33072 5659.87776 1148.74662 18666.27428 18666.27428 4094.17700 63.43966 3.59590 100.00000 101.26797 2534.73288 1559.44412 0.02176 -0.00223 0.56895 1701.34037 976.99144 5632.60942 5632.60942 4977.93070 5695.21658 1465.19582 1.02700 573.35554 79.59424 1599.63550 13058.42426 16179.65610 2010.51040 0.05609 17.82916 0.14234 0.99370 2143.20809 3.66740 3.44930 3.66879 3.66885 3.35358 3.35358 3.37924 3.37721 3.37924 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 4000.93926 2680.62930 1320.30995 -92.14633 0.40001 0.19148 9.67630 9.67630 82923.05187 63480.53029 31217.64474 22931.48038 28106.77392 12777.38185 1555.78996 1555.78996 1572.36716 4251.55513 1537.34211 124.70280 1161.79825 1161.79825 1066.91516 12.95995 3.34960 100.00000 677.20008 320.72953 746.18563 0.02176 -0.00123 9.25925 194.61440 82.82702 1523.04427 1523.04427 943.86716 1551.67202 144.53702 1.02700 208.92939 12.28313 172.73180 3725.20002 54186.31915 591.13054 0.06065 16.48799 0.17581 1.06586 14332.08084 3.29086 3.05616 3.29689 3.29690 2.53692 2.53692 2.64821 2.64652 2.64821 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 861.04015 490.79288 370.24726 -37.86366 0.09024 0.16831 2.62369 2.62369 21434.69824 16786.66079 8255.12973 6063.95348 7432.49745 3645.01845 157.85680 157.85680 158.43397 1135.45197 3.32519 3.13408 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4369.94617 4673.74241 1.07755 2.95362 3.44030 3.44030 3.49013 0.16691 588.42388 3755.82564 3755.82564 1828.05282 10047.49631 2750.55452 12997.01219 12997.01219 6969.51547 121.88446 3.67152 100.00000 179.19703 4364.29234 2605.22313 0.02176 -0.00084 0.85628 3156.85223 735.12653 10015.28139 10015.28139 8054.04508 10088.88022 3340.73899 1.02700 1136.54912 166.40640 3626.49818 23410.93967 60262.93457 2561.00836 0.05512 18.14207 0.13262 0.88273 3792.47791 3.66843 3.60134 3.66941 3.66947 3.32973 3.32973 3.36311 3.35106 3.36311 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 7318.91856 5050.05381 2268.86475 -108.34217 0.23764 0.19770 8.92256 8.92256 138200.38279 109844.94312 54018.14374 39679.99552 48635.17944 22907.04000 3454.14563 3454.14563 3594.28326 7390.25981 2268.17426 627.90907 2611.27457 2611.27457 1545.63992 25.93164 3.77635 100.00000 164.13425 816.41284 729.22708 0.02176 -0.00046 1.63522 735.73153 139.24038 2251.25357 2251.25357 1941.25954 2285.62976 760.19768 1.02700 256.39781 13.05277 795.34051 5909.94933 25821.16966 335.57138 0.06400 15.62594 0.11809 1.18232 3473.69324 3.76284 2.88990 3.76804 3.77792 3.06934 3.06934 3.07105 3.07432 3.07105 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1802.01916 1243.39322 558.62594 -51.96421 0.14398 0.20924 6.24796 6.24796 31112.08546 23981.62228 11793.37603 8663.03571 10618.15383 5782.77424 746.94157 746.94157 778.41982 1646.29226 22965.45129 2259.81203 24786.31750 24786.31750 16701.25475 370.53849 3.84883 100.00000 -789.86410 4813.39510 11887.85965 0.02176 0.00026 1.00000 2721.09641 1426.79496 23098.46176 23098.46176 16440.90901 22827.63952 3285.06206 1.02700 2372.34880 199.59145 3625.67565 26832.04682 152938.88849 5409.98827 0.08153 12.26542 0.24965 1.04811 -16716.47231 3.76773 3.01452 3.76373 3.76935 3.05991 3.05991 3.07431 3.07402 3.07431 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 15014.11405 10660.02098 4354.09307 408.91588 0.26117 0.17475 5.86949 5.86949 306515.95430 276683.74044 136063.99748 99948.24769 122505.07839 26254.50426 3740.07023 3740.07023 3758.68612 17294.31006 67430.49280 6640.90874 + 2524.85868 701.42689 3811.23463 3811.23463 1817.21889 49.64835 3.70508 100.00000 -86.69245 1392.33278 424.88611 0.02176 -0.00014 0.74787 1154.56864 198.51085 2543.63819 2543.63819 1993.69773 2502.38840 1025.42140 1.02700 233.66455 20.36983 1061.55731 5002.75567 16352.81928 389.99569 0.07542 13.25950 0.16779 1.03345 -1834.73576 3.62969 3.18407 3.62649 3.63860 3.19403 3.19403 3.19562 3.19677 3.19562 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1795.18688 1202.77521 592.41167 60.01209 0.24425 0.19782 8.61939 8.61939 34686.85261 29310.20309 14413.79748 10587.91324 12977.44754 4895.08332 1049.27294 1049.27294 1080.33681 1920.83715 23146.57112 17882.63049 20590.49329 23250.79902 23253.55181 4407.66086 5263.94063 134.25728 5129.68336 1450.80221 5858.46307 48000.07917 1225.36054 46774.71863 -14768.75618 19026.90074 3.54690 3.75917 3.53669 3.53669 3.45794 3.57705 3.45809 17288.10805 621.15924 3643.03284 3643.03284 1698.49889 3643.03284 5962.69097 24936.79646 5125.78284 38425.87759 38425.87759 17175.10366 231.66989 3.64292 100.00000 121.88326 11556.98627 5618.11739 0.02176 -0.00029 0.16463 6778.87323 1985.88484 24827.76421 24827.76421 21625.30587 25091.32445 6186.12567 1.02700 2555.59783 250.61947 6612.46057 52533.51200 24083.17869 3602.85636 0.05377 18.59636 0.14651 0.94413 2579.50458 3.62454 3.72122 3.62502 3.62495 3.48758 3.48758 3.51533 3.51365 3.51533 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 19639.42102 13551.20051 6088.22051 -383.28407 0.86461 0.21592 9.10358 9.10358 337807.62052 270485.92295 133016.11390 97709.37018 119760.91958 51403.15160 6468.09520 6468.09520 6503.42831 17987.89203 11130.88009 2496.63889 13350.17965 13350.17965 7552.59974 96.08585 3.69027 100.00000 154.27860 4740.92899 2811.67075 0.02176 -0.00170 0.55484 3516.95357 809.47770 11090.24556 11090.24556 9348.96142 11188.68260 3101.12134 1.02700 1276.01850 83.85228 3287.71127 26438.17405 25516.88372 3781.38915 0.05348 18.69898 0.13004 0.92571 3265.11094 3.64493 3.78295 3.64531 3.64525 3.51606 3.51606 3.54265 3.54165 3.54265 1.00001 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 8539.48372 5892.24377 2647.23995 -143.95385 0.45712 0.20937 8.52113 8.52113 151033.89956 118850.09003 58446.57992 42932.98268 52622.31735 25869.17806 3236.75611 3236.75611 3247.07674 8041.65924 860.91046 837.16308 19.79004 368.90383 388.93937 3385.49144 3.48735 3.48735 169.77106 365.19199 5784.39501 1174.01904 19592.00939 19592.00939 4184.24885 64.83534 3.69298 100.00000 106.29025 2590.49697 1593.75188 0.02176 -0.00167 0.56895 1738.76984 1025.44435 5756.52676 5756.52676 5224.80617 5820.51128 1497.43011 1.02700 585.96935 81.34531 1634.82746 13345.71463 16152.61551 2110.21964 0.05609 17.82917 0.14234 0.99370 2249.49834 3.76642 3.54243 3.76785 3.76791 3.44413 3.44413 3.47048 3.46839 3.47048 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 4199.36182 2813.57242 1385.78940 -96.71624 0.40634 0.19148 9.67630 9.67630 84747.36050 64877.10122 31904.43256 23435.97268 28725.12262 13058.48656 1590.01732 1590.01732 1606.95921 4345.08918 1571.16362 127.44626 1219.41647 1219.41647 1090.38728 13.24507 3.44004 100.00000 710.78514 327.78557 762.60171 0.02176 -0.00092 9.25925 198.89591 86.93474 1556.55123 1556.55123 990.67731 1585.80878 147.71684 1.02700 213.52584 12.55335 176.53190 3807.15514 54136.49503 620.44706 0.06065 16.48799 0.17581 1.06586 15042.86598 3.37971 3.13867 3.38591 3.38591 2.60542 2.60542 2.71971 2.71797 2.71971 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 903.74257 515.13326 388.60930 -39.74147 0.09141 0.16831 2.62369 2.62369 21906.26160 17155.96714 8436.74249 6197.36039 7596.01231 3725.20906 161.32965 161.32965 161.91952 1160.43187 3.41497 3.21870 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4466.08493 4776.56469 1.07755 3.03337 3.53319 3.53319 3.58436 0.16691 601.36920 3838.45376 3838.45376 1868.26996 10268.54111 2811.06668 13641.58594 13641.58594 7122.84473 124.56591 3.77065 100.00000 188.08412 4460.30672 2662.53801 0.02176 -0.00063 0.85628 3226.30294 771.58439 10235.61746 10235.61746 8453.47735 10310.83547 3414.23520 1.02700 1161.55319 170.06734 3706.28110 23925.98482 60224.94054 2688.01899 0.05512 18.14207 0.13262 0.88273 3980.56203 3.76747 3.69858 3.76848 3.76855 3.41963 3.41963 3.45391 3.44153 3.45391 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 7681.89297 5300.50615 2381.38682 -113.71529 0.24134 0.19770 8.92256 8.92256 141240.79158 112261.53060 55206.54228 40552.95496 49705.15283 23410.99659 3530.13679 3530.13679 3673.35745 7552.84531 2318.07406 641.72306 2740.77811 2740.77811 1579.64398 26.50213 3.87831 100.00000 172.27432 834.37392 745.27007 0.02176 -0.00034 1.63522 751.91761 146.14586 2300.78112 2300.78112 2037.53435 2335.91359 776.92202 1.02700 262.03856 13.33993 812.83799 6039.97213 25812.31099 352.21371 0.06400 15.62594 0.11809 1.18232 3645.96757 3.86444 2.96792 3.86978 3.87992 3.15221 3.15221 3.15396 3.15733 3.15396 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1891.38849 1305.05806 586.33043 -54.54132 0.14619 0.20924 6.24796 6.24796 31796.55288 24509.21770 12052.83017 8853.62240 10851.75309 5909.99711 763.37427 763.37427 795.54505 1682.51058 23470.69096 2309.52787 26015.57000 26015.57000 17068.68216 378.69034 3.95275 100.00000 -829.03662 4919.28974 12149.39242 0.02176 0.00020 1.00000 2780.96050 1497.55543 23606.62766 23606.62766 17256.27937 23329.84733 3357.33338 1.02700 2424.54044 203.98246 3705.44048 27422.35620 152969.19186 5678.29119 0.08153 12.26542 0.24965 1.04811 -17545.50893 3.86946 3.09591 3.86535 3.87112 3.14253 3.14253 3.15732 3.15701 3.15732 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 15758.72394 11188.69400 4570.02994 429.19565 0.26520 0.17475 5.86949 5.86949 313259.30134 282770.77952 139057.40385 102147.10799 125200.18870 26832.10264 3822.35173 3822.35173 3841.37717 17674.78434 70774.64030 6787.00866 + 2580.40554 716.85828 4000.24898 4000.24898 1857.19768 50.74061 3.80512 100.00000 -90.99188 1422.96408 434.23360 0.02176 -0.00010 0.74787 1179.96913 208.35579 2599.59820 2599.59820 2092.57316 2557.44091 1047.98066 1.02700 238.80517 20.81797 1084.91156 5112.81792 16351.24298 409.33713 0.07542 13.25950 0.16779 1.03345 -1925.72764 3.72769 3.27004 3.72440 3.73684 3.28027 3.28027 3.28190 3.28309 3.28190 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1884.21737 1262.42564 621.79173 62.98833 0.24785 0.19782 8.61939 8.61939 35449.96370 29955.02722 14730.90086 10820.84721 13262.95124 5002.77584 1072.35693 1072.35693 1104.10421 1963.09550 23655.79542 18276.04815 21611.65810 23762.31634 23765.12968 4504.62935 5379.74727 137.21093 5242.53633 1482.71984 5987.34919 49059.81931 1252.28903 47807.53029 -15501.19779 19445.12256 3.64267 3.86066 3.63218 3.63218 3.55131 3.67363 3.55145 17668.44623 634.82474 3723.17952 3723.17952 1735.86585 3723.17952 6093.87010 25485.40570 5238.55001 40331.57036 40331.57036 17552.95574 236.76663 3.74128 100.00000 127.92793 11811.23983 5741.71591 0.02176 -0.00019 0.16463 6928.00837 2084.37281 25373.97474 25373.97474 22697.79117 25643.33330 6322.22037 1.02700 2611.82095 256.13310 6757.93462 53689.29255 24078.53937 3781.53639 0.05377 18.59636 0.14651 0.94413 2707.43251 3.72240 3.82169 3.72289 3.72282 3.58174 3.58174 3.61024 3.60852 3.61024 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 20613.41836 14223.25868 6390.15969 -402.29266 0.87781 0.21592 9.10358 9.10358 345239.40247 276436.61012 135942.46687 99858.97521 122395.65843 52534.03855 6610.39322 6610.39322 6646.50366 18383.62420 11375.75933 2551.56492 14012.26839 14012.26839 7718.75685 98.19974 3.78990 100.00000 161.92989 4845.22937 2873.52747 0.02176 -0.00113 0.55484 3594.32651 849.62293 11334.23084 11334.23084 9812.61376 11434.83349 3169.34597 1.02700 1304.09089 85.69703 3360.04088 27019.82443 25487.94065 3968.92335 0.05348 18.69898 0.13004 0.92571 3427.04083 3.74334 3.88509 3.74373 3.74367 3.61099 3.61099 3.63830 3.63728 3.63830 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 8962.99083 6184.46368 2778.52716 -151.09310 0.46440 0.20937 8.52113 8.52113 154356.64815 121464.79063 59732.40401 43877.50780 53780.00773 26438.30423 3307.96470 3307.96470 3318.51239 8218.57534 879.85048 855.58065 20.22542 377.01971 397.49603 3553.39148 3.58151 3.58151 173.50603 373.22621 5911.65163 1199.84744 20563.65540 20563.65540 4276.30228 66.26171 3.79270 100.00000 111.56161 2647.48788 1628.81440 0.02176 -0.00112 0.56895 1777.02276 1076.30023 5883.17028 5883.17028 5483.92518 5948.56246 1530.37356 1.02700 598.86067 83.13491 1670.79364 13639.32528 16134.61356 2214.87386 0.05609 17.82917 0.14234 0.99370 2361.05995 3.86811 3.63808 3.86958 3.86964 3.53712 3.53712 3.56418 3.56204 3.56418 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 4407.62495 2953.10872 1454.51623 -101.51278 0.41261 0.19148 9.67630 9.67630 86611.80385 66304.39670 32606.32971 23951.56381 29357.07499 13345.77551 1624.99768 1624.99768 1642.31230 4440.68097 1605.72920 130.25008 1279.89220 1279.89220 1114.37579 13.53646 3.53292 100.00000 746.03581 334.99685 779.37894 0.02176 -0.00061 9.25925 203.27162 91.24618 1590.79534 1590.79534 1039.80895 1620.69656 150.96660 1.02700 218.22340 12.82953 180.41560 3890.91323 54103.30441 651.21751 0.06065 16.48799 0.17580 1.06586 15788.90179 3.47096 3.22342 3.47733 3.47733 2.67576 2.67576 2.79314 2.79136 2.79314 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 948.56277 540.68078 407.88199 -41.71241 0.09258 0.16831 2.62369 2.62369 22388.19934 17533.39821 8622.35073 6333.70224 7763.12450 3807.16385 164.87890 164.87890 165.48174 1185.96133 3.50717 3.30560 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4564.33875 4881.64906 1.07755 3.11527 3.62859 3.62859 3.68114 0.16691 614.59932 3922.89970 3922.89970 1909.37187 10494.44890 2872.91012 14318.12668 14318.12668 7279.54723 127.30636 3.87246 100.00000 197.41197 4558.43342 2721.11382 0.02176 -0.00042 0.85628 3297.28157 809.85034 10460.80093 10460.80093 8872.71906 10537.67373 3489.34834 1.02700 1187.10734 173.80882 3787.81924 24452.36082 60199.62450 2821.32859 0.05512 18.14207 0.13262 0.88273 4177.97400 3.86919 3.79844 3.87023 3.87030 3.51196 3.51196 3.54716 3.53446 3.54716 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 8062.86872 5563.37942 2499.48930 -119.35489 0.24506 0.19770 8.92256 8.92256 144348.08928 114731.28297 56421.08557 41445.11951 50798.66562 23926.04016 3607.79976 3607.79976 3754.17127 7719.00768 2369.07167 655.84096 2876.70424 2876.70424 1614.39613 27.08518 3.98303 100.00000 180.81810 852.73013 761.66600 0.02176 -0.00023 1.63522 768.45979 153.39382 2351.39828 2351.39828 2138.58382 2387.30367 794.01429 1.02700 267.80341 13.63341 830.72042 6172.85534 25806.40690 369.68139 0.06400 15.62594 0.11809 1.18232 3826.78566 3.96878 3.04806 3.97426 3.98468 3.23732 3.23732 3.23912 3.24258 3.23912 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 1985.19000 1369.78110 615.40890 -57.24624 0.14843 0.20924 6.24796 6.24796 32496.07854 25048.42020 12317.99230 9048.40199 11090.49153 6040.01884 780.16850 780.16850 813.04703 1719.52571 23987.04589 2360.33746 27305.78604 27305.78604 17444.19297 387.02152 4.05948 100.00000 -870.15185 5027.51405 12416.67892 0.02176 0.00013 1.00000 2842.14160 1571.82518 24125.97320 24125.97320 18112.08719 23843.10371 3431.19468 1.02700 2477.88031 208.47007 3786.96012 28025.65206 152989.39745 5959.90034 0.08153 12.26542 0.24965 1.04811 -18415.66079 3.97393 3.17950 3.96972 3.97564 3.22738 3.22738 3.24257 3.24225 3.24257 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 16540.26201 11743.58603 4796.67598 450.48118 0.26930 0.17475 5.86949 5.86949 320151.00195 288991.73339 142116.66514 104394.34319 127954.59141 27422.40819 3906.44342 3906.44342 3925.88743 18063.62908 74284.63743 6936.32277 + 2637.17444 732.62915 4198.63730 4198.63730 1898.05601 51.85690 3.90786 100.00000 -95.50453 1454.26928 443.78673 0.02176 -0.00005 0.74787 1205.92844 218.68899 2656.78933 2656.78933 2196.35222 2613.70458 1071.03623 1.02700 244.05888 21.27596 1108.77960 5225.30149 16350.45488 429.63779 0.07542 13.25950 0.16779 1.03345 -2021.23217 3.82834 3.35833 3.82496 3.83774 3.36884 3.36884 3.37051 3.37173 3.37051 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 1977.66323 1325.03437 652.62887 66.11217 0.25150 0.19782 8.61939 8.61939 36229.86321 30614.03747 15054.98051 11058.90573 13554.73602 5112.83756 1095.94877 1095.94877 1128.39449 2006.28353 24176.22265 18678.12100 22683.46655 24285.08703 24287.96226 4603.73114 5498.10165 140.22957 5357.87207 1515.33966 6119.07080 50142.53722 1279.81259 48862.72463 -16269.96411 19872.57853 3.74102 3.96490 3.73025 3.73025 3.64719 3.77281 3.64734 18057.15185 648.79088 3805.08942 3805.08942 1774.05488 3805.08943 6227.93518 26046.08433 5353.79805 42331.77404 42331.77404 17939.12057 241.97549 3.84230 100.00000 134.27239 12071.08698 5868.03359 0.02176 -0.00010 0.16463 7080.42447 2187.74518 25932.20189 25932.20189 23823.46530 26207.48634 6461.30914 1.02700 2669.28098 261.76802 6906.60911 54870.49903 24076.22005 3969.07789 0.05377 18.59637 0.14651 0.94413 2841.70490 3.82291 3.92488 3.82341 3.82334 3.67845 3.67845 3.70772 3.70595 3.70772 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 21635.72013 14928.64689 6707.07323 -422.24396 0.89115 0.21592 9.10358 9.10358 352834.68303 282518.21235 138933.19958 102055.87151 125088.36151 53689.80450 6755.82180 6755.82180 6792.72667 18788.06250 11626.02590 2607.69932 14707.19275 14707.19275 7888.56941 100.36013 3.89223 100.00000 169.96064 4951.82437 2936.74504 0.02176 -0.00057 0.55484 3673.40165 891.75913 11583.58379 11583.58379 10299.26048 11686.39970 3239.07155 1.02700 1332.78088 87.58236 3433.96174 27614.27081 25473.48143 4165.75811 0.05348 18.69898 0.13004 0.92571 3597.00147 3.84441 3.98999 3.84481 3.84475 3.70849 3.70849 3.73653 3.73548 3.73653 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 9407.50135 6491.17593 2916.32542 -158.58641 0.47161 0.20937 8.52113 8.52113 157752.49705 124137.01462 61046.51621 44842.81247 54963.16728 27019.95105 3380.73989 3380.73989 3391.51962 8399.38361 899.20718 874.40342 20.67038 385.31414 406.24094 3729.61836 3.67821 3.67821 177.32316 381.43718 6041.70790 1226.24407 21583.48921 21583.48921 4370.38088 67.71947 3.89510 100.00000 117.09439 2705.73258 1664.64830 0.02176 -0.00056 0.56895 1816.11724 1129.67826 6012.59996 6012.59996 5755.89493 6079.43077 1564.04176 1.02700 612.03560 84.96387 1707.55109 13939.39523 16125.62011 2324.71831 0.05609 17.82917 0.14234 0.99370 2478.15434 3.97255 3.73630 3.97406 3.97412 3.63262 3.63262 3.66042 3.65821 3.66042 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 4626.21667 3099.56517 1526.65150 -106.54720 0.41883 0.19148 9.67630 9.67630 88517.26487 67763.09266 33323.66859 24478.49794 30002.93030 13639.38476 1660.74761 1660.74761 1678.44315 4538.37578 1641.05522 133.11558 1343.36717 1343.36717 1138.89204 13.83426 3.62831 100.00000 783.03471 342.36678 796.52526 0.02176 -0.00031 9.25925 207.74359 95.77144 1625.79282 1625.79282 1091.37723 1656.35187 154.28787 1.02700 223.02432 13.11178 184.38474 3976.51398 54086.71673 683.51399 0.06065 16.48799 0.17580 1.06586 16571.93649 3.56468 3.31045 3.57122 3.57122 2.74801 2.74801 2.86856 2.86672 2.86856 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 995.60579 567.49530 428.11049 -43.78110 0.09376 0.16831 2.62369 2.62369 22880.73969 17919.13277 8812.04234 6473.04362 7933.91314 3890.92164 168.50623 168.50623 169.12234 1212.05244 3.60186 3.39486 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4664.75415 4989.04528 1.07755 3.19938 3.72656 3.72656 3.78053 0.16691 628.12050 4009.20345 4009.20345 1951.37803 10725.32665 2936.11411 15028.21978 15028.21978 7439.69719 130.10710 3.97702 100.00000 207.20241 4658.71890 2780.97829 0.02176 -0.00021 0.85628 3369.82172 850.01405 10690.93843 10690.93843 9312.75265 10769.50243 3566.11396 1.02700 1213.22369 177.63261 3871.15122 24990.31697 60186.97047 2961.24955 0.05512 18.14207 0.13262 0.88273 4385.17641 3.97366 3.90100 3.97473 3.97479 3.60678 3.60678 3.64294 3.62989 3.64294 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 8462.73859 5839.28963 2623.44896 -125.27418 0.24880 0.19770 8.92256 8.92256 147523.74744 117255.36987 57662.34881 42356.91166 51916.23568 24452.41464 3687.17131 3687.17131 3836.76300 7888.82564 2421.19122 670.26945 3019.37150 3019.37150 1649.91283 27.68105 4.09057 100.00000 189.78559 871.49019 778.42264 0.02176 -0.00011 1.63522 785.36590 161.00123 2403.12901 2403.12901 2244.64474 2439.82432 811.48260 1.02700 273.69508 13.93334 848.99626 6308.66189 25803.45536 388.01537 0.06400 15.62594 0.11809 1.18232 4016.57125 4.07594 3.13035 4.08157 4.09227 3.32473 3.32473 3.32658 3.33013 3.32658 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2083.64350 1437.71402 645.92949 -60.08531 0.15069 0.20924 6.24796 6.24796 33210.99372 25599.48516 12588.98798 9247.46673 11334.48222 6172.90101 797.33220 797.33220 830.93405 1757.35517 24514.76063 2412.26486 28659.98905 28659.98905 17827.96502 395.53599 4.16908 100.00000 -913.30616 5138.11931 12689.84571 0.02176 0.00007 1.00000 2904.66868 1649.77827 24656.74433 24656.74433 19010.33795 24367.65172 3506.68092 1.02700 2532.39364 213.05641 3870.27320 28642.22012 152999.50124 6255.47560 0.08153 12.26542 0.24965 1.04811 -19328.96694 4.08123 3.26534 4.07690 4.08298 3.31452 3.31452 3.33012 3.32979 3.33012 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 17360.55968 12325.99737 5034.56230 472.82234 0.27348 0.17475 5.86949 5.86949 327194.31992 295349.54818 145243.23013 106691.01754 130769.59095 28025.70050 3992.38513 3992.38513 4012.25691 18461.02842 77968.70933 7088.92179 + 2695.19224 748.74698 4406.86450 4406.86450 1939.81322 52.99775 4.01337 100.00000 -100.24098 1486.26318 453.55004 0.02176 0.00000 0.74787 1232.45885 229.53465 2715.23867 2715.23867 2305.27810 2671.20605 1094.59901 1.02700 249.42817 21.74403 1133.17274 5340.25966 16350.45488 450.94525 0.07542 13.25950 0.16779 1.03345 -2121.47314 3.93171 3.44901 3.92824 3.94136 3.45980 3.45980 3.46151 3.46277 3.46151 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2075.74345 1390.74811 684.99534 69.39093 0.25520 0.19782 8.61939 8.61939 37026.92048 31287.54594 15386.18990 11302.20152 13852.94005 5225.32063 1120.05963 1120.05963 1153.21916 2050.42171 24708.09927 19089.03945 23808.43027 24819.35866 24822.29716 4705.01317 5619.05982 143.31462 5475.74520 1548.67712 6253.69029 51248.76869 1307.94407 49940.82461 -17076.85662 20309.46881 3.84203 4.07195 3.83097 3.83097 3.74567 3.87468 3.74582 18454.40898 663.06427 3888.80135 3888.80135 1813.08406 3888.80135 6364.94968 26619.09789 5471.58154 44431.17581 44431.17581 18333.78102 247.29895 3.94604 100.00000 140.93149 12336.65075 5997.13026 0.02176 0.00000 0.16463 7236.19373 2296.24420 26502.71004 26502.71004 25004.96612 26784.05074 6603.45787 1.02700 2728.00513 267.52692 7058.55443 56077.69086 24076.22005 4165.92032 0.05377 18.59637 0.14651 0.94413 2982.63639 3.92612 4.03085 3.92664 3.92657 3.77777 3.77777 3.80783 3.80601 3.80783 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 22708.72191 15669.01813 7039.70379 -443.18472 0.90463 0.21592 9.10358 9.10358 360597.05918 288733.60974 141989.72837 104301.09951 127840.30402 54870.99679 6904.44980 6904.44980 6942.16658 19201.39848 11881.79834 2665.06867 15436.58119 15436.58119 8062.11784 102.56805 3.99732 100.00000 178.38967 5060.76444 3001.35340 0.02176 0.00000 0.55484 3754.21645 935.98502 11838.42250 11838.42250 10810.04195 11943.50036 3310.33108 1.02700 1362.10204 89.50918 3509.50886 28221.79471 25473.48143 4372.35469 0.05348 18.69898 0.13004 0.92571 3775.39113 3.94821 4.09772 3.94862 3.94856 3.80862 3.80862 3.83742 3.83634 3.83742 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 9874.05692 6813.09928 3060.95764 -166.45134 0.47874 0.20937 8.52113 8.52113 161223.05446 126868.02750 62389.53886 45829.35383 56172.35632 27614.39397 3455.11613 3455.11613 3466.13302 8584.16966 918.98972 893.64028 21.12513 393.79105 415.17824 3914.58504 3.77752 3.77752 181.22426 389.82879 6174.62540 1253.22143 22653.90066 22653.90066 4466.52921 69.20930 4.00027 100.00000 122.90157 2765.25867 1701.27054 0.02176 0.00000 0.56895 1856.07179 1185.70351 6144.87709 6144.87709 6041.35275 6213.17818 1598.45066 1.02700 625.50038 86.83308 1745.11719 14246.06661 16125.62011 2440.01037 0.05609 17.82917 0.14234 0.99370 2601.05591 4.07981 3.83718 4.08136 4.08142 3.73070 3.73070 3.75925 3.75699 3.75925 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 4855.64924 3253.28499 1602.36425 -111.83131 0.42498 0.19148 9.67630 9.67630 90464.64596 69253.87991 34056.78891 25017.02461 30662.99442 13939.45335 1697.28404 1697.28404 1715.36888 4638.21989 1677.15842 136.04412 1409.99011 1409.99011 1163.94766 14.13862 3.72627 100.00000 821.86853 349.89884 814.04881 0.02176 0.00000 9.25925 212.31395 100.52113 1661.56024 1661.56024 1145.50299 1692.79159 157.68220 1.02700 227.93085 13.40024 188.44121 4063.99792 54086.71673 717.41218 0.06065 16.48799 0.17580 1.06586 17393.80502 3.66093 3.39983 3.66764 3.66764 2.82221 2.82221 2.94601 2.94412 2.94601 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1044.98185 595.63966 449.34220 -45.95238 0.09493 0.16831 2.62369 2.62369 23384.11592 18313.35348 9005.90717 6615.45051 8108.45914 3976.52209 172.21337 172.21337 172.84303 1238.71756 3.69911 3.48652 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4767.37869 5098.80422 1.07755 3.28577 3.82718 3.82718 3.88261 0.16691 641.93914 4097.40588 4097.40588 1994.30833 10961.28372 3000.70859 15773.52923 15773.52923 7603.37044 132.96946 4.08440 100.00000 217.47841 4761.21066 2842.15978 0.02176 0.00000 0.85628 3443.95776 892.16965 10926.13895 10926.13895 9774.60925 11006.43136 3644.56843 1.02700 1239.91460 181.54052 3956.31650 25540.10802 60186.97047 3108.10974 0.05512 18.14207 0.13262 0.88273 4602.65482 4.08095 4.00632 4.08204 4.08211 3.70416 3.70416 3.74130 3.72789 3.74130 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 8882.43961 6128.88333 2753.55628 -131.48702 0.25257 0.19770 8.92256 8.92256 150769.26999 119834.98664 58930.91981 43288.76323 53058.39227 24990.36930 3768.28904 3768.28904 3921.17174 8062.37959 2474.45740 685.01537 3169.11419 3169.11419 1686.21089 28.29004 4.20102 100.00000 199.19781 890.66296 795.54793 0.02176 0.00000 1.63522 802.64394 168.98593 2455.99782 2455.99782 2355.96564 2493.50043 829.33520 1.02700 279.71637 14.23987 867.67417 6447.45610 25803.45536 407.25860 0.06400 15.62595 0.11809 1.18232 4215.76906 4.18599 3.21487 4.19177 4.20276 3.41450 3.41450 3.41639 3.42004 3.41639 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2186.97971 1509.01600 677.96371 -63.06519 0.15297 0.20924 6.24796 6.24796 33941.63698 26162.67353 12865.94557 9450.91089 11583.84070 6308.70654 814.87350 814.87350 849.21459 1796.01687 25054.08508 2465.33466 30081.35239 30081.35239 18220.18004 404.23777 4.28165 100.00000 -958.60066 5251.15787 12969.02217 0.02176 0.00000 1.00000 2968.57136 1731.59737 25199.19242 25199.19242 19953.13655 24903.73978 3583.82786 1.02700 2588.10628 217.74365 3955.41917 29272.35239 152999.50124 6565.70963 0.08153 12.26542 0.24965 1.04811 -20287.56760 4.19142 3.35351 4.18698 4.19322 3.40401 3.40401 3.42003 3.41970 3.42003 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 18221.53918 12937.29282 5284.24636 496.27149 0.27774 0.17475 5.86949 5.86949 334392.59084 301847.23481 148438.57952 109038.21870 133646.52045 28642.26524 4080.21756 4080.21756 4100.52651 18867.17055 81835.48909 7244.87799 + 2754.48644 765.21941 4625.41851 4625.41851 1982.48909 54.16370 4.12173 100.00000 -105.21233 1518.96096 463.52813 0.02176 0.00000 0.74787 1259.57293 240.91819 2774.97389 2774.97389 2419.60605 2729.97256 1118.68018 1.02700 254.91559 22.22240 1158.10252 5457.74687 16350.45488 473.30943 0.07542 13.25950 0.16779 1.03345 -2226.68547 4.03786 3.54213 4.03430 4.04777 3.55321 3.55321 3.55497 3.55626 3.55497 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2178.68786 1459.72087 718.96699 72.83231 0.25894 0.19782 8.61939 8.61939 37841.51298 31975.87159 15724.68590 11550.84983 14157.70457 5340.27831 1144.70093 1144.70093 1178.58997 2095.53092 25251.67717 19508.99810 24989.18544 25365.38427 25368.38741 4808.52341 5742.67907 146.46754 5596.21153 1582.74800 6391.27140 52379.05858 1336.69665 51042.36193 -17923.76616 20755.99823 3.94576 4.18190 3.93440 3.93440 3.84680 3.97930 3.84696 18860.40577 677.65168 3974.35493 3974.35493 1852.97189 3974.35493 6504.97850 27204.71774 5591.95628 46634.69531 46634.69531 18737.12399 252.73952 4.05258 100.00000 147.92085 12608.05693 6129.06706 0.02176 0.00000 0.16463 7395.38991 2410.12412 27085.76935 27085.76935 26245.06227 27373.29955 6748.73387 1.02700 2788.02121 273.41251 7213.84255 57311.43975 24076.22005 4372.52495 0.05377 18.59637 0.14651 0.94413 3130.55724 4.03213 4.13968 4.03266 4.03258 3.87976 3.87976 3.91064 3.90877 3.91064 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 23834.93815 16446.10733 7388.83082 -465.16402 0.91832 0.21592 9.10358 9.10358 368530.20704 295085.74581 145113.50075 106595.72250 130652.78924 56078.17482 7056.34762 7056.34762 7094.89416 19623.82788 12143.19777 2723.70015 16202.14292 16202.14292 8239.48434 104.82455 4.10525 100.00000 187.23672 5172.10120 3067.38314 0.02176 0.00000 0.55484 3836.80917 982.40426 12098.86766 12098.86766 11346.15511 12206.25723 3383.15833 1.02700 1392.06827 91.47838 3586.71801 28842.68386 25473.48143 4589.19723 0.05348 18.69898 0.13004 0.92571 3962.62785 4.05482 4.20836 4.05523 4.05517 3.91145 3.91145 3.94103 3.93992 3.94103 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 10363.75085 7150.98809 3212.76276 -174.70633 0.48598 0.20937 8.52113 8.52113 164769.96398 129659.12263 63762.10800 46837.59909 57408.14751 28221.91451 3531.12864 3531.12864 3542.38790 8773.02102 939.20749 913.30036 21.58988 402.45445 424.31215 4108.72494 3.87951 3.87951 185.21120 398.40502 6310.46709 1280.79228 23777.39809 23777.39809 4564.79280 70.73190 4.10827 100.00000 128.99675 2826.09433 1738.69847 0.02176 0.00000 0.56895 1896.90535 1244.50729 6280.06432 6280.06432 6340.96757 6349.86803 1633.61656 1.02700 639.26138 88.74340 1783.50975 14559.48465 16125.62011 2561.02023 0.05609 17.82917 0.14234 0.99370 2730.05266 4.18996 3.94079 4.19156 4.19162 3.83143 3.83143 3.86075 3.85843 3.86075 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 5096.46028 3414.62839 1681.83189 -117.37747 0.43122 0.19148 9.67630 9.67630 92454.86936 70777.46446 34806.03787 25567.39887 31337.57994 14246.12340 1734.62427 1734.62427 1753.10698 4740.26056 1714.05588 139.03709 1479.91715 1479.91715 1189.55449 14.44967 3.82688 100.00000 862.62827 357.59661 831.95788 0.02176 0.00000 9.25925 216.98486 105.50638 1698.11455 1698.11455 1202.31306 1730.03298 161.15121 1.02700 232.94532 13.69504 192.58691 4153.40648 54086.71673 752.99151 0.06065 16.48799 0.17580 1.06586 18256.43329 3.75977 3.49163 3.76667 3.76667 2.89841 2.89841 3.02555 3.02362 3.02555 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1096.80668 625.17981 471.62687 -48.23134 0.09611 0.16831 2.62369 2.62369 23898.56641 18716.24705 9204.03703 6760.99034 8286.84515 4064.00574 176.00206 176.00206 176.64557 1265.96931 3.79899 3.58065 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4872.26096 5210.97785 1.07755 3.37448 3.93051 3.93051 3.98744 0.16691 656.06179 4187.54876 4187.54876 2038.18309 11202.43183 3066.72414 16555.80155 16555.80155 7770.64451 135.89478 4.19468 100.00000 228.26403 4865.95724 2904.68726 0.02176 0.00000 0.85628 3519.72479 936.41590 11166.51389 11166.51389 10259.37117 11248.57272 3724.74889 1.02700 1267.19271 185.53441 4043.35542 26101.99434 60186.97047 3262.25332 0.05512 18.14207 0.13262 0.88273 4830.91885 4.19114 4.11449 4.19226 4.19233 3.80418 3.80418 3.84231 3.82855 3.84231 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 9322.95527 6432.83914 2890.11613 -138.00799 0.25639 0.19770 8.92256 8.92256 154086.19395 122471.35496 60227.39937 44241.11552 54225.67629 25540.15890 3851.19136 3851.19136 4007.43747 8239.75173 2528.89543 700.08570 3326.28322 3326.28322 1723.30751 28.91242 4.31444 100.00000 209.07683 910.25754 813.04998 0.02176 0.00000 1.63522 820.30210 177.36661 2510.02975 2510.02975 2472.80738 2548.35741 847.58057 1.02700 285.87013 14.55315 886.76299 6589.30370 25803.45536 427.45618 0.06400 15.62595 0.11809 1.18232 4424.84589 4.29901 3.30168 4.30495 4.31623 3.50669 3.50669 3.50864 3.51238 3.50864 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2295.44077 1583.85413 711.58664 -66.19284 0.15528 0.20924 6.24796 6.24796 34688.35434 26738.25205 13148.99623 9658.83082 11838.68506 6447.49975 832.80070 832.80070 867.89730 1835.52914 25605.27467 2519.57199 31573.20682 31573.20682 18621.02380 413.13100 4.39725 100.00000 -1006.14149 5366.68328 13254.34051 0.02176 0.00000 1.00000 3033.87990 1817.47420 25753.57437 25753.57437 20942.69229 25451.62177 3662.67204 1.02700 2645.04458 222.53401 4042.43835 29916.34732 152999.50124 6891.32939 0.08153 12.26542 0.24965 1.04811 -21293.70910 4.30459 3.44405 4.30003 4.30644 3.49592 3.49592 3.51237 3.51203 3.51237 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 19125.21810 13578.90485 5546.31324 520.88357 0.28206 0.17475 5.86949 5.86949 341749.22365 308487.87047 151704.22656 111437.05826 136586.74236 29272.39443 4169.98230 4169.98230 4190.73805 19282.24783 85894.03789 7404.26523 + 2815.08511 782.05423 4854.81149 4854.81149 2026.10383 55.35530 4.23302 100.00000 -110.43023 1552.37808 473.72574 0.02176 0.00000 0.74787 1287.28352 252.86629 2836.02328 2836.02328 2539.60398 2790.03192 1143.29113 1.02700 260.52373 22.71129 1183.58076 5577.81875 16350.45488 496.78273 0.07542 13.25950 0.16779 1.03345 -2337.11570 4.14689 3.63777 4.14322 4.15706 3.64915 3.64915 3.65096 3.65228 3.65096 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2286.73770 1532.11426 754.62344 76.44435 0.26275 0.19782 8.61939 8.61939 38674.02649 32679.34039 16070.62881 11804.96839 14469.17391 5457.76503 1169.88434 1169.88434 1204.51893 2141.63254 25807.21378 19938.19584 26228.49896 25923.42243 25926.49164 4914.31087 5869.01794 149.68983 5719.32812 1617.56843 6531.87930 53533.96125 1366.08378 52167.87747 -18812.67732 21212.37637 4.05230 4.29481 4.04063 4.04063 3.95066 4.08674 3.95083 19275.33448 692.56000 4061.79070 4061.79070 1893.73725 4061.79070 6648.08795 27803.22122 5714.97925 48947.49614 48947.49614 19149.34050 258.29979 4.16200 100.00000 155.25683 12885.43404 6263.90647 0.02176 0.00000 0.16463 7558.08840 2529.65181 27681.65597 27681.65597 27546.65975 27975.51183 6897.20593 1.02700 2849.35765 279.42758 7372.54700 58572.32999 24076.22005 4589.37593 0.05377 18.59638 0.14651 0.94413 3285.81408 4.14100 4.25145 4.14154 4.14146 3.98452 3.98452 4.01622 4.01431 4.01622 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 25017.00794 17261.73549 7755.27246 -488.23336 0.93221 0.21592 9.10358 9.10358 376637.88360 301577.62880 148305.99610 108940.82717 133527.14910 57311.91030 7211.58719 7211.58718 7250.98175 20055.55075 12410.34798 2783.62152 17005.67190 17005.67190 8420.75291 107.13069 4.21609 100.00000 196.52254 5285.88737 3134.86553 0.02176 0.00000 0.55484 3921.21892 1031.12561 12365.04261 12365.04261 11908.85626 12474.79475 3457.58778 1.02700 1422.69376 93.49090 3665.62577 29477.23228 25473.48143 4816.79385 0.05348 18.69898 0.13004 0.92571 4159.15039 4.16430 4.32198 4.16472 4.16466 4.01706 4.01706 4.04744 4.04630 4.04744 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 10877.73065 7505.63415 3372.09650 -183.37071 0.49334 0.20937 8.52113 8.52113 168394.90535 132511.62182 65164.87364 47868.02573 58671.12610 28842.80038 3608.81343 3608.81343 3620.32040 8966.02711 959.87004 933.39296 22.06486 411.30844 433.64702 4312.49303 3.98426 3.98426 189.28584 407.16993 6449.29729 1308.96970 24956.61424 24956.61424 4665.21819 72.28800 4.21920 100.00000 135.39421 2888.26837 1776.94982 0.02176 0.00000 0.56895 1938.63725 1306.22738 6418.22566 6418.22566 6655.44148 6489.56505 1669.55610 1.02700 653.32512 90.69576 1822.74694 14879.79777 16125.62011 2688.03146 0.05609 17.82917 0.14234 0.99370 2865.44687 4.30309 4.04719 4.30473 4.30479 3.93488 3.93488 3.96499 3.96260 3.96499 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 5349.21411 3583.97345 1765.24065 -123.19868 0.43756 0.19148 9.67630 9.67630 94488.87759 72334.56786 35571.77030 26129.88135 32027.00634 14559.54014 1772.78599 1772.78598 1791.67531 4844.54613 1751.76509 142.09591 1553.31216 1553.31216 1215.72468 14.76756 3.93021 100.00000 905.40945 365.46374 850.26094 0.02176 0.00000 9.25925 221.75852 110.73886 1735.47305 1735.47305 1261.94056 1768.09369 164.69653 1.02700 238.07012 13.99633 196.82382 4244.78200 54086.71673 790.33537 0.06065 16.48799 0.17580 1.06586 19161.84274 3.86129 3.58590 3.86837 3.86837 2.97666 2.97666 3.10724 3.10525 3.10724 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1151.20170 656.18497 495.01673 -50.62332 0.09731 0.16831 2.62369 2.62369 24424.33479 19128.00427 9406.52574 6909.73205 8469.15565 4153.41403 179.87410 179.87410 180.53177 1293.82060 3.90156 3.67733 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 4979.45065 5325.61931 1.07755 3.46559 4.03664 4.03664 4.09510 0.16691 670.49515 4279.67479 4279.67478 2083.02309 11448.88521 3134.19204 17376.86989 17376.86989 7941.59860 138.88447 4.30793 100.00000 239.58455 4973.00825 2968.59035 0.02176 0.00000 0.85628 3597.15870 982.85651 11412.17706 11412.17706 10768.17437 11496.04119 3806.69333 1.02700 1295.07093 189.61617 4132.30920 26676.24204 60186.97047 3424.04149 0.05512 18.14207 0.13262 0.88273 5070.50340 4.30430 4.22558 4.30545 4.30552 3.90689 3.90689 3.94606 3.93192 3.94606 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 9785.31786 6751.86933 3033.44853 -144.85236 0.26027 0.19770 8.92256 8.92256 157476.09014 125165.72335 61552.40146 45214.41955 55418.64054 26102.04382 3935.91752 3935.91752 4095.60105 8421.02605 2584.53110 715.48758 3491.24690 3491.24690 1761.22026 29.54849 4.43093 100.00000 219.44578 930.28319 830.93707 0.02176 0.00000 1.63522 838.34874 186.16293 2565.25037 2565.25037 2595.44378 2604.42124 866.22733 1.02700 292.15927 14.87332 906.27176 6734.27186 25803.45536 448.65544 0.06400 15.62595 0.11809 1.18232 4644.29167 4.41508 3.39082 4.42118 4.43277 3.60137 3.60137 3.60337 3.60722 3.60337 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2409.28085 1662.40378 746.87706 -69.47561 0.15763 0.20924 6.24796 6.24796 35451.49943 27326.49328 13438.27399 9871.32499 12099.13599 6589.34638 851.12231 851.12231 886.99104 1875.91068 26168.59042 2575.00255 33139.04827 33139.04827 19030.68611 422.21988 4.51598 100.00000 -1056.04007 5484.75026 13545.93585 0.02176 0.00000 1.00000 3100.62522 1907.61000 26320.15271 26320.15271 21981.32406 26011.55716 3743.25078 1.02700 2703.23553 227.42975 4131.37194 30574.50988 152999.50124 7233.09795 0.08153 12.26542 0.24965 1.04811 -22349.74916 4.42081 3.53704 4.41613 4.42271 3.59031 3.59031 3.60721 3.60686 3.60721 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 20073.71406 14252.33699 5821.37707 546.71627 0.28645 0.17475 5.86949 5.86949 349267.70231 315274.60004 155041.71779 113888.67226 139591.64911 29916.38648 4261.72186 4261.72186 4282.93424 19706.45683 90153.86634 7567.15898 + 2877.01695 799.25941 5095.58099 5095.58099 2070.67809 56.57312 4.34731 100.00000 -115.90690 1586.53038 484.14771 0.02176 0.00000 0.74787 1315.60375 265.40694 2898.41576 2898.41576 2665.55309 2851.41259 1168.44352 1.02700 266.25525 23.21094 1209.61953 5700.53217 16350.45488 521.42017 0.07542 13.25950 0.16779 1.03345 -2453.02260 4.25885 3.73599 4.25509 4.26930 3.74768 3.74768 3.74953 3.75089 3.74953 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2400.14615 1608.09792 792.04823 80.23553 0.26661 0.19782 8.61939 8.61939 39524.85527 33398.28550 16424.18246 12064.67756 14787.49557 5577.83645 1195.62178 1195.62178 1231.01833 2188.74839 26374.97219 20376.83592 27529.27500 26493.73743 26496.87416 5022.42565 5998.13627 152.98300 5845.15327 1653.15492 6675.58057 54714.04101 1396.11924 53317.92177 -19745.67314 21678.81765 4.16171 4.41077 4.14973 4.14973 4.05733 4.19708 4.05750 19699.39162 707.79632 4151.15004 4151.15004 1935.39945 4151.15005 6794.34581 28414.89177 5840.70873 51374.99800 51374.99800 19570.62578 263.98238 4.27437 100.00000 162.95664 13168.91344 6401.71234 0.02176 0.00000 0.16463 7724.36626 2655.10735 28290.65208 28290.65208 28912.80865 28590.97277 7048.94439 1.02700 2912.04348 285.57498 7534.74295 59860.95870 24076.22005 4816.98141 0.05377 18.59638 0.14651 0.94413 3448.77072 4.25280 4.36624 4.25337 4.25328 4.09210 4.09210 4.12466 4.12270 4.12466 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 26257.70130 18117.81391 8139.88740 -512.44681 0.94631 0.21592 9.10358 9.10358 384923.92849 308212.33314 151568.72630 111337.52412 136464.74484 58572.78748 7370.24202 7370.24202 7410.50327 20496.77155 12683.37549 2844.86117 17849.05111 17849.05111 8606.00937 109.48756 4.32993 100.00000 206.26887 5402.17683 3203.83254 0.02176 0.00000 0.55484 4007.48569 1082.26325 12637.07340 12637.07340 12499.46402 12749.24009 3533.65467 1.02700 1453.99300 95.54770 3746.26949 30125.74050 25473.48143 5055.67790 0.05348 18.69899 0.13004 0.92571 4365.41927 4.27673 4.43868 4.27717 4.27711 4.12552 4.12552 4.15672 4.15555 4.15672 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 11417.20077 7877.86853 3539.33223 -192.46480 0.50080 0.20937 8.52113 8.52113 172099.59528 135426.87596 66598.50010 48921.12174 59961.89020 29477.34562 3688.20729 3688.20729 3699.96741 9163.27933 980.98717 953.92759 22.55029 420.35722 443.18724 4526.36678 4.09183 4.09183 193.45013 416.12766 6591.18176 1337.76702 26194.31243 26194.31243 4767.85294 73.87834 4.33311 100.00000 142.10895 2951.81024 1816.04270 0.02176 0.00000 0.56895 1981.28725 1371.00841 6559.42655 6559.42655 6985.51141 6632.33541 1706.28632 1.02700 667.69827 92.69106 1862.84735 15207.15767 16125.62011 2821.34168 0.05609 17.82917 0.14234 0.99370 3007.55583 4.41928 4.15646 4.42096 4.42102 4.04112 4.04112 4.07204 4.06959 4.07204 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 5614.50300 3761.71701 1852.78599 -129.30860 0.44398 0.19148 9.67630 9.67630 96567.63394 73925.92751 36354.34884 26704.73844 32731.60011 14879.85199 1811.78726 1811.78726 1831.09215 4951.12598 1790.30390 145.22201 1630.34711 1630.34711 1242.47060 15.09245 4.03633 100.00000 950.31232 373.50393 868.96667 0.02176 0.00000 9.25925 226.63720 116.23084 1773.65343 1773.65343 1324.52524 1806.99173 168.31985 1.02700 243.30766 14.30425 201.15394 4338.16776 54086.71673 829.53126 0.06065 16.48799 0.17580 1.06586 20112.15506 3.96554 3.68272 3.97281 3.97282 3.05703 3.05703 3.19114 3.18910 3.19114 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1208.29439 688.72781 519.56659 -53.13394 0.09853 0.16831 2.62369 2.62369 24961.67007 19548.82014 9613.46919 7061.74608 8655.47697 4244.78928 183.83133 183.83133 184.50347 1322.28461 4.00691 3.77662 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5088.99851 5442.78287 1.07755 3.55916 4.14562 4.14562 4.20566 0.16691 685.24603 4373.82758 4373.82758 2128.84958 11700.76055 3203.14423 18238.65828 18238.65828 8116.31367 141.93992 4.42425 100.00000 251.46651 5082.41437 3033.89930 0.02176 0.00000 0.85628 3676.29615 1031.60029 11663.24483 11663.24483 11302.21115 11748.95397 3890.44054 1.02700 1323.56248 193.78772 4223.21995 27263.12307 60186.97047 3593.85339 0.05512 18.14207 0.13262 0.88273 5321.96991 4.42051 4.33967 4.42170 4.42177 4.01238 4.01238 4.05260 4.03808 4.05260 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 10270.61086 7086.72150 3183.88936 -152.03616 0.26420 0.19770 8.92256 8.92256 160940.56397 127919.36781 62906.55358 46209.13626 56637.84999 26676.29015 4022.50766 4022.50766 4185.70423 8606.28842 2641.39076 731.22830 3664.39178 3664.39178 1799.96709 30.19856 4.55057 100.00000 230.32898 950.74941 849.21767 0.02176 0.00000 1.63522 856.79240 195.39550 2621.68585 2621.68585 2724.16220 2661.71848 885.28432 1.02700 298.58677 15.20053 926.20973 6882.42924 25803.45536 470.90606 0.06400 15.62595 0.11809 1.18232 4874.62065 4.53429 3.48237 4.54055 4.55246 3.69860 3.69860 3.70066 3.70461 3.70066 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2528.76671 1744.84903 783.91768 -72.92118 0.16001 0.20924 6.24796 6.24796 36231.43368 27927.67582 13733.91587 10088.49402 12365.31684 6734.31358 869.84699 869.84699 906.50483 1917.18062 26744.29911 2631.65257 34782.54606 34782.54606 19449.36099 431.50871 4.63791 100.00000 -1108.41331 5605.41470 13843.94629 0.02176 0.00000 1.00000 3168.83894 2002.21600 26899.19577 26899.19577 23071.46573 26583.81112 3825.60225 1.02700 2762.70669 232.43321 4222.26208 31247.15179 152999.50124 7591.81617 0.08153 12.26542 0.24965 1.04811 -23458.16247 4.54017 3.63254 4.53536 4.54213 3.68725 3.68725 3.70460 3.70424 3.70460 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 21069.24973 14959.16731 6110.08242 573.83011 0.29091 0.17475 5.86949 5.86949 356951.58744 322210.63757 158452.63379 116394.22174 142662.66378 30574.54637 4355.47970 4355.47970 4377.15874 20139.99843 94624.95670 7733.63639 + 2940.31129 816.84311 5348.29121 5348.29121 2116.23298 57.81773 4.46468 100.00000 -121.65519 1621.43403 494.79895 0.02176 0.00000 0.74787 1344.54701 278.56953 2962.18087 2962.18087 2797.74852 2914.14364 1194.14926 1.02700 272.11286 23.72158 1236.23114 5825.94525 16350.45488 547.27948 0.07542 13.25951 0.16779 1.03345 -2574.67779 4.37384 3.83686 4.36998 4.38458 3.84886 3.84886 3.85077 3.85216 3.85077 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2519.17899 1687.84992 831.32907 84.21474 0.27052 0.19782 8.61939 8.61939 40394.40226 34133.04739 16785.51428 12330.10033 15112.82030 5700.54941 1221.92544 1221.92544 1258.10072 2236.90079 26955.22128 20825.12607 28894.56172 27076.59935 27079.80509 5132.91896 6130.09520 156.34862 5973.74658 1689.52431 6822.44327 55919.87252 1426.81713 54493.05539 -20724.93995 22155.54140 4.27408 4.52986 4.26177 4.26177 4.16688 4.31040 4.16705 20132.77801 723.36783 4242.47530 4242.47530 1977.97822 4242.47530 6943.82134 29040.01906 5969.20425 53922.88937 53922.88937 20001.17932 269.78999 4.38978 100.00000 171.03831 13458.62938 6542.54994 0.02176 0.00000 0.16463 7894.30223 2786.78472 28913.04611 28913.04611 30346.71032 29219.97384 7204.02108 1.02700 2976.10841 291.85763 7700.50721 61177.93618 24076.22005 5055.87476 0.05377 18.59638 0.14651 0.94413 3619.80903 4.36763 4.48413 4.36821 4.36812 4.20259 4.20259 4.23603 4.23401 4.23603 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 27559.92560 19016.34867 8543.57693 -537.86109 0.96063 0.21592 9.10358 9.10358 393392.26583 314993.00089 154903.23653 113786.94837 139466.96766 59861.40352 7532.38726 7532.38726 7573.53425 20947.69923 12962.40961 2907.44808 18734.25685 18734.25685 8795.34148 111.89629 4.44683 100.00000 216.49857 5521.02466 3274.31682 0.02176 0.00000 0.55484 4095.65033 1135.93701 12915.08887 12915.08887 13119.36237 13029.72322 3611.39503 1.02700 1485.98083 97.64975 3828.68738 30788.51564 25473.48143 5306.40916 0.05348 18.69899 0.13004 0.92571 4581.91784 4.39220 4.55852 4.39266 4.39259 4.23691 4.23691 4.26895 4.26775 4.26895 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 11983.42536 8268.56350 3714.86186 -202.00990 0.50838 0.20937 8.52113 8.52113 175885.78823 138406.26566 68063.66634 49997.38586 61281.05109 30125.85073 3769.34781 3769.34780 3781.36665 9364.87112 1002.56888 974.91399 23.04639 429.60507 452.93736 4750.84739 4.20231 4.20231 197.70603 425.28247 6736.18768 1367.19788 27493.39302 27493.39302 4872.74565 75.50366 4.45011 100.00000 149.15670 3016.75003 1855.99562 0.02176 0.00000 0.56895 2024.87554 1439.00219 6703.73386 6703.73386 7331.95083 6778.24671 1743.82460 1.02700 682.38762 94.73027 1903.82998 15541.71938 16125.62011 2961.26328 0.05609 17.82917 0.14234 0.99370 3156.71253 4.53860 4.26869 4.54032 4.54039 4.15023 4.15023 4.18199 4.17947 4.18199 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 5892.94863 3948.27559 1944.67305 -135.72153 0.45050 0.19148 9.67630 9.67630 98692.12285 75552.29705 37154.14409 27292.24237 33451.69493 15207.21065 1851.64656 1851.64656 1871.37615 5060.05060 1829.69057 148.41690 1711.20254 1711.20254 1269.80494 15.42448 4.14531 100.00000 997.44210 381.72102 888.08393 0.02176 0.00000 9.25925 231.62322 121.99519 1812.67379 1812.67379 1390.21374 1846.74553 172.02289 1.02700 248.66042 14.61895 205.57933 4433.60799 54086.71673 870.67103 0.06065 16.48799 0.17580 1.06586 21109.59716 4.07261 3.78215 4.08008 4.08008 3.13957 3.13957 3.27730 3.27520 3.27730 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1268.21854 722.88457 545.33397 -55.76906 0.09975 0.16831 2.62369 2.62369 25510.82671 19978.89395 9824.96540 7217.10441 8845.89737 4338.17479 187.87562 187.87562 188.56255 1351.37484 4.11509 3.87859 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5200.95642 5562.52403 1.07755 3.65526 4.25756 4.25756 4.31922 0.16691 700.32144 4470.05174 4470.05174 2175.68424 11958.17715 3273.61336 19143.18620 19143.18620 8294.87248 145.06260 4.54370 100.00000 263.93774 5194.22743 3100.64505 0.02176 0.00000 0.85628 3757.17462 1082.76147 11919.83608 11919.83608 11862.73295 12007.43082 3976.03018 1.02700 1352.68083 198.05105 4316.13074 27862.91537 60186.97047 3772.08693 0.05512 18.14207 0.13262 0.88273 5585.90765 4.53987 4.45685 4.54108 4.54116 4.12071 4.12071 4.16202 4.14711 4.16202 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 10779.97148 7438.18033 3341.79116 -159.57624 0.26820 0.19770 8.92256 8.92256 164481.25613 130733.59241 64290.49704 47225.73673 57883.88204 27263.16985 4111.00279 4111.00278 4277.78967 8795.62655 2699.50132 747.31531 3846.12360 3846.12360 1839.56634 30.86293 4.67343 100.00000 241.75191 971.66589 867.90045 0.02176 0.00000 1.63522 875.64182 205.08594 2679.36291 2679.36291 2859.26429 2720.27625 904.76057 1.02700 305.15567 15.53494 946.58633 7033.84601 25803.45536 494.26017 0.06400 15.62595 0.11809 1.18232 5116.37256 4.65672 3.57640 4.66315 4.67537 3.79847 3.79847 3.80058 3.80464 3.80058 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2654.17835 1831.38306 822.79529 -76.53763 0.16243 0.20924 6.24796 6.24796 37028.52642 28542.08436 14036.06186 10310.44077 12637.35367 6882.47003 888.98362 888.98362 926.44792 1959.35849 27332.67338 2689.54890 36507.55146 36507.55146 19877.24670 441.00190 4.76313 100.00000 -1163.38395 5728.73376 14148.51295 0.02176 0.00000 1.00000 3238.55336 2101.51389 27490.97777 27490.97777 24215.67188 27168.65466 3909.76546 1.02700 2823.48620 237.54673 4315.15180 31934.59160 152999.50124 7968.32466 0.08153 12.26542 0.24965 1.04811 -24621.54642 4.66276 3.73062 4.65782 4.66476 3.78680 3.78680 3.80462 3.80426 3.80462 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 22114.15799 15701.05218 6413.10581 602.28864 0.29544 0.17475 5.86949 5.86949 364804.51797 329299.26786 161938.58991 118954.89328 145801.24074 31247.18578 4451.30020 4451.30020 4473.45618 20583.07795 99317.78630 7903.77630 + 3004.99811 834.81365 5613.53433 5613.53433 2162.79008 59.08972 4.58523 100.00000 -127.68856 1657.10556 505.68452 0.02176 0.00000 0.74787 1374.12703 292.38490 3027.34882 3027.34882 2936.50004 2978.25476 1220.42053 1.02700 278.09934 24.24346 1263.42822 5954.11738 16350.45488 574.42126 0.07542 13.25951 0.16779 1.03345 -2702.36635 4.49193 3.94046 4.48797 4.50296 3.95278 3.95278 3.95474 3.95617 3.95474 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2644.11514 1771.55714 872.55799 88.39128 0.27450 0.19782 8.61939 8.61939 41283.07925 34883.97403 17154.79540 12601.36239 15445.30217 5825.96205 1248.80779 1248.80779 1285.77893 2286.11254 27548.23584 21283.27861 30327.55846 27672.28423 27675.56049 5245.84312 6264.95723 159.78829 6105.16893 1726.69382 6972.53694 57152.04122 1458.19188 55693.84933 -21752.77251 22642.77197 4.38948 4.65216 4.37684 4.37684 4.27938 4.42678 4.27956 20575.69890 739.28191 4335.80971 4335.80971 2021.49372 4335.80971 7096.58533 29678.89915 6100.52668 56597.14086 56597.14086 20441.20504 275.72537 4.50831 100.00000 179.52078 13754.71907 6686.48596 0.02176 0.00000 0.16463 8067.97679 2924.99251 29549.13279 29549.13279 31851.72491 29862.81293 7362.50946 1.02700 3041.58276 298.27849 7869.91828 62523.88612 24076.22005 5306.61579 0.05377 18.59638 0.14651 0.94413 3799.32981 4.48556 4.60520 4.48615 4.48606 4.31606 4.31606 4.35040 4.34833 4.35040 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 28926.73240 19959.44537 8967.28704 -564.53577 0.97516 0.21592 9.10358 9.10358 402046.90607 321922.84325 158311.10595 116290.25992 142535.23934 61178.36866 7698.09969 7698.09969 7740.15192 21408.54735 13247.58247 2971.41190 19663.36348 19663.36348 8988.83889 114.35800 4.56690 100.00000 227.23560 5642.48714 3346.35175 0.02176 0.00000 0.55484 4185.75459 1192.27266 13199.22068 13199.22068 13770.00396 13316.37699 3690.84568 1.02700 1518.67239 99.79804 3912.91846 31465.87156 25473.48143 5569.57519 0.05348 18.69899 0.13004 0.92571 4809.15344 4.51079 4.68160 4.51126 4.51119 4.35130 4.35130 4.38421 4.38298 4.38421 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 12577.73130 8678.63460 3899.09670 -212.02837 0.51607 0.20937 8.52113 8.52113 179755.27727 141451.20189 69561.06621 51097.32777 62629.23350 30788.62285 3852.27341 3852.27341 3864.55667 9570.89792 1024.62538 996.36208 23.55341 439.05638 462.90198 4986.46089 4.31578 4.31578 202.05556 434.63868 6884.38374 1397.27621 28856.90021 28856.90021 4979.94600 77.16474 4.57026 100.00000 156.55398 3083.11850 1896.82750 0.02176 0.00000 0.56895 2069.42278 1510.36806 6851.21593 6851.21593 7695.57156 6927.36806 1782.18872 1.02700 697.40014 96.81433 1945.71421 15883.64134 16125.62011 3108.12415 0.05609 17.82918 0.14234 0.99370 3313.26651 4.66114 4.38394 4.66291 4.66298 4.26229 4.26229 4.29490 4.29232 4.29490 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 6185.20350 4144.08635 2041.11715 -142.45250 0.45712 0.19148 9.67630 9.67630 100863.35044 77214.44671 37971.53483 27892.67139 34187.63184 15541.77115 1892.38276 1892.38276 1912.54641 5171.37155 1869.94374 151.68207 1796.06791 1796.06791 1297.74064 15.76382 4.25723 100.00000 1046.90924 390.11887 907.62176 0.02176 0.00000 9.25925 236.71893 128.04542 1852.55259 1852.55259 1459.15999 1887.37391 175.80739 1.02700 254.13095 14.94056 210.10207 4531.14788 54086.71673 913.85108 0.06065 16.48799 0.17580 1.06586 22156.50641 4.18257 3.88427 4.19024 4.19025 3.22434 3.22434 3.36579 3.36363 3.36579 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1331.11456 758.73530 572.37926 -58.53487 0.10100 0.16831 2.62369 2.62369 26072.06479 20418.42939 10041.11453 7375.88062 9040.50701 4433.61477 192.00888 192.00888 192.71092 1381.10505 4.22620 3.98331 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5315.37740 5684.89950 1.07755 3.75395 4.37251 4.37251 4.43584 0.16691 715.72850 4568.39283 4568.39283 2223.54927 12221.25691 3345.63282 20092.57327 20092.57327 8477.35958 148.25397 4.66638 100.00000 277.02746 5308.50037 3168.85921 0.02176 0.00000 0.85628 3839.83242 1136.45993 12182.07234 12182.07234 12451.05327 12271.59416 4063.50280 1.02700 1382.43980 202.40817 4411.08557 28475.90298 60186.97047 3959.15979 0.05512 18.14207 0.13262 0.88273 5862.93511 4.66244 4.57718 4.66369 4.66377 4.23197 4.23197 4.27439 4.25908 4.27439 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 11314.59333 7807.06940 3507.52393 -167.49027 0.27226 0.19770 8.92256 8.92256 168099.84344 133609.72993 65704.88723 48264.70239 59157.32678 27862.96085 4201.44480 4201.44480 4371.90100 8989.13013 2758.89032 763.75624 4036.86823 4036.86823 1880.03678 31.54191 4.79962 100.00000 253.74135 993.04253 886.99425 0.02176 0.00000 1.63522 894.90593 215.25697 2738.30886 2738.30886 3001.06663 2780.12230 924.66529 1.02700 311.86909 15.87671 967.41122 7188.59386 25803.45536 518.77251 0.06400 15.62596 0.11809 1.18232 5370.11391 4.78245 3.67296 4.78905 4.80161 3.90103 3.90103 3.90320 3.90736 3.90320 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2785.80966 1922.20866 863.60099 -80.33344 0.16489 0.20924 6.24796 6.24796 37843.15517 29170.00988 14344.85506 10537.27035 12915.37531 7033.88588 908.54124 908.54124 946.82977 2002.46428 27933.99188 2748.71894 38318.10677 38318.10677 20314.54591 450.70393 4.89174 100.00000 -1221.08081 5854.76583 14459.78007 0.02176 0.00000 1.00000 3309.80149 2205.73636 28095.77897 28095.77897 25416.62378 27766.36475 3995.78025 1.02700 2885.60286 242.77276 4410.08509 32637.15489 152999.50124 8363.50571 0.08153 12.26542 0.24965 1.04811 -25842.62723 4.78865 3.83135 4.78358 4.79071 3.88905 3.88905 3.90735 3.90697 3.90735 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 23210.88742 16479.73008 6731.15735 632.15854 0.30004 0.17475 5.86949 5.86949 372830.21290 336543.84792 165501.23701 121571.89956 149008.86636 31934.62327 4549.22875 4549.22875 4571.87217 21035.90524 104243.35206 8077.65929 + 3071.10803 853.17954 5891.93192 5891.93192 2210.37144 60.38969 4.70903 100.00000 -134.02114 1693.56186 516.80957 0.02176 0.00000 0.74787 1404.35781 306.88544 3093.95046 3093.95046 3082.13281 3043.77633 1247.26977 1.02700 284.21752 24.77681 1291.22362 6085.10926 16350.45488 602.90910 0.07542 13.25951 0.16779 1.03345 -2836.38749 4.61322 4.04685 4.60914 4.62454 4.05951 4.05951 4.06152 4.06299 4.06152 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2775.24737 1859.41574 915.83163 92.77496 0.27853 0.19782 8.61939 8.61939 42191.30711 35651.42106 17532.20070 12878.59222 15785.09864 5954.13375 1276.28155 1276.28155 1314.06605 2336.40696 28154.29671 21751.51050 31831.62323 28281.07417 28284.42251 5361.25160 6402.78621 163.30363 6239.48258 1764.68107 7125.93267 58411.14372 1490.25825 56920.88547 -22831.57939 23140.73880 4.50799 4.77777 4.49501 4.49501 4.39493 4.54631 4.39511 21028.36404 755.54610 4431.19747 4431.19747 2065.96655 4431.19747 7252.71013 30331.83459 6234.73820 59404.01916 59404.01916 20890.91131 281.79133 4.63003 100.00000 188.42394 14057.32274 6833.58858 0.02176 0.00000 0.16463 8245.47218 3070.05457 30199.21337 30199.21337 33431.37919 30519.79448 7524.48459 1.02700 3108.49754 304.84062 8043.05639 63899.44594 24076.22005 5569.79206 0.05377 18.59638 0.14651 0.94413 3987.75375 4.60667 4.72954 4.60728 4.60718 4.43259 4.43259 4.46786 4.46573 4.46786 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 30361.32462 20949.31399 9412.01062 -592.53336 0.98992 0.21592 9.10358 9.10358 410891.94788 329005.14206 161793.94845 118848.64430 145671.01296 62524.30661 7867.45780 7867.45780 7910.43517 21879.53415 13539.02913 3036.78293 20638.54823 20638.54823 9186.59325 116.87388 4.69020 100.00000 238.50512 5766.62179 3419.97145 0.02176 0.00000 0.55484 4277.84115 1251.40222 13489.60338 13489.60338 14452.91346 13609.33713 3772.04424 1.02700 1552.08317 101.99360 3999.00262 32158.12907 25473.48143 5845.79267 0.05348 18.69899 0.13004 0.92571 5047.65856 4.63258 4.80800 4.63306 4.63299 4.46879 4.46879 4.50259 4.50132 4.50259 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 13201.51123 9109.04276 4092.46848 -222.54371 0.52387 0.20937 8.52113 8.52113 183709.89493 144563.12669 71091.40886 52221.46839 64007.07592 31465.97585 3937.02338 3937.02338 3949.57687 9781.45732 1047.16713 1018.28204 24.07159 448.71562 473.08581 5233.75941 4.43230 4.43230 206.50078 444.20072 7035.84010 1428.01628 30288.02916 30288.02916 5089.50475 78.86236 4.69366 100.00000 164.31812 3150.94707 1938.55768 0.02176 0.00000 0.56895 2114.95006 1585.27325 7001.94260 7001.94260 8077.22569 7079.77008 1821.39685 1.02700 712.74294 98.94425 1988.51990 16233.08548 16125.62011 3262.26845 0.05609 17.82918 0.14234 0.99370 3477.58463 4.78699 4.50231 4.78881 4.78888 4.37737 4.37737 4.41087 4.40821 4.41087 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 6491.95245 4349.60814 2142.34430 -149.51729 0.46383 0.19148 9.67630 9.67630 103082.34497 78913.16364 38806.90816 28506.30984 34939.75934 15883.69192 1934.01516 1934.01516 1954.62241 5285.14157 1911.08248 155.01907 1885.14209 1885.14209 1326.29092 16.11062 4.37217 100.00000 1098.82965 398.70149 927.58943 0.02176 0.00000 9.25925 241.92674 134.39571 1893.30873 1893.30873 1531.52556 1928.89611 179.67515 1.02700 259.72183 15.26925 214.72431 4630.83363 54086.71673 959.17261 0.06065 16.48799 0.17580 1.06586 23255.33606 4.29550 3.98915 4.30338 4.30338 3.31140 3.31140 3.45666 3.45445 3.45666 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1397.12985 796.36402 600.76584 -61.43785 0.10226 0.16831 2.62369 2.62369 26645.65009 20867.63459 10262.01893 7538.14991 9239.39806 4531.15442 196.23307 196.23307 196.95056 1411.48932 4.34031 4.09086 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5432.31564 5809.96722 1.07755 3.85531 4.49057 4.49057 4.55560 0.16691 731.47452 4668.89742 4668.89742 2272.46733 12490.12442 3419.23670 21089.04424 21089.04424 8663.86140 151.51556 4.79237 100.00000 290.76636 5425.28732 3238.57408 0.02176 0.00000 0.85628 3924.30869 1192.82152 12450.07779 12450.07779 13068.55073 12541.56909 4152.89982 1.02700 1412.85346 206.86115 4508.12940 29102.37620 60186.97047 4155.51034 0.05512 18.14207 0.13262 0.88273 6153.70147 4.78833 4.70076 4.78961 4.78969 4.34623 4.34623 4.38980 4.37407 4.38980 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 11875.72921 8194.25316 3681.47605 -175.79678 0.27638 0.19770 8.92256 8.92256 171798.03957 136549.14243 67150.39399 49326.52529 60458.78728 28475.94720 4293.87654 4293.87654 4468.08277 9186.89078 2819.58588 780.55887 4237.07266 4237.07266 1921.39757 32.23583 4.92921 100.00000 266.32540 1014.88945 906.50812 0.02176 0.00000 1.63522 914.59385 225.93242 2798.55163 2798.55163 3149.90151 2841.28496 945.00792 1.02700 318.73021 16.22600 988.69426 7346.74609 25803.45536 544.50051 0.06400 15.62596 0.11809 1.18232 5636.43931 4.91157 3.77213 4.91836 4.93125 4.00635 4.00635 4.00858 4.01286 4.00858 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 2923.96909 2017.53867 906.43042 -84.31750 0.16739 0.20924 6.24796 6.24796 38675.70570 29811.74976 14660.44170 10769.09018 13199.51342 7188.63285 928.52914 928.52914 967.66001 2046.51839 28548.53939 2809.19073 40218.45475 40218.45475 20761.46568 460.61942 5.02381 100.00000 -1281.63908 5983.57062 14777.89507 0.02176 0.00000 1.00000 3382.61709 2315.12764 28713.88578 28713.88578 26677.13569 28377.22446 4083.68737 1.02700 2949.08609 248.11376 4507.10691 33355.17439 152999.50124 8778.28537 0.08153 12.26542 0.24965 1.04811 -27124.26631 4.91795 3.93479 4.91274 4.92006 3.99405 3.99405 4.01285 4.01246 4.01285 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 24362.00805 17297.02572 7064.98233 663.50981 0.30472 0.17475 5.86949 5.86949 381032.47304 343947.80866 169142.26232 124246.47995 152287.05970 32637.18439 4649.31173 4649.31173 4672.45331 21498.69474 109413.19630 8255.36770 + 3138.67237 871.94948 6184.13636 6184.13636 2258.99959 61.71826 4.83618 100.00000 -140.66779 1730.82021 528.17938 0.02176 0.00000 0.74787 1435.25367 322.10511 3162.01733 3162.01733 3234.98809 3110.73938 1274.70969 1.02700 290.47031 25.32190 1319.63053 6218.98292 16350.45488 632.80977 0.07542 13.25951 0.16779 1.03345 -2977.05528 4.73777 4.15611 4.73359 4.74940 4.16912 4.16912 4.17118 4.17269 4.17118 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 2912.88298 1951.63159 961.25138 97.37604 0.28262 0.19782 8.61939 8.61939 43119.51596 36435.75190 17917.90892 13161.92110 16132.37063 6085.12520 1304.35973 1304.35973 1342.97549 2387.80785 28773.69092 22230.04348 33410.28058 28903.25747 28906.67948 5479.19908 6543.64744 166.89631 6376.75112 1803.50403 7282.70311 59697.78822 1523.03131 58174.75691 -23963.88862 23649.67655 4.62971 4.90677 4.61638 4.61638 4.51359 4.66906 4.51378 21490.98780 772.16811 4528.68376 4528.68376 2111.41780 4528.68377 7412.26967 30999.13461 6371.90236 62350.10176 62350.10176 21350.51112 287.99073 4.75504 100.00000 197.76863 14366.58368 6983.92745 0.02176 0.00000 0.16463 8426.87248 3222.31084 30863.59572 30863.59572 35089.37483 31191.22960 7690.02316 1.02700 3176.88445 311.54711 8220.00354 65305.26709 24076.22005 5846.02030 0.05377 18.59639 0.14651 0.94413 4185.52238 4.73105 4.85724 4.73167 4.73158 4.55227 4.55227 4.58849 4.58631 4.58849 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 31867.06399 21988.27416 9878.78983 -621.91945 1.00489 0.21592 9.10358 9.10358 419931.58009 336243.25137 165353.41345 121463.31311 148875.77356 63899.85477 8040.54178 8040.54178 8084.46466 22360.88268 13836.88762 3103.59212 21662.09628 21662.09628 9388.69819 119.44510 4.81684 100.00000 250.33354 5893.48741 3495.21079 0.02176 0.00000 0.55484 4371.95360 1313.46426 13786.37450 13786.37450 15169.69117 13908.74239 3855.02917 1.02700 1586.22898 104.23745 4086.98063 32865.61599 25473.48143 6135.70888 0.05348 18.69899 0.13004 0.92571 5297.99210 4.75766 4.93782 4.75815 4.75808 4.58945 4.58945 4.62416 4.62286 4.62416 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 13856.22691 9560.79657 4295.43034 -233.58054 0.53180 0.20937 8.52113 8.52113 187751.51403 147743.51379 72655.41903 53370.34009 65415.23085 32158.23050 4023.63785 4023.63785 4036.46752 9996.64904 1070.20479 1040.68423 24.60116 458.58736 483.49370 5493.32244 4.55197 4.55197 211.04379 453.97313 7190.62850 1459.43262 31790.13352 31790.13352 5201.47380 80.59733 4.82039 100.00000 172.46731 3220.26787 1981.20593 0.02176 0.00000 0.56895 2161.47894 1663.89328 7155.98526 7155.98526 8477.80758 7235.52494 1861.46756 1.02700 728.42327 101.12102 2032.26732 16590.21730 16125.62011 3424.05737 0.05609 17.82918 0.14234 0.99370 3650.05194 4.91624 4.62387 4.91811 4.91818 4.49556 4.49556 4.52996 4.52723 4.52996 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 6813.91430 4565.32259 2248.59171 -156.93245 0.47065 0.19148 9.67630 9.67630 105350.15731 80649.25232 39660.65969 29133.44833 35708.43364 16233.13491 1976.56347 1976.56347 1997.62408 5401.41452 1953.12628 158.42949 1978.63382 1978.63382 1355.46930 16.46505 4.49022 100.00000 1153.32501 407.47291 947.99639 0.02176 0.00000 9.25925 247.24913 141.06093 1934.96150 1934.96150 1607.48003 1971.33180 183.62800 1.02700 265.43571 15.60518 219.44824 4732.71244 54086.71673 1006.74181 0.06065 16.48799 0.17580 1.06586 24408.66107 4.41148 4.09686 4.41957 4.41957 3.40081 3.40081 3.54999 3.54772 3.54999 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1466.41910 835.85889 630.56021 -64.48480 0.10354 0.16831 2.62369 2.62369 27231.85425 21326.72231 10487.78323 7703.98912 9442.66471 4630.83993 200.55020 200.55020 201.28347 1442.54205 4.45749 4.20131 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5551.82652 5937.78643 1.07755 3.95940 4.61181 4.61181 4.67860 0.16691 747.56695 4771.61311 4771.61310 2322.46159 12764.90702 3494.45987 22134.93419 22134.93419 8854.46625 154.84890 4.92177 100.00000 305.18663 5544.64358 3309.82267 0.02176 0.00000 0.85628 4010.64344 1251.97830 12723.97936 12723.97936 13716.67237 12817.48347 4244.26357 1.02700 1443.93622 211.41209 4607.30820 29742.63173 60186.97047 4361.59870 0.05512 18.14207 0.13262 0.88273 6458.88810 4.91762 4.82769 4.91893 4.91902 4.46358 4.46358 4.50833 4.49217 4.50833 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 12464.69407 8600.63891 3864.05516 -184.51524 0.28056 0.19770 8.92256 8.92256 175577.59594 139553.22198 68627.70188 50411.70828 61788.87991 29102.41921 4388.34177 4388.34177 4566.38054 9389.00217 2881.61673 797.73116 4447.20601 4447.20601 1963.66829 32.94502 5.06230 100.00000 279.53354 1037.21701 926.45128 0.02176 0.00000 1.63522 934.71491 237.13731 2860.11973 2860.11973 3306.11771 2903.79320 965.79808 1.02700 325.74227 16.58297 1010.44552 7508.37760 25803.45536 571.50447 0.06400 15.62596 0.11809 1.18232 5915.97286 5.04418 3.87398 5.05116 5.06439 4.11452 4.11452 4.11681 4.12121 4.11681 1.00001 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3068.98039 2117.59647 951.38392 -88.49914 0.16992 0.20924 6.24796 6.24796 39526.57229 30467.60791 14982.97125 11006.01004 13489.90256 7346.78421 948.95677 948.95677 988.94852 2091.54170 29176.60693 2870.99289 42213.04858 42213.04858 21218.21769 470.75304 5.15946 100.00000 -1345.20068 6115.20910 15103.00859 0.02176 0.00000 1.00000 3457.03463 2429.94407 29345.59094 29345.59094 28000.16141 29001.52307 4173.52845 1.02700 3013.96596 253.57226 4606.26321 34088.99013 152999.50124 9213.63560 0.08153 12.26542 0.24965 1.04811 -28469.46699 5.05073 4.04103 5.04538 5.05290 4.10189 4.10189 4.12119 4.12080 4.12119 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 25570.21735 18154.85432 7415.36302 696.41591 0.30946 0.17475 5.86949 5.86949 389415.18281 351514.65644 172863.39013 126979.90108 155637.37325 33355.20187 4751.59654 4751.59654 4775.24722 21971.66561 114839.43377 8436.98570 + 3207.72313 891.13236 6490.83239 6490.83239 2308.69755 63.07606 4.96675 100.00000 -147.64406 1768.89823 539.79932 0.02176 0.00000 0.74787 1466.82923 338.07959 3231.58168 3231.58168 3395.42407 3179.17561 1302.75329 1.02700 296.86065 25.87898 1348.66238 6355.80177 16350.45488 664.19334 0.07542 13.25951 0.16779 1.03345 -3124.69934 4.86569 4.26833 4.86140 4.87764 4.28168 4.28168 4.28380 4.28535 4.28380 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3057.34448 2048.42080 1008.92368 102.20530 0.28677 0.19782 8.61939 8.61939 44068.14538 37237.33802 18312.10270 13451.48321 16487.28260 6218.99846 1333.05563 1333.05563 1372.52093 2440.33956 29406.71179 22719.10418 35067.22985 29539.12881 29542.62610 5599.74140 6687.60760 170.56803 6517.03958 1843.18110 7442.92250 61012.59489 1556.52652 59456.06836 -25152.35358 24169.82516 4.75471 5.03926 4.74102 4.74102 4.63546 4.79512 4.63565 21963.78929 789.15580 4628.31475 4628.31475 2157.86896 4628.31476 7575.33952 31681.11521 6512.08414 65442.29237 65442.29237 21820.22212 294.32652 4.88343 100.00000 207.57677 14682.64835 7137.57377 0.02176 0.00000 0.16463 8612.26358 3382.11811 31542.59448 31542.59448 36829.59710 31877.43630 7859.20358 1.02700 3246.77588 318.40114 8400.84352 66742.01535 24076.22005 6135.94780 0.05377 18.59639 0.14651 0.94413 4393.09914 4.85878 4.98839 4.85943 4.85933 4.67518 4.67518 4.71238 4.71014 4.71238 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 33447.47899 23078.76051 10368.71848 -652.76292 1.02009 0.21592 9.10358 9.10358 429170.08372 343640.59899 168991.18664 124135.50460 152151.03886 65305.66459 8217.43361 8217.43361 8262.32279 22852.82090 14141.29899 3171.87111 22736.40616 22736.40616 9595.24945 122.07289 4.94690 100.00000 262.74858 6023.14406 3572.10538 0.02176 0.00000 0.55484 4468.13653 1378.60420 14089.67459 14089.67459 15922.01676 14214.73456 3939.83977 1.02700 1621.12600 106.53068 4176.89416 33588.66739 25473.48143 6440.00320 0.05348 18.69899 0.13004 0.92571 5560.74068 4.88612 5.07114 4.88662 4.88655 4.71336 4.71336 4.74901 4.74767 4.74901 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 14543.41256 10034.95467 4508.45789 -245.16473 0.53984 0.20937 8.52113 8.52113 191882.04860 150993.86938 74253.83741 54544.48696 66854.36517 32865.71466 4112.15784 4112.15784 4125.26976 10216.57497 1093.74929 1063.57927 25.14239 468.67627 494.13055 5765.75825 4.67488 4.67488 215.68675 463.96054 7348.82225 1491.54012 33366.73323 33366.73323 5315.90616 82.37047 4.95054 100.00000 181.02065 3291.11373 2024.79244 0.02176 0.00000 0.56895 2209.03145 1746.41239 7313.41685 7313.41685 8898.25592 7394.70641 1902.41982 1.02700 744.44858 103.34568 2076.97718 16955.20591 16125.62011 3593.87005 0.05609 17.82918 0.14234 0.99370 3831.07259 5.04898 4.74872 5.05090 5.05097 4.61694 4.61694 4.65227 4.64947 4.65227 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 7151.84353 4791.73517 2360.10836 -164.71536 0.47756 0.19148 9.67630 9.67630 107667.86145 82423.53493 40533.19375 29774.38386 36494.01877 16590.26559 2020.04784 2020.04784 2041.57178 5520.24549 1996.09503 161.91494 2076.76217 2076.76217 1385.28961 16.82729 4.61146 100.00000 1210.52300 416.43731 968.85230 0.02176 0.00000 9.25925 252.68861 148.05670 1977.53063 1977.53063 1687.20139 2014.70108 187.66781 1.02700 271.27529 15.94849 224.27610 4836.83257 54086.71673 1056.67016 0.06065 16.48799 0.17580 1.06586 25619.18407 4.53059 4.20747 4.53890 4.53890 3.49263 3.49263 3.64584 3.64351 3.64584 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1539.14468 877.31247 661.83221 -67.68286 0.10483 0.16831 2.62369 2.62369 27830.95489 21795.90995 10718.51434 7873.47679 9650.40322 4732.71852 204.96230 204.96230 205.71170 1474.27794 4.57785 4.31475 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5673.96664 6068.41767 1.07755 4.06631 4.73633 4.73633 4.80493 0.16691 764.01341 4876.58854 4876.58854 2373.55571 13045.73482 3571.33795 23232.69400 23232.69400 9049.26440 158.25557 5.05466 100.00000 320.32205 5666.62567 3382.63873 0.02176 0.00000 0.85628 4098.87755 1314.06891 13003.90676 13003.90676 14396.93695 13099.46796 4337.63732 1.02700 1475.70280 216.06315 4708.66892 30396.97277 60186.97047 4577.90780 0.05512 18.14207 0.13262 0.88273 6779.21015 5.05039 4.95803 5.05174 5.05183 4.58410 4.58410 4.63005 4.61346 4.63005 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 13082.86804 9027.17895 4055.68909 -193.66609 0.28480 0.19770 8.92256 8.92256 179440.30246 142623.39123 70137.51053 51520.76528 63148.23455 29742.67354 4484.88524 4484.88524 4666.84086 9595.56001 2945.01227 815.28123 4667.76073 4667.76073 2006.86897 33.66981 5.19898 100.00000 293.39673 1060.03577 946.83320 0.02176 0.00000 1.63522 955.27862 248.89790 2923.04233 2923.04233 3470.08129 2967.67661 987.04563 1.02700 332.90860 16.94780 1032.67531 7673.56493 25803.45536 599.84765 0.06400 15.62596 0.11809 1.18232 6209.36958 5.18038 3.97857 5.18754 5.20113 4.22562 4.22562 4.22797 4.23248 4.22797 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3221.18339 2222.61654 998.56685 -92.88816 0.17249 0.20924 6.24796 6.24796 40396.15791 31137.89493 15312.59644 11248.14213 13786.68026 7508.41486 969.83381 969.83381 1010.70538 2137.55553 29818.49195 2934.15470 44306.56229 44306.56229 21685.01824 481.10960 5.29876 100.00000 -1411.91455 6249.74363 15435.27461 0.02176 0.00000 1.00000 3533.08935 2550.45470 29991.19361 29991.19361 29388.80127 29639.55625 4265.34603 1.02700 3080.27317 259.15084 4707.60095 34838.94966 152999.50124 9670.57660 0.08153 12.26542 0.24965 1.04811 -29881.38154 5.18710 4.15014 5.18160 5.18933 4.21264 4.21264 4.23247 4.23206 4.23247 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 26838.34657 19055.22607 7783.12050 730.95396 0.31428 0.17475 5.86949 5.86949 397982.31212 359247.97479 176666.38272 129773.45744 159061.39367 34089.01573 4856.13161 4856.13161 4880.30261 22455.04184 120534.78003 8622.59928 + 3278.29300 910.73726 6812.73870 6812.73870 2359.48887 64.46374 5.10086 100.00000 -154.96632 1807.81397 551.67490 0.02176 0.00000 0.74787 1499.09946 354.84631 3302.67644 3302.67644 3563.81671 3249.11744 1331.41385 1.02700 303.39158 26.44832 1378.33294 6495.63060 16350.45488 697.13334 0.07542 13.25951 0.16779 1.03345 -3279.66566 4.99707 4.38357 4.99266 5.00933 4.39729 4.39729 4.39947 4.40106 4.39947 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3208.97040 2150.01017 1058.96023 107.27407 0.29098 0.19782 8.61939 8.61939 45037.64462 38056.55902 18714.96875 13747.41569 16850.00262 6355.81690 1362.38283 1362.38283 1402.71638 2494.02697 30053.65911 23218.92421 36806.35386 30188.98930 30192.56354 5722.93564 6834.73490 174.32052 6660.41437 1883.73106 7606.66671 62356.19624 1590.75966 60765.43658 -26399.75927 24701.43000 4.88309 5.17532 4.86903 4.86903 4.76061 4.92459 4.76081 22446.99240 806.51722 4730.13763 4730.13763 2205.34206 4730.13763 7741.99690 32378.09939 6655.34992 68687.83707 68687.83707 22300.26676 300.80170 5.01528 100.00000 217.87133 15005.66645 7294.60031 0.02176 0.00000 0.16463 8801.73328 3549.85086 32236.53119 32236.53119 38656.12394 32578.73953 8032.10597 1.02700 3318.20491 325.40596 8585.66199 68210.37113 24076.22005 6440.25396 0.05377 18.59639 0.14651 0.94413 4610.97047 4.98997 5.12307 4.99063 4.99053 4.80141 4.80141 4.83962 4.83731 4.83962 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 35106.27308 24223.32844 10882.94464 -685.13604 1.03553 0.21592 9.10358 9.10358 438611.83394 351200.68817 172708.99079 126866.48427 155498.35996 66742.40182 8398.21705 8398.21705 8444.09379 23355.58178 14452.40740 3241.65224 23863.99537 23863.99537 9806.34482 124.75849 5.08046 100.00000 275.77933 6155.65316 3650.69166 0.02176 0.00000 0.55484 4566.43549 1446.97469 14399.64727 14399.64727 16711.65317 14527.45856 4026.51620 1.02700 1656.79075 108.87435 4268.78578 34327.62569 25473.48143 6759.38868 0.05348 18.69899 0.13004 0.92571 5836.52001 5.01805 5.20806 5.01856 5.01848 4.84062 4.84062 4.87723 4.87586 4.87723 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 15264.67848 10532.62816 4732.05032 -257.32343 0.54801 0.20937 8.52113 8.52113 196103.45479 154315.73274 75887.42098 55744.46505 68325.16043 33588.76336 4202.62527 4202.62527 4216.02564 10441.33928 1117.81176 1086.97800 25.69552 478.98714 505.00142 6051.70523 4.80110 4.80110 220.43186 474.16766 7510.49625 1524.35398 35021.52281 35021.52281 5432.85604 84.18262 5.08420 100.00000 189.99819 3363.51819 2069.33785 0.02176 0.00000 0.56895 2257.63012 1833.02396 7474.31194 7474.31194 9339.55598 7557.38986 1944.27304 1.02700 760.82644 105.61928 2122.67065 17328.22418 16125.62011 3772.10443 0.05609 17.82918 0.14234 0.99370 4021.07078 5.18530 4.87693 5.18727 5.18735 4.74159 4.74159 4.77788 4.77500 4.77788 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 7506.53202 5029.37646 2477.15556 -172.88425 0.48457 0.19148 9.67630 9.67630 110036.55500 84236.85174 41424.92354 30429.41996 37296.88676 16955.25310 2064.48887 2064.48887 2086.48634 5641.69073 2040.00910 165.47706 2179.75710 2179.75710 1415.76597 17.19749 4.73597 100.00000 1270.55767 425.59893 990.16704 0.02176 0.00000 9.25925 258.24775 155.39943 2021.03628 2021.03628 1770.87644 2059.02448 191.79650 1.02700 277.24334 16.29936 229.21018 4943.24332 54086.71673 1109.07465 0.06065 16.48800 0.17580 1.06586 26889.74174 4.65292 4.32107 4.66145 4.66145 3.58693 3.58693 3.74428 3.74188 3.74428 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1615.47702 920.82190 694.65512 -71.03952 0.10614 0.16831 2.62369 2.62369 28443.23573 22275.41972 10954.32153 8046.69319 9862.71198 4836.83843 209.47147 209.47147 210.23736 1506.71202 4.70145 4.43124 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5798.79384 6201.92279 1.07755 4.17610 4.86421 4.86421 4.93466 0.16691 780.82170 4983.87343 4983.87343 2425.77391 13332.74084 3649.90734 24384.89610 24384.89610 9248.34812 161.73720 5.19113 100.00000 336.20810 5791.29137 3457.05674 0.02176 0.00000 0.85628 4189.05281 1379.23884 13289.99256 13289.99256 15110.93856 13387.65610 4433.06529 1.02700 1508.16824 220.81654 4812.25959 31065.70922 60186.97047 4804.94454 0.05512 18.14207 0.13262 0.88273 7115.41825 5.18675 5.09190 5.18814 5.18823 4.70787 4.70787 4.75506 4.73803 4.75506 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 13731.69972 9474.87281 4256.82691 -203.27077 0.28911 0.19770 8.92256 8.92256 183387.98843 145761.10418 71680.53495 52654.22152 64537.49498 30397.01343 4583.55266 4583.55266 4769.51130 9806.66213 3009.80250 833.21741 4899.25363 4899.25363 2051.02007 34.41054 5.33935 100.00000 307.94744 1083.35654 967.66352 0.02176 0.00000 1.63522 976.29474 261.24174 2987.34923 2987.34923 3642.17649 3032.96546 1008.76062 1.02700 340.23258 17.32065 1055.39416 7842.38630 25803.45536 629.59650 0.06400 15.62596 0.11809 1.18232 6517.31702 5.32025 4.08600 5.32760 5.34156 4.33971 4.33971 4.34212 4.34676 4.34212 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3380.93474 2332.84497 1048.08977 -97.49486 0.17510 0.20924 6.24796 6.24796 41284.87437 31822.92826 15649.47339 11495.60113 14089.98706 7673.60136 991.17014 991.17014 1032.94088 2184.58165 30474.49843 2998.70607 46503.90170 46503.90170 22162.08839 491.69401 5.44183 100.00000 -1481.93703 6387.23792 15774.85047 0.02176 0.00000 1.00000 3610.81727 2676.94194 30650.99952 30650.99952 30846.30932 30291.62615 4359.18359 1.02700 3148.03915 264.85216 4811.16811 35605.40814 152999.50124 10150.17912 0.08153 12.26542 0.24965 1.04811 -31363.31857 5.32715 4.26220 5.32151 5.32945 4.32638 4.32638 4.34674 4.34632 4.34674 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 28169.36739 20000.25085 8169.11653 767.20488 0.31917 0.17475 5.86949 5.86949 406737.91818 367151.42604 180553.04109 132628.47201 162560.74249 34838.97351 4962.96645 4962.96645 4987.66921 22949.05236 126512.58126 8812.29637 + 3350.41541 930.77347 7150.60962 7150.60962 2411.39760 65.88194 5.23858 100.00000 -162.65172 1847.58586 563.81174 0.02176 0.00000 0.74787 1532.07963 372.44455 3375.33528 3375.33528 3740.56062 3320.59798 1360.70494 1.02700 310.06619 27.03018 1408.65625 6638.53563 16350.45488 731.70696 0.07542 13.25951 0.16779 1.03345 -3442.31739 5.13199 4.50193 5.12746 5.14458 4.51601 4.51601 4.51825 4.51989 4.51825 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3368.11606 2256.63777 1111.47830 112.59422 0.29525 0.19782 8.61939 8.61939 46028.47281 38893.80288 19126.69785 14049.85867 17220.70249 6495.64534 1392.35524 1392.35524 1433.57612 2548.89550 30714.83927 23729.74028 38631.72798 30853.14672 30856.79959 5848.84016 6985.09899 178.15557 6806.94341 1925.17313 7774.01329 63729.23756 1625.74686 62103.49070 -27709.02879 25244.74193 5.01493 5.31505 5.00049 5.00049 4.88915 5.05755 4.88935 22940.82598 824.26059 4834.20060 4834.20060 2253.85956 4834.20060 7912.32074 33090.41720 6801.76754 72094.34129 72094.34129 22790.87238 307.41934 5.15069 100.00000 228.67644 15335.79094 7455.08144 0.02176 0.00000 0.16463 8995.37131 3725.90214 32945.73451 32945.73451 40573.23555 33295.47143 8208.81221 1.02700 3391.20538 332.56489 8774.54645 69711.02983 24076.22005 6759.65188 0.05377 18.59639 0.14651 0.94413 4839.64691 5.12470 5.26140 5.12538 5.12528 4.93105 4.93105 4.97029 4.96792 4.97029 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 36847.33341 25424.66006 11422.67334 -719.11468 1.05119 0.21592 9.10358 9.10358 448261.30218 358927.09922 176508.58659 129657.54546 158919.32209 68210.74689 8582.97773 8582.97773 8629.86376 23869.40342 14770.36020 3312.96855 25047.50622 25047.50622 10022.08430 127.50318 5.21763 100.00000 289.45633 6291.07746 3731.00684 0.02176 0.00000 0.55484 4666.89701 1518.73594 14716.43934 14716.43934 17540.45081 14847.06248 4115.09951 1.02700 1693.24013 111.26959 4362.69902 35082.84084 25473.48143 7094.61377 0.05348 18.69899 0.13004 0.92571 6125.97634 5.15353 5.34868 5.15406 5.15398 4.97132 4.97132 5.00892 5.00751 5.00892 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 16021.71486 11054.98326 4966.73160 -270.08513 0.55630 0.20937 8.52113 8.52113 200417.73178 157710.67706 77556.94336 56970.84263 69828.31317 34327.71903 4295.08297 4295.08297 4308.77816 10671.04840 1142.40361 1110.89151 26.26082 489.52486 516.11144 6351.83347 4.93073 4.93073 225.28136 484.59935 7675.72708 1557.88975 36758.38003 36758.38003 5552.37881 86.03464 5.22148 100.00000 199.42096 3437.51555 2114.86326 0.02176 0.00000 0.56895 2307.29795 1923.93094 7638.74672 7638.74672 9802.74187 7723.65235 1987.04702 1.02700 777.56461 107.94291 2169.36938 17709.44876 16125.62011 3959.17815 0.05609 17.82918 0.14234 0.99370 4220.49173 5.32530 5.00861 5.32733 5.32741 4.86962 4.86962 4.90688 4.90393 4.90688 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 7878.81093 5278.80333 2600.00760 -181.45827 0.49169 0.19148 9.67630 9.67630 112457.35975 86090.06149 42336.27138 31098.86684 38117.41784 17328.27029 2109.90760 2109.90760 2132.38901 5765.80777 2084.88928 169.11756 2287.85997 2287.85997 1446.91280 17.57583 4.86384 100.00000 1333.56970 434.96210 1011.95070 0.02176 0.00000 9.25925 263.92920 163.10630 2065.49906 2065.49906 1858.70128 2104.32300 196.01603 1.02700 283.34269 16.65794 234.25280 5051.99508 54086.71673 1164.07809 0.06065 16.48800 0.17580 1.06586 28223.31144 4.77854 4.43774 4.78730 4.78731 3.68378 3.68378 3.84537 3.84291 3.84537 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1695.59498 966.48914 729.10584 -74.56265 0.10746 0.16831 2.62369 2.62369 29068.98674 22765.47869 11195.31648 8223.72035 10079.69153 4943.24898 214.07984 214.07984 214.86258 1539.85965 4.82839 4.55089 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 5926.36724 6338.36502 1.07755 4.28885 4.99555 4.99555 5.06790 0.16691 797.99977 5093.51859 5093.51859 2479.14091 13626.06099 3730.20526 25594.24050 25594.24050 9451.81167 165.29541 5.33129 100.00000 352.88200 5918.69972 3533.11195 0.02176 0.00000 0.85628 4281.21192 1447.64080 13582.37224 13582.37224 15860.35037 13682.18439 4530.59267 1.02700 1541.34793 225.67450 4918.12924 31749.15776 60186.97047 5043.24093 0.05512 18.14207 0.13262 0.88273 7468.30025 5.32679 5.22938 5.32822 5.32831 4.83498 4.83498 4.88345 4.86595 4.88345 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 14412.70957 9944.76961 4467.93996 -213.35178 0.29349 0.19770 8.92256 8.92256 187422.52342 148967.84677 73257.50589 53812.61379 65957.31913 31065.74875 4684.39077 4684.39077 4874.44050 10022.40849 3076.01813 851.54818 5142.22718 5142.22718 2096.14248 35.16758 5.48351 100.00000 323.21979 1107.19038 988.95211 0.02176 0.00000 1.63522 997.77322 274.19776 3053.07088 3053.07088 3822.80657 3099.69067 1030.95334 1.02700 347.71769 17.70170 1078.61282 8014.92168 25803.45536 660.82070 0.06400 15.62596 0.11809 1.18232 6840.53681 5.46389 4.19632 5.47145 5.48579 4.45688 4.45688 4.45936 4.46412 4.45936 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3548.60880 2448.54008 1100.06873 -102.33002 0.17775 0.20924 6.24796 6.24796 42193.14255 32523.03231 15993.76162 11748.50422 14399.96662 7842.42192 1012.97587 1012.97587 1055.66557 2232.64236 31144.93704 3064.67757 48810.21596 48810.21596 22649.65408 502.51127 5.58876 100.00000 -1555.43220 6527.75708 16121.89700 0.02176 0.00000 1.00000 3690.25521 2809.70218 31325.32116 31325.32116 32376.10102 30958.04158 4455.08558 1.02700 3217.29597 270.67890 4917.01376 36388.72857 152999.50124 10653.56705 0.08153 12.26542 0.24965 1.04811 -32918.75077 5.47099 4.37727 5.46519 5.47334 4.44319 4.44319 4.46411 4.46367 4.46411 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 29566.39884 20992.14319 8574.25565 805.25364 0.32414 0.17475 5.86949 5.86949 415686.14749 375228.75313 184525.20591 135546.29686 166137.07695 35605.43036 5072.15165 5072.15165 5097.39788 23453.93111 132786.84553 9006.16679 + 3424.12451 951.25048 7505.23692 7505.23692 2464.44832 67.33134 5.38002 100.00000 -170.71827 1888.23273 576.21559 0.02176 0.00000 0.74787 1565.78536 390.91557 3449.59262 3449.59262 3926.06996 3393.65110 1390.64043 1.02700 316.88764 27.62485 1439.64667 6784.58453 16350.45488 767.99523 0.07542 13.25951 0.16779 1.03345 -3613.03566 5.27055 4.62348 5.26590 5.28349 4.63795 4.63795 4.64024 4.64192 4.64024 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3535.15440 2368.55345 1166.60095 118.17822 0.29959 0.19782 8.61939 8.61939 47041.09920 39749.46608 19547.48498 14358.95540 17599.55774 6638.54999 1422.98704 1422.98704 1465.11478 2604.97114 31390.56538 24251.79430 40547.62969 31531.91560 31535.64883 5977.51458 7138.77108 182.07499 6956.69609 1967.52691 7945.04149 65132.37727 1661.50464 63470.87263 -29083.23021 25800.01745 5.15033 5.45856 5.13550 5.13550 5.02116 5.19411 5.02137 23445.52389 842.39431 4940.55296 4940.55296 2303.44444 4940.55296 8086.39171 33818.40600 6951.40635 75669.78767 75669.78767 23292.27131 314.18256 5.28976 100.00000 240.01741 15673.17816 7619.09314 0.02176 0.00000 0.16463 9193.26937 3910.68451 33670.54029 33670.54029 42585.42438 34027.97142 8389.40599 1.02700 3465.81186 339.88131 8967.58637 71244.70213 24076.22005 7094.89002 0.05377 18.59639 0.14651 0.94413 5079.66432 5.26307 5.40345 5.26376 5.26366 5.06419 5.06419 5.10449 5.10205 5.10449 1.00001 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 38674.73986 26685.57052 11989.16934 -754.77845 1.06710 0.21592 9.10358 9.10358 458123.05824 366823.49122 180391.77346 132510.00996 162415.54534 69711.39517 8771.80314 8771.80314 8819.72066 24394.52915 15095.30796 3385.85382 26289.71211 26289.71211 10242.57004 130.30825 5.35851 100.00000 303.81162 6429.48109 3813.08894 0.02176 0.00000 0.55484 4769.56870 1594.05613 15040.20084 15040.20084 18410.35183 15173.69768 4205.63165 1.02700 1730.49139 113.71751 4458.67835 35854.67050 25473.48143 7446.46400 0.05348 18.69899 0.13004 0.92571 6429.78797 5.29268 5.49309 5.29322 5.29314 5.10554 5.10554 5.14416 5.14271 5.14416 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 16816.29571 11603.24404 5213.05166 -283.47973 0.56472 0.20937 8.52113 8.52113 204826.92272 161180.31012 79263.19522 58224.20051 71364.53526 35082.93163 4389.57475 4389.57475 4403.57123 10905.81113 1167.53647 1135.33111 26.83856 500.29440 527.46589 6666.84626 5.06386 5.06386 230.23754 495.26053 7844.59299 1592.16331 38581.37493 38581.37493 5674.53108 87.92740 5.36246 100.00000 209.31104 3513.14085 2161.39022 0.02176 0.00000 0.56895 2358.05848 2019.34636 7806.79906 7806.79906 10288.89900 7893.57262 2030.76203 1.02700 794.67102 110.31765 2217.09548 18099.06019 16125.62011 4155.52961 0.05609 17.82918 0.14234 0.99370 4429.80277 5.46909 5.14384 5.47117 5.47125 5.00110 5.00110 5.03937 5.03633 5.03937 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 8269.55264 5540.60027 2728.95236 -190.45751 0.49891 0.19148 9.67630 9.67630 114931.42212 87984.04184 43267.66886 31783.04156 38956.00059 17709.49381 2156.32555 2156.32555 2179.30155 5892.65539 2130.75682 172.83814 2401.32408 2401.32408 1478.74487 17.96250 4.99516 100.00000 1399.70675 444.53126 1034.21361 0.02176 0.00000 9.25925 269.73564 171.19540 2110.94001 2110.94001 1950.88170 2150.61808 200.32838 1.02700 289.57623 17.02442 239.40636 5163.13937 54086.71673 1221.80937 0.06065 16.48800 0.17580 1.06586 29623.01818 4.90756 4.55756 4.91656 4.91657 3.78324 3.78324 3.94920 3.94667 3.94920 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1779.68630 1014.42119 765.26511 -78.26051 0.10880 0.16831 2.62369 2.62369 29708.50426 23266.31896 11441.61331 8404.64210 10301.44463 5052.00054 218.78959 218.78959 219.58955 1573.73653 4.95875 4.67376 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6056.74725 6477.80897 1.07755 4.40465 5.13043 5.13043 5.20473 0.16691 815.55575 5205.57594 5205.57594 2533.68198 13925.83417 3812.26973 26863.56113 26863.56113 9659.75142 168.93191 5.47524 100.00000 370.38283 6048.91104 3610.84038 0.02176 0.00000 0.85628 4375.39853 1519.43509 13881.18428 13881.18428 16646.92850 13983.19229 4630.26566 1.02700 1575.25756 230.63934 5026.32803 32447.64207 60186.97047 5293.35539 0.05512 18.14207 0.13262 0.88273 7838.68307 5.47062 5.37057 5.47208 5.47218 4.96553 4.96553 5.01530 4.99733 5.01530 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 15127.49341 10437.97046 4689.52295 -223.93274 0.29793 0.19770 8.92256 8.92256 191545.81808 152245.13766 74869.17017 54996.49067 67408.37938 31749.19620 4787.44731 4787.44731 4981.67813 10242.90127 3143.69049 870.28223 5397.25077 5397.25077 2142.25759 35.94126 5.63157 100.00000 339.24955 1131.54855 1010.70904 0.02176 0.00000 1.63522 1019.72421 287.79633 3120.23841 3120.23841 4012.39481 3167.88383 1053.63430 1.02700 355.36748 18.09114 1102.34229 8191.25277 25803.45536 693.59344 0.06400 15.62597 0.11809 1.18232 7179.78635 5.61142 4.30962 5.61917 5.63390 4.57722 4.57722 4.57976 4.58465 4.57976 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3724.59849 2569.97296 1154.62553 -107.40497 0.18044 0.20924 6.24796 6.24796 43121.39258 33238.53864 16345.62419 12006.97118 14716.76572 8014.95650 1035.26133 1035.26133 1078.89020 2281.76040 31830.12530 3132.10045 51230.90955 51230.90955 23147.94621 513.56651 5.73966 100.00000 -1632.57230 6671.36766 16476.57855 0.02176 0.00000 1.00000 3771.44079 2949.04654 32014.47787 32014.47787 33981.76121 31639.11814 4553.09741 1.02700 3288.07645 276.63384 5025.18800 37189.28190 152999.50124 11181.92000 0.08153 12.26542 0.24965 1.04811 -34551.32307 5.61870 4.49546 5.61275 5.62112 4.56316 4.56316 4.58464 4.58419 4.58464 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 31032.71467 22033.22743 8999.48724 845.18938 0.32919 0.17475 5.86949 5.86949 424831.23774 383483.78132 188584.75830 138528.31383 169792.09072 36388.74926 5183.73893 5183.73893 5209.54057 23969.91720 139372.27563 9204.30236 + 3499.45521 972.17797 7877.45160 7877.45160 2518.66615 68.81263 5.52528 100.00000 -179.18487 1929.77382 588.89233 0.02176 0.00000 0.74787 1600.23262 410.30263 3525.48362 3525.48362 4120.77945 3468.31139 1421.23450 1.02700 323.85917 28.23259 1471.31888 6933.84648 16350.45488 806.08319 0.07542 13.25951 0.16779 1.03345 -3792.22053 5.41286 4.74832 5.40808 5.42614 4.76317 4.76317 4.76553 4.76726 4.76553 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3710.47682 2486.01947 1224.45735 124.03915 0.30399 0.19782 8.61939 8.61939 48076.00334 40623.95387 19977.52942 14674.85225 17986.74781 6784.59852 1454.29274 1454.29274 1497.34729 2662.28045 32081.15746 24785.33349 42558.54862 32225.61738 32229.43274 6109.01983 7295.82396 186.08064 7109.74332 2010.81248 8119.83231 66566.28728 1698.04986 64868.23742 -30525.58377 26367.51879 5.28939 5.60594 5.27416 5.27416 5.15673 5.33435 5.15694 23961.32515 860.92698 5049.24507 5049.24507 2354.12019 5049.24507 8264.29223 34562.41055 7104.33721 79422.55471 79422.55471 23804.70101 321.09457 5.43259 100.00000 251.92083 16017.98790 7786.71311 0.02176 0.00000 0.16463 9395.52119 4104.63098 34411.29180 34411.29180 44697.40569 34776.58640 8573.97282 1.02700 3542.05968 347.35870 9164.87317 72812.11437 24076.22005 7446.75396 0.05377 18.59640 0.14651 0.94413 5331.58516 5.40517 5.54935 5.40589 5.40578 5.20092 5.20092 5.24231 5.23981 5.24231 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 40592.77471 28009.01456 12583.76014 -792.21093 1.08324 0.21592 9.10358 9.10358 468201.77247 374893.60375 184360.39039 135425.22866 165988.68546 71245.05735 8964.78271 8964.78271 9013.75442 24931.20767 15427.40456 3460.34257 27593.52395 27593.52395 10467.90646 133.17503 5.50319 100.00000 318.87886 6570.92960 3896.97686 0.02176 0.00000 0.55484 4874.49915 1673.11174 15371.08508 15371.08508 19323.39472 15507.51886 4298.15550 1.02700 1768.56218 116.21930 4556.76922 36643.48021 25473.48143 7815.76390 0.05348 18.69899 0.13004 0.92571 6748.66682 5.43558 5.64141 5.43614 5.43606 5.24339 5.24339 5.28305 5.28156 5.28305 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 17650.28299 12178.69527 5471.58772 -297.53862 0.57326 0.20937 8.52113 8.52113 209333.11571 164726.27506 81006.98459 59505.13225 72934.55421 35854.75881 4486.14534 4486.14534 4500.44975 11145.73865 1193.22226 1160.30838 27.42901 511.30087 539.07013 6997.48180 5.20058 5.20058 235.30277 506.15625 8017.17395 1627.19088 40494.77943 40494.77943 5799.37070 89.86180 5.50724 100.00000 219.69161 3590.42991 2208.94078 0.02176 0.00000 0.56895 2409.93574 2119.49381 7978.54855 7978.54855 10799.16660 8067.23112 2075.43878 1.02700 812.15377 112.74464 2265.87156 18497.24297 16125.62011 4361.61893 0.05609 17.82918 0.14234 0.99370 4649.49438 5.61675 5.28273 5.61889 5.61897 5.13613 5.13613 5.17543 5.17232 5.17543 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 8679.67279 5815.38077 2864.29201 -199.90306 0.50624 0.19148 9.67630 9.67630 117459.91380 89919.68973 44219.55707 32482.26810 39813.03215 18099.10421 2203.76468 2203.76468 2227.24616 6022.29366 2177.63344 176.64058 2520.41533 2520.41533 1511.27724 18.35767 5.13003 100.00000 1469.12380 454.31094 1056.96629 0.02176 0.00000 9.25925 275.66982 179.68566 2157.38067 2157.38067 2047.63372 2197.93165 204.73560 1.02700 295.94690 17.39895 244.67329 5276.72882 54086.71673 1282.40378 0.06065 16.48800 0.17580 1.06586 31092.14198 5.04007 4.68061 5.04931 5.04932 3.88539 3.88539 4.05583 4.05323 4.05583 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1867.94806 1064.73039 803.21766 -82.14176 0.11016 0.16831 2.62369 2.62369 30362.09114 23778.17770 11693.32867 8589.54413 10528.07629 5163.14464 223.60296 223.60296 224.42052 1608.35870 5.09264 4.79995 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6189.99562 6620.32070 1.07755 4.52358 5.26895 5.26895 5.34526 0.16691 833.49797 5320.09855 5320.09855 2589.42296 14232.20237 3896.13962 28195.83244 28195.83244 9872.26584 172.64841 5.62307 100.00000 388.75159 6181.98702 3690.27882 0.02176 0.00000 0.85628 4471.65725 1594.78995 14186.57017 14186.57017 17472.51618 14290.82236 4732.13145 1.02700 1609.91321 235.71340 5136.90719 33161.49294 60186.97047 5555.87403 0.05512 18.14207 0.13262 0.88273 8227.43466 5.61832 5.51558 5.61983 5.61992 5.09959 5.09959 5.15072 5.13226 5.15072 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 15877.72624 10955.63111 4922.09513 -235.03846 0.30243 0.19770 8.92256 8.92256 195759.82515 155594.52892 76516.29105 56206.41283 68891.36295 32447.67945 4892.77110 4892.77110 5091.27500 10468.24489 3212.85164 889.42843 5664.92200 5664.92200 2189.38724 36.73197 5.78362 100.00000 356.07429 1156.44261 1032.94463 0.02176 0.00000 1.63522 1042.15814 302.06930 3188.88361 3188.88361 4211.38550 3237.57724 1076.81425 1.02700 363.18556 18.48914 1126.59380 8371.46307 25803.45536 727.99151 0.06400 15.62597 0.11809 1.18232 7535.86064 5.76293 4.42598 5.77089 5.78602 4.70080 4.70080 4.70342 4.70844 4.70342 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 3909.31621 2697.42818 1211.88802 -112.73161 0.18317 0.20924 6.24796 6.24796 44070.06408 33969.78610 16705.22774 12271.12441 15040.53439 8191.28681 1058.03707 1058.03707 1102.62577 2331.95903 32530.38770 3201.00662 53771.65500 53771.65500 23657.20076 524.86497 5.89463 100.00000 -1713.53807 6818.13767 16839.06309 0.02176 0.00000 1.00000 3854.41244 3095.30153 32718.79602 32718.79602 35667.05249 32335.17838 4653.26550 1.02700 3360.41409 282.71978 5135.74208 38007.44729 152999.50124 11736.47608 0.08153 12.26542 0.24965 1.04811 -36264.86114 5.77041 4.61684 5.76429 5.77289 4.68637 4.68637 4.70842 4.70797 4.70842 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 32571.75096 23125.94319 9445.80777 887.10570 0.33432 0.17475 5.86949 5.86949 434177.51988 391920.42003 192733.62080 141575.93514 173527.51475 37189.30118 5297.78113 5297.78113 5324.15040 24497.25499 146284.30352 9406.79690 + 3576.44319 993.56588 8268.12589 8268.12589 2574.07678 70.32651 5.67446 100.00000 -188.07136 1972.22883 601.84795 0.02176 0.00000 0.74787 1635.43772 430.65118 3603.04422 3603.04422 4325.14537 3544.61420 1452.50165 1.02700 330.98407 28.85371 1503.68788 7086.39216 16350.45488 846.06007 0.07542 13.25951 0.16779 1.03345 -3980.29189 5.55900 4.87652 5.55410 5.57265 4.89178 4.89178 4.89420 4.89597 4.89420 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 3894.49419 2609.31111 1285.18308 130.19075 0.30846 0.19782 8.61939 8.61939 49133.67536 41517.68038 20417.03484 14997.69883 18382.45605 6933.86011 1486.28716 1486.28716 1530.28891 2720.85056 32786.94256 25330.61055 44669.19705 32934.58060 32938.47989 6243.41820 7456.33201 190.17441 7266.15760 2055.05033 8298.46853 68031.65343 1735.39979 66296.25364 -32039.46941 26947.51404 5.43221 5.75730 5.41657 5.41657 5.29596 5.47837 5.29618 24488.47403 879.86736 5160.32840 5160.32840 2405.91081 5160.32840 8446.10657 35322.78318 7260.63255 83361.43646 83361.43646 24328.40416 328.15865 5.57927 100.00000 264.41459 16370.38345 7958.02071 0.02176 0.00000 0.16463 9602.22255 4308.19603 35168.33982 35168.33982 46914.12859 35541.67090 8762.60013 1.02700 3619.98495 355.00059 9366.50028 74414.00883 24076.22005 7816.06823 0.05377 18.59640 0.14651 0.94413 5595.99975 5.55111 5.69918 5.55184 5.55174 5.34135 5.34135 5.38385 5.38128 5.38385 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 42605.93256 29398.09348 13207.83908 -831.49983 1.09963 0.21592 9.10358 9.10358 478502.21795 383141.25867 188416.31684 138404.58212 169640.43462 72812.45973 9162.00783 9162.00783 9212.05691 25479.69313 15766.80728 3536.47007 28961.99703 28961.99703 10698.20029 136.10488 5.65178 100.00000 334.69333 6715.48998 3982.71030 0.02176 0.00000 0.55484 4981.73808 1756.08803 15709.24878 15709.24878 20281.71906 15848.68410 4392.71487 1.02700 1807.47053 118.77612 4657.01809 37449.64351 25473.48143 8203.37885 0.05348 18.69899 0.13004 0.92571 7083.36015 5.58234 5.79372 5.58292 5.58283 5.38497 5.38497 5.42569 5.42417 5.42569 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 18525.63103 12782.68542 5742.94561 -312.29475 0.58193 0.20937 8.52113 8.52113 213938.44482 168350.25118 82789.13732 60814.24448 74539.11355 36643.56609 4584.84049 4584.84049 4599.45959 11390.94457 1219.47314 1185.83515 28.03244 522.54948 550.92967 7344.51488 5.34100 5.34100 240.47943 517.29168 8193.55168 1662.98907 42503.07730 42503.07730 5926.95679 91.83876 5.65594 100.00000 230.58699 3669.41933 2257.53746 0.02176 0.00000 0.56895 2462.95430 2224.60798 8154.07652 8154.07652 11334.74041 8244.71011 2121.09841 1.02700 830.02115 115.22502 2315.72071 18904.18569 16125.62011 4577.92903 0.05609 17.82918 0.14234 0.99370 4880.08137 5.76840 5.42536 5.77060 5.77068 5.27480 5.27480 5.31517 5.31197 5.31517 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 9110.13243 6103.78874 3006.34370 -209.81705 0.51367 0.19148 9.67630 9.67630 120044.03223 91897.92185 45192.38681 33196.87763 40688.91840 18497.28598 2252.24748 2252.24748 2276.24555 6154.78396 2225.54135 180.52667 2645.41280 2645.41280 1544.52532 18.76154 5.26854 100.00000 1541.98351 464.30578 1080.21954 0.02176 0.00000 9.25925 281.73455 188.59699 2204.84302 2204.84302 2149.18405 2246.28612 209.23978 1.02700 302.45773 17.78173 250.05610 5392.81722 54086.71673 1346.00331 0.06065 16.48800 0.17580 1.06586 32634.12549 5.17615 4.80699 5.18564 5.18565 3.99029 3.99029 4.16534 4.16267 4.16534 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 1960.58706 1117.53463 843.05244 -86.21550 0.11154 0.16831 2.62369 2.62369 31030.05693 24301.29733 11950.58177 8778.51400 10759.69385 5276.73390 228.52222 228.52222 229.35777 1643.74256 5.23014 4.92955 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6326.17546 6765.96768 1.07755 4.64571 5.41121 5.41121 5.48958 0.16691 851.83492 5437.14066 5437.14066 2646.39023 14545.31066 3981.85465 29594.17640 29594.17640 10089.45558 176.44667 5.77489 100.00000 408.03133 6317.99066 3771.46491 0.02176 0.00000 0.85628 4570.03366 1673.88195 14498.67455 14498.67455 18339.04806 14605.22028 4836.23829 1.02700 1645.33128 240.89909 5249.91909 33891.04843 60186.97047 5831.41202 0.05512 18.14207 0.13262 0.88273 8635.46599 5.77002 5.66450 5.77156 5.77166 5.23728 5.23728 5.28979 5.27083 5.28979 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 16665.16611 11498.96462 5166.20149 -246.69496 0.30701 0.19770 8.92256 8.92256 200066.54028 159017.60674 78199.64857 57442.95327 70406.97214 33161.52928 5000.41201 5000.41201 5203.28299 10698.54607 3283.53434 908.99585 5945.86811 5945.86811 2237.55373 37.54007 5.93978 100.00000 373.73343 1181.88433 1055.66940 0.02176 0.00000 1.63522 1065.08560 317.05012 3259.03902 3259.03902 4420.24493 3308.80390 1100.50415 1.02700 371.17564 18.89591 1151.37885 8555.63794 25803.45536 764.09552 0.06400 15.62597 0.11809 1.18232 7909.59407 5.91853 4.54548 5.92671 5.94224 4.82772 4.82772 4.83041 4.83557 4.83041 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 4103.19481 2831.20442 1271.99039 -118.32243 0.18594 0.20924 6.24796 6.24796 45039.60630 34717.12100 17072.74255 12541.08900 15371.42597 8371.49635 1081.31387 1081.31387 1126.88353 2383.26204 33246.05585 3271.42873 56438.40617 56438.40617 24177.65891 536.41199 6.05378 100.00000 -1798.51927 6968.13663 17209.52229 0.02176 0.00000 1.00000 3939.20947 3248.80990 33438.60916 33438.60916 37435.92410 33046.55194 4755.63729 1.02700 3434.34316 288.93961 5248.72835 38843.61219 152999.50124 12318.53481 0.08153 12.26542 0.24965 1.04811 -38063.38041 5.92621 4.74149 5.91993 5.92876 4.81290 4.81290 4.83555 4.83508 4.83555 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 34187.11420 24272.85109 9914.26311 931.10082 0.33952 0.17475 5.86949 5.86949 443729.42013 400542.66469 196973.75823 144690.60408 177345.11807 38007.46524 5414.33225 5414.33225 5441.28165 25036.19421 153539.12648 9613.74633 + 3655.12489 1015.42432 8678.17528 8678.17528 2630.70644 71.87369 5.82767 100.00000 -197.39857 2015.61784 615.08860 0.02176 0.00000 0.74787 1671.41733 452.00889 3682.31115 3682.31115 4539.64661 3622.59567 1484.45667 1.02700 338.26571 29.48849 1536.76899 7242.29381 16350.45488 888.01957 0.07542 13.25952 0.16779 1.03345 -4177.69047 5.70910 5.00819 5.70406 5.72311 5.02385 5.02385 5.02634 5.02816 5.02634 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 4087.63772 2738.71727 1348.92044 136.64743 0.31299 0.19782 8.61939 8.61939 50214.61612 42431.06886 20866.20937 15327.64803 18786.86987 7086.40544 1518.98546 1518.98546 1563.95525 2780.70921 33508.25492 25887.88369 46884.52097 33659.14099 33663.12608 6380.77332 7620.37123 194.35825 7426.01298 2100.26142 8481.03474 69529.17585 1773.57205 67755.60380 -33628.43468 27540.27727 5.57887 5.91274 5.56281 5.56281 5.43895 5.62629 5.43918 25027.22018 899.22443 5273.85557 5273.85556 2458.84082 5273.85557 8631.92082 36099.88401 7420.36638 87495.66310 87495.66310 24863.62878 335.37814 5.72991 100.00000 277.52797 16730.53170 8133.09707 0.02176 0.00000 0.16463 9813.47134 4521.85668 35942.04290 35942.04290 49240.78763 36323.58726 8955.37723 1.02700 3699.62458 362.81059 9572.56317 76051.14416 24076.22005 8203.69828 0.05377 18.59640 0.14651 0.94413 5873.52772 5.70099 5.85306 5.70174 5.70163 5.48556 5.48556 5.52921 5.52658 5.52921 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 44718.93095 30856.06237 13862.86858 -872.73723 1.11626 0.21592 9.10358 9.10358 489029.27278 391570.36189 192561.47363 141449.48133 173372.52222 74414.34462 9363.57190 9363.57190 9414.72206 26040.24529 16113.67686 3614.27237 30398.33816 30398.33816 10933.56057 139.09918 5.80437 100.00000 351.29211 6863.23068 4070.32989 0.02176 0.00000 0.55484 5091.33626 1843.17945 16054.85207 16054.85207 21287.57052 16197.35497 4489.35455 1.02700 1847.23486 121.38920 4759.47244 38273.54220 25473.48143 8610.21718 0.05348 18.69900 0.13004 0.92571 7434.65226 5.73307 5.95016 5.73366 5.73357 5.53036 5.53036 5.57219 5.57062 5.57219 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 19444.39107 13416.62985 6027.76122 -327.78269 0.59074 0.20937 8.52113 8.52113 218645.09103 172053.95474 84610.49738 62152.15715 76178.97319 37449.72704 4685.70693 4685.70693 4700.64765 11641.54502 1246.30153 1211.92351 28.64916 534.04556 563.05012 7708.75871 5.48521 5.48521 245.76997 528.67210 8373.80973 1699.57481 44610.97469 44610.97469 6057.34977 93.85921 5.80865 100.00000 242.02272 3750.14651 2307.20325 0.02176 0.00000 0.56895 2517.13926 2334.93517 8333.46612 8333.46612 11896.87547 8426.09364 2167.76255 1.02700 848.28160 117.75997 2366.66653 19320.08106 16125.62011 4804.96682 0.05609 17.82918 0.14234 0.99370 5122.10409 5.92415 5.57184 5.92640 5.92649 5.41722 5.41722 5.45868 5.45539 5.45868 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 9561.94029 6406.50000 3155.44029 -220.22272 0.52122 0.19148 9.67630 9.67630 122685.00119 93919.67506 46186.61880 33927.20855 41584.07413 18904.22772 2301.79690 2301.79690 2326.32292 6290.18906 2274.50324 184.49825 2776.60939 2776.60939 1578.50486 19.17430 5.41079 100.00000 1618.45664 474.52050 1103.98436 0.02176 0.00000 9.25925 287.93271 197.95027 2253.34954 2253.34954 2255.77068 2295.70439 213.84305 1.02700 309.11180 18.17293 255.55733 5511.45954 54086.71673 1412.75699 0.06065 16.48800 0.17580 1.06586 34252.58213 5.31591 4.93678 5.32565 5.32566 4.09803 4.09803 4.27780 4.27506 4.27780 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2057.82041 1172.95763 884.86277 -90.49127 0.11293 0.16831 2.62369 2.62369 31712.71795 24835.92559 12213.49443 8971.64121 10996.40699 5392.82212 233.54971 233.54971 234.40364 1679.90486 5.37136 5.06265 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6465.35124 6914.81889 1.07755 4.77115 5.55731 5.55731 5.63780 0.16691 870.57528 5556.75769 5556.75769 2704.61079 14865.30732 4069.45541 31061.86982 31061.86982 10311.42348 180.32850 5.93081 100.00000 428.26723 6456.98638 3854.43710 0.02176 0.00000 0.85628 4670.57435 1756.89644 14817.64523 14817.64523 19248.55471 14926.53496 4942.63548 1.02700 1681.52855 246.19887 5365.41725 34636.65406 60186.97047 6120.61504 0.05512 18.14207 0.13262 0.88273 9063.73323 5.92581 5.81744 5.92740 5.92750 5.37869 5.37869 5.43261 5.41314 5.43261 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 17491.65827 12069.24421 5422.41406 -258.92955 0.31165 0.19770 8.92256 8.92256 204468.00305 162515.99222 79920.03993 58706.69757 71955.92471 33891.08377 5110.42102 5110.42101 5317.75515 10933.91388 3355.77206 928.99375 6240.74746 6240.74746 2286.77989 38.36595 6.10015 100.00000 392.26837 1207.88577 1078.89412 0.02176 0.00000 1.63522 1088.51747 332.77390 3330.73784 3330.73784 4639.46254 3381.59755 1124.71523 1.02700 379.34150 19.31161 1176.70918 8743.86459 25803.45536 801.99006 0.06400 15.62597 0.11809 1.18232 8301.86244 6.07833 4.66821 6.08673 6.10268 4.95807 4.95807 4.96083 4.96613 4.96083 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 4306.68864 2971.61516 1335.07348 -124.19051 0.18875 0.20924 6.24796 6.24796 46030.47841 35480.89726 17448.34269 12816.99281 15709.59717 8555.67047 1105.10277 1105.10277 1151.67495 2435.69372 33977.46870 3343.40012 59237.41219 59237.41219 24709.56713 548.21305 6.21723 100.00000 -1887.71502 7121.43555 17588.13158 0.02176 0.00000 1.00000 4025.87203 3409.93136 34174.25818 34174.25818 39292.52112 33773.57570 4860.26126 1.02700 3509.89867 295.29628 5364.20031 39698.17261 152999.50124 12929.46016 0.08153 12.26542 0.24965 1.04811 -39951.09542 6.08622 4.86951 6.07977 6.08884 4.94285 4.94285 4.96611 4.96563 4.96611 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 35882.58976 25476.63874 10405.95102 977.27783 0.34481 0.17475 5.86949 5.86949 453491.46208 409354.59863 201307.17863 147873.79569 181246.70862 38843.62892 5533.44750 5533.44750 5560.98979 25586.99009 161153.74509 9825.24864 + 3735.53760 1037.76364 9108.56066 9108.56066 2688.58195 73.45491 5.98502 100.00000 -207.18836 2059.96141 628.62054 0.02176 0.00000 0.74787 1708.18850 474.42582 3763.32195 3763.32195 4764.78581 3702.29273 1517.11470 1.02700 345.70755 30.13724 1570.57790 7401.62527 16350.45488 932.06001 0.07542 13.25952 0.16779 1.03345 -4384.87883 5.86324 5.14341 5.85807 5.87763 5.15950 5.15950 5.16205 5.16392 5.16205 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 4290.36000 2874.54120 1415.81880 143.42432 0.31758 0.19782 8.61939 8.61939 51319.33756 43364.55188 21325.26573 15664.85611 19200.18079 7242.30675 1552.40313 1552.40313 1598.36225 2841.88475 34245.43614 26457.41684 49209.71165 34399.64171 34403.71446 6521.15026 7788.01931 198.63413 7589.38518 2146.46714 8667.61741 71059.56933 1812.58470 69246.98463 -35296.20309 28146.08864 5.72950 6.07239 5.71301 5.71301 5.58580 5.77820 5.58604 25577.81873 919.00736 5389.88033 5389.88033 2512.93529 5389.88033 8821.82298 36894.08105 7583.61436 91834.92254 91834.92254 25410.62832 342.75645 5.88461 100.00000 291.29169 17098.60321 8312.02512 0.02176 0.00000 0.16463 10029.36760 4746.11361 36732.76743 36732.76743 51682.83499 37122.70576 9152.39543 1.02700 3781.01628 370.79242 9783.15945 77724.29567 24076.22005 8610.55245 0.05377 18.59640 0.14651 0.94413 6164.81941 5.85492 6.01109 5.85569 5.85558 5.63367 5.63367 5.67850 5.67580 5.67850 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 46936.72138 32386.33777 14550.38361 -916.01976 1.13315 0.21592 9.10358 9.10358 499787.92236 400184.90528 196797.82382 144561.36829 177186.71571 76051.47064 9569.57037 9569.57037 9621.84584 26613.12961 16468.17757 3693.78632 31905.91318 31905.91318 11174.09878 142.15936 5.96109 100.00000 368.71409 7014.22168 4159.87710 0.02176 0.00000 0.55484 5203.34560 1934.59008 16408.05864 16408.05864 22343.30618 16553.69659 4588.12030 1.02700 1887.87401 124.05976 4864.18078 39115.56646 25473.48143 9037.23224 0.05348 18.69900 0.13004 0.92571 7803.36635 5.88786 6.11081 5.88846 5.88837 5.67968 5.67968 5.72264 5.72103 5.72264 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 20408.71610 14082.01412 6326.70198 -344.03875 0.59968 0.20937 8.52113 8.52113 223455.28332 175839.13973 86471.92734 63519.50389 77854.90972 38273.62345 4788.79243 4788.79243 4804.06184 11897.65869 1273.72015 1238.58581 29.27944 545.79456 575.43721 8091.06685 5.63331 5.63331 251.17691 540.30288 8558.03344 1736.96543 46823.41113 46823.41113 6190.61139 95.92412 5.96548 100.00000 254.02559 3832.64969 2357.96170 0.02176 0.00000 0.56895 2572.51630 2450.73394 8516.80227 8516.80227 12486.88905 8611.46761 2215.45330 1.02700 866.94379 120.35068 2418.73317 19745.12605 16125.62011 5043.26432 0.05609 17.82918 0.14234 0.99370 5376.12968 6.08410 5.72228 6.08642 6.08651 5.56349 5.56349 5.60606 5.60269 5.60606 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 10036.15511 6724.22393 3311.93118 -231.14444 0.52887 0.19148 9.67630 9.67630 125384.07140 95985.90681 47202.72388 34673.60675 42498.92328 19320.12213 2352.43641 2352.43641 2377.50200 6428.57307 2324.54228 188.55721 2914.31254 2914.31254 1613.23195 19.59613 5.55689 100.00000 1698.72237 484.95995 1128.27200 0.02176 0.00000 9.25925 294.26723 207.76741 2302.92320 2302.92320 2367.64336 2346.20986 218.54760 1.02700 315.91225 18.57273 261.17959 5632.71198 54086.71673 1482.82125 0.06065 16.48800 0.17580 1.06586 35951.30450 5.45944 5.07007 5.46945 5.46945 4.20868 4.20868 4.39330 4.39049 4.39330 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2159.87594 1231.12929 928.74665 -94.97910 0.11434 0.16831 2.62369 2.62369 32410.39751 25382.31566 12482.19116 9169.01721 11238.32781 5511.46427 238.68780 238.68780 239.56051 1716.86273 5.51638 5.19934 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6607.58890 7066.94482 1.07755 4.89997 5.70736 5.70736 5.79002 0.16691 889.72792 5679.00630 5679.00630 2764.11220 15192.34391 4158.98338 32602.35203 32602.35203 10538.27468 184.29572 6.09094 100.00000 449.50672 6599.04001 3939.23467 0.02176 0.00000 0.85628 4773.32693 1844.02795 15143.63325 15143.63325 20203.16743 15254.91856 5051.37340 1.02700 1718.52216 251.61524 5483.45637 35398.66292 60186.97047 6424.16079 0.05512 18.14207 0.13262 0.88273 9513.23995 6.08581 5.97451 6.08744 6.08754 5.52391 5.52391 5.57929 5.55930 5.57929 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 18359.13947 12667.80624 5691.33323 -271.77090 0.31637 0.19770 8.92256 8.92256 208966.29793 166091.34215 81678.27988 59998.24424 73538.95422 34636.68841 5222.85022 5222.85022 5434.74571 11174.45978 3429.59901 949.43160 6550.25106 6550.25106 2337.08902 39.21000 6.26486 100.00000 411.72252 1234.45925 1102.62977 0.02176 0.00000 1.63522 1112.46485 349.27749 3404.01403 3404.01403 4869.55202 3455.99265 1149.45895 1.02700 387.68701 19.73647 1202.59676 8936.23216 25803.45536 841.76396 0.06400 15.62597 0.11809 1.18232 8713.58496 6.24244 4.79425 6.25107 6.26745 5.09194 5.09194 5.09477 5.10021 5.09477 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 4520.27453 3118.98943 1401.28510 -130.34961 0.19161 0.20924 6.24796 6.24796 47043.14967 36261.47658 17832.20603 13098.96651 16055.20812 8743.89640 1129.41501 1129.41501 1177.01179 2489.27889 34724.97263 3416.95489 62175.23209 62175.23209 25253.17733 560.27373 6.38510 100.00000 -1981.33434 7278.10705 17975.07027 0.02176 0.00000 1.00000 4114.44117 3579.04348 34926.09147 34926.09147 41241.19421 34516.59398 4967.18695 1.02700 3587.11640 301.79279 5482.21266 40571.53325 152999.50124 13570.68373 0.08153 12.26542 0.24965 1.04811 -41932.42976 6.25055 5.00099 6.24392 6.25323 5.07630 5.07630 5.10019 5.09970 5.10019 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 37662.15073 26740.12703 10922.02370 1025.74494 0.35018 0.17475 5.86949 5.86949 463468.26884 418360.39501 205735.93422 151127.01749 185234.13411 39698.18819 5655.18328 5655.18328 5683.33150 26149.90349 169146.00306 10041.40399 + 3817.71938 1060.59443 9560.29057 9560.29057 2747.73072 75.07092 6.14662 100.00000 -217.46366 2105.28054 642.45019 0.02176 0.00000 0.74787 1745.76862 497.95449 3846.11499 3846.11499 5001.09058 3783.74313 1550.49120 1.02700 353.31312 30.80026 1605.13059 7564.46199 16350.45488 978.28459 0.07542 13.25952 0.16779 1.03345 -4602.34248 6.02155 5.28228 6.01623 6.03633 5.29880 5.29880 5.30143 5.30335 5.30143 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 4503.13609 3017.10118 1486.03491 150.53730 0.32225 0.19782 8.61939 8.61939 52448.36285 44318.57151 21794.42133 16009.48277 19622.58454 7401.63788 1586.55598 1586.55598 1633.52620 2904.40615 34998.83535 27039.47970 51650.21782 35156.43344 35160.59579 6664.61550 7959.35564 203.00408 7756.35157 2193.68940 8858.30489 72623.56373 1852.45615 70771.10759 -37046.68280 28765.23455 5.88420 6.23634 5.86726 5.86726 5.73662 5.93421 5.73686 26140.53045 939.22551 5508.45763 5508.45763 2568.21984 5508.45764 9015.90298 37705.75041 7750.45379 96389.38320 96389.38320 25969.66186 350.29709 6.04350 100.00000 305.73801 17474.77228 8494.88957 0.02176 0.00000 0.16463 10250.01357 4981.49235 37540.88789 37540.88789 54245.99324 37939.40486 9353.74802 1.02700 3864.19859 378.94985 9998.38885 79434.25574 24076.22005 9037.58414 0.05377 18.59640 0.14651 0.94413 6470.55741 6.01300 6.17339 6.01380 6.01368 5.78578 5.78578 5.83182 5.82904 5.83182 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 49264.50089 33992.50563 15271.99525 -961.44884 1.15029 0.21592 9.10358 9.10358 510783.26180 408988.96852 201127.37367 147741.71673 181084.82141 77724.61309 9780.10081 9780.10081 9833.52633 27198.61741 16830.47729 3775.04957 33488.25486 33488.25486 11419.92882 145.28687 6.12204 100.00000 387.00009 7168.53448 4251.39435 0.02176 0.00000 0.55484 5317.81914 2030.53413 16769.03574 16769.03574 23451.39999 16917.87772 4689.05889 1.02700 1929.40721 126.78907 4971.19270 39976.11506 25473.48143 9485.42469 0.05348 18.69900 0.13004 0.92571 8190.36644 6.04683 6.27580 6.04745 6.04736 5.83303 5.83303 5.87715 5.87549 5.87715 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 21420.86586 14780.39745 6640.46841 -361.10100 0.60875 0.20937 8.52113 8.52113 228371.29970 179707.59874 88374.30874 64916.93224 79567.71683 39115.64549 4894.14581 4894.14581 4909.75115 12159.40686 1301.74198 1265.83469 29.92359 557.80203 588.09682 8492.33517 5.78541 5.78541 256.70280 552.18953 8746.31008 1775.17865 49145.57113 49145.57113 6326.80477 98.03444 6.12655 100.00000 266.62374 3916.96794 2409.83683 0.02176 0.00000 0.56895 2629.11163 2572.27562 8704.17183 8704.17183 13106.16376 8800.91979 2264.19324 1.02700 886.01654 122.99840 2471.94527 20179.52194 16125.62011 5293.37994 0.05609 17.82919 0.14234 0.99370 5642.75342 6.24837 5.87679 6.25075 6.25084 5.71370 5.71370 5.75742 5.75396 5.75742 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 10533.88813 7057.70506 3476.18307 -242.60782 0.53664 0.19148 9.67630 9.67630 128142.52109 98097.59563 48241.18325 35436.42569 43433.89910 19745.16617 2404.18998 2404.18998 2429.80702 6570.00152 2375.68219 192.70547 3058.84494 3058.84494 1648.72303 20.02724 5.70692 100.00000 1782.96879 495.62906 1153.09397 0.02176 0.00000 9.25925 300.74110 218.07143 2353.58749 2353.58749 2485.06425 2397.82645 223.35564 1.02700 322.86232 18.98133 266.92554 5756.63196 54086.71673 1556.36028 0.06065 16.48800 0.17580 1.06586 37734.27329 5.60684 5.20697 5.61712 5.61713 4.32231 4.32231 4.51192 4.50903 4.51192 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2266.99282 1292.18591 974.80691 -99.68949 0.11577 0.16831 2.62369 2.62369 33123.42600 25940.72631 12756.79922 9370.73549 11485.57089 5632.71654 243.93893 243.93893 244.83084 1754.63368 5.66533 5.33972 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6752.95578 7222.41753 1.07755 5.03227 5.86146 5.86146 5.94635 0.16691 909.30193 5803.94437 5803.94437 2824.92263 15526.57531 4250.48097 34219.23290 34219.23290 10770.11660 188.35023 6.25540 100.00000 471.79955 6744.21881 4025.89779 0.02176 0.00000 0.85628 4878.34007 1935.48067 15476.79301 15476.79301 21205.12321 15590.52659 5162.50356 1.02700 1756.32963 257.15078 5604.09234 36177.43588 60186.97047 6742.76058 0.05512 18.14207 0.13262 0.88273 9985.03949 6.25012 6.13583 6.25180 6.25190 5.67306 5.67306 5.72993 5.70940 5.72993 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 19269.64254 13296.05336 5973.58918 -285.24910 0.32116 0.19770 8.92256 8.92256 213563.55520 169745.34974 83475.20109 61318.20492 75156.81036 35398.69632 5337.75286 5337.75286 5554.31005 11420.29769 3505.05015 970.31908 6875.10417 6875.10417 2388.50495 40.07262 6.43401 100.00000 432.14148 1261.61733 1126.88762 0.02176 0.00000 1.63522 1136.93906 366.59955 3478.90230 3478.90230 5111.05255 3532.02445 1174.74703 1.02700 396.21612 20.17067 1229.05388 9132.83176 25803.45536 883.51039 0.06400 15.62597 0.11809 1.18232 9145.72644 6.41099 4.92369 6.41985 6.43667 5.22942 5.22942 5.23233 5.23792 5.23233 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 4744.45300 3273.67257 1470.78043 -136.81417 0.19450 0.20924 6.24796 6.24796 48078.09966 37059.22864 18224.51435 13387.14362 16408.42252 8936.26326 1154.26213 1154.26213 1202.90603 2544.04294 35488.92163 3492.12786 65258.75022 65258.75022 25808.74694 572.59974 6.55750 100.00000 -2079.59662 7438.22532 18370.52161 0.02176 0.00000 1.00000 4204.95883 3756.54255 35694.46508 35694.46508 43286.50977 35275.95866 5076.46500 1.02700 3666.03292 308.43223 5602.82127 41464.10773 152999.50124 14243.70815 0.08153 12.26542 0.24965 1.04811 -44012.02638 6.41931 5.13602 6.41251 6.42207 5.21336 5.21336 5.23790 5.23739 5.23790 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 39529.96723 28066.27675 11463.69048 1076.61573 0.35563 0.17475 5.86949 5.86949 473664.56524 427564.31880 210262.12239 154451.81013 189309.28292 40571.54776 5779.59725 5779.59725 5808.36473 26725.20097 177534.62902 10262.31477 + 3901.70917 1083.92749 10034.42357 10034.42357 2808.18077 76.72247 6.31258 100.00000 -228.24855 2151.59668 656.58408 0.02176 0.00000 0.74787 1784.17551 522.65004 3930.72948 3930.72948 5249.11464 3866.98543 1584.60199 1.02700 361.08600 31.47786 1640.44345 7730.88109 16350.45488 1026.80163 0.07542 13.25952 0.16779 1.03345 -4830.59103 6.18413 5.42490 6.17867 6.19931 5.44187 5.44187 5.44457 5.44654 5.44457 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 4726.46460 3166.73128 1559.73331 158.00305 0.32698 0.19782 8.61939 8.61939 53602.22667 45293.57957 22273.89834 16361.69120 20054.28118 7564.47427 1621.46019 1621.46019 1669.46375 2968.30303 35768.80932 27634.34795 54211.75845 35929.87457 35934.12850 6811.23696 8134.46138 207.47016 7926.99121 2241.95054 9053.18750 74221.90437 1893.20526 72328.69912 -38883.97579 29398.00776 6.04307 6.40472 6.02568 6.02568 5.89151 6.09444 5.89175 26715.62183 959.88846 5629.64364 5629.64364 2624.72064 5629.64364 9214.25274 38535.27649 7920.96368 101169.71775 101169.71775 26540.99412 358.00362 6.20667 100.00000 320.90077 17859.21707 8681.77705 0.02176 0.00000 0.16463 10475.51375 5228.54445 38366.78700 38366.78700 56936.26874 38774.07133 9559.53037 1.02700 3949.21091 387.28674 10218.35329 81181.83418 24076.22005 9485.79404 0.05377 18.59640 0.14651 0.94413 6791.45819 6.17535 6.34007 6.17617 6.17605 5.94200 5.94200 5.98928 5.98643 5.98928 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 51707.72428 35678.32978 16029.39451 -1009.13093 1.16770 0.21592 9.10358 9.10358 522020.49827 417986.72105 205552.17356 150992.03279 185068.68538 79434.56436 9995.26292 9995.26291 10049.86380 27796.98594 17200.74760 3858.10062 35149.07119 35149.07119 11671.16713 148.48318 6.28734 100.00000 406.19297 7326.24215 4344.92497 0.02176 0.00000 0.55484 5434.81110 2131.23643 17137.95433 17137.95433 24614.44860 17290.07084 4792.21813 1.02700 1971.85415 129.57843 5080.55888 40855.59554 25473.48143 9955.84479 0.05348 18.69900 0.13004 0.92571 8596.55940 6.21010 6.44525 6.21073 6.21064 5.99052 5.99052 6.03583 6.03413 6.03583 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 22483.21217 15513.41641 6969.79576 -379.00944 0.61796 0.20937 8.52113 8.52113 233395.46831 183661.16381 90318.54250 66345.10400 81318.20568 39976.19193 5001.81696 5001.81696 5017.76562 12426.91349 1330.38029 1293.68304 30.58190 570.07367 601.03495 8913.50400 5.94161 5.94161 262.35025 564.33770 8938.72880 1814.23256 51582.89632 51582.89632 6465.99441 100.19120 6.29197 100.00000 279.84667 4003.14119 2462.85321 0.02176 0.00000 0.56895 2686.95205 2699.84505 8895.66351 8895.66351 13756.15077 8994.53993 2314.00547 1.02700 905.50890 125.70436 2526.32804 20623.47446 16125.62011 5555.89980 0.05609 17.82919 0.14234 0.99370 5922.60009 6.41708 6.03546 6.41952 6.41962 5.86797 5.86797 5.91287 5.90932 5.91287 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 11056.30573 7407.72485 3648.58088 -254.63971 0.54452 0.19148 9.67630 9.67630 130961.65659 100255.74159 49302.48873 36216.02665 44389.44438 20179.56114 2457.08213 2457.08213 2483.26274 6714.54140 2427.94717 196.94499 3210.54528 3210.54528 1684.99492 20.46784 5.86101 100.00000 1871.39334 506.53289 1178.46203 0.02176 0.00000 9.25925 307.35740 228.88646 2405.36638 2405.36638 2608.30851 2450.57861 228.26946 1.02700 329.96529 19.39892 272.79790 5883.27817 54086.71673 1633.54640 0.06065 16.48800 0.17580 1.06586 39605.66663 5.75823 5.34755 5.76878 5.76879 4.43901 4.43901 4.63374 4.63078 4.63374 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2379.42205 1356.27057 1023.15148 -104.63349 0.11721 0.16831 2.62369 2.62369 33852.14110 26511.42198 13037.44866 9576.89156 11738.25332 5756.63636 249.30558 249.30558 250.21712 1793.23559 5.81829 5.48390 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 6901.52073 7381.31063 1.07755 5.16814 6.01972 6.01972 6.10690 0.16691 929.30656 5931.63108 5931.63108 2887.07090 15868.15979 4343.99150 35916.30135 35916.30135 11007.05905 192.49393 6.42430 100.00000 495.19797 6892.59155 4114.46750 0.02176 0.00000 0.85628 4985.66349 2031.46888 15817.28228 15817.28228 22256.76997 15933.51800 5276.07858 1.02700 1794.96886 262.80809 5727.38231 36973.34176 60186.97047 7077.16101 0.05512 18.14208 0.13262 0.88273 10480.23746 6.41888 6.30149 6.42060 6.42071 5.82623 5.82623 5.88464 5.86355 5.88464 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 20225.30109 13955.45776 6269.84333 -299.39575 0.32601 0.19770 8.92256 8.92256 218261.95204 173479.74544 85311.65455 62667.20472 76810.25932 36177.46836 5455.18337 5455.18336 5676.50481 11671.54403 3582.16121 991.66609 7216.06805 7216.06805 2441.05203 40.95422 6.60772 100.00000 453.57311 1289.37290 1151.67913 0.02176 0.00000 1.63522 1161.95171 384.78069 3555.43811 3555.43811 5364.53007 3609.72895 1200.59145 1.02700 404.93287 20.61443 1256.09305 9333.75648 25803.45536 927.32720 0.06400 15.62597 0.11809 1.18232 9599.29955 6.58409 5.05663 6.59318 6.61046 5.37062 5.37062 5.37360 5.37934 5.37360 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 4979.74938 3436.02707 1543.72230 -143.59933 0.19745 0.20924 6.24796 6.24796 49135.81850 37874.53124 18625.45346 13681.66062 16769.40762 9132.86216 1179.65589 1179.65589 1229.36995 2600.01180 36269.67750 3568.95463 68495.19233 68495.19233 26376.53907 585.19693 6.73455 100.00000 -2182.73212 7601.86620 18774.67288 0.02176 0.00000 1.00000 4297.46788 3942.84450 36479.74290 36479.74290 45433.26071 36052.02934 5188.14718 1.02700 3746.68560 315.21774 5726.08328 42376.31875 152999.50124 14950.11054 0.08153 12.26542 0.24965 1.04811 -46194.75850 6.59263 5.27469 6.58564 6.59547 5.35412 5.35412 5.37932 5.37880 5.37932 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 41490.41621 29458.19553 12032.22069 1130.00940 0.36117 0.17475 5.86949 5.86949 484085.18004 436970.72880 214887.88664 157849.74817 193474.08495 41464.12124 5906.74833 5906.74832 5936.14868 27313.15501 186339.28046 10488.08557 + 3987.54672 1107.77389 10532.07072 10532.07072 2869.96071 78.41037 6.48301 100.00000 -239.56831 2198.93179 671.02893 0.02176 0.00000 0.74787 1823.42735 548.57034 4017.20548 4017.20548 5509.43920 3952.05907 1619.46322 1.02700 369.02989 32.17038 1676.53318 7900.96139 16350.45488 1077.72482 0.07542 13.25952 0.16779 1.03345 -5070.15934 6.35110 5.57137 6.34550 6.36669 5.58880 5.58880 5.59157 5.59360 5.59157 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 4960.86886 3323.78214 1637.08672 165.83905 0.33178 0.19782 8.61939 8.61939 54781.47546 46290.03778 22763.92385 16721.64822 20495.47513 7730.89306 1657.13230 1657.13230 1706.19194 3033.60564 36555.72272 28242.30329 56900.33610 36720.33140 36724.67891 6961.08410 8313.41943 212.03450 8101.38493 2291.27342 9252.35752 75855.35241 1934.85129 73920.50112 -40812.38747 30044.70752 6.20624 6.57765 6.18837 6.18837 6.05058 6.25899 6.05083 27303.36520 981.00600 5753.49573 5753.49573 2682.46447 5753.49574 9416.96620 39383.05213 8095.22479 106187.12819 106187.12819 27124.89569 365.87970 6.37425 100.00000 336.81552 18252.11965 8872.77604 0.02176 0.00000 0.16463 10705.97493 5487.84886 39210.85587 39210.85587 59759.96575 39627.10046 9769.83993 1.02700 4036.09351 395.80705 10443.15695 82967.85861 24076.22005 9956.23246 0.05377 18.59640 0.14651 0.94413 7128.27371 6.34208 6.51125 6.34292 6.34280 6.10243 6.10243 6.15099 6.14806 6.15099 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 54272.11689 37447.76068 16824.35621 -1059.17776 1.18536 0.21592 9.10358 9.10358 533504.95350 427182.42402 210074.31900 154313.85577 189140.19432 81182.13424 10215.15859 10215.15858 10270.96069 28408.51860 17579.16385 3942.97879 36892.25404 36892.25404 11927.93267 151.74981 6.45709 100.00000 426.33770 7487.41940 4440.51327 0.02176 0.00000 0.55484 5554.37688 2236.93296 17514.98913 17514.98913 25835.17743 17670.45220 4897.64688 1.02700 2015.23492 132.42915 5192.33112 41754.42441 25473.48143 10449.59490 0.05348 18.69900 0.13004 0.92571 9022.89710 6.37777 6.61927 6.37842 6.37832 6.15227 6.15227 6.19880 6.19705 6.19880 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 23598.24447 16282.78870 7315.45577 -397.80604 0.62731 0.20937 8.52113 8.52113 238530.16849 187701.70725 92305.54939 67804.69552 83107.20526 40855.67030 5111.85687 5111.85687 5128.15640 12700.30527 1359.64864 1322.14405 31.25471 582.61529 614.25771 9355.56026 6.10203 6.10203 268.12196 576.75312 9135.38074 1854.14566 54141.09820 54141.09820 6608.24621 102.39541 6.46185 100.00000 293.72539 4091.21025 2517.03596 0.02176 0.00000 0.56895 2746.06497 2833.74115 9091.36800 9091.36800 14438.37324 9192.41970 2364.91356 1.02700 925.43008 128.46985 2581.90723 21077.19385 16125.62011 5831.43906 0.05609 17.82919 0.14234 0.99370 6216.32548 6.59034 6.19842 6.59285 6.59295 6.02641 6.02641 6.07252 6.06887 6.07252 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 11604.63209 7775.10351 3829.52858 -267.26831 0.55252 0.19148 9.67630 9.67630 133842.81301 102461.36672 50387.14290 37012.77881 45366.01164 20623.51276 2511.13791 2511.13791 2537.89450 6862.26116 2481.36198 201.27777 3369.76904 3369.76904 1722.06479 20.91814 6.01926 100.00000 1964.20321 517.67661 1204.38818 0.02176 0.00000 9.25925 314.11926 240.23786 2458.28442 2458.28442 2737.66495 2504.49131 233.29139 1.02700 337.22452 19.82570 278.79945 6012.71057 54086.71673 1714.56050 0.06065 16.48800 0.17580 1.06586 41569.86983 5.91370 5.49194 5.92454 5.92455 4.55887 4.55887 4.75885 4.75581 4.75885 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2497.42709 1423.53344 1073.89365 -109.82268 0.11867 0.16831 2.62369 2.62369 34596.88792 27094.67295 13324.27238 9787.58306 11996.49476 5883.28241 254.79030 254.79030 255.72189 1832.68674 5.97538 5.63196 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7053.35410 7543.69938 1.07755 5.30768 6.18225 6.18225 6.27179 0.16691 949.75129 6062.12690 6062.12689 2950.58642 16217.25912 4439.55926 37697.53421 37697.53421 11249.21422 196.72879 6.59775 100.00000 519.75681 7044.22849 4204.98573 0.02176 0.00000 0.85628 5095.34803 2132.21754 16165.26231 16165.26231 23360.57210 16284.05521 5392.15224 1.02700 1834.45815 268.58986 5853.38466 37786.75749 60186.97047 7428.14570 0.05512 18.14208 0.13262 0.88273 10999.99428 6.59219 6.47163 6.59395 6.59406 5.98354 5.98354 6.04352 6.02187 6.04352 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 21228.35456 14647.56466 6580.78990 -314.24398 0.33095 0.19770 8.92256 8.92256 223063.71353 177296.29781 87188.50996 64045.88250 78500.08414 36973.37334 5575.19734 5575.19734 5801.38785 11928.31779 3660.96872 1013.48273 7573.94169 7573.94169 2494.75515 41.85521 6.78613 100.00000 476.06761 1317.73909 1177.01606 0.02176 0.00000 1.63522 1187.51463 403.86350 3633.65771 3633.65771 5630.57854 3689.14295 1227.00445 1.02700 413.84138 21.06794 1283.72708 9539.10150 25803.45536 973.31706 0.06400 15.62597 0.11809 1.18232 10075.36716 6.76186 5.19316 6.77120 6.78895 5.51562 5.51562 5.51869 5.52458 5.51869 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 5226.71504 3606.43338 1620.28166 -150.72099 0.20043 0.20924 6.24796 6.24796 50216.80712 38707.77048 19035.21322 13982.65700 17138.33440 9333.78621 1205.60830 1205.60830 1256.41608 2657.21197 37067.60999 3647.47159 71892.14253 71892.14253 26956.82263 598.07126 6.91638 100.00000 -2290.98252 7769.10716 19187.71547 0.02176 0.00000 1.00000 4392.01212 4138.38591 37282.29683 37282.29683 47686.47760 36845.17358 5302.28635 1.02700 3829.11264 322.15252 5852.05705 43308.59833 152999.50124 15691.54624 0.08153 12.26542 0.24965 1.04811 -48485.74102 6.77063 5.41711 6.76346 6.77354 5.49869 5.49869 5.52456 5.52403 5.52456 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 43548.09170 30919.14512 12628.94657 1186.05108 0.36679 0.17475 5.86949 5.86949 494735.04826 446584.07971 219615.41766 161322.44081 197730.51257 42376.33134 6036.69672 6036.69672 6066.74389 27914.04403 195580.58973 10718.82334 + 4075.27271 1132.14490 11054.39817 11054.39817 2933.09982 80.13540 6.65806 100.00000 -251.44946 2247.30826 685.79156 0.02176 0.00000 0.74787 1863.54274 575.77614 4105.58395 4105.58395 5782.67430 4039.00432 1655.09139 1.02700 377.14854 32.87812 1713.41689 8074.78342 16350.45488 1131.17350 0.07542 13.25952 0.16779 1.03345 -5321.60879 6.52258 5.72180 6.51683 6.53859 5.73970 5.73970 5.74254 5.74462 5.74254 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 5206.89816 3488.62177 1718.27639 174.06367 0.33665 0.19782 8.61939 8.61939 55986.66771 47308.41807 23264.72991 17089.52429 20946.37534 7900.97304 1693.58919 1693.58919 1743.72814 3100.34490 37359.94820 28863.63364 59722.25107 37528.17827 37532.62143 7114.22787 8496.31457 216.69926 8279.61530 2341.68141 9455.90928 77524.68526 1977.41393 75547.27133 -42836.43680 30705.63971 6.37381 6.75525 6.35546 6.35546 6.21395 6.42798 6.21420 27904.03892 1002.58812 5880.07257 5880.07257 2741.47866 5880.07258 9624.13935 40249.47883 8273.31964 111453.37205 111453.37206 27721.64308 373.92905 6.54636 100.00000 353.51955 18653.66607 9067.97702 0.02176 0.00000 0.16463 10941.50626 5760.01320 40073.49425 40073.49425 62723.70117 40498.89621 9984.77630 1.02700 4124.88752 404.51480 10672.90628 84793.17486 24076.22005 10450.00180 0.05377 18.59640 0.14651 0.94413 7481.79326 6.51332 6.68706 6.51418 6.51406 6.26720 6.26720 6.31707 6.31406 6.31707 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 56963.68797 39304.94472 17658.74324 -1111.70662 1.20330 0.21592 9.10358 9.10358 545242.06633 436580.43235 214695.95158 157708.75881 193301.27640 82968.15034 10439.89196 10439.89196 10496.92171 29033.50499 17965.90525 4029.72428 38721.88829 38721.88829 12190.34705 155.08830 6.63144 100.00000 447.48149 7652.14254 4538.20451 0.02176 0.00000 0.55484 5676.57311 2347.87140 17900.31869 17900.31869 27116.44708 18059.20195 5005.39505 1.02700 2059.57006 135.34259 5306.56234 42673.02733 25473.48143 10967.83206 0.05348 18.69900 0.13004 0.92571 9470.37859 6.54997 6.79799 6.55064 6.55054 6.31838 6.31838 6.36616 6.36437 6.36616 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 24768.57568 17090.31723 7678.25845 -417.53483 0.63680 0.20937 8.52113 8.52113 243777.83194 191831.14261 94336.27040 69296.39804 84935.56281 41754.49712 5224.31767 5224.31767 5240.97578 12979.71167 1389.56089 1351.23120 31.94231 595.43282 627.77137 9819.53987 6.26679 6.26679 274.02064 589.44168 9336.35901 1894.93684 56826.17154 56826.17154 6753.62755 104.64810 6.63632 100.00000 308.29240 4181.21683 2572.41072 0.02176 0.00000 0.56895 2806.47837 2974.27769 9291.37799 9291.37800 15154.42985 9394.65283 2416.94164 1.02700 945.78953 131.29619 2638.70916 21540.89500 16125.62011 6120.64342 0.05609 17.82919 0.14234 0.99370 6524.61788 6.76828 6.36577 6.77086 6.77096 6.18912 6.18912 6.23648 6.23273 6.23648 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 12180.15216 8160.70196 4019.45020 -280.52322 0.56063 0.19148 9.67630 9.67630 136787.35481 104715.51559 51495.65946 37827.05952 46364.06337 21077.23128 2566.38292 2566.38292 2593.72815 7013.23076 2535.95191 205.70588 3536.88935 3536.88935 1759.95019 21.37833 6.18178 100.00000 2061.61589 529.06549 1230.88470 0.02176 0.00000 9.25925 321.02988 252.15221 2512.36665 2512.36665 2873.43669 2559.59009 238.42380 1.02700 344.64345 20.26186 284.93303 6144.99048 54086.71673 1799.59240 0.06065 16.48800 0.17580 1.06586 43631.48572 6.07337 5.64022 6.08450 6.08451 4.68196 4.68196 4.88734 4.88421 4.88734 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2621.28448 1494.13215 1127.15232 -115.26923 0.12015 0.16831 2.62369 2.62369 35358.01916 27690.75544 13617.40621 10002.90977 12260.41750 6012.71467 260.39569 260.39569 261.34777 1873.00581 6.13672 5.78403 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7208.52781 7709.66068 1.07755 5.45099 6.34917 6.34917 6.44112 0.16691 970.64581 6195.49362 6195.49362 3015.49929 16574.03864 4537.22952 39567.10552 39567.10552 11496.69680 201.05682 6.77589 100.00000 545.53363 7199.20143 4297.49537 0.02176 0.00000 0.85628 5207.44563 2237.96273 16520.89790 16520.89790 24519.11619 16642.30424 5510.77953 1.02700 1874.81621 274.49884 5982.15905 38618.06828 60186.97047 7796.53712 0.05512 18.14208 0.13262 0.88273 11545.52791 6.77018 6.64637 6.77199 6.77210 6.14510 6.14510 6.20670 6.18446 6.20670 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 22281.15347 15373.99590 6907.15756 -329.82859 0.33595 0.19770 8.92256 8.92256 227971.11368 181196.81428 89106.65616 65454.89118 80227.08508 37786.78819 5697.85161 5697.85161 5929.01831 12190.74057 3741.50999 1035.77934 7949.56372 7949.56372 2549.63973 42.77603 6.96936 100.00000 499.67770 1346.72934 1202.91040 0.02176 0.00000 1.63522 1213.63994 423.89270 3713.59814 3713.59814 5909.82142 3770.30405 1253.99853 1.02700 422.94589 21.53144 1311.96906 9748.96404 25803.45536 1021.58774 0.06400 15.62597 0.11809 1.18232 10575.04486 6.94443 5.33338 6.95402 6.97225 5.66455 5.66455 5.66770 5.67375 5.66770 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 5485.92872 3785.29082 1700.63790 -158.19585 0.20347 0.20924 6.24796 6.24796 51321.57745 39559.34098 19453.98769 14290.27529 17515.37755 9539.13055 1232.13167 1232.13167 1284.05722 2715.67055 37883.09698 3727.71592 75457.56107 75457.56107 27549.87242 611.22882 7.10312 100.00000 -2404.60148 7940.02743 19609.84499 0.02176 0.00000 1.00000 4488.63634 4343.62499 38102.50693 38102.50693 50051.44052 37655.76698 5418.93659 1.02700 3913.35308 329.23987 5980.80223 44261.38798 152999.50124 16469.75270 0.08153 12.26542 0.24965 1.04811 -50890.34250 6.95344 5.56337 6.94607 6.95643 5.64715 5.64715 5.67373 5.67318 5.67373 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 45707.81552 32452.54904 13255.26648 1244.87210 0.37250 0.17475 5.86949 5.86949 505619.21345 456408.92422 224446.95429 164871.53264 202080.58156 43308.61005 6169.50398 6169.50398 6200.21218 28528.15260 205280.21245 10954.63733 + 4164.92866 1157.05207 11602.62994 11602.62994 2997.62798 81.89837 6.83782 100.00000 -263.91984 2296.74902 700.87896 0.02176 0.00000 0.74787 1904.54065 604.33118 4195.90675 4195.90675 6069.46022 4127.86237 1691.50338 1.02700 385.44581 33.60144 1751.11205 8252.42951 16350.45488 1187.27291 0.07542 13.25952 0.16779 1.03345 -5585.52863 6.69869 5.87629 6.69278 6.71513 5.89467 5.89467 5.89759 5.89973 5.89759 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 5465.12904 3661.63646 1803.49258 182.69619 0.34160 0.19782 8.61939 8.61939 57218.37416 48349.20271 23776.55369 17465.49362 21407.19536 8074.79477 1730.84813 1730.84813 1782.09014 3168.55243 38181.86664 29498.63325 62684.11607 38353.79776 38358.33867 7270.74080 8683.23339 221.46664 8461.76675 2393.19838 9663.93918 79230.69698 2020.91332 77209.78366 -44960.86681 31381.11700 6.54590 6.93764 6.52705 6.52705 6.38172 6.60153 6.38199 28517.92746 1024.64504 6009.43410 6009.43410 2801.79115 6009.43411 9835.87030 41134.96690 8455.33258 116980.78999 116980.78999 28331.51892 382.15548 6.72311 100.00000 371.05200 19064.04651 9267.47241 0.02176 0.00000 0.16463 11182.21927 6045.67527 40955.11067 40955.11067 65834.42007 41389.87146 10204.44126 1.02700 4215.63500 413.41412 10907.71010 86658.64738 24076.22005 10968.25913 0.05377 18.59641 0.14651 0.94413 7852.84526 6.68918 6.86761 6.69007 6.68993 6.43641 6.43641 6.48763 6.48454 6.48763 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 59788.74481 41254.23394 18534.51086 -1166.84060 1.22150 0.21592 9.10358 9.10358 557237.39521 446185.19674 219419.26002 161178.34968 197553.90224 84793.45850 10669.56946 10669.56946 10727.85386 29672.24110 18361.15496 4118.37817 40642.26141 40642.26141 12458.53455 158.50024 6.81049 100.00000 469.67388 7820.48959 4638.04496 0.02176 0.00000 0.55484 5801.45765 2464.31172 18294.12550 18294.12550 28461.26002 18456.50418 5115.51369 1.02700 2104.88058 138.32013 5423.30665 43611.83934 25473.48143 11511.77066 0.05348 18.69900 0.13004 0.92571 9940.05247 6.72682 6.98154 6.72751 6.72740 6.48897 6.48897 6.53805 6.53621 6.53805 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 25996.94829 17937.89434 8059.05396 -438.24205 0.64643 0.20937 8.52113 8.52113 249140.94386 196051.42549 96411.66725 70820.91799 86804.14421 42673.09805 5339.25260 5339.25259 5356.27719 13265.26501 1420.13122 1380.95827 32.64504 608.53233 641.58234 10306.53008 6.43599 6.43599 280.04909 602.40939 9541.75880 1936.62543 59644.40838 59644.40838 6902.20728 106.95036 6.81550 100.00000 323.58185 4273.20355 2629.00373 0.02176 0.00000 0.56895 2868.22086 3121.78400 9495.78820 9495.78820 15905.99856 9601.33509 2470.11432 1.02700 966.59689 134.18470 2696.76073 22014.79749 16125.62011 6424.19058 0.05609 17.82919 0.14234 0.99370 6848.19973 6.95102 6.53765 6.95367 6.95377 6.35622 6.35622 6.40487 6.40101 6.40487 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 12784.21456 8565.42377 4218.79079 -294.43548 0.56887 0.19148 9.67630 9.67630 139796.67645 107019.25570 52628.56337 38659.25439 47384.07222 21540.93157 2622.84331 2622.84331 2650.79014 7167.52168 2591.74282 210.23141 3712.29782 3712.29782 1798.66908 21.84866 6.34868 100.00000 2163.85966 540.70493 1257.96415 0.02176 0.00000 9.25925 328.09254 264.65745 2567.63868 2567.63868 3015.94189 2615.90104 243.66912 1.02700 352.22561 20.70762 291.20156 6280.18053 54086.71673 1888.84137 0.06065 16.48800 0.17580 1.06586 45795.34538 6.23735 5.79251 6.24878 6.24879 4.80837 4.80837 5.01930 5.01609 5.01930 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2751.28445 1568.23214 1183.05231 -120.98589 0.12165 0.16831 2.62369 2.62369 36135.89527 28299.95173 13916.98899 10222.97367 12530.14655 6144.99443 266.12439 266.12439 267.09742 1914.21190 6.30241 5.94019 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7367.11534 7879.27313 1.07755 5.59816 6.52060 6.52060 6.61503 0.16691 992.00001 6331.79441 6331.79441 3081.84024 16938.66730 4637.04851 41529.39634 41529.39634 11749.62400 205.48007 6.95884 100.00000 572.58882 7357.58378 4392.04022 0.02176 0.00000 0.85628 5322.00938 2348.95224 16884.35746 16884.35746 25735.11711 17008.43474 5632.01662 1.02700 1916.06215 280.53781 6113.76648 39467.66783 60186.97047 8183.19854 0.05512 18.14208 0.13262 0.88273 12118.11673 6.95297 6.82582 6.95483 6.95495 6.31102 6.31102 6.37428 6.35144 6.37428 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 23386.16487 16136.45377 7249.71110 -346.18611 0.34104 0.19770 8.92256 8.92256 232986.47655 185183.14207 91067.00156 66894.89803 81992.08002 38618.09814 5823.20429 5823.20428 6059.45665 12458.93666 3823.82316 1058.56648 8343.81434 8343.81434 2605.73178 43.71710 7.15753 100.00000 524.45872 1376.35737 1229.37441 0.02176 0.00000 1.63522 1240.34000 444.91524 3795.29726 3795.29726 6202.91308 3853.25070 1281.58649 1.02700 432.25070 22.00513 1340.83237 9963.44351 25803.45536 1072.25236 0.06400 15.62598 0.11809 1.18232 11099.50358 7.13193 5.47738 7.14178 7.16050 5.81749 5.81749 5.82072 5.82694 5.82072 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 5757.99784 3973.01851 1784.97933 -166.04142 0.20654 0.20924 6.24796 6.24796 52450.65269 40429.64602 19881.97519 14604.66118 17900.71566 9748.99245 1259.23855 1259.23855 1312.30646 2775.41522 38716.52468 3809.72563 79199.80295 79199.80295 28155.96930 624.67585 7.29491 100.00000 -2523.85527 8114.70795 20041.26135 0.02176 0.00000 1.00000 4587.38628 4559.04271 38940.76165 38940.76165 52533.69139 38484.19342 5538.15314 1.02700 3999.44680 336.48315 6112.37981 45235.13892 152999.50124 17286.55352 0.08153 12.26542 0.24965 1.04811 -53414.19777 7.14118 5.71358 7.13361 7.14425 5.79962 5.79962 5.82692 5.82635 5.82692 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 47974.64868 34062.00059 13912.64810 1306.61028 0.37830 0.17475 5.86949 5.86949 516742.83015 466449.91519 229384.78468 168498.70445 206526.35201 44261.39889 6305.23300 6305.23300 6336.61678 29155.77157 215460.87820 11195.63922 + 4256.55704 1182.50721 12178.05071 12178.05071 3063.57576 83.70014 7.02244 100.00000 -277.00868 2347.27747 716.29829 0.02176 0.00000 0.74787 1946.44053 634.30237 4288.21665 4288.21665 6370.46900 4218.67530 1728.71644 1.02700 393.92561 34.34067 1789.63649 8433.98378 16350.45488 1246.15452 0.07542 13.25952 0.16779 1.03345 -5862.53731 6.87956 6.03495 6.87348 6.89644 6.05383 6.05383 6.05683 6.05902 6.05683 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 5736.16662 3843.23164 1892.93498 191.75682 0.34662 0.19782 8.61939 8.61939 58477.17812 49412.88460 24299.63760 17849.73428 21878.15341 8252.44057 1768.92677 1768.92677 1821.29610 3238.26052 39021.86727 30147.60284 65792.87178 39197.58088 39202.22168 7430.69701 8874.26442 226.33891 8647.92552 2445.84872 9876.54573 80974.19867 2065.37003 78908.82864 -47190.65580 32071.45896 6.72264 7.12496 6.70328 6.70328 6.55403 6.77978 6.55430 29145.32154 1047.18722 6141.64159 6141.64158 2863.43053 6141.64159 10052.25934 42039.93570 8641.34980 122782.33466 122782.33466 28954.81201 390.56290 6.90463 100.00000 389.45394 19483.45531 9471.35670 0.02176 0.00000 0.16463 11428.22797 6345.50446 41856.12263 41856.12263 69099.41196 42300.44816 10428.93885 1.02700 4308.37892 422.50923 11147.67959 88565.15961 24076.22005 11512.21891 0.05377 18.59641 0.14651 0.94413 8242.29920 6.86979 7.05303 6.87070 6.87056 6.61020 6.61020 6.66280 6.65962 6.66280 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 62753.90750 43300.19621 19453.71129 -1224.70888 1.23998 0.21592 9.10358 9.10358 569496.62092 456001.26584 224246.48119 164724.27151 201900.08580 86658.92315 10904.29987 10904.29986 10963.86653 30325.02941 18765.10016 4208.98244 42657.87350 42657.87350 12732.62217 161.98724 6.99437 100.00000 492.96688 7992.54027 4740.08190 0.02176 0.00000 0.55484 5929.08966 2586.52679 18696.59605 18696.59605 29872.76759 18862.54706 5228.05493 1.02700 2151.18793 141.36317 5542.61934 44571.30504 25473.48143 12082.68535 0.05348 18.69900 0.13004 0.92571 10433.01935 6.90844 7.17004 6.90915 6.90904 6.66418 6.66418 6.71458 6.71269 6.71458 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 27286.24081 18827.50617 8458.73464 -459.97622 0.65621 0.20937 8.52113 8.52113 254622.04411 200364.55455 98532.72281 72378.97737 88713.83437 43611.90812 5456.71609 5456.71609 5474.11523 13557.10053 1451.37409 1411.33934 33.36323 621.92004 655.69714 10817.67207 6.60976 6.60976 286.21016 615.66239 9751.67738 1979.23117 62602.41285 62602.41285 7054.05576 109.30327 6.99952 100.00000 339.62957 4367.21398 2686.84178 0.02176 0.00000 0.56895 2931.32169 3276.60574 9704.69544 9704.69544 16694.84057 9812.56435 2524.45681 1.02700 987.86201 137.13677 2756.08944 22499.12576 16125.62011 6742.79185 0.05609 17.82919 0.14234 0.99370 7187.82930 7.13870 6.71417 7.14142 7.14152 6.52784 6.52784 6.57780 6.57384 6.57780 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 13418.23483 8990.21735 4428.01748 -309.03772 0.57722 0.19148 9.67630 9.67630 142872.20309 109373.67806 53786.39115 39509.75754 48426.52126 22014.83322 2680.54583 2680.54583 2709.10749 7325.20701 2648.76114 214.85650 3896.40550 3896.40550 1838.23978 22.32933 6.52010 100.00000 2271.17410 552.60043 1285.63935 0.02176 0.00000 9.25925 335.31057 277.78287 2624.12671 2624.12671 3165.51450 2673.45083 249.02983 1.02700 359.97457 21.16319 297.60799 6418.34474 54086.71673 1982.51656 0.06065 16.48800 0.17580 1.06586 48066.51948 6.40576 5.94890 6.41750 6.41751 4.93819 4.93819 5.15482 5.15152 5.15482 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 2887.73163 1646.00703 1241.72460 -126.98606 0.12317 0.16831 2.62369 2.62369 36930.88465 28922.55034 14223.16259 10447.87898 12805.80962 6280.18433 271.97912 271.97912 272.97356 1956.32453 6.47258 6.10058 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7529.19179 8052.61705 1.07755 5.74932 6.69666 6.69666 6.79364 0.16691 1013.82399 6471.09381 6471.09381 3149.64069 17311.31778 4739.06353 43589.00500 43589.00500 12008.11560 210.00063 7.14673 100.00000 600.98578 7519.45054 4488.66506 0.02176 0.00000 0.85628 5439.09352 2465.44616 17255.81313 17255.81313 27011.42437 17382.62011 5755.92092 1.02700 1958.21549 286.70964 6248.26927 40335.95849 60186.97047 8589.03604 0.05512 18.14208 0.13262 0.88273 12719.10251 7.14070 7.01012 7.14261 7.14273 6.48141 6.48141 6.54639 6.52293 6.54639 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 24545.97821 16936.72498 7609.25323 -363.35486 0.34619 0.19770 8.92256 8.92256 238112.17731 189257.16901 93070.47454 68366.58501 83795.90483 39467.69686 5951.31471 5951.31471 6192.76462 12733.03305 3907.94723 1081.85493 8757.61742 8757.61742 2663.05785 44.67888 7.35078 100.00000 550.46872 1406.63721 1256.42064 0.02176 0.00000 1.63522 1267.62747 466.98036 3878.79375 3878.79375 6510.54031 3938.02217 1309.78138 1.02700 441.76021 22.48924 1370.33067 10182.64146 25803.45536 1125.42964 0.06400 15.62598 0.11809 1.18232 11649.97229 7.32449 5.62527 7.33461 7.35383 5.97456 5.97456 5.97788 5.98427 5.97788 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 6043.55995 4170.05637 1873.50358 -174.27607 0.20967 0.20924 6.24796 6.24796 53604.56754 41319.09776 20319.37841 14925.96356 18294.53119 9963.47128 1286.94179 1286.94179 1341.17719 2836.47427 39568.28778 3893.53955 83127.63756 83127.63756 28775.40030 638.41871 7.49187 100.00000 -2649.02333 8293.23143 20482.16888 0.02176 0.00000 1.00000 4688.30873 4785.14385 39797.45796 39797.45796 55139.04701 39330.84524 5659.99244 1.02700 4087.43458 343.88577 6246.85210 46230.31230 152999.50124 18143.86277 0.08153 12.26542 0.24965 1.04811 -56063.22110 7.33399 5.86785 7.32622 7.33715 5.95621 5.95621 5.98424 5.98367 5.98424 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 50353.90316 35751.27126 14602.63189 1371.41030 0.38419 0.17475 5.86949 5.86949 528111.16629 476711.80784 234431.24728 172205.67400 211069.92936 45235.14908 6443.94805 6443.94805 6476.02228 29797.19815 226146.44383 11441.94316 + 4350.20125 1208.52235 12782.00889 12782.00889 3130.97439 85.54154 7.21205 100.00000 -290.74664 2398.91754 732.05685 0.02176 0.00000 0.74787 1989.26220 665.75996 4382.55737 4382.55737 6686.40600 4311.48611 1766.74818 1.02700 402.59197 35.09617 1829.00847 8619.53223 16350.45488 1307.95630 0.07542 13.25952 0.16779 1.03345 -6153.28395 7.06531 6.19789 7.05907 7.08265 6.21728 6.21728 6.22036 6.22261 6.22036 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 6020.64604 4033.83285 1986.81319 201.26681 0.35171 0.19782 8.61939 8.61939 59763.67575 50499.96748 24834.22934 18242.42823 22359.47253 8433.99456 1807.84314 1807.84314 1861.36460 3309.50219 39880.34790 30810.84976 69055.80311 40059.92721 40064.67011 7594.17226 9069.49814 231.31836 8838.17978 2499.65736 10093.82962 82756.01893 2110.80508 80645.21385 -49531.02893 32776.99223 6.90415 7.31733 6.88427 6.88427 6.73099 6.96283 6.73127 29786.51828 1070.22533 6276.75763 6276.75763 2926.42597 6276.75763 10273.40893 42964.81381 8831.45940 128871.60111 128871.60111 29591.81754 399.15528 7.09106 100.00000 408.76852 19912.09111 9679.72644 0.02176 0.00000 0.16463 11679.64885 6660.20337 42776.95685 42776.95685 72526.32783 43231.05754 10658.37539 1.02700 4403.16321 431.80442 11392.92842 90513.61446 24076.22005 12083.15584 0.05377 18.59641 0.14651 0.94413 8651.06772 7.05527 7.24346 7.05621 7.05607 6.78867 6.78867 6.84269 6.83943 6.84269 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 65866.12446 45447.62591 20418.49855 -1285.44709 1.25874 0.21592 9.10358 9.10358 582025.54917 466033.28834 229179.90118 168348.20358 206341.88535 88565.42774 11144.19434 11144.19434 11205.07146 30992.17907 19177.93215 4301.58000 44773.44785 44773.44785 13012.73971 165.55096 7.18322 100.00000 517.41507 8168.37606 4844.36365 0.02176 0.00000 0.55484 6059.52956 2714.80298 19107.92095 19107.92095 31354.27747 19277.52288 5343.07208 1.02700 2198.51404 144.47316 5664.55690 45551.87882 25473.48143 12681.91398 0.05348 18.69900 0.13004 0.92571 10950.43442 7.09497 7.36363 7.09570 7.09559 6.84411 6.84411 6.89587 6.89393 6.89587 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 28639.47449 19761.23741 8878.23708 -482.78828 0.66614 0.20937 8.52113 8.52113 260223.72842 204772.57239 100700.44157 73971.31403 90665.53770 44571.37194 5576.76378 5576.76378 5594.54570 13855.35643 1483.30430 1442.38879 34.09722 635.60227 670.12247 11354.16364 6.78823 6.78823 292.50678 629.20696 9966.21417 2022.77423 65707.11658 65707.11658 7209.24491 111.70794 7.18851 100.00000 356.47315 4463.29264 2745.95227 0.02176 0.00000 0.56895 2995.81073 3439.10571 9918.19862 9918.19862 17522.80440 10028.44065 2579.99483 1.02700 1009.59497 140.15377 2816.72337 22994.10918 16125.62011 7077.19383 0.05609 17.82919 0.14234 0.99370 7544.30245 7.33145 6.89545 7.33424 7.33434 6.70409 6.70409 6.75540 6.75133 6.75540 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 14083.69870 9436.07814 4647.62056 -324.36413 0.58570 0.19148 9.67630 9.67630 146015.39126 111779.89769 54969.69113 40378.97175 49491.90417 22499.16067 2739.51781 2739.51781 2768.70782 7486.36141 2707.03385 219.58334 4089.64381 4089.64381 1878.68103 22.82057 6.69614 100.00000 2383.81070 564.75763 1313.92340 0.02176 0.00000 9.25925 342.68740 291.55923 2681.85746 2681.85746 3322.50501 2732.26672 254.50849 1.02700 367.89400 21.62878 304.15536 6559.54856 54086.71673 2080.83748 0.06065 16.48800 0.17580 1.06586 50450.33018 6.57871 6.10952 6.59077 6.59078 5.07153 5.07153 5.29400 5.29061 5.29400 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3030.94578 1727.63910 1303.30668 -133.28381 0.12471 0.16831 2.62369 2.62369 37743.36378 29558.84611 14536.07200 10677.73219 13087.53729 6418.34842 277.96266 277.96266 278.97897 1999.36364 6.64733 6.26529 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7694.83393 8229.77453 1.07755 5.90455 6.87747 6.87747 6.97707 0.16691 1036.12811 6613.45780 6613.45780 3218.93275 17692.16658 4843.32287 45750.75787 45750.75787 12272.29400 214.62064 7.33969 100.00000 630.79107 7684.87837 4587.41564 0.02176 0.00000 0.85628 5558.75352 2587.71749 17635.44082 17635.44082 28351.02881 17765.03756 5882.55111 1.02700 2001.29621 293.01725 6385.73113 41223.35147 60186.97047 9015.00065 0.05512 18.14208 0.13262 0.88273 13349.89358 7.33350 7.19939 7.33546 7.33559 6.65641 6.65641 6.72314 6.69905 6.72314 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 25763.31132 17776.68483 7986.62650 -381.37508 0.35143 0.19770 8.92256 8.92256 243350.64339 193420.82451 95118.02390 69870.64909 85639.41376 40335.98671 6082.24357 6082.24357 6329.00538 13013.15956 3993.92202 1105.65572 9191.94265 9191.94265 2721.64509 45.66181 7.54926 100.00000 577.76866 1437.58321 1284.06188 0.02176 0.00000 1.63522 1295.51526 490.13978 3964.12717 3964.12717 6833.42402 4024.65861 1338.59655 1.02700 451.47893 22.98401 1400.47792 10406.66172 25803.45536 1181.24419 0.06400 15.62598 0.11809 1.18232 12227.74095 7.52225 5.77715 7.53264 7.55239 6.13587 6.13587 6.13929 6.14584 6.13929 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 6343.28423 4376.86612 1966.41811 -182.91912 0.21284 0.20924 6.24796 6.24796 54783.86849 42228.11742 20766.40450 15254.33459 18697.01067 10182.66862 1315.25449 1315.25449 1370.68307 2898.87662 40438.78966 3979.19738 87250.26917 87250.26917 29408.45878 652.46391 7.69415 100.00000 -2780.39897 8475.68242 20932.77636 0.02176 0.00000 1.00000 4791.45147 5022.45825 40673.00158 40673.00158 57873.61261 40196.12338 5784.51221 1.02700 4177.35810 351.45126 6384.28277 47247.37944 152999.50124 19043.68940 0.08153 12.26542 0.24965 1.04811 -58843.62007 7.53201 6.02628 7.52403 7.53525 6.11703 6.11703 6.14582 6.14522 6.14582 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 52851.15436 37524.31962 15326.83474 1439.42402 0.39017 0.17475 5.86949 5.86949 539729.60569 487199.46201 239588.73199 175994.19683 215713.46535 46230.32177 6585.71484 6585.71483 6618.49469 30452.73611 237361.94935 11693.66578 + 4445.90563 1235.10983 13415.91977 13415.91977 3199.85579 87.42345 7.40678 100.00000 -305.16593 2451.69370 748.16209 0.02176 0.00000 0.74787 2033.02594 698.77766 4478.97358 4478.97358 7018.01159 4406.33875 1805.61662 1.02700 411.44899 35.86828 1869.24664 8809.16271 16350.45488 1372.82308 0.07542 13.25952 0.16779 1.03345 -6458.44989 7.25607 6.36524 7.24966 7.27388 6.38515 6.38515 6.38831 6.39062 6.38831 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 6319.23393 4233.88674 2085.34719 211.24843 0.35687 0.19782 8.61939 8.61939 61078.47629 51610.96617 25380.58210 18643.76144 22851.38066 8619.54273 1847.61567 1847.61567 1902.31460 3382.31118 40757.71510 31488.68810 72480.55624 40941.24515 40946.09240 7761.24396 9269.02699 236.40736 9032.61963 2554.64979 10315.89376 84577.00422 2157.23999 82419.76424 -51987.47051 33498.05069 7.09056 7.51490 7.07015 7.07015 6.91272 7.15083 6.91301 30441.82134 1093.77028 6414.84623 6414.84622 2990.80730 6414.84623 10499.42381 43910.03922 9025.75140 135262.85860 135262.85860 30242.83719 407.93669 7.28252 100.00000 429.04098 20350.15688 9892.68031 0.02176 0.00000 0.16463 11936.60099 6990.50946 43718.04941 43718.04941 76123.19815 44182.14031 10892.85952 1.02700 4500.03274 441.30412 11643.57271 92504.93467 24076.22005 12682.40780 0.05377 18.59641 0.14651 0.94413 9080.10870 7.24577 7.43904 7.24672 7.24658 6.97197 6.97197 7.02744 7.02410 7.02744 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 69132.68869 47701.55523 21431.13346 -1349.19755 1.27778 0.21592 9.10358 9.10358 594830.11344 476286.01521 234221.85634 172051.86211 210881.40444 90513.87514 11389.36649 11389.36648 11451.58291 31674.00604 19599.84644 4396.21472 46993.94198 46993.94198 13299.01983 169.19308 7.37716 100.00000 543.07575 8348.08024 4950.93959 0.02176 0.00000 0.55484 6192.83914 2849.44091 19528.29499 19528.29499 32909.26134 19701.62816 5460.61960 1.02700 2246.88132 147.65156 5789.17709 46554.02505 25473.48143 13310.86076 0.05348 18.69900 0.13004 0.92571 11493.51018 7.28653 7.56245 7.28728 7.28717 7.02890 7.02890 7.08206 7.08007 7.08206 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 30059.82044 20741.27612 9318.54432 -506.73168 0.67622 0.20937 8.52113 8.52113 265948.64966 209277.56657 102915.85011 75598.68208 92660.17847 45551.94388 5699.45252 5699.45252 5717.62564 14160.17396 1515.93698 1474.12132 34.84736 649.58551 684.86516 11917.26198 6.97151 6.97151 298.94193 643.04950 10185.47077 2067.27524 68965.79496 68965.79496 7367.84821 114.16551 7.38260 100.00000 374.15208 4561.48503 2806.36318 0.02176 0.00000 0.56895 3061.71853 3609.66470 10136.39888 10136.39888 18391.83027 10249.06623 2636.75469 1.02700 1031.80604 143.23716 2878.69125 23499.98216 16125.62011 7428.18014 0.05609 17.82919 0.14234 0.99370 7918.45453 7.52940 7.08163 7.53226 7.53237 6.88511 6.88511 6.93779 6.93362 6.93779 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 14782.16557 9904.05095 4878.11462 -340.45064 0.59430 0.19148 9.67630 9.67630 149227.72949 114239.05412 56179.02369 41267.30866 50580.72548 22994.14329 2799.78717 2799.78717 2829.61936 7651.06121 2766.58857 224.41417 4292.46559 4292.46559 1920.01199 23.32263 6.87694 100.00000 2502.03339 577.18229 1342.82970 0.02176 0.00000 9.25925 350.22652 306.01882 2740.85830 2740.85830 3487.28131 2792.37656 260.10767 1.02700 375.98767 22.10462 310.84678 6703.85885 54086.71673 2184.03452 0.06065 16.48800 0.17580 1.06586 52952.36357 6.75634 6.27448 6.76872 6.76873 5.20846 5.20846 5.43694 5.43346 5.43694 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3181.26249 1813.31962 1367.94287 -139.89389 0.12627 0.16831 2.62369 2.62369 38573.71743 30209.14037 14855.86541 10912.64218 13375.46295 6559.55210 284.07783 284.07783 285.11651 2043.34960 6.82681 6.43446 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 7864.12019 8410.82948 1.07755 6.06397 7.06316 7.06316 7.16545 0.16691 1058.92292 6758.95380 6758.95380 3289.74923 18081.39404 4949.87592 48019.72071 48019.72071 12542.28433 219.34229 7.53786 100.00000 662.07451 7853.94560 4688.33873 0.02176 0.00000 0.85628 5681.04603 2716.05273 18023.42032 18023.42032 29757.06958 18155.86818 6011.96717 1.02700 2045.32470 299.46362 6526.21714 42130.26702 60186.97047 9462.09054 0.05512 18.14208 0.13262 0.88273 14011.96809 7.53150 7.39377 7.53352 7.53365 6.83613 6.83613 6.90466 6.87992 6.90466 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 27041.01685 18658.30164 8382.71521 -400.28899 0.35675 0.19770 8.92256 8.92256 248704.35564 197676.08037 97210.61932 71407.80256 87523.47987 41223.37891 6216.05286 6216.05286 6468.24342 13299.44886 4081.78826 1129.98014 9647.80780 9647.80780 2781.52125 46.66637 7.75309 100.00000 606.42252 1469.21003 1312.31122 0.02176 0.00000 1.63522 1324.01658 514.44777 4051.33792 4051.33792 7172.32081 4113.20105 1368.04566 1.02700 461.41146 23.48965 1431.28842 10635.61037 25803.45536 1239.82681 0.06400 15.62598 0.11809 1.18232 12834.16347 7.72535 5.93314 7.73602 7.75630 6.30154 6.30154 6.30505 6.31178 6.30505 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 6657.87304 4593.93240 2063.94064 -191.99081 0.21606 0.20924 6.24796 6.24796 55989.11401 43157.13551 21223.26516 15589.92977 19108.34469 10406.68827 1344.19007 1344.19007 1400.83808 2962.65182 41328.44257 4066.73967 91577.35856 91577.35856 30055.44454 666.81811 7.90189 100.00000 -2918.29005 8662.14734 21393.29720 0.02176 0.00000 1.00000 4896.86335 5271.54202 41567.80715 41567.80715 60743.79625 41080.43764 5911.77141 1.02700 4269.25993 359.18318 6524.73692 48286.82198 152999.50124 19988.14203 0.08153 12.26542 0.24965 1.04811 -61761.91011 7.73538 6.18899 7.72718 7.73870 6.28219 6.28219 6.31176 6.31115 6.31176 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 55472.25423 39385.30053 16086.95370 1510.81081 0.39625 0.17475 5.86949 5.86949 551603.65063 497917.84443 244859.68131 179866.06713 220459.15909 47247.38825 6730.60049 6730.60049 6764.10150 31122.69590 249133.67659 11950.92629 + 4543.71550 1262.28223 14081.26882 14081.26882 3270.25258 89.34677 7.60676 100.00000 -320.30033 2505.63094 764.62165 0.02176 0.00000 0.74787 2077.75249 733.43283 4577.51095 4577.51095 7366.06281 4503.27815 1845.34016 1.02700 420.50086 36.65739 1910.37004 9002.96505 16350.45488 1440.90686 0.07542 13.25952 0.16779 1.03345 -6778.75021 7.45198 6.53710 7.44540 7.47027 6.55755 6.55755 6.56080 6.56317 6.56080 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 6632.62998 4443.86209 2188.76789 221.72509 0.36211 0.19782 8.61939 8.61939 62422.20243 52746.40681 25938.95461 19053.92397 23354.11077 8809.17294 1888.26319 1888.26319 1944.16549 3456.72196 41654.38436 32181.43888 76075.15656 41841.95207 41846.90596 7931.99124 9472.94548 241.60832 9231.33716 2610.85206 10542.84330 86438.01932 2204.69671 84233.32262 -54565.73684 34234.97558 7.28201 7.71780 7.26104 7.26104 7.09937 7.34390 7.09966 31111.54106 1117.83321 6555.97277 6555.97277 3056.60503 6555.97277 10730.41101 44876.05958 9224.31783 141971.08409 141971.08409 30908.17926 416.91129 7.47915 100.00000 450.31883 20797.86010 10110.31916 0.02176 0.00000 0.16463 12199.20608 7337.19675 44679.84600 44679.84600 79898.45163 45154.14689 11132.50231 1.02700 4599.03341 451.01280 11899.73118 94540.06330 24076.22005 13311.37907 0.05377 18.59641 0.14651 0.94413 9530.42754 7.44140 7.63989 7.44239 7.44224 7.16021 7.16021 7.21719 7.21375 7.21719 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 72561.25488 50067.26591 22493.98898 -1416.10965 1.29711 0.21592 9.10358 9.10358 607916.37772 486764.30195 239374.73446 175837.00109 215520.79289 92505.18812 11639.93242 11639.93242 11703.51760 32370.83320 20031.04283 4492.93139 49324.55929 49324.55929 13591.59812 172.91533 7.57635 100.00000 570.00905 8531.73791 5059.86021 0.02176 0.00000 0.55484 6329.08153 2990.75606 19957.91726 19957.91726 34541.36307 20135.06376 5580.75317 1.02700 2296.31268 150.89990 5916.53892 47578.21835 25473.48143 13970.99952 0.05348 18.69900 0.13004 0.92571 12063.51922 7.48327 7.76663 7.48404 7.48392 7.21868 7.21868 7.27328 7.27123 7.27328 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 31550.60701 21769.91886 9780.68816 -531.86253 0.68645 0.20937 8.52113 8.52113 271799.51904 213881.67056 105179.99761 77261.85221 94698.70132 46554.08834 5824.84041 5824.84041 5843.41334 14471.69748 1549.28758 1506.55198 35.61400 663.87639 699.93218 12508.28660 7.15974 7.15974 305.51865 657.19658 10409.55101 2112.75527 72386.08423 72386.08423 7529.94079 116.67715 7.58193 100.00000 392.70777 4661.83765 2868.10314 0.02176 0.00000 0.56895 3129.07630 3788.68239 10359.39954 10359.39954 19303.95461 10474.54557 2694.76326 1.02700 1054.50576 146.38837 2942.02243 24016.98428 16125.62011 7796.57327 0.05609 17.82919 0.14234 0.99370 8311.16230 7.73269 7.27283 7.73563 7.73575 7.07100 7.07100 7.12511 7.12083 7.12511 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 15515.27222 10395.23240 5120.03981 -357.33495 0.60303 0.19148 9.67630 9.67630 152510.73910 116752.31196 57414.96156 42175.18897 51693.50085 23500.01549 2861.38246 2861.38246 2891.87096 7819.38440 2827.45348 229.35128 4505.34610 4505.34610 1962.25223 23.83572 7.06261 100.00000 2626.11922 589.88030 1372.37194 0.02176 0.00000 9.25925 357.93150 321.19551 2801.15715 2801.15715 3660.22952 2853.80881 265.83004 1.02700 384.25939 22.59092 317.68540 6851.34395 54086.71673 2292.34952 0.06065 16.48800 0.17580 1.06586 55578.48279 6.93876 6.44389 6.95148 6.95149 5.34909 5.34909 5.58374 5.58016 5.58374 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3339.03401 1903.24939 1435.78462 -146.83178 0.12784 0.16831 2.62369 2.62369 39422.33886 30873.74110 15182.69428 11152.72018 13669.72298 6703.86227 290.32754 290.32754 291.38907 2088.30326 7.01114 6.60819 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8037.13074 8595.86763 1.07755 6.22770 7.25386 7.25386 7.35892 0.16691 1082.21921 6907.65070 6907.65070 3362.12368 18479.18450 5058.77313 50401.21049 50401.21049 12818.21444 224.16782 7.74138 100.00000 694.90943 8026.73231 4791.48213 0.02176 0.00000 0.85628 5806.02898 2850.75264 18419.93536 18419.93536 31232.84153 18555.29707 6144.23038 1.02700 2090.32182 306.05182 6669.79384 43057.13464 60186.97047 9931.35341 0.05512 18.14208 0.13262 0.88273 14706.87752 7.73485 7.59340 7.73693 7.73706 7.02071 7.02071 7.09109 7.06568 7.09109 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 28382.08889 19583.64135 8798.44754 -420.14092 0.36215 0.19770 8.92256 8.92256 254175.84947 202024.95181 99349.25181 72978.77339 89448.99541 42130.29369 6352.80595 6352.80595 6610.54470 13592.03652 4171.58756 1154.83969 10126.28113 10126.28113 2842.71469 47.69303 7.96242 100.00000 636.49743 1501.53263 1341.18206 0.02176 0.00000 1.63522 1353.14493 539.96129 4140.46731 4140.46731 7528.02485 4203.69143 1398.14265 1.02700 471.56250 24.00643 1462.77675 10869.59584 25803.45536 1301.31477 0.06400 15.62598 0.11809 1.18232 13470.66090 7.93393 6.09333 7.94490 7.96572 6.47168 6.47168 6.47528 6.48220 6.47528 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 6988.06356 4821.76386 2166.29970 -201.51240 0.21933 0.20924 6.24796 6.24796 57220.87490 44106.59198 21690.17675 15932.90804 19528.72805 10635.63632 1373.76224 1373.76224 1431.65651 3027.83007 42237.66783 4156.20790 96119.04559 96119.04559 30716.66397 681.48810 8.11525 100.00000 -3063.01970 8852.71448 21863.94949 0.02176 0.00000 1.00000 5004.59428 5532.97884 42482.29843 42482.29843 63756.32376 41984.20680 6041.83032 1.02700 4363.18360 367.08520 6668.28106 49349.13220 152999.50124 20979.43383 0.08153 12.26542 0.24965 1.04811 -64824.92981 7.94423 6.35609 7.93581 7.94765 6.45181 6.45181 6.48217 6.48155 6.48217 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 58223.34492 41338.57492 16884.77000 1585.73795 0.40242 0.17475 5.86949 5.86949 563738.92441 508872.03114 250246.59144 183823.11852 225309.25802 48286.83019 6878.67362 6878.67362 6912.91166 31807.39480 261489.21080 12213.84653 + 4643.67719 1290.05243 14779.61519 14779.61519 3342.19810 91.31239 7.81214 100.00000 -336.18530 2560.75479 781.44331 0.02176 0.00000 0.74787 2123.46302 769.80670 4678.21614 4678.21614 7731.37530 4602.35022 1885.93762 1.02700 429.75187 37.46385 1952.39816 9201.03100 16350.45488 1512.36718 0.07542 13.25952 0.16779 1.03345 -7114.93552 7.65319 6.71360 7.64643 7.67197 6.73460 6.73460 6.73794 6.74038 6.73794 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 6961.56860 4664.25097 2297.31763 232.72132 0.36743 0.19782 8.61939 8.61939 63795.49051 53906.82714 26509.61131 19473.11008 23867.90094 9002.97501 1929.80496 1929.80496 1986.93711 3532.76978 42570.78034 32889.43017 79848.02746 42762.47454 42767.53741 8106.49496 9681.35017 246.92370 9434.42647 2668.29077 10774.78573 88339.94776 2253.19770 86086.75006 -57271.86970 34988.11568 7.47862 7.92618 7.45709 7.45709 7.29105 7.54218 7.29135 31795.99461 1142.42553 6700.20410 6700.20409 3123.85031 6700.20410 10966.47993 45863.33238 9427.25272 149011.99727 149011.99727 31588.15885 426.08333 7.68108 100.00000 472.65194 21255.41279 10332.74607 0.02176 0.00000 0.16463 12467.58847 7701.07765 45662.80210 45662.80210 83860.93502 46147.53760 11377.41723 1.02700 4700.21210 460.93508 12161.52513 96619.96415 24076.22005 13971.54353 0.05377 18.59641 0.14651 0.94413 10003.07948 7.64232 7.84617 7.64333 7.64318 7.35353 7.35353 7.41205 7.40852 7.41205 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 76159.85738 52550.30163 23609.55575 -1486.34019 1.31674 0.21592 9.10358 9.10358 621290.53941 497473.11087 244640.97583 179705.41308 220262.24783 94540.30971 11896.01080 11896.01080 11960.99485 33082.99058 20471.72555 4591.77583 51770.76122 51770.76122 13890.61312 176.71946 7.78091 100.00000 598.27807 8719.43605 5171.17707 0.02176 0.00000 0.55484 6468.32125 3139.07960 20396.99121 20396.99121 36254.40725 20578.03493 5703.52968 1.02700 2346.83154 154.21969 6046.70270 48624.94374 25473.48143 14663.87719 0.05348 18.69900 0.13004 0.92571 12661.79729 7.68532 7.97633 7.68611 7.68599 7.41358 7.41358 7.46966 7.46755 7.46966 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 33115.32765 22849.57610 10265.75155 -558.23972 0.69683 0.20937 8.52113 8.52113 277779.10741 218587.06479 107493.95633 78961.61206 96782.07165 47578.27989 5952.98683 5952.98683 5971.96837 14790.07451 1583.37188 1539.69610 36.39751 678.48166 715.33068 13128.62250 7.35305 7.35305 312.24006 671.65490 10638.56102 2159.23586 75975.99930 75975.99930 7695.59940 119.24405 7.78664 100.00000 412.18372 4764.39802 2931.20138 0.02176 0.00000 0.56895 3197.91595 3976.57828 10587.30621 10587.30621 20261.31483 10704.98545 2754.04802 1.02700 1077.70488 149.60891 3006.74689 24545.36037 16125.62011 8183.23648 0.05609 17.82919 0.14234 0.99370 8723.34602 7.94147 7.46920 7.94449 7.94461 7.26192 7.26192 7.31749 7.31309 7.31749 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 16284.73655 10910.77350 5373.96304 -375.05662 0.61189 0.19148 9.67630 9.67630 155865.97485 119320.86145 58678.09004 43103.04264 52830.75727 24017.01684 2924.33284 2924.33284 2955.49208 7991.41070 2889.65743 234.39700 4728.78421 4728.78421 2005.42176 24.36011 7.25331 100.00000 2756.35896 602.85766 1402.56410 0.02176 0.00000 9.25925 365.80598 337.12488 2862.78257 2862.78257 3841.75492 2916.59257 271.67830 1.02700 392.71309 23.08792 324.67448 7002.07372 54086.71673 2406.03629 0.06065 16.48800 0.17580 1.06586 58334.84176 7.12611 6.61788 7.13917 7.13918 5.49351 5.49351 5.73450 5.73083 5.73450 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3504.63004 1997.63913 1506.99091 -154.11376 0.12944 0.16831 2.62369 2.62369 40289.62993 31552.96304 15516.71337 11398.07989 13970.45673 6851.34725 296.71475 296.71475 297.79962 2134.24590 7.20044 6.78661 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8213.94752 8784.97662 1.07755 6.39584 7.44972 7.44972 7.55761 0.16691 1106.02802 7059.61894 7059.61894 3436.09036 18885.72635 5170.06608 52900.80785 52900.80785 13100.21501 229.09951 7.95040 100.00000 729.37276 8203.32033 4896.89468 0.02176 0.00000 0.85628 5933.76155 2992.13285 18825.17373 18825.17373 32781.80291 18963.51339 6279.40338 1.02700 2136.30888 312.78496 6816.52923 44004.39327 60186.97047 10423.88890 0.05512 18.14208 0.13262 0.88273 15436.25028 7.94370 7.79843 7.94582 7.94596 7.21027 7.21027 7.28255 7.25646 7.28255 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 29789.67006 20554.87236 9234.79770 -440.97739 0.36763 0.19770 8.92256 8.92256 259767.71606 206469.49836 101534.93419 74584.30555 91416.87227 43057.16057 6492.56761 6492.56761 6755.97661 13891.06111 4263.36244 1180.24615 10628.48387 10628.48387 2905.25438 48.74227 8.17740 100.00000 668.06388 1534.56633 1370.68805 0.02176 0.00000 1.63522 1382.91410 566.74013 4231.55754 4231.55754 7901.36967 4296.17259 1428.90177 1.02700 481.93687 24.53457 1494.95782 11108.72894 25803.45536 1365.85217 0.06400 15.62598 0.11809 1.18232 14138.72478 8.14815 6.25785 8.15941 8.18080 6.64642 6.64642 6.65012 6.65722 6.65012 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 7334.62954 5060.89439 2273.73515 -211.50621 0.22265 0.20924 6.24796 6.24796 58479.73449 45076.93649 22167.36038 16283.43184 19958.35984 10869.62121 1403.98499 1403.98499 1463.15293 3094.44225 43166.89604 4247.64443 100885.97303 100885.97303 31392.43023 696.48083 8.33436 100.00000 -3214.92707 9047.47410 22344.95613 0.02176 0.00000 1.00000 5114.69530 5807.38137 43416.90851 43416.90851 66918.25454 42907.85887 6174.75051 1.02700 4459.17359 375.16108 6814.98317 50434.81318 152999.50124 22019.88776 0.08153 12.26542 0.24965 1.04811 -68039.85689 8.15873 6.52770 8.15008 8.16224 6.62601 6.62601 6.65719 6.65655 6.65719 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 61110.87318 43388.71999 17722.15319 1664.38103 0.40868 0.17475 5.86949 5.86949 576141.17407 520067.20982 255752.01354 187867.22500 230266.05908 49349.13984 7030.00436 7030.00436 7064.99564 32507.15708 274457.50531 12482.55102 + 4745.83803 1318.43356 15512.59535 15512.59535 3415.72642 93.32127 8.02307 100.00000 -352.85807 2617.09136 798.63506 0.02176 0.00000 0.74787 2170.17918 807.98449 4781.13684 4781.13684 8114.80508 4703.60187 1927.42823 1.02700 439.20641 38.28805 1995.35090 9403.45439 16350.45488 1587.37151 0.07542 13.25952 0.16779 1.03345 -7467.79359 7.85982 6.89487 7.85288 7.87911 6.91644 6.91644 6.91986 6.92237 6.91986 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 7306.82059 4895.56980 2411.25079 244.26290 0.37283 0.19782 8.61939 8.61939 65198.99090 55092.77670 27092.82245 19901.51827 24392.99448 9201.04071 1972.26064 1972.26064 2030.64971 3610.49066 43507.33702 33612.99726 83808.01011 43703.24849 43708.42275 8284.83776 9894.33977 252.35602 9641.98375 2726.99314 11011.83089 90283.69223 2302.76593 87980.92630 -60112.21050 35757.82745 7.68054 8.14019 7.65843 7.65843 7.48791 7.74582 7.48822 32495.50613 1167.55888 6847.60851 6847.60851 3192.57498 6847.60851 11207.74236 46872.32517 9634.65217 156402.09747 156402.09747 32283.09799 435.45716 7.88847 100.00000 496.09264 21723.03162 10560.06637 0.02176 0.00000 0.16463 12741.87527 8083.00485 46667.38322 46667.38322 88019.93379 47162.78290 11627.72028 1.02700 4803.61671 471.07564 12429.07854 98745.62222 24076.22005 14664.44819 0.05377 18.59641 0.14651 0.94413 10499.17212 7.84866 8.05802 7.84970 7.84955 7.55208 7.55208 7.61217 7.60855 7.61217 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 79936.92894 55156.48101 24780.44793 -1560.05374 1.33666 0.21592 9.10358 9.10358 634958.93225 508417.51345 250023.07445 183658.93008 225108.01472 96620.20372 12157.72290 12157.72290 12224.13660 33810.81542 20922.10327 4692.79484 54338.28007 54338.28007 14196.20645 180.60729 7.99099 100.00000 627.94907 8911.26354 5284.94291 0.02176 0.00000 0.55484 6610.62425 3294.75910 20845.72478 20845.72478 38052.40813 21030.75146 5829.00726 1.02700 2398.46180 157.61252 6179.73009 49694.69693 25473.48143 15391.11744 0.05348 18.69900 0.13004 0.92571 13289.74636 7.89282 8.19169 7.89363 7.89351 7.61375 7.61375 7.67134 7.66918 7.67134 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 34757.64903 23982.77785 10774.87118 -585.92505 0.70737 0.20937 8.52113 8.52113 283890.24659 223395.97763 109858.82211 80698.76661 98911.27610 48625.00360 6083.95248 6083.95248 6103.35160 15115.45584 1618.20605 1573.56940 37.19825 693.40825 731.06795 13779.72333 7.55159 7.55159 319.10933 686.43130 10872.60924 2206.73903 79743.95260 79743.95260 7864.90250 121.86742 7.99688 100.00000 432.62555 4869.21472 2995.68778 0.02176 0.00000 0.56895 3268.27006 4173.79269 10820.22683 10820.22683 21266.15437 10940.49501 2814.63705 1.02700 1101.41437 152.90031 3072.89528 25085.36067 16125.62011 8589.07587 0.05609 17.82919 0.14234 0.99370 9155.97157 8.15589 7.67086 8.15900 8.15912 7.45799 7.45799 7.51506 7.51054 7.51506 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 17092.36168 11451.88235 5640.47934 -393.65718 0.62088 0.19148 9.67630 9.67630 159295.02571 121945.91899 59969.00734 44051.30907 53993.03331 24545.39219 2988.66813 2988.66813 3020.51288 8167.22158 2953.22986 239.55374 4963.30351 4963.30351 2049.54102 24.89603 7.44914 100.00000 2893.05782 616.12052 1433.42050 0.02176 0.00000 9.25925 373.85371 353.84425 2925.76376 2925.76376 4032.28289 2980.75758 277.65521 1.02700 401.35278 23.59585 331.81731 7156.11952 54086.71673 2525.36124 0.06065 16.48800 0.17580 1.06586 61227.89957 7.31851 6.79656 7.33193 7.33194 5.64184 5.64184 5.88933 5.88556 5.88933 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3678.43864 2096.71003 1581.72861 -161.75688 0.13105 0.16831 2.62369 2.62369 41176.00140 32247.12785 15858.08089 11648.83752 14277.80661 7002.07689 303.24247 303.24247 304.35121 2181.19928 7.39485 6.96985 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8394.65428 8978.24600 1.07755 6.56853 7.65086 7.65086 7.76166 0.16691 1130.36062 7214.93048 7214.93047 3511.68431 19301.21211 5283.80748 55524.37023 55524.37023 13388.41959 234.13970 8.16506 100.00000 765.54527 8383.79329 5004.62631 0.02176 0.00000 0.85628 6064.30423 3140.52467 19239.32734 19239.32734 34407.58347 19380.71047 6417.55018 1.02700 2183.30765 319.66622 6966.49279 44972.49152 60186.97047 10940.85119 0.05512 18.14208 0.13262 0.88273 16201.79555 8.15818 8.00898 8.16036 8.16050 7.40495 7.40495 7.47918 7.45238 7.47918 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 31267.05880 21574.27059 9692.78821 -462.84722 0.37319 0.19770 8.92256 8.92256 265482.60363 211011.82489 103768.70156 76225.15941 93428.04239 44004.41848 6635.40402 6635.40402 6904.60802 14196.66423 4357.15636 1206.21155 11155.59284 11155.59284 2969.16994 49.81460 8.39819 100.00000 701.19584 1568.32677 1400.84317 0.02176 0.00000 1.63522 1413.33820 594.84704 4324.65176 4324.65176 8293.23016 4390.68834 1460.33759 1.02700 492.53948 25.07433 1527.84688 11353.12292 25803.45536 1433.59023 0.06400 15.62598 0.11809 1.18232 14839.92062 8.36815 6.42681 8.37971 8.40168 6.82587 6.82587 6.82967 6.83696 6.82967 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 7698.38312 5311.88436 2386.49876 -221.99564 0.22602 0.20924 6.24796 6.24796 59766.28895 46068.62856 22655.04205 16641.66715 20397.44352 11108.75374 1434.87265 1434.87265 1495.34228 3162.51990 44116.56726 4341.09255 105889.31144 105889.31144 32083.06334 711.80340 8.55938 100.00000 -3374.36814 9246.51843 22836.54491 0.02176 0.00000 1.00000 5227.21854 6095.39261 44372.08000 44372.08000 70236.99810 43851.83127 6310.59495 1.02700 4557.27535 383.41461 6964.91272 51544.37909 152999.50124 23111.94196 0.08153 12.26542 0.24965 1.04811 -71414.22502 8.37901 6.70395 8.37013 8.38262 6.80491 6.80491 6.83694 6.83627 6.83694 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 64141.60550 45540.53994 18601.06556 1746.92434 0.41505 0.17475 5.86949 5.86949 588816.27308 531508.68230 261378.55486 192000.30177 235331.90970 50434.82029 7184.66438 7184.66438 7220.42546 33222.31412 288068.94935 12757.16700 + 4850.24642 1347.43909 16281.92692 16281.92692 3490.87236 95.37433 8.23969 100.00000 -370.35772 2674.66734 816.20502 0.02176 0.00000 0.74787 2217.92310 848.05567 4886.32180 4886.32180 8517.25068 4807.08106 1969.83163 1.02700 448.86895 39.13039 2039.24860 9610.33107 16350.45488 1666.09561 0.07542 13.25952 0.16779 1.03345 -7838.15131 8.07204 7.08103 8.06491 8.09185 7.10318 7.10318 7.10670 7.10927 7.10670 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 7669.19502 5138.36067 2530.83435 256.37687 0.37830 0.19782 8.61939 8.61939 66633.36828 56304.81713 27688.86422 20339.35144 24929.64007 9403.46385 2015.65036 2015.65036 2075.32398 3689.92139 44464.49794 34352.48281 87964.38411 44664.71946 44670.00755 8467.10409 10112.01513 257.90785 9854.10728 2786.98696 11254.09105 92270.17506 2353.42484 89916.75021 -63093.41514 36544.47525 7.88792 8.35997 7.86521 7.86521 7.69008 7.95496 7.69040 33210.40689 1193.24516 6998.25582 6998.25582 3262.81159 6998.25582 11454.31256 47903.51578 9846.61441 164158.70225 164158.70225 32993.32578 445.03722 8.10146 100.00000 520.69585 22200.93807 10792.38771 0.02176 0.00000 0.16463 13022.19638 8483.87335 47694.06512 47694.06512 92385.19392 48200.36358 11883.52999 1.02700 4909.29622 481.43930 12702.51813 100918.04419 24076.22005 15391.71675 0.05377 18.59641 0.14651 0.94413 11019.86797 8.06058 8.27558 8.06164 8.06148 7.75599 7.75599 7.81770 7.81398 7.81770 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 83901.32057 57891.91124 26009.40933 -1637.42304 1.35688 0.21592 9.10358 9.10358 648928.02934 519602.69275 255523.57918 187699.42442 230060.38843 98745.85515 12425.19266 12425.19266 12493.06747 34554.65242 21382.38931 4796.03628 57033.13244 57033.13244 14508.52283 184.58065 8.20675 100.00000 659.09156 9107.31124 5401.21159 0.02176 0.00000 0.55484 6756.05790 3458.15936 21304.33049 21304.33049 39939.57906 21493.42775 5957.24536 1.02700 2451.22794 161.08000 6315.68409 50787.98455 25473.48143 16154.42443 0.05348 18.69900 0.13004 0.92571 13948.83792 8.10593 8.41287 8.10676 8.10664 7.81932 7.81932 7.87846 7.87625 7.87846 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 36481.41970 25172.17961 11309.24008 -614.98342 0.71807 0.20937 8.52113 8.52113 290135.83070 228310.68649 112275.71492 82474.13854 101087.32302 49694.75515 6217.79936 6217.79936 6237.62527 15447.99556 1653.80656 1608.18791 38.01661 708.66322 747.15143 14463.11486 7.75548 7.75548 326.12973 701.53278 11111.80651 2255.28726 83698.77375 83698.77375 8037.93026 124.54850 8.21279 100.00000 454.08118 4976.33739 3061.59287 0.02176 0.00000 0.56895 3340.17196 4380.78774 11058.27169 11058.27169 22320.82792 11181.18577 2876.55903 1.02700 1125.64548 156.26411 3140.49895 25637.24091 16125.62011 9015.04245 0.05609 17.82919 0.14234 0.99370 9610.05275 8.37610 7.87798 8.37929 8.37941 7.65936 7.65936 7.71797 7.71333 7.71797 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 17940.04018 12019.82694 5920.21324 -413.18021 0.62999 0.19148 9.67630 9.67630 162799.51562 124628.72776 61288.32480 45020.43736 55180.87942 25085.39176 3054.41879 3054.41879 3086.96412 8346.90031 3018.20088 244.82392 5209.45356 5209.45356 2094.63090 25.44374 7.65027 100.00000 3036.53611 629.67516 1464.95573 0.02176 0.00000 9.25925 382.07849 371.39280 2990.13053 2990.13053 4232.25991 3046.33421 283.76363 1.02700 410.18253 24.11496 339.11729 7313.55433 54086.71673 2650.60399 0.06065 16.48800 0.17580 1.06586 64264.43568 7.51611 6.98007 7.52989 7.52990 5.79417 5.79417 6.04834 6.04447 6.04834 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 3860.86711 2200.69426 1660.17285 -169.77904 0.13269 0.16831 2.62369 2.62369 42081.87303 32956.56428 16206.95848 11905.11181 14591.91819 7156.12259 309.91380 309.91380 311.04693 2229.18563 7.59451 7.15803 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8579.33657 9175.76731 1.07755 6.74588 7.85743 7.85743 7.97123 0.16691 1155.22854 7373.65886 7373.65886 3588.94133 19725.83856 5400.05118 58278.04555 58278.04555 13682.96467 239.29077 8.38552 100.00000 803.51171 8568.23664 5114.72803 0.02176 0.00000 0.85628 6197.71886 3296.27583 19662.59232 19662.59232 36113.99298 19807.08588 6558.73621 1.02700 2231.34039 326.69887 7119.75556 45961.88786 60186.97047 11483.45170 0.05512 18.14208 0.13262 0.88273 17005.30726 8.37845 8.22523 8.38069 8.38083 7.60488 7.60488 7.68112 7.65359 7.68112 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 32817.71715 22644.22485 10173.49230 -485.80166 0.37883 0.19770 8.92256 8.92256 271323.21863 215654.08254 106051.61178 77902.11203 95483.45824 44972.51603 6781.38283 6781.38283 7056.50931 14508.99062 4453.01375 1232.74819 11708.84325 11708.84325 3034.49165 50.91052 8.62495 100.00000 735.97094 1602.82995 1431.66170 0.02176 0.00000 1.63522 1444.43162 624.34788 4419.79405 4419.79405 8704.52457 4487.28343 1492.46500 1.02700 503.37534 25.62596 1561.45949 11602.89351 25803.45536 1504.68770 0.06400 15.62598 0.11809 1.18232 15575.89155 8.59409 6.60034 8.60597 8.62852 7.01017 7.01017 7.01407 7.02156 7.01407 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 8080.17669 5575.32192 2504.85477 -233.00530 0.22944 0.20924 6.24796 6.24796 61081.14758 47082.13785 23153.45272 17007.78363 20846.18704 11353.14716 1466.43983 1466.43983 1528.23979 3232.09525 45087.13124 4436.59654 111140.78539 111140.78539 32788.89036 727.46307 8.79049 100.00000 -3541.71652 9449.94173 23338.94864 0.02176 0.00000 1.00000 5342.21729 6397.68747 45348.26526 45348.26526 73720.33142 44816.57106 6449.42797 1.02700 4657.53536 391.84973 7118.14072 52678.35539 152999.50124 24258.15548 0.08153 12.26542 0.24965 1.04811 -74955.94154 8.60525 6.88496 8.59613 8.60895 6.98864 6.98864 7.02153 7.02085 7.02153 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 67322.64394 47799.07724 19523.56671 1833.56130 0.42151 0.17475 5.86949 5.86949 601770.22411 543201.86702 267128.88001 196224.30618 240509.20898 51544.38571 7342.72691 7342.72691 7379.27474 33953.20461 302355.43928 13037.82453 + 4956.95178 1377.08273 17089.41271 17089.41271 3567.67152 97.47257 8.46216 100.00000 -388.72523 2733.51000 834.16152 0.02176 0.00000 0.74787 2266.71738 890.11413 4993.82082 4993.82082 8939.65517 4912.83679 2013.16790 1.02700 458.74406 39.99126 2084.11204 9821.75901 16350.45488 1748.72394 0.07542 13.25952 0.16779 1.03345 -8226.87654 8.28998 7.27221 8.28266 8.31033 7.29497 7.29497 7.29858 7.30122 7.29858 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 8049.54103 5393.19250 2656.34853 269.09163 0.38386 0.19782 8.61939 8.61939 68099.30193 57543.52244 28298.01891 20786.81694 25478.09186 9610.34028 2059.99464 2059.99464 2120.98108 3771.09960 45442.71639 35108.23704 92326.88931 45647.34278 45652.74721 8653.38028 10334.47935 263.58182 10070.89753 2848.30064 11501.68092 94300.33865 2405.19842 91895.14022 -66222.46964 37348.43145 8.10089 8.58569 8.07757 8.07757 7.89772 8.16974 7.89804 33941.03546 1219.49654 7152.21736 7152.21736 3334.59341 7152.21737 11706.30731 48957.39258 10063.23981 172299.98805 172299.98805 33719.17857 454.82803 8.32020 100.00000 546.51923 22689.35845 11029.82011 0.02176 0.00000 0.16463 13308.68455 8904.62252 48743.33401 48743.33401 96966.94474 49260.77102 12144.96752 1.02700 5017.30068 492.03096 12981.97338 103138.25888 24076.22005 16155.05347 0.05377 18.59641 0.14651 0.94413 11566.38720 8.27821 8.49902 8.27931 8.27914 7.96540 7.96540 8.02878 8.02496 8.02878 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 88062.32222 60763.00239 27299.31984 -1718.62939 1.37741 0.21592 9.10358 9.10358 663204.44617 531033.94586 261145.09494 191828.80958 235121.71430 100918.27065 12698.54676 12698.54676 12767.91481 35314.85384 21852.80163 4901.54902 59861.63330 59861.63330 14827.71017 188.64142 8.42833 100.00000 691.77854 9307.67198 5520.03819 0.02176 0.00000 0.55484 6904.69110 3629.66330 21773.02552 21773.02552 41920.34233 21966.28291 6088.30469 1.02700 2505.15492 164.62376 6454.62906 51905.32435 25473.48143 16955.58687 0.05348 18.69900 0.13004 0.92571 14640.61647 8.32479 8.64002 8.32564 8.32551 8.03044 8.03044 8.09118 8.08890 8.09118 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 38290.67903 26420.56856 11870.11047 -645.48290 0.72894 0.20937 8.52113 8.52113 296518.81752 233333.51889 114745.77933 84288.56863 103311.24294 50788.04117 6354.59088 6354.59087 6374.85295 15787.85115 1690.19029 1643.56802 38.85298 724.25380 763.58876 15180.39850 7.96488 7.96488 333.30458 716.96649 11356.26613 2304.90355 87849.73029 87849.73029 8214.76464 127.28856 8.43454 100.00000 476.60088 5085.81676 3128.94788 0.02176 0.00000 0.56895 3413.65571 4598.04850 11301.55354 11301.55354 23427.80694 11427.17173 2939.84330 1.02700 1150.40966 159.70192 3209.58989 26201.26245 16125.62011 9462.13442 0.05609 17.82919 0.14234 0.99370 10086.65363 8.60226 8.09068 8.60553 8.60566 7.86616 7.86616 7.92636 7.92159 7.92636 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 18829.75844 12615.93818 6213.82026 -433.67147 0.63925 0.19148 9.67630 9.67630 166381.10424 127370.55829 62636.66723 46010.88646 56394.85812 25637.27128 3121.61597 3121.61597 3154.87730 8530.53196 3084.60126 250.21004 5467.81117 5467.81117 2140.71275 26.00350 7.85683 100.00000 3187.13006 643.52801 1497.18474 0.02176 0.00000 9.25925 390.48421 389.81165 3055.91336 3055.91336 4442.15459 3113.35353 290.00642 1.02700 419.20654 24.64549 346.57786 7474.45268 54086.71673 2782.05803 0.06065 16.48800 0.17580 1.06586 67451.56575 7.71905 7.16853 7.73320 7.73321 5.95061 5.95061 6.21165 6.20767 6.21165 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 4052.34293 2309.83548 1742.50746 -178.19907 0.13435 0.16831 2.62369 2.62369 43007.67382 33681.60831 16563.51138 12167.02413 14912.94022 7313.55728 316.73190 316.73190 317.88996 2278.22767 7.79956 7.35130 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8768.08188 9377.63409 1.07755 6.92802 8.06958 8.06958 8.18645 0.16691 1180.64356 7535.87927 7535.87927 3667.89799 20159.80678 5518.85225 61168.28662 61168.28662 13983.98974 244.55516 8.61193 100.00000 843.36106 8756.73775 5227.25199 0.02176 0.00000 0.85628 6334.06860 3459.75132 20095.16912 20095.16912 37905.03016 20242.84154 6703.02833 1.02700 2280.42986 333.88625 7276.39010 46973.05086 60186.97047 12052.96194 0.05512 18.14208 0.13262 0.88273 17848.66832 8.60466 8.44731 8.60697 8.60712 7.81021 7.81021 7.88851 7.86024 7.88851 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 34445.27884 23767.24242 10678.03642 -509.89451 0.38456 0.19770 8.92256 8.92256 277292.32707 220398.46981 108384.74601 79615.95759 97584.09321 45961.91169 6930.57318 6930.57317 7211.75244 14828.18820 4550.98000 1259.86863 12289.53156 12289.53156 3101.25043 52.03056 8.85782 100.00000 772.47067 1638.09219 1463.15824 0.02176 0.00000 1.63522 1476.20910 655.31178 4517.02947 4517.02947 9136.21672 4586.00362 1525.29922 1.02700 514.44959 26.18973 1595.81158 11858.15901 25803.45536 1579.31117 0.06400 15.62598 0.11809 1.18232 16348.36223 8.82613 6.77854 8.83833 8.86149 7.19945 7.19945 7.20345 7.21114 7.20345 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 8480.90494 5851.82441 2629.08052 -244.56096 0.23291 0.20924 6.24796 6.24796 62424.93305 48117.94433 23662.82841 17381.95468 21304.80291 11602.91722 1498.70149 1498.70149 1561.86105 3303.20127 46079.04761 4534.20161 116652.70091 116652.70091 33510.24557 743.46725 9.02783 100.00000 -3717.36437 9657.84034 23852.40524 0.02176 0.00000 1.00000 5459.74601 6714.97435 46345.92657 46345.92657 77376.41714 45802.53511 6591.31531 1.02700 4760.00108 400.47042 7274.73973 53837.27912 152999.50124 25461.21432 0.08153 12.26542 0.24965 1.04811 -78673.30591 8.83759 7.07085 8.82822 8.84139 7.17734 7.17734 7.21112 7.21042 7.21112 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 70661.44279 50169.62442 20491.81837 1924.49493 0.42807 0.17475 5.86949 5.86949 615009.16192 555152.30167 273005.71226 200541.23864 245800.40877 52678.36156 7504.26682 7504.26682 7541.61870 34700.17468 317350.45330 13324.65652 + 5066.00466 1407.37854 17936.94496 17936.94496 3646.16025 99.61696 8.69064 100.00000 -408.00367 2793.64718 852.51306 0.02176 0.00000 0.74787 2316.58514 934.25845 5103.68482 5103.68482 9383.00838 5020.91914 2057.45757 1.02700 468.83642 40.87106 2129.96248 10037.83834 16350.45488 1835.45015 0.07542 13.25952 0.16779 1.03345 -8634.88022 8.51381 7.46856 8.50630 8.53471 7.49193 7.49193 7.49564 7.49836 7.49564 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 8448.74993 5660.66246 2788.08747 282.43696 0.38950 0.19782 8.61939 8.61939 69597.48609 58809.47925 28920.57500 21244.12667 26038.60959 9821.76798 2105.31450 2105.31450 2167.64264 3854.06373 46442.45563 35880.61786 96905.74856 46651.58380 46657.10712 8843.75455 10561.83777 269.38061 10292.45716 2910.96322 11754.71777 96375.14594 2458.11118 93917.03476 -69506.70644 38170.07664 8.31962 8.81751 8.29566 8.29566 8.11095 8.39033 8.11129 34687.73786 1246.32545 7309.56606 7309.56606 3407.95443 7309.56607 11963.84594 50034.45466 10284.63097 180845.03273 180845.03274 34461.00011 464.83424 8.54485 100.00000 573.62330 23188.52408 11272.47603 0.02176 0.00000 0.16463 13601.47546 9346.23832 49815.68680 49815.68680 101775.92289 50344.50742 12412.15667 1.02700 5127.68124 502.85564 13267.57665 105407.31775 24076.22005 16956.24710 0.05377 18.59641 0.14651 0.94413 12140.01051 8.50172 8.72850 8.50285 8.50268 8.18046 8.18046 8.24556 8.24163 8.24556 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 92429.68457 63776.48241 28653.20216 -1803.86309 1.39824 0.21592 9.10358 9.10358 677794.94378 542716.68640 266890.28399 196049.04116 240294.38928 103138.47906 12977.91464 12977.91464 13048.80879 36091.77970 22333.56301 5009.38304 62830.41082 62830.41082 15153.91962 192.79153 8.65590 100.00000 726.08660 9512.44065 5641.47897 0.02176 0.00000 0.55484 7056.59423 3809.67280 22252.03183 22252.03183 43999.33957 22449.54089 6222.24732 1.02700 2560.26830 168.24548 6596.63083 53047.24548 25473.48143 17796.48215 0.05348 18.69900 0.13004 0.92571 15366.70307 8.54956 8.87330 8.55044 8.55030 8.24727 8.24727 8.30964 8.30730 8.30964 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 40189.66677 27730.87010 12458.79667 -677.49498 0.73997 0.20937 8.52113 8.52113 303042.22993 238466.85354 117270.18514 86142.91616 105584.08908 51905.37942 6494.39180 6494.39180 6515.09964 16135.18357 1727.37445 1679.72650 39.70774 740.18738 780.38770 15933.25510 8.17993 8.17993 340.63728 732.73975 11606.10386 2355.61141 92206.54934 92206.54934 8395.48937 130.08891 8.66227 100.00000 500.23742 5197.70467 3197.78470 0.02176 0.00000 0.56895 3488.75610 4826.08410 11550.18759 11550.18759 24589.68548 11678.56938 3004.51981 1.02700 1175.71866 163.21536 3280.20083 26777.69240 16125.62011 9931.39946 0.05609 17.82919 0.14234 0.99370 10586.89105 8.83452 8.30913 8.83788 8.83801 8.07855 8.07855 8.14037 8.13547 8.14037 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 19763.60138 13241.61295 6521.98843 -455.17897 0.64864 0.19148 9.67630 9.67630 170041.48773 130172.70907 64014.67317 47023.12542 57635.54434 26201.29213 3190.29149 3190.29149 3224.28456 8718.20350 3152.46246 255.71466 5738.98177 5738.98177 2187.80841 26.57558 8.06896 100.00000 3345.19258 657.68562 1530.12279 0.02176 0.00000 9.25925 399.07486 409.14397 3123.14342 3123.14342 4662.45878 3181.84727 296.38656 1.02700 428.42908 25.18769 354.20257 7638.89080 54086.71673 2920.03140 0.06065 16.48800 0.17580 1.06586 70796.75832 7.92746 7.36208 7.94199 7.94201 6.11127 6.11127 6.37936 6.37528 6.37936 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 4253.31481 2424.38944 1828.92536 -187.03667 0.13602 0.16831 2.62369 2.62369 43953.84222 34422.60329 16927.90843 12434.69852 15241.02473 7474.45554 323.70000 323.70000 324.88354 2328.34865 8.01015 7.54979 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 8960.97958 9583.94193 1.07755 7.11508 8.28746 8.28746 8.40749 0.16691 1206.61770 7701.66853 7701.66853 3748.59171 20603.32230 5640.26693 64201.86630 64201.86630 14291.63735 249.93537 8.84445 100.00000 885.18670 8949.38588 5342.25147 0.02176 0.00000 0.85628 6473.41804 3631.33421 20537.26261 20537.26261 39784.89202 20688.18382 6850.49488 1.02700 2330.59929 341.23174 7436.47059 48006.45937 60186.97047 12650.71647 0.05512 18.14208 0.13262 0.88273 18733.85502 8.83699 8.67539 8.83936 8.83951 8.02109 8.02109 8.10150 8.07247 8.10150 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 36153.55782 24945.95492 11207.60290 -535.18222 0.39038 0.19770 8.92256 8.92256 283392.75579 225247.23353 110769.20915 81367.50774 99730.94212 46973.07402 7083.04571 7083.04571 7370.41091 15154.40811 4651.10151 1287.58573 12899.01852 12899.01852 3169.47790 53.17523 9.09698 100.00000 810.78058 1674.13020 1495.34771 0.02176 0.00000 1.63522 1508.68568 687.81131 4616.40407 4616.40407 9589.31820 4686.89564 1558.85578 1.02700 525.76748 26.76591 1630.91942 12119.04031 25803.45536 1657.63552 0.06400 15.62598 0.11809 1.18232 17159.14281 9.06444 6.96157 9.07696 9.10075 7.39383 7.39383 7.39794 7.40584 7.39794 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 8901.50689 6142.03976 2759.46713 -256.68971 0.23643 0.20924 6.24796 6.24796 63798.28177 49176.53853 24183.41035 17764.35748 21773.50833 11858.18219 1531.67290 1531.67290 1596.22198 3375.87161 47092.78613 4633.95400 122437.97434 122437.97434 34247.47059 759.82352 9.27158 100.00000 -3901.72331 9870.31271 24377.15788 0.02176 0.00000 1.00000 5579.86035 7047.99676 47365.53643 47365.53643 81213.82277 46810.19036 6736.32417 1.02700 4864.72105 409.28077 7434.78392 55021.69913 152999.50124 26723.93764 0.08153 12.26542 0.24965 1.04811 -82575.02922 9.07620 7.26177 9.06658 9.08011 7.37113 7.37113 7.40582 7.40510 7.40582 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 74165.82601 52657.73651 21508.08950 2019.93832 0.43474 0.17475 5.86949 5.86949 628539.35619 567365.64573 279011.83474 204953.14356 251208.01490 53837.28486 7669.36060 7669.36060 7707.53422 35463.57809 333089.12998 13617.79881 + 5177.45671 1438.34085 18826.50971 18826.50971 3726.37573 101.80853 8.92529 100.00000 -428.23820 2855.10739 871.26834 0.02176 0.00000 0.74787 2367.54998 980.59206 5215.96583 5215.96583 9848.34925 5131.37931 2102.72162 1.02700 479.15082 41.77023 2176.82163 10258.67140 16350.45488 1926.47746 0.07542 13.25952 0.16779 1.03345 -9063.11842 8.74369 7.67022 8.73597 8.76515 7.69421 7.69421 7.69802 7.70081 7.69802 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 8867.75719 5941.39732 2926.35986 296.44413 0.39522 0.19782 8.61939 8.61939 71128.63028 60103.28710 29556.82731 21711.49721 26611.45869 10037.84708 2151.63139 2151.63139 2215.33075 3938.85306 47464.18912 36669.99104 101711.69173 47677.91811 47683.56295 9038.31705 10794.19808 275.30698 10518.89110 2975.00438 12013.32143 98495.58089 2512.18816 95983.39273 -72953.82166 39009.79981 8.54425 9.05558 8.51965 8.51965 8.32995 8.61687 8.33030 35450.86769 1273.74459 7470.37643 7470.37643 3482.92938 7470.37644 12227.05041 51135.21209 10510.89273 189813.86032 189813.86032 35219.14172 475.06059 8.77556 100.00000 602.07157 23698.67134 11520.47038 0.02176 0.00000 0.16463 13900.70777 9809.75561 50911.63134 50911.63134 106823.39747 51452.08600 12685.22397 1.02700 5240.49016 513.91846 13559.46318 107726.29538 24076.22005 17797.17513 0.05377 18.59641 0.14651 0.94413 12742.08208 8.73127 8.96417 8.73243 8.73225 8.40134 8.40134 8.46819 8.46415 8.46819 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 97013.64186 66939.41294 30074.22892 -1893.32387 1.41940 0.21592 9.10358 9.10358 692706.43195 554656.44709 272761.86712 200362.11779 245580.86305 105407.53181 13263.42861 13263.42861 13335.88243 36885.79793 22824.90114 5119.58941 65946.42188 65946.42188 15487.30568 197.03294 8.88961 100.00000 762.09613 9721.71424 5765.59144 0.02176 0.00000 0.55484 7211.83922 3998.60970 22741.57627 22741.57627 46181.44258 22943.43053 6359.13669 1.02700 2616.59417 171.94688 6741.75663 54214.28874 25473.48143 18679.08079 0.05348 18.69900 0.13004 0.92571 16128.79920 8.78040 9.11288 8.78130 8.78116 8.46994 8.46994 8.53400 8.53160 8.53400 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 42182.83289 29106.15472 13076.67817 -711.09466 0.75116 0.20937 8.52113 8.52113 309709.15727 243713.12148 119850.12784 88038.05931 107906.93781 53047.29904 6637.26835 6637.26835 6658.43176 16490.15729 1765.37667 1716.68047 40.58131 756.47149 797.55622 16723.44887 8.40079 8.40079 348.13130 748.86001 11861.43801 2407.43483 96779.44045 96779.44045 8580.19004 132.95086 8.89615 100.00000 525.04619 5312.05411 3268.13593 0.02176 0.00000 0.56895 3565.50869 5065.42888 11804.29159 11804.29159 25809.18621 11935.49777 3070.61922 1.02700 1201.58446 166.80610 3352.36521 27366.80374 16125.62011 10423.93723 0.05609 17.82919 0.14234 0.99370 11111.93724 9.07305 8.53348 9.07650 9.07663 8.29667 8.29667 8.36016 8.35513 8.36016 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 20743.75732 13898.31743 6845.43989 -477.75311 0.65816 0.19148 9.67630 9.67630 173782.39959 133036.50712 65422.99523 48057.63364 58903.52564 26777.72139 3260.47786 3260.47786 3295.21879 8910.00382 3221.81660 261.34038 6023.60080 6023.60080 2235.94017 27.16024 8.28683 100.00000 3511.09404 672.15469 1563.78547 0.02176 0.00000 9.25925 407.85450 429.43505 3191.85254 3191.85254 4893.68873 3251.84787 302.90706 1.02700 437.85452 25.74182 361.99503 7806.94654 54086.71673 3064.84742 0.06065 16.48800 0.17580 1.06586 74307.85236 8.14150 7.56086 8.15643 8.15644 6.27628 6.27628 6.55160 6.54741 6.55160 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 4464.25368 2544.62460 1919.62908 -196.31257 0.13772 0.16831 2.62369 2.62369 44920.82630 35179.90015 17300.32222 12708.26174 15576.32710 7638.89354 330.82139 330.82139 332.03097 2379.57228 8.22642 7.75363 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 9158.12103 9794.78854 1.07755 7.30719 8.51122 8.51122 8.63449 0.16691 1233.16328 7871.10515 7871.10515 3831.06068 21056.59515 5764.35274 67385.89331 67385.89332 14606.05321 255.43395 9.08325 100.00000 929.08664 9146.27227 5459.78094 0.02176 0.00000 0.85628 6615.83316 3811.42658 20989.08215 20989.08215 41757.98375 21143.32363 7001.20569 1.02700 2381.87244 348.73883 7600.07286 49062.60281 60186.97047 13278.11604 0.05512 18.14208 0.13262 0.88273 19662.94166 9.07559 8.90962 9.07802 9.07817 8.23766 8.23766 8.32024 8.29042 8.32024 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 37946.55717 26183.12447 11763.43270 -561.72404 0.39629 0.19770 8.92256 8.92256 289627.39385 230202.67000 113206.13046 83157.59196 101925.02169 48006.48189 7238.87263 7238.87263 7532.55987 15487.80486 4753.42569 1315.91260 13538.73238 13538.73238 3239.20638 54.34508 9.34260 100.00000 850.99043 1710.96104 1528.24534 0.02176 0.00000 1.63522 1541.87675 721.92262 4717.96490 4717.96490 10064.89080 4790.00729 1593.15059 1.02700 537.33436 27.35476 1666.79963 12385.66094 25803.45536 1739.84429 0.06400 15.62598 0.11809 1.18232 18010.13323 9.30918 7.14953 9.32204 9.34647 7.59346 7.59346 7.59769 7.60580 7.59769 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 9342.96817 6446.64805 2896.32013 -269.41998 0.24001 0.20924 6.24796 6.24796 65201.84413 50258.42180 24715.44510 18155.17314 22252.52526 12119.06296 1565.36969 1565.36969 1631.33884 3450.14071 48128.82688 4735.90093 128510.16259 128510.16259 35000.91455 776.53963 9.52192 100.00000 -4095.22534 10087.45948 24913.45508 0.02176 0.00000 1.00000 5702.61722 7397.53507 48407.57769 48407.57769 85241.54067 47840.01402 6884.52323 1.02700 4971.74486 418.28494 7598.34908 56232.17632 152999.50124 28049.28446 0.08153 12.26542 0.24965 1.04811 -86670.25456 9.32126 7.45783 9.31138 9.32527 7.57015 7.57015 7.60577 7.60504 7.60577 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 77844.00560 55269.24402 22574.76158 2120.11513 0.44151 0.17475 5.86949 5.86949 642367.21458 579847.68321 285150.09184 209462.11034 256734.58830 55021.70447 7838.08645 7838.08645 7877.09989 36243.77637 349608.35049 13917.39023 + 5291.36070 1469.98433 19760.19153 19760.19153 3808.35596 104.04832 9.16627 100.00000 -449.47625 2917.91972 890.43624 0.02176 0.00000 0.74787 2419.63606 1029.22353 5330.71702 5330.71702 10336.76823 5244.26959 2148.98147 1.02700 489.69213 42.68917 2224.71168 10484.36276 16350.45488 2022.01917 0.07542 13.25952 0.16779 1.03345 -9512.59467 8.97977 7.87731 8.97184 9.00181 7.90196 7.90196 7.90587 7.90873 7.90587 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 9307.54469 6236.05495 3071.48974 311.14598 0.40102 0.19782 8.61939 8.61939 72693.45962 61425.55870 30207.07716 22189.14989 27196.91047 10258.67991 2198.96726 2198.96726 2264.06800 4025.50777 48508.40074 37476.73042 106755.98083 48726.83176 48732.60079 9237.15992 11031.67032 281.36374 10750.30658 3040.45444 12277.61436 100662.64893 2567.45496 98095.19397 -76571.89310 39867.99851 8.77494 9.30008 8.74968 8.74968 8.55486 8.84952 8.55521 36230.78638 1301.76696 7634.72463 7634.72463 3559.55379 7634.72464 12496.04538 52260.18617 10742.13225 199227.48789 199227.48789 35993.96244 485.51192 9.01250 100.00000 631.93070 24220.04184 11773.92059 0.02176 0.00000 0.16463 14206.52318 10296.26058 52031.68664 52031.68664 112121.19649 52584.03131 12964.29875 1.02700 5355.78089 525.22466 13857.77122 110096.28999 24076.22005 18679.80814 0.05377 18.59641 0.14651 0.94413 13374.01278 8.96701 9.20620 8.96820 8.96802 8.62817 8.62817 8.69683 8.69269 8.69683 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 101824.93591 70259.20584 31565.73007 -1987.22137 1.44087 0.21592 9.10358 9.10358 707945.97246 566858.88236 278762.62502 204770.08206 250983.63917 107726.50349 13555.22389 13555.22389 13629.27169 37697.28457 23327.04871 5232.22032 69216.96837 69216.96837 15828.02623 201.36766 9.12963 100.00000 799.89152 9935.59184 5892.43438 0.02176 0.00000 0.55484 7370.49960 4196.91672 23241.89069 23241.89069 48471.76480 23448.18574 6499.03762 1.02700 2674.15922 175.72970 6890.07520 55407.00681 25473.48143 19605.45103 0.05348 18.69900 0.13004 0.92571 16928.69072 9.01747 9.35892 9.01839 9.01825 8.69863 8.69863 8.76442 8.76196 8.76442 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 44274.84808 30549.64521 13725.20287 -746.36069 0.76253 0.20937 8.52113 8.52113 316522.75688 249074.80726 122486.82925 89974.89559 110280.88918 54214.34083 6783.28818 6783.28817 6804.91718 16852.94044 1804.21494 1754.44742 41.47410 773.11386 815.10245 17552.83150 8.62761 8.62761 355.79018 765.33493 12122.38951 2460.39837 101579.11950 101579.11950 8768.95412 135.87578 9.13635 100.00000 551.08532 5428.91924 3340.03488 0.02176 0.00000 0.56895 3643.94984 5316.64374 12063.98587 12063.98587 27089.16685 12198.07859 3138.17280 1.02700 1228.01930 170.47583 3426.11720 27968.87547 16125.62011 10940.90192 0.05609 17.82919 0.14234 0.99370 11663.02256 9.31802 8.76388 9.32157 9.32170 8.52068 8.52068 8.58588 8.58071 8.58588 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 21772.52312 14587.59052 7184.93260 -501.44680 0.66783 0.19148 9.67630 9.67630 177605.61144 135963.30869 66862.30036 49114.90102 60199.40252 27366.83207 3332.20834 3332.20834 3367.71356 9106.02375 3292.69652 267.08986 6322.33523 6322.33523 2285.13083 27.75777 8.51057 100.00000 3685.22322 686.94209 1598.18874 0.02176 0.00000 9.25925 416.82730 450.73245 3262.07326 3262.07326 5136.38631 3323.38849 309.57101 1.02700 447.48731 26.30814 369.95891 7978.69949 54086.71673 3216.84545 0.06065 16.48800 0.17580 1.06586 77993.07558 8.36132 7.76500 8.37665 8.37666 6.44574 6.44574 6.72850 6.72419 6.72850 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 4685.65385 2670.82270 2014.83115 -206.04849 0.13944 0.16831 2.62369 2.62369 45909.08402 35953.85754 17680.92911 12987.84335 15919.00611 7806.94919 338.09946 338.09946 339.33565 2431.92284 8.44854 7.96298 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 9359.59959 10010.27378 1.07755 7.50448 8.74103 8.74103 8.86762 0.16691 1260.29286 8044.26937 8044.26937 3915.34397 21519.84000 5891.16843 70727.82895 70727.82895 14927.38622 261.05349 9.32850 100.00000 975.16376 9347.49015 5579.89606 0.02176 0.00000 0.85628 6761.38141 4000.45045 21450.84172 21450.84172 43828.92897 21608.47651 7155.23213 1.02700 2434.27361 356.41108 7767.27438 50141.98133 60186.97047 13936.63085 0.05512 18.14208 0.13262 0.88273 20638.10542 9.32063 9.15018 9.32313 9.32329 8.46007 8.46007 8.54488 8.51427 8.54488 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 39828.47853 27481.65021 12346.82832 -589.58218 0.40228 0.19770 8.92256 8.92256 295999.19385 235267.12600 115696.66400 84987.05802 104167.37097 49062.62470 7398.12775 7398.12774 7698.27610 15828.53634 4858.00100 1344.86266 14210.17220 14210.17220 3310.46888 55.54067 9.59485 100.00000 893.19444 1748.60216 1561.86672 0.02176 0.00000 1.63522 1575.79802 757.72565 4821.76008 4821.76008 10564.04894 4895.38740 1628.19989 1.02700 549.15571 27.95656 1703.46920 12658.14719 25803.45536 1826.13012 0.06400 15.62598 0.11809 1.18232 18903.32767 9.56052 7.34257 9.57374 9.59883 7.79849 7.79849 7.80283 7.81116 7.80283 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 9806.32329 6766.36308 3039.96021 -282.78160 0.24364 0.20924 6.24796 6.24796 66636.28481 51364.10649 25259.18460 18554.58673 22742.08056 12385.68309 1599.80781 1599.80781 1667.22828 3526.04372 49187.66052 4840.09070 134883.49491 134883.49491 35770.93427 793.62349 9.77901 100.00000 -4298.32390 10309.38347 25461.55080 0.02176 0.00000 1.00000 5828.07473 7764.40839 49472.54384 49472.54384 89469.00919 48892.49378 7035.98266 1.02700 5081.12319 427.48720 7765.51268 57469.28398 152999.50124 29440.36052 0.08153 12.26542 0.24965 1.04811 -90968.57846 9.57293 7.65920 9.56279 9.57705 7.77454 7.77454 7.81113 7.81037 7.81113 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 81704.60080 58010.26662 23694.33418 2225.26011 0.44838 0.17475 5.86949 5.86949 656499.28569 592604.32535 291423.39053 214070.27433 262382.74625 56232.18129 8010.52426 8010.52426 8050.39599 37041.13900 366946.82515 14223.57265 + 5407.77057 1502.32397 20740.17837 20740.17837 3892.13974 106.33738 9.41376 100.00000 -471.76757 2982.11392 910.02582 0.02176 0.00000 0.74787 2472.86802 1080.26684 5447.99273 5447.99273 10849.40986 5359.64346 2196.25904 1.02700 500.46535 43.62833 2273.65531 10715.01932 16350.45488 2122.29918 0.07542 13.25952 0.16779 1.03345 -9984.36224 9.22222 8.09000 9.21408 9.24485 8.11531 8.11531 8.11933 8.12227 8.11933 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 9769.14301 6545.32583 3223.81719 326.57695 0.40691 0.19782 8.61939 8.61939 74292.71517 62776.92026 30871.63250 22677.31093 27795.24218 10484.37106 2247.34452 2247.34451 2313.87747 4114.06887 49575.58500 38301.21806 112050.43637 49798.82150 49804.71745 9440.37733 11274.36694 287.55373 10986.81320 3107.34440 12547.72174 102877.37746 2623.93775 100253.43971 -80369.39916 40745.07904 9.01186 9.55118 8.98592 8.98592 8.78584 9.08846 8.78620 37027.86326 1330.40582 7802.68848 7802.68848 3637.86393 7802.68849 12770.95824 53409.90967 10978.45904 209107.97486 209107.97486 36785.82920 496.19317 9.25583 100.00000 663.27067 24752.88248 12032.94671 0.02176 0.00000 0.16463 14519.06653 10806.89327 53176.38315 53176.38315 117681.73452 53740.87939 13249.51318 1.02700 5473.60800 536.77959 14162.64203 112518.42398 24076.22005 19606.21445 0.05377 18.59641 0.14651 0.94413 14037.28344 9.20912 9.45477 9.21034 9.21016 8.86113 8.86113 8.93164 8.92739 8.93164 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 106874.84124 73743.64053 33131.20072 -2085.77562 1.46267 0.21592 9.10358 9.10358 723520.78248 579329.77106 284895.39951 209275.02149 256505.27631 110096.49233 13853.43866 13853.43866 13929.11551 38526.62391 23840.24351 5347.32911 72649.71433 72649.71433 16176.24262 205.79775 9.37613 100.00000 839.56133 10154.17475 6022.06787 0.02176 0.00000 0.55484 7532.65051 4405.05859 23753.21202 23753.21202 50875.67325 23964.04555 6642.01638 1.02700 2732.99069 179.59576 7041.65678 56625.96455 25473.48143 20577.76366 0.05348 18.69900 0.13004 0.92571 17768.25205 9.26094 9.61161 9.26189 9.26175 8.93349 8.93349 9.00106 8.99853 9.00106 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 46470.61466 32064.72415 14405.89051 -783.37570 0.77406 0.20937 8.52113 8.52113 323486.25555 254554.45005 125181.53805 91954.34225 112707.06745 55407.05747 6932.52044 6932.52044 6954.62528 17223.70482 1843.90765 1793.04524 42.38653 790.12235 833.03469 18423.34653 8.86055 8.86055 363.61756 782.17229 12389.08194 2514.52711 106616.83381 106616.83381 8961.87101 138.86505 9.38303 100.00000 578.41584 5548.35540 3413.51561 0.02176 0.00000 0.56895 3724.11669 5580.31734 12329.39342 12329.39342 28432.62685 12466.43618 3207.21257 1.02700 1255.03572 174.22630 3501.49174 28584.19272 16125.62011 11483.50495 0.05609 17.82919 0.14234 0.99370 12241.43840 9.56961 9.00051 9.57325 9.57339 8.75074 8.75074 8.81770 8.81239 8.81770 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 22852.30951 15311.04741 7541.26211 -526.31555 0.67764 0.19148 9.67630 9.67630 181512.93387 138954.49986 68333.27019 50195.42827 61523.78867 27968.90315 3405.51688 3405.51688 3441.80322 9306.35611 3365.13581 272.96584 6635.88509 6635.88509 2335.40368 28.36844 8.74036 100.00000 3867.98816 702.05481 1633.34887 0.02176 0.00000 9.25925 425.99749 473.08608 3333.83884 3333.83884 5391.12022 3396.50300 316.38157 1.02700 457.33203 26.88692 378.09800 8154.23100 54086.71673 3376.38167 0.06065 16.48800 0.17580 1.06586 81861.06374 8.58708 7.97465 8.60282 8.60283 6.61977 6.61977 6.91017 6.90574 6.91017 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 4918.03415 2803.27947 2114.75468 -216.26726 0.14118 0.16831 2.62369 2.62369 46919.08339 36744.84197 18069.90934 13273.57575 16269.22406 7978.70205 345.53764 345.53764 346.80103 2485.42511 8.67665 8.17798 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 9565.51067 10230.49968 1.07755 7.70710 8.97703 8.97703 9.10705 0.16691 1288.01929 8221.24321 8221.24321 4001.48150 21993.27624 6020.77407 74235.50451 74235.50451 15255.78854 266.79667 9.58037 100.00000 1023.52602 9553.13483 5702.65371 0.02176 0.00000 0.85628 6910.13173 4198.84876 21922.75999 21922.75999 46002.58065 22083.86274 7312.64716 1.02700 2487.82760 364.25212 7938.15433 51245.10612 60186.97047 14627.80405 0.05512 18.14208 0.13262 0.88273 21661.63143 9.57229 9.39724 9.57485 9.57501 8.68850 8.68850 8.77559 8.74415 8.77559 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 41803.73188 28844.57503 12959.15685 -618.82192 0.40837 0.19770 8.92256 8.92256 302511.17334 240442.99997 118241.98926 86856.77230 106459.05192 50142.00261 7560.88647 7560.88647 7867.63808 16176.76391 4964.87697 1374.44963 14914.91140 14914.91140 3383.29916 56.76257 9.85391 100.00000 937.49152 1787.07139 1596.22777 0.02176 0.00000 1.63522 1610.46556 795.30429 4927.83874 4927.83874 11087.96233 5003.08587 1664.02027 1.02700 561.23712 28.57160 1740.94550 12936.62809 25803.45536 1916.69521 0.06400 15.62598 0.11809 1.18232 19840.81919 9.81866 7.54081 9.83223 9.85800 8.00905 8.00905 8.01350 8.02206 8.01350 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 10292.65803 7101.93405 3190.72398 -296.80587 0.24732 0.20924 6.24796 6.24796 68102.28316 52494.11622 25814.88637 18962.78743 23242.40606 12658.16884 1635.00356 1635.00356 1703.90728 3603.61660 50269.78849 4946.57264 141572.90625 141572.90625 36557.89442 811.08320 10.04304 100.00000 -4511.49494 10536.18979 26021.70463 0.02176 0.00000 1.00000 5956.29231 8149.47641 50560.93924 50560.93924 93906.13476 49968.12809 7190.77420 1.02700 5192.90784 436.89192 7936.35387 58733.60795 152999.50124 30900.42561 0.08153 12.26542 0.24965 1.04811 -95480.07340 9.83140 7.86599 9.82098 9.83563 7.98445 7.98445 8.02203 8.02125 8.02203 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 85756.65834 60887.22748 24869.43087 2335.61966 0.45536 0.17475 5.86949 5.86949 670942.26218 605641.61347 297834.70171 218779.81788 268155.16360 57469.28860 8186.75571 8186.75570 8227.50461 37856.04361 385145.18402 14536.49109 + 5526.74146 1535.37508 21768.76666 21768.76666 3977.76677 108.67680 9.66793 100.00000 -495.16441 3047.72039 930.04638 0.02176 0.00000 0.74787 2527.27109 1133.84159 5567.84851 5567.84851 11387.47543 5477.55556 2244.57671 1.02700 511.47558 44.58815 2323.67571 10950.75029 16350.45488 2227.55247 0.07542 13.25953 0.16779 1.03345 -10479.52665 9.47122 8.30843 9.46286 9.49447 8.33442 8.33442 8.33855 8.34157 8.33855 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 10253.63384 6869.93468 3383.69916 342.77321 0.41289 0.19782 8.61939 8.61939 75927.15432 64158.01175 31550.80806 23176.21151 28406.73719 10715.02739 2296.78607 2296.78607 2364.78275 4204.57832 50666.24730 39143.84442 117607.46511 50894.39501 50900.42066 9648.06553 11522.40288 293.87991 11228.52297 3175.70594 12823.77147 105140.81637 2681.66326 102459.15311 -84355.23871 41641.45669 9.25519 9.80906 9.22854 9.22854 9.02306 9.33385 9.02343 37842.47583 1359.67473 7974.34754 7974.34754 3717.89690 7974.34755 13051.91917 54584.92707 11219.98501 219478.47465 219478.47465 37595.11702 507.10942 9.50574 100.00000 696.16490 25297.44562 12297.67140 0.02176 0.00000 0.16463 14838.48582 11342.85028 54346.26297 54346.26298 123518.04184 54923.17812 13541.00232 1.02700 5594.02732 548.58874 14474.21999 114993.84441 24076.22005 20578.56494 0.05377 18.59642 0.14651 0.94413 14733.44835 9.45777 9.71004 9.45902 9.45884 9.10038 9.10038 9.17280 9.16843 9.17280 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 112175.19156 77400.88225 34774.30931 -2189.21757 1.48480 0.21592 9.10358 9.10358 739438.23793 592075.01916 291163.09497 213879.06953 262148.38940 112518.62069 14158.21415 14158.21415 14235.55589 39374.20873 24364.72860 5464.97029 76252.70387 76252.70387 16532.11977 210.32530 9.62928 100.00000 881.19853 10377.56648 6154.55330 0.02176 0.00000 0.55484 7698.36873 4623.52304 24275.78241 24275.78241 53398.80112 24491.25428 6788.14066 1.02700 2793.11645 183.54686 7196.57314 57871.73923 25473.48143 21598.29716 0.05348 18.69900 0.13004 0.92571 18649.45058 9.51098 9.87113 9.51196 9.51181 9.17470 9.17470 9.24409 9.24149 9.24409 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 48775.27808 33654.94191 15120.33617 -822.22643 0.78577 0.20937 8.52113 8.52113 330602.95105 260154.64492 127935.53042 93977.33670 115186.62162 56626.01382 7085.03581 7085.03581 7107.62696 17602.62601 1884.47359 1832.49221 43.31904 807.50503 851.36145 19337.03388 9.09979 9.09979 371.61714 799.38007 12661.64160 2569.84667 111904.38849 111904.38849 9159.03207 141.92008 9.63637 100.00000 607.10179 5670.41915 3488.61292 0.02176 0.00000 0.56895 3806.04722 5857.06757 12600.63993 12600.63993 29842.71440 12740.69763 3277.77121 1.02700 1282.64649 178.05927 3578.52452 29213.04689 16125.62011 12053.01783 0.05609 17.82919 0.14234 0.99370 12848.54019 9.82799 9.24352 9.83173 9.83187 8.98701 8.98701 9.05578 9.05033 9.05578 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 23985.64683 16070.38341 7915.26342 -552.41764 0.68759 0.19148 9.67630 9.67630 185506.21733 142011.49720 69836.60133 51299.72710 62877.31130 28584.21976 3480.43821 3480.43821 3517.52285 9511.09579 3439.16876 278.97108 6964.98514 6964.98514 2386.78253 28.99254 8.97634 100.00000 4059.81714 717.50001 1669.28253 0.02176 0.00000 9.25925 435.36943 496.54830 3407.18325 3407.18325 5658.48741 3471.22602 323.34196 1.02700 467.39333 27.47843 386.41616 8333.62420 54086.71673 3543.82992 0.06065 16.48800 0.17580 1.06586 85920.88088 8.81893 8.18997 8.83510 8.83511 6.79851 6.79851 7.09674 7.09220 7.09674 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 5161.93911 2942.30530 2219.63381 -226.99281 0.14294 0.16831 2.62369 2.62369 47951.30274 37553.22806 18467.44713 13565.59426 16627.14680 8154.23347 353.13947 353.13947 354.43065 2540.10442 8.91092 8.39878 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 9775.95180 10455.57056 1.07755 7.91519 9.21941 9.21941 9.35294 0.16691 1316.35570 8402.11046 8402.11046 4089.51404 22477.12806 6153.23103 77917.13973 77917.13973 15591.41572 272.66619 9.83904 100.00000 1074.28675 9763.30369 5828.11203 0.02176 0.00000 0.85628 7062.15455 4407.08645 22405.06046 22405.06046 48284.03239 22569.70747 7473.52531 1.02700 2542.55978 372.26567 8112.79363 52372.49960 60186.97047 15353.25528 0.05512 18.14208 0.13262 0.88273 22735.91819 9.83074 9.65096 9.83337 9.83354 8.92308 8.92308 9.01254 8.98024 9.01254 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 43876.94594 30275.09273 13601.85321 -649.51177 0.41455 0.19770 8.92256 8.92256 309166.41629 245732.74311 120843.31163 88767.62028 108801.14982 51245.12681 7727.22589 7727.22588 8040.72603 16532.65248 5074.10420 1404.68750 15654.60144 15654.60144 3457.73170 58.01134 10.11997 100.00000 983.98547 1826.38694 1631.34476 0.02176 0.00000 1.63522 1645.89578 834.74661 5036.25114 5036.25114 11637.85867 5113.15370 1700.62869 1.02700 573.58433 29.20018 1779.24629 13221.23552 25803.45536 2011.75178 0.06400 15.62598 0.11809 1.18232 20824.80466 10.08376 7.74442 10.09770 10.12416 8.22529 8.22529 8.22987 8.23865 8.22987 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 10803.11206 7454.14733 3348.96473 -311.52566 0.25107 0.20924 6.24796 6.24796 69600.53343 53648.98616 26382.81357 19379.96853 23753.73873 12936.64925 1670.97362 1670.97362 1741.39322 3682.89609 51375.72326 5055.39718 148594.07221 148594.07221 37362.16768 828.92702 10.31420 100.00000 -4735.23797 10767.98584 26594.18183 0.02176 0.00000 1.00000 6087.33067 8553.64150 51673.27933 51673.27933 98563.31511 51067.42634 7348.97115 1.02700 5307.15175 446.50353 8110.95356 60025.74702 152999.50124 32432.90115 0.08153 12.26542 0.24965 1.04811 -100215.31137 10.09685 8.07838 10.08615 10.10119 8.20003 8.20003 8.23862 8.23783 8.23862 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 90009.67361 63906.86832 26102.80529 2451.45237 0.46246 0.17475 5.86949 5.86949 685702.98399 618965.72176 304387.06166 223592.97132 274054.57407 58733.61225 8366.86424 8366.86424 8408.50962 38688.87611 404246.07220 14856.29372 + 5648.32971 1569.15331 22848.36676 22848.36676 4065.27760 111.06769 9.92897 100.00000 -519.72159 3114.77021 950.50739 0.02176 0.00000 0.74787 2582.87103 1190.07332 5690.34111 5690.34111 11952.22583 5598.06172 2293.95737 1.02700 522.72804 45.56909 2374.79654 11191.66733 16350.45488 2338.02569 0.07542 13.25953 0.16779 1.03345 -10999.24824 9.72694 8.53276 9.71836 9.75082 8.55945 8.55945 8.56369 8.56679 8.56369 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 10762.15251 7210.64219 3551.51032 359.77270 0.41895 0.19782 8.61939 8.61939 77597.55110 65569.48725 32244.92546 23686.08789 29031.68507 10950.75816 2347.31534 2347.31534 2416.80795 4297.07898 51780.90416 40005.00855 123440.08910 52014.07111 52020.22933 9860.32286 11775.89561 300.34527 11475.55034 3245.57144 13105.89430 107454.03851 2740.65884 104713.37967 -88538.75196 42557.55586 9.50508 10.07391 9.47771 9.47771 9.26668 9.58586 9.26706 38675.00987 1389.58756 8149.78310 8149.78309 3799.69059 8149.78311 13339.06124 55785.79485 11466.82455 230363.28894 230363.28895 38422.20917 518.26582 9.76240 100.00000 730.69050 25853.98913 12568.22004 0.02176 0.00000 0.16463 15164.93234 11905.38754 55541.88014 55541.88014 129643.79496 56131.48741 13838.90421 1.02700 5717.09585 560.65768 14792.65266 117523.72362 24076.22005 21599.13818 0.05377 18.59642 0.14651 0.94413 15464.13884 9.71313 9.97222 9.71442 9.71422 9.34609 9.34609 9.42046 9.41598 9.42046 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 117738.40742 81239.50120 36498.90622 -2297.78962 1.50726 0.21592 9.10358 9.10358 755705.87701 605100.66255 297568.67965 218584.40657 267915.65091 114994.03566 14469.69470 14469.69470 14548.73796 40240.44042 24900.75235 5585.19957 80034.38005 80034.38005 16895.82622 214.95245 9.88927 100.00000 924.90068 10605.87282 6289.95340 0.02176 0.00000 0.55484 7867.73275 4852.82202 24809.84935 24809.84935 56047.06098 25030.06159 6937.47968 1.02700 2854.56498 187.58489 7354.89767 59144.92083 25473.48143 22669.44299 0.05348 18.69900 0.13004 0.92571 19574.35126 9.76778 10.13765 9.76878 9.76863 9.42242 9.42242 9.49368 9.49101 9.49368 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 51194.23896 35324.02492 15870.21404 -863.00392 0.79766 0.20937 8.52113 8.52113 337876.21371 265878.04400 130750.11059 96044.83702 117720.72595 57871.78714 7240.90651 7240.90651 7263.99467 17989.88347 1925.93199 1872.80702 44.27205 825.27014 870.09139 20296.03463 9.34548 9.34548 379.79272 816.96642 12940.19757 2626.38327 117454.17413 117454.17414 9360.53067 145.04232 9.89655 100.00000 637.21039 5795.16831 3565.36236 0.02176 0.00000 0.56895 3889.78021 6147.54294 12877.85387 12877.85387 31322.73382 13020.99283 3349.88214 1.02700 1310.86469 181.97658 3657.25202 29855.73579 16125.62011 12650.77514 0.05609 17.82919 0.14234 0.99370 13485.75058 10.09334 9.49310 10.09718 10.09733 9.22966 9.22966 9.30029 9.29469 9.30029 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 25175.19088 16867.37792 8307.81295 -579.81424 0.69769 0.19148 9.67630 9.67630 189587.35295 145135.74844 71373.00574 52428.32050 64260.61141 29213.07331 3557.00782 3557.00781 3594.90832 9720.33974 3514.83043 285.10844 7310.40657 7310.40657 2439.29172 29.63038 9.21871 100.00000 4261.15969 733.28500 1706.00672 0.02176 0.00000 9.25925 444.94755 521.17412 3482.14124 3482.14124 5939.11440 3547.59295 330.45548 1.02700 477.67597 28.08295 394.91731 8516.96403 54086.71673 3719.58260 0.06065 16.48800 0.17580 1.06586 90182.04057 9.05704 8.41110 9.07364 9.07366 6.98207 6.98207 7.28835 7.28369 7.28835 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 5417.94029 3088.22597 2329.71432 -238.25030 0.14473 0.16831 2.62369 2.62369 49006.23089 38379.39863 18873.73075 13864.03718 16992.94383 8333.62657 360.90853 360.90853 362.22812 2595.98668 9.15151 8.62555 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 9991.02262 10685.59299 1.07755 8.12890 9.46834 9.46834 9.60546 0.16691 1345.31551 8586.95680 8586.95680 4179.48331 22971.62462 6288.60204 81781.36194 81781.36194 15934.42668 278.66484 10.10469 100.00000 1127.56492 9978.09626 5956.33043 0.02176 0.00000 0.85628 7217.52187 4625.65147 22897.97154 22897.97154 50678.63044 23066.24077 7637.94278 1.02700 2598.49606 380.45551 8291.27500 53524.69567 60186.97047 16114.68454 0.05512 18.14208 0.13262 0.88273 23863.48311 10.09617 9.91154 10.09887 10.09905 9.16401 9.16401 9.25587 9.22271 9.25587 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 46052.97897 31776.55552 14276.42345 -681.72365 0.42082 0.19770 8.92256 8.92256 315968.07447 251138.86053 123501.86307 90720.50690 111194.77384 52372.51970 7897.22477 7897.22477 8217.62191 16896.37060 5185.73444 1435.59061 16430.97566 16430.97566 3533.80176 59.28759 10.39321 100.00000 1032.78523 1866.56743 1667.23433 0.02176 0.00000 1.63522 1682.10547 876.14503 5147.04861 5147.04861 12215.02657 5225.64302 1738.04251 1.02700 586.20318 29.84258 1818.38968 13512.10428 25803.45536 2111.52259 0.06400 15.62598 0.11809 1.18232 21857.58989 10.35602 7.95352 10.37033 10.39751 8.44737 8.44737 8.45207 8.46110 8.45207 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 11338.88154 7823.82827 3515.05327 -326.97546 0.25486 0.20924 6.24796 6.24796 71131.74517 54829.26322 26963.23516 19806.32761 24276.32070 13221.25621 1707.73502 1707.73502 1779.70385 3763.91972 52505.98859 5166.61586 155963.44584 155963.44584 38184.13494 847.16340 10.59269 100.00000 -4970.07732 11004.88141 27179.25353 0.02176 0.00000 1.00000 6221.25188 8977.85076 52810.09088 52810.09088 103451.46364 52190.90913 7510.64843 1.02700 5423.90903 456.32661 8289.39444 61346.31310 152999.50124 34041.37827 0.08153 12.26542 0.24965 1.04811 -105185.38868 10.36947 8.29649 10.35848 10.37393 8.42143 8.42143 8.46107 8.46025 8.46107 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 94473.61288 67076.26521 27397.34767 2573.02969 0.46966 0.17475 5.86949 5.86949 700788.44149 632582.96026 311083.57345 228512.01409 280083.77150 60025.75101 8550.93516 8550.93515 8593.49674 39540.03091 424294.24973 15183.13202 + 5772.59290 1603.67467 23981.50854 23981.50854 4154.71366 113.51118 10.19705 100.00000 -545.49666 3183.29511 971.41854 0.02176 0.00000 0.74787 2639.69416 1249.09381 5815.52855 5815.52855 12544.98445 5721.21901 2344.42441 1.02700 534.22805 46.57161 2427.04204 11437.88452 16350.45488 2453.97773 0.07542 13.25953 0.16779 1.03345 -11544.74490 9.98957 8.76314 9.98075 10.01409 8.79056 8.79056 8.79491 8.79810 8.79491 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 11295.89064 7568.24674 3727.64390 377.61527 0.42511 0.19782 8.61939 8.61939 79304.69658 67012.01518 32954.31344 24207.18155 29670.38180 11191.67500 2398.95625 2398.95625 2469.97769 4391.61465 52920.08346 40885.11828 129561.97622 53158.38008 53164.67378 10077.24985 12034.96518 306.95286 11728.01232 3316.97397 13394.22382 109818.14022 2800.95240 107017.18782 -92929.74235 43493.81032 9.76171 10.34590 9.73361 9.73361 9.51688 9.84468 9.51728 39525.85964 1420.15847 8329.07823 8329.07823 3883.28374 8329.07824 13632.52044 57013.08169 11719.09456 241787.92466 241787.92467 39267.49733 529.66766 10.02598 100.00000 766.92835 26422.77659 12844.72074 0.02176 0.00000 0.16463 15498.56068 12495.82326 56763.80086 56763.80087 136073.34865 57366.37948 14143.35995 1.02700 5842.87189 572.99215 15118.09085 120109.25969 24076.22005 22670.32572 0.05377 18.59642 0.14651 0.94413 16231.06719 9.97538 10.24147 9.97670 9.97651 9.59844 9.59844 9.67482 9.67021 9.67482 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 123577.52538 85268.49260 38309.03278 -2411.74619 1.53006 0.21592 9.10358 9.10358 772331.40376 618412.86993 304115.18712 223393.26097 273809.79210 117523.90955 14788.02782 14788.02781 14868.81002 41125.72920 25448.56861 5708.07390 84003.60467 84003.60467 17267.53420 219.68140 10.15628 100.00000 970.77019 10839.20190 6428.33231 0.02176 0.00000 0.55484 8040.82278 5093.49285 25355.66575 25355.66575 58826.65863 25580.72266 7090.10415 1.02700 2917.36538 191.71175 7516.70534 60446.11229 25473.48143 23793.71123 0.05348 18.69900 0.13004 0.92571 20545.12144 10.03151 10.41137 10.03254 10.03239 9.67682 9.67682 9.75001 9.74727 9.75001 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 53733.16578 37075.88443 16657.28135 -905.80374 0.80973 0.20937 8.52113 8.52113 345309.48802 271727.35779 133626.61148 98157.82231 120310.58054 59144.96742 7400.20637 7400.20637 7423.80247 18385.66059 1968.30247 1914.00875 45.24604 843.42607 889.23339 21302.59606 9.59781 9.59781 388.14815 834.93967 13224.88177 2684.16367 123279.19582 123279.19582 9566.46224 148.23325 10.16376 100.00000 668.81220 5922.66195 3643.80029 0.02176 0.00000 0.56895 3975.35533 6452.42415 13161.16650 13161.16650 32876.15332 13307.45452 3423.57951 1.02700 1339.70370 185.98006 3737.71152 30512.56378 16125.62011 13278.17761 0.05609 17.82919 0.14234 0.99370 14154.56278 10.36586 9.74941 10.36981 10.36996 9.47886 9.47886 9.55139 9.54564 9.55139 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 26423.72916 17703.89858 8719.83058 -608.56955 0.70793 0.19148 9.67630 9.67630 193758.27347 148328.73317 72943.21102 53581.74294 65674.34411 29855.76160 3635.26195 3635.26195 3673.99626 9934.18705 3592.15666 291.38082 7672.95884 7672.95884 2492.95611 30.28225 9.46761 100.00000 4472.48762 749.41726 1743.53885 0.02176 0.00000 9.25925 454.73640 547.02122 3558.74831 3558.74831 6233.65881 3625.63996 337.72550 1.02700 488.18484 28.70078 403.60548 8704.33733 54086.71673 3904.05156 0.06065 16.48800 0.17580 1.06586 94654.52819 9.30158 8.63820 9.31863 9.31865 7.17058 7.17058 7.48514 7.48035 7.48514 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 5686.63759 3241.38343 2445.25416 -250.06608 0.14653 0.16831 2.62369 2.62369 50084.36745 39223.74494 19288.95261 14169.04583 17366.78840 8516.96632 368.84851 368.84851 370.19713 2653.09835 9.39860 8.85844 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 10210.82501 10920.67592 1.07755 8.34838 9.72398 9.72398 9.86481 0.16691 1374.91243 8775.86975 8775.86975 4271.43189 23477.00010 6426.95122 85837.22636 85837.22636 16284.98389 284.79547 10.37752 100.00000 1183.48536 10197.61426 6087.36963 0.02176 0.00000 0.85628 7376.30726 4855.05600 23401.72665 23401.72665 53191.98617 23573.69781 7805.97744 1.02700 2655.66295 388.82552 8473.68295 54702.23999 60186.97047 16913.87612 0.05512 18.14208 0.13262 0.88273 25046.96847 10.36877 10.17915 10.37154 10.37172 9.41144 9.41144 9.50578 9.47172 9.50578 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 48336.93016 33352.48185 14984.44831 -715.53305 0.42719 0.19770 8.92256 8.92256 322919.36903 256663.91246 126218.90261 92716.35699 113641.05756 53524.71521 8070.96362 8070.96362 8398.40950 17268.09051 5299.82054 1467.17359 17245.85337 17245.85337 3611.54536 60.59192 10.67382 100.00000 1084.00518 1907.63190 1703.91347 0.02176 0.00000 1.63522 1719.11177 919.59656 5260.28362 5260.28362 12820.81853 5340.60711 1776.27942 1.02700 599.09965 30.49912 1858.39424 13809.37210 25803.45536 2216.24143 0.06400 15.62599 0.11809 1.18232 22941.59507 10.63564 8.16826 10.65033 10.67825 8.67545 8.67545 8.68028 8.68955 8.68028 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 11901.22198 8211.84317 3689.37880 -343.19148 0.25872 0.20924 6.24796 6.24796 72696.64353 56035.50636 27556.42602 20242.06659 24810.39947 13512.12450 1745.30517 1745.30517 1818.85732 3846.72587 53661.11973 5280.28135 163698.29615 163698.29615 39024.18547 865.80099 10.87869 100.00000 -5216.56328 11246.98867 27777.19680 0.02176 0.00000 1.00000 6358.11935 9423.09824 53971.91228 53971.91228 108582.03499 53339.10854 7675.88261 1.02700 5543.23497 466.36579 8471.76103 62695.93160 152999.50124 35729.62620 0.08153 12.26542 0.24965 1.04811 -110401.95197 10.64944 8.52050 10.63816 10.65402 8.64881 8.64881 8.68952 8.68867 8.68952 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 99158.93675 70402.84516 28756.09159 2700.63651 0.47697 0.17475 5.86949 5.86949 716205.77887 646499.77784 317927.40841 233539.27574 286245.61119 61346.31681 8739.05563 8739.05563 8782.55357 40409.91112 445336.69646 15517.16075 + 5899.58988 1638.95549 25170.84734 25170.84734 4246.11731 116.00842 10.47237 100.00000 -572.55002 3253.32757 992.78974 0.02176 0.00000 0.74787 2697.76740 1311.04136 5943.47011 5943.47011 13167.14035 5847.08576 2396.00172 1.02700 545.98106 47.59619 2480.43694 11689.51847 16350.45488 2575.68029 0.07542 13.25953 0.16779 1.03345 -12117.29492 10.25929 8.99975 10.25023 10.28447 9.02790 9.02790 9.03237 9.03564 9.03237 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 11856.09898 7943.58633 3912.51265 396.34272 0.43135 0.19782 8.61939 8.61939 81049.39923 68486.27871 33679.30795 24739.73926 30323.12985 11437.89199 2451.73326 2451.73326 2524.31717 4488.23011 54084.32469 41784.59042 135987.47218 54327.86384 54334.29600 10298.94923 12299.73428 313.70582 11986.02846 3389.94736 13688.89659 112234.24188 2862.57251 109371.66937 -97538.49949 44450.66338 10.02528 10.62524 9.99642 9.99642 9.77384 10.11049 9.77424 40395.42810 1451.40194 8512.31786 8512.31785 3968.71594 8512.31787 13932.43573 58267.36884 11976.91451 253779.15371 253779.15371 40131.38182 541.32034 10.29668 100.00000 804.96339 27004.07738 13127.30445 0.02176 0.00000 0.16463 15839.52884 13115.54106 58012.60383 58012.60383 142821.76959 58628.43917 14454.51370 1.02700 5971.41501 585.59797 15450.68868 122751.67710 24076.22005 23794.63774 0.05377 18.59642 0.14651 0.94413 17036.03058 10.24472 10.51799 10.24608 10.24587 9.85760 9.85760 9.93604 9.93130 9.93604 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 129706.22853 89497.29778 40208.93075 -2531.35433 1.55321 0.21592 9.10358 9.10358 789322.69172 632017.94571 310805.71768 228307.91011 279833.60432 120109.44046 15113.36426 15113.36426 15195.92367 42030.49434 26008.43683 5833.65146 88169.67898 88169.67898 17647.41976 224.51439 10.43050 100.00000 1018.91455 11077.66422 6569.75554 0.02176 0.00000 0.55484 8217.72079 5346.09950 25913.49010 25913.49010 61744.10763 26143.49826 7246.08636 1.02700 2981.54738 195.92941 7682.07277 61775.92985 25473.48143 24973.73641 0.05348 18.69900 0.13004 0.92571 21564.03600 10.30236 10.69247 10.30342 10.30326 9.93810 9.93810 10.01326 10.01044 10.01326 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 56398.00812 38914.62565 17483.38247 -950.72616 0.82198 0.20937 8.52113 8.52113 352906.29422 277705.35641 136566.39537 100317.29325 122957.41190 60446.15760 7563.01083 7563.01083 7587.12604 18790.14481 2011.60510 1956.11692 46.24145 861.98143 908.79651 22359.07690 9.85695 9.85695 396.68741 853.30833 13515.82902 2743.21524 129393.10359 129393.10359 9776.92430 151.49438 10.43818 100.00000 701.98126 6052.96044 3723.96386 0.02176 0.00000 0.56895 4062.81311 6772.42564 13450.71202 13450.71202 34506.61309 13600.21837 3498.89822 1.02700 1369.17717 190.07162 3819.94113 31183.84194 16125.62011 13936.69548 0.05609 17.82919 0.14234 0.99370 14856.54404 10.64574 10.01264 10.64979 10.64995 9.73479 9.73479 9.80928 9.80338 9.80928 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 27734.18745 18581.90563 9152.28182 -638.75094 0.71833 0.19148 9.67630 9.67630 198020.95417 151591.96353 74547.96081 54760.54066 67119.17890 30512.58900 3715.23767 3715.23767 3754.82413 10152.73900 3671.18407 297.79120 8053.49152 8053.49152 2547.80112 30.94846 9.72324 100.00000 4694.29615 765.90443 1781.89669 0.02176 0.00000 9.25925 464.74059 574.15019 3637.04073 3637.04073 6542.81085 3705.40400 345.15546 1.02700 498.92490 29.33219 412.48480 8895.83284 54086.71673 4097.66907 0.06065 16.48800 0.17580 1.06586 99348.82434 9.55272 8.87143 9.57024 9.57025 7.36419 7.36419 7.68724 7.68232 7.68724 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 5968.66066 3402.13658 2566.52408 -262.46785 0.14836 0.16831 2.62369 2.62369 51186.22300 40086.66686 19713.30934 14480.76468 17748.85754 8704.33954 376.96318 376.96318 378.34147 2711.46648 9.65237 9.09762 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 10435.46304 11160.93066 1.07755 8.57379 9.98653 9.98653 10.13116 0.16691 1405.16049 8968.93878 8968.93878 4365.40334 23993.49384 6568.34407 90094.23730 90094.23730 16643.25335 291.06097 10.65771 100.00000 1242.17912 10421.96166 6221.29169 0.02176 0.00000 0.85628 7538.58594 5095.83762 23916.56437 23916.56437 55829.98925 24092.31889 7977.70885 1.02700 2714.08750 397.37968 8660.10388 55905.69023 60186.97047 17752.70280 0.05512 18.14208 0.13262 0.88273 26289.14759 10.64872 10.45399 10.65157 10.65176 9.66555 9.66555 9.76244 9.72746 9.76244 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 50734.15162 35006.56466 15727.58696 -751.01919 0.43365 0.19770 8.92256 8.92256 330023.59196 262310.51547 128995.71698 94756.11576 116141.15950 54702.25898 8248.52473 8248.52473 8583.17441 17647.98826 5416.41653 1499.45139 18101.14413 18101.14413 3690.99932 61.92494 10.96202 100.00000 1137.76532 1949.59978 1741.39954 0.02176 0.00000 1.63522 1756.93221 965.20302 5376.00979 5376.00979 13456.65414 5458.10040 1815.35755 1.02700 612.27983 31.17010 1899.27889 14113.17978 25803.45536 2326.15369 0.06400 15.62599 0.11809 1.18232 24079.36039 10.92280 8.38880 10.93789 10.96656 8.90969 8.90969 8.91465 8.92416 8.91465 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 12491.45112 8619.10128 3872.34984 -360.21172 0.26263 0.20924 6.24796 6.24796 74295.96962 57268.28684 28162.66707 20687.39182 25356.22797 13809.39187 1783.70186 1783.70186 1858.87216 3931.35376 54841.66375 5396.44748 171816.74858 171816.74858 39882.71710 884.84860 11.17241 100.00000 -5475.27347 11494.42230 28388.29481 0.02176 0.00000 1.00000 6497.99790 9890.42732 55159.29373 55159.29373 113967.05186 54512.56832 7844.75194 1.02700 5665.18607 476.62583 8658.13967 64075.24166 152999.50124 37501.60109 0.08153 12.26542 0.24965 1.04811 -115877.22543 10.93698 8.75055 10.92539 10.94168 8.88233 8.88233 8.92413 8.92327 8.92413 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 104076.62453 73894.40349 30182.22104 2834.57187 0.48440 0.17475 5.86949 5.86949 731962.29749 660722.76523 324921.80767 238677.13708 292543.01129 62695.93505 8931.31476 8931.31475 8975.76965 41298.92868 467422.72219 15858.53811 + 6029.38079 1675.01249 26419.17021 26419.17021 4339.53184 118.56061 10.75513 100.00000 -600.94506 3324.90074 1014.63110 0.02176 0.00000 0.74787 2757.11825 1376.06114 6074.22639 6074.22639 13820.15144 5975.72158 2448.71373 1.02700 557.99264 48.64330 2535.00652 11946.68835 16350.45488 2703.41856 0.07542 13.25953 0.16779 1.03345 -12718.23998 10.53629 9.24274 10.52699 10.56215 9.27166 9.27166 9.27625 9.27961 9.27625 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 12444.09029 8337.54051 4106.54978 415.99894 0.43769 0.19782 8.61939 8.61939 82832.48532 69992.97602 34420.25233 25284.01323 30990.23836 11689.52575 2505.67136 2505.67136 2579.85212 4586.97110 55274.17922 42703.85093 142731.63414 55523.07622 55529.64989 10525.52599 12570.32829 320.60734 12249.72094 3464.52617 13990.05216 114703.48840 2925.54832 111777.94007 -102375.82331 45428.56812 10.29596 10.91212 10.26632 10.26632 10.03773 10.38347 10.03815 41284.12706 1483.33277 8699.58875 8699.58875 4056.02764 8699.58876 14238.94916 59549.25029 12240.40649 266365.07570 266365.07570 41014.27176 553.22938 10.57469 100.00000 844.88473 27598.16677 13416.10500 0.02176 0.00000 0.16463 16187.99829 13765.99313 59288.88045 59288.88045 149904.87168 59918.26416 14772.51284 1.02700 6102.78607 598.48112 15790.60365 125452.22724 24076.22005 24974.70887 0.05377 18.59642 0.14651 0.94413 17880.91531 10.52133 10.80197 10.52272 10.52251 10.12375 10.12375 10.20431 10.19945 10.20431 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 136138.87855 93935.82630 42203.05225 -2656.89431 1.57671 0.21592 9.10358 9.10358 806687.78762 645922.33298 317643.43982 233330.68148 285989.94035 122751.85284 15445.85810 15445.85810 15530.23382 42955.16432 26580.62214 5961.99172 92542.36557 92542.36557 18035.66279 229.45370 10.71213 100.00000 1069.44659 11321.37270 6714.29009 0.02176 0.00000 0.55484 8398.51056 5611.23393 26483.58659 26483.58659 64806.24457 26718.65492 7405.50018 1.02700 3047.14139 200.23986 7851.07828 63135.00328 25473.48143 26212.28376 0.05348 18.69901 0.13004 0.92571 22633.48259 10.58052 10.98117 10.58161 10.58145 10.20642 10.20642 10.28362 10.28072 10.28362 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 59195.01064 40844.55739 18350.45325 -997.87647 0.83441 0.20937 8.52113 8.52113 360670.23002 283814.87092 139570.85446 102524.27253 125662.47351 61775.97391 7729.39698 7729.39698 7754.04273 19203.52768 2055.86039 1999.15147 47.25876 880.94501 928.79003 23467.95284 10.12309 10.12309 405.41452 872.08111 13813.17710 2803.56595 135810.22447 135810.22448 9992.01652 154.82725 10.72001 100.00000 736.79531 6186.12550 3805.89102 0.02176 0.00000 0.56895 4152.19495 7108.29728 13746.62753 13746.62753 36217.93388 13899.42302 3575.87394 1.02700 1399.29905 194.25319 3903.97979 31869.88816 16125.62011 14627.87188 0.05609 17.82919 0.14234 0.99370 15593.33935 10.93318 10.28299 10.93734 10.93750 9.99762 9.99762 10.07413 10.06807 10.07413 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 29109.63660 19503.45657 9606.18003 -670.42915 0.72888 0.19148 9.67630 9.67630 202377.41377 154926.98491 76188.01506 55965.27191 68595.80005 31183.86658 3796.97285 3796.97285 3837.43022 10376.09909 3751.95007 304.34260 8452.89633 8452.89633 2603.85271 31.62932 9.98576 100.00000 4927.10505 782.75432 1821.09839 0.02176 0.00000 9.25925 474.96488 602.62459 3717.05559 3717.05559 6867.29498 3786.92284 352.74887 1.02700 509.90124 29.97750 421.55946 9091.54124 54086.71673 4300.88885 0.06065 16.48800 0.17580 1.06586 104275.92939 9.81065 9.11096 9.82863 9.82865 7.56302 7.56302 7.89479 7.88974 7.89479 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 6264.67039 3570.86213 2693.80826 -275.48468 0.15021 0.16831 2.62369 2.62369 52312.31935 40968.57305 20147.00191 14799.34133 18139.33220 8895.83497 385.25636 385.25636 386.66497 2771.11870 9.91298 9.34325 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 10665.04311 11406.47101 1.07755 8.80528 10.25617 10.25617 10.40470 0.16691 1436.07400 9166.25533 9166.25533 4461.44217 24521.35043 6712.84756 94562.37042 94562.37043 17009.40473 297.46430 10.94547 100.00000 1303.78374 10651.24469 6358.16004 0.02176 0.00000 0.85628 7704.43474 5348.56057 24442.72851 24442.72851 58598.82144 24622.34963 8153.21835 1.02700 2773.79739 406.12203 8850.62607 57135.61631 60186.97047 18633.13025 0.05512 18.14208 0.13262 0.88273 27592.93133 10.93624 10.73624 10.93917 10.93935 9.92652 9.92652 10.02602 9.99010 10.02602 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 53250.26087 36742.68004 16507.58083 -788.26524 0.44021 0.19770 8.92256 8.92256 337284.10769 268081.34367 131833.62124 96840.74920 118696.26364 55905.70869 8429.99218 8429.99218 8772.00415 18036.24375 5535.57763 1532.43930 18998.85218 18998.85218 3772.20126 63.28729 11.25799 100.00000 1194.19164 1992.49095 1779.71031 0.02176 0.00000 1.63522 1795.58470 1013.07130 5494.28195 5494.28195 14124.02338 5578.17855 1855.29539 1.02700 625.74998 31.85584 1941.06300 14423.67118 25803.45536 2441.51695 0.06400 15.62599 0.11809 1.18232 25273.55203 11.21771 8.61530 11.23322 11.26266 9.15025 9.15025 9.15534 9.16512 9.15534 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 13110.95208 9046.55694 4064.39513 -378.07606 0.26661 0.20924 6.24796 6.24796 75930.48085 58528.18847 28782.24541 21142.51420 25914.06469 14113.19911 1822.94328 1822.94328 1899.76732 4017.84346 56048.17973 5515.16926 180337.82751 180337.82751 40760.13642 904.31526 11.47407 100.00000 -5746.81412 11747.29945 29012.83697 0.02176 0.00000 1.00000 6640.95378 10380.93312 56372.79756 56372.79756 119619.13323 55711.84420 8017.33639 1.02700 5789.82010 487.11159 8848.61865 65484.89652 152999.50124 39361.45529 0.08153 12.26542 0.24965 1.04811 -121624.03955 11.23228 8.98682 11.22037 11.23711 9.12215 9.12215 9.16508 9.16420 9.16508 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 109238.20011 77559.12215 31679.07795 2975.14961 0.49194 0.17475 5.86949 5.86949 748065.45932 675258.65817 332070.08362 243928.03131 298978.95411 64075.24487 9127.80358 9127.80358 9173.23648 42207.50462 490604.08215 16207.42576 + 6162.02709 1711.86275 27729.40240 27729.40240 4435.00149 121.16894 11.04551 100.00000 -630.74833 3398.04852 1036.95298 0.02176 0.00000 0.74787 2817.77482 1444.30551 6207.85930 6207.85930 14505.54795 6107.18739 2502.58540 1.02700 570.26847 49.71346 2590.77664 12209.51595 16350.45488 2837.49189 0.07542 13.25953 0.16779 1.03345 -13348.98830 10.82077 9.49229 10.81122 10.84733 9.52199 9.52199 9.52671 9.53016 9.52671 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 13061.24244 8751.03245 4310.20999 436.62999 0.44411 0.19782 8.61939 8.61939 84654.79926 71532.82066 35177.49748 25840.26123 31672.02323 11946.69544 2560.79610 2560.79610 2636.60884 4687.88440 56490.21053 43643.33516 149810.26604 56744.58326 56751.30155 10757.08744 12846.87537 327.66070 12519.21467 3540.74570 14297.83314 117227.04981 2989.90968 114237.14013 -107453.04934 46427.98760 10.57395 11.20675 10.54351 10.54351 10.30875 10.66382 10.30918 42192.37738 1515.96607 8890.97960 8890.97960 4145.26020 8890.97962 14552.20588 60859.33311 12509.69529 279575.18384 279575.18384 41916.58528 565.40042 10.86021 100.00000 886.78593 28205.32612 13711.25915 0.02176 0.00000 0.16463 16544.13406 14448.70372 60593.23514 60593.23514 157339.25311 61236.46528 15097.50795 1.02700 6237.04729 611.64769 16137.99675 128212.18904 24076.22005 26213.30445 0.05377 18.59642 0.14651 0.94413 18767.70124 10.80540 11.09362 10.80683 10.80662 10.39709 10.39709 10.47983 10.47483 10.47983 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 142890.54939 98594.47919 44296.07020 -2788.66032 1.60056 0.21592 9.10358 9.10358 824434.91524 660132.61660 324631.59177 238463.95375 292281.71569 125452.39809 15785.66680 15785.66680 15871.89878 43900.17704 27165.39552 6093.15547 97131.91115 97131.91115 18432.44717 234.50168 11.00135 100.00000 1122.48471 11570.44277 6862.00440 0.02176 0.00000 0.55484 8583.27769 5889.51744 27066.22519 27066.22519 68020.24513 27306.46502 7568.42110 1.02700 3114.17846 204.64513 8023.80191 64523.97620 25473.48143 27512.25562 0.05348 18.69901 0.13004 0.92571 23755.96730 10.86620 11.27766 10.86732 10.86715 10.48200 10.48200 10.56127 10.55830 10.56127 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 62130.72769 42870.20216 19260.52553 -1047.36516 0.84704 0.20937 8.52113 8.52113 368604.97226 290058.79467 142641.41161 104779.80533 128427.04646 63135.04612 7899.44363 7899.44362 7924.63158 19626.00496 2101.08930 2043.13278 48.29845 900.32579 949.22340 24631.82236 10.39641 10.39641 414.33364 891.26688 14117.06684 2865.24436 142545.59602 142545.59602 10211.84077 158.23345 11.00946 100.00000 773.33593 6322.22019 3889.62058 0.02176 0.00000 0.56895 4243.54319 7460.82614 14049.05317 14049.05317 38014.12591 14205.21016 3654.54312 1.02700 1430.08361 198.52676 3989.86731 32571.02734 16125.62011 15353.32648 0.05609 17.82919 0.14234 0.99370 16366.67528 11.22837 10.56063 11.23265 11.23281 10.26756 10.26756 10.34613 10.33991 10.34613 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 30553.29976 20470.71089 10082.58887 -703.67842 0.73959 0.19148 9.67630 9.67630 206829.71540 158335.37671 77864.15050 57196.50724 70104.90685 31869.91223 3880.50621 3880.50621 3921.85364 10604.37311 3834.49293 311.03813 8872.10923 8872.10923 2661.13744 32.32517 10.25538 100.00000 5171.45987 799.97490 1861.16254 0.02176 0.00000 9.25925 485.41410 632.51115 3798.83077 3798.83077 7207.87157 3870.23510 360.50934 1.02700 521.11906 30.63701 430.83376 9291.55521 54086.71673 4514.18711 0.06065 16.48800 0.17580 1.06586 109447.38926 10.07553 9.35695 10.09401 10.09402 7.76722 7.76722 8.10795 8.10276 8.10795 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 6575.36042 3747.95545 2827.40497 -289.14707 0.15209 0.16831 2.62369 2.62369 53463.18981 41869.88116 20590.23571 15124.92667 18538.39729 9091.54329 393.73200 393.73200 395.17160 2832.08328 10.18063 9.59552 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 10899.67393 11657.41324 1.07755 9.04302 10.53308 10.53308 10.68563 0.16691 1467.66762 9367.91285 9367.91284 4559.59384 25060.81985 6860.53013 99252.09612 99252.09612 17383.61144 304.00851 11.24100 100.00000 1368.44358 10885.57195 6498.03949 0.02176 0.00000 0.85628 7873.93222 5613.81705 24980.46825 24980.46825 61504.97108 25164.04103 8332.58906 1.02700 2834.82091 415.05671 9045.33974 58392.60072 60186.97047 19557.22161 0.05512 18.14208 0.13262 0.88273 28961.37491 11.23152 11.02612 11.23452 11.23472 10.19453 10.19453 10.29673 10.25983 10.29673 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 55891.15403 38564.89633 17326.25770 -827.35846 0.44687 0.19770 8.92256 8.92256 344704.35466 273979.13001 134733.95936 98971.24455 121307.58005 57135.63426 8615.45191 8615.45191 8964.98814 18433.04087 5657.36027 1566.15295 19941.08115 19941.08115 3855.18965 64.67961 11.56196 100.00000 1253.41638 2036.32573 1818.86392 0.02176 0.00000 1.63522 1835.08754 1063.31355 5615.15609 5615.15609 14824.49012 5700.89841 1896.11187 1.02700 639.51647 32.55667 1983.76637 14740.99336 25803.45536 2562.60152 0.06400 15.62599 0.11809 1.18232 26526.96841 11.52059 8.84791 11.53651 11.56675 9.39731 9.39731 9.40254 9.41257 9.40254 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 13761.17656 9495.21184 4265.96472 -396.82636 0.27064 0.20924 6.24796 6.24796 77600.95128 59815.80792 29415.45447 21607.64926 26484.17381 14423.69008 1863.04802 1863.04802 1941.56218 4106.23593 57281.23904 5636.50292 189281.50077 189281.50077 41656.85896 924.21019 11.78387 100.00000 -6031.82156 12005.73991 29651.11905 0.02176 0.00000 1.00000 6787.05469 10895.76507 57612.99846 57612.99846 125551.52390 56937.50414 8193.71770 1.02700 5917.19608 497.82804 9043.28815 66925.56374 152999.50124 41313.54710 0.08153 12.26542 0.24965 1.04811 -127655.86111 11.53555 9.22946 11.52332 11.54051 9.36845 9.36845 9.41254 9.41163 9.41254 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 114655.75883 81405.58885 33250.16998 3122.69917 0.49960 0.17475 5.86949 5.86949 764522.89051 690114.34056 339375.62155 249294.44516 305556.48759 65484.89950 9328.61515 9328.61515 9375.04758 43136.06921 514935.09836 16563.98894 + 6297.59162 1749.52371 29104.61423 29104.61423 4532.57147 123.83466 11.34374 100.00000 -662.02966 3472.80555 1059.76593 0.02176 0.00000 0.74787 2879.76583 1515.93439 6344.43213 6344.43213 15224.93602 6241.54544 2557.64225 1.02700 582.81437 50.80715 2647.77369 12478.12574 16350.45488 2978.21444 0.07542 13.25953 0.16779 1.03345 -14011.01796 11.11293 9.74859 11.10312 11.14021 9.77908 9.77908 9.78393 9.78747 9.78393 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 13709.00163 9185.03111 4523.97052 458.28421 0.45064 0.19782 8.61939 8.61939 86517.20409 73106.54185 35951.40200 26408.74667 32368.80737 12209.52285 2617.13359 2617.13358 2694.61420 4791.01779 57732.99451 44603.48804 157239.95557 57992.96344 57999.82954 10993.74324 13129.50648 334.86923 12794.63724 3618.64207 14612.38531 119806.12180 3055.68704 116750.43477 -112782.07529 47449.39506 10.85945 11.50933 10.82818 10.82818 10.58708 10.95175 10.58752 43120.60920 1549.31731 9086.58105 9086.58105 4236.45588 9086.58107 14872.35424 62198.23775 12784.90845 293440.43402 293440.43402 42838.74967 577.83923 11.15344 100.00000 930.76518 28825.84297 14012.90670 0.02176 0.00000 0.16463 16908.10482 15165.27266 61926.28562 61926.28562 165142.33520 62583.66681 15429.65296 1.02700 6374.26226 625.10394 16493.03250 131032.86958 24076.22005 27513.32694 0.05377 18.59642 0.14651 0.94413 19698.46642 11.09715 11.39315 11.09862 11.09840 10.67781 10.67781 10.76278 10.75765 10.76278 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 149977.06255 103484.17328 46492.88927 -2926.96113 1.62478 0.21592 9.10358 9.10358 842572.47929 674655.52628 331773.48298 243710.15795 298711.91001 128212.35514 16132.95129 16132.95128 16221.08037 44865.98003 27763.03391 6227.20482 101949.07063 101949.07063 18837.96079 239.66072 11.29839 100.00000 1178.15320 11824.99238 7012.96842 0.02176 0.00000 0.55484 8772.10970 6181.60214 27661.68183 27661.68183 71393.64081 27907.20694 7734.92627 1.02700 3182.69035 209.14732 8200.32546 65943.50641 25473.48143 28876.69828 0.05348 18.69901 0.13004 0.92571 24934.12050 11.15959 11.58216 11.16073 11.16056 10.76501 10.76501 10.84643 10.84338 10.84643 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 65212.03867 44996.30674 20215.73193 -1099.30818 0.85985 0.20937 8.52113 8.52113 376714.27870 296440.08467 145779.52098 107084.95982 131252.43997 64524.01786 8073.23129 8073.23129 8098.97338 20057.77675 2147.31324 2088.08168 49.36102 920.13295 970.10630 25853.41283 10.67712 10.67712 423.44897 910.87474 14427.64215 2928.27971 149615.00154 149615.00154 10436.50115 161.71458 11.30671 100.00000 811.68874 6461.30896 3975.19219 0.02176 0.00000 0.56895 4336.90109 7830.83831 14358.13218 14358.13218 39899.39827 14517.72462 3734.94303 1.02700 1461.54544 202.89435 4077.64434 33287.59153 16125.62011 16114.75927 0.05609 17.82919 0.14234 0.99370 17178.36402 11.53154 10.84576 11.53593 11.53610 10.54478 10.54478 10.62548 10.61908 10.62548 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 32068.55995 21485.93522 10582.62473 -738.57664 0.75045 0.19148 9.67630 9.67630 211379.96759 161818.75310 79577.16089 58454.82973 71647.21397 32571.05086 3965.87730 3965.87730 4008.13438 10837.66915 3918.85173 317.88097 9312.11257 9312.11257 2719.68243 33.03632 10.53228 100.00000 5427.93323 817.57434 1902.10809 0.02176 0.00000 9.25925 496.09320 663.87991 3882.40500 3882.40500 7565.33872 3955.38023 368.44055 1.02700 532.58368 31.31102 440.31210 9495.96949 54086.71673 4738.06368 0.06065 16.48800 0.17580 1.06586 114875.32249 10.34757 9.60959 10.36654 10.36656 7.97694 7.97694 8.32687 8.32154 8.32687 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 6901.45881 3933.83153 2967.62728 -303.48703 0.15399 0.16831 2.62369 2.62369 54639.37940 42791.01804 21043.22066 15457.67487 18946.24181 9291.55719 402.39410 402.39410 403.86537 2894.38907 10.45551 9.85460 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 11139.46663 11913.87620 1.07755 9.28719 10.81748 10.81748 10.97414 0.16691 1499.95629 9574.00682 9574.00682 4659.90486 25612.15760 7011.46172 104174.40404 104174.40404 17766.05069 310.69670 11.54451 100.00000 1436.31015 11125.05441 6640.99628 0.02176 0.00000 0.85628 8047.15864 5892.22867 25530.03827 25530.03827 64555.24830 25717.64965 8515.90593 1.02700 2897.18693 424.18795 9244.33711 59677.23872 60186.97047 20527.14235 0.05512 18.14208 0.13262 0.88273 30397.68506 11.53477 11.32383 11.53786 11.53805 10.46978 10.46978 10.57474 10.53685 10.57474 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 58663.01963 40477.48359 18185.53604 -868.39047 0.45363 0.19770 8.92256 8.92256 352287.84694 280006.66758 137698.10487 101148.61078 123976.34539 58392.61816 8804.99175 8804.99175 9162.21777 18838.56751 5781.82213 1600.60830 20930.03902 20930.03902 3940.00377 66.10256 11.87413 100.00000 1315.57830 2081.12487 1858.87890 0.02176 0.00000 1.63522 1875.45945 1116.04752 5738.68946 5738.68946 15559.69580 5826.31811 1937.82631 1.02700 653.58583 33.27292 2027.40920 15065.29658 25803.45536 2689.69117 0.06400 15.62599 0.11809 1.18232 27842.54670 11.83165 9.08681 11.84800 11.87905 9.65104 9.65104 9.65640 9.66671 9.65640 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 14443.64828 9966.11733 4477.53096 -416.50657 0.27474 0.20924 6.24796 6.24796 79308.17203 61131.75498 30062.59413 22083.01729 27066.82532 14741.01183 1904.03505 1904.03505 1984.27653 4196.57304 58541.42564 5760.50592 198668.72652 198668.72652 42573.30938 944.54280 12.10203 100.00000 -6330.96365 12269.86605 30303.44333 0.02176 0.00000 1.00000 6936.36981 11436.12958 58880.48377 58880.48377 131778.12552 58190.12858 8373.97939 1.02700 6047.37432 508.78025 9242.24039 68397.92561 152999.50124 43362.45093 0.08153 12.26542 0.24965 1.04811 -133986.82477 11.84701 9.47866 11.83445 11.85210 9.62140 9.62140 9.66668 9.66574 9.66668 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 120341.99593 85442.81720 34899.17873 3277.56630 0.50738 0.17475 5.86949 5.86949 781342.38499 705296.84778 346841.88123 254778.92004 312278.72674 66925.56651 9533.84458 9533.84458 9581.29851 44085.06223 540472.78686 16928.39651 + 6436.13856 1788.01321 30548.02832 30548.02832 4632.28799 126.55902 11.65002 100.00000 -694.86235 3549.20723 1083.08077 0.02176 0.00000 0.74787 2943.12065 1591.11563 6484.00957 6484.00957 15980.00142 6378.85937 2613.91035 1.02700 595.63628 51.92491 2706.02468 12752.64492 16350.45488 3125.91600 0.07542 13.25953 0.16779 1.03345 -14705.88032 11.41298 10.01180 11.40290 11.44099 10.04312 10.04312 10.04809 10.05173 10.04809 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 14388.88579 9640.55349 4748.33229 481.01236 0.45725 0.19782 8.61939 8.61939 88420.58179 74714.88489 36742.33242 26989.73879 33080.92075 12478.13246 2674.71049 2674.71049 2753.89569 4896.42011 59003.11973 45584.76426 165038.11309 59268.80798 59275.82512 11235.60547 13418.35547 342.23635 13076.11912 3698.25215 14933.85762 122441.92631 3122.91156 119319.01475 -118375.38893 48493.27416 11.15265 11.82009 11.12055 11.12055 10.87294 11.24744 10.87339 44069.26211 1583.40227 9286.48573 9286.48573 4329.65786 9286.48575 15199.54586 63566.59827 13066.17629 307993.31733 307993.31734 43781.20168 590.55168 11.45458 100.00000 976.92553 29460.01119 14321.19049 0.02176 0.00000 0.16463 17280.08294 15917.37911 63288.66320 63288.66320 173332.40332 63960.50676 15769.10514 1.02700 6514.49596 638.85622 16855.87903 133915.60467 24076.22005 28877.82272 0.05377 18.59642 0.14651 0.94413 20675.39195 11.39677 11.70077 11.39828 11.39806 10.96612 10.96612 11.05338 11.04811 11.05338 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 157415.02421 108616.36683 48798.65738 -3072.12084 1.64936 0.21592 9.10358 9.10358 861109.06935 689497.93978 339072.49570 249071.77859 305283.56853 131033.03106 16487.87603 16487.87603 16577.94396 45853.03070 28373.82034 6364.20326 107005.13229 107005.13229 19252.39572 244.93325 11.60345 100.00000 1236.58252 12085.14208 7167.25364 0.02176 0.00000 0.55484 8965.09602 6488.17248 28270.23852 28270.23852 74934.33665 28521.16517 7905.09456 1.02700 3252.70950 213.74856 8380.73253 67394.26618 25473.48143 30308.80910 0.05348 18.69901 0.13004 0.92571 26170.70302 11.46090 11.89488 11.46207 11.46190 11.05567 11.05567 11.13928 11.13615 11.13928 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 68446.16417 47227.85334 21218.31083 -1153.82727 0.87286 0.20937 8.52113 8.52113 385001.98973 302961.76296 148986.66872 109440.82768 134139.99210 65943.54692 8250.84229 8250.84229 8277.15070 20499.04751 2194.55411 2134.01945 50.44696 940.37587 991.44863 27135.58684 10.96540 10.96540 432.76485 930.91398 14745.05011 2992.70183 157035.00712 157035.00712 10666.10406 165.27230 11.61199 100.00000 851.94362 6603.45768 4062.64637 0.02176 0.00000 0.56895 4432.31286 8219.20087 14674.01093 14674.01093 41878.16882 14837.11440 3817.11173 1.02700 1493.69942 207.35802 4167.35247 34019.92008 16125.62011 16913.95455 0.05609 17.82919 0.14234 0.99370 18030.30765 11.84289 11.13860 11.84740 11.84757 10.82949 10.82949 10.91237 10.90580 10.91237 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 33658.96795 22551.50859 11107.45937 -775.20561 0.76147 0.19148 9.67630 9.67630 216030.32525 165378.76371 81327.85749 59740.83529 73223.45183 33287.61450 4053.12656 4053.12656 4096.31329 11076.09770 4005.06643 324.87435 9773.93743 9773.93743 2779.51542 33.76312 10.81665 100.00000 5697.12612 835.56097 1943.95445 0.02176 0.00000 9.25925 507.00725 696.80437 3967.81787 3967.81787 7940.53409 4042.39855 376.54623 1.02700 544.30051 31.99986 449.99896 9704.88087 54086.71673 4973.04319 0.06065 16.48800 0.17580 1.06586 120572.44861 10.62696 9.86905 10.64644 10.64646 8.19232 8.19232 8.55169 8.54622 8.55169 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 7243.72972 4128.92595 3114.80377 -318.53816 0.15591 0.16831 2.62369 2.62369 55841.44515 43732.41992 21506.17126 15797.74354 19363.05891 9495.97140 411.24676 411.24676 412.75040 2958.06559 10.73781 10.12068 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 11384.53477 12175.98133 1.07755 9.53794 11.10955 11.10955 11.27045 0.16691 1532.95531 9784.63486 9784.63486 4762.42271 26175.62478 7165.71379 109340.82887 109340.82887 18156.90361 317.53202 11.85621 100.00000 1507.54250 11369.80548 6787.09813 0.02176 0.00000 0.85628 8224.19604 6184.44782 26091.69882 26091.69882 67756.80094 26283.43764 8703.25576 1.02700 2960.92501 433.52008 9447.71242 60990.13870 60186.97047 21545.16534 0.05512 18.14208 0.13262 0.88273 31905.22756 11.84621 11.62957 11.84938 11.84958 10.75247 10.75247 10.86026 10.82134 10.86026 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 61572.35312 42484.92371 19087.42941 -911.45742 0.46049 0.19770 8.92256 8.92256 360038.17594 286166.81090 140727.46156 103373.87903 126703.82353 59677.25567 8998.70147 8998.70147 9363.78646 19253.01574 5909.02216 1635.82166 21968.04327 21968.04327 4026.68381 67.55681 12.19473 100.00000 1380.82307 2126.90959 1899.77422 0.02176 0.00000 1.63522 1916.71953 1171.39677 5864.94056 5864.94056 16331.36327 5954.49704 1980.45847 1.02700 667.96471 34.00492 2072.01218 15396.73444 25803.45536 2823.08370 0.06400 15.62599 0.11809 1.18232 29223.36978 12.15110 9.33215 12.16789 12.19979 9.91161 9.91161 9.91713 9.92772 9.91713 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 15159.96650 10460.37690 4699.58960 -437.16279 0.27889 0.20924 6.24796 6.24796 81052.95159 62476.65286 30723.97085 22568.84342 27662.29517 15065.31464 1945.92380 1945.92380 2027.93059 4288.89756 59829.33634 5887.23699 208521.50230 208521.50230 43509.92169 965.32273 12.42879 100.00000 -6644.94140 12539.80296 30970.11873 0.02176 0.00000 1.00000 7088.96987 12003.29293 60175.85374 60175.85374 138313.52918 59470.31074 8558.20684 1.02700 6180.41649 519.97341 9445.56957 69902.67941 152999.50124 45512.96809 0.08153 12.26542 0.24965 1.04811 -140631.76616 12.16688 9.73458 12.15398 12.17211 9.88118 9.88118 9.92768 9.92672 9.92768 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 126310.23625 89680.26784 36629.96841 3440.11392 0.51528 0.17475 5.86949 5.86949 798531.90813 720813.36996 354472.39853 260384.05330 319148.85506 68397.92818 9743.58905 9743.58905 9792.08697 45054.93307 567276.99134 17300.82104 + 6577.73354 1827.34948 32063.02707 32063.02707 4734.19828 129.34331 11.96457 100.00000 -729.32335 3627.28975 1106.90853 0.02176 0.00000 0.74787 3007.86927 1670.02541 6626.65770 6626.65770 16772.51353 6519.19420 2671.41635 1.02700 608.74027 53.06726 2765.55720 13033.20351 16350.45488 3280.94266 0.07542 13.25953 0.16779 1.03345 -15435.20367 11.72113 10.28212 11.71078 11.74990 10.31428 10.31428 10.31939 10.32313 10.31939 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 15102.48811 10118.66705 4983.82106 504.86768 0.46397 0.19782 8.61939 8.61939 90365.83377 76358.61146 37550.66330 27583.51273 33808.70062 12752.65147 2733.55409 2733.55409 2814.48136 5004.14128 60301.18769 46587.62855 173223.01238 60572.72107 60579.89260 11482.78866 13713.55914 349.76555 13363.79359 3779.61365 15262.40232 125135.71208 3191.61507 121944.09701 -124246.09733 49560.11923 11.45378 12.13923 11.42080 11.42080 11.16650 11.55112 11.16697 45038.78538 1618.23710 9490.78831 9490.78831 4424.91029 9490.78833 15533.93570 64965.06270 13353.63201 323267.93627 323267.93627 44744.38762 603.54381 11.76385 100.00000 1025.37516 30108.13110 14636.25652 0.02176 0.00000 0.16463 17660.24456 16706.78552 64681.01306 64681.01306 181928.64962 65367.63717 16116.02528 1.02700 6657.81479 652.91105 17226.70817 136861.75953 24076.22005 30309.98931 0.05377 18.59642 0.14651 0.94413 21700.76712 11.70449 12.01669 11.70603 11.70580 11.26220 11.26220 11.35182 11.34641 11.35182 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 165221.86410 114003.08637 51218.77773 -3224.47959 1.67431 0.21592 9.10358 9.10358 880053.46400 704666.88620 346532.08662 254551.35481 311999.80346 133915.76166 16850.60911 16850.60911 16942.65853 46861.79647 28998.04406 6504.21565 112311.94424 112311.94424 19675.94820 250.32178 11.91674 100.00000 1297.90957 12351.01506 7324.93314 0.02176 0.00000 0.55484 9162.32803 6809.94687 28892.18344 28892.18344 78650.62975 29148.63048 8079.00655 1.02700 3324.26907 218.45103 8565.10855 68876.94255 25473.48143 31811.94401 0.05348 18.69901 0.13004 0.92571 27468.61259 11.77034 12.21604 11.77155 11.77137 11.35417 11.35417 11.44004 11.43683 11.44004 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 71840.68288 49570.07126 22270.61162 -1211.05017 0.88606 0.20937 8.52113 8.52113 393472.03025 309626.91809 152264.37367 111848.52461 137091.07035 67394.30557 8432.36073 8432.36072 8459.24792 20950.02623 2242.83427 2180.96786 51.55679 961.06412 1013.26048 28481.34899 11.26147 11.26147 442.28567 951.39407 15069.44104 3058.54123 164823.00042 164823.00042 10900.75822 168.90829 11.92552 100.00000 894.19491 6748.73368 4152.02454 0.02176 0.00000 0.56895 4529.82370 8626.82387 14996.83900 14996.83900 43955.07451 15163.53074 3901.08815 1.02700 1526.56079 211.91989 4259.03418 34768.35980 16125.62011 17752.78513 0.05609 17.82919 0.14234 0.99370 18924.50255 12.16265 11.43934 12.16728 12.16746 11.12189 11.12189 11.20700 11.20026 11.20700 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 35328.25063 23669.92799 11658.32265 -813.65115 0.77266 0.19148 9.67630 9.67630 220782.99070 169017.09452 83117.06939 61055.13297 74834.36691 34019.94252 4142.29530 4142.29530 4186.43213 11319.77168 4093.17784 332.02158 10258.66603 10258.66603 2840.66472 34.50591 11.10870 100.00000 5979.66936 853.94330 1986.72142 0.02176 0.00000 9.25925 518.16140 731.36168 4055.10981 4055.10981 8334.33689 4131.33127 384.83025 1.02700 556.27512 32.70386 459.89893 9918.38829 54086.71673 5219.67626 0.06065 16.48800 0.17580 1.06586 126552.11797 10.91389 10.13552 10.93389 10.93391 8.41351 8.41351 8.78259 8.77697 8.78259 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 7602.97522 4333.69588 3269.27933 -334.33574 0.15785 0.16831 2.62369 2.62369 57069.95632 44694.53264 21979.30678 16145.29371 19789.04598 9704.88271 420.29419 420.29419 421.83091 3023.14299 11.02773 10.39393 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 11634.99441 12443.85278 1.07755 9.79546 11.40951 11.40951 11.57475 0.16691 1566.68031 9999.89672 9999.89671 4867.19595 26751.48822 7323.35941 114763.47735 114763.47735 18556.35528 324.51772 12.17633 100.00000 1582.30754 11619.94107 6936.41421 0.02176 0.00000 0.85628 8405.12825 6491.15929 26665.71589 26665.71589 71117.13137 26861.67297 8894.72729 1.02700 3026.06533 443.05752 9655.56198 62331.92243 60186.97047 22613.67616 0.05512 18.14208 0.13262 0.88273 33487.53510 12.16605 11.94357 12.16931 12.16952 11.04278 11.04278 11.15348 11.11352 11.15348 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 64625.97208 44591.92079 20034.05129 -956.66024 0.46746 0.19770 8.92256 8.92256 367959.01207 292462.47729 143823.46405 105648.10316 129491.30615 60990.15517 9196.67280 9196.67280 9569.78965 19676.58183 6039.02058 1671.80972 23057.52628 23057.52629 4115.27081 69.04306 12.52399 100.00000 1449.30360 2173.70158 1941.56923 0.02176 0.00000 1.63522 1958.88734 1229.49102 5993.96919 5993.96919 17141.30082 6085.49591 2024.02853 1.02700 682.65992 34.75303 2117.59643 15735.46389 25803.45536 2963.09170 0.06400 15.62599 0.11809 1.18232 30672.67338 12.47918 9.58412 12.49643 12.52918 10.17923 10.17923 10.18489 10.19576 10.18489 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 15911.80980 10979.14877 4932.66102 -458.84344 0.28311 0.20924 6.24796 6.24796 82836.11627 63851.13848 31399.89784 23065.35771 28270.86534 15396.75209 1988.73410 1988.73410 2072.54504 4383.25323 61145.58105 6016.75613 218862.91658 218862.91659 44467.13947 986.55982 12.76437 100.00000 -6974.49055 12815.67848 31651.46099 0.02176 0.00000 1.00000 7244.92712 12598.58418 61499.72183 61499.72183 145173.04963 60778.65690 8746.48729 1.02700 6316.38558 531.41282 9653.37199 71440.53775 152999.50124 47770.13798 0.08153 12.26542 0.24965 1.04811 -147606.25671 12.49538 9.99741 12.48214 12.50076 10.14797 10.14797 10.19573 10.19474 10.19573 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 132574.46545 94127.87057 38446.59487 3610.72291 0.52330 0.17475 5.86949 5.86949 816099.60057 736671.25543 362270.78712 266112.49943 326170.12612 69902.68179 9957.94790 9957.94790 10007.51277 46046.14107 595410.52339 17681.43891 + 6722.44360 1867.55115 33653.16066 33653.16066 4838.35059 132.18887 12.28762 100.00000 -765.49341 3707.09008 1131.26051 0.02176 0.00000 0.74787 3074.04236 1752.84865 6772.44409 6772.44409 17604.32948 6662.61640 2730.18748 1.02700 622.13255 54.23473 2826.39942 13319.93437 16350.45488 3443.65771 0.07542 13.25953 0.16779 1.03345 -16200.69708 12.03760 10.55973 12.02697 12.06715 10.59277 10.59277 10.59802 10.60185 10.59802 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 15851.48083 10620.49218 5230.98865 529.90609 0.47078 0.19782 8.61939 8.61939 92353.88126 78038.49999 38376.77745 28190.34968 34552.49163 13033.20988 2793.69225 2793.69225 2876.39992 5114.23232 61627.81313 47612.55585 181813.83353 61905.32025 61912.64954 11735.40988 14015.25728 357.46039 13657.79689 3862.76511 15598.17499 127888.75527 3261.83010 124626.92517 -130407.95761 50650.43546 11.76303 12.46699 11.72916 11.72916 11.46800 11.86300 11.46848 46029.63814 1653.83830 9699.58555 9699.58554 4522.25826 9699.58556 15875.68210 66394.29334 13647.41177 339300.08458 339300.08458 45728.76363 616.82177 12.08148 100.00000 1076.22761 30770.50963 14958.25400 0.02176 0.00000 0.16463 18048.76974 17535.34176 66103.99461 66103.99461 190951.21813 66805.72444 16470.57765 1.02700 6804.28664 667.27508 17605.69555 139872.72940 24076.22005 31813.18276 0.05377 18.59642 0.14651 0.94413 22776.99472 12.02051 12.34114 12.02210 12.02186 11.56628 11.56628 11.65832 11.65276 11.65832 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 173415.87637 119656.95485 53758.92152 -3384.39443 1.69964 0.21592 9.10358 9.10358 899414.63494 720169.54923 354155.78844 260151.48164 318863.79547 136861.91215 17221.32232 17221.32231 17315.39682 47892.75509 29636.00070 6647.30832 117881.94220 117881.94220 20108.81884 255.82885 12.23849 100.00000 1362.27809 12622.73725 7486.08159 0.02176 0.00000 0.55484 9363.89914 7147.67934 29527.81114 29527.81114 82551.22867 29789.90001 8256.74460 1.02700 3397.40295 223.25695 8753.54084 70392.23769 25473.48143 33389.62539 0.05348 18.69901 0.13004 0.92571 28830.89068 12.08814 12.54587 12.08938 12.08919 11.66073 11.66073 11.74893 11.74562 11.74893 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 75403.54933 52028.44911 23375.10022 -1271.11099 0.89947 0.20937 8.52113 8.52113 402128.41152 316438.70654 155614.18809 114309.19084 140107.07228 68876.98085 8617.87256 8617.87256 8645.35128 21410.92648 2292.17660 2228.94913 52.69104 982.20752 1035.55220 29893.85286 11.56553 11.56553 452.01595 972.32473 15400.96857 3125.82911 172997.23142 172997.23142 11140.57478 172.62427 12.24750 100.00000 938.54160 6897.20574 4243.36904 0.02176 0.00000 0.56895 4629.47977 9054.66253 15326.76928 15326.76928 46134.98224 15497.12824 3986.91204 1.02700 1560.14511 216.58213 4352.73288 35533.26515 16125.62011 18633.21666 0.05609 17.82919 0.14234 0.99370 19863.04415 12.49104 11.74820 12.49579 12.49598 11.42218 11.42218 11.50959 11.50266 11.50959 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 37080.31971 24843.81428 12236.50544 -854.00337 0.78400 0.19148 9.67630 9.67630 225640.21470 172735.46855 84945.64393 62398.34518 76480.72210 34768.38172 4233.42575 4233.42575 4278.53359 11568.80648 4183.22771 339.32605 10767.43426 10767.43426 2903.15932 35.26504 11.40863 100.00000 6276.22506 872.73004 2030.42927 0.02176 0.00000 9.25925 529.56095 767.63283 4144.32218 4144.32218 8747.66995 4222.22051 393.29651 1.02700 568.51316 33.42334 470.01671 10136.59287 54086.71673 5478.54086 0.06065 16.48800 0.17580 1.06586 132828.34303 11.20856 10.40917 11.22911 11.22913 8.64067 8.64067 9.01972 9.01395 9.01972 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 7980.03713 4548.62117 3431.41595 -350.91679 0.15982 0.16831 2.62369 2.62369 58325.49473 45677.81181 22462.85126 16500.48998 20224.40476 9918.39006 429.54066 429.54066 431.11118 3089.65210 11.32548 10.67457 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 11890.96415 12717.61740 1.07755 10.05994 11.71756 11.71756 11.88727 0.16691 1601.14726 10219.89433 10219.89432 4974.27421 27340.02066 7484.47324 120455.05663 120455.05663 18964.59488 331.65711 12.50509 100.00000 1660.78049 11875.57964 7089.01524 0.02176 0.00000 0.85628 8590.04098 6813.08181 27252.36134 27252.36134 74644.11401 27452.62947 9090.41119 1.02700 3092.63873 452.80478 9867.98424 63703.22535 60186.97047 23735.17869 0.05512 18.14208 0.13262 0.88273 35148.31558 12.49454 12.26605 12.49788 12.49810 11.34094 11.34094 11.45463 11.41359 11.45463 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 67831.03220 46803.41228 21027.61992 -1004.10484 0.47453 0.19770 8.92256 8.92256 376054.10647 298896.64825 146987.57856 107972.36019 132340.11336 62331.93843 9398.99949 9398.99949 9780.32492 20109.46636 6171.87896 1708.58951 24201.04112 24201.04112 4205.80672 70.56201 12.86214 100.00000 1521.18035 2221.52299 1984.28373 0.02176 0.00000 1.63522 2001.98284 1290.46639 6125.83644 6125.83644 17991.40640 6219.37675 2068.55713 1.02700 697.67843 35.51759 2164.18352 16081.64536 25803.45536 3110.04325 0.06400 15.62599 0.11809 1.18232 32193.85373 12.81612 9.84289 12.83383 12.86747 10.45407 10.45407 10.45988 10.47105 10.45988 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 16700.94001 11523.64862 5177.29139 -481.59932 0.28739 0.20924 6.24796 6.24796 84658.51054 65255.86277 32090.69523 23572.79531 28892.82404 15735.48115 2032.48623 2032.48623 2118.14100 4479.68472 62490.78313 6149.12470 229717.20292 229717.20292 45445.41603 1008.26413 13.10900 100.00000 -7320.38335 13097.62326 32347.79277 0.02176 0.00000 1.00000 7404.31544 13223.39830 62852.71501 62852.71501 152372.76109 62115.78666 8938.90991 1.02700 6455.34599 543.10390 9865.74607 73012.22895 152999.50124 50139.24995 0.08153 12.26542 0.24965 1.04811 -154926.64006 12.83276 10.26734 12.81916 12.83828 10.42196 10.42196 10.47101 10.47000 10.47101 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 139149.36279 98796.04770 40353.31509 3789.79309 0.53145 0.17475 5.86949 5.86949 834053.78202 752878.01418 370240.74016 271966.97131 333345.86506 71440.53996 10177.02264 10177.02264 10227.67794 47059.15563 624939.30968 18070.43036 + 6870.33728 1908.63725 35322.15534 35322.15534 4944.79424 135.09702 12.61938 100.00000 -803.45729 3788.64602 1156.14823 0.02176 0.00000 0.74787 3141.67126 1839.77941 6921.43779 6921.43779 18477.39850 6809.19388 2790.25157 1.02700 635.81946 55.42790 2888.58018 13612.97329 16350.45488 3614.44245 0.07542 13.25953 0.16779 1.03345 -17004.15437 12.36262 10.84485 12.35170 12.39296 10.87877 10.87877 10.88416 10.88810 10.88416 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 16637.61909 11147.20481 5490.41428 556.18625 0.47770 0.19782 8.61939 8.61939 94385.66577 79755.34605 39221.06610 28810.53704 35312.64604 13319.94058 2855.15345 2855.15345 2939.68068 5226.74535 62983.62431 48660.03153 190830.70782 63267.23658 63274.72713 11993.58876 14323.59278 365.32451 13958.26827 3947.74590 15941.33466 130702.36008 3333.58990 127368.77017 -136875.40916 51764.73915 12.08063 12.80360 12.04585 12.04585 11.77764 12.18331 11.77813 47042.28965 1690.22272 9912.97632 9912.97631 4621.74789 9912.97633 16224.94693 67854.96703 13947.65467 356127.33116 356127.33116 46734.79591 630.39184 12.40768 100.00000 1129.60202 31447.46049 15287.33542 0.02176 0.00000 0.16463 18445.84247 18404.98940 67558.28173 67558.28173 200421.25185 68275.44960 16832.93017 1.02700 6953.98087 681.95513 17993.02066 142949.94021 24076.22005 33390.92558 0.05377 18.59642 0.14651 0.94413 23906.59674 12.34506 12.67435 12.34669 12.34645 11.87857 11.87857 11.97309 11.96739 11.97309 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 182016.26244 125591.22125 56425.04120 -3552.24008 1.72535 0.21592 9.10358 9.10358 919201.75124 736013.27066 361947.21162 265874.81119 325878.79522 139872.87776 17600.19121 17600.19121 17696.33535 48946.39480 30287.99238 6793.54903 123728.17861 123728.17861 20551.21262 261.45709 12.56893 100.00000 1429.83889 12900.43733 7650.77530 0.02176 0.00000 0.55484 9569.90481 7502.16131 30177.42265 30177.42265 86645.27387 30445.27747 8438.39289 1.02700 3472.14578 228.16860 8946.11863 71940.86922 25473.48143 35045.55030 0.05348 18.69901 0.13004 0.92571 30260.72956 12.41452 12.88461 12.41580 12.41560 11.97557 11.97557 12.06615 12.06275 12.06615 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 79143.11256 54608.74775 24534.36481 -1334.15046 0.91308 0.20937 8.52113 8.52113 410975.23303 323400.35425 159037.69838 116823.99169 143189.42621 70392.27493 8807.46566 8807.46566 8835.54891 21881.96652 2342.60446 2277.98598 53.85025 1003.81608 1058.33434 31376.40843 11.87780 11.87780 461.96029 993.71586 15739.78970 3194.59731 181576.85519 181576.85519 11385.66730 176.42200 12.57819 100.00000 985.08762 7048.94419 4336.72311 0.02176 0.00000 0.56895 4731.32827 9503.71941 15663.95803 15663.95803 48423.00031 15838.06489 4074.62406 1.02700 1594.46828 221.34693 4448.49295 36314.99836 16125.62011 19557.31230 0.05609 17.82919 0.14234 0.99370 20848.13177 12.82830 12.06541 12.83318 12.83337 11.73058 11.73058 11.82035 11.81323 11.82035 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 38919.28090 26075.91828 12843.36262 -896.35681 0.79552 0.19148 9.67630 9.67630 230604.29755 176535.64677 86814.44709 63771.10804 78163.29708 35533.28656 4326.56106 4326.56106 4372.66128 11823.32005 4275.25867 346.79122 11301.43433 11301.43434 2967.02879 36.04087 11.71666 100.00000 6587.48813 891.93009 2075.09869 0.02176 0.00000 9.25925 541.21128 805.70280 4235.49722 4235.49722 9181.50185 4315.10931 401.94903 1.02700 581.02045 34.15866 480.35707 10359.59794 54086.71673 5750.24359 0.06065 16.48800 0.17580 1.06586 139415.83116 11.51119 10.69022 11.53230 11.53231 8.87397 8.87397 9.26325 9.25732 9.26325 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 8375.79905 4774.20547 3601.59358 -368.32015 0.16182 0.16831 2.62369 2.62369 59608.65496 46682.72312 22957.03373 16863.50057 20669.34142 10136.59457 438.99054 438.99054 440.59562 3157.62441 11.63126 10.96278 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 12152.56522 12997.40484 1.07755 10.33156 12.03394 12.03394 12.20822 0.16691 1636.37248 10444.73189 10444.73188 5083.70819 27941.50080 7649.13156 126428.90407 126428.90407 19381.81575 338.95356 12.84272 100.00000 1743.14521 12136.84226 7244.97350 0.02176 0.00000 0.85628 8779.02178 7150.96976 27851.91297 27851.91297 78346.01381 28056.58700 9290.40013 1.02700 3160.67674 462.76648 10085.07978 65104.69687 60186.97047 24912.30101 0.05512 18.14208 0.13262 0.88273 36891.46080 12.83189 12.59723 12.83533 12.83555 11.64714 11.64714 11.76390 11.72175 11.76390 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 71195.04405 49124.58046 22070.46359 -1053.90242 0.48171 0.19770 8.92256 8.92256 384327.29283 305472.37090 150221.30355 110347.75085 135251.59430 63703.24090 9605.77738 9605.77737 9995.49195 20551.87435 6307.66023 1746.17846 25401.26742 25401.26742 4298.33442 72.11437 13.20941 100.00000 1596.62175 2270.39647 2027.93795 0.02176 0.00000 1.63522 2046.02644 1354.46577 6260.60477 6260.60477 18883.67211 6356.20297 2114.06537 1.02700 713.02735 36.29898 2211.79554 16435.44278 25803.45536 3264.28272 0.06400 15.62599 0.11809 1.18232 33790.47549 13.16216 10.10865 13.18034 13.21489 10.73633 10.73633 10.74230 10.75377 10.74230 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 17529.20634 12095.15239 5434.05395 -505.48376 0.29174 0.20924 6.24796 6.24796 86520.99744 66691.49097 32796.69015 24091.39653 29528.46583 16081.66222 2077.20090 2077.20090 2164.74008 4578.23770 63865.57964 6284.40537 241109.79667 241109.79667 46445.21466 1030.44592 13.46295 100.00000 -7683.43036 13385.77082 33059.44384 0.02176 0.00000 1.00000 7567.21029 13879.19945 64235.47402 64235.47402 159929.53501 63482.33326 9135.56583 1.02700 6597.36353 555.05218 10082.79237 74618.49733 152999.50124 52625.85564 0.08153 12.26542 0.24965 1.04811 -162610.07042 13.17924 10.54456 13.16527 13.18491 10.70336 10.70336 10.75373 10.75269 10.75373 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 146050.33556 103695.73838 42354.59719 3977.74408 0.53972 0.17475 5.86949 5.86949 852402.95524 769441.32142 378386.03207 277950.24149 340679.47016 73012.23100 10400.91702 10400.91702 10452.68674 48094.45650 655932.54644 18467.97962 + 7021.48462 1950.62725 37073.92212 37073.92212 5053.57966 138.06915 12.96011 100.00000 -843.30395 3871.99619 1181.58347 0.02176 0.00000 0.74787 3210.78799 1931.02142 7073.70934 7073.70934 19393.76651 6958.99607 2851.63707 1.02700 649.80748 56.64731 2952.12891 13912.45905 16350.45488 3793.69709 0.07542 13.25953 0.16779 1.03345 -17847.45832 12.69641 11.13766 12.68520 12.72757 11.17250 11.17250 11.17804 11.18208 11.17804 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 17462.74508 11700.03923 5762.70585 583.76975 0.48472 0.19782 8.61939 8.61939 96462.14950 81509.96269 40083.92909 29444.36852 36089.52384 13612.97934 2917.96679 2917.96679 3004.35362 5341.73368 64369.26333 49730.55167 200294.76492 64659.11506 64666.77040 12257.44758 14638.71165 373.36165 14265.35001 4034.59626 16292.04384 133577.85932 3406.92846 130170.93087 -143663.60747 52903.55799 12.40681 13.14929 12.37109 12.37109 12.09563 12.51226 12.09614 48077.21949 1727.40760 10131.06168 10131.06168 4723.42629 10131.06170 16581.89557 69347.77553 14254.50291 373789.10812 373789.10813 47762.96089 644.26046 12.74268 100.00000 1185.62349 32139.30426 15623.65663 0.02176 0.00000 0.16463 18851.65079 19317.76635 69044.56315 69044.56316 210360.94237 69777.50871 17203.25444 1.02700 7106.96836 696.95813 18388.86690 146094.84929 24076.22005 35046.91496 0.05377 18.59642 0.14651 0.94413 25092.22023 12.67838 13.01656 12.68005 12.67981 12.19929 12.19929 12.29637 12.29051 12.29637 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 191043.17602 131819.79163 59223.38439 -3728.40987 1.75146 0.21592 9.10358 9.10358 939424.18371 752205.55375 369910.04600 271724.05393 333048.12489 142950.08444 17987.39522 17987.39521 18085.65453 50023.21459 30954.32786 6943.00703 129864.35323 129864.35323 21003.33906 267.20914 12.90829 100.00000 1500.75030 13184.24680 7819.09227 0.02176 0.00000 0.55484 9780.44261 7874.22346 30841.32560 30841.32560 90942.35913 31115.07322 8624.03744 1.02700 3548.53295 233.18830 9142.93314 73523.57054 25473.48143 36783.59913 0.05348 18.69901 0.13004 0.92571 31761.47986 12.74971 13.23249 12.75102 12.75082 12.29891 12.29891 12.39193 12.38845 12.39193 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 83068.13568 57317.01370 25751.12197 -1400.31632 0.92689 0.20937 8.52113 8.52113 420016.68446 330515.15813 162536.52586 119394.11813 146339.59189 71940.90543 9001.22981 9001.22980 9029.93088 22363.36945 2394.14173 2328.10165 55.03495 1025.90002 1081.61768 32932.48986 12.19850 12.19850 472.12341 1015.57760 16086.06490 3264.87841 190581.97677 190581.97677 11636.15185 180.30329 12.91780 100.00000 1033.94204 7204.02088 4432.13097 0.02176 0.00000 0.56895 4835.41744 9975.04682 16008.56493 16008.56493 50824.49034 16186.50213 4164.26574 1.02700 1629.54656 226.21656 4546.35975 37113.92966 16125.62011 20527.23754 0.05609 17.82920 0.14234 0.99370 21882.07380 13.17466 12.39117 13.17968 13.17987 12.04731 12.04731 12.13950 12.13219 12.13950 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 40849.44352 27369.12724 13480.31628 -940.81073 0.80720 0.19148 9.67630 9.67630 235677.59014 180419.42886 88724.36389 65174.07166 79882.88869 36315.01928 4421.74536 4421.74536 4468.85978 12083.43291 4369.31431 354.42062 11861.91761 11861.91761 3032.30339 36.83377 12.03301 100.00000 6914.18799 911.55255 2120.75084 0.02176 0.00000 9.25925 553.11792 845.66082 4328.67811 4328.67811 9636.84921 4410.04167 410.79190 1.02700 593.80289 34.91015 490.92492 10587.50911 54086.71673 6035.42114 0.06065 16.48800 0.17580 1.06586 146330.01915 11.82199 10.97886 11.84367 11.84369 9.11357 9.11357 9.51336 9.50727 9.51336 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 8791.18838 5010.97739 3780.21099 -386.58662 0.16384 0.16831 2.62369 2.62369 60920.04470 47709.74246 23462.08819 17234.49738 21124.06669 10359.59958 448.64833 448.64833 450.28872 3227.09210 11.94531 11.25878 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 12419.92152 13283.34760 1.07755 10.61051 12.35885 12.35885 12.53784 0.16691 1672.37265 10674.51587 10674.51586 5195.54971 28556.21350 7817.41237 132699.01846 132699.01846 19808.21548 346.41054 13.18948 100.00000 1829.59473 12403.85265 7404.36283 0.02176 0.00000 0.85628 8972.16016 7505.61491 28464.65474 28464.65474 82231.50561 28673.83159 9494.78882 1.02700 3230.21160 472.94734 10306.95142 66537.00072 60186.97047 26147.80154 0.05512 18.14208 0.13262 0.88273 38721.05553 13.17835 12.93735 13.18188 13.18211 11.96162 11.96162 12.08153 12.03824 12.08153 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 74725.89070 51560.86465 23165.02604 -1106.16965 0.48900 0.19770 8.92256 8.92256 392782.48916 312192.75936 153526.17044 112775.40007 138227.12777 65104.71198 9817.10437 9817.10436 10215.39266 21004.01532 6446.42868 1784.59437 26661.01774 26661.01774 4392.89773 73.70089 13.56607 100.00000 1675.80460 2320.34516 2072.55256 0.02176 0.00000 1.63522 2091.03900 1421.63914 6398.33800 6398.33800 19820.18885 6496.03936 2160.57478 1.02700 728.71395 37.09756 2260.45501 16797.02371 25803.45536 3426.17154 0.06400 15.62599 0.11809 1.18232 35466.28009 13.51754 10.38158 13.53621 13.57169 11.02621 11.02621 11.03234 11.04412 11.03234 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 18398.54971 12694.99932 5703.55039 -530.55272 0.29616 0.20924 6.24796 6.24796 88424.45901 68158.70298 33518.21694 24621.40697 30178.09173 16435.45926 2122.89930 2122.89930 2212.36434 4678.95884 65270.62166 6422.66222 253067.39466 253067.39466 47467.00885 1053.11572 13.82645 100.00000 -8064.48232 13680.25763 33786.75123 0.02176 0.00000 1.00000 7733.68883 14567.52439 65648.65371 65648.65371 167861.07954 64878.94387 9336.54817 1.02700 6742.50545 567.26332 10304.61368 76260.10358 152999.50124 55235.78204 0.08153 12.26542 0.24965 1.04811 -170674.55273 13.53508 10.82927 13.52074 13.54090 10.99235 10.99235 11.04408 11.04301 11.04408 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 153293.55515 108838.42429 44455.13086 4175.01631 0.54813 0.17475 5.86949 5.86949 871155.81004 786369.02119 386710.52030 284065.14355 348174.41449 74618.49922 10629.73708 10629.73708 10682.64573 49152.53398 688462.86162 18874.27496 + 7175.95720 1993.54103 38912.56601 38912.56602 5164.75835 141.10667 13.31003 100.00000 -885.12676 3957.18006 1207.57830 0.02176 0.00000 0.74787 3281.42529 2026.78849 7229.33086 7229.33086 20355.58086 7112.09390 2914.37306 1.02700 664.10323 57.89355 3017.07571 14218.53348 16350.45488 3981.84168 0.07542 13.25953 0.16779 1.03345 -18732.58507 13.03921 11.43837 13.02770 13.07121 11.47416 11.47416 11.47984 11.48400 11.47984 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 18328.79237 12280.29091 6048.50146 612.72122 0.49183 0.19782 8.61939 8.61939 98584.31584 83303.18089 40965.77505 30092.14428 36883.49294 13912.46494 2982.16203 2982.16203 3070.44937 5459.25175 65785.38638 50824.62324 210228.18242 66081.61485 66089.43861 12527.11128 14960.76314 381.57560 14579.18754 4123.35734 16650.46862 136516.61513 3481.88049 133034.73463 -150788.45964 54067.43127 12.74179 13.50433 12.70511 12.70511 12.42222 12.85009 12.42273 49134.91776 1765.41055 10353.94492 10353.94492 4827.34162 10353.94494 16946.69709 70873.42580 14568.10181 392326.80316 392326.80316 48813.74548 658.43418 13.08674 100.00000 1244.42328 32846.36859 15967.37690 0.02176 0.00000 0.16463 19266.38689 20275.81155 70563.54275 70563.54275 220793.58186 71312.61309 17581.72584 1.02700 7263.32158 712.29120 18793.42177 149308.94599 24076.22005 36785.03148 0.05377 18.59642 0.14651 0.94413 26336.64351 13.02069 13.36800 13.02242 13.02216 12.52867 12.52867 12.62837 12.62235 12.62837 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 200517.77031 138357.26170 62160.50861 -3913.31663 1.77795 0.21592 9.10358 9.10358 960091.50929 768754.06686 378048.06264 277701.97993 340375.17971 146094.98949 18383.11770 18383.11770 18483.53872 51123.72440 31635.32272 7095.75311 136304.84527 136304.84527 21465.41228 273.08774 13.25682 100.00000 1575.17849 13474.30008 7991.11221 0.02176 0.00000 0.55484 9995.61223 8264.73765 31519.83441 31519.83441 95452.55402 31799.60447 8813.76616 1.02700 3626.60063 238.31844 9344.07757 75141.09119 25473.48143 38607.84475 0.05348 18.69901 0.13004 0.92571 33336.65835 13.09395 13.58977 13.09530 13.09510 12.63098 12.63098 12.72651 12.72293 12.72651 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 87187.81636 60159.59339 27028.22298 -1469.76360 0.94091 0.20937 8.52113 8.52113 429257.04767 337786.48759 166112.32750 122020.78733 149559.06118 73523.60575 9199.25676 9199.25675 9228.58926 22855.36324 2446.81282 2379.31985 56.24572 1048.46981 1105.41326 34565.74359 12.52786 12.52786 482.51012 1037.92030 16439.95814 3336.70570 200033.69830 200033.69830 11892.14705 184.26996 13.26658 100.00000 1085.21935 7362.50926 4529.63780 0.02176 0.00000 0.56895 4941.79656 10469.74924 16360.75317 16360.75317 53345.07985 16542.60499 4255.87954 1.02700 1665.39657 231.19332 4646.37961 37930.43739 16125.62011 21545.26525 0.05609 17.82920 0.14234 0.99370 22967.29315 13.53038 12.72573 13.53553 13.53573 12.37258 12.37258 12.46726 12.45976 12.46726 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 42875.33061 28726.47159 14148.85902 -987.46929 0.81906 0.19148 9.67630 9.67630 240862.49509 184388.65410 90676.29885 66607.90047 81640.31130 37113.95009 4519.02370 4519.02370 4567.17464 12349.26826 4465.43917 362.21787 12450.19749 12450.19749 3099.01403 37.64411 12.35791 100.00000 7257.09019 931.60669 2167.40733 0.02176 0.00000 9.25925 565.28651 887.60052 4423.90898 4423.90898 10114.77906 4507.06254 419.82932 1.02700 606.86655 35.67817 501.72526 10820.43432 54086.71673 6334.74178 0.06065 16.48800 0.17580 1.06586 153587.10934 12.14119 11.27529 12.16345 12.16347 9.35964 9.35964 9.77022 9.76397 9.77022 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 9227.17853 5259.49178 3967.68676 -405.75900 0.16588 0.16831 2.62369 2.62369 62260.28499 48759.35622 23978.25386 17613.65612 21588.79590 10587.51069 458.51859 458.51859 460.19507 3298.08809 12.26783 11.56277 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 12693.15965 13575.58109 1.07755 10.89700 12.69254 12.69254 12.87637 0.16691 1709.16483 10909.35510 10909.35509 5309.85174 29184.44986 7989.39535 139280.09287 139280.09287 20243.99599 354.03156 13.54559 100.00000 1920.33163 12676.73726 7567.25873 0.02176 0.00000 0.85628 9169.54758 7877.84834 29090.87682 29090.87682 86309.69447 29304.65555 9703.67407 1.02700 3301.27621 483.35217 10533.70423 68000.81520 60186.97047 27444.57546 0.05512 18.14208 0.13262 0.88273 40641.38717 13.53417 13.28666 13.53779 13.53802 12.28458 12.28458 12.40773 12.36327 12.40773 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 78431.84613 54117.97391 24313.87222 -1161.02902 0.49639 0.19770 8.92256 8.92256 401423.69969 319060.99627 156903.74437 115256.45755 141268.12295 66537.01540 10033.08055 10033.08055 10440.13118 21466.10338 6588.25004 1823.85543 27983.24411 27983.24411 4489.54143 75.32231 13.93235 100.00000 1758.91443 2371.39273 2118.14870 0.02176 0.00000 1.63522 2137.04183 1492.14390 6539.10137 6539.10137 20803.15119 6638.95215 2208.10740 1.02700 744.74564 37.91370 2310.18500 17166.55938 25803.45536 3596.08907 0.06400 15.62599 0.11809 1.18232 37225.19452 13.88251 10.66189 13.90169 13.93813 11.32392 11.32392 11.33021 11.34231 11.33021 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 19311.00728 13324.59504 5986.41224 -556.86495 0.30064 0.20924 6.24796 6.24796 90369.79670 69658.19363 34255.61732 25163.07764 30842.00940 16797.03982 2169.60306 2169.60306 2261.03633 4781.89585 66706.57459 6563.96071 265618.01770 265618.01770 48511.28250 1076.28426 14.19976 100.00000 -8464.43216 13981.22314 34530.05937 0.02176 0.00000 1.00000 7903.82990 15289.98612 67092.92334 67092.92334 176185.98104 66306.27989 9541.95212 1.02700 6890.84049 579.74310 10531.31506 77937.82513 152999.50124 57975.14512 0.08153 12.26542 0.24965 1.04811 -179138.98489 13.90053 11.12166 13.88580 13.90651 11.28914 11.28914 11.34227 11.34117 11.34227 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 160895.99492 114236.15654 46659.83838 4382.07205 0.55666 0.17475 5.86949 5.86949 890321.22740 803669.13015 395218.14717 290314.57337 355834.24751 76260.10532 10863.59118 10863.59117 10917.66381 50233.88915 722606.48507 19289.50879 + 7333.82818 2037.39891 40842.39561 40842.39561 5278.38298 144.21102 13.66940 100.00000 -929.02373 4044.23797 1234.14501 0.02176 0.00000 0.74787 3353.61660 2127.30503 7388.37606 7388.37606 21365.09543 7268.55989 2978.48923 1.02700 678.71350 59.16721 3083.45134 14531.34154 16350.45488 4179.31712 0.07542 13.25953 0.16779 1.03345 -19661.60880 13.39127 11.74721 13.37945 13.42414 11.78396 11.78396 11.78980 11.79407 11.78980 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 19237.79041 12889.31960 6348.47081 643.10851 0.49906 0.19782 8.61939 8.61939 100753.16981 85135.84985 41867.02162 30754.17110 37694.92934 14218.53922 3047.76956 3047.76956 3137.99922 5579.35521 67232.66413 51942.76437 220654.23777 67535.40963 67543.40550 12802.70759 15289.89976 389.97026 14899.92950 4214.07115 17016.77874 139520.01953 3558.48151 135961.53802 -158266.66170 55256.91014 13.08582 13.86894 13.04814 13.04814 12.75761 13.19704 12.75815 50215.88539 1804.24956 10581.73159 10581.73159 4933.54308 10581.73161 17319.52423 72432.64036 14888.59988 411783.85655 411783.85655 49887.64733 672.91972 13.44008 100.00000 1306.13918 33568.98832 16318.65901 0.02176 0.00000 0.16463 19690.24718 21281.37004 72115.93988 72115.93989 231743.61761 72881.48976 17968.52361 1.02700 7423.11457 727.96160 19206.87683 152593.75246 24076.22005 38609.34813 0.05377 18.59642 0.14651 0.94413 27642.78269 13.37225 13.72894 13.37402 13.37376 12.86695 12.86695 12.96933 12.96315 12.96933 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 210462.24757 145218.95103 65243.29654 -4107.39365 1.80485 0.21592 9.10358 9.10358 981213.51562 785666.64705 386365.11555 283811.42024 347863.42966 149309.08229 18787.54608 18787.54607 18890.17636 52248.44542 32331.29946 7251.85959 143064.74703 143064.74703 21937.65111 279.09566 13.61475 100.00000 1653.29786 13770.73452 8166.91658 0.02176 0.00000 0.55484 10215.51559 8674.61901 32213.27041 32213.27041 100186.42748 32499.19541 9007.66892 1.02700 3706.38580 243.56145 9549.64717 76794.19719 25473.48143 40522.56199 0.05348 18.69901 0.13004 0.92571 34989.95621 13.44749 13.95670 13.44887 13.44866 12.97202 12.97202 13.07013 13.06645 13.07013 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 91511.80847 63143.14795 28368.66052 -1542.65505 0.95515 0.20937 8.52113 8.52113 438700.69872 345217.78620 169766.79672 124705.24321 152849.35876 75141.12542 9401.64030 9401.64030 9431.61811 23358.18089 2500.64267 2431.66486 57.48312 1071.53613 1129.73234 36279.99689 12.86611 12.86611 493.12534 1060.75453 16801.63703 3410.11319 209954.16846 209954.16846 12153.77415 188.32389 13.62478 100.00000 1139.03970 7524.48437 4629.28978 0.02176 0.00000 0.56895 5050.51603 10988.98593 16720.68956 16720.68956 55990.67546 16906.54211 4349.50884 1.02700 1702.03527 236.27957 4748.59991 38764.90824 16125.62011 22613.78102 0.05609 17.82920 0.14234 0.99370 24106.33285 13.89570 13.06933 13.90099 13.90119 12.70664 12.70664 12.80388 12.79617 12.80388 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 45001.68954 30151.13208 14850.55745 -1036.44184 0.83109 0.19148 9.67630 9.67630 246161.46785 188445.20224 92671.17634 68073.27350 83436.39718 37930.45735 4618.44217 4618.44217 4667.65243 12620.95198 4563.67878 370.18666 13067.65252 13067.65252 3167.19230 38.47228 12.69157 100.00000 7616.99829 952.10203 2215.09027 0.02176 0.00000 9.25925 577.72281 931.62018 4521.23493 4521.23493 10616.41136 4606.21786 429.06556 1.02700 620.21760 36.46309 512.76321 11058.48388 54086.71673 6648.90693 0.06065 16.48800 0.17580 1.06586 161204.10763 12.46900 11.57972 12.49186 12.49188 9.61235 9.61235 10.03401 10.02759 10.03401 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 9684.79118 5520.33099 4164.46019 -425.88221 0.16795 0.16831 2.62369 2.62369 63630.01055 49832.06146 24505.77516 18001.15635 22063.74916 10820.43585 468.60599 468.60599 470.31936 3370.64598 12.59906 11.87496 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 12972.40902 13874.24372 1.07755 11.19122 13.03524 13.03524 13.22403 0.16691 1746.76644 11149.36078 11149.36078 5426.66842 29826.50743 8165.16196 146187.54905 146187.54905 20689.36367 361.82025 13.91132 100.00000 2015.56854 12955.62534 7733.73834 0.02176 0.00000 0.85628 9371.27752 8268.54231 29730.87577 29730.87577 90590.13700 29949.35764 9917.15479 1.02700 3373.90425 493.98592 10765.44560 69496.83355 60186.97047 28805.66159 0.05512 18.14208 0.13262 0.88273 42656.95570 13.89959 13.64540 13.90331 13.90355 12.61627 12.61627 12.74274 12.69708 12.74274 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 82321.59470 56801.90043 25519.69427 -1218.60909 0.50390 0.19770 8.92256 8.92256 410255.01673 326080.33431 160355.62488 117792.09826 144376.01998 68000.82946 10253.80821 10253.80820 10669.81395 21938.35737 6733.19146 1863.98022 29371.04497 29371.04497 4588.31129 76.97940 14.30852 100.00000 1846.14602 2423.56334 2164.74794 0.02176 0.00000 1.63522 2184.05673 1566.14528 6682.96152 6682.96152 21834.86256 6785.00902 2256.68574 1.02700 761.13004 38.74780 2361.00904 17544.22480 25803.45536 3774.43349 0.06400 15.62599 0.11809 1.18232 39071.34054 14.25734 10.94976 14.27704 14.31446 11.62966 11.62966 11.63613 11.64855 11.63613 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 20268.71728 13985.41494 6283.30234 -584.48211 0.30518 0.20924 6.24796 6.24796 92357.93178 71190.67305 35009.24050 25716.66505 31520.53324 17166.57513 2217.33430 2217.33430 2310.77910 4887.09747 68174.11847 6708.36777 278791.07628 278791.07628 49578.53016 1099.96250 14.58315 100.00000 -8884.21710 14288.80988 35289.72028 0.02176 0.00000 1.00000 8077.71406 16048.27761 68568.96689 68568.96688 184923.74767 67765.01729 9751.87496 1.02700 7042.43890 592.49745 10763.00388 79652.45653 152999.50124 60850.36415 0.08153 12.26542 0.24965 1.04811 -188023.20199 14.27584 11.42194 14.26071 14.28198 11.59395 11.59395 11.64851 11.64739 11.64851 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 168875.47006 119901.58390 48973.88616 4599.39652 0.56533 0.17475 5.86949 5.86949 909908.28370 821349.84127 403912.94173 296701.49058 363662.59675 77937.82674 11102.59006 11102.59005 11157.85229 51339.03413 758443.42720 19713.87777 + 7495.17232 2082.22166 42867.93316 42867.93316 5394.50734 147.38366 14.03848 100.00000 -975.09773 4133.21116 1261.29618 0.02176 0.00000 0.74787 3427.39613 2232.80658 7550.92025 7550.92025 22424.67586 7428.46812 3044.01596 1.02700 693.64519 60.46889 3151.28723 14851.03135 16350.45488 4386.58615 0.07542 13.25953 0.16779 1.03345 -20636.70653 13.75283 12.06439 13.74069 13.78659 12.10213 12.10213 12.10812 12.11251 12.10812 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 20191.86928 13528.55245 6663.31683 675.00283 0.50639 0.19782 8.61939 8.61939 102969.73854 87008.83752 42788.09559 31430.76250 38524.21734 14531.34712 3114.82046 3114.82045 3207.03517 5702.10095 68711.78197 53085.50459 231597.36286 69021.18786 69029.35965 13084.36701 15626.27738 398.54960 15227.72778 4306.78067 17391.14767 142589.49515 3636.76777 138952.72738 -166115.73767 56472.55789 13.43914 14.24340 13.40044 13.40044 13.10207 13.55336 13.10262 51320.63430 1843.94303 10814.52957 10814.52956 5042.08097 10814.52958 17700.55356 74026.15762 15216.14891 432205.86293 432205.86294 50985.17500 687.72395 13.80296 100.00000 1370.91583 34307.50568 16677.66932 0.02176 0.00000 0.16463 20123.43239 22336.79820 73702.48973 73702.48974 243236.70939 74484.88169 18363.83092 1.02700 7586.42301 743.97675 19629.42790 155950.82431 24076.22005 40524.13994 0.05377 18.59642 0.14651 0.94413 29013.69852 13.73330 14.09962 13.73512 13.73485 13.21435 13.21435 13.31951 13.31316 13.31951 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 220899.91119 152420.93894 68478.97225 -4311.09573 1.83216 0.21592 9.10358 9.10358 1002800.20569 802951.30377 394865.14352 290055.26815 355516.42100 152593.88495 19200.87188 19200.87187 19305.76002 53397.91031 33042.58767 7411.40042 150159.89932 150159.89933 22420.27918 285.23577 13.98235 100.00000 1735.29150 14073.69052 8346.58866 0.02176 0.00000 0.55484 10440.25681 9104.82802 32921.96198 32921.96198 105155.07264 33214.17733 9205.83753 1.02700 3787.92624 248.91979 9759.73929 78483.67142 25473.48143 42532.23771 0.05348 18.69901 0.13004 0.92571 36725.24771 13.81057 14.33353 13.81199 13.81178 13.32226 13.32226 13.42302 13.41925 13.42302 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 96050.24463 66274.66890 29775.57572 -1619.16148 0.96960 0.20937 8.52113 8.52113 448352.10993 352812.57329 173501.66423 127448.75709 156212.04284 76794.23047 9608.47628 9608.47627 9639.11360 23872.06052 2555.65678 2485.16146 58.74775 1095.10991 1154.58644 38079.26686 13.21349 13.21349 503.97409 1084.09112 17171.27285 3485.13564 220366.63436 220366.63437 12421.15705 192.46702 13.99265 100.00000 1195.52922 7690.02294 4731.13410 0.02176 0.00000 0.56895 5161.62733 11533.97364 17088.54453 17088.54453 58767.47673 17278.48584 4445.19799 1.02700 1739.48003 241.47772 4853.06905 39617.73740 16125.62011 23735.28876 0.05609 17.82920 0.14234 0.99370 25301.86206 14.27088 13.42220 14.27631 14.27652 13.04972 13.04972 13.14959 13.14167 13.14959 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 47233.50310 31646.44717 15587.05592 -1087.84314 0.84329 0.19148 9.67630 9.67630 251577.01793 192590.99439 94709.94111 69570.88471 85271.99692 38764.92774 4720.04785 4720.04785 4770.34073 12898.61274 4664.07967 378.33076 13715.72961 13715.72961 3236.87049 39.31867 13.03424 100.00000 7994.75566 973.04826 2263.82223 0.02176 0.00000 9.25925 590.43270 977.82294 4620.70205 4620.70205 11142.92161 4707.55460 438.50499 1.02700 633.86238 37.26528 524.04399 11301.77052 54086.71673 6978.65278 0.06065 16.48800 0.17580 1.06586 169198.86329 12.80566 11.89237 12.82914 12.82916 9.87188 9.87188 10.30493 10.29834 10.30493 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 10165.09866 5794.10625 4370.99241 -447.00341 0.17005 0.16831 2.62369 2.62369 65029.87006 50928.36621 25044.90192 18397.18158 22549.15138 11058.48535 478.91532 478.91532 480.66638 3444.80015 12.93924 12.19559 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 13257.80186 14179.47692 1.07755 11.49338 13.38719 13.38719 13.58108 0.16691 1785.19528 11394.64659 11394.64659 5546.05506 30482.69025 8344.79543 153437.57357 153437.57357 21144.52943 369.78030 14.28693 100.00000 2115.52862 13240.64894 7903.88049 0.02176 0.00000 0.85628 9577.44552 8678.61235 30384.95470 30384.95470 95082.86378 30608.24316 10135.33208 1.02700 3448.13010 504.85360 11002.28528 71025.76425 60186.97047 30234.24942 0.05512 18.14208 0.13262 0.88273 44772.48432 14.27488 14.01383 14.27870 14.27895 12.95690 12.95690 13.08679 13.03990 13.08679 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 86404.25144 59618.93358 26785.31785 -1279.04478 0.51153 0.19770 8.92256 8.92256 419280.62260 333254.09768 163883.44672 120383.52303 147552.29071 69496.84740 10479.39187 10479.39187 10904.54973 22421.00095 6881.32160 1904.98777 30827.67242 30827.67242 4689.25409 78.67294 14.69486 100.00000 1937.70376 2476.88171 2212.37238 0.02176 0.00000 1.63522 2232.10595 1643.81668 6829.98660 6829.98660 22917.74061 6934.27914 2306.33280 1.02700 777.87489 39.60026 2412.95121 17930.19883 25803.45536 3961.62273 0.06400 15.62599 0.11809 1.18232 41009.04430 14.64228 11.24540 14.66252 14.70095 11.94366 11.94366 11.95031 11.96306 11.95031 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 21273.92393 14679.00754 6594.91640 -613.46892 0.30980 0.20924 6.24796 6.24796 94389.80579 72756.86701 35779.44338 26282.43138 32213.98460 17544.24020 2266.11563 2266.11563 2361.61621 4994.61353 69673.94829 6855.95179 292617.43945 292617.43945 50669.25726 1124.16166 14.97690 100.00000 -9324.82086 14603.16354 36066.09372 0.02176 0.00000 1.00000 8255.42368 16844.17581 70077.48337 70077.48337 194094.85505 69255.84690 9966.41610 1.02700 7197.37247 605.53238 10999.78984 81404.80979 152999.50124 63868.17678 0.08153 12.26542 0.24965 1.04811 -197348.02285 14.66129 11.73033 14.64575 14.66760 11.90699 11.90699 11.96302 11.96186 11.96302 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 177250.67924 125847.98243 51402.69681 4827.49898 0.57413 0.17475 5.86949 5.86949 929926.25500 839419.52781 412799.02166 303228.91989 371663.16958 79652.45802 11346.84691 11346.84691 11403.32492 52468.49228 796057.66644 20147.58285 + 7660.06602 2128.03051 44993.92521 44993.92521 5513.18644 150.62610 14.41751 100.00000 -1023.45672 4224.14176 1289.04468 0.02176 0.00000 0.74787 3502.79881 2343.54038 7717.04041 7717.04041 23536.80512 7591.89434 3110.98427 1.02700 708.90537 61.79920 3220.61552 15177.75432 16350.45488 4604.13448 0.07542 13.25953 0.16779 1.03345 -21660.16326 14.12416 12.39012 14.11169 14.15883 12.42889 12.42889 12.43504 12.43954 12.43504 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 21193.26474 14199.48741 6993.77733 708.47892 0.51382 0.19782 8.61939 8.61939 105235.07174 88923.03088 43729.43319 32122.23891 39371.74967 14851.03679 3183.34647 3183.34647 3277.58990 5827.54709 70223.44039 54253.38508 243083.20124 70539.65321 70548.00477 13372.22293 15970.05530 407.31768 15562.73762 4401.52979 17773.75272 145726.49589 3716.77636 142009.71953 -174354.08067 57714.95021 13.80199 14.62798 13.76226 13.76226 13.45583 13.91930 13.45639 52449.68766 1884.50976 11052.44909 11052.44909 5153.00669 11052.44911 18089.96554 75654.73224 15550.90401 453640.67820 453640.67821 52106.84827 702.85387 14.17564 100.00000 1438.90501 35062.27041 17044.57786 0.02176 0.00000 0.16463 20566.14767 23444.56925 75323.94366 75323.94366 255299.78950 76123.54823 18767.83499 1.02700 7753.32423 760.34423 20061.27509 159381.75140 24076.22005 42533.89392 0.05377 18.59642 0.14651 0.94413 30452.60352 14.10410 14.48031 14.10597 14.10569 13.57114 13.57114 13.67913 13.67261 13.67913 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 231855.22025 159980.10221 71875.11804 -4524.90021 1.85988 0.21592 9.10358 9.10358 1024861.80253 820616.22272 403552.17199 296436.48065 363337.77807 155950.95310 19623.29084 19623.29083 19730.48652 54572.66342 33769.52422 7574.45114 157606.92856 157606.92857 22913.52507 291.51095 14.35987 100.00000 1821.35152 14383.31155 8530.21351 0.02176 0.00000 0.55484 10669.94234 9556.37281 33646.24477 33646.24477 110370.13277 33944.88885 9408.36585 1.02700 3871.26058 254.39603 9974.45345 80210.31400 25473.48143 44641.58128 0.05348 18.69901 0.13004 0.92571 38546.59922 14.18346 14.72053 14.18492 14.18470 13.68197 13.68197 13.78545 13.78157 13.78545 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 100813.75996 69561.49449 31252.26547 -1699.46217 0.98427 0.20937 8.52113 8.52113 458215.85203 360574.44558 177318.69877 130252.62824 159648.70592 78483.70377 9819.86265 9819.86264 9851.17399 24397.24550 2611.88120 2539.83499 60.04020 1119.20232 1179.98732 39967.76981 13.57026 13.57026 515.06152 1107.94111 17549.04066 3561.80858 231295.49605 231295.49605 12694.42236 196.70129 14.37045 100.00000 1254.82028 7859.20336 4835.21900 0.02176 0.00000 0.56895 5275.18307 12105.98947 17464.49232 17464.49232 61681.99067 17658.61233 4542.99229 1.02700 1777.74857 246.79023 4959.83651 40489.32876 16125.62011 24912.41654 0.05609 17.82920 0.14234 0.99370 26556.68234 14.65620 13.78460 14.66177 14.66199 13.40207 13.40207 13.50463 13.49650 13.50463 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 49576.00121 33215.92092 16360.08029 -1141.79363 0.85568 0.19148 9.67630 9.67630 257111.71002 196827.99392 96793.55869 71101.44335 87147.97984 39617.75645 4823.88885 4823.88885 4875.28817 13182.38203 4766.68936 386.65404 14395.94743 14395.94743 3308.08161 40.18368 13.38617 100.00000 8391.24754 994.45531 2313.62630 0.02176 0.00000 9.25925 603.42222 1026.31709 4722.35744 4722.35744 11695.54360 4811.12075 448.15210 1.02700 647.80735 38.08511 535.57296 11550.40946 54086.71673 7324.75205 0.06065 16.48800 0.17580 1.06586 177590.11083 13.15142 12.21347 13.17553 13.17555 10.13842 10.13842 10.58317 10.57639 10.58317 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 10669.22651 6081.45913 4587.76738 -469.17209 0.17217 0.16831 2.62369 2.62369 66460.52645 52048.78964 25595.88946 18801.91935 23045.23244 11301.77194 489.45145 489.45145 491.24103 3520.58571 13.28860 12.52487 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 13549.47335 14491.42525 1.07755 11.80370 13.74865 13.74865 13.94777 0.16691 1824.46956 11645.32869 11645.32868 5668.06821 31153.30908 8528.38083 161047.15577 161047.15577 21609.70884 377.91546 14.67268 100.00000 2220.44612 13531.94307 8077.76577 0.02176 0.00000 0.85628 9788.14921 9109.01940 31053.42335 31053.42335 99798.40284 31281.62416 10358.30927 1.02700 3523.98893 515.96037 11244.33543 72588.33137 60186.97047 31733.68662 0.05512 18.14208 0.13262 0.88273 46992.93044 14.66030 14.39220 14.66422 14.66448 13.30674 13.30674 13.44014 13.39198 13.44014 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 90689.38343 62575.67467 28113.70876 -1342.47772 0.51927 0.19770 8.92256 8.92256 428504.79168 340585.68376 167488.88060 123031.95912 150798.43936 71025.77770 10709.93837 10709.93837 11144.44970 22914.26268 7032.71059 1946.89748 32356.53984 32356.53984 4792.41762 80.40375 15.09162 100.00000 2033.80222 2531.37308 2261.04454 0.02176 0.00000 1.63522 2281.21226 1725.34012 6980.24622 6980.24622 24054.32292 7086.83320 2357.07210 1.02700 794.98813 40.47146 2466.03611 18324.66425 25803.45536 4158.09542 0.06400 15.62599 0.11809 1.18232 43042.84652 15.03763 11.54903 15.05841 15.09787 12.26614 12.26614 12.27296 12.28607 12.27296 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 22328.98281 15406.99816 6921.98465 -643.89330 0.31449 0.20924 6.24796 6.24796 96466.38099 74357.51721 36566.59071 26860.64457 32922.69189 17930.21388 2315.97015 2315.97015 2413.57174 5104.49495 71206.77435 7006.78265 307129.50721 307129.50721 51783.98034 1148.89320 15.38128 100.00000 -9787.27591 14924.43297 36859.54737 0.02176 0.00000 1.00000 8437.04290 17679.54577 71619.18720 71619.18720 203720.79428 70779.47474 10185.67714 1.02700 7355.71458 618.85409 11241.78509 83195.71479 152999.50124 67035.65480 0.08153 12.26542 0.24965 1.04811 -207135.29876 15.05715 12.04705 15.04119 15.06362 12.22847 12.22847 12.28602 12.28484 12.28602 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 186041.24851 132089.28662 53951.96188 5066.91395 0.58307 0.17475 5.86949 5.86949 950384.62140 857886.74722 421880.59523 309899.95256 379839.75492 81404.81116 11596.47742 11596.47741 11654.19793 53622.79850 835537.34606 20590.82944 + 7828.58739 2174.84716 47225.35369 47225.35369 5634.47648 153.93987 14.80679 100.00000 -1074.21403 4317.07283 1317.40365 0.02176 0.00000 0.74787 3579.86034 2459.76591 7886.81521 7886.81521 24704.08931 7758.91592 3179.42589 1.02700 724.50128 63.15878 3291.46902 15511.66519 16350.45488 4832.47190 0.07542 13.25953 0.16779 1.03345 -22734.37729 14.50551 12.72466 14.49271 14.54111 12.76447 12.76447 12.77079 12.77541 12.77079 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 22244.32341 14903.69672 7340.62669 743.61522 0.52137 0.19782 8.61939 8.61939 107550.24223 90879.33648 44691.48020 32828.92778 40237.92769 15177.75962 3253.38006 3253.38005 3349.69684 5955.75305 71768.35527 55446.95893 255138.66822 72091.52477 72100.06007 13666.41168 16321.39633 416.27867 15905.11767 4498.36340 18164.77508 148932.50759 3798.54515 145133.96244 -183000.99601 58984.67544 14.17465 15.02293 14.13384 14.13384 13.81913 14.29512 13.81971 53603.58019 1925.96895 11295.60284 11295.60284 5266.37278 11295.60286 18487.94457 77319.13548 15893.02372 476138.53158 476138.53159 53253.19834 718.31665 14.55838 100.00000 1510.26603 35833.63995 17419.55838 0.02176 0.00000 0.16463 21018.60269 24607.27909 76981.06956 76981.06956 267961.12594 77798.26541 19180.72715 1.02700 7923.89727 777.07179 20502.62291 162888.15855 24076.22005 44643.31963 0.05377 18.59642 0.14651 0.94413 31962.86956 14.48491 14.87128 14.48683 14.48655 13.93756 13.93756 14.04847 14.04178 14.04847 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 243353.84685 167914.15458 75439.69227 -4749.30811 1.88801 0.21592 9.10358 9.10358 1047408.75409 838669.76965 412430.31498 302958.07974 371331.20489 159381.87659 20055.00301 20055.00300 20164.55699 55773.26109 34512.45337 7741.08898 165423.28573 165423.28573 23417.62236 297.92419 14.74759 100.00000 1911.67960 14699.74424 8717.87811 0.02176 0.00000 0.55484 10904.68095 10030.31151 34386.46177 34386.46177 115843.82856 34691.67601 9615.34979 1.02700 3956.42826 259.99274 10193.89131 81974.94261 25473.48143 46855.53562 0.05348 18.69901 0.13004 0.92571 40458.27882 14.56641 15.11799 14.56791 14.56768 14.05138 14.05138 14.15765 14.15367 14.15765 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 105813.51705 73011.32689 32802.19015 -1783.74529 0.99916 0.20937 8.52113 8.52113 468296.59629 368507.07897 181219.70803 133118.18453 163160.97555 80210.34544 10035.89951 10035.89951 10067.89971 24933.98455 2669.34256 2595.71133 61.36108 1143.82476 1205.94703 41949.93117 13.93665 13.93665 526.39286 1132.31580 17935.11935 3640.16833 242766.36364 242766.36364 12973.69951 201.02871 14.75845 100.00000 1317.05181 8032.10574 4941.59376 0.02176 0.00000 0.56895 5391.23703 12706.37384 17848.71095 17848.71095 64741.04700 18047.10160 4642.93807 1.02700 1816.85902 252.21961 5068.95286 41380.09508 16125.62011 26147.92279 0.05609 17.82920 0.14234 0.99370 27873.73415 15.05192 14.15678 15.05764 15.05786 13.76392 13.76392 13.86925 13.86090 13.86925 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 52034.67316 34863.23113 17171.44203 -1198.41974 0.86825 0.19148 9.67630 9.67630 262768.16524 201158.20737 98923.01582 72665.67426 89065.23436 40489.34736 4930.01435 4930.01434 4982.54446 13472.39425 4871.55648 395.16042 15109.89997 15109.89997 3380.85937 41.06772 13.74759 100.00000 8807.40303 1016.33332 2364.52605 0.02176 0.00000 9.25925 616.69750 1077.21625 4826.24925 4826.24925 12275.57233 4916.96535 458.01144 1.02700 662.05910 38.92298 547.35556 11804.51845 54086.71673 7688.01577 0.06065 16.48800 0.17580 1.06586 186397.51386 13.50651 12.54323 13.53127 13.53129 10.41216 10.41216 10.86891 10.86196 10.86891 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 11198.35608 6383.06298 4815.29309 -492.44021 0.17432 0.16831 2.62369 2.62369 67922.65727 53193.86238 26158.99872 19215.56136 23552.22728 11550.41083 500.21938 500.21938 502.04833 3598.03855 13.64739 12.86304 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 13847.56161 14810.23644 1.07755 12.12240 14.11986 14.11986 14.32436 0.16691 1864.60787 11901.52578 11901.52578 5792.76564 31838.68153 8716.00511 169034.12755 169034.12755 22085.12219 386.22959 15.06884 100.00000 2330.56689 13829.64566 8255.47653 0.02176 0.00000 0.85628 10003.48838 9560.77206 31736.59831 31736.59831 104747.80431 31969.81953 10586.19195 1.02700 3601.51664 527.31150 11491.71068 74185.27493 60186.97047 33307.48690 0.05512 18.14208 0.13262 0.88273 49323.49733 15.05613 14.78079 15.06016 15.06042 13.66602 13.66602 13.80302 13.75356 13.80302 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 95187.03224 65679.05236 29507.97989 -1409.05656 0.52712 0.19770 8.92256 8.92256 437931.89234 348078.56463 171173.63397 125738.66077 154116.00323 72588.34444 10945.55689 10945.55689 11389.62746 23418.37616 7187.43015 1989.72920 33961.22990 33961.22990 4897.85075 82.17263 15.49909 100.00000 2134.66658 2587.06326 2310.78750 0.02176 0.00000 1.63522 2331.39890 1810.90662 7133.81156 7133.81156 25247.27289 7242.74345 2408.92765 1.02700 812.47786 41.36183 2520.28888 18727.80788 25803.45536 4364.31199 0.06400 15.62599 0.11809 1.18232 45177.51311 15.44364 11.86085 15.46498 15.50552 12.59733 12.59733 12.60433 12.61779 12.60433 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 23436.36626 16171.09275 7265.27352 -675.82654 0.31925 0.20924 6.24796 6.24796 98588.64080 75993.38170 37371.05528 27451.57843 33646.99072 18324.67896 2366.92146 2366.92146 2466.67029 5216.79375 72773.32257 7160.93178 322361.28638 322361.28638 52923.22731 1174.16884 15.79657 100.00000 -10272.66595 15252.77032 37670.45699 0.02176 0.00000 1.00000 8622.65775 18556.34508 73194.80850 73194.80850 213824.12230 72336.62238 10409.76192 1.02700 7517.54022 632.46887 11489.10423 85026.01967 152999.50124 70360.22070 0.08153 12.26542 0.24965 1.04811 -217407.96470 15.46369 12.37232 15.44730 15.47034 12.55864 12.55864 12.61775 12.61653 12.61775 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 195267.77722 138640.12203 56627.65519 5318.20246 0.59215 0.17475 5.86949 5.86949 971293.07160 876760.24521 431161.96331 316717.74787 388196.22503 83195.71605 11851.59979 11851.59978 11910.59016 54802.49944 876974.98070 21043.82746 + 8000.81622 2222.69377 49567.44763 49567.44763 5758.43490 157.32654 15.20657 100.00000 -1127.48860 4412.04838 1346.38652 0.02176 0.00000 0.74787 3658.61723 2581.75553 8060.32505 8060.32505 25929.26379 7929.61198 3249.37323 1.02700 740.44030 64.54828 3363.88130 15852.92207 16350.45488 5072.13348 0.07542 13.25953 0.16779 1.03345 -23861.86588 14.89716 13.06822 14.88401 14.93372 13.10911 13.10911 13.11560 13.12035 13.11560 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 23347.50827 15642.83057 7704.67769 780.49407 0.52903 0.19782 8.61939 8.61939 109916.34645 92878.68077 45674.69223 33551.16381 41123.16162 15511.67034 3324.95438 3324.95438 3423.39013 6086.77953 73347.25826 56666.79140 267792.01397 73677.53749 73686.26057 13967.07258 16680.46687 425.43680 16255.03007 4597.32734 18564.39992 152209.04878 3882.11288 148326.93589 -192076.74642 60282.33488 14.55736 15.42855 14.51545 14.51545 14.19225 14.68109 14.19284 54782.85834 1968.34025 11544.10598 11544.10597 5382.23292 11544.10600 18894.67914 79020.15558 16242.67006 499752.14339 499752.14339 54424.76809 734.11960 14.95146 100.00000 1585.16614 36621.97962 17802.78847 0.02176 0.00000 0.16463 21481.01170 25827.65236 78674.65221 78674.65221 281250.38865 79509.82635 19602.70293 1.02700 8098.22291 794.16736 20953.68038 166471.70632 24076.22005 46857.36019 0.05377 18.59642 0.14651 0.94413 33548.03570 14.87601 15.27281 14.87797 14.87768 14.31388 14.31388 14.42778 14.42090 14.42778 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 255422.73629 176241.68831 79181.04797 -4984.84529 1.91658 0.21592 9.10358 9.10358 1070451.73816 857120.49437 421503.77701 309623.15393 379500.48700 162888.28024 20496.21284 20496.21283 20608.17701 57000.27190 35271.72695 7911.39285 173627.28727 173627.28728 23932.80978 304.47852 15.14577 100.00000 2006.48741 15023.13845 8909.67133 0.02176 0.00000 0.55484 11144.58381 10527.75472 35142.96353 35142.96353 121588.98679 35454.89248 9826.88737 1.02700 4043.46964 265.71257 10418.15680 83778.39296 25473.48143 49179.28880 0.05348 18.69901 0.13004 0.92571 42464.76623 14.95970 15.52617 14.96124 14.96101 14.43077 14.43077 14.53991 14.53582 14.53991 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 111061.23206 76632.25026 34428.98180 -1872.20835 1.01427 0.20937 8.52113 8.52113 478599.11676 376614.23018 185206.53944 136046.78301 166750.51507 81974.97318 10256.68918 10256.68918 10289.39338 25482.53185 2728.06806 2652.81695 62.71103 1168.98889 1232.47785 44030.39583 14.31294 14.31294 537.97350 1157.22674 18329.69177 3720.25199 254806.11737 254806.11738 13259.12075 205.45134 15.15693 100.00000 1382.36966 8208.81198 5050.30877 0.02176 0.00000 0.56895 5509.84419 13336.53368 18241.38238 18241.38238 67951.81415 18444.13763 4745.08266 1.02700 1856.82990 257.76844 5180.46977 42290.45822 16125.62011 27444.70274 0.05609 17.82920 0.14234 0.99370 29256.10382 15.45832 14.53902 15.46420 15.46443 14.13555 14.13555 14.24372 14.23515 14.24372 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 54615.28048 36592.23804 18023.04243 -1257.85417 0.88100 0.19148 9.67630 9.67630 268549.06239 205583.68546 101099.32098 74264.31824 91024.66845 41380.11325 5038.47460 5038.47460 5092.16038 13768.78673 4978.73066 403.85395 15859.26027 15859.26027 3455.23823 41.97121 14.11878 100.00000 9244.19734 1038.69264 2416.54559 0.02176 0.00000 9.25925 630.26484 1130.63971 4932.42668 4932.42668 12884.36700 5025.13853 468.08769 1.02700 676.62439 39.77929 559.39737 12064.21783 54086.71673 8069.29518 0.06065 16.48800 0.17580 1.06586 195641.71120 13.87118 12.88190 13.89661 13.89663 10.69329 10.69329 11.16237 11.15523 11.16237 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 11753.72729 6699.62458 5054.10271 -516.86229 0.17650 0.16831 2.62369 2.62369 69416.95494 54364.12670 26734.49638 19638.30348 24070.37600 11804.51977 511.22420 511.22420 513.09338 3677.19535 14.01587 13.21034 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 14152.20781 15136.06147 1.07755 12.44971 14.50110 14.50110 14.71111 0.16691 1905.62922 12163.35921 12163.35921 5920.20642 32539.13215 8907.75712 177417.20517 177417.20517 22570.99462 394.72664 15.47570 100.00000 2446.14900 14133.89771 8437.09692 0.02176 0.00000 0.85628 10223.56501 10034.92894 32434.80311 32434.80311 109942.66637 32673.15519 10819.08805 1.02700 3680.74996 538.91234 11744.52818 75817.35119 60186.97047 34959.33823 0.05512 18.14208 0.13262 0.88273 51769.64633 15.46264 15.17987 15.46678 15.46705 14.03501 14.03501 14.17570 14.12491 14.17570 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 99907.73742 68936.33894 30971.39848 -1478.93730 0.53510 0.19770 8.92256 8.92256 447566.38907 355736.28878 174939.45188 128504.90982 157506.55347 74185.28761 11186.35902 11186.35901 11640.19914 23933.58014 7345.55353 2033.50322 35645.50295 35645.50295 5005.60342 83.98042 15.91757 100.00000 2240.53321 2643.97862 2361.62480 0.02176 0.00000 1.63522 2382.68965 1900.71672 7290.75533 7290.75533 26499.38600 7402.08372 2461.92404 1.02700 830.35236 42.27179 2575.73521 19139.82064 25803.45536 4580.75565 0.06400 15.62599 0.11809 1.18232 47418.04632 15.86062 12.18109 15.88254 15.92417 12.93746 12.93746 12.94465 12.95847 12.94465 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 24598.66929 16973.08184 7625.58745 -709.34349 0.32408 0.20924 6.24796 6.24796 100757.59030 77665.23518 38193.21805 28055.51284 34387.22412 18727.82226 2418.99371 2418.99371 2520.93701 5331.56312 74374.33483 7318.47220 338348.47033 338348.47033 54087.53770 1200.00054 16.22308 100.00000 -10782.12841 15588.33109 38499.20661 0.02176 0.00000 1.00000 8812.35612 19476.62836 74805.09345 74805.09345 224428.51471 73928.02725 10638.77656 1.02700 7682.92602 646.38318 11741.86439 86896.59123 152999.50124 73849.66511 0.08153 12.26542 0.24965 1.04811 -228190.09311 15.88121 12.70638 15.86438 15.88804 12.89773 12.89773 12.95843 12.95717 12.95843 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 204951.88635 145515.83953 59436.04683 5581.95338 0.60137 0.17475 5.86949 5.86949 992661.50744 896048.95990 440647.52137 323685.53459 396736.53738 85026.02083 12112.33485 12112.33484 12172.62300 56008.15379 920467.67317 21506.79142 + 8176.83408 2271.59301 52025.69537 52025.69537 5885.12040 160.78773 15.61715 100.00000 -1183.40526 4509.11340 1376.00701 0.02176 0.00000 0.74787 3739.10676 2709.79510 8237.65211 8237.65211 27215.19957 8104.06336 3320.85940 1.02700 756.72998 65.96834 3437.88665 16201.68660 16350.45488 5323.68085 0.07542 13.25953 0.16779 1.03345 -25045.27114 15.29939 13.42106 15.28588 15.33693 13.46305 13.46305 13.46972 13.47460 13.46972 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 24505.40447 16418.62103 8086.78344 819.20189 0.53680 0.19782 8.61939 8.61939 112334.50492 94922.01061 46679.53491 34289.28901 42027.87069 15852.92709 3398.10334 3398.10334 3498.70468 6220.68860 74960.89711 57913.46016 281072.88967 75298.44247 75307.35746 14274.34802 17047.43695 434.79640 16612.64055 4698.46849 18972.81650 155557.67133 3967.51912 151590.15221 -201602.59955 61608.54307 14.95041 15.84512 14.90737 14.90737 14.57544 15.07748 14.57605 55988.08060 2011.64371 11798.07618 11798.07617 5500.64199 11798.07620 19310.36186 80758.59810 16600.00862 524536.84853 524536.84854 55622.11237 750.27023 15.35515 100.00000 1663.78084 37427.66275 18194.44962 0.02176 0.00000 0.16463 21953.59371 27108.54882 80405.49365 80405.49365 295198.71898 81259.04161 20033.96217 1.02700 8276.38372 811.63903 21414.66111 170134.09182 24076.22005 49181.20386 0.05377 18.59642 0.14651 0.94413 35211.81654 15.27766 15.68517 15.27968 15.27938 14.70035 14.70035 14.81733 14.81027 14.81733 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 268090.17016 184982.21771 83107.95245 -5232.06371 1.94557 0.21592 9.10358 9.10358 1094001.66746 875977.13479 430776.85509 316434.85967 387849.49321 166471.82461 20947.12929 20947.12928 21061.55667 58254.27695 36047.70453 8085.44340 182238.15803 182238.15803 24459.33132 311.17704 15.55471 100.00000 2105.99711 15353.64732 9105.68400 0.02176 0.00000 0.55484 11389.76452 11049.86814 35916.10833 35916.10833 127619.07037 36234.89971 10043.07878 1.02700 4132.42592 271.55825 10647.35613 85621.51913 25473.48143 51618.28619 0.05348 18.69901 0.13004 0.92571 44570.76334 15.36362 15.94538 15.36520 15.36496 14.82040 14.82040 14.93249 14.92829 14.93249 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 116569.20223 80432.74969 36136.45254 -1965.05864 1.02962 0.20937 8.52113 8.52113 489128.29252 384899.73861 189281.08108 139039.81062 170419.02441 83778.42267 10482.33623 10482.33622 10515.75992 26043.14718 2788.08553 2711.17889 64.09067 1194.70663 1259.59235 46214.03904 14.69939 14.69939 549.80891 1182.68571 18732.94478 3802.09749 267442.97059 267442.97059 13550.82125 209.97127 15.56616 100.00000 1450.92688 8389.40574 5161.41551 0.02176 0.00000 0.56895 5631.06070 13997.94566 18642.69259 18642.69259 71321.81608 18849.90844 4849.47442 1.02700 1897.68013 263.43934 5294.44004 43220.84929 16125.62011 28805.79518 0.05609 17.82920 0.14234 0.99370 30707.03070 15.87569 14.93157 15.88173 15.88196 14.51721 14.51721 14.62830 14.61950 14.62830 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 57323.87042 38406.99332 18916.87710 -1320.23618 0.89394 0.19148 9.67630 9.67630 274457.13918 210106.52401 103323.50483 75898.13236 93027.21007 42290.47596 5149.32099 5149.32099 5204.18785 14071.69985 5088.26268 412.73873 16645.78434 16645.78434 3531.25343 42.89458 14.49998 100.00000 9702.65402 1061.54387 2469.70957 0.02176 0.00000 9.25925 644.13066 1186.71265 5040.94001 5040.94001 13523.35423 5135.69152 478.38561 1.02700 691.51012 40.65443 571.70411 12329.63059 54086.71673 8469.48376 0.06065 16.48800 0.17580 1.06586 205344.36522 14.24570 13.22971 14.27182 14.27184 10.98200 10.98200 11.46376 11.45642 11.46376 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 12336.64158 7031.88572 5304.75586 -542.49555 0.17870 0.16831 2.62369 2.62369 70944.12715 55560.13682 27322.65498 20070.34592 24599.92398 12064.21910 522.47113 522.47112 524.38143 3758.09360 14.39430 13.56702 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 14463.55622 15469.05465 1.07755 12.78585 14.89263 14.89263 15.10831 0.16691 1947.55304 12430.95298 12430.95297 6050.45090 33254.99269 9103.72768 186216.03309 186216.03309 23067.55625 403.41062 15.89354 100.00000 2567.46328 14444.84329 8622.71295 0.02176 0.00000 0.85628 10448.48333 10532.60116 33148.36841 33148.36841 115395.16239 33391.96423 11057.10787 1.02700 3761.72642 550.76841 12002.90767 77485.33307 60186.97047 36693.11146 0.05512 18.14208 0.13262 0.88273 54337.10961 15.88014 15.58973 15.88439 15.88466 14.41395 14.41395 14.55845 14.50628 14.55845 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 104862.56124 72355.16738 32507.39385 -1552.28371 0.54319 0.19770 8.92256 8.92256 457412.84459 363562.48276 178788.11772 131332.01632 160971.69577 75817.36351 11432.45879 11432.45878 11896.28338 24460.11860 7507.15562 2078.24027 37413.30583 37413.30583 5115.72663 85.82799 16.34734 100.00000 2351.65019 2702.14612 2413.58052 0.02176 0.00000 1.63522 2435.10879 1994.98085 7451.15187 7451.15187 27813.59641 7564.92948 2516.08634 1.02700 848.62010 43.20177 2632.40135 19560.89765 25803.45536 4807.93362 0.06400 15.62599 0.11809 1.18232 49769.69651 16.28886 12.50998 16.31137 16.35412 13.28677 13.28677 13.29416 13.30835 13.29416 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 25818.61556 17814.84477 8003.77079 -744.52267 0.32898 0.20924 6.24796 6.24796 102974.25664 79373.86942 39033.46840 28672.73379 35143.74265 19139.83469 2472.21154 2472.21154 2576.39760 5448.85742 76010.56935 7479.47851 355128.52260 355128.52260 55277.46291 1226.40054 16.66110 100.00000 -11316.85714 15931.27420 39346.18871 0.02176 0.00000 1.00000 9006.22786 20442.55216 76450.80465 76450.80465 235558.82131 75554.44301 10872.82952 1.02700 7851.95030 660.60360 12000.18527 88808.31533 152999.50124 77512.16500 0.08153 12.26542 0.24965 1.04811 -239506.95025 16.31000 13.04945 16.29272 16.31702 13.24596 13.24596 13.30830 13.30702 13.30830 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 215116.26914 152732.55132 62383.71782 5858.78476 0.61073 0.17475 5.86949 5.86949 1014500.04860 915762.02607 450341.76159 330806.61254 405464.73649 86896.59229 12378.80608 12378.80607 12440.42057 57240.33252 966117.34200 21979.94058 + 8356.72434 2321.56803 54605.85743 54605.85743 6014.59298 164.32505 16.03881 100.00000 -1242.09506 4608.31384 1406.27914 0.02176 0.00000 0.74787 3821.36707 2844.18466 8418.88036 8418.88036 28564.91003 8282.35266 3393.91827 1.02700 773.37803 67.41964 3513.52012 16558.12392 16350.45488 5587.70344 0.07542 13.25953 0.16779 1.03345 -26287.36620 15.71247 13.78343 15.69860 15.75103 13.82655 13.82655 13.83340 13.83841 13.83340 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 25720.72537 17232.88604 8487.83933 859.82939 0.54468 0.19782 8.61939 8.61939 114805.86284 97010.29368 47706.48412 35043.65297 42952.48334 16201.69148 3472.86157 3472.86157 3575.67614 6357.54367 76610.03598 59187.55562 295012.41706 76955.00734 76964.11846 14588.38351 17422.48036 444.36192 16978.11845 4801.83474 19390.21825 158979.96127 4054.80432 154925.15696 -211600.87779 62963.92804 15.35407 16.27294 15.30987 15.30987 14.96898 15.48457 14.96960 57219.81773 2055.89985 12057.63372 12057.63371 5621.65605 12057.63374 19735.18960 82535.28633 16965.20861 550550.72621 550550.72622 56845.79821 766.77616 15.76974 100.00000 1746.29435 38251.07090 18594.72730 0.02176 0.00000 0.16463 22436.57252 28452.97004 82174.41359 82174.41359 309838.80273 83046.73959 20474.70911 1.02700 8458.46407 829.49508 21885.78341 173877.04948 24076.22005 51620.29623 0.05377 18.59642 0.14651 0.94413 36958.11089 15.69015 16.10867 15.69223 15.69192 15.09726 15.09726 15.21740 15.21014 15.21740 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 281385.83269 194156.22488 87229.60781 -5491.54268 1.97501 0.21592 9.10358 9.10358 1118069.69477 895248.62105 440253.94077 323396.42285 396382.17746 170134.20679 21407.96589 21407.96588 21524.91067 59535.87010 36840.75362 8263.32306 191276.07625 191276.07626 24997.43633 318.02293 15.97469 100.00000 2210.44190 15691.42738 9306.00895 0.02176 0.00000 0.55484 11640.33921 11597.87524 36706.26230 36706.26230 133948.20988 37032.06708 10264.02640 1.02700 4223.33924 277.53253 10881.59784 87505.19398 25473.48143 54178.24319 0.05348 18.69901 0.13004 0.92571 46781.20524 15.77843 16.37590 15.78006 15.77981 15.22055 15.22055 15.33566 15.33135 15.33566 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 122350.33464 84421.73107 37928.60357 -2062.51375 1.04520 0.20937 8.52113 8.52113 499889.10997 393367.52812 193445.26259 142098.68481 174168.24091 85621.54800 10712.94751 10712.94750 10747.10652 26616.09605 2849.42338 2770.82479 65.50066 1220.99016 1287.30337 48505.97784 15.09628 15.09628 561.90470 1208.70478 19145.06935 3885.74360 280706.53584 280706.53584 13848.93917 214.59064 15.98645 100.00000 1522.88413 8573.97257 5274.96659 0.02176 0.00000 0.56895 5754.94397 14692.15970 19052.83161 19052.83161 74858.94986 19264.60621 4956.16280 1.02700 1939.42907 269.23501 5410.91766 44171.70893 16125.62011 30234.38963 0.05609 17.82920 0.14234 0.99370 32229.91482 16.30434 15.33472 16.31054 16.31078 14.90917 14.90917 15.02326 15.01422 15.02326 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 60166.79016 40311.74955 19855.04060 -1385.71198 0.90707 0.19148 9.67630 9.67630 280495.19357 214728.86495 105596.62070 77567.89037 95073.80758 43220.86662 5262.60599 5262.60599 5318.67992 14381.27705 5200.20440 421.81897 17471.31528 17471.31528 3608.94097 43.83826 14.89148 100.00000 10183.84740 1084.89782 2524.04315 0.02176 0.00000 9.25925 658.30152 1245.56647 5151.84063 5151.84063 14194.03139 5248.67667 488.91009 1.02700 706.72334 41.54883 584.28159 12600.88243 54086.71673 8889.51929 0.06065 16.48800 0.17580 1.06586 215528.21263 14.63034 13.58691 14.65716 14.65718 11.27852 11.27852 11.77328 11.76574 11.77328 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 12948.46492 7380.62503 5567.83989 -569.40007 0.18093 0.16831 2.62369 2.62369 72504.89712 56782.45915 27923.75306 20511.89330 25141.12202 12329.63181 533.96548 533.96548 535.91782 3840.77161 14.78294 13.93333 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 14781.75429 15809.37367 1.07755 13.13107 15.29473 15.29473 15.51624 0.16691 1990.39918 12704.43380 12704.43379 6183.56075 33986.60215 9304.00958 195451.23004 195451.23004 23575.04222 412.28565 16.32267 100.00000 2694.79402 14762.62968 8812.41254 0.02176 0.00000 0.85628 10678.34984 11054.95492 33877.63213 33877.63213 121118.06948 34126.58706 11300.36411 1.02700 3844.48436 562.88531 12266.97150 79190.01052 60186.97047 38512.86944 0.05512 18.14208 0.13262 0.88273 57031.90363 16.30890 16.01065 16.31327 16.31355 14.80313 14.80313 14.95152 14.89795 14.95152 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 110063.11456 75943.54918 34119.56537 -1629.26766 0.55141 0.19770 8.92256 8.92256 467475.92199 371560.85289 182721.45417 134221.31912 164513.07115 77485.34503 11683.97275 11683.97274 12158.00148 24998.24090 7672.31296 2123.96153 39268.78112 39268.78112 5228.27256 87.71621 16.78872 100.00000 2468.27790 2761.59330 2466.67926 0.02176 0.00000 1.63522 2488.68116 2093.91992 7615.07712 7615.07712 29192.98377 7731.35784 2571.44021 1.02700 867.28974 44.15221 2690.31415 19991.23832 25803.45536 5046.37826 0.06400 15.62599 0.11809 1.18232 52237.97440 16.72866 12.84775 16.75177 16.79568 13.64551 13.64551 13.65310 13.66768 13.65310 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 27099.06385 18698.35409 8400.70976 -781.44653 0.33396 0.20924 6.24796 6.24796 105239.68959 81120.09359 39892.20424 29303.53360 35916.90457 19560.91138 2526.60017 2526.60017 2633.07831 5568.73220 77682.80100 7644.02695 372740.76470 372740.76470 56493.56646 1253.38134 17.11095 100.00000 -11878.10521 16281.76205 40211.80442 0.02176 0.00000 1.00000 9204.36476 21456.37999 78132.72148 78132.72147 247241.12427 77216.63989 11112.03164 1.02700 8024.69312 675.13687 12264.18921 90762.09734 152999.50124 81356.30290 0.08153 12.26542 0.24965 1.04811 -251385.05546 16.75037 13.40178 16.73262 16.75758 13.60361 13.60361 13.66763 13.66631 13.66763 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 225784.74428 160307.16869 65477.57559 6149.34532 0.62024 0.17475 5.86949 5.86949 1036819.03737 935908.77943 460249.27497 338084.35411 414384.95587 88808.31630 12651.13967 12651.13966 12714.10968 58499.61917 1014030.96025 22463.49903 + 8540.57218 2372.64250 57313.98003 57313.98003 6146.91396 167.94020 16.47186 100.00000 -1303.69551 4709.69669 1437.21727 0.02176 0.00000 0.74787 3905.43710 2985.23914 8604.09563 8604.09563 29981.55803 8464.56432 3468.58443 1.02700 790.39234 68.90287 3590.81752 16922.40286 16350.45488 5864.81998 0.07542 13.25953 0.16779 1.03345 -27591.06171 16.13671 14.15559 16.12246 16.17631 14.19987 14.19987 14.20691 14.21205 14.20691 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 26996.31890 18087.53371 8908.78519 902.47176 0.55268 0.19782 8.61939 8.61939 117331.59060 99144.51895 48756.02620 35814.61291 43897.43746 16558.12868 3549.26449 3549.26448 3654.34098 6497.40955 78295.45590 60489.68117 309643.26130 78648.01662 78657.32818 14909.32778 17805.77473 454.13787 17351.63686 4907.47505 19816.80283 162477.53949 4144.00980 158333.52969 -222095.01059 64349.13167 15.76863 16.71231 15.72323 15.72323 15.37314 15.90265 15.37378 58478.65307 2101.12962 12322.90152 12322.90151 5745.33242 12322.90154 20169.36355 84351.06169 17338.44301 577854.73600 577854.73601 58096.40512 783.64523 16.19552 100.00000 1832.90004 39092.59402 19003.81110 0.02176 0.00000 0.16463 22930.17686 29864.06649 83982.24974 83982.24975 325204.94673 84873.76690 20925.15247 1.02700 8644.55018 847.74397 22367.27040 177702.35190 24076.22005 54180.35293 0.05377 18.59642 0.14651 0.94413 38791.01094 16.11379 16.54360 16.11592 16.11560 15.50489 15.50489 15.62827 15.62082 15.62827 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 295340.88024 203785.20771 91555.67253 -5763.89024 2.00488 0.21592 9.10358 9.10358 1142667.21825 914944.07975 449939.52221 330511.14033 405102.58065 173877.16123 21878.94089 21878.94088 21998.45846 60845.65829 37651.24978 8445.11608 200762.22095 200762.22096 25547.37964 325.01943 16.40600 100.00000 2320.06652 16036.63860 9510.74104 0.02176 0.00000 0.55484 11896.42654 12173.06020 37513.79964 37513.79964 140591.23670 37846.77213 10489.83486 1.02700 4316.25266 283.63824 11120.99287 89430.30959 25473.48143 56865.15870 0.05348 18.69901 0.13004 0.92571 49101.27176 16.20445 16.81805 16.20612 16.20587 15.63150 15.63150 15.74973 15.74530 15.74973 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 128418.17651 88608.54197 39809.63454 -2164.80205 1.06101 0.20937 8.52113 8.52113 510886.66523 402021.60887 197701.05605 145224.85419 177999.94013 87505.22204 10948.63223 10948.63222 10983.54274 27201.64979 2912.11066 2831.78291 66.94168 1247.85193 1315.62403 50911.58304 15.50388 15.50388 574.26660 1235.29627 19566.26066 3971.22991 294627.89428 294627.89428 14153.61567 219.31163 16.41809 100.00000 1598.41002 8762.59987 5391.01580 0.02176 0.00000 0.56895 5881.55267 15420.80259 19471.99369 19471.99369 78571.50424 19688.42732 5065.19833 1.02700 1982.09649 275.15817 5529.95779 45143.48743 16125.62011 31733.83379 0.05609 17.82920 0.14234 0.99370 33828.32484 16.74455 15.74876 16.75092 16.75117 15.31172 15.31172 15.42889 15.41961 15.42889 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 63150.70164 42310.97026 20839.73138 -1454.43497 0.92039 0.19148 9.67630 9.67630 286666.08506 219452.89733 107919.74508 79274.38303 97165.43021 44171.72585 5378.38326 5378.38326 5435.69081 14697.66494 5314.60884 431.09899 18337.78759 18337.78759 3688.33763 44.80270 15.29355 100.00000 10688.90509 1108.76556 2579.57207 0.02176 0.00000 9.25925 672.78415 1307.33909 5265.18106 5265.18106 14897.97011 5364.14750 499.66610 1.02700 722.27124 42.46290 597.13578 12878.10179 54086.71673 9330.38606 0.06065 16.48800 0.17580 1.06586 226217.11772 15.02536 13.95376 15.05290 15.05292 11.58304 11.58304 12.09116 12.08342 12.09116 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 13590.63102 7746.65971 5843.97131 -597.63890 0.18319 0.16831 2.62369 2.62369 74100.00400 58031.67255 28538.07530 20963.15470 25694.22640 12600.88360 545.71272 545.71272 547.70800 3925.26854 15.18208 14.30953 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 15106.95271 16157.17971 1.07755 13.48560 15.70769 15.70769 15.93518 0.16691 2034.18794 12983.93120 12983.93119 6319.59901 34734.30700 9508.69768 205144.43730 205144.43730 24093.69288 421.35593 16.76338 100.00000 2828.43960 15087.40736 9006.28552 0.02176 0.00000 0.85628 10913.27341 11603.21430 34622.93965 34622.93965 127124.79839 34877.37158 11548.97199 1.02700 3929.06297 575.26878 12536.84473 80932.19081 60186.97047 40422.87648 0.05512 18.14208 0.13262 0.88273 59860.34322 16.74924 16.44294 16.75372 16.75401 15.20281 15.20281 15.35522 15.30020 15.35522 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 115521.58409 79709.89317 35811.69092 -1710.06955 0.55975 0.19770 8.92256 8.92256 477760.38694 379735.18706 186741.32397 137174.18655 168132.35675 79190.02213 11941.02001 11941.02001 12425.47737 25548.20188 7841.10376 2170.68866 41216.27684 41216.27684 5343.29450 89.64596 17.24201 100.00000 2590.68963 2822.34832 2520.94618 0.02176 0.00000 1.63522 2543.43212 2197.76577 7782.60873 7782.60873 30640.78045 7901.44763 2628.01186 1.02700 886.37010 45.12356 2749.50103 20431.04645 25803.45536 5296.64831 0.06400 15.62599 0.11809 1.18232 54828.66403 17.18033 13.19464 17.20407 17.24916 14.01394 14.01394 14.02173 14.03670 14.02173 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 28443.01468 19625.68016 8817.33452 -820.20159 0.33901 0.20924 6.24796 6.24796 107554.96204 82904.73467 40769.83226 29948.21099 36707.07605 19991.25174 2582.18534 2582.18534 2691.00601 5691.24422 79391.82173 7812.19545 391226.46823 391226.46824 57736.42427 1280.95571 17.57295 100.00000 -12467.18779 16639.96062 41096.46365 0.02176 0.00000 1.00000 9406.86068 22520.48759 79851.64045 79851.64045 259502.79931 78915.40509 11356.49621 1.02700 8201.23627 689.98988 12534.00123 92758.86252 152999.50124 85391.08695 0.08153 12.26542 0.24965 1.04811 -263852.24325 17.20263 13.76363 17.18440 17.21003 13.97090 13.97090 14.03665 14.03530 14.03665 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 236982.31173 168257.44160 68724.87013 6454.31593 0.62990 0.17475 5.86949 5.86949 1059629.04361 956498.76109 470374.75352 345522.20591 423501.41997 90762.09822 12929.46460 12929.46459 12993.81995 59786.61012 1064320.80623 22957.69575 + 8728.46467 2424.84061 60156.40925 60156.40925 6282.14600 171.63489 16.91660 100.00000 -1368.35098 4813.30996 1468.83603 0.02176 0.00000 0.74787 3991.35667 3133.28907 8793.38564 8793.38564 31468.46327 8650.78464 3544.89325 1.02700 807.78096 70.41873 3669.81547 17294.69591 16350.45488 6155.67983 0.07542 13.25953 0.16779 1.03345 -28959.41269 16.57240 14.53779 16.55776 16.61307 14.58327 14.58327 14.59049 14.59577 14.59049 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 28335.17420 18984.56676 9350.60744 947.22894 0.56080 0.19782 8.61939 8.61939 119912.88433 101325.69715 49828.65819 36602.53397 44863.18056 16922.40749 3627.34826 3627.34826 3734.73643 6640.35247 80017.95503 61820.45346 324999.70754 80378.27209 80387.78850 15237.33282 18197.50157 464.12890 17733.37267 5015.43944 20252.77226 166052.06250 4235.17782 161816.88468 -233109.58935 65764.80995 16.19439 17.16354 16.14776 16.14776 15.78822 16.33203 15.78887 59765.18277 2147.35445 12594.00521 12594.00520 5871.72966 12594.00524 20613.08932 86206.78408 17719.88856 606512.86071 606512.86072 59374.52537 800.88542 16.63280 100.00000 1923.80085 39952.63064 19421.89473 0.02176 0.00000 0.16463 23434.64049 31345.14485 85829.85827 85829.85828 341333.15920 86740.98878 21385.50559 1.02700 8834.73018 866.39432 22859.35009 181611.81066 24076.22005 56867.37306 0.05377 18.59642 0.14651 0.94413 40714.81179 16.54886 16.99028 16.55105 16.55073 15.92352 15.92352 16.05023 16.04258 16.05023 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 309988.01435 213891.73028 96096.28407 -6049.74462 2.03522 0.21592 9.10358 9.10358 1167805.88681 935072.83827 459838.18632 337782.38151 414014.83261 177702.46051 22360.27734 22360.27733 22482.42429 62184.26181 38479.57684 8630.90853 210718.82146 210718.82146 26109.42170 332.16986 16.84897 100.00000 2435.12786 16389.44447 9719.97723 0.02176 0.00000 0.55484 12158.14779 12776.77088 38339.10281 38339.10281 147563.71777 38679.40068 10720.61111 1.02700 4411.21017 289.87828 11365.65458 91397.77765 25473.48143 59685.32907 0.05348 18.69901 0.13004 0.92571 51536.39962 16.64197 17.27214 16.64368 16.64342 16.05355 16.05355 16.17497 16.17042 16.17497 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 134786.94689 93002.99355 41783.95334 -2272.16324 1.07706 0.20937 8.52113 8.52113 522126.16653 410866.07929 202050.47690 148419.79925 181915.93668 89430.33686 11189.50201 11189.50200 11225.18055 27800.08571 2976.17706 2894.08210 68.41439 1275.30466 1344.56774 53436.49181 15.92248 15.92248 586.90045 1262.47278 19996.71817 4058.59692 309239.66849 309239.66849 14464.99505 224.13648 16.86137 100.00000 1677.68154 8955.37697 5509.61808 0.02176 0.00000 0.56895 6010.94676 16185.58179 19900.37732 19900.37732 82468.17902 20121.57249 5176.63263 1.02700 2025.70259 281.21165 5651.61680 46136.64502 16125.62011 33307.64137 0.05609 17.82920 0.14234 0.99370 35506.00638 17.19666 16.17398 17.20320 17.20345 15.72514 15.72514 15.84547 15.83594 15.84547 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 66282.59722 44409.34031 21873.25691 -1526.56622 0.93391 0.19148 9.67630 9.67630 292972.73606 224280.85835 110293.97817 81018.41851 99303.06851 45143.50395 5496.70763 5496.70763 5555.27595 15021.01337 5431.53017 440.58316 19247.23174 19247.23174 3769.48101 45.78836 15.70648 100.00000 11219.01060 1133.15839 2636.32263 0.02176 0.00000 9.25925 687.58539 1372.17526 5381.01499 5381.01499 15636.81996 5482.15868 510.65875 1.02700 738.16120 43.39709 610.27276 13161.41998 54086.71673 9793.11718 0.06065 16.48800 0.17580 1.06586 237436.12832 15.43104 14.33051 15.45933 15.45935 11.89578 11.89578 12.41762 12.40967 12.41762 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 14264.64471 8130.84751 6133.79719 -627.27820 0.18547 0.16831 2.62369 2.62369 75730.20322 59308.36864 29165.91261 21424.34386 26259.49907 12878.10292 557.71839 557.71839 559.75757 4011.62440 15.59200 14.69589 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 15439.30550 16512.63748 1.07755 13.84972 16.13179 16.13179 16.36543 0.16691 2078.94006 13269.57753 13269.57752 6458.63012 35498.46136 9717.88892 215318.36942 215318.36943 24623.75385 430.62576 17.21599 100.00000 2968.71320 15419.33015 9204.42370 0.02176 0.00000 0.85628 11153.36530 12178.66404 35384.64392 35384.64392 133429.42498 35644.67335 11803.04924 1.02700 4015.50231 587.92468 12812.65517 82712.69903 60186.97047 42427.60839 0.05512 18.14208 0.13262 0.88273 62829.05642 17.20147 16.88690 17.20607 17.20637 15.61329 15.61329 15.76981 15.71330 15.76981 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 121250.76094 83663.02521 37587.73573 -1794.87873 0.56822 0.19770 8.92256 8.92256 488271.10998 388089.35647 190849.63085 140192.01702 171831.26659 80932.20208 12203.72232 12203.72231 12698.83773 26110.26200 8013.60795 2218.44378 43260.35665 43260.35665 5460.84692 91.61817 17.70755 100.00000 2719.17226 2884.43995 2576.40696 0.02176 0.00000 1.63522 2599.38759 2306.76176 7953.82603 7953.82603 32160.37915 8075.27938 2685.82809 1.02700 905.87023 46.11628 2809.99002 20880.53033 25803.45536 5559.33026 0.06400 15.62599 0.11809 1.18232 57547.83629 17.64420 13.55090 17.66858 17.71489 14.39232 14.39232 14.40032 14.41569 14.40032 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 29853.61740 20598.99604 9254.62136 -860.87867 0.34414 0.20924 6.24796 6.24796 109921.17043 84728.63784 41666.76809 30607.07128 37514.63129 20431.05957 2638.99339 2638.99339 2750.20811 5816.45150 81138.44090 7984.06366 410628.95166 410628.95166 59006.62495 1309.13673 18.04742 100.00000 -13085.48533 17006.03957 42000.58538 0.02176 0.00000 1.00000 9613.81151 23637.36853 81608.37563 81608.37563 272372.57980 80651.54310 11606.33900 1.02700 8381.66337 705.16965 12809.74911 94799.55650 152999.50124 89625.97205 0.08153 12.26542 0.24965 1.04811 -276937.72859 17.66710 14.13525 17.64838 17.67470 14.34812 14.34812 14.41564 14.41425 14.41564 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 248735.21127 176602.00030 72133.21097 6774.41126 0.63971 0.17475 5.86949 5.86949 1082940.86969 977541.72208 480722.99247 353123.69035 432818.44617 92758.86332 13213.91267 13213.91267 13279.68384 61101.91485 1117104.72656 23462.76479 + 8920.49079 2478.18707 63139.80589 63139.80589 6420.35314 175.41085 17.37335 100.00000 -1436.21298 4919.20273 1501.15041 0.02176 0.00000 0.74787 4079.16647 3288.68139 8986.84002 8986.84002 33029.11007 8841.10180 3622.88086 1.02700 825.55213 71.96794 3750.55136 17675.17940 16350.45488 6460.96458 0.07542 13.25953 0.16779 1.03345 -30395.62567 17.01985 14.93031 17.00482 17.06162 14.97702 14.97702 14.98444 14.98986 14.98444 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 29740.42868 19926.08727 9814.34141 994.20581 0.56904 0.19782 8.61939 8.61939 122550.96648 103554.86123 50924.88807 37407.78929 45850.17000 17294.70042 3707.14988 3707.14988 3816.90059 6786.44014 81778.34912 63180.50273 341117.74130 82146.59316 82156.31893 15572.55396 18597.84639 474.33973 18123.50666 5125.77905 20698.33302 169705.22327 4328.35155 165376.87172 -244670.42507 67211.63331 16.63163 17.62696 16.58375 16.58375 16.21450 16.77299 16.21517 61080.01610 2194.59622 12871.07318 12871.07317 6000.90765 12871.07321 21066.57704 88103.33234 18109.72590 636592.25631 636592.25632 60680.76425 818.50489 17.08189 100.00000 2019.20979 40831.58806 19849.17620 0.02176 0.00000 0.16463 23950.20231 32899.67580 87718.11417 87718.11417 358261.23416 88649.28953 21855.98647 1.02700 9029.09414 885.45499 23362.25553 185607.27723 24076.22005 59687.65326 0.05377 18.59642 0.14651 0.94413 42734.02157 16.99568 17.44902 16.99793 16.99760 16.35345 16.35345 16.48359 16.47573 16.48359 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 325361.55836 224499.47567 100862.08269 -6349.77566 2.06601 0.21592 9.10358 9.10358 1193497.60563 955644.42921 469954.62091 345213.58991 423123.15399 181611.91623 22852.20318 22852.20317 22977.03736 63552.31461 39326.12709 8820.78842 221169.20956 221169.20956 26683.82868 339.47759 17.30389 100.00000 2555.89555 16750.01206 9933.81662 0.02176 0.00000 0.55484 12425.62690 13410.42199 39182.56263 39182.56263 154881.99203 39530.34705 10956.46443 1.02700 4508.25674 296.25560 11615.69885 93408.52993 25473.48143 62645.36296 0.05348 18.69901 0.13004 0.92571 54092.29517 17.09131 17.73849 17.09306 17.09280 16.48700 16.48700 16.61169 16.60702 16.61169 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 141471.57004 97615.38353 43856.18650 -2384.84890 1.09335 0.20937 8.52113 8.52113 533612.93668 419905.12793 206495.58495 151685.03307 185918.08510 91397.80415 11435.67092 11435.67092 11472.13439 28411.68721 3041.65292 2957.75187 69.91951 1303.36135 1374.14821 56086.62090 16.35239 16.35239 599.81226 1290.24716 20436.64574 4147.88601 324576.09895 324576.09895 14783.22478 229.06748 17.31663 100.00000 1760.88445 9152.39516 5630.82962 0.02176 0.00000 0.56895 6143.18752 16988.28945 20338.18539 20338.18540 86558.10547 20564.24686 5290.51849 1.02700 2070.26802 287.39830 5775.95230 47151.65203 16125.62011 34959.50036 0.05609 17.82920 0.14234 0.99370 37266.89082 17.66097 16.61067 17.66768 17.66794 16.14971 16.14971 16.27330 16.26351 16.27330 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 69569.81602 46611.77692 22958.03910 -1602.27475 0.94762 0.19148 9.67630 9.67630 299418.13328 229215.03445 112720.44436 82800.82276 101487.73482 46136.66115 5617.63514 5617.63513 5677.49196 15351.47546 5551.02377 450.27598 20201.77884 20201.77884 3852.40955 46.79570 16.13056 100.00000 11775.40617 1158.08786 2694.32169 0.02176 0.00000 9.25925 702.71226 1440.22691 5499.39725 5499.39725 16412.31233 5602.76611 521.89324 1.02700 754.40074 44.35182 623.69875 13450.97116 54086.71673 10278.79698 0.06065 16.48800 0.17580 1.06586 249211.53449 15.84768 14.71743 15.87673 15.87676 12.21697 12.21697 12.75289 12.74473 12.75289 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 14972.08542 8534.08872 6437.99670 -658.38743 0.18779 0.16831 2.62369 2.62369 77396.26680 60613.15201 29807.56233 21895.67917 26837.20774 13161.42107 569.98819 569.98819 572.07223 4099.88009 16.01298 15.09268 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 15778.97004 16875.91531 1.07755 14.22366 16.56735 16.56735 16.80729 0.16691 2124.67671 13561.50809 13561.50808 6600.71991 36279.42710 9931.68237 225996.86749 225996.86749 25165.47615 440.09952 17.68082 100.00000 3115.94352 15758.55523 9406.92091 0.02176 0.00000 0.85628 11398.73921 12782.65264 36163.10568 36163.10568 140046.72319 36428.85575 12062.71619 1.02700 4103.84331 600.85902 13094.53344 84532.37837 60186.97047 44531.76298 0.05512 18.14208 0.13262 0.88273 65944.99994 17.66591 17.34285 17.67064 17.67094 16.03485 16.03485 16.19559 16.13756 16.19559 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 127264.07055 87812.20885 39451.86169 -1883.89394 0.57682 0.19770 8.92256 8.92256 499013.06876 396627.31749 195048.32042 143276.23973 175611.55239 82712.70996 12472.20407 12472.20406 12978.21202 26684.68744 8189.90723 2267.24952 45405.81054 45405.81054 5580.98549 93.63377 18.18565 100.00000 2854.02684 2947.89760 2633.08789 0.02176 0.00000 1.63522 2656.57409 2421.16329 8128.81012 8128.81012 33755.34083 8252.93543 2744.91628 1.02700 925.79937 47.13083 2871.80977 21339.90283 25803.45536 5835.03966 0.06400 15.62599 0.11809 1.18232 60401.86314 18.12059 13.91677 18.14563 18.19319 14.78091 14.78091 14.78913 14.80492 14.78913 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 31334.17754 21620.58254 9713.59500 -903.57309 0.34934 0.20924 6.24796 6.24796 112339.43537 86592.66685 42583.43649 31280.42649 38339.95273 20880.54316 2697.05121 2697.05121 2810.71265 5944.41334 82923.48566 8159.71297 430993.68175 430993.68175 60304.77002 1337.93772 18.53470 100.00000 -13734.44671 17380.17224 42924.59778 0.02176 0.00000 1.00000 9825.31525 24809.64007 83403.75896 83403.75896 285880.62412 82425.87613 11861.67832 1.02700 8566.05987 720.68337 13091.56344 96885.14573 152999.50124 94070.88203 0.08153 12.26542 0.24965 1.04811 -290672.17529 18.14411 14.51690 18.12489 18.15192 14.73552 14.73552 14.80487 14.80343 14.80487 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 261070.98406 185360.39900 75710.58506 7110.38140 0.64967 0.17475 5.86949 5.86949 1106765.55564 999047.62792 491298.89254 360892.40736 442340.44682 94799.55723 13504.61860 13504.61859 13571.83674 62446.15627 1172506.41235 23978.94535 + 9116.74149 2532.70716 66271.16109 66271.16109 6561.60083 179.26989 17.84243 100.00000 -1507.44052 5027.42513 1534.17570 0.02176 0.00000 0.74787 4168.90809 3451.78024 9184.55040 9184.55040 34667.15559 9035.60594 3702.58420 1.02700 843.71427 73.55124 3833.06345 18064.03351 16350.45488 6781.38962 0.07542 13.25953 0.16779 1.03345 -31903.06618 17.47939 15.33343 17.46395 17.52229 15.38140 15.38140 15.38902 15.39459 15.38902 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 31215.37535 20914.30154 10301.07381 1043.51245 0.57739 0.19782 8.61939 8.61939 125247.08640 105833.06690 52045.23499 38230.76021 46858.87319 17675.18379 3788.70714 3788.70714 3900.87236 6935.74173 83577.47186 64570.47306 358035.13275 83953.81726 83963.75701 15915.14997 19006.99880 484.77520 18522.22360 5238.54613 21153.69611 173438.75198 4423.57511 169015.17687 -256804.60881 68690.28691 17.08069 18.10289 17.03151 17.03151 16.65229 17.22586 16.65298 62423.77576 2242.87731 13154.23664 13154.23663 6132.92755 13154.23667 21530.04150 90041.60465 18508.13966 668163.40930 668163.40931 62015.74037 836.51199 17.54310 100.00000 2119.35044 41729.88252 20285.85785 0.02176 0.00000 0.16463 24477.10648 34531.30215 89647.91168 89647.91168 376028.83999 90599.57287 22336.81792 1.02700 9227.73411 904.93499 23876.22489 189690.64376 24076.22005 62647.80243 0.05377 18.59642 0.14651 0.94413 44853.37201 17.45456 17.92014 17.45687 17.45653 16.79500 16.79500 16.92864 16.92058 16.92864 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 341497.53784 235633.30155 105864.23629 -6664.68644 2.09726 0.21592 9.10358 9.10358 1219754.54181 976668.59487 480293.61693 352808.28480 432431.85832 185607.37982 23354.95139 23354.95137 23482.53192 64950.46455 40191.30143 9014.84566 232137.87415 232137.87415 27270.87261 346.94609 17.77109 100.00000 2682.65260 17118.51213 10152.36048 0.02176 0.00000 0.55484 12698.99055 14075.49838 40044.57855 40044.57855 162563.20874 40400.01422 11197.50652 1.02700 4607.43833 302.77322 11871.24409 95463.51867 25473.48143 65752.19675 0.05348 18.69901 0.13004 0.92571 56774.94777 17.55277 18.21743 17.55458 17.55430 16.93215 16.93215 17.06021 17.05541 17.06021 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 148487.71035 102456.52037 46031.18998 -2503.12308 1.10989 0.20937 8.52113 8.52113 545352.41559 429143.03551 211038.48532 155022.10198 190008.28074 93408.55567 11687.25555 11687.25555 11724.52122 29036.74394 3108.56925 3022.82238 71.45774 1332.03528 1404.37946 58868.18047 16.79390 16.79390 613.00812 1318.63258 20886.25171 4239.13945 340673.12426 340673.12426 15108.45555 234.10696 17.78418 100.00000 1848.21372 9353.74774 5754.70781 0.02176 0.00000 0.56895 6278.33757 17830.80659 20785.62524 20785.62524 90850.86771 21016.66005 5406.90984 1.02700 2115.81389 293.72106 5903.02319 48188.98915 16125.62011 36693.28163 0.05609 17.82920 0.14234 0.99370 39115.10454 18.13781 17.05916 18.14471 18.14498 16.58576 16.58576 16.71268 16.70262 16.71268 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 73020.06112 48923.44115 24096.61997 -1681.73796 0.96154 0.19148 9.67630 9.67630 306005.32914 234257.76236 115200.29277 84622.43987 103720.46376 47151.66778 5741.22304 5741.22304 5802.39671 15689.20771 5673.14623 460.18205 21203.66576 21203.66576 3937.16252 47.82520 16.56608 100.00000 12359.39561 1183.56578 2753.59674 0.02176 0.00000 9.25925 718.17193 1511.65352 5620.38393 5620.38393 17226.26447 5726.02690 533.37488 1.02700 770.99755 45.32756 637.42012 13746.89246 54086.71673 10788.56358 0.06065 16.48800 0.17580 1.06586 261570.93010 16.27557 15.11480 16.30540 16.30543 12.54682 12.54682 13.09722 13.08884 13.09722 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 15714.61095 8957.32828 6757.28267 -691.03949 0.19013 0.16831 2.62369 2.62369 79098.98375 61946.64061 30463.32835 22377.38385 27427.62599 13450.97220 582.52792 582.52792 584.65782 4190.07740 16.44533 15.50018 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 16126.10720 17247.18525 1.07755 14.60770 17.01467 17.01467 17.26109 0.16691 2171.41958 13859.86111 13859.86110 6745.93567 37077.57408 10150.17926 237204.95493 237204.95493 25719.11634 449.78170 18.15821 100.00000 3270.47558 16105.24327 9613.87307 0.02176 0.00000 0.85628 11649.51134 13416.59545 36958.69359 36958.69359 146992.19966 37230.29016 12328.09581 1.02700 4194.12781 614.07791 13382.61302 86392.09062 60186.97047 46740.27099 0.05512 18.14208 0.13262 0.88273 69215.47552 18.14289 17.81110 18.14775 18.14806 16.46779 16.46779 16.63287 16.57328 16.63287 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 133575.60421 92167.16710 41408.43711 -1977.32376 0.58554 0.19770 8.92256 8.92256 509991.35048 405353.11353 199339.38112 146428.31530 179475.00444 84532.38898 12746.59241 12746.59241 13263.73253 27271.75023 8370.08510 2317.12898 47657.66606 47657.66606 5703.76711 95.69371 18.67666 100.00000 2995.56941 3012.75131 2691.01579 0.02176 0.00000 1.63522 2715.01869 2541.23845 8307.64384 8307.64384 35429.40302 8434.49992 2805.30441 1.02700 946.16694 48.16771 2934.98955 21809.38150 25803.45536 6124.42258 0.06400 15.62599 0.11809 1.18232 63397.43254 18.60985 14.29253 18.63557 18.68441 15.17999 15.17999 15.18844 15.20465 15.18844 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 32888.16457 22692.83360 10195.33098 -948.38490 0.35463 0.20924 6.24796 6.24796 114810.90209 88497.70447 43520.27159 31968.59551 39183.43124 21339.91536 2756.38631 2756.38631 2872.54830 6075.19034 84747.80140 8339.22656 452368.38016 452368.38016 61631.47426 1367.37233 19.03513 100.00000 -14415.59266 17762.53583 43868.93844 0.02176 0.00000 1.00000 10041.47208 26040.04923 85238.64070 85238.64070 300058.58633 84239.24447 12122.63511 1.02700 8754.51309 736.53840 13379.57769 99016.61788 152999.50124 98736.23285 0.08153 12.26542 0.24965 1.04811 -305087.76796 18.63401 14.90886 18.61426 18.64202 15.13338 15.13338 15.20460 15.20313 15.20460 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 274018.53710 194553.16168 79465.37541 7463.01363 0.65979 0.17475 5.86949 5.86949 1131114.38436 1021026.66341 502107.46229 368832.03605 452071.93137 96885.14638 13801.72006 13801.72005 13870.41699 63819.97098 1230655.68905 24506.48187 + 9317.30969 2588.42669 69557.81270 69557.81270 6705.95597 183.21382 18.32417 100.00000 -1582.20052 5138.02842 1567.92755 0.02176 0.00000 0.74787 4260.62402 3622.96781 9386.61040 9386.61040 36386.43833 9234.38917 3784.04100 1.02700 862.27597 75.16937 3917.39080 18461.44240 16350.45488 7117.70582 0.07542 13.25953 0.16779 1.03345 -33485.26670 17.95133 15.74743 17.93548 17.99539 15.79669 15.79669 15.80452 15.81024 15.80452 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 32763.47051 21951.52531 10811.94521 1095.26440 0.58587 0.19782 8.61939 8.61939 128002.52093 108161.39307 53190.22954 39071.83647 47889.76783 18064.03779 3872.05865 3872.05865 3986.69151 7088.32796 85416.17529 65991.02273 375791.52521 85800.80028 85810.95870 16265.28309 19425.15255 495.44025 18929.71231 5353.79409 21619.07718 177254.41686 4520.89360 172733.52326 -269540.57520 70201.47102 17.54187 18.59166 17.49136 17.49136 17.10190 17.69096 17.10261 63797.09811 2292.22059 13443.62970 13443.62969 6267.85189 13443.62973 22003.70216 92022.51892 18915.31852 701300.30188 701300.30189 63380.08596 854.91524 18.01676 100.00000 2224.45745 42647.93946 20732.14650 0.02176 0.00000 0.16463 25015.60254 36243.84737 91620.16470 91620.16471 394677.61237 92592.76243 22828.22766 1.02700 9430.74415 924.84355 24401.50156 193863.84407 24076.22005 65754.75721 0.05377 18.59642 0.14651 0.94413 47077.82946 17.92584 18.40399 17.92821 17.92786 17.24846 17.24846 17.38572 17.37743 17.38572 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 358433.76500 247319.29832 111114.46668 -6995.21491 2.12899 0.21592 9.10358 9.10358 1246589.13013 998155.29189 490860.07073 360570.06288 441945.35403 189690.74346 23868.76005 23868.76003 23999.14735 66379.37379 41075.50960 9213.17217 243650.51863 243650.51864 27870.83149 354.57890 18.25091 100.00000 2815.69602 17495.11920 10375.71229 0.02176 0.00000 0.55484 12978.36819 14773.55858 40925.55882 40925.55882 170625.36768 41288.81407 11443.85154 1.02700 4708.80192 309.43422 12132.41133 97563.71707 25473.48143 69013.11084 0.05348 18.69901 0.13004 0.92571 59590.64379 18.02670 18.70930 18.02855 18.02827 17.38932 17.38932 17.52084 17.51591 17.52084 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 155851.80910 107537.74852 48314.06058 -2627.26296 1.12669 0.20937 8.52113 8.52113 557350.16285 438584.17694 215681.32945 158432.58638 194188.46062 95463.54368 11944.37504 11944.37503 11982.46055 29675.55192 3176.95774 3089.32443 73.02981 1361.34004 1435.27579 61787.68869 17.24734 17.24734 626.49429 1347.64249 21345.74901 4332.40047 357568.46536 357568.46537 15440.84140 239.25731 18.26435 100.00000 1939.87400 9559.53009 5881.31132 0.02176 0.00000 0.56895 6416.46093 18715.10751 21242.90876 21242.90876 95356.52518 21479.02633 5525.86179 1.02700 2162.36177 300.18292 6032.88963 49249.14764 16125.62011 38513.04805 0.05609 17.82920 0.14234 0.99370 41054.97854 18.62753 17.51976 18.63462 18.63489 17.03357 17.03357 17.16392 17.15359 17.16392 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 76641.41767 51349.75006 25291.66761 -1765.14207 0.97566 0.19148 9.67630 9.67630 312737.44320 239411.43021 117734.69782 86484.13253 106002.31271 48189.00452 5867.52988 5867.52988 5930.04937 16034.37007 5797.95538 470.30605 22255.24025 22255.24025 4023.78005 48.87736 17.01337 100.00000 12972.34743 1209.60421 2814.17584 0.02176 0.00000 9.25925 733.97170 1586.62245 5744.03231 5744.03231 18080.58374 5851.99943 545.10913 1.02700 787.95948 46.32477 651.44335 14049.32402 54086.71673 11323.61155 0.06065 16.48800 0.17580 1.06586 274543.27753 16.71501 15.52290 16.74565 16.74568 12.88559 12.88559 13.45085 13.44224 13.45085 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 16493.96128 9401.55797 7092.40332 -725.31090 0.19251 0.16831 2.62369 2.62369 80839.16046 63309.46594 31133.52120 22869.68603 28031.03343 13746.89346 595.34353 595.34353 597.52028 4282.25905 16.88936 15.91868 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 16480.88137 17626.62313 1.07755 15.00210 17.47407 17.47407 17.72714 0.16691 2219.19078 14164.77789 14164.77788 6894.34618 37893.28028 10373.48309 248968.89619 248968.89620 26284.93660 459.67690 18.64848 100.00000 3432.67150 16459.55843 9825.37817 0.02176 0.00000 0.85628 11905.80046 14081.97802 37771.78442 37771.78442 154282.13005 38049.35611 12599.31377 1.02700 4286.39858 627.58762 13677.03035 88292.71648 60186.97047 49058.30774 0.05512 18.14208 0.13262 0.88273 72648.14702 18.63275 18.29200 18.63773 18.63806 16.91242 16.91242 17.08196 17.02076 17.08196 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 140200.15204 96738.10511 43462.04692 -2075.38714 0.59440 0.19770 8.92256 8.92256 521211.15423 414270.87696 203724.84509 149649.73649 183423.45237 86392.10091 13027.01730 13027.01729 13555.53449 27871.72840 8554.22688 2368.10580 50021.20009 50021.20009 5829.24992 97.79898 19.18093 100.00000 3144.13162 3079.03181 2750.21811 0.02176 0.00000 1.63522 2774.74907 2667.26861 8490.41191 8490.41191 37186.48865 8620.05882 2867.02107 1.02700 966.98260 49.22740 2999.55929 22289.18866 25803.45536 6428.15716 0.06400 15.62599 0.11809 1.18232 66541.56417 19.11232 14.67842 19.13873 19.18889 15.58985 15.58985 15.59852 15.61518 15.59852 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 34519.22004 23818.26187 10700.95817 -995.41910 0.35999 0.20924 6.24796 6.24796 117336.74104 90444.65290 44477.71705 32671.90423 40045.46627 21809.39374 2817.02677 2817.02677 2935.74433 6208.84444 86612.25205 8522.68945 474803.13526 474803.13526 62987.36599 1397.45451 19.54908 100.00000 -15130.51935 18153.31141 44834.05458 0.02176 0.00000 1.00000 10262.38435 27331.47929 87113.88982 87113.88981 314939.69032 86092.50689 12389.33294 1.02700 8947.11227 752.74223 13673.92824 101194.98239 152999.50124 103632.95705 0.08153 12.26542 0.24965 1.04811 -320218.28731 19.13712 15.31140 19.11684 19.14535 15.54198 15.54198 15.61512 15.61361 15.61512 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 287608.21102 204201.83020 83406.38082 7833.13432 0.67006 0.17475 5.86949 5.86949 1155998.88700 1043489.23737 513153.82042 376946.33647 462017.50846 99016.61846 14105.35774 14105.35773 14175.56600 65224.00960 1291688.82067 25045.62419 + 9522.29040 2645.37204 73007.46250 73007.46250 6853.48693 187.24453 18.81893 100.00000 -1660.66816 5251.06499 1602.42194 0.02176 0.00000 0.74787 4354.35770 3802.64526 9593.11572 9593.11572 38190.98716 9437.54562 3867.28986 1.02700 881.24603 76.82309 4003.57335 18867.59427 16350.45488 7470.70129 0.07542 13.25953 0.16779 1.03345 -35145.93486 18.43602 16.17261 18.41974 18.48126 16.22320 16.22320 16.23124 16.23712 16.23124 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 34388.34190 23040.18914 11348.15276 1149.58294 0.59448 0.19782 8.61939 8.61939 130818.57497 110540.94237 54360.41394 39931.41641 48943.34215 18461.44656 3957.24390 3957.24390 4074.39868 7244.27109 87295.33016 67442.82448 394428.52810 87688.41691 87698.79881 16623.11913 19852.50569 506.33993 19346.16576 5471.57750 22094.69663 181154.02503 4620.35310 176533.67192 -282908.16904 71745.90129 18.01550 19.09364 17.96363 17.96363 17.56365 18.16862 17.56438 65200.63354 2342.64942 13739.38940 13739.38939 6405.74456 13739.38943 22487.78336 94047.01328 19331.45531 736080.58534 736080.58535 64774.44713 873.72337 18.50321 100.00000 2334.77715 43586.19364 21188.25349 0.02176 0.00000 0.16463 25565.94551 38041.32454 93635.80727 93635.80728 414251.25188 94629.80213 23330.44841 1.02700 9638.22041 945.19010 24938.33432 198128.85450 24076.22005 69015.79829 0.05377 18.59642 0.14651 0.94413 49412.60661 18.40984 18.90090 18.41227 18.41191 17.71417 17.71417 17.85513 17.84662 17.85513 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 376209.92734 259584.85037 116625.07696 -7342.13560 2.16120 0.21592 9.10358 9.10358 1274014.07893 1020114.69595 501658.98638 368502.59998 451668.14653 193863.94096 24393.87249 24393.87248 24527.12831 67839.71902 41979.17034 9415.86185 255734.12115 255734.12115 28483.98947 362.37963 18.74369 100.00000 2955.33760 17880.01162 10603.97785 0.02176 0.00000 0.55484 13263.89214 15506.23836 41825.92064 41825.92064 179087.36128 42197.16750 11695.61614 1.02700 4812.39551 316.24177 12399.32424 99710.11976 25473.48143 72435.74669 0.05348 18.69901 0.13004 0.92571 62545.98139 18.51342 19.21445 18.51532 18.51503 17.85883 17.85883 17.99390 17.98884 17.99390 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 163581.12292 112870.97508 50710.14784 -2757.55943 1.14373 0.20937 8.52113 8.52113 569611.86036 448233.02334 220426.31608 161918.10138 198460.60441 97563.74137 12207.15115 12207.15115 12246.07454 30328.41366 3246.85077 3157.28953 74.63646 1391.28950 1466.85184 64851.98699 17.71302 17.71302 640.27716 1377.29060 21815.35524 4427.71323 375301.71392 375301.71392 15780.53974 244.52097 18.75749 100.00000 2036.08007 9769.83964 6010.70010 0.02176 0.00000 0.56895 6557.62299 19643.26446 21710.25250 21710.25250 100085.63621 21951.56466 5647.43069 1.02700 2209.93371 306.78694 6165.61313 50332.62958 16125.62011 40423.06394 0.05609 17.82920 0.14234 0.99370 43091.05861 19.13048 17.99279 19.13775 19.13804 17.49348 17.49348 17.62735 17.61674 17.62735 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 80442.37176 53896.38931 26545.98244 -1852.68253 0.98999 0.19148 9.67630 9.67630 319617.66367 244678.47868 120324.85974 88386.78241 108334.36231 49249.16265 5996.61547 5996.61547 6060.51039 16387.12599 5925.51033 480.65278 23358.96651 23358.96651 4112.30316 49.95266 17.47273 100.00000 13615.69798 1236.21549 2876.08767 0.02176 0.00000 9.25925 750.11907 1665.30940 5870.40096 5870.40096 18977.27211 5980.74335 557.10152 1.02700 805.29458 47.34391 665.77510 14358.40907 54086.71673 11885.19468 0.06065 16.48800 0.17580 1.06586 288158.97552 17.16631 15.94202 17.19778 17.19781 13.23350 13.23350 13.81402 13.80518 13.81402 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 17311.96272 9867.81879 7444.14393 -761.28197 0.19491 0.16831 2.62369 2.62369 82617.62103 64702.27340 31818.45829 23372.81885 28647.71583 14049.32498 608.44108 608.44108 610.66572 4376.46870 17.34537 16.34849 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 16843.46057 18014.40863 1.07755 15.40716 17.94587 17.94587 18.20577 0.16691 2268.01295 14476.40284 14476.40283 7046.02171 38726.93201 10601.69960 261316.25830 261316.25831 26863.20490 469.78978 19.15199 100.00000 3602.91137 16821.66853 10041.53637 0.02176 0.00000 0.85628 12167.72793 14780.35956 38602.76325 38602.76325 161933.59722 38886.44151 12876.49853 1.02700 4380.69929 641.39454 13977.92486 90235.15607 60186.97047 51491.30519 0.05512 18.14208 0.13262 0.88273 76251.05839 19.13583 18.78589 19.14095 19.14128 17.36905 17.36905 17.54317 17.48032 17.54317 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 147153.23766 101535.73421 45617.50345 -2178.31388 0.60340 0.19770 8.92256 8.92256 532677.79350 423384.83106 208206.78921 152942.02890 187458.76611 88292.72646 13313.61153 13313.61152 13853.75610 28484.90607 8742.41977 2420.20410 52501.95122 52501.95122 5957.49335 99.95055 19.69882 100.00000 3300.06163 3146.77047 2810.72288 0.02176 0.00000 1.63522 2835.79352 2799.54912 8677.20088 8677.20088 39030.71517 8809.70001 2930.09550 1.02700 988.25621 50.31040 3065.54956 22779.55155 25803.45536 6746.95515 0.06400 15.62599 0.11809 1.18232 69841.62580 19.62835 15.07474 19.65547 19.70699 16.01078 16.01078 16.01968 16.03679 16.01968 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 36231.16605 24999.50462 11231.66143 -1044.78592 0.36544 0.20924 6.24796 6.24796 119918.14840 92434.43416 45456.22630 33390.68574 40926.46605 22289.20063 2879.00133 2879.00133 3000.33067 6345.43892 88517.72060 8710.18852 498350.51948 498350.51948 64373.08732 1428.19849 20.07691 100.00000 -15880.90210 18552.68405 45820.40326 0.02176 0.00000 1.00000 10488.15668 28686.95654 89030.39439 89030.39439 330558.80770 87986.54106 12661.89812 1.02700 9143.94864 769.30255 13974.75451 103421.27090 152999.50124 108772.52936 0.08153 12.26542 0.24965 1.04811 -336099.18941 19.65383 15.72480 19.63300 19.66228 15.96161 15.96161 16.03673 16.03518 16.03673 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 301871.85116 214329.01473 87542.83644 8221.61076 0.68049 0.17475 5.86949 5.86949 1181430.84837 1066445.98766 524443.19830 385239.15139 472181.88811 101194.98291 14415.67545 14415.67544 14487.42830 66658.93706 1355748.82908 25596.62764 + 9731.78068 2703.57020 76628.19421 76628.19421 7004.26356 191.36390 19.32704 100.00000 -1743.02733 5366.58836 1637.67520 0.02176 0.00000 0.74787 4450.15351 3991.23363 9804.16416 9804.16416 40085.03078 9645.17152 3952.37020 1.02700 900.63344 78.51320 4091.65192 19282.68147 16350.45488 7841.20321 0.07542 13.25953 0.16779 1.03345 -36888.96219 18.93379 16.60927 18.91707 18.98026 16.66123 16.66123 16.66949 16.67552 16.66949 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 36093.79716 24182.84417 11910.95299 1206.59535 0.60321 0.19782 8.61939 8.61939 133696.58215 112972.84174 55556.34239 40809.90710 50020.09509 18867.59832 4044.30322 4044.30322 4164.03540 7403.64496 89215.82643 68926.56584 413989.81442 89617.56107 89628.17138 16988.82756 20289.26058 517.47940 19771.78118 5591.95214 22580.77970 185139.42336 4722.00073 180417.42263 -296938.71525 73324.30913 18.50192 19.60917 18.44865 18.44865 18.03787 18.65917 18.03862 66635.04673 2394.18768 14041.65580 14041.65579 6546.67086 14041.65584 22982.51433 96116.04650 19756.74711 772585.76199 772585.76201 66199.48422 892.94527 19.00280 100.00000 2450.56803 44545.08940 21654.39483 0.02176 0.00000 0.16463 26128.39602 39927.94579 95695.79396 95695.79396 434795.62637 96711.65667 23843.71801 1.02700 9850.26114 965.98427 25486.97739 202487.69489 24076.22005 72438.56743 0.05377 18.59642 0.14651 0.94413 51863.17464 18.90690 19.41122 18.90940 18.90903 18.19245 18.19245 18.33722 18.32848 18.33722 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 394867.68058 272458.70015 122408.98043 -7706.26149 2.19390 0.21592 9.10358 9.10358 1302042.37613 1042557.20659 512695.47803 376609.65279 461604.84033 198128.94866 24930.53740 24930.53739 25066.72485 69332.19183 42902.71160 9623.01070 268416.99778 268416.99778 29110.63691 370.35198 19.24977 100.00000 3101.90457 18273.37167 10837.26524 0.02176 0.00000 0.55484 13555.69762 16275.25466 42746.09042 42746.09042 187969.01896 43125.50470 11952.91956 1.02700 4918.26815 323.19909 12672.10923 101903.74323 25473.48143 76028.12472 0.05348 18.69901 0.13004 0.92571 65647.88596 19.01328 19.73324 19.01523 19.01494 18.34102 18.34102 18.47973 18.47454 18.47973 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 171693.76429 118468.69765 53225.06664 -2894.31783 1.16103 0.20937 8.52113 8.52113 582143.31502 458094.14424 225275.69235 165480.29767 202826.73531 99710.14337 12475.70834 12475.70833 12515.48804 30995.63835 3318.28145 3226.74987 76.27846 1421.89786 1499.12256 68068.25608 18.19127 18.19127 654.36325 1407.59098 22295.29281 4525.12287 393914.42511 393914.42512 16127.71143 249.90043 19.26394 100.00000 2137.05739 9984.77600 6142.93543 0.02176 0.00000 0.56895 6701.89062 20617.45241 22187.87781 22187.87781 105049.28275 22434.49882 5771.67410 1.02700 2258.55222 313.53625 6301.25655 51439.94808 16125.62011 42427.80516 0.05609 17.82920 0.14234 0.99370 45228.11600 19.64700 18.47860 19.65447 19.65476 17.96580 17.96580 18.10329 18.09239 18.10329 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 84431.83034 56569.32658 27862.50376 -1944.56446 1.00453 0.19148 9.67630 9.67630 326649.24888 250061.40215 122972.00519 90331.29056 110717.71697 50332.64423 6128.54094 6128.54094 6193.84155 16747.64255 6055.87149 491.22713 24517.43098 24517.43098 4202.77379 51.05162 17.94449 100.00000 14290.95486 1263.41222 2939.36157 0.02176 0.00000 9.25925 766.62168 1747.89874 5999.54971 5999.54971 19918.43085 6112.31963 569.35775 1.02700 823.01106 48.38548 680.42214 14674.29398 54086.71673 12474.62896 0.06065 16.48800 0.17580 1.06586 302449.93037 17.62980 16.37246 17.66212 17.66215 13.59080 13.59080 14.18700 14.17792 14.18700 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 18170.53211 10357.20334 7813.32876 -799.03698 0.19734 0.16831 2.62369 2.62369 84435.20770 66125.72261 32518.46399 23887.02058 29277.96523 14358.40999 621.82678 621.82678 624.10036 4472.75096 17.81370 16.78990 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 17214.01651 18410.72541 1.07755 15.82316 18.43041 18.43041 18.69733 0.16691 2317.90921 14794.88354 14794.88353 7201.03411 39578.92407 10834.93687 274275.97543 274275.97543 27454.19510 480.12515 19.66909 100.00000 3781.59411 17191.74504 10262.45006 0.02176 0.00000 0.85628 12435.41781 15513.37663 39452.02359 39452.02359 169964.53121 39741.94277 13159.78135 1.02700 4477.07463 655.50521 14285.43905 92220.32928 60186.97047 54044.96470 0.05512 18.14208 0.13262 0.88273 80032.65250 19.65250 19.29311 19.65776 19.65810 17.83802 17.83802 18.01684 17.95228 18.01684 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 154451.15457 106571.29690 47879.85768 -2286.34517 0.61252 0.19770 8.92256 8.92256 544396.69867 432699.29202 212787.33604 156306.75171 191582.85670 90235.16575 13606.51083 13606.51082 14158.53857 29111.57366 8934.75291 2473.44856 55105.73270 55105.73270 6088.55814 102.14946 20.23069 100.00000 3463.72483 3215.99939 2872.55875 0.02176 0.00000 1.63522 2898.18094 2938.38994 8868.09920 8868.09920 40966.40425 9003.51331 2994.55757 1.02700 1009.99784 51.41723 3132.99162 23280.70240 25803.45536 7081.56361 0.06400 15.62599 0.11809 1.18232 73305.35063 20.15831 15.48176 20.18617 20.23908 16.44307 16.44307 16.45221 16.46978 16.45221 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 38028.01431 26239.32993 11788.68438 -1096.60104 0.37097 0.20924 6.24796 6.24796 122556.34668 94467.99059 46456.26274 34125.28044 41826.84782 22779.56325 2942.33933 2942.33932 3066.33791 6485.03848 90465.10944 8901.81257 523065.71256 523065.71256 65789.29450 1459.61884 20.61898 100.00000 -16668.49932 18960.84289 46828.45161 0.02176 0.00000 1.00000 10718.89601 30109.65731 90989.06205 90989.06205 346952.53952 89922.24396 12940.45973 1.02700 9345.11540 786.22720 14282.19894 105696.53771 152999.50124 114166.99360 0.08153 12.26542 0.24965 1.04811 -352767.68873 20.18448 16.14937 20.16309 20.19316 16.39257 16.39257 16.46972 16.46813 16.46972 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 316842.88221 224958.44680 91884.43541 8629.35331 0.69109 0.17475 5.86949 5.86949 1207422.31255 1089907.78615 535980.94234 393714.40814 482569.88399 103421.27135 14732.82015 14732.82014 14806.15155 68125.43290 1422985.82920 26159.75315 + 9945.87974 2763.04871 80428.49246 80428.49246 7158.35728 195.57391 19.84887 100.00000 -1829.47102 5484.65324 1673.70404 0.02176 0.00000 0.74787 4548.05684 4189.17485 10019.85566 10019.85566 42073.00760 9857.36518 4039.32229 1.02700 920.44736 80.24049 4181.66822 19706.90057 16350.45488 8230.07980 0.07542 13.25953 0.16779 1.03345 -38718.43322 19.44500 17.05772 19.42783 19.49273 17.11108 17.11108 17.11956 17.12576 17.11956 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 37883.83275 25382.16802 12501.66473 1266.43523 0.61207 0.19782 8.61939 8.61939 136637.90546 115458.24285 56778.58125 41707.72456 51120.53658 19282.68540 4133.27784 4133.27784 4255.64413 7566.52505 91178.57358 70442.94950 434521.22307 91589.14639 91599.99012 17362.58157 20735.62408 528.86394 20206.76014 5714.97502 23077.55659 189212.49934 4825.88460 184386.61473 -311665.09230 74937.44202 19.00147 20.13861 18.94676 18.94676 18.52489 19.16297 18.52566 68101.01700 2446.85978 14350.57207 14350.57206 6690.69755 14350.57210 23488.12938 98230.59842 20191.39531 810901.37619 810901.37621 67655.87212 912.59006 19.51588 100.00000 2572.10144 45525.08085 22130.79127 0.02176 0.00000 0.16463 26703.22043 41908.13213 97801.10032 97801.10033 456358.87848 98839.31200 24368.27953 1.02700 10066.96677 987.23591 26047.69060 206942.42949 24076.22005 76031.08537 0.05377 18.59642 0.14651 0.94413 54435.27608 19.41739 19.93532 19.41996 19.41958 18.68365 18.68365 18.83232 18.82335 18.83232 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 414450.74635 285971.01557 128479.73077 -8088.44583 2.22709 0.21592 9.10358 9.10358 1330687.29539 1065493.45216 523974.77235 384895.06066 471760.14127 202487.78638 25479.00894 25479.00892 25618.19250 70857.49904 43846.57076 9834.71682 281728.86893 281728.86893 29751.07058 378.49972 19.76951 100.00000 3255.74037 18675.38563 11075.68495 0.02176 0.00000 0.55484 13853.92281 17082.40956 43686.50391 43686.50391 197291.15352 44074.26530 12215.88365 1.02700 5026.46999 330.30946 12950.89548 104145.62633 25473.48143 79798.66313 0.05348 18.69901 0.13004 0.92571 68903.62633 19.52664 20.26604 19.52865 19.52834 18.83622 18.83622 18.97869 18.97335 18.97869 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 180208.74396 124344.03364 55864.71032 -3037.85861 1.17860 0.20937 8.52113 8.52113 594950.46149 468172.20965 230231.75484 169120.86223 207288.92103 101903.76615 12750.17378 12750.17377 12790.82863 31677.54198 3391.28360 3297.73833 77.95659 1453.17959 1532.10324 71444.03281 18.68243 18.68243 668.75923 1438.55797 22785.78899 4624.67552 413450.21500 413450.21501 16482.52090 255.39824 19.78407 100.00000 2243.04257 10204.44095 6278.07994 0.02176 0.00000 0.56895 6849.33214 21639.95424 22676.01087 22676.01087 110259.09635 22928.05754 5898.65086 1.02700 2308.24034 320.43405 6439.88412 52571.62754 16125.62011 44531.96951 0.05609 17.82920 0.14234 0.99370 47471.15857 20.17747 18.97752 20.18514 20.18544 18.45088 18.45088 18.59208 18.58089 18.59208 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 88619.14212 59374.82549 29244.31662 -2041.00319 1.01928 0.19148 9.67630 9.67630 333835.52885 255562.74985 125677.38780 92318.57787 113153.50540 51439.96238 6263.36877 6263.36877 6330.10599 17116.09046 6189.10060 502.03413 25733.34832 25733.34832 4295.23476 52.17475 18.42899 100.00000 14999.70042 1291.20727 3004.02749 0.02176 0.00000 9.25925 783.48735 1834.58402 6131.53973 6131.53973 20906.26541 6246.79059 581.88361 1.02700 841.11729 49.44996 695.39142 14997.12836 54086.71673 13093.29564 0.06065 16.48800 0.17580 1.06586 317449.63080 18.10581 16.81451 18.13900 18.13903 13.95776 13.95776 14.57005 14.56072 14.57005 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 19071.68138 10870.85844 8200.82295 -838.66442 0.19980 0.16831 2.62369 2.62369 86292.78126 67580.48769 33233.86980 24412.53475 29922.08011 14674.29487 635.50696 635.50696 637.83056 4571.15142 18.29467 17.24322 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 17592.72467 18815.76116 1.07755 16.25038 18.92803 18.92803 19.20216 0.16691 2368.90319 15120.37081 15120.37079 7359.45678 40449.65995 11073.30535 287878.41669 287878.41669 28058.18708 490.68790 20.20016 100.00000 3969.13844 17569.96324 10488.22385 0.02176 0.00000 0.85628 12708.99685 16282.74695 40319.96766 40319.96766 178393.75130 40616.26505 13449.29639 1.02700 4575.57021 669.92632 14599.71854 94249.17626 60186.97047 56725.27039 0.05512 18.14208 0.13262 0.88273 84001.79093 20.18312 19.81402 20.18852 20.18887 18.31965 18.31965 18.50329 18.43700 18.50329 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 162111.00435 111856.59326 50254.41108 -2399.73415 0.62179 0.19770 8.92256 8.92256 556373.41957 442218.67099 217468.65484 159745.49837 195797.67723 92220.33866 13905.85391 13905.85390 14470.02626 29752.02792 9131.31737 2527.86440 57838.64611 57838.64611 6222.50635 104.39675 20.77692 100.00000 3635.50473 3286.75134 2935.75501 0.02176 0.00000 1.63522 2961.94089 3084.11643 9063.19728 9063.19728 42998.09188 9201.59050 3060.43780 1.02700 1032.21778 52.54841 3201.91740 23792.87854 25803.45536 7432.76664 0.06400 15.62599 0.11809 1.18232 76940.85536 20.70259 15.89977 20.73120 20.78553 16.88703 16.88703 16.89642 16.91446 16.89642 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 39913.97545 27540.64312 12373.33233 -1150.98589 0.37658 0.20924 6.24796 6.24796 125252.58527 96546.28524 47478.29997 34876.03621 42747.03798 23280.71383 3007.07076 3007.07075 3133.79731 6627.70923 92455.34081 9097.65234 549006.63080 549006.63080 67236.65822 1491.73044 21.17570 100.00000 -17495.15662 19377.98121 47858.67701 0.02176 0.00000 1.00000 10954.71160 31602.91550 92990.82037 92990.82037 364159.30199 91900.53230 13225.14969 1.02700 9550.70783 803.52419 14596.40715 108021.86037 152999.50124 119828.99086 0.08153 12.26542 0.24965 1.04811 -370262.84535 20.72946 16.58541 20.70749 20.73838 16.83517 16.83517 16.91440 16.91277 16.91440 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 332556.38649 236115.03487 96441.35161 9057.31744 0.70185 0.17475 5.86949 5.86949 1233985.58860 1113885.74388 547772.51660 402376.12043 493186.41564 105696.53811 15056.94202 15056.94201 15131.88672 69624.19164 1493557.38075 26735.26742 + 10164.68898 2823.83575 84417.26269 84417.26269 7315.84106 199.87653 20.38479 100.00000 -1920.20180 5605.31555 1710.52551 0.02176 0.00000 0.74787 4648.11404 4396.93276 10240.29237 10240.29237 44159.57612 10074.22710 4128.18734 1.02700 940.69719 82.00578 4273.66487 20140.45247 16350.45488 8638.24233 0.07542 13.25953 0.16779 1.03345 -40638.63502 19.97002 17.51828 19.95239 20.01903 17.57308 17.57308 17.58179 17.58815 17.58179 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 39762.64336 26640.97113 13121.67222 1329.24281 0.62106 0.19782 8.61939 8.61939 139643.93783 117998.32275 58027.70935 42625.29400 52245.18777 19706.90440 4224.20991 4224.20991 4349.26825 7732.98851 93184.50116 71992.69358 456070.86629 93604.10656 93615.18886 17744.55816 21191.80757 540.49894 20651.30863 5840.70441 23585.26257 193375.18197 4932.05393 188443.12804 -327121.80921 76586.06392 19.51451 20.68236 19.45832 19.45832 19.02507 19.68037 19.02586 69599.23859 2500.69067 14666.28449 14666.28448 6837.89282 14666.28453 24004.86796 100391.67046 20635.60578 851117.21476 851117.21478 69144.30054 932.66703 20.04280 100.00000 2699.66218 46526.63210 22617.66843 0.02176 0.00000 0.16463 27290.69097 43986.52382 99952.72341 99952.72341 478991.53840 101013.77571 24904.38140 1.02700 10288.43992 1008.95509 26620.73949 211495.16799 24076.22005 79801.77062 0.05377 18.59642 0.14651 0.94413 57134.93826 19.94166 20.47358 19.94430 19.94390 19.18811 19.18811 19.34080 19.33158 19.34080 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 435005.01459 300153.46071 134851.55388 -8489.58423 2.26078 0.21592 9.10358 9.10358 1359962.40239 1088934.29481 535502.21099 393362.74740 482138.85869 206942.51839 26039.54684 26039.54682 26181.79244 72416.36299 44811.19482 10051.08048 295700.92894 295700.92895 30405.59380 386.82671 20.30329 100.00000 3417.20550 19086.24390 11319.34990 0.02176 0.00000 0.55484 14158.70895 17929.59448 44647.60650 44647.60649 207075.60998 45043.89862 12484.63295 1.02700 5137.05227 337.57627 13235.81503 106436.83078 25473.48143 83756.19760 0.05348 18.69901 0.13004 0.92571 72320.83182 20.05386 20.81322 20.05592 20.05561 19.34480 19.34480 19.49111 19.48563 19.49111 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 189146.01549 130510.75103 58635.26447 -3188.51816 1.19643 0.20937 8.52113 8.52113 608039.36498 478471.99236 235296.85063 172841.51916 211849.27477 104145.64859 13030.67745 13030.67745 13072.22671 32374.44749 3465.89180 3370.28853 79.67163 1485.14953 1565.80950 74987.22778 19.18686 19.18686 683.47192 1470.20622 23287.07609 4726.41833 433954.86276 433954.86276 16845.13617 261.01700 20.31824 100.00000 2354.28398 10428.93854 6416.19763 0.02176 0.00000 0.56895 7000.01737 22713.16601 23174.88284 23174.88284 115727.28542 23432.47454 6028.42111 1.02700 2359.02160 327.48359 6581.56150 53728.20391 16125.62011 46740.48776 0.05609 17.82920 0.14234 0.99370 49825.44255 20.72226 19.48991 20.73014 20.73045 18.94905 18.94905 19.09406 19.08257 19.09406 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 93014.11941 62319.46030 30694.65911 -2142.22471 1.03426 0.19148 9.67630 9.67630 341179.90687 261185.12713 128442.28880 94349.58547 115642.88114 52571.64150 6401.16281 6401.16281 6469.36825 17492.64423 6325.26074 513.07887 27009.56786 27009.56786 4389.72988 53.32260 18.92657 100.00000 15743.59551 1319.61382 3070.11606 0.02176 0.00000 9.25925 800.72406 1925.56837 6266.43354 6266.43354 21943.09063 6384.21991 594.68504 1.02700 859.62186 50.53786 710.69003 15327.06508 54086.71673 13742.64447 0.06065 16.48800 0.17580 1.06586 333193.22631 18.59466 17.26851 18.62875 18.62878 14.33462 14.33462 14.96344 14.95386 14.96344 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 20017.52225 11409.98773 8607.53452 -880.25713 0.20230 0.16831 2.62369 2.62369 88191.22141 69067.25757 33965.01453 24949.61022 30580.36551 14997.12921 649.48811 649.48811 651.86283 4671.71670 18.78862 17.70879 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 17979.76441 19229.70769 1.07755 16.68914 19.43908 19.43908 19.72061 0.16691 2421.01903 15453.01879 15453.01878 7521.36474 41339.55200 11316.91794 302155.45735 302155.45736 28675.46688 501.48303 20.74556 100.00000 4165.98384 17956.50222 10718.96465 0.02176 0.00000 0.85628 12988.59464 17090.27342 41207.00648 41207.00648 187241.01009 41509.82241 13745.18075 1.02700 4676.23270 684.66469 14920.91218 96322.65782 60186.97047 59538.50314 0.05512 18.14208 0.13262 0.88273 88167.77477 20.72806 20.34900 20.73361 20.73397 18.81428 18.81428 19.00288 18.93480 19.00288 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 170150.73667 117404.00859 52746.72808 -2518.74655 0.63120 0.19770 8.92256 8.92256 568613.62816 451947.47616 222252.96259 163259.89741 200105.22375 94249.18534 14211.78254 14211.78253 14788.36667 30406.57217 9332.20625 2583.47739 60707.09560 60707.09561 6359.40142 106.69348 21.33789 100.00000 3815.80388 3359.05983 3000.34159 0.02176 0.00000 1.63522 3027.10356 3237.07009 9262.58751 9262.58751 45130.53903 9404.02538 3127.76740 1.02700 1054.92655 53.70447 3272.35954 24316.32253 25803.45536 7801.38723 0.06400 15.62599 0.11809 1.18232 80756.65923 21.26156 16.32906 21.29094 21.34674 17.34298 17.34298 17.35263 17.37115 17.35263 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 41893.46894 28906.49363 12986.97531 -1208.06789 0.38228 0.20924 6.24796 6.24796 128008.14107 98670.30234 48522.82200 35643.30859 43687.47231 23792.88971 3073.22628 3073.22628 3202.74081 6773.51874 94489.35724 9297.80059 576234.06280 576234.06281 68715.86393 1524.54849 21.74744 100.00000 -18362.81114 19804.29658 48911.56735 0.02176 0.00000 1.00000 11195.71513 33170.23033 95036.61735 95036.61735 382219.41655 93922.34296 13516.10283 1.02700 9760.82330 821.20171 14917.52794 110398.34010 152999.50124 125771.78919 0.08153 12.26542 0.24965 1.04811 -388625.65649 21.28916 17.03321 21.26659 21.29831 17.28972 17.28972 17.37109 17.36941 17.37109 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 349049.18622 247824.92272 101224.26350 9506.50603 0.71278 0.17475 5.86949 5.86949 1261133.25637 1138391.21635 559823.50534 411228.39028 504036.51085 108021.86071 15388.19458 15388.19457 15464.78805 71155.92305 1567628.85745 27323.44300 + 10388.31202 2885.96011 88603.85197 88603.85197 7476.78948 204.27381 20.93518 100.00000 -2015.43229 5728.63243 1748.15705 0.02176 0.00000 0.74787 4750.37249 4614.99422 10465.57868 10465.57868 46349.62591 10295.85998 4219.00741 1.02700 961.39252 83.80990 4367.68545 20583.54251 16350.45488 9066.64728 0.07542 13.25953 0.16779 1.03345 -42654.06731 20.50921 17.99127 20.49110 20.55954 18.04756 18.04756 18.05650 18.06304 18.05650 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 41734.63169 27962.20332 13772.42837 1395.16528 0.63018 0.19782 8.61939 8.61939 142716.10287 120594.28438 59304.31825 43563.04996 53394.58127 20140.45620 4317.14248 4317.14247 4444.95210 7903.11416 95234.55911 73576.53202 478689.24240 95663.39583 95674.72194 18134.93824 21658.02710 552.38991 21105.63718 5969.19984 24104.13807 197629.44269 5040.55899 192588.88370 -343345.08646 78270.95556 20.04140 21.24078 19.98370 19.98370 19.53874 20.21174 19.53956 71130.42104 2555.70583 14988.94258 14988.94257 6988.32638 14988.94262 24532.97478 102600.28606 21089.58887 893327.51741 893327.51744 70665.47436 953.18569 20.58396 100.00000 2833.54916 47550.21747 23115.25689 0.02176 0.00000 0.16463 27891.08586 46167.99125 102151.68217 102151.68217 502746.64236 103236.07760 25452.27751 1.02700 10514.78548 1031.15209 27206.39546 216148.06647 24076.22005 83759.45921 0.05377 18.59642 0.14651 0.94413 59968.48742 20.48008 21.02636 20.48279 20.48239 19.70619 19.70619 19.86300 19.85353 19.86300 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 456578.65111 315039.26996 141539.38115 -8910.61669 2.29498 0.21592 9.10358 9.10358 1389881.56124 1112890.83567 547283.25313 402016.72313 492745.90776 211495.25436 26612.41656 26612.41655 26757.79157 74009.52193 45797.04059 10272.20413 310365.91922 310365.91923 31074.51651 395.33689 20.85148 100.00000 3586.67832 19506.14104 11568.37547 0.02176 0.00000 0.55484 14470.20038 18818.79470 45629.85332 45629.85332 217345.31672 46034.86387 12759.29473 1.02700 5250.06736 345.00294 13527.00281 108778.44164 25473.48143 87910.00201 0.05348 18.69901 0.13004 0.92571 75907.51015 20.59531 21.37518 20.59743 20.59711 19.86711 19.86711 20.01737 20.01174 20.01737 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 198526.52202 136983.30056 61543.22146 -3346.64952 1.21453 0.20937 8.52113 8.52113 621416.22414 488998.37014 240473.37846 176644.03050 216509.95624 106436.85239 13317.35221 13317.35220 13359.81555 33086.68491 3542.14138 3444.43484 81.42441 1517.82280 1600.25729 78706.14395 19.70490 19.70490 698.50830 1502.55074 23799.39150 4830.39948 455476.41790 455476.41791 17215.72897 266.75937 20.86683 100.00000 2471.04229 10658.37506 6557.35391 0.02176 0.00000 0.56895 7154.01767 23839.60265 23684.73000 23684.73000 121466.66384 23947.98871 6161.04631 1.02700 2410.92005 334.68823 6726.35577 54910.22492 16125.62011 49058.53526 0.05609 17.82920 0.14234 0.99370 52296.48485 21.28176 20.01614 21.28986 21.29017 19.46068 19.46068 19.60960 19.59780 19.60960 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 97627.06119 65410.13132 32216.92987 -2248.46620 1.04945 0.19148 9.67630 9.67630 348685.86109 266931.19663 131268.01758 96425.27521 118187.02312 53728.21754 6541.98832 6541.98832 6611.69428 17877.48217 6464.41640 524.36660 28349.08023 28349.08023 4486.30388 54.49569 19.43759 100.00000 16524.38334 1348.64530 3137.65858 0.02176 0.00000 9.25925 818.33998 2021.06500 6404.29500 6404.29500 23031.33615 6524.67268 607.76811 1.02700 878.53353 51.64969 726.32520 15664.26041 54086.71673 14424.19711 0.06065 16.48800 0.17580 1.06586 349717.60964 19.09672 17.73476 19.13173 19.13176 14.72165 14.72165 15.36745 15.35762 15.36745 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 21010.27115 11975.85461 9034.41654 -923.91260 0.20482 0.16831 2.62369 2.62369 90131.42722 70586.73638 34712.24444 25498.50134 31253.13318 15327.06590 663.77684 663.77684 666.20380 4774.49441 19.29592 18.18693 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 18375.31902 19652.76104 1.07755 17.13975 19.96394 19.96394 20.25307 0.16691 2474.28142 15792.98502 15792.98501 7686.83468 42249.02167 11565.89000 317140.55350 317140.55350 29306.32682 512.51565 21.30569 100.00000 4372.59158 18351.54506 10954.78175 0.02176 0.00000 0.85628 13274.34357 17937.84835 42113.56015 42113.56015 196527.03979 42423.03803 14047.57457 1.02700 4779.10977 699.72731 15249.17208 98441.75593 60186.97047 62491.25535 0.05512 18.14208 0.13262 0.88273 92540.36635 21.28772 20.89842 21.29342 21.29378 19.32226 19.32226 19.51596 19.44603 19.51596 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 178589.19144 123226.54240 55362.64904 -2643.66125 0.64075 0.19770 8.92256 8.92256 581123.12115 461890.31490 227142.52505 166851.61319 204507.53624 96322.66662 14524.44159 14524.44158 15113.71056 31075.51638 9537.51468 2640.31386 63717.80297 63717.80297 6499.30817 109.04073 21.91402 100.00000 4005.04477 3432.95910 3066.34907 0.02176 0.00000 1.63522 3093.69980 3397.60932 9466.36433 9466.36433 47368.74274 9610.91383 3196.57825 1.02700 1078.13493 54.88597 3344.35142 24851.28226 25803.45536 8188.28918 0.06400 15.62599 0.11809 1.18232 84761.70400 21.83562 16.76995 21.86579 21.92310 17.81124 17.81124 17.82115 17.84018 17.82115 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 43971.13342 30340.08212 13631.05130 -1267.98082 0.38806 0.20924 6.24796 6.24796 130824.31905 100841.04779 49590.32351 36427.46096 44648.59618 24316.33345 3140.83722 3140.83722 3273.20107 6922.53605 96568.12201 9502.35210 604811.81194 604811.81194 70227.61215 1558.08854 22.33462 100.00000 -19273.49610 20239.99087 49987.62127 0.02176 0.00000 1.00000 11442.02073 34815.27457 97127.42184 97127.42184 401175.20435 95988.63344 13813.45694 1.02700 9975.56129 839.26814 15245.71339 112827.10234 152999.50124 132009.31463 0.08153 12.26542 0.24965 1.04811 -407899.15259 21.86396 17.49311 21.84079 21.87337 17.75655 17.75655 17.84011 17.83839 17.84011 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 366359.92978 260115.55069 106244.37909 9977.97167 0.72387 0.17475 5.86949 5.86949 1288878.17246 1163435.80888 572139.61567 420275.40996 515125.30802 110398.34038 15726.73468 15726.73467 15805.01322 72721.35254 1645373.83456 27924.55843 + 10616.85477 2949.45119 92998.07094 92998.07094 7641.27876 208.76783 21.50043 100.00000 -2115.38563 5854.66227 1786.61649 0.02176 0.00000 0.74787 4854.88063 4843.87022 10695.82129 10695.82129 48648.28902 10522.36878 4311.82553 1.02700 982.54314 85.65372 4463.77448 21036.38051 16350.45488 9516.29853 0.07542 13.25953 0.16779 1.03345 -44769.45293 21.06296 18.47704 21.04436 21.11465 18.53484 18.53484 18.54402 18.55074 18.54402 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 43804.41880 29348.96070 14455.45811 1464.35710 0.63944 0.19782 8.61939 8.61939 145855.85550 123247.35713 60609.01254 44521.43654 54569.26141 20583.54613 4412.11956 4412.11956 4542.74100 8076.98257 97329.71832 75195.21488 502429.35413 97767.98944 97779.56473 18533.90667 22134.50344 564.54249 21569.96096 6100.52216 24634.42883 201977.29629 5151.45117 196825.84512 -360372.94083 79992.91488 20.58252 21.81428 20.52326 20.52326 20.06629 20.75745 20.06712 72695.28949 2611.93133 15318.69914 15318.69913 7142.06948 15318.69918 25072.69994 104857.49118 21553.55958 937631.19760 937631.19763 72220.11399 974.15576 21.13973 100.00000 2974.07612 48596.32171 23623.79228 0.02176 0.00000 0.16463 28504.68943 48457.64637 104399.01800 104399.01801 527679.85683 105507.27011 26012.22732 1.02700 10746.11063 1053.83742 27804.93585 220903.32847 24076.22005 87913.42539 0.05377 18.59642 0.14651 0.94413 62942.56354 21.03304 21.59408 21.03583 21.03541 20.23826 20.23826 20.39930 20.38958 20.39930 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 479222.21046 330663.32597 148558.88449 -9352.52983 2.32970 0.21592 9.10358 9.10358 1420458.94109 1137374.42010 559323.47804 410861.08622 503586.31177 216148.15039 27197.88942 27197.88940 27346.46267 75637.73036 46804.57495 10498.19251 325758.20496 325758.20497 31758.15552 404.03430 21.41447 100.00000 3764.55598 19935.27592 11822.87960 0.02176 0.00000 0.55484 14788.54463 19752.09390 46633.70957 46633.70957 228124.33925 47047.63034 13039.99907 1.02700 5365.56878 352.59300 13824.59672 111171.56787 25473.48143 92269.81018 0.05348 18.69901 0.13004 0.92571 79672.06613 21.15139 21.95231 21.15356 21.15323 20.40352 20.40352 20.55784 20.55206 20.55784 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 208372.24535 143776.84968 64595.39566 -3512.62325 1.23291 0.20937 8.52113 8.52113 635087.37400 499756.32808 245763.78984 180530.19704 221273.17264 108778.46262 13610.33380 13610.33379 13653.73134 33814.59154 3620.06845 3520.21237 83.21574 1551.21488 1635.46293 82609.49602 20.23694 20.23694 713.87547 1535.60684 24322.97784 4936.66821 478065.31294 478065.31294 17594.47481 272.62807 21.43024 100.00000 2593.59111 10892.85919 6701.61562 0.02176 0.00000 0.56895 7311.40598 25021.90377 24205.79379 24205.79379 127490.68096 24474.84418 6296.58926 1.02700 2463.96026 342.05136 6874.33552 56118.25035 16125.62011 51491.54400 0.05609 17.82920 0.14234 0.99370 54890.07596 21.85637 20.55658 21.86468 21.86501 19.98612 19.98612 20.13906 20.12694 20.13906 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 102468.77719 68654.08106 33814.69612 -2359.97663 1.06486 0.19148 9.67630 9.67630 356356.94618 272803.67958 134155.91235 98546.63009 120787.13618 54910.23822 6685.91199 6685.91199 6757.15147 18270.78654 6606.63349 535.90266 29755.02436 29755.02436 4585.00252 55.69460 19.96241 100.00000 17343.89355 1378.31549 3206.68703 0.02176 0.00000 9.25925 836.34345 2121.29769 6545.18942 6545.18942 24173.55212 6668.21540 621.13900 1.02700 897.86126 52.78598 742.30435 16008.87402 54086.71673 15139.55066 0.06065 16.48800 0.17580 1.06586 367061.50319 19.61233 18.21359 19.64829 19.64832 15.11914 15.11914 15.78237 15.77227 15.78237 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 22052.25443 12569.78508 9482.46935 -969.73312 0.20738 0.16831 2.62369 2.62369 92114.31753 72139.64369 35475.91340 26059.46807 31940.70173 15664.26119 678.37992 678.37992 680.86028 4879.53323 19.81691 18.67798 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 18779.57583 20085.12155 1.07755 17.60252 20.50297 20.50297 20.79990 0.16691 2528.71559 16140.43051 16140.43050 7855.94495 43178.49966 11820.33945 332868.82042 332868.82043 29951.06567 523.79099 21.88094 100.00000 4589.44584 18755.27884 11195.78683 0.02176 0.00000 0.85628 13566.37898 18827.45791 43040.05799 43040.05799 206273.60080 43356.34437 14356.62105 1.02700 4884.25012 715.12130 15584.65369 100607.47415 60186.97047 65590.44633 0.05512 18.14208 0.13262 0.88273 97129.81219 21.86249 21.46268 21.86834 21.86872 19.84396 19.84396 20.04289 19.97108 20.04289 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 187446.14289 129337.83893 58108.30396 -2774.77096 0.65044 0.19770 8.92256 8.92256 593907.82280 472051.89595 232139.65781 170522.34667 209006.69954 98441.76445 14843.97913 14843.97913 15446.21202 31759.17736 9747.33989 2698.40073 66877.82334 66877.82334 6642.29288 111.43963 22.50570 100.00000 4203.67087 3508.48417 3133.80872 0.02176 0.00000 1.63522 3161.76116 3566.11034 9674.62424 9674.62424 49717.94791 9822.35383 3266.90293 1.02700 1101.85388 56.09346 3417.92711 25398.01107 25803.45536 8594.37915 0.06400 15.62599 0.11809 1.18232 88965.37487 22.42518 17.22273 22.45617 22.51503 18.29215 18.29215 18.30232 18.32186 18.30232 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 46151.83757 31844.76799 14307.06958 -1330.86507 0.39393 0.20924 6.24796 6.24796 133702.45290 103059.54961 50681.31004 37228.86468 45630.86477 24851.29292 3209.93560 3209.93560 3345.21146 7074.83174 98692.61959 9711.40373 634806.84582 634806.84582 71772.61881 1592.36647 22.93766 100.00000 -20229.34555 20685.27044 51087.34837 0.02176 0.00000 1.00000 11693.74505 36541.90312 99264.22401 99264.22401 421071.08539 98100.38228 14117.35283 1.02700 10195.02353 857.73203 15581.11890 115309.29733 152999.50124 138556.18386 0.08153 12.26542 0.24965 1.04811 -428128.49814 22.45429 17.96542 22.43049 22.46395 18.23597 18.23597 18.32180 18.32002 18.32180 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 384529.18228 273015.72001 111513.46227 10472.81918 0.73515 0.17475 5.86949 5.86949 1317233.47634 1189031.38209 584726.68027 429521.46395 526458.05858 112827.10257 16072.72267 16072.72266 16152.72333 74321.22145 1726974.49564 28538.89839 + 10850.42545 3014.33909 97610.21677 97610.21678 7809.38680 213.36072 22.08094 100.00000 -2220.29606 5983.46478 1825.92203 0.02176 0.00000 0.74787 4961.68795 5084.09710 10931.12924 10931.12924 51060.95202 10753.86077 4406.68564 1.02700 1004.15908 87.53810 4561.97746 21499.18094 16350.45488 9988.24979 0.07542 13.25953 0.16779 1.03345 -46989.74899 21.63166 18.97592 21.61256 21.68475 19.03528 19.03528 19.04471 19.05161 19.04471 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 45976.85493 30804.49291 15172.36202 1536.98042 0.64883 0.19782 8.61939 8.61939 149064.68264 125958.79745 61942.41007 45500.90761 55769.78450 21036.38404 4509.18614 4509.18614 4642.68125 8254.67609 99470.97101 76849.50875 527346.83284 99918.88409 99930.71403 18941.65240 22621.46226 576.96241 22044.49985 6234.73358 25176.38598 206420.80188 5264.78298 201156.01891 -378245.27452 81752.75736 21.13825 22.40327 21.07739 21.07739 20.60808 21.31790 20.60894 74294.58503 2669.39379 15655.71035 15655.71033 7299.19493 15655.71039 25624.29905 107164.35479 22027.73764 984132.07428 984132.07430 73808.95568 995.58718 21.71050 100.00000 3121.57237 49665.44023 24143.51545 0.02176 0.00000 0.16463 29131.79226 50860.85463 106695.79520 106695.79520 553849.60902 107828.42882 26584.49603 1.02700 10982.52494 1077.02184 28416.64412 225763.20597 24076.22005 92273.40335 0.05377 18.59642 0.14651 0.94413 66064.13591 21.60094 22.17712 21.60379 21.60337 20.78469 20.78469 20.95008 20.94010 20.95008 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 502988.75439 347062.24134 155926.51305 -9816.35922 2.36495 0.21592 9.10358 9.10358 1451709.02278 1162396.64305 571628.58774 419900.02518 514665.20452 220903.40998 27796.24267 27796.24265 27948.08453 77301.75936 47834.27506 10729.15262 341913.85563 341913.85564 32456.83458 412.92305 21.99266 100.00000 3951.25530 20373.85176 12082.98281 0.02176 0.00000 0.55484 15113.89244 20731.67914 47659.65064 47659.65064 239437.93657 48082.67766 13326.87890 1.02700 5483.61122 360.35004 14128.73769 113617.34279 25473.48143 96845.83865 0.05348 18.69901 0.13004 0.92571 83623.32144 21.72247 22.54502 21.72471 21.72437 20.95442 20.95442 21.11290 21.10696 21.11290 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 218706.25743 150907.31805 67798.93938 -3686.82827 1.25156 0.20937 8.52113 8.52113 649059.28893 510750.96095 251170.59019 184501.85919 226141.17973 111171.58823 13909.76099 13909.76098 13954.11327 34558.51211 3699.70992 3597.65700 85.04649 1585.34159 1671.44309 86706.43092 20.78333 20.78333 729.58072 1569.39017 24858.08307 5045.27486 501774.48151 501774.48152 17981.55306 278.62588 22.00885 100.00000 2722.21762 11132.50197 6849.05109 0.02176 0.00000 0.56895 7472.25682 26262.83994 24738.32097 24738.32097 133813.45316 25013.29047 6435.11415 1.02700 2518.16736 349.57649 7025.57083 57352.85230 16125.62011 54045.21536 0.05609 17.82920 0.14234 0.99370 57612.29358 22.44649 21.11161 22.45503 22.45536 20.52574 20.52574 20.68282 20.67037 20.68282 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 107550.61322 72058.91124 35491.70199 -2477.01731 1.08050 0.19148 9.67630 9.67630 364196.79503 278805.35707 137107.34077 100714.65476 123444.45170 56118.26332 6833.00198 6833.00197 6905.80873 18672.74361 6751.97935 547.69251 31230.69488 31230.69488 4685.87252 56.91988 20.50139 100.00000 18204.04655 1408.63841 3277.23411 0.02176 0.00000 9.25925 854.74300 2226.50132 6689.18351 6689.18351 25372.41514 6814.91606 634.80405 1.02700 917.61419 53.94727 758.63503 16361.06913 54086.71673 15890.38146 0.06065 16.48800 0.17580 1.06586 385265.54974 20.14187 18.70536 20.17879 20.17882 15.52735 15.52735 16.20850 16.19813 16.20850 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 23145.91382 13193.17094 9952.74288 -1017.82606 0.20997 0.16831 2.62369 2.62369 94140.83140 73726.71495 36256.38306 26632.77605 32643.39678 16008.87477 693.30427 693.30427 695.83920 4986.88290 20.35196 19.18228 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 19192.72628 20526.99399 1.07755 18.07779 21.05655 21.05655 21.36150 0.16691 2584.34730 16495.51980 16495.51978 8028.77565 44128.42615 12080.38678 349377.11493 349377.11494 30609.98877 535.31438 22.47173 100.00000 4817.05475 19167.89476 11442.09401 0.02176 0.00000 0.85628 13864.83916 19761.18675 43986.93877 43986.93877 216503.53271 44310.18345 14672.46654 1.02700 4991.70357 730.85396 15927.51589 102820.83812 60186.97047 68843.33857 0.05512 18.14208 0.13262 0.88273 101946.86694 22.45277 22.04217 22.45878 22.45917 20.37975 20.37975 20.58405 20.51030 20.58405 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 196742.34596 135752.21907 60990.12688 -2912.38293 0.66028 0.19770 8.92256 8.92256 606973.78770 482437.03164 237246.72743 174273.83623 213604.84437 100607.48239 15170.54650 15170.54649 15786.02851 32457.87888 9961.78126 2757.76552 70194.56174 70194.56175 6788.42325 113.89130 23.11335 100.00000 4412.14762 3585.67078 3202.75247 0.02176 0.00000 1.63522 3231.31987 3742.96800 9887.46586 9887.46586 52183.65956 10038.44550 3338.77476 1.02700 1126.09465 57.32752 3493.12147 25956.76790 25803.45536 9020.60875 0.06400 15.62599 0.11809 1.18232 93377.52249 23.03066 17.68775 23.06249 23.12293 18.78604 18.78604 18.79648 18.81655 18.79648 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 48440.69156 33424.07725 15016.61431 -1396.86801 0.39989 0.20924 6.24796 6.24796 136643.90565 105326.85844 51796.29826 38047.89926 46634.74325 25398.02150 3280.55415 3280.55415 3418.80607 7230.47794 100863.85608 9925.05450 666289.45326 666289.45326 73351.61559 1627.39852 23.55697 100.00000 -21232.59937 21140.34615 52211.26944 0.02176 0.00000 1.00000 11951.00731 38354.16208 101448.03580 101448.03580 441953.68266 100258.58957 14427.93443 1.02700 10419.31392 876.60213 15923.90334 117846.10057 152999.50124 145427.73850 0.08153 12.26542 0.24965 1.04811 -449361.09751 23.06056 18.45049 23.03612 23.07048 18.72835 18.72835 18.81649 18.81466 18.81649 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 403599.52059 286555.66026 117043.86033 10992.20816 0.74659 0.17475 5.86949 5.86949 1346212.59653 1215190.05757 597590.66013 438970.93102 538040.12950 115309.29751 16426.32238 16426.32237 16508.08306 75956.28747 1812622.05947 29166.75383 + 11089.13469 3080.65451 102451.09735 102451.09735 7981.19322 218.05466 22.67712 100.00000 -2330.40941 6115.10093 1866.09229 0.02176 0.00000 0.74787 5070.84503 5336.23778 11171.61395 11171.61395 53593.26862 10990.44558 4503.63267 1.02700 1026.25057 89.46394 4662.34091 21972.16296 16350.45488 10483.60700 0.07542 13.25953 0.16779 1.03345 -49320.15840 22.21571 19.48827 22.19610 22.27024 19.54924 19.54924 19.55892 19.56600 19.55892 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 48257.03084 32332.21078 15924.82006 1613.20542 0.65836 0.19782 8.61939 8.61939 152344.10393 128729.88941 63305.14234 46501.92703 56996.71908 21499.18437 4608.38818 4608.38818 4744.82018 8436.27886 101659.33123 78540.19706 553500.06886 102117.09840 102129.18859 19358.36854 23119.13417 589.65558 22529.47859 6371.89765 25730.26618 210962.06388 5380.60809 205581.45580 -397003.96863 83551.31642 21.70898 23.00816 21.64648 21.64648 21.16450 21.89349 21.16538 75929.06504 2728.12042 16000.13579 16000.13578 7459.77713 16000.13584 26188.03334 109521.96937 22512.34762 1032939.11519 1032939.11522 75432.75186 1017.49009 22.29668 100.00000 3276.38355 50758.07934 24674.67252 0.02176 0.00000 0.16463 29772.69136 53383.24760 109043.10146 109043.10147 581317.22378 110200.65300 27169.35463 1.02700 11224.14035 1100.71630 29041.80997 230730.00053 24076.22005 96849.61004 0.05377 18.59642 0.14651 0.94413 69340.51945 22.18416 22.77590 22.18710 22.18666 21.34588 21.34588 21.51573 21.50548 21.51573 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 527933.97618 364274.44445 163659.53174 -10303.19177 2.40073 0.21592 9.10358 9.10358 1483646.60574 1187969.35454 584204.40969 429137.82068 525987.83276 225763.28515 28407.75968 28407.75966 28562.94206 79002.39699 48886.62856 10965.19385 358870.72955 358870.72957 33170.88456 422.00735 22.58646 100.00000 4147.21379 20822.07626 12348.80830 0.02176 0.00000 0.55484 15446.39790 21759.84593 48708.16241 48708.16241 251312.62038 49140.49601 13620.07008 1.02700 5604.25060 368.27774 14439.56975 116116.92468 25473.48143 101648.81065 0.05348 18.69901 0.13004 0.92571 87770.53522 22.30898 23.15374 22.31127 22.31093 21.52019 21.52019 21.68295 21.67685 21.68295 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 229552.77445 158391.41484 71161.35962 -3869.67282 1.27049 0.20937 8.52113 8.52113 663338.58578 521987.47558 256696.34008 188560.89785 231116.28291 113617.36255 14215.77557 14215.77556 14261.10360 35318.79893 3781.10349 3676.80541 86.91751 1620.21909 1708.21482 91006.54918 21.34448 21.34448 745.63149 1603.91674 25404.96061 5156.27085 526659.48247 526659.48248 18377.14702 284.75565 22.60309 100.00000 2857.22322 11377.41688 6999.73014 0.02176 0.00000 0.56895 7636.64639 27565.31908 25282.56375 25282.56375 140449.79689 25563.58256 6576.68658 1.02700 2573.56701 357.26717 7180.13330 58614.61545 16125.62011 56725.53348 0.05609 17.82920 0.14234 0.99370 60469.51680 23.05255 21.68162 23.06132 23.06166 21.07994 21.07994 21.24125 21.22847 21.24125 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 112884.47781 75632.60054 37251.87727 -2599.86251 1.09637 0.19148 9.67630 9.67630 372209.12044 284939.07138 140123.70058 102930.37594 126160.22812 57352.86496 6983.32794 6983.32794 7057.73644 19083.54373 6900.52282 559.74174 32779.54980 32779.54980 4788.96166 58.17211 21.05493 100.00000 19106.85798 1439.62844 3349.33322 0.02176 0.00000 9.25925 873.54733 2336.92241 6836.34547 6836.34547 26630.73457 6964.84414 648.76973 1.02700 937.80170 55.13411 775.32499 16721.01252 54086.71673 16678.44895 0.06065 16.48800 0.17580 1.06586 404372.40773 20.68570 19.21041 20.72362 20.72365 15.94659 15.94659 16.64613 16.63547 16.64613 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 24293.81216 13847.47300 10446.33916 -1068.30412 0.21259 0.16831 2.62369 2.62369 96211.92855 75348.70176 37054.02304 27218.69680 33361.55112 16361.06985 708.55696 708.55696 711.14765 5096.59426 20.90147 19.70020 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 19614.96604 20978.58762 1.07755 18.56589 21.62507 21.62507 21.93826 0.16691 2641.20291 16858.42104 16858.42103 8205.40863 45099.25102 12346.15515 366704.12172 366704.12173 31283.40817 547.09129 23.07847 100.00000 5055.95171 19589.58822 11693.81995 0.02176 0.00000 0.85628 14169.86546 20741.22295 44954.65091 44954.65091 227240.80782 45285.00697 14995.26064 1.02700 5101.52099 746.93274 16277.92105 105082.89605 60186.97047 72257.55473 0.05512 18.14208 0.13262 0.88273 107002.81865 23.05900 22.63731 23.06517 23.06557 20.93000 20.93000 21.13982 21.06408 21.13982 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 206499.58487 142484.71395 64014.87091 -3056.81962 0.67027 0.19770 8.92256 8.92256 620327.20363 493050.64016 242466.15250 178107.85851 218304.14833 102820.84610 15504.29835 15504.29834 16133.32095 33171.95182 10180.94033 2818.43633 73675.79045 73675.79045 6937.76849 116.39690 23.73741 100.00000 4630.96356 3664.55549 3273.21299 0.02176 0.00000 1.63522 3302.40887 3928.59673 10104.99000 10104.99000 54771.65569 10259.29118 3412.22777 1.02700 1150.86872 58.58872 3569.97010 26527.81734 25803.45536 9467.97677 0.06400 15.62599 0.11809 1.18232 98008.48605 23.65249 18.16532 23.68517 23.74725 19.29326 19.29326 19.30399 19.32460 19.30399 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 50843.05896 35081.71076 15761.34820 -1466.14430 0.40594 0.20924 6.24796 6.24796 139650.07030 107644.04804 52935.81620 38884.95260 47660.70705 25956.77808 3352.72630 3352.72630 3494.01976 7389.54835 103082.85975 10143.40559 699333.40897 699333.40897 74965.35029 1663.20127 24.19301 100.00000 -22285.60854 21605.43352 53359.91677 0.02176 0.00000 1.00000 12213.92933 40256.29820 103679.89142 103679.89142 463871.93136 102464.27740 14745.34882 1.02700 10648.53871 895.88736 16274.22903 120438.71345 152999.50124 152640.08098 0.08153 12.26542 0.24965 1.04811 -471646.70605 23.68319 18.94865 23.65809 23.69338 19.23401 19.23401 19.32453 19.32266 19.32453 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 423615.63317 300767.10024 122848.53293 11537.35572 0.75822 0.17475 5.86949 5.86949 1375829.25697 1241924.22354 610737.64737 448628.28623 549877.00583 117846.10070 16787.70129 16787.70128 16871.26070 77627.32491 1902517.22812 29808.42208 + 11333.09552 3148.42888 107532.05653 107532.05653 8156.77938 222.85186 23.28941 100.00000 -2445.98373 6249.63308 1907.14630 0.02176 0.00000 0.74787 5182.40356 5600.88313 11417.38933 11417.38933 56251.17291 11232.23526 4602.71254 1.02700 1048.82807 91.43214 4764.91236 22455.55057 16350.45488 11003.53094 0.07542 13.25953 0.16779 1.03345 -51766.14213 22.81554 20.01445 22.79539 22.87153 20.07706 20.07706 20.08701 20.09428 20.08701 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 50650.28978 33935.69428 16714.59550 1693.21072 0.66803 0.19782 8.61939 8.61939 155695.67245 131561.94536 64697.85470 47524.96886 58250.64621 21972.16629 4709.77267 4709.77267 4849.20617 8621.87689 103895.83535 80268.08049 580950.34832 104363.67339 104376.02957 19784.25242 23627.75485 602.62800 23025.12686 6512.07932 26296.33174 215603.23299 5498.98136 210104.25163 -416692.98132 85389.44382 22.29512 23.62938 22.23093 22.23093 21.73594 22.48461 21.73684 77599.50361 2788.13904 16352.13860 16352.13858 7623.89215 16352.13865 26764.16977 111931.45144 23007.61900 1084166.69223 1084166.69227 77092.27155 1039.87486 22.89869 100.00000 3438.87242 51874.75650 25217.51505 0.02176 0.00000 0.16463 30427.69022 56030.73610 111442.04844 111442.04844 610147.06730 112625.06608 27767.08013 1.02700 11471.07131 1124.93205 29680.72945 235806.06432 24076.22005 101652.76909 0.05377 18.59642 0.14651 0.94413 72779.39187 22.78313 23.39085 22.78615 22.78570 21.92221 21.92221 22.09666 22.08613 22.09666 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 554116.33120 382340.26948 171776.06172 -10814.16829 2.43705 0.21592 9.10358 9.10358 1516286.81500 1214104.66533 597056.89954 438578.84756 537559.55868 230730.07743 29032.73007 29032.73005 29191.32645 80740.44863 49962.13382 11206.42799 376668.56260 376668.56261 33900.64364 431.29151 23.19629 100.00000 4352.89063 21280.16170 12620.48194 0.02176 0.00000 0.55484 15786.21847 22839.00361 49779.74142 49779.74142 263776.21720 50221.58635 13919.71146 1.02700 5727.54405 376.37985 14757.24012 118671.49730 25473.48143 106689.98122 0.05348 18.69901 0.13004 0.92571 92123.42585 22.91132 23.77889 22.91368 22.91332 22.10123 22.10123 22.26839 22.26213 22.26839 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 240937.21359 166246.67788 74690.53571 -4061.58536 1.28971 0.20937 8.52113 8.52113 677932.02694 533471.19337 262343.65639 192709.23531 236200.83830 116116.94385 14528.52247 14528.52246 14574.84771 36095.81205 3864.28772 3757.69509 88.82970 1655.86389 1745.79553 95519.92749 21.92078 21.92078 762.03537 1639.20289 25963.86945 5269.70875 552778.63004 552778.63005 18781.44404 291.02027 23.21338 100.00000 2998.92429 11627.71992 7153.72412 0.02176 0.00000 0.56895 7804.65252 28932.39337 25838.77986 25838.77986 147415.26343 26125.98108 6721.37361 1.02700 2630.18545 365.12704 7338.09615 59904.13735 16125.62011 59538.77929 0.05609 17.82920 0.14234 0.99370 63468.44109 23.67497 22.26702 23.68397 23.68432 21.64910 21.64910 21.81477 21.80164 21.81477 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 118482.87006 79383.52338 39099.34668 -2728.80010 1.11247 0.19148 9.67630 9.67630 380397.71687 291207.72732 143206.42026 105194.84296 128935.75159 58614.62780 7136.96107 7136.96107 7213.00656 19503.38145 7052.33424 572.05605 34405.21862 34405.21863 4894.31876 59.45190 21.62341 100.00000 20054.44344 1471.30025 3423.01851 0.02176 0.00000 9.25925 892.76536 2452.81973 6986.74499 6986.74499 27951.45908 7118.07063 663.04266 1.02700 958.43332 56.34706 792.38214 17088.87467 54086.71673 17505.59986 0.06065 16.48800 0.17580 1.06586 424426.85117 21.24421 19.72909 21.28316 21.28319 16.37715 16.37715 17.09557 17.08463 17.09557 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 25498.63935 14534.22451 10964.41485 -1121.28559 0.21524 0.16831 2.62369 2.62369 98328.58980 77006.37225 37869.21110 27817.50780 34095.50483 16721.01321 724.14520 724.14520 726.79289 5208.71928 21.46581 20.23211 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 20046.49506 21440.11631 1.07755 19.06717 22.20895 22.20895 22.53060 0.16691 2699.30935 17229.30611 17229.30610 8385.92752 46091.43402 12617.77042 384890.44399 384890.44400 31971.64279 559.12730 23.70159 100.00000 5306.69652 20020.55894 11951.08386 0.02176 0.00000 0.85628 14481.60234 21769.86305 45943.65272 45943.65272 238510.58729 46281.27660 15325.15620 1.02700 5213.75439 763.36525 16636.03513 107394.71921 60186.97047 75841.09551 0.05512 18.14208 0.13262 0.88273 112309.51517 23.68159 23.24852 23.68793 23.68834 21.49511 21.49511 21.71059 21.63281 21.71059 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 216740.72424 149551.10015 67189.62409 -3208.41951 0.68041 0.19770 8.92256 8.92256 633974.39451 503897.74791 247800.40485 182026.22923 223106.83691 105082.90376 15845.39274 15845.39273 16488.25382 33901.73435 10404.92091 2880.44190 77329.66720 77329.66720 7090.39931 118.95764 24.37832 100.00000 4860.63144 3745.17567 3345.22364 0.02176 0.00000 1.63522 3375.06182 4123.43153 10327.29966 10327.29966 57488.00089 10484.99547 3487.29674 1.02700 1176.18782 59.87767 3648.50940 27111.42985 25803.45536 9937.53156 0.06400 15.62599 0.11809 1.18232 102869.11749 24.29111 18.65578 24.32467 24.38843 19.81418 19.81418 19.82520 19.84636 19.82520 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 53364.56936 36821.55294 16543.01642 -1538.85628 0.41208 0.20924 6.24796 6.24796 142722.37053 110012.21577 54100.40353 39740.42110 48709.24204 26527.82729 3426.48624 3426.48624 3570.88816 7552.11831 105350.68148 10366.56039 734016.14646 734016.14646 76614.58714 1699.79168 24.84622 100.00000 -23390.84062 22080.75281 54533.83433 0.02176 0.00000 1.00000 12482.63564 42252.76884 105960.84784 105960.84784 486877.19358 104718.49034 15069.74632 1.02700 10882.80644 915.59687 16632.26188 123088.36378 152999.50124 160210.11234 0.08153 12.26542 0.24965 1.04811 -495037.54667 24.32264 19.46027 24.29686 24.33310 19.75333 19.75333 19.84629 19.84437 19.84629 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 444624.42473 315683.34231 128941.08243 12109.53933 0.77002 0.17475 5.86949 5.86949 1406097.48354 1269246.54079 624173.86816 458498.10314 561974.29328 120438.71353 17157.03053 17157.03052 17242.42824 79335.12516 1996870.65728 30464.20702 + 11582.42349 3217.69427 112865.00077 112865.00077 8336.22844 227.75460 23.91822 100.00000 -2567.28984 6387.12494 1949.10350 0.02176 0.00000 0.74787 5296.41638 5878.65330 11668.57176 11668.57176 59040.89330 11479.34430 4703.97216 1.02700 1071.90228 93.44365 4869.74038 22949.57270 16350.45488 11549.24000 0.07542 13.25953 0.16779 1.03345 -54333.43197 23.43156 20.55484 23.41087 23.48906 20.61915 20.61915 20.62936 20.63683 20.62936 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 53162.24000 35618.70093 17543.53907 1777.18380 0.67784 0.19782 8.61939 8.61939 159120.97542 134456.30651 66121.20671 48570.51760 59532.15971 22455.55381 4813.38762 4813.38761 4955.88865 8811.55807 106181.54253 82033.97734 609761.99680 106659.67301 106672.30103 20219.50574 24147.56519 615.88580 23531.67938 6655.34499 26874.85074 220346.50721 5619.95884 214726.54837 -437358.45079 87268.01006 22.89709 24.26737 22.83117 22.83117 22.32281 23.09170 22.32374 79306.69180 2849.47807 16711.88546 16711.88544 7791.61769 16711.88551 27352.98120 114393.94209 23513.78636 1137934.84947 1137934.84951 78788.30064 1062.75209 23.51696 100.00000 3609.41976 53016.00054 25772.30010 0.02176 0.00000 0.16463 31097.09906 58809.52414 113893.77222 113893.77223 640406.69795 115102.81622 28377.95557 1.02700 11723.43474 1149.68054 30333.70516 240993.80127 24076.22005 106694.13600 0.05377 18.59642 0.14651 0.94413 76388.81163 23.39828 24.02240 23.40138 23.40092 22.51411 22.51411 22.69327 22.68245 22.69327 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 581597.17381 401302.05096 180295.12285 -11350.48619 2.47392 0.21592 9.10358 9.10358 1549645.10833 1240814.95259 610192.14400 448227.57690 549385.86240 235806.13901 29671.44979 29671.44977 29833.53530 82516.73739 51061.30019 11452.96928 395349.06127 395349.06129 34646.45741 440.77992 23.82259 100.00000 4568.76780 21748.32501 12898.13240 0.02176 0.00000 0.55484 16133.51510 23971.68103 50874.89515 50874.89515 276857.93359 51326.46067 14225.94495 1.02700 5853.54995 384.66020 15081.89923 121282.27044 25473.48143 111981.16357 0.05348 18.69901 0.13004 0.92571 96692.19365 23.52993 24.42092 23.53235 23.53198 22.69797 22.69797 22.86964 22.86320 22.86964 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 252886.25255 174491.51481 78394.73775 -4263.01560 1.30922 0.20937 8.52113 8.52113 692846.52358 545207.55279 268115.21358 196948.83614 241397.25383 118671.51590 14848.14979 14848.14978 14895.49419 36889.91946 3949.30201 3840.36434 90.78395 1692.29287 1784.20301 100257.14226 22.51265 22.51265 778.80014 1675.26533 26535.07428 5385.64228 580193.13047 580193.13048 19194.63560 297.42271 23.84014 100.00000 3147.65287 11883.52962 7311.10598 0.02176 0.00000 0.56895 7976.35478 30367.26633 26407.23272 26407.23272 154726.17528 26700.75236 6869.24376 1.02700 2688.04950 373.15983 7499.53419 61222.02870 16125.62011 62491.54519 0.05609 17.82920 0.14234 0.99370 66616.09396 24.31419 22.86823 24.32344 24.32380 22.23362 22.23362 22.40377 22.39028 22.40377 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 124358.90894 83320.46947 41038.43947 -2864.13221 1.12881 0.19148 9.67630 9.67630 388766.46231 297614.29360 146356.95973 107509.12822 131772.33653 59904.14939 7293.97413 7293.97413 7371.69262 19932.45559 7207.48551 584.64128 36111.51086 36111.51086 5001.99372 60.75984 22.20725 100.00000 21049.02346 1503.66884 3498.32488 0.02176 0.00000 9.25925 912.40619 2574.46486 7140.45330 7140.45330 29337.68360 7274.66810 677.62959 1.02700 979.51884 57.58670 809.81453 17464.82977 54086.71673 18373.77248 0.06065 16.48800 0.17580 1.06586 445475.87462 21.81780 20.26177 21.85780 21.85783 16.81933 16.81933 17.55715 17.54592 17.55715 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 26763.21875 15255.03477 11508.18398 -1176.89462 0.21793 0.16831 2.62369 2.62369 100491.81758 78700.51147 38702.33327 28429.49264 34845.60552 17088.87532 740.07639 740.07639 742.78232 5323.31104 22.04538 20.77838 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 20487.51772 21911.79862 1.07755 19.58198 22.80859 22.80859 23.13892 0.16691 2758.69412 17608.35065 17608.35063 8570.41783 47105.44504 12895.36122 403978.69863 403978.69864 32675.01857 571.42809 24.34153 100.00000 5569.87676 20461.01100 12214.00757 0.02176 0.00000 0.85628 14800.19742 22849.51752 46954.41254 46954.41254 250339.28016 47299.46415 15662.30946 1.02700 5328.45692 780.15928 17002.02771 109757.40243 60186.97047 79602.35840 0.05512 18.14208 0.13262 0.88273 117879.39193 24.32100 23.87623 24.32751 24.32792 22.07548 22.07548 22.29678 22.21689 22.29678 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 227489.76263 156967.93668 70521.82595 -3367.53783 0.69070 0.19770 8.92256 8.92256 647921.82339 514983.49187 253252.01068 186030.80406 228015.18457 107394.72666 16193.99119 16193.99118 16850.99522 34647.57210 10633.82905 2943.81158 81164.75428 81164.75428 7246.38802 121.57470 25.03654 100.00000 5101.68946 3827.56949 3418.81853 0.02176 0.00000 1.63522 3449.31315 4327.92897 10554.50013 10554.50013 60339.06050 10715.66525 3564.01723 1.02700 1202.06394 61.19498 3728.77657 27707.88181 25803.45536 10430.37344 0.06400 15.62599 0.11809 1.18232 107970.80694 24.94697 19.15949 24.98144 25.04692 20.34916 20.34916 20.36048 20.38221 20.36048 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 56011.13153 38647.68084 17363.45069 -1615.17434 0.41832 0.20924 6.24796 6.24796 145862.26132 112432.48317 55290.61176 40614.70989 49780.84479 27111.43957 3501.86890 3501.86889 3649.44765 7718.26481 107668.39526 10594.62460 770418.93946 770418.93946 78300.10717 1737.18707 25.51707 100.00000 -24550.88555 22566.52911 55733.57806 0.02176 0.00000 1.00000 12757.25348 44348.25245 108291.98528 108291.98528 511023.37866 107022.29593 15401.28057 1.02700 11122.22805 935.74000 16998.17145 125796.30638 152999.50124 168155.57179 0.08153 12.26542 0.24965 1.04811 -519588.43223 24.97935 19.98570 24.95288 24.99009 20.28667 20.28667 20.38214 20.38017 20.38214 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 466675.12621 331339.34041 135335.78579 12710.09981 0.78201 0.17475 5.86949 5.86949 1437031.61069 1297169.94864 637905.68562 468585.05589 574337.72090 123088.36381 17534.48500 17534.48499 17621.76147 81080.49700 2095903.44990 31134.41923 + 11837.23667 3288.48351 118462.42702 118462.42703 8519.62537 232.76519 24.56401 100.00000 -2694.61201 6527.64161 1991.98375 0.02176 0.00000 0.74787 5412.93748 6170.19920 11925.28021 11925.28021 61968.96706 11731.88975 4807.45949 1.02700 1095.48411 95.49941 4976.87461 23454.46330 16350.45488 12122.01295 0.07542 13.25953 0.16779 1.03345 -57028.04398 24.06421 21.10982 24.04296 24.12327 21.17586 21.17586 21.18635 21.19402 21.18635 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 55798.76786 37385.17461 18413.59325 1865.32145 0.68779 0.19782 8.61939 8.61939 162621.63501 137414.34355 67575.87244 49639.06840 60841.86650 22949.57585 4919.28209 4919.28208 5064.91814 9005.41224 108517.53525 83838.72390 640002.53002 109006.18459 109019.09043 20664.33464 24678.81134 629.43529 24049.37606 6801.76250 27466.09714 225194.13290 5743.59783 219450.53507 -459048.80345 89187.90478 23.51531 24.92259 23.44761 23.44761 22.92553 23.71517 22.92648 81051.43811 2912.16655 17079.54674 17079.54673 7963.03319 17079.54680 27954.74647 116910.60750 24031.08938 1194369.58442 1194369.58446 80521.64236 1086.13263 24.15192 100.00000 3788.42522 54182.35194 26339.29042 0.02176 0.00000 0.16463 31781.23488 61726.12338 116399.43390 116399.43390 672167.02458 117635.07683 29002.27027 1.02700 11981.35016 1174.97350 31001.04633 246295.66820 24076.22005 111985.52442 0.05377 18.59642 0.14651 0.94413 80177.23685 24.03003 24.67101 24.03321 24.03274 23.12200 23.12200 23.30599 23.29488 23.30599 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 610440.90120 421204.22294 189236.67826 -11913.40223 2.51134 0.21592 9.10358 9.10358 1583737.28356 1268112.86580 623616.36365 458088.57815 561472.34464 240993.87380 30324.22134 30324.22132 30489.87272 84332.10449 52184.64821 11704.93447 414956.00051 414956.00052 35408.67908 450.47707 24.46580 100.00000 4795.35119 22226.78791 13181.89117 0.02176 0.00000 0.55484 16488.45224 25160.53246 51994.14226 51994.14226 290588.42455 52455.64221 14538.91558 1.02700 5982.32798 393.12272 15413.70084 123950.48051 25473.48143 117534.75680 0.05348 18.69901 0.13004 0.92571 101487.54484 24.16524 25.08028 24.16772 24.16734 23.31081 23.31081 23.48712 23.48051 23.48712 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 265427.89210 183145.24614 82282.64596 -4474.43558 1.32903 0.20937 8.52113 8.52113 708089.13891 557202.11195 274013.74495 201281.70813 246707.99044 121282.28847 15174.80892 15174.80891 15223.19489 37701.49721 4036.18661 3924.85231 92.78119 1729.52330 1823.45545 105229.29443 23.12049 23.12049 795.93374 1712.12115 27118.84561 5504.12635 608967.22549 608967.22550 19616.91736 303.96601 24.48382 100.00000 3303.75749 12144.96713 7471.95023 0.02176 0.00000 0.56895 8151.83450 31873.30038 26988.19153 26988.19153 162399.66446 27288.16860 7020.36704 1.02700 2747.18656 381.36935 7664.52385 62568.91361 16125.62011 65590.75055 0.05609 17.82920 0.14234 0.99370 69919.85145 24.97067 23.48568 24.98017 24.98054 22.83393 22.83393 23.00867 22.99482 23.00867 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 130526.36407 87452.66445 43073.69962 -3006.17599 1.14539 0.19148 9.67630 9.67630 397319.32001 304161.80426 149576.81102 109874.32772 134671.32631 61222.04044 7454.44148 7454.44147 7533.86977 20370.96935 7366.05011 597.50338 37902.42494 37902.42494 5112.03752 62.09656 22.80684 100.00000 22092.92867 1536.74953 3575.28799 0.02176 0.00000 9.25925 932.47912 2702.14285 7297.54319 7297.54319 30792.65654 7434.71072 692.53743 1.02700 1001.06825 58.85360 827.63044 17849.05588 54086.71673 19285.00126 0.06065 16.48800 0.17580 1.06586 467568.80329 22.40688 20.80884 22.44796 22.44800 17.27345 17.27345 18.03119 18.01966 18.03119 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 28090.51368 16011.59289 12078.92080 -1235.26153 0.22065 0.16831 2.62369 2.62369 102702.63634 80431.92173 39553.78413 29054.94113 35612.20842 17464.83040 756.35806 756.35806 759.12353 5440.42382 22.64061 21.33939 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 20938.24288 22393.85793 1.07755 20.11070 23.42443 23.42443 23.76367 0.16691 2819.38536 17995.73416 17995.73414 8758.96692 48141.76428 13179.05902 424013.61607 424013.61608 33393.86860 583.99950 24.99875 100.00000 5846.10917 20911.15301 12482.71559 0.02176 0.00000 0.85628 15125.80159 23982.71638 47987.40908 47987.40908 262754.60516 48340.05181 16006.88008 1.02700 5445.68291 797.32277 17376.07212 112172.06464 60186.97047 83550.15733 0.05512 18.14208 0.13262 0.88273 123725.50110 24.97766 24.52089 24.98435 24.98478 22.67152 22.67152 22.89879 22.81675 22.89879 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 238771.88878 164752.60376 74019.28502 -3534.54747 0.70115 0.19770 8.92256 8.92256 662176.09549 526313.12203 258823.55176 190123.47947 233031.51581 109757.40963 16550.25881 16550.25880 17221.71692 35409.81826 10867.77317 3008.57541 85190.03865 85190.03866 7405.80848 124.24934 25.71252 100.00000 5354.70249 3911.77598 3494.03250 0.02176 0.00000 1.63522 3525.19799 4542.56826 10786.69902 10786.69902 63331.51555 10951.40976 3642.42557 1.02700 1228.50933 62.54127 3810.80961 28317.45568 25803.45536 10947.65733 0.06400 15.62599 0.11809 1.18232 113325.50943 25.62054 19.67679 25.65594 25.72318 20.89859 20.89859 20.91021 20.93253 20.91021 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 58788.94729 40564.37372 18224.57357 -1695.27732 0.42465 0.20924 6.24796 6.24796 149071.22965 114905.99642 56507.00456 41508.23303 50876.02278 27707.89131 3578.90997 3578.90997 3729.73546 7888.06653 110037.09872 10827.70622 808627.09239 808627.09240 80022.70863 1775.40517 26.20603 100.00000 -25768.46173 23062.99249 56959.71613 0.02176 0.00000 1.00000 13037.91290 46547.65946 110674.40771 110674.40771 536367.06952 109376.78523 15740.10856 1.02700 11366.91694 956.32627 17372.13102 128563.82369 152999.50124 176495.07831 0.08153 12.26542 0.24965 1.04811 -545356.89395 25.65379 20.52531 25.62660 25.66483 20.83441 20.83441 20.93246 20.93044 20.93246 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 489819.41007 347771.78202 142047.62805 13340.44448 0.79419 0.17475 5.86949 5.86949 1468646.28821 1325707.67108 651939.60289 478893.92147 586973.14376 125796.30637 17920.24347 17920.24346 18009.44002 82864.26700 2199847.67430 31819.37610 + 12097.65575 3360.83011 124337.45200 124337.45201 8707.05703 237.88603 25.22724 100.00000 -2828.24859 6671.24965 2035.80737 0.02176 0.00000 0.74787 5532.02204 6476.20403 12187.63624 12187.63624 65042.25570 11989.99119 4913.22355 1.02700 1119.58475 97.60039 5086.36579 23970.46148 16350.45488 12723.19199 0.07542 13.25953 0.16779 1.03345 -59856.29257 24.71394 21.67979 24.69212 24.77460 21.74761 21.74761 21.75839 21.76626 21.75839 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 58566.05168 39239.25478 19326.79690 1957.83019 0.69789 0.19782 8.61939 8.61939 166199.30906 140437.45738 69062.54081 50731.12730 62180.38682 23454.46636 5027.50624 5027.50623 5176.34628 9203.53120 110904.91978 85683.17487 671742.81209 111404.31940 111417.50917 21118.94976 25221.74491 643.28285 24578.46205 6951.40120 28070.35096 230148.40585 5869.95688 224278.44897 -481814.86734 91150.03721 24.15022 25.59550 24.08070 24.08070 23.54452 24.35548 23.54549 82834.56882 2976.23418 17455.29657 17455.29656 8138.21983 17455.29663 28569.75057 119482.63953 24559.77307 1253603.14333 1253603.14337 82293.11757 1110.02753 24.80402 100.00000 3976.30826 55374.36306 26918.75451 0.02176 0.00000 0.16463 32480.42168 64787.36842 118960.22010 118960.22011 705502.47270 120223.04714 29640.31988 1.02700 12244.93972 1200.82290 31683.06899 251714.17596 24076.22005 117539.33394 0.05377 18.59642 0.14651 0.94413 84153.54511 24.67884 25.33712 24.68211 24.68163 23.74629 23.74629 23.93525 23.92384 23.93525 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 640715.10428 442093.42316 198621.68112 -12504.23555 2.54934 0.21592 9.10358 9.10358 1618579.48609 1296011.33271 637335.91595 468166.52130 573824.72933 246295.73862 30991.35385 30991.35383 31160.64957 86187.40964 53332.70986 11962.44289 435535.32618 435535.32619 36187.66961 460.38756 25.12638 100.00000 5033.17174 22715.77698 13471.89263 0.02176 0.00000 0.55484 16851.19800 26408.34377 53138.01279 53138.01279 304999.86542 53609.66572 14858.77155 1.02700 6113.93912 401.77142 15752.80208 126677.39113 25473.48143 123363.77489 0.05348 18.69901 0.13004 0.92571 106520.71658 24.81770 25.75745 24.82025 24.81986 23.94021 23.94021 24.12127 24.11449 24.12127 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 278591.52165 192228.15058 86363.37107 -4696.34072 1.34914 0.20937 8.52113 8.52113 723667.09154 569460.55124 280042.04393 205709.90325 252135.56317 123950.49799 15508.65454 15508.65453 15558.10500 38530.92967 4124.98267 4011.19901 94.82238 1767.57279 1863.57145 110448.03548 23.74474 23.74474 813.44427 1749.78779 27715.45990 5625.21706 639168.34283 639168.34284 20048.48932 310.65326 25.14489 100.00000 3467.60396 12412.15627 7636.33305 0.02176 0.00000 0.56895 8331.17476 33454.02467 27581.93143 27581.93143 170453.71262 27888.50799 7174.81503 1.02700 2807.62463 389.75947 7833.14329 63945.42995 16125.62011 68843.65789 0.05609 17.82920 0.14234 0.99370 73387.45541 25.64488 24.11979 25.65464 25.65501 23.45045 23.45045 23.62990 23.61568 23.62990 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 136999.68795 91789.79149 45209.89646 -3155.26428 1.16221 0.19148 9.67630 9.67630 406060.34045 310853.36005 152867.49900 112291.56158 137634.09382 62568.92506 7618.43911 7618.43910 7699.61482 20819.13042 7528.10312 610.64845 39782.15760 39782.15760 5224.50229 63.46268 23.42263 100.00000 23188.60532 1570.55801 3653.94428 0.02176 0.00000 9.25925 952.99365 2836.15291 7458.08906 7458.08906 32319.78739 7598.27427 707.77325 1.02700 1023.09174 60.14838 845.83830 18241.73495 54086.71673 20241.42150 0.06065 16.48800 0.17580 1.06586 490757.40861 23.01187 21.37068 23.05406 23.05409 17.73984 17.73984 18.51804 18.50619 18.51804 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 29483.63448 16805.67175 12677.96273 -1296.52308 0.22340 0.16831 2.62369 2.62369 104962.09308 82201.42299 40423.96690 29694.14948 36395.67657 17849.05648 772.99793 772.99793 775.82424 5560.11308 23.25190 21.91556 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 21398.88398 22886.52255 1.07755 20.65369 24.05688 24.05688 24.40529 0.16691 2881.41181 18391.64010 18391.64008 8951.66409 49200.88254 13468.99816 445042.14511 445042.14512 34128.53333 596.84748 25.67372 100.00000 6136.04104 21371.19813 12757.33520 0.02176 0.00000 0.85628 15458.56905 25172.11509 49043.13152 49043.13152 275785.65574 49403.53239 16359.03126 1.02700 5565.48787 814.86386 17758.34551 114639.84936 60186.97047 87693.74338 0.05512 18.14208 0.13262 0.88273 129861.54214 25.65206 25.18295 25.65893 25.65937 23.28365 23.28365 23.51706 23.43280 23.51706 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 250613.54065 172923.34359 77690.19705 -3709.83977 0.71176 0.19770 8.92256 8.92256 676743.96136 537892.00389 264517.66667 194306.19369 238158.20626 112172.07158 16914.36432 16914.36430 17600.59449 36188.83384 11106.86405 3074.76403 89414.95296 89414.95296 7568.73618 126.98283 26.40676 100.00000 5620.26343 3997.83501 3570.90117 0.02176 0.00000 1.63522 3602.75231 4767.85236 11024.00627 11024.00627 66472.37839 11192.34064 3722.55889 1.02700 1255.53652 63.91718 3894.64738 28940.44016 25803.45536 11490.59539 0.06400 15.62599 0.11809 1.18232 118945.77286 26.31229 20.20807 26.34865 26.41771 21.46285 21.46285 21.47479 21.49771 21.47479 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 61704.52603 42576.12306 19128.40297 -1779.35293 0.43107 0.20924 6.24796 6.24796 152350.79523 117433.92692 57750.15798 42421.41367 51995.29468 28317.46497 3657.64595 3657.64594 3811.78959 8061.60389 112457.91362 11065.91563 848730.14027 848730.14028 81783.20729 1814.46406 26.91360 100.00000 -27046.42234 23570.37806 58212.82923 0.02176 0.00000 1.00000 13324.74684 48856.14384 113109.24341 113109.24341 562967.65527 111783.07326 16086.39077 1.02700 11616.98898 977.36543 17754.31770 131392.22634 152999.50124 185248.17427 0.08153 12.26542 0.24965 1.04811 -572403.31629 26.34644 21.07949 26.31852 26.35778 21.39694 21.39694 21.49764 21.49556 21.49764 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 514111.51142 365019.17405 149092.33737 14002.05047 0.80656 0.17475 5.86949 5.86949 1500956.48822 1354873.22300 666282.26614 489429.58195 599886.54575 128563.82363 18314.48863 18314.48861 18405.64749 84687.27991 2308946.90800 32519.40200 + 12363.80403 3434.76833 130503.84294 130503.84295 8898.61218 243.11952 25.90838 100.00000 -2968.51274 6818.01707 2080.59511 0.02176 0.00000 0.74787 5653.72646 6797.38485 12455.76409 12455.76409 68267.96100 12253.77085 5021.31441 1.02700 1144.21560 99.74760 5198.26578 24497.81161 16350.45488 13354.18591 0.07542 13.25953 0.16779 1.03345 -62824.80531 25.38122 22.26514 25.35881 25.44351 22.33480 22.33480 22.34586 22.35395 22.34586 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 61470.57615 41185.28619 20285.28996 2054.92681 0.70814 0.19782 8.61939 8.61939 169855.69188 143527.07967 70581.91586 51847.21149 63548.35457 23970.46445 5138.11132 5138.11131 5290.22584 9406.00877 113344.82674 87568.20373 705057.22154 113855.21315 113868.69309 21583.56641 25776.62300 657.43507 25119.18793 7104.33195 28687.89836 235211.67233 5999.09583 229212.57650 -505709.99128 93155.33657 24.80228 26.28658 24.73087 24.73087 24.18022 25.01308 24.18122 84656.92838 3041.71130 17839.31290 17839.31288 8317.26057 17839.31296 29198.28475 122111.25623 25100.08780 1315774.33105 1315774.33110 84103.56522 1134.44813 25.47373 100.00000 4173.50917 56592.59841 27510.96682 0.02176 0.00000 0.16463 33194.99058 68000.43284 121577.34357 121577.34358 740491.15889 122867.95277 30292.40658 1.02700 12514.32825 1227.24100 32380.09615 257251.89066 24076.22005 123368.57906 0.05377 18.59642 0.14651 0.94413 88327.05427 25.34517 26.02122 25.34853 25.34803 24.38744 24.38744 24.58150 24.56979 24.58150 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 672490.72605 464018.60229 208472.12377 -13124.37065 2.58790 0.21592 9.10358 9.10358 1654188.21651 1324523.56550 651357.29821 478466.17906 586448.86631 251714.24433 31673.16328 31673.16325 31846.18349 88083.53149 54506.02886 12225.61650 457135.26282 457135.26284 36983.79793 470.51608 25.80479 100.00000 5282.78676 23215.52381 13768.27412 0.02176 0.00000 0.55484 17221.92416 27718.03903 54307.04846 54307.04846 320126.02722 54789.07774 15185.66435 1.02700 6248.44571 410.61038 16099.36354 129464.29370 25473.48143 129481.87728 0.05348 18.69901 0.13004 0.92571 111803.50334 25.48778 26.45290 25.49040 25.49000 24.58659 24.58659 24.77255 24.76558 24.77255 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 292407.98819 201761.51254 90646.47565 -4929.25102 1.36955 0.20937 8.52113 8.52113 739587.75889 581988.67601 286202.96540 210235.51859 257682.54243 126677.40807 15849.84476 15849.84475 15900.38313 39378.60963 4215.73224 4099.44534 96.90847 1806.45937 1904.57000 115925.59476 24.38585 24.38585 831.34003 1788.28310 28325.19970 5748.97177 670867.25422 670867.25423 20489.55585 317.48763 25.82380 100.00000 3639.57623 12685.22356 7804.33229 0.02176 0.00000 0.56895 8514.46051 35113.14340 28188.73360 28188.73361 178907.19322 28502.05484 7332.66088 1.02700 2869.39234 398.33417 8005.47235 65352.22961 16125.62011 72257.88989 0.05609 17.82920 0.14234 0.99370 77027.03164 26.33729 24.77102 26.34731 26.34770 24.08361 24.08361 24.26791 24.25330 24.26791 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 143794.04982 96342.01399 47452.03583 -3311.74646 1.17928 0.19148 9.67630 9.67630 414993.66321 317692.12998 156230.58206 114761.97455 140662.04217 63945.44111 7786.04468 7786.04467 7869.00625 21277.15102 7693.72131 624.08271 41755.11372 41755.11372 5339.44128 64.85886 24.05504 100.00000 24338.62096 1605.11026 3734.33102 0.02176 0.00000 9.25925 973.95950 2976.80907 7622.16693 7622.16693 33922.65476 7765.43621 723.34425 1.02700 1045.59974 61.47165 864.44674 18643.05296 54086.71673 21245.27445 0.06065 16.48800 0.17580 1.06586 515096.02957 23.63319 21.94769 23.67652 23.67655 18.21881 18.21881 19.01802 19.00586 19.01802 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 30945.84570 17639.13215 13306.71355 -1360.82284 0.22619 0.16831 2.62369 2.62369 107271.25784 84009.85326 41313.29367 30347.42041 37196.38101 18241.73553 790.00387 790.00387 792.89236 5682.43550 23.87971 22.50728 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 21869.65918 23390.02578 1.07755 21.21133 24.70642 24.70642 25.06424 0.16691 2944.80283 18796.25597 18796.25595 9148.60060 50283.30139 13765.31597 467113.56291 467113.56292 34879.36067 609.97812 26.36691 100.00000 6440.35180 21841.36424 13037.99643 0.02176 0.00000 0.85628 15798.65740 26420.50084 50122.07985 50122.07985 289462.96818 50490.40953 16718.92976 1.02700 5687.92853 832.79086 18149.02890 117161.92530 60186.97047 92042.82642 0.05512 18.14208 0.13262 0.88273 136301.89395 26.34467 25.86289 26.35172 26.35217 23.91231 23.91231 24.15202 24.06549 24.15202 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 263042.46734 181499.30306 81543.16428 -3893.82552 0.72253 0.19770 8.92256 8.92256 691632.32006 549725.62097 270337.05202 198580.92756 243397.68384 114639.85605 17286.48013 17286.48012 17987.80737 36984.98774 11351.21494 3142.40880 93849.39763 93849.39764 7735.24829 129.77645 27.11974 100.00000 5898.99459 4085.78733 3649.46096 0.02176 0.00000 1.63522 3682.01282 5004.30920 11266.53428 11266.53428 69769.00917 11438.57201 3804.45515 1.02700 1283.15831 65.32336 3980.32958 29577.13027 25803.45536 12060.45991 0.06400 15.62599 0.11809 1.18232 124844.76745 27.02272 20.75368 27.06006 27.13099 22.04235 22.04235 22.05460 22.07815 22.05460 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 64764.69996 44687.64308 20077.05688 -1867.59820 0.43759 0.20924 6.24796 6.24796 155702.51120 120017.47187 59020.66077 43354.68427 53139.19054 28940.44923 3738.11411 3738.11411 3895.64892 8238.95906 114931.98642 11309.36565 890822.05851 890822.05852 83582.43691 1854.38225 27.64026 100.00000 -28387.76210 24088.92611 59493.51081 0.02176 0.00000 1.00000 13617.89111 51279.11520 115597.64547 115597.64547 590887.47034 114242.29960 16440.29118 1.02700 11872.56260 998.86746 18144.91248 134282.85381 152999.50124 194435.37123 0.08153 12.26542 0.24965 1.04811 -600791.07839 27.05780 21.64864 27.02912 27.06944 21.97466 21.97466 22.07807 22.07594 22.07807 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 539608.35514 383121.93317 156486.42197 14696.46815 0.81911 0.17475 5.86949 5.86949 1533977.51218 1384680.41666 680940.46779 500197.02683 613084.04242 131392.22624 18717.40717 18717.40716 18810.57153 86550.39909 2423456.80851 33234.82848 + 12635.80758 3510.33320 136976.04984 136976.04985 9094.38155 248.46814 26.60790 100.00000 -3115.73316 6968.01336 2126.36818 0.02176 0.00000 0.74787 5778.10837 7134.49432 12729.79076 12729.79076 71653.64192 12523.35367 5131.78327 1.02700 1169.38833 101.94205 5312.62757 25036.76342 16350.45488 14016.47333 0.07542 13.25953 0.16779 1.03345 -65940.53847 26.06651 22.86630 26.04350 26.13049 22.93784 22.93784 22.94920 22.95751 22.94920 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 64519.14760 43227.82907 21291.31853 2156.83884 0.71854 0.19782 8.61939 8.61939 173592.51508 146684.67361 72134.71713 52987.84951 64946.41759 24497.81449 5251.14970 5251.14970 5406.61075 9612.94085 115838.41162 89494.70321 740023.82563 116360.02653 116373.80303 22058.40462 26343.70841 671.89863 25671.80978 7260.62717 29319.03179 240386.33023 6131.07584 234255.25439 -530790.16987 95204.75253 25.47194 26.99632 25.39861 25.39861 24.83308 25.68843 24.83412 86519.37983 3108.62892 18231.77757 18231.77756 8500.24021 18231.77764 29840.64668 124797.70246 25652.28944 1381028.83634 1381028.83639 85953.84270 1159.40597 26.16152 100.00000 4380.49005 57837.63492 28116.20778 0.02176 0.00000 0.16463 33925.27998 71372.84596 124252.04373 124252.04373 777215.07383 125571.04629 30958.83918 1.02700 12789.64332 1254.24028 33092.45789 262911.43486 24076.22005 129486.91973 0.05377 18.59642 0.14651 0.94413 92707.54432 26.02949 26.72380 26.03294 26.03243 25.04590 25.04590 25.24520 25.23317 25.24520 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 705842.22788 487031.13866 218811.08922 -13775.26074 2.62706 0.21592 9.10358 9.10358 1690580.33843 1353663.06702 665687.15068 488992.42915 599350.73412 257251.95703 32369.97250 32369.97247 32546.79916 90021.36801 55705.16087 12494.57992 479806.42661 479806.42663 37797.44106 480.86743 26.50152 100.00000 5544.78118 23726.26506 14071.17599 0.02176 0.00000 0.55484 17600.80629 29092.68731 55501.80289 55501.80289 336002.35582 55994.43682 15519.74879 1.02700 6385.91143 419.64381 16453.54935 132312.50806 25473.48143 135903.40081 0.05348 18.69901 0.13004 0.92571 117348.28452 26.17595 27.16713 26.17864 26.17823 25.25043 25.25043 25.44140 25.43425 25.44140 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 306909.66850 211767.67202 95141.99648 -5173.71227 1.39027 0.20937 8.52113 8.52113 755858.68068 594792.41936 292499.42705 214860.69741 263351.55515 129464.31011 16198.54116 16198.54115 16250.19138 40244.93855 4308.47830 4189.63309 99.04046 1846.20145 1946.47052 121674.80808 25.04427 25.04427 849.62950 1827.62531 28948.35377 5875.44908 704138.24125 704138.24127 20940.32585 324.47235 26.52104 100.00000 3820.07728 12964.29833 7976.02752 0.02176 0.00000 0.56895 8701.77854 36854.54444 28808.88542 28808.88542 187779.91570 29129.09972 7493.97934 1.02700 2932.51893 407.09752 8181.59265 66789.97882 16125.62011 75841.44730 0.05609 17.82920 0.14234 0.99370 80847.10892 27.04840 25.43984 27.05869 27.05909 24.73387 24.73387 24.92314 24.90814 24.92314 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 150925.37125 101119.99940 49805.37185 -3475.98922 1.19660 0.19148 9.67630 9.67630 424123.51894 324681.35275 159667.65291 117286.73657 143756.60534 65352.24048 7957.33757 7957.33756 8042.12430 21745.24808 7862.98309 637.81252 43825.91661 43825.91661 5456.90893 66.28575 24.70452 100.00000 25545.67048 1640.42267 3816.48626 0.02176 0.00000 9.25925 995.38659 3124.44092 7789.85451 7789.85451 35605.01473 7936.27572 739.25782 1.02700 1068.60292 62.82402 883.46456 19053.19996 54086.71673 22298.91248 0.06065 16.48800 0.17580 1.06586 540641.70005 24.27129 22.54028 24.31578 24.31582 18.71072 18.71072 19.53151 19.51901 19.53151 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 32480.57381 18513.92718 13966.64663 -1428.31148 0.22901 0.16831 2.62369 2.62369 109631.22419 85858.06896 42222.18562 31015.06329 38014.70093 18643.05351 807.38395 807.38395 810.33598 5807.44901 24.52446 23.11497 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 22350.79143 23904.60607 1.07755 21.78404 25.37349 25.37349 25.74097 0.16691 3009.58846 19209.77338 19209.77337 9349.86971 51389.53343 14068.15276 490279.59049 490279.59051 35646.70620 623.39763 27.07881 100.00000 6759.75455 22321.87400 13324.83220 0.02176 0.00000 0.85628 16146.22768 27730.79902 51224.76503 51224.76503 303818.59318 51601.19795 17086.74602 1.02700 5813.06289 851.11225 18548.30733 119739.48686 60186.97047 96607.59786 0.05512 18.14208 0.13262 0.88273 143061.64850 27.05597 26.56119 27.06321 27.06368 24.55794 24.55794 24.80413 24.71525 24.80413 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 276087.79416 190500.57862 85587.21555 -4086.93585 0.73346 0.19770 8.92256 8.92256 706848.22243 561819.57746 276284.46376 202949.70552 248752.42984 117161.93174 17666.78250 17666.78248 18383.53892 37798.65703 11600.94154 3211.54176 98503.76413 98503.76414 7905.42367 132.63153 27.85198 100.00000 6191.54911 4175.67460 3729.74906 0.02176 0.00000 1.63522 3763.01706 5252.49288 11514.39790 11514.39790 73229.13303 11690.22046 3888.15312 1.02700 1311.38778 66.76047 4067.89678 30227.82754 25803.45536 12658.58630 0.06400 15.62599 0.11809 1.18232 131036.31656 27.75234 21.31403 27.79069 27.86352 22.63749 22.63749 22.65008 22.67426 22.65008 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 67976.64015 46903.88181 21072.75833 -1960.21990 0.44421 0.20924 6.24796 6.24796 159127.96487 122657.85477 60319.11460 44308.48681 54308.25210 29577.13913 3820.35258 3820.35258 3981.35315 8420.21605 117460.48880 11558.17156 935001.48314 935001.48315 85421.24956 1895.17864 28.38655 100.00000 -29795.62422 24618.88220 60802.36736 0.02176 0.00000 1.00000 13917.48456 53822.25138 118140.79234 118140.79234 620191.94058 116755.62889 16801.97739 1.02700 12133.75883 1020.84253 18544.10035 137237.07505 152999.50124 204078.19799 0.08153 12.26542 0.24965 1.04811 -630586.70261 27.78836 22.23315 27.75891 27.80031 22.56797 22.56797 22.67418 22.67199 22.67418 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 566369.68921 402122.48044 164247.20877 15425.32479 0.83187 0.17475 5.86949 5.86949 1567724.99823 1415143.36817 695921.14967 511201.35535 626571.88383 134282.85367 19129.18991 19129.18990 19224.40389 88454.50687 2543645.71241 33965.99432 + 12913.79520 3587.56049 143769.23934 143769.23934 9294.45784 253.93444 27.32632 100.00000 -3270.25482 7121.30958 2173.14826 0.02176 0.00000 0.74787 5905.22669 7488.32240 13009.84601 13009.84601 75207.23228 12798.86730 5244.68244 1.02700 1195.11486 104.18477 5429.50531 25587.57217 16350.45488 14711.60623 0.07542 13.25953 0.16779 1.03345 -69210.79329 26.77031 23.48369 26.74667 26.83601 23.55716 23.55716 23.56883 23.57736 23.56883 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 67718.90988 45371.66982 22347.24007 2263.80510 0.72910 0.19782 8.61939 8.61939 177411.54834 149911.73457 73721.68002 54153.58155 66375.23798 25036.76623 5366.67494 5366.67493 5525.55612 9824.42543 118386.85535 91463.58565 776724.56330 118919.94578 118934.02537 22543.68927 26923.26969 686.68040 26236.58930 7420.36088 29964.05015 245674.83020 6265.95941 239408.87079 -557114.17470 97299.25565 26.15969 27.72522 26.08437 26.08437 25.50358 26.38202 25.50464 88422.80520 3177.01872 18632.87647 18632.87645 8687.24540 18632.87654 30497.14056 127543.25049 26216.63951 1449519.57322 1449519.57329 87844.82626 1184.91289 26.86788 100.00000 4597.73593 59110.06222 28734.76405 0.02176 0.00000 0.16463 34671.63575 74912.51052 126985.58726 126985.58726 815760.27445 128333.60784 31639.93329 1.02700 13071.01531 1281.83356 33820.49159 268695.48880 24076.22005 135908.69336 0.05377 18.59642 0.14651 0.94413 97305.28025 26.73229 27.44534 26.73583 26.73530 25.72214 25.72214 25.92682 25.91447 25.92682 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 740847.76393 511184.95866 229662.80528 -14458.43107 2.66680 0.21592 9.10358 9.10358 1727773.08644 1383443.63716 680332.25970 499750.25659 612536.44285 262911.49926 33082.11151 33082.11149 33262.82836 92001.83691 56930.67376 12769.46053 503601.94397 503601.94399 38628.98432 491.44651 27.21706 100.00000 5819.76895 24248.24262 14380.74171 0.02176 0.00000 0.55484 17988.02383 30535.50989 56722.84192 56722.84191 352666.05498 57226.31377 15861.18308 1.02700 6526.40141 428.87597 16815.52725 135223.38305 25473.48143 142643.39334 0.05348 18.69901 0.13004 0.92571 123168.05346 26.88270 27.90064 26.88546 26.88504 25.93219 25.93219 26.12832 26.12097 26.12832 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 322130.54509 222270.07693 99860.46816 -5430.29733 1.41130 0.20937 8.52113 8.52113 772487.56251 607877.84487 298934.41077 219587.63010 269145.28608 132312.52395 16554.90888 16554.90886 16607.69540 41130.32669 4403.26477 4281.80497 101.21934 1886.81786 1989.29284 127709.14785 25.72046 25.72046 868.32134 1867.83305 29585.21722 6004.70890 739059.26945 739059.26947 21401.01278 331.61074 27.23711 100.00000 4009.53010 13249.51274 8151.50003 0.02176 0.00000 0.56895 8893.21757 38682.30853 29442.68056 29442.68057 197092.67194 29769.93957 7658.84680 1.02700 2997.03431 416.05366 8361.58759 68259.35848 16125.62011 79602.72764 0.05609 17.82920 0.14234 0.99370 84856.63903 27.77871 26.12672 27.78927 27.78968 25.40168 25.40168 25.59607 25.58066 25.59607 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 158410.36341 106134.94420 52275.41920 -3648.37743 1.21417 0.19148 9.67630 9.67630 433454.23135 331824.33833 163180.33927 119867.04332 146919.24886 66789.98942 8132.39890 8132.39890 8219.05094 22223.64326 8035.96862 651.84439 45999.41889 45999.41889 5576.96086 67.74404 25.37155 100.00000 26812.58241 1676.51195 3900.44891 0.02176 0.00000 9.25925 1017.28509 3279.39443 7961.23122 7961.23122 37370.80965 8110.87370 755.52148 1.02700 1092.11217 64.20615 902.90077 19472.37019 54086.71673 23404.80463 0.06065 16.48800 0.17580 1.06586 567454.28246 24.92661 23.14886 24.97231 24.97235 19.21591 19.21591 20.05886 20.04603 20.05886 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 34091.41523 19432.10680 14659.30843 -1499.14715 0.23187 0.16831 2.62369 2.62369 112043.10978 87746.94539 43151.07318 31697.39430 38851.02388 19053.20048 825.14639 825.14639 828.16337 5935.21282 25.18662 23.73908 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 22842.50858 24430.50713 1.07755 22.37221 26.05858 26.05858 26.43598 0.16691 3075.79937 19632.38818 19632.38816 9555.56674 52520.10257 14377.65195 514594.51393 514594.51394 36430.93333 637.11237 27.80994 100.00000 7094.99776 22812.95497 13617.97836 0.02176 0.00000 0.85628 16501.44450 29106.08013 52351.70927 52351.70927 318886.17099 52736.42371 17462.65423 1.02700 5940.95020 869.83671 18956.36987 122373.75472 60186.97047 101398.75455 0.05512 18.14208 0.13262 0.88273 150156.64625 27.78648 27.27834 27.79392 27.79440 25.22101 25.22101 25.47384 25.38257 25.47384 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 289780.09087 199948.26340 89831.82747 -4289.62329 0.74456 0.19770 8.92256 8.92256 722398.87442 574179.60081 282362.71848 207414.59653 254224.98018 119739.49306 18055.45151 18055.45149 18787.97656 38630.22703 11856.16212 3282.19564 103388.95926 103388.95926 8079.34290 135.54942 28.60398 100.00000 6498.61256 4267.53940 3811.80350 0.02176 0.00000 1.63522 3845.80339 5512.98498 11767.71453 11767.71453 76860.85826 11947.40517 3973.69244 1.02700 1340.23830 68.22920 4157.39047 30892.84012 25803.45536 13286.37616 0.06400 15.62599 0.11809 1.18232 137534.92912 28.50165 21.88951 28.54104 28.61584 23.24870 23.24870 23.26163 23.28647 23.26163 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 71347.87327 49230.03268 22117.84060 -2057.43509 0.45093 0.20924 6.24796 6.24796 162628.77846 125356.32605 61646.13439 45283.27300 55503.03300 30227.83620 3904.40029 3904.40029 4068.94287 8605.46069 120044.61820 11812.45121 981371.94193 981371.94194 87300.51607 1936.87255 29.15299 100.00000 -31273.30782 25160.49732 62140.01874 0.02176 0.00000 1.00000 14223.66906 56491.51184 120739.88841 120739.88841 650949.73659 119324.25139 17171.62070 1.02700 12400.70139 1043.30106 18952.07034 140256.28912 152999.50124 214199.25104 0.08153 12.26542 0.24965 1.04811 -661860.01043 28.53865 22.83345 28.50840 28.55092 23.17731 23.17731 23.28639 23.28413 23.28639 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 594458.22474 422065.34076 172392.88399 16190.32833 0.84482 0.17475 5.86949 5.86949 1602214.92852 1446276.50418 711231.40635 522447.77894 640356.45756 137237.07486 19550.03188 19550.03186 19647.34056 90400.50500 2669795.26416 34713.24581 + 13197.89854 3666.48678 150899.33023 150899.33024 9498.93580 259.52099 28.06413 100.00000 -3432.43983 7277.97830 2220.95750 0.02176 0.00000 0.74787 6035.14161 7859.69822 13296.06247 13296.06247 78937.05939 13080.44224 5360.06539 1.02700 1221.40737 106.47684 5548.95437 26150.49869 16350.45488 15441.21355 0.07542 13.25953 0.16779 1.03345 -72643.23312 27.49311 24.11775 27.46883 27.56058 24.19320 24.19320 24.20519 24.21395 24.20519 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 71077.36117 47621.83219 23455.52897 2376.07624 0.73981 0.19782 8.61939 8.61939 181314.60027 153209.79083 75343.55607 55344.95969 67835.49239 25587.57489 5484.74172 5484.74172 5647.11829 10040.56267 120991.36480 93475.78349 815245.43716 121536.18322 121550.57256 23039.65017 27515.58131 701.78736 26813.79396 7583.60873 30623.25890 251079.67680 6403.81042 244675.86638 -584743.69208 99439.83784 26.86600 28.47380 26.78865 26.78865 26.19217 27.09434 26.19326 90368.10590 3246.91309 19042.79954 19042.79952 8878.36470 19042.79961 31168.07730 130349.20053 26793.40527 1521407.03937 1521407.03944 89777.41144 1210.98096 27.59331 100.00000 4825.75589 60410.48290 29366.92854 0.02176 0.00000 0.16463 35434.41134 78627.72118 129779.26871 129779.26872 856217.08558 131156.94571 32336.01146 1.02700 13358.57749 1310.03388 34564.54202 274606.79170 24076.22005 142648.94840 0.05377 18.59642 0.14651 0.94413 102131.03614 27.45406 28.18637 27.45769 27.45716 26.41664 26.41664 26.62684 26.61416 26.62684 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 777589.36440 536536.66311 241052.70129 -15175.48256 2.70715 0.21592 9.10358 9.10358 1765784.07432 1413879.37944 695299.56092 510744.75609 626012.23698 268695.55129 33809.91758 33809.91755 33994.61019 94025.87611 58183.14793 13050.38851 528577.57610 528577.57612 39478.82153 502.25833 27.95192 100.00000 6108.39445 24781.70367 14697.11786 0.02176 0.00000 0.55484 18383.76014 32049.88781 57970.74378 57970.74378 370156.17357 58485.29201 16210.12893 1.02700 6669.98216 438.31123 17185.46865 138198.29722 25473.48143 149717.64902 0.05348 18.69901 0.13004 0.92571 129276.44792 27.60853 28.65396 27.61137 27.61094 26.63236 26.63236 26.83379 26.82624 26.83379 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 338106.28576 233293.33806 104812.94770 -5699.60747 1.43265 0.20937 8.52113 8.52113 789482.27948 621251.14956 305510.96404 224418.55524 275066.47900 135223.39843 16919.11668 16919.11667 16973.06451 42035.19336 4500.13654 4376.00463 103.44617 1928.32783 2033.05726 134042.75464 26.41492 26.41492 887.42440 1908.92535 30236.09165 6136.81242 775712.17093 775712.17096 21871.83481 338.90617 27.97251 100.00000 4208.37863 13541.00187 8330.83294 0.02176 0.00000 0.56895 9088.86825 40600.71873 30090.41920 30090.41920 206867.28497 30424.87789 7827.34134 1.02700 3062.96903 425.20683 8545.54242 69761.06445 16125.62011 83550.54489 0.05609 17.82920 0.14234 0.99370 89065.01766 28.52873 26.83214 28.53959 28.54001 26.08753 26.08753 26.28716 26.27134 26.28716 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 166266.56623 111398.60016 54867.96607 -3829.31506 1.23201 0.19148 9.67630 9.67630 442990.21930 339124.46949 166770.30468 122504.11679 150151.47050 68259.36880 8311.31159 8311.31158 8399.86997 22712.56313 8212.75984 666.18495 48280.71384 48280.71384 5699.65394 69.23441 26.05658 100.00000 28142.32557 1713.39519 3986.25874 0.02176 0.00000 9.25925 1039.66535 3442.03270 8136.37822 8136.37822 39224.17740 8289.31282 772.14294 1.02700 1116.13863 65.61868 922.76457 19900.76215 54086.71673 24565.54238 0.06065 16.48800 0.17580 1.06586 595596.60803 25.59963 23.77388 25.64656 25.64660 19.73474 19.73474 20.60045 20.58727 20.60045 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 35782.14471 20395.82261 15386.32209 -1573.49585 0.23477 0.16831 2.62369 2.62369 114508.05681 89677.37708 44100.39626 32394.73659 39705.74593 19472.37068 843.29960 843.29960 846.38295 6065.78743 25.86666 24.38003 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 23345.04350 24967.97800 1.07755 22.97626 26.76216 26.76216 27.14975 0.16691 3143.46692 20064.30049 20064.30047 9765.78909 53675.54422 14693.96013 540115.31156 540115.31157 37232.41344 651.12884 28.56081 100.00000 7446.86702 23314.83971 13917.57373 0.02176 0.00000 0.85628 16864.47609 30549.56692 53503.44626 53503.44626 334701.01019 53896.62441 17846.83242 1.02700 6071.65103 888.97311 19373.40979 125065.97643 60186.97047 106427.52384 0.05512 18.14208 0.13262 0.88273 157603.51327 28.53672 28.01486 28.54436 28.54485 25.90197 25.90197 26.16163 26.06790 26.16163 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 304151.44328 209864.49662 94286.94665 -4502.36280 0.75582 0.19770 8.92256 8.92256 738291.64053 586811.54448 288574.69471 211977.71507 259817.92654 122373.76068 18452.67123 18452.67122 19201.31183 39480.09156 12116.99756 3354.40391 108516.43071 108516.43072 8257.08835 138.53151 29.37629 100.00000 6820.90449 4361.42522 3895.66314 0.02176 0.00000 1.63522 3930.41102 5786.39593 12026.60411 12026.60411 80672.69525 12210.24794 4061.11363 1.02700 1369.72352 69.73024 4248.85301 31572.48296 25803.45536 13945.30062 0.06400 15.62599 0.11809 1.18232 144355.83361 29.27120 22.48053 29.31164 29.38847 23.87642 23.87642 23.88970 23.91520 23.88970 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 74886.29932 51671.54666 23214.75266 -2159.47158 0.45775 0.20924 6.24796 6.24796 166206.60989 128114.16367 63002.34861 46279.50447 56724.09906 30892.84858 3990.29705 3990.29705 4158.45957 8794.78071 122685.59841 12072.32500 1030042.09703 1030042.09704 89221.12641 1979.48372 29.94012 100.00000 -32824.27562 25714.02797 63507.09844 0.02176 0.00000 1.00000 14536.58961 59293.15160 123396.16457 123396.16457 683232.93458 121949.38357 17549.39615 1.02700 12673.51667 1066.25367 19369.01567 143341.92587 152999.50124 224822.24754 0.08153 12.26542 0.24965 1.04811 -694684.28606 29.30919 23.44995 29.27813 29.32180 23.80309 23.80309 23.91512 23.91280 23.91512 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 623939.78298 442997.24720 180942.53578 16993.27147 0.85798 0.17475 5.86949 5.86949 1637463.63680 1478094.56875 726878.48847 533941.62371 654444.29173 140256.28889 19980.13235 19980.13234 20079.58182 92389.31507 2802201.07610 35476.93681 + 13488.25216 3747.14944 158383.03082 158383.03083 9707.91228 265.23045 28.82186 100.00000 -3602.66825 7438.09374 2269.81854 0.02176 0.00000 0.74787 6167.91466 8249.49205 13588.57569 13588.57569 82851.86352 13368.21181 5477.98677 1.02700 1248.27832 108.81933 5671.03130 26725.80958 16350.45488 16207.00501 0.07542 13.25953 0.16779 1.03345 -76245.90137 28.23542 24.76893 28.21049 28.30472 24.84642 24.84642 24.85873 24.86773 24.85873 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 74602.37147 49983.58911 24618.78236 2493.91535 0.75067 0.19782 8.61939 8.61939 185303.51930 156580.40429 77001.11337 56562.54812 69327.87239 26150.50133 5605.40598 5605.40597 5771.35483 10261.45492 123653.17344 95532.24965 855676.71503 124209.97786 124224.68376 23546.52221 28120.92378 717.22667 27403.69711 7750.44804 31296.97024 256603.42967 6544.69415 250058.73552 -613743.46760 101627.51285 27.59138 29.24259 27.51194 27.51194 26.89936 27.82588 26.90048 92356.20319 3318.34514 19461.74091 19461.74088 9073.68862 19461.74098 31853.77465 133216.88145 27382.85988 1596859.69213 1596859.69222 91752.51347 1237.62253 28.33833 100.00000 5065.08426 61739.51282 30013.00065 0.02176 0.00000 0.16463 36213.96797 82527.18398 132634.41112 132634.41113 898680.31162 134042.39697 33047.40334 1.02700 13652.46603 1338.85461 35324.96154 280648.14304 24076.22005 149723.47961 0.05377 18.59642 0.14651 0.94413 107196.12040 28.19532 28.94740 28.19905 28.19850 27.12989 27.12989 27.34577 27.33274 27.34577 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 816153.12764 563145.65990 253007.46775 -15928.09551 2.74810 0.21592 9.10358 9.10358 1804631.30334 1444984.70763 710596.14256 521981.13442 639784.49839 274606.85233 34553.73537 34553.73534 34742.49121 96094.44414 59463.17651 13337.49691 554791.84960 554791.84963 40347.35515 513.30800 28.70663 100.00000 6411.33404 25326.90086 15020.45429 0.02176 0.00000 0.55484 18788.20265 33639.36978 59246.09947 59246.09947 388513.69702 59771.96775 16566.75157 1.02700 6816.72168 447.95407 17563.54876 141238.65943 25473.48143 157142.74530 0.05348 18.69901 0.13004 0.92571 135687.78196 28.35396 29.42762 28.35688 28.35643 27.35143 27.35143 27.55830 27.55055 27.55830 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 354874.32724 244863.28676 110011.04048 -5982.27378 1.45433 0.20937 8.52113 8.52113 806850.87996 634918.66676 312232.20139 229355.76067 281117.93809 138198.31210 17291.33705 17291.33704 17346.47173 42959.96709 4599.13949 4472.27668 105.72198 1970.75102 2077.78450 140690.47028 27.12812 27.12812 906.94772 1950.92169 30901.28532 6271.82222 814182.83621 814182.83625 22353.01493 346.36210 28.72777 100.00000 4417.08885 13838.90375 8514.11118 0.02176 0.00000 0.56895 9288.82325 42614.27057 30752.40807 30752.40807 217126.66012 31094.22485 7999.54276 1.02700 3130.35431 434.56138 8733.54426 71295.80791 16125.62011 87694.15017 0.05609 17.82920 0.14234 0.99370 93482.10651 29.29901 27.55661 29.31015 29.31059 26.79189 26.79189 26.99691 26.98067 26.99691 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 174512.38955 116923.30185 57589.08770 -4019.22612 1.25010 0.19148 9.67630 9.67630 452735.99884 346585.20344 170439.24928 125199.20583 153454.80096 69761.07449 8494.16034 8494.16034 8584.66701 23212.23924 8393.44046 680.84102 50675.14731 50675.14731 5825.04626 70.75756 26.76011 100.00000 29538.01602 1751.08987 4073.95639 0.02176 0.00000 9.25925 1062.53797 3612.73685 8315.37844 8315.37844 41169.46106 8471.67761 789.13008 1.02700 1140.69367 67.06229 943.06538 20338.57873 54086.71673 25783.84576 0.06065 16.48800 0.17580 1.06586 625134.62404 26.29082 24.41578 26.33902 26.33906 20.26758 20.26758 21.15666 21.14313 21.15666 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 37556.72421 21407.33294 16149.39127 -1651.53180 0.23770 0.16831 2.62369 2.62369 117027.23264 91650.27823 45070.60443 33107.42040 40579.27185 19900.76261 861.85218 861.85218 865.00336 6199.23468 26.56506 25.03829 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 23858.63419 25517.27323 1.07755 23.59662 27.48474 27.48474 27.88279 0.16691 3212.62316 20505.71487 20505.71485 9980.63634 54856.40557 15017.22708 566901.78750 566901.78751 38051.52610 665.45367 29.33195 100.00000 7816.18689 23827.76591 14223.76019 0.02176 0.00000 0.85628 17235.49437 32064.64198 54680.52146 54680.52146 351300.17046 55082.34953 18239.46252 1.02700 6205.22728 908.53051 19799.62458 127817.42696 60186.97047 111705.68988 0.05512 18.14208 0.13262 0.88273 165419.70016 29.30721 28.77126 29.31506 29.31556 26.60133 26.60133 26.86800 26.77173 26.86800 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 319235.52847 220272.51548 98963.01300 -4725.65291 0.76725 0.19770 8.92256 8.92256 754534.04725 599721.39074 294923.33432 216641.22216 265533.91764 125065.98215 18858.62979 18858.62977 19623.74047 40348.65310 12383.57137 3428.20076 113898.19396 113898.19397 8438.74421 141.57920 30.16945 100.00000 7159.18013 4457.37652 3981.36769 0.02176 0.00000 1.63522 4016.88002 6073.36641 12291.18926 12291.18926 84673.57646 12478.87325 4150.45809 1.02700 1399.85742 71.26430 4342.32773 32267.07791 25803.45536 14636.90379 0.06400 15.62599 0.11809 1.18232 151515.01375 30.06152 23.08750 30.10306 30.18196 24.52108 24.52108 24.53472 24.56091 24.53472 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 78600.21005 54234.14507 24366.06498 -2266.56847 0.46468 0.20924 6.24796 6.24796 169863.15356 130932.67368 64388.39952 47297.65302 57972.02856 31572.49123 4078.08354 4078.08354 4249.94563 8988.26577 125384.68016 12337.91601 1081125.99956 1081125.99957 91183.99017 2023.03234 30.74850 100.00000 -34452.16208 26279.73629 64904.25388 0.02176 0.00000 1.00000 14856.39442 62233.73587 126110.87877 126110.87877 717117.18535 124632.26862 17935.48266 1.02700 12952.33389 1089.71124 19795.13379 146495.44658 152999.50124 235972.08088 0.08153 12.26542 0.24965 1.04811 -729136.44814 30.10054 24.08310 30.06864 30.11348 24.44578 24.44578 24.56083 24.55845 24.56083 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 654883.44948 464967.25052 189916.19896 17836.03577 0.87133 0.17475 5.86949 5.86949 1673487.81620 1510612.63030 742869.80617 545688.33290 668842.05805 143341.92558 20419.69504 20419.69502 20521.33240 94421.87893 2941173.42116 36257.42902 + 13784.99355 3829.58669 166237.87802 166237.87803 9921.48624 271.06552 29.60005 100.00000 -3781.33897 7601.73172 2319.75452 0.02176 0.00000 0.74787 6303.60871 8658.61732 13887.52420 13887.52420 86960.81843 13662.31232 5598.50241 1.02700 1275.74043 111.21335 5795.79392 27313.77730 16350.45488 17010.77513 0.07542 13.25953 0.16779 1.03345 -80027.24035 28.99778 25.43769 28.97217 29.06894 25.51727 25.51727 25.52991 25.53916 25.52991 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 78302.20111 52462.47499 25839.72612 2617.59858 0.76170 0.19782 8.61939 8.61939 189380.19449 160025.17119 78695.13691 57806.92349 70853.08473 26725.81215 5728.72484 5728.72484 5898.32457 10487.20681 126373.54183 97633.95805 898113.14148 126942.59595 126957.62538 24064.54542 28739.58378 733.00565 28006.57813 7920.95781 31985.50323 262248.70478 6688.67733 255560.02745 -644181.45783 103863.31671 28.33635 30.03214 28.25477 28.25477 27.62565 28.57718 27.62679 94388.03860 3391.34870 19889.89898 19889.89896 9273.30967 19889.89906 32554.55732 136147.65131 27985.28248 1676054.34338 1676054.34348 93771.06772 1264.85021 29.10347 100.00000 5316.28187 63097.78139 30673.28633 0.02176 0.00000 0.16463 37010.67485 86620.03672 135552.36663 135552.36664 943249.45872 136991.32813 33774.44583 1.02700 13952.82012 1368.30940 36102.11029 286822.40390 24076.22005 157148.86509 0.05377 18.59642 0.14651 0.94413 112512.40226 28.95660 29.72898 28.96043 28.95986 27.86239 27.86239 28.08411 28.07072 28.08411 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 856629.42200 591074.30317 265555.11884 -16718.03354 2.78968 0.21592 9.10358 9.10358 1844333.17080 1476774.35263 726229.24878 533464.71291 653859.74937 280648.20185 35313.91714 35313.91711 35506.82561 98208.52066 60771.36570 13630.92169 582306.19365 582306.19368 41234.99650 524.60077 29.48171 100.00000 6729.29761 25884.09239 15350.90412 0.02176 0.00000 0.55484 19201.54289 35307.68051 60549.51297 60549.51297 407781.64340 61086.95034 16931.21992 1.02700 6966.68948 457.80906 17949.94663 144345.90953 25473.48143 164936.08177 0.05348 18.69901 0.13004 0.92571 142417.07957 29.11952 30.22216 29.12251 29.12206 28.08992 28.08992 28.30237 28.29441 28.30237 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 372473.96289 257007.03544 115466.92745 -6278.95863 1.47633 0.20937 8.52113 8.52113 824601.58940 648886.86915 319101.30587 234401.58455 287302.52918 141238.67382 17671.74627 17671.74625 17728.09391 43905.08583 4700.32051 4570.66671 108.04787 2014.10752 2123.49573 147667.87271 27.86058 27.86058 926.90056 1993.84194 31581.11324 6409.80224 854561.41547 854561.41551 22844.78100 353.98207 29.50342 100.00000 4636.14984 14143.35947 8701.42153 0.02176 0.00000 0.56895 9493.17725 44727.68247 31428.96069 31428.96069 227894.83868 31778.29743 8175.53260 1.02700 3199.22207 444.12173 8925.68213 72864.31569 16125.62011 92043.25339 0.05609 17.82920 0.14234 0.99370 98118.25636 30.09008 28.30064 30.10153 30.10197 27.51527 27.51527 27.72583 27.70914 27.72583 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 183167.15620 122721.99559 60445.16062 -4218.55562 1.26846 0.19148 9.67630 9.67630 462696.18539 354210.07343 174188.91061 127953.58680 156830.80465 71295.81769 8681.03177 8681.03176 8773.52958 23722.90821 8578.09605 695.81951 53188.33030 53188.33030 5953.19721 72.31423 27.48263 100.00000 31002.92434 1789.61383 4163.58338 0.02176 0.00000 9.25925 1085.91380 3791.90690 8498.31667 8498.31667 43211.21911 8658.05442 806.49093 1.02700 1165.78891 68.53766 963.81281 20786.02727 54086.71673 27062.56966 0.06065 16.48800 0.17580 1.06586 656137.54839 27.00067 25.07500 27.05017 27.05021 20.81480 20.81480 21.72789 21.71399 21.72789 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 39419.31221 22469.00811 16950.30410 -1733.43786 0.24066 0.16831 2.62369 2.62369 119601.83031 93666.58319 46062.15717 33835.78324 41472.01533 20338.57917 880.81292 880.81292 884.03343 6335.61777 27.28231 25.71433 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 24383.52386 26078.65294 1.07755 24.23373 28.22683 28.22683 28.63563 0.16691 3283.30083 20956.84036 20956.84033 10200.21023 56063.24585 15347.60590 595016.71179 595016.71181 38888.65924 680.09364 30.12392 100.00000 8203.82282 24351.97648 14536.68275 0.02176 0.00000 0.85628 17614.67504 33654.85568 55883.49230 55883.49230 368722.54940 56294.16057 18640.73048 1.02700 6341.74220 928.51817 20235.21609 130629.40936 60186.97047 117245.62126 0.05512 18.14208 0.13262 0.88273 173623.52298 30.09850 29.54808 30.10656 30.10708 27.31956 27.31956 27.59343 27.49457 27.59343 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 335067.69373 231196.70958 103870.98415 -4960.01685 0.77886 0.19770 8.92256 8.92256 771133.78667 612915.25342 301411.64391 221407.32633 271375.66046 127817.43244 19273.51942 19273.51941 20055.46253 41236.32298 12656.00980 3503.62114 119546.86034 119546.86035 8624.39649 144.69394 30.98402 100.00000 7514.23218 4555.43875 4068.95773 0.02176 0.00000 1.63522 4105.25133 6374.56891 12561.59528 12561.59528 88872.87735 12753.40832 4241.76812 1.02700 1430.65427 72.83212 4437.85889 32976.95393 25803.45536 15362.80632 0.06400 15.62599 0.11809 1.18232 159029.24593 30.87318 23.71087 30.91584 30.99687 25.18315 25.18315 25.19716 25.22406 25.19716 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 82498.30844 56923.83297 25574.47547 -2378.97673 0.47171 0.20924 6.24796 6.24796 173600.14113 133813.19087 65804.94354 48338.20082 59247.41250 32267.08599 4167.80133 4167.80132 4343.44438 9186.00750 128143.14168 12609.35002 1134743.35690 1134743.35692 93190.03690 2067.53903 31.57871 100.00000 -36160.78189 26857.89018 66332.14671 0.02176 0.00000 1.00000 15183.23492 65320.15546 128885.31666 128885.31665 752681.89149 127374.17711 18330.06307 1.02700 13237.28508 1113.68487 20230.62650 149718.34471 152999.50124 247674.87899 0.08153 12.26542 0.24965 1.04811 -765297.23002 30.91325 24.73334 30.88049 30.92655 25.10581 25.10581 25.22397 25.22153 25.22397 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 687361.73603 488026.83409 199334.90195 18720.59612 0.88490 0.17475 5.86949 5.86949 1710304.52705 1543846.08875 759212.93264 557693.46953 683556.57504 146495.44625 20868.92810 20868.92808 20972.80148 96499.15917 3087037.95995 37055.09204 + 14088.26325 3913.83755 174482.27847 174482.27848 10139.75882 277.02896 30.39925 100.00000 -3968.87070 7768.96973 2370.78909 0.02176 0.00000 0.74787 6442.28802 9088.03274 14193.04957 14193.04957 91273.55283 13962.88303 5721.66940 1.02700 1303.80670 113.66004 5923.30132 27914.68030 16350.45488 17854.40742 0.07542 13.25953 0.16779 1.03345 -83996.11104 29.78072 26.12451 29.75442 29.85381 26.20624 26.20624 26.21922 26.22871 26.21922 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 82185.52009 55064.29873 27121.22136 2747.41575 0.77288 0.19782 8.61939 8.61939 193546.55647 163545.72293 80426.42894 59078.67509 72411.85172 27313.77979 5854.75672 5854.75672 6028.08764 10717.92523 129153.75830 99781.90401 942654.15985 129735.33160 129750.69168 24593.96514 29371.85429 749.13177 28622.72253 8095.21879 32689.18393 268018.17564 6835.82813 261182.34751 -676128.98958 106148.30825 29.10143 30.84301 29.01764 29.01764 28.37154 29.34877 28.37272 96464.57437 3465.95833 20327.47653 20327.47650 9477.32237 20327.47661 33270.75721 139142.89808 28600.95837 1759176.57375 1759176.57387 95834.03014 1292.67690 29.88926 100.00000 5579.93736 64485.93185 31348.09830 0.02176 0.00000 0.16463 37824.90927 90915.87037 138534.51713 138534.51714 990028.96792 140005.13573 34517.48325 1.02700 14259.78199 1398.41219 36896.35630 293132.49827 24076.22005 164942.50509 0.05377 18.59642 0.14651 0.94413 118092.33962 29.73842 30.53166 29.74236 29.74177 28.61468 28.61468 28.84238 28.82863 28.84238 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 899113.09755 620388.03947 278725.05808 -17547.14777 2.83188 0.21592 9.10358 9.10358 1884908.47873 1509263.36939 742206.28311 545200.92997 668244.65566 286822.46092 36090.82291 36090.82287 36287.97536 100369.10684 62108.33504 13930.80181 611185.08393 611185.08397 42142.16595 536.14199 30.27771 100.00000 7063.03026 26453.54212 15688.62383 0.02176 0.00000 0.55484 19623.97662 37058.72943 61881.60156 61881.60156 428005.16424 62430.86253 17303.70656 1.02700 7119.95656 467.88085 18344.84525 147521.51906 25473.48143 173115.92092 0.05348 18.69901 0.13004 0.92571 149480.10983 29.90574 31.03816 29.90882 29.90835 28.84835 28.84835 29.06654 29.05836 29.06654 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 390946.43480 269753.04115 121193.39365 -6590.35727 1.49866 0.20937 8.52113 8.52113 842742.81419 663162.37180 326121.53055 239558.41648 293623.18120 144345.92344 18060.52448 18060.52446 18118.11177 44870.99717 4803.72750 4671.22133 110.42492 2058.41786 2170.21261 154991.31239 28.61281 28.61281 947.29236 2037.70644 32275.89737 6550.81782 896942.52977 896942.52982 23347.36592 361.76967 30.30001 100.00000 4866.07493 14454.51321 8892.85271 0.02176 0.00000 0.56895 9702.02704 46945.90692 32120.39746 32120.39746 239197.05425 32477.41960 8355.39423 1.02700 3269.60492 453.89240 9122.04704 74467.33060 16125.62011 96608.04601 0.05609 17.82920 0.14234 0.99370 102984.33129 30.90252 29.06475 30.91427 30.91473 28.25818 28.25818 28.47443 28.45729 28.47443 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 192251.14732 128808.26972 63442.87760 -4427.77067 1.28709 0.19148 9.67630 9.67630 472875.49590 362002.69047 178021.06443 130768.56410 160281.08037 72864.32520 8872.01437 8872.01436 8966.54713 24244.81189 8766.81407 711.12753 55826.15208 55826.15208 6084.16748 73.90514 28.22466 100.00000 32540.48333 1828.98531 4255.18217 0.02176 0.00000 9.25925 1109.80389 3979.96271 8685.27954 8685.27954 45354.23609 8848.53152 824.23372 1.02700 1191.43625 70.04549 985.01668 21243.31966 54086.71673 28404.71060 0.06065 16.48800 0.17580 1.06586 688678.03172 27.72969 25.75203 27.78053 27.78057 21.37680 21.37680 22.31455 22.30027 22.31455 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 41374.27338 23583.33599 17790.93739 -1819.40597 0.24367 0.16831 2.62369 2.62369 122233.06910 95727.24683 47075.52405 34580.17006 42384.39915 20786.02768 900.19079 900.19079 903.48215 6475.00129 28.01894 26.40861 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 24919.96110 26652.38300 1.07755 24.88804 28.98895 28.98895 29.40879 0.16691 3355.53341 21417.89060 21417.89058 10424.61473 57296.63661 15685.25305 624525.96750 624525.96753 39744.20929 695.05569 30.93726 100.00000 8610.68317 24887.71968 14856.48961 0.02176 0.00000 0.85628 18002.19769 35323.93442 57112.92848 57112.92848 387008.97374 57532.63145 19050.82634 1.02700 6481.26045 948.94556 20680.39060 133503.25532 60186.97047 123060.29998 0.05512 18.14208 0.13262 0.88273 182234.20615 30.91116 30.34588 30.91944 30.91997 28.05719 28.05719 28.33846 28.23692 28.33846 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 351685.03932 242662.67811 109022.36120 -5206.00383 0.79065 0.19770 8.92256 8.92256 788098.72012 626399.38088 308042.69622 226278.28473 277345.92154 130629.41459 19697.53663 19697.53661 20496.68247 42143.52159 12934.44187 3580.70076 125475.66665 125475.66666 8814.13311 147.87721 31.82059 100.00000 7886.89264 4655.65835 4158.47476 0.02176 0.00000 1.63522 4195.56681 6690.70924 12837.95024 12837.95024 93280.43834 13033.98315 4335.08697 1.02700 1462.12865 74.43442 4535.49174 33702.44720 25803.45536 16124.70925 0.06400 15.62599 0.11809 1.18232 166916.13857 31.70675 24.35106 31.75057 31.83378 25.86309 25.86309 25.87748 25.90511 25.87748 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 86589.72911 59746.91323 26842.81587 -2496.95978 0.47885 0.20924 6.24796 6.24796 177419.34237 136757.07940 67252.65150 49401.64067 60550.85486 32976.96183 4259.49291 4259.49290 4439.00010 9388.09955 130962.28932 12886.75557 1191019.81321 1191019.81324 95240.21664 2113.02487 32.43134 100.00000 -37954.13894 27448.76346 67791.45318 0.02176 0.00000 1.00000 15517.26591 68559.64292 131720.79214 131720.79214 790010.39351 130176.40755 18733.32424 1.02700 13528.50520 1138.18593 20675.70005 153012.14655 152999.50124 259958.06560 0.08153 12.26542 0.24965 1.04811 -803251.36896 31.74791 25.40114 31.71426 31.76157 25.78367 25.78367 25.90502 25.90251 25.90502 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 721450.75058 512230.03454 209220.71604 19649.02536 0.89868 0.17475 5.86949 5.86949 1747931.20506 1577810.68283 775915.60767 569962.71900 698594.81119 149718.34433 21328.04428 21328.04426 21434.20287 98622.13956 3240136.50390 37870.30364 + 14398.20488 3999.94193 183135.55167 183135.55168 10362.83340 283.12359 31.22003 100.00000 -4165.70287 7939.88697 2422.94643 0.02176 0.00000 0.74787 6584.01829 9538.74459 14505.29650 14505.29650 95800.17296 14270.06630 5847.54606 1.02700 1332.49043 116.16056 6053.61388 28528.80315 16350.45488 18739.87881 0.07542 13.25953 0.16779 1.03345 -88161.81391 30.58480 26.82987 30.55779 30.65986 26.91381 26.91381 26.92714 26.93689 26.92714 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 86261.42838 57795.15730 28466.27107 2883.67108 0.78423 0.19782 8.61939 8.61939 197804.57837 167143.72676 82195.80938 60378.40522 74004.91156 27914.68271 5983.56130 5983.56130 6160.70550 10953.71945 131995.13949 101977.10475 989404.14524 132589.50741 132605.20541 25135.03209 30018.03474 765.61266 29252.42209 8273.31350 33408.34559 273914.57458 6986.21626 266928.35832 -709660.92705 108483.56961 29.88717 31.67577 29.80112 29.80112 29.13757 30.14118 29.13878 98586.79390 3542.20937 20774.68077 20774.68075 9685.82336 20774.68086 34002.71348 142204.04024 29230.17912 1846421.16758 1846421.16773 97942.37771 1321.11578 30.69627 100.00000 5856.66856 65904.62160 32037.75612 0.02176 0.00000 0.16463 38657.05683 95424.75158 141582.27491 141582.27491 1039128.45991 143085.24707 35276.86749 1.02700 14573.49702 1429.17724 37708.07572 299581.41450 24076.22005 173122.66284 0.05377 18.59642 0.14651 0.94413 123949.00819 30.54136 31.35601 30.54540 30.54480 29.38728 29.38728 29.62112 29.60701 29.62112 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 943703.70833 651155.56111 292548.14722 -18417.38110 2.87472 0.21592 9.10358 9.10358 1926376.44284 1542467.14410 758534.81199 557195.34364 682946.02970 293132.55355 36884.82059 36884.82055 37086.31039 102577.22589 63474.71769 14237.27928 641496.19374 641496.19379 43069.29312 547.93710 31.09521 100.00000 7413.31404 27035.51973 16033.77338 0.02176 0.00000 0.55484 20055.70387 38896.61987 63242.99607 63242.99607 449231.65028 63804.34078 17684.38790 1.02700 7276.59551 478.17423 18748.43163 150766.99192 25473.48143 181701.43097 0.05348 18.69901 0.13004 0.92571 156893.42388 30.71320 31.87619 30.71636 30.71588 29.62726 29.62726 29.85133 29.84294 29.85133 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 410335.03041 283131.17223 127203.85819 -6917.19941 1.52134 0.20937 8.52113 8.52113 861283.14565 677751.93531 333296.20007 244828.69864 300082.88746 147521.53249 18457.85581 18457.85579 18516.71001 45858.15855 4909.40945 4773.98814 112.85426 2103.70303 2217.95726 162677.95070 29.38536 29.38536 968.13278 2082.53595 32985.96674 6694.93573 941425.49283 941425.49290 23861.00770 369.72860 31.11811 100.00000 5107.40292 14772.51233 9088.49537 0.02176 0.00000 0.56895 9915.47153 49274.14198 32827.04583 32827.04583 251059.79186 33191.92245 8539.21280 1.02700 3341.53618 463.87803 9322.73196 76105.61179 16125.62011 101399.22493 0.05609 17.82920 0.14234 0.99370 108091.73421 31.73688 29.84950 31.74896 31.74942 29.02115 29.02115 29.24324 29.22564 29.24324 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 201785.64987 135196.38652 66589.26335 -4647.36153 1.30599 0.19148 9.67630 9.67630 483278.75110 369966.74499 181937.52559 133645.47087 163807.26211 74467.33985 9067.19858 9067.19857 9163.81106 24778.19745 8959.68388 726.77233 58594.79398 58594.79398 6218.01909 75.53105 28.98673 100.00000 34154.29603 1869.22296 4348.79613 0.02176 0.00000 9.25925 1134.21956 4177.34496 8876.35559 8876.35559 47603.53385 9043.19911 842.36686 1.02700 1217.64784 71.58649 1006.68704 21710.67249 54086.71673 29813.41366 0.06065 16.48800 0.17580 1.06586 722832.32775 28.47839 26.44733 28.53060 28.53065 21.95398 21.95398 22.91704 22.90238 22.91704 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 43426.18889 24752.92785 18673.26105 -1909.63758 0.24671 0.16831 2.62369 2.62369 124922.19510 97833.24504 48111.18499 35340.93337 43316.85541 21243.32005 919.99498 919.99498 923.35875 6617.45124 28.77545 27.12165 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 25468.19996 27238.73512 1.07755 25.56002 29.77165 29.77165 30.20283 0.16691 3429.35511 21889.08395 21889.08392 10653.95614 58557.16195 16030.32843 655498.70509 655498.70513 40618.58144 710.34691 31.77257 100.00000 9037.72137 25435.24922 15183.33221 0.02176 0.00000 0.85628 18398.24583 37075.78945 58369.41225 58369.41225 406202.29493 58798.34867 19469.94429 1.02700 6623.84810 969.82235 21135.35895 136440.32583 60186.97047 129163.35183 0.05512 18.14208 0.13262 0.88273 191271.92752 31.74577 31.16522 31.75426 31.75481 28.81474 28.81474 29.10359 28.99932 29.10359 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 369126.50548 254697.28986 114429.21563 -5464.19028 0.80261 0.19770 8.92256 8.92256 805436.88186 640180.15896 314819.63158 231256.40414 283447.52827 133503.26031 20130.88221 20130.88219 20947.60925 43070.67856 13218.99945 3659.47614 131698.50613 131698.50615 9008.04395 151.13050 32.67975 100.00000 8278.03479 4758.08278 4249.96116 0.02176 0.00000 1.63522 4287.86923 7022.52823 13120.38499 13120.38499 97906.58789 13320.73063 4430.45884 1.02700 1494.29546 76.07198 4635.27251 34443.90130 25803.45536 16924.39799 0.06400 15.62599 0.11809 1.18232 175194.17336 32.56284 25.00854 32.60783 32.69330 26.56140 26.56140 26.57617 26.60454 26.57617 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 90884.05966 62710.00133 28174.05834 -2620.79409 0.48609 0.20924 6.24796 6.24796 181322.56597 139765.73344 68732.20902 50488.47618 61882.97295 33702.45492 4353.20170 4353.20170 4536.65805 9594.63762 133843.45817 13170.26404 1250087.24382 1250087.24385 97335.50030 2159.51139 33.30698 100.00000 -39836.43568 28052.63593 69282.86437 0.02176 0.00000 1.00000 15858.64558 71959.78951 134618.64805 134618.64805 829190.16508 133040.28704 19145.45716 1.02700 13826.13215 1163.22600 21130.56521 156378.41200 152999.50124 272850.42451 0.08153 12.26542 0.24965 1.04811 -843087.80464 32.60510 26.08698 32.57055 32.61913 26.47983 26.47983 26.60445 26.60188 26.60445 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 757230.37557 537633.56842 219596.80715 20623.49913 0.91267 0.17475 5.86949 5.86949 1786385.66948 1612522.49751 792985.74130 582501.89178 713963.88832 153012.14613 21797.26101 21797.26099 21905.75509 100791.82549 3400827.81620 38703.44988 + 14714.96522 4087.94061 192217.97526 192217.97527 10590.81561 289.35231 32.06297 100.00000 -4372.29673 8114.56439 2476.25122 0.02176 0.00000 0.74787 6728.86661 10011.80904 14824.41285 14824.41285 100551.28628 14584.00759 5976.19201 1.02700 1361.80521 118.71609 6186.79332 29156.43669 16350.45488 19669.26426 0.07542 13.25953 0.16779 1.03345 -92534.11065 31.41059 27.55428 31.38285 31.48768 27.64048 27.64048 27.65417 27.66418 27.65417 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 90539.47724 60661.45007 29878.02717 3026.68385 0.79575 0.19782 8.61939 8.61939 202156.27669 170820.88663 84004.11616 61706.72939 75633.01869 28528.80549 6115.19958 6115.19958 6296.24095 11194.70115 134899.03104 104220.59988 1038472.64916 135506.47505 135522.51841 25688.00250 30678.43116 782.45613 29895.97504 8455.32631 34143.32881 279940.69403 7139.91292 272800.78111 -744855.84725 110870.20670 30.69412 32.53102 30.60575 30.60575 29.92428 30.95500 29.92553 100755.70223 3620.13794 21231.72351 21231.72348 9898.91136 21231.72360 34750.77278 145332.52749 29873.24272 1937992.56934 1937992.56954 100097.10891 1350.18031 31.52507 100.00000 6147.12396 67354.52250 32742.58640 0.02176 0.00000 0.16463 39507.51163 100157.24621 144697.08332 144697.08332 1090662.99192 146233.12082 36052.95816 1.02700 14894.11378 1460.61912 38537.65295 306172.20668 24076.22005 181708.50729 0.05377 18.59642 0.14651 0.94413 130096.13215 31.36598 32.20263 31.37013 31.36951 30.18073 30.18073 30.42089 30.40640 30.42089 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 990505.74571 683448.96712 307056.77858 -19330.77279 2.91821 0.21592 9.10358 9.10358 1968756.70155 1576401.40145 775222.56827 569453.63424 697970.83376 299581.46808 37696.28621 37696.28617 37902.20878 104833.92353 64871.16074 14550.49926 673310.55259 673310.55265 44016.81707 559.99171 31.93478 100.00000 7780.96979 27630.30085 16386.51622 0.02176 0.00000 0.55484 20496.92912 40825.65864 64634.34125 64634.34125 471510.84260 65208.03553 18073.44423 1.02700 7436.68052 488.69405 19160.89691 154083.86510 25473.48143 190712.73076 0.05348 18.69901 0.13004 0.92571 164674.39366 31.54246 32.73685 31.54570 31.54521 30.42719 30.42719 30.65732 30.64870 30.65732 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 430685.18396 297172.77828 133512.40568 -7260.25095 1.54435 0.20937 8.52113 8.52113 880231.36415 692662.46903 340628.71221 250214.92693 306684.70718 150767.00488 18863.92842 18863.92840 18924.07742 46867.03747 5017.41640 4879.01583 115.33706 2149.98447 2266.75230 170745.80011 30.17876 30.17876 989.43169 2128.35172 33711.65762 6842.22424 988114.54373 988114.54381 24385.94960 377.86262 31.95830 100.00000 5360.69932 15097.50743 9288.44217 0.02176 0.00000 0.56895 10133.61178 51717.84352 33549.24046 33549.24046 263510.85003 33922.14435 8727.07539 1.02700 3415.04994 474.08334 9527.83196 77779.93514 16125.62011 106428.01755 0.05609 17.82920 0.14234 0.99370 113452.43353 32.59378 30.65544 32.60618 32.60666 29.80473 29.80473 30.03281 30.01473 30.03281 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 211793.00652 141901.31558 69891.69094 -4877.84278 1.32518 0.19148 9.67630 9.67630 493910.87777 378106.00860 185940.14885 136585.66955 167411.01981 76105.62079 9266.67685 9266.67684 9365.41480 25323.31748 9156.79682 742.76131 61500.74389 61500.74389 6354.81544 77.19274 29.76937 100.00000 35848.14416 1910.34585 4444.46959 0.02176 0.00000 9.25925 1159.17238 4384.51619 9071.63531 9071.63531 49964.38328 9242.14938 860.89892 1.02700 1244.43608 73.16139 1028.83414 22188.30706 54086.71673 31291.97994 0.06065 16.48800 0.17580 1.06586 758680.47192 29.24731 27.16141 29.30093 29.30097 22.54673 22.54673 23.53580 23.52074 23.53580 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 45579.86709 25980.52443 19599.34266 -2004.34414 0.24979 0.16831 2.62369 2.62369 127670.48184 99985.57519 49169.63046 36118.43347 44269.82569 21710.67285 940.23486 940.23486 943.67263 6763.03509 29.55239 27.85393 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 26028.50006 27837.98697 1.07755 26.25014 30.57549 30.57549 31.01830 0.16691 3504.80088 22370.64354 22370.64351 10888.34305 59845.41883 16382.99547 688007.50448 688007.50453 41512.18976 725.97453 32.63043 100.00000 9485.93811 25994.82441 15517.36535 0.02176 0.00000 0.85628 18803.00703 38914.52596 59653.53864 59653.53864 426347.48961 60091.91166 19898.28284 1.02700 6769.57267 991.15843 21600.33660 139442.01184 60186.97047 135569.07841 0.05512 18.14208 0.13262 0.88273 200757.86563 32.60290 32.00668 32.61163 32.61219 29.59273 29.59273 29.88939 29.78230 29.88939 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 387432.96365 267328.74609 120104.21756 -5735.18120 0.81475 0.19770 8.92256 8.92256 823156.48290 654264.11395 321745.65941 236344.04210 289683.37026 136440.33058 20573.76138 20573.76136 21408.45641 44018.23297 13509.81729 3739.98457 138229.96108 138229.96110 9206.22081 154.45537 33.56210 100.00000 8688.57518 4862.76055 4343.46026 0.02176 0.00000 1.63522 4382.20230 7370.80345 13409.03331 13409.03331 102762.16668 13613.78654 4527.92888 1.02700 1527.16995 77.74556 4737.24845 35201.66736 25803.45536 17763.74650 0.06400 15.62599 0.11809 1.18232 183882.74854 33.44203 25.68377 33.48825 33.57602 27.27856 27.27856 27.29373 27.32287 27.29373 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 95391.36323 65820.04080 29571.32243 -2750.76985 0.49344 0.20924 6.24796 6.24796 185311.66043 142840.57782 70244.31679 51599.22206 63244.39761 34443.90885 4448.97208 4448.97208 4636.46447 9805.71952 136788.01270 13460.00970 1312084.06429 1312084.06434 99476.88019 2207.02061 34.20627 100.00000 -41812.08300 28669.79360 70807.08659 0.02176 0.00000 1.00000 16207.53560 75528.56296 137580.25676 137580.25676 870313.01808 135967.17184 19566.65699 1.02700 14130.30689 1188.81696 21595.43739 159818.73524 152999.50124 286382.16700 0.08153 12.26542 0.24965 1.04811 -884899.88765 33.48544 26.79132 33.44995 33.49984 27.19479 27.19479 27.32277 27.32013 27.32277 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 794784.45512 564296.96504 230487.49007 21646.30094 0.92688 0.17475 5.86949 5.86949 1825686.13162 1647997.97165 810431.41764 595316.92619 729671.08493 156378.41152 22276.80051 22276.80049 22387.68145 103009.24448 3569488.45258 39554.92534 + 15038.69429 4177.87525 201750.83251 201750.83253 10823.81344 295.71805 32.92867 100.00000 -4589.13642 8293.08471 2530.72872 0.02176 0.00000 0.74787 6876.90160 10508.33464 15150.54976 15150.54976 105538.02628 14904.85559 6107.66816 1.02700 1391.76490 121.32785 6322.90270 29797.87815 16350.45488 20644.74165 0.07542 13.25953 0.16779 1.03345 -97123.24706 32.25867 28.29824 32.23019 32.33784 28.38677 28.38677 28.40084 28.41112 28.40084 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 95029.69164 63669.89374 31359.79790 3176.78919 0.80744 0.19782 8.61939 8.61939 206603.71232 174578.94398 85852.20568 63064.27668 77296.94417 29156.43895 6249.73390 6249.73390 6434.75818 11440.98444 137866.80817 106513.45188 1089974.65621 138487.61594 138504.01226 26253.13826 31353.35629 799.67015 30553.68614 8641.34339 34894.48164 286099.38785 7296.99091 278802.39695 -781796.22413 113309.34980 31.52286 33.40935 31.43211 31.43211 30.73224 31.79078 30.73352 102972.32653 3699.78093 21698.82118 21698.82115 10116.68730 21698.82128 35515.28938 148529.84142 30530.45371 2034105.36273 2034105.36298 102299.24416 1379.88426 32.37625 100.00000 6451.98419 68836.32121 33462.92295 0.02176 0.00000 0.16463 40376.67643 105124.44416 147880.41748 147880.41748 1144753.32732 149450.24775 36846.12283 1.02700 15221.78409 1492.75273 39385.48087 312907.99606 24076.22005 190720.15807 0.05377 18.59642 0.14651 0.94413 136548.11634 32.21286 33.07210 32.21712 32.21649 30.99561 30.99561 31.24226 31.22737 31.24226 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1039628.88316 717343.93222 322284.95094 -20289.46323 2.96236 0.21592 9.10358 9.10358 2012069.32537 1611082.21204 792277.45498 581981.60707 713326.18331 306172.25860 38525.60406 38525.60402 38736.05693 107140.26850 66298.32552 14870.61007 706702.71259 706702.71266 44985.18653 572.31152 32.79702 100.00000 8166.85904 28238.16714 16747.01939 0.02176 0.00000 0.55484 20947.86133 42850.36614 66056.29601 66056.29601 494894.94909 66642.61154 18471.05979 1.02700 7600.28740 499.44532 19582.43641 157473.70943 25473.48143 200170.93691 0.05348 18.69901 0.13004 0.92571 172841.25271 32.39410 33.62074 32.39743 32.39693 31.24873 31.24873 31.48507 31.47621 31.48507 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 452044.58294 311910.76371 140133.81924 -7620.31579 1.56772 0.20937 8.52113 8.52113 899596.44318 707901.03429 348122.53952 255719.65216 313431.76683 154083.87761 19278.93463 19278.93461 19340.40690 47898.11171 5127.79950 4986.35412 117.87447 2197.28410 2316.62082 179213.76641 30.99359 30.99359 1011.19917 2175.17543 34453.31370 6992.75309 1037119.09117 1037119.09127 24922.44021 386.17559 32.82117 100.00000 5626.55770 15429.65241 9492.78779 0.02176 0.00000 0.56895 10356.55112 54282.73798 34287.32336 34287.32336 276579.40596 34668.43113 8919.07094 1.02700 3490.18099 484.51317 9737.44415 79491.09355 16125.62011 111706.20809 0.05609 17.82920 0.14234 0.99370 119078.99123 33.47381 31.48314 33.48654 33.48704 30.60945 30.60945 30.84369 30.82513 30.84369 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 222296.66798 148938.76888 73357.89910 -5119.75451 1.34464 0.19148 9.67630 9.67630 504776.91109 386424.33592 190030.82976 139590.55256 171094.06012 77779.94388 9470.54363 9470.54362 9571.45381 25880.43015 9358.24624 759.10205 64550.81146 64550.81147 6494.62131 78.89098 30.57314 100.00000 37625.99701 1952.37343 4542.24787 0.02176 0.00000 9.25925 1184.67415 4601.96186 9271.21118 9271.21118 52442.31666 9445.47656 879.83868 1.02700 1271.81365 74.77094 1051.46848 22676.44960 54086.71673 32843.87422 0.06065 16.48800 0.17580 1.06586 796306.46893 30.03699 27.89477 30.09205 30.09210 23.15550 23.15550 24.17127 24.15580 24.17127 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 47840.35480 27269.00244 20571.35235 -2103.74757 0.25291 0.16831 2.62369 2.62369 130479.23086 102185.25657 50251.36172 36913.03856 45243.76130 22188.30740 960.92001 960.92001 964.43342 6911.82178 30.35030 28.60599 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 26601.12676 28450.42236 1.07755 26.95889 31.40103 31.40103 31.85580 0.16691 3581.90646 22862.79744 22862.79741 11127.88647 61162.01734 16743.42117 722128.54511 722128.54517 42425.45745 741.94597 33.51145 100.00000 9956.38373 26566.71024 15858.74721 0.02176 0.00000 0.85628 19216.67297 40844.45277 60965.91579 60965.91579 447491.76501 61413.93302 20336.04482 1.02700 6918.50319 1012.96390 22075.54375 142509.73490 60186.97047 142292.49055 0.05512 18.14208 0.13262 0.88273 210714.24935 33.48318 32.87086 33.49214 33.49272 30.39174 30.39174 30.69641 30.58642 30.69641 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 406647.31223 280586.64672 126060.66551 -6019.61164 0.82708 0.19770 8.92256 8.92256 841265.91491 668657.91576 328824.05975 241543.60802 296056.40068 139442.01635 21026.38389 21026.38387 21879.44220 44986.63357 13807.03312 3822.26419 145085.33696 145085.33698 9408.75757 157.85339 34.46828 100.00000 9119.47586 4969.74123 4439.01634 0.02176 0.00000 1.63522 4478.61070 7736.35103 13704.03189 13704.03189 107858.55302 13913.28968 4627.54327 1.02700 1560.76767 79.45597 4841.46787 35976.10426 25803.45536 18644.72164 0.06400 15.62599 0.11809 1.18232 193002.22440 34.34497 26.37723 34.39243 34.48257 28.01508 28.01508 28.03066 28.06059 28.03066 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 100122.20199 69084.31955 31037.88243 -2887.19164 0.50091 0.20924 6.24796 6.24796 189388.51490 145983.06874 71789.69091 52734.40433 64635.77359 35201.67475 4546.84942 4546.84941 4738.46664 10021.44522 139797.34740 13756.12976 1377155.55478 1377155.55485 101665.37040 2255.57504 35.12984 100.00000 -43885.71052 29300.52872 72364.84168 0.02176 0.00000 1.00000 16564.10120 79274.32614 140607.02082 140607.02082 913475.31767 138958.44807 19997.12322 1.02700 14441.17348 1214.97092 22070.53677 163334.74555 152999.50124 300585.00265 0.08153 12.26542 0.24965 1.04811 -928785.59817 34.38955 27.51469 34.35310 34.40434 27.92905 27.92905 28.06049 28.05777 28.06049 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 834200.99153 592282.70606 241918.28547 22719.82759 0.94132 0.17475 5.86949 5.86949 1865851.20341 1684253.90574 828260.89861 608413.89117 745723.83964 159818.73470 22766.88986 22766.88985 22880.21019 105275.44667 3746513.64365 40425.13324 + 15369.54539 4269.78846 211756.46224 211756.46226 11061.93721 302.22385 33.81775 100.00000 -4816.73005 8475.53248 2586.40473 0.02176 0.00000 0.74787 7028.19335 11029.48493 15483.86168 15483.86168 110772.07865 15232.76224 6242.03679 1.02700 1422.38371 123.99706 6462.00648 30453.43132 16350.45488 21668.59685 0.07542 13.25953 0.16779 1.03345 -101939.97712 33.12966 29.06230 33.10040 33.21097 29.15322 29.15322 29.16766 29.17822 29.16766 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 99742.59372 66827.53816 32915.05555 3334.33886 0.81930 0.19782 8.61939 8.61939 211148.99148 178419.67854 87740.95313 64451.68999 78997.47598 29797.88034 6387.22798 6387.22797 6576.32278 11692.68596 140899.87636 108856.74660 1144030.85353 141534.34190 141551.09894 26830.70700 32043.12976 817.26289 31225.86688 8831.45284 35662.15983 292393.57271 7457.52461 284936.04810 -820568.62187 115802.15403 32.37398 34.31141 32.28077 32.28077 31.56201 32.64913 31.56332 105237.71653 3781.17607 22176.19500 22176.19497 10339.25430 22176.19510 36296.62534 151797.49622 31202.12334 2134984.77350 2134984.77381 104549.82636 1410.24170 33.25041 100.00000 6771.96364 70350.71947 34199.10689 0.02176 0.00000 0.16463 41264.96284 110337.98531 151133.78495 151133.78495 1201526.21865 152738.15144 37656.73711 1.02700 15556.66316 1525.59327 40251.96100 319791.97261 24076.22005 200178.73260 0.05377 18.59642 0.14651 0.94413 143320.07997 33.08261 33.96505 33.08698 33.08634 31.83249 31.83249 32.08580 32.07051 32.08580 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1091188.23334 752919.88414 338268.34920 -21295.69898 3.00718 0.21592 9.10358 9.10358 2056334.82632 1646526.00008 809707.54897 594785.19513 729019.35035 312908.04637 39373.16690 39373.16685 39588.24972 109497.35304 67756.88791 15197.76332 741750.92321 741750.92330 45974.86012 584.90237 33.68254 100.00000 8571.88609 28859.40649 17115.45363 0.02176 0.00000 0.55484 21408.71403 44975.48699 67509.53375 67509.53375 519438.76688 68108.74822 18877.42289 1.02700 7767.49363 510.43311 20013.24979 160938.13025 25473.48143 210098.21328 0.05348 18.69901 0.13004 0.92571 181413.13879 33.26874 34.52850 33.27216 33.27165 32.09244 32.09244 32.33517 32.32607 32.33517 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 474463.27989 327379.66474 147083.61515 -7998.23769 1.59143 0.20937 8.52113 8.52113 919387.55368 723474.84778 355781.23093 261345.48128 320327.26170 157473.72148 19703.07097 19703.07095 19765.89563 48951.86957 5240.61103 5096.05385 120.46771 2245.62433 2367.58645 188101.69298 31.83042 31.83042 1033.44554 2223.02926 35211.28620 7146.59358 1088553.96988 1088553.97001 25470.73360 394.67145 33.70735 100.00000 5905.60105 15769.10458 9701.62902 0.02176 0.00000 0.56895 10584.39513 56974.83580 35041.64408 35041.64408 290296.08382 35431.13620 9115.29040 1.02700 3566.96493 495.17245 9951.66781 81239.89742 16125.62011 117246.16518 0.05609 17.82920 0.14234 0.99370 124984.59228 34.37760 32.33318 34.39068 34.39119 31.43591 31.43591 31.67647 31.65741 31.67647 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 233321.24802 156325.23765 76996.01037 -5373.66361 1.36439 0.19148 9.67630 9.67630 515881.99700 394925.66635 194211.50561 142661.54296 174858.12728 79491.10205 9678.89548 9678.89547 9782.02569 26449.79929 9564.12755 775.80229 67752.14408 67752.14408 6637.50290 80.62658 31.39862 100.00000 39492.02070 1995.32563 4642.17727 0.02176 0.00000 9.25925 1210.73697 4830.19153 9475.17772 9475.17772 55043.14065 9653.27694 899.19512 1.02700 1299.79354 76.41590 1074.60077 23175.33125 54086.71673 34472.73315 0.06065 16.48800 0.17580 1.06586 835798.48962 30.84799 28.64793 30.90454 30.90459 23.78069 23.78069 24.82389 24.80801 24.82389 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 50212.94912 28621.38122 21591.56790 -2208.08082 0.25606 0.16831 2.62369 2.62369 133349.77232 104433.33092 51356.89105 37725.12495 46239.12349 22676.44991 982.06024 982.06024 985.65094 7063.88177 31.16976 29.37835 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 27186.35124 29076.33132 1.07755 27.68678 32.24885 32.24885 32.71590 0.16691 3660.70836 23365.77872 23365.77869 11372.69984 62507.58101 17111.77624 757941.78446 757941.78454 43358.81702 758.26877 34.41626 100.00000 10450.16065 27151.17755 16207.63947 0.02176 0.00000 0.85628 19639.43955 42870.09236 62307.16523 62307.16523 469684.66952 62765.03883 20783.43757 1.02700 7070.71017 1035.24910 22561.20545 145644.94780 60186.97047 149349.34356 0.05512 18.14208 0.13262 0.88273 221164.41000 34.38723 33.75838 34.39643 34.39702 31.21232 31.21232 31.52521 31.41225 31.52521 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 426814.57716 294502.05965 132312.51751 -6318.14809 0.83959 0.19770 8.92256 8.92256 859773.75418 683368.38101 336058.18480 246857.56431 302569.63767 142509.73916 21488.96410 21488.96408 22360.78968 45976.33896 14110.78770 3906.35396 152280.69831 152280.69834 9615.75014 161.32616 35.39892 100.00000 9571.74657 5079.07548 4536.67466 0.02176 0.00000 1.63522 4577.14009 8120.02757 14005.52044 14005.52044 113207.68951 14219.38189 4729.34917 1.02700 1595.10454 81.20400 4947.98011 36767.57874 25803.45536 19569.38787 0.06400 15.62599 0.11809 1.18232 202573.97097 35.27228 27.08942 35.32102 35.41360 28.77148 28.77148 28.78749 28.81822 28.78749 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 105087.66194 72510.48694 32577.17501 -3030.37915 0.50849 0.20924 6.24796 6.24796 193555.06011 149194.69442 73369.06324 53894.56059 66057.75983 35976.11149 4646.88005 4646.88004 4842.71285 10241.91689 142872.88743 14058.76445 1445454.20047 1445454.20055 103902.00738 2305.19767 36.07835 100.00000 -46062.17747 29945.14001 73956.86736 0.02176 0.00000 1.00000 16928.51123 83205.85669 143700.37366 143700.37366 958778.20817 142015.53235 20437.05969 1.02700 14758.87912 1241.70027 22556.08832 166928.10804 152999.50124 315492.21365 0.08153 12.26542 0.24965 1.04811 -974847.77564 35.31807 28.25759 35.28064 35.33326 28.68313 28.68313 28.81812 28.81533 28.81812 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 875572.35148 621656.37180 253915.97968 23846.59473 0.95597 0.17475 5.86949 5.86949 1906899.90627 1721307.46991 846482.62791 621798.98919 762129.75473 163334.74495 23267.76118 23267.76116 23383.57455 107591.50527 3932318.22109 41314.48571 + 15707.67521 4363.72375 222258.31112 222258.31114 11305.29970 308.87277 34.73083 100.00000 -5055.61097 8661.99409 2643.30560 0.02176 0.00000 0.74787 7182.81352 11576.48116 15824.50646 15824.50646 116265.70860 15567.88283 6379.36153 1.02700 1453.67614 126.72499 6604.17055 31123.40663 16350.45488 22743.22913 0.07542 13.25953 0.16779 1.03345 -106995.58809 34.02416 29.84698 33.99412 34.10766 29.94035 29.94035 29.95519 29.96603 29.95519 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 104689.22744 70141.78279 34547.44465 3499.70204 0.83133 0.19782 8.61939 8.61939 215794.26672 182344.90922 89671.25301 65869.62637 80735.41947 30453.43344 6527.74692 6527.74691 6721.00181 11949.92491 143999.67202 111251.59377 1200767.91362 144648.09579 144665.22149 27420.98224 32748.07825 835.24266 31912.83559 9025.74470 36446.72694 298826.22941 7621.59006 291204.63936 -861263.89770 118349.79995 33.24808 35.23781 33.15235 33.15235 32.41419 33.53066 32.41553 107552.94509 3864.36190 22664.07103 22664.07100 10566.71778 22664.07113 37095.15068 155137.03939 31888.56969 2240867.19727 2240867.19763 106849.92135 1441.26700 34.14817 100.00000 7107.81213 71898.43448 34951.48688 0.02176 0.00000 0.16463 42172.79154 115810.08680 154458.72647 154458.72647 1261114.70458 156098.38897 38485.18489 1.02700 15898.90955 1559.15630 41137.50368 326827.39643 24076.22005 210106.39563 0.05377 18.59642 0.14651 0.94413 150427.89210 33.97584 34.88210 33.98033 33.97967 32.69197 32.69197 32.95211 32.93641 32.95211 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1145304.61778 790260.18974 355044.42804 -22351.83800 3.05267 0.21592 9.10358 9.10358 2101574.16774 1682749.55107 827521.10483 607870.46197 745057.76687 319792.02135 40239.37610 40239.37606 40459.19075 111906.29341 69247.53866 15532.11394 778537.31463 778537.31474 46986.30651 597.77022 34.59197 100.00000 8997.00003 29494.31309 17491.99342 0.02176 0.00000 0.55484 21879.70549 47206.00109 68994.74271 68994.74271 545199.81071 69607.13988 19292.72597 1.02700 7938.37839 521.66263 20453.54105 164478.76825 25473.48143 220517.82294 0.05348 18.69901 0.13004 0.92571 190410.13883 34.16700 35.46077 34.17051 34.16998 32.95894 32.95894 33.20822 33.19887 33.20822 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 497993.80962 343615.73041 154378.07921 -8394.90223 1.61551 0.20937 8.52113 8.52113 939614.06834 739391.28498 363608.41345 267095.07855 327374.45736 160938.14186 20136.53830 20136.53828 20200.74510 50028.81010 5355.90441 5208.16697 123.11800 2295.02803 2419.67332 197430.40734 32.68984 32.68984 1056.18133 2271.93588 35985.93409 7303.81856 1142539.70972 1142539.70987 26031.08945 403.35422 34.61745 100.00000 6198.48326 16116.02469 9915.06476 0.02176 0.00000 0.56895 10817.25170 59800.44553 35812.55984 35812.55984 304693.02660 36210.62078 9315.82668 1.02700 3645.43812 506.06624 10170.60439 83027.17492 16125.62011 123060.87087 0.05609 17.82920 0.14234 0.99370 131183.07554 35.30580 33.20618 35.31923 35.31975 32.28468 32.28468 32.53174 32.51216 32.53174 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 244892.58107 164078.03095 80814.55012 -5640.16507 1.38443 0.19148 9.67630 9.67630 527231.39467 403614.02596 198484.15627 145800.09511 178705.00387 81239.90567 9891.83106 9891.83105 9997.23014 27031.69454 9774.53824 792.86993 71112.24356 71112.24357 6783.52789 82.40036 32.24638 100.00000 41450.58798 2039.22277 4744.30512 0.02176 0.00000 9.25925 1237.37317 5069.74003 9683.63152 9683.63152 57772.94990 9865.64892 918.97741 1.02700 1328.38898 78.09705 1098.24198 23685.18830 54086.71673 36182.37369 0.06065 16.48800 0.17580 1.06586 877249.07761 31.68088 29.42142 31.73896 31.73901 24.42277 24.42277 25.49414 25.47782 25.49414 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 52703.20987 30040.82987 22662.38000 -2317.58837 0.25926 0.16831 2.62369 2.62369 136283.46565 106730.86287 52486.74201 38555.07723 47256.38363 23175.33154 1003.66556 1003.66555 1007.33525 7219.28709 32.01134 30.17156 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 27784.45065 29716.01027 1.07755 28.43432 33.11957 33.11957 33.59923 0.16691 3741.24391 23879.82558 23879.82555 11622.89911 63882.74706 17488.23512 795531.14544 795531.14553 44312.71049 774.95067 35.34550 100.00000 10968.42596 27748.50314 16564.20735 0.02176 0.00000 0.85628 20071.50699 44996.19152 63677.92214 63677.92214 492978.20887 64145.86895 21240.67295 1.02700 7226.26570 1058.02456 23057.55171 148849.13533 60186.97047 156756.17411 0.05512 18.14208 0.13262 0.88273 232132.83596 35.31568 34.66985 35.32514 35.32574 32.05505 32.05505 32.37639 32.26038 32.37639 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 447982.01735 309107.59352 138874.42383 -6631.49014 0.85229 0.19770 8.92256 8.92256 878688.76565 698402.47630 343451.46049 252288.42756 309226.16577 145644.95181 21961.72106 21961.72104 22852.72679 46987.81787 14421.22487 3992.29370 159832.90636 159832.90640 9827.29653 164.87533 36.35469 100.00000 10046.44712 5190.81508 4636.48145 0.02176 0.00000 1.63522 4677.83711 8522.73217 14313.64172 14313.64172 118822.11107 14532.20812 4833.39480 1.02700 1630.19682 82.99048 5056.83562 37576.46564 25803.45536 20539.91199 0.06400 15.62599 0.11809 1.18232 212620.41809 36.22464 27.82083 36.27469 36.36977 29.54831 29.54831 29.56475 29.59631 29.56475 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 110299.37890 76106.57165 34192.80725 -3180.66791 0.51618 0.20924 6.24796 6.24796 197813.26924 152476.97582 74983.18173 55080.24028 67511.02975 36767.58582 4749.11135 4749.11135 4949.25247 10467.23893 146016.08930 14368.05711 1517140.04887 1517140.04897 106187.85034 2355.91199 37.05246 100.00000 -48346.58406 30603.93274 75583.91760 0.02176 0.00000 1.00000 17300.93828 87332.36755 146861.78023 146861.78022 1006327.85004 145139.87244 20886.67477 1.02700 15083.57428 1269.01766 23052.32200 170600.52446 152999.50124 331138.73280 0.08153 12.26542 0.24965 1.04811 -1023194.35969 36.27166 29.02054 36.23322 36.28726 29.45758 29.45758 29.59621 29.59335 29.59621 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 918995.48249 652486.79502 266508.68747 25029.24276 0.97086 0.17475 5.86949 5.86949 1948851.68007 1759176.21201 865105.23500 635478.55917 778896.59971 166928.10738 23779.65166 23779.65164 23898.01293 109958.51714 4127337.58974 42223.40392 + 16053.24388 4459.72563 233280.98865 233280.98867 11554.01616 315.66797 35.66856 100.00000 -5306.33895 8852.55786 2701.45830 0.02176 0.00000 0.74787 7340.83534 12150.60511 16172.64542 16172.64542 122031.78962 15910.37607 6519.70741 1.02700 1485.65700 129.51294 6749.46223 31808.12140 16350.45488 23871.15671 0.07542 13.25953 0.16779 1.03345 -112301.92704 34.94281 30.65285 34.91196 35.02857 30.74874 30.74874 30.76398 30.77511 30.76398 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 109881.18451 73620.39406 36260.79044 3673.26625 0.84354 0.19782 8.61939 8.61939 220541.73796 186356.49492 91644.01946 67318.75734 82511.59770 31123.40869 6671.35727 6671.35727 6868.86377 12212.82311 147167.66314 113699.12756 1260318.79120 147830.35224 147847.85470 28024.24353 33468.53559 853.61799 32614.91760 9224.31098 37248.55450 305400.40435 7789.26494 297611.13941 -903977.41484 120953.49406 34.14578 36.18924 34.04747 34.04747 33.28937 34.43599 33.29075 109919.10864 3949.37782 23162.68033 23162.68030 10799.18545 23162.68044 37911.24357 158550.05248 32590.11785 2352000.75347 2352000.75385 109200.61840 1472.97486 35.07017 100.00000 7460.31666 73480.19919 35720.41921 0.02176 0.00000 0.16463 43100.59246 121553.57170 157856.81667 157856.81666 1323658.42174 159532.55168 39331.85851 1.02700 16248.68537 1593.45773 42042.52828 334017.59937 24076.22005 220526.41113 0.05377 18.59642 0.14651 0.94413 157888.20876 34.89319 35.82392 34.89780 34.89712 33.57466 33.57466 33.84182 33.82570 33.84182 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1202104.85004 829452.35038 372652.49966 -23460.35521 3.09886 0.21592 9.10358 9.10358 2147808.77414 1719770.01984 845726.55871 621243.60451 761449.02838 326827.44365 41124.64191 41124.64186 41349.29247 114368.23043 70770.98370 15873.82026 817148.09021 817148.09031 48020.00471 610.92115 35.52595 100.00000 9443.19708 30143.18763 17876.81708 0.02176 0.00000 0.55484 22361.05876 49547.13531 70512.62625 70512.62625 572238.44769 71138.49614 19717.16571 1.02700 8113.02262 533.13920 20903.51871 168097.30021 25473.48143 231454.18267 0.05348 18.69901 0.13004 0.92571 199853.33591 35.08951 36.41822 35.09312 35.09257 33.84883 33.84883 34.10484 34.09524 34.10484 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 522691.31238 360657.00749 162034.30489 -8811.23896 1.63995 0.20937 8.52113 8.52113 960285.56606 755657.88360 371607.79387 272971.16688 334576.69123 164478.77943 20579.54191 20579.54188 20645.16126 51129.44330 5473.73425 5322.74658 125.82659 2345.51862 2472.90611 207221.76992 33.57247 33.57247 1079.41730 2321.91844 36777.62422 7464.50248 1199202.81810 1199202.81825 26603.77312 412.22801 35.55212 100.00000 6505.89068 16470.57704 10133.19607 0.02176 0.00000 0.56895 11055.23111 62766.18856 36600.43574 36600.43574 319803.97135 37007.25401 9520.77476 1.02700 3725.63771 517.19969 10394.35756 84853.77249 16125.62011 129163.95104 0.05609 17.82920 0.14234 0.99370 137688.96622 36.25906 34.10274 36.27285 36.27338 33.15637 33.15637 33.41009 33.38999 33.41009 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 257037.78280 172215.31629 84822.46651 -5919.88340 1.40476 0.19148 9.67630 9.67630 538830.47896 412493.52939 202850.80520 149007.69537 182636.51171 83027.18294 10109.45123 10109.45122 10217.16908 27626.39148 9989.57797 810.31306 74638.98381 74638.98381 6932.76542 84.21317 33.11703 100.00000 43506.28848 2084.08564 4848.67978 0.02176 0.00000 9.25925 1264.59537 5321.16869 9896.67130 9896.67130 60638.14130 10082.69308 939.19490 1.02700 1357.61352 79.81519 1122.40329 24206.26220 54086.71673 37976.80214 0.06065 16.48800 0.17580 1.06586 920755.36609 32.53627 30.21580 32.59591 32.59596 25.08219 25.08219 26.18248 26.16573 26.18248 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 55316.97261 31530.67465 23786.29796 -2432.52684 0.26249 0.16831 2.62369 2.62369 139281.70021 109078.94050 53641.44967 39403.28845 48296.02348 23685.18857 1025.74619 1025.74619 1029.49662 7378.11132 32.87565 30.98620 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 28395.70824 30369.76215 1.07755 29.20205 34.01380 34.01380 34.50641 0.16691 3823.55123 24405.18146 24405.18143 11878.60276 65288.16674 17872.97608 834984.71302 834984.71313 45287.58961 791.99958 36.29983 100.00000 11512.39417 28358.96988 16928.61973 0.02176 0.00000 0.85628 20513.07991 47227.73244 65078.83569 65078.83569 517426.96796 65557.07732 21707.96750 1.02700 7385.24345 1081.30109 23564.81757 152123.81493 60186.97047 164530.33896 0.05512 18.14208 0.13262 0.88273 243645.23013 36.26921 35.60594 36.27891 36.27954 32.92054 32.92054 33.25055 33.13141 33.25055 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 470199.23552 324437.47421 145761.76130 -6960.37205 0.86518 0.19770 8.92256 8.92256 898019.90711 713767.32148 351007.38813 257838.76971 316029.13740 148849.13909 22444.87867 22444.87864 23355.48652 48021.54929 14738.49166 4080.12412 167759.65858 167759.65862 10043.49695 168.50259 37.33627 100.00000 10544.68990 5305.01296 4738.48400 0.02176 0.00000 1.63522 4780.74948 8945.40850 14628.54168 14628.54168 124714.97422 14851.91653 4939.72944 1.02700 1666.06113 84.81627 5168.08595 38403.14804 25803.45536 21558.56827 0.06400 15.62599 0.11809 1.18232 223165.10799 37.20270 28.57199 37.25411 37.35175 30.34612 30.34612 30.36300 30.39541 30.36300 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 115769.56572 79881.00058 35888.56514 -3338.41012 0.52399 0.20924 6.24796 6.24796 202165.15891 155831.46736 76632.81082 56292.00491 68996.27158 37576.47258 4853.59174 4853.59174 5058.13596 10697.51806 149228.44157 14684.15420 1592381.08491 1592381.08502 108523.98182 2407.74203 38.05288 100.00000 -50744.28345 31277.21891 77246.76291 0.02176 0.00000 1.00000 17681.55872 91663.52858 150092.73770 150092.73770 1056235.66868 148332.94798 21346.18137 1.02700 15415.41274 1296.93604 23559.47281 174353.73400 152999.50124 347561.22534 0.08153 12.26542 0.24965 1.04811 -1073938.64314 37.25099 29.80410 37.21151 37.26701 30.25293 30.25293 30.39531 30.39237 30.39531 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 964572.14010 684846.22213 279725.91796 26270.54303 0.98598 0.17475 5.86949 5.86949 1991726.39237 1797878.06595 884137.53917 649459.07949 796032.31505 170600.52373 24302.80373 24302.80371 24423.76894 112377.60324 4332028.74791 43152.31832 + 16406.41506 4557.83954 244850.32480 244850.32481 11808.20438 322.61266 36.63161 100.00000 -5569.50154 9047.31403 2760.89035 0.02176 0.00000 0.74787 7502.33363 12753.20217 16528.44343 16528.44343 128083.83364 16260.40415 6663.14089 1.02700 1518.34143 132.36222 6897.95032 32507.89987 16350.45488 25055.02273 0.07542 13.25953 0.16779 1.03345 -117871.42858 35.88627 31.48047 35.85458 35.97434 31.57896 31.57896 31.59460 31.60604 31.59460 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 115330.63147 77271.52357 38059.10790 3855.43820 0.85593 0.19782 8.61939 8.61939 225393.65351 190456.33547 93660.18675 68799.76917 84326.85182 31808.12338 6818.12706 6818.12705 7019.97869 12481.50507 150405.35004 116200.50706 1322823.03470 151082.61829 151100.50581 28640.77656 34204.84298 872.39757 33332.44541 9427.24571 38068.02227 312119.21094 7960.62867 304158.58227 -948809.26595 123614.46942 35.06771 37.16635 34.96675 34.96675 34.18818 35.36576 34.18960 112337.32777 4036.26409 23672.25902 23672.25899 11036.76741 23672.25914 38745.29049 162038.15181 33307.10007 2468645.86680 2468645.86713 111603.03077 1505.38029 36.01706 100.00000 7830.30329 75096.76271 36506.26806 0.02176 0.00000 0.16463 44048.80499 127581.89902 161329.66481 161329.66479 1389303.93189 163042.26594 40197.15894 1.02700 16606.15625 1628.51378 42967.46342 341365.98656 24076.22005 231463.19681 0.05377 18.59642 0.14651 0.94413 165718.51205 35.83530 36.79116 35.84004 35.83934 34.48117 34.48117 34.75555 34.73899 34.75555 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1261722.03288 870588.20697 391133.82591 -24623.84827 3.14574 0.21592 9.10358 9.10358 2195060.54141 1757604.93862 864332.53240 634910.95605 778200.89747 334017.64512 42029.38354 42029.38350 42258.97642 116884.33005 72327.94452 16223.04412 857673.72847 857673.72854 49076.44426 624.36141 36.48515 100.00000 9911.52281 30806.33740 18270.10686 0.02176 0.00000 0.55484 22853.00179 52004.37576 72063.90320 72063.90320 600618.03879 72703.54222 20150.94313 1.02700 8291.50901 544.86826 21363.39588 171795.43980 25473.48143 242932.92017 0.05348 18.69901 0.13004 0.92571 209764.85872 36.03693 37.40151 36.04063 36.04007 34.76275 34.76275 35.02567 35.01582 35.02567 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 548613.66303 378543.42963 170070.23340 -9248.22348 1.66476 0.20937 8.52113 8.52113 981411.83645 772282.34720 379783.16055 278976.52907 341937.37414 168097.31096 21032.29159 21032.29157 21099.35456 52254.29042 5594.15634 5439.84695 128.59477 2397.12000 2527.31001 217498.72530 34.47892 34.47892 1103.16447 2373.00062 37586.73153 7628.72145 1258676.07648 1258676.07659 27189.05582 421.29702 36.51202 100.00000 6828.54364 16832.92954 10356.12628 0.02176 0.00000 0.56895 11298.44606 65879.01467 37405.64490 37405.64490 335664.32833 37821.41316 9730.23169 1.02700 3807.60169 528.57808 10623.03331 86720.55517 16125.62011 135569.70734 0.05609 17.82920 0.14234 0.99370 144517.50986 37.23805 35.02352 37.25222 37.25277 34.05159 34.05159 34.31217 34.29152 34.31217 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 269785.31365 180756.16216 89029.15149 -6213.47409 1.42539 0.19148 9.67630 9.67630 550684.74299 421568.38183 207313.52037 152285.86281 186654.51268 84853.78028 10331.85904 10331.85903 10441.94668 28234.17175 10209.34857 828.13994 78340.62920 78340.62920 7085.28618 86.06586 34.01119 100.00000 45663.93941 2129.93550 4955.35068 0.02176 0.00000 9.25925 1292.41645 5585.06671 10114.39795 10114.39795 63645.42899 10304.51221 959.85718 1.02700 1387.48100 81.57112 1147.09615 24738.79971 54086.71673 39860.22346 0.06065 16.48800 0.17580 1.06586 966419.30549 33.41475 31.03163 33.47600 33.47606 25.75941 25.75941 26.88941 26.87220 26.88941 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 58060.36228 33094.40679 24965.95550 -2553.16557 0.26577 0.16831 2.62369 2.62369 142345.89588 111478.67581 54821.56090 40270.16031 49358.53539 24206.26244 1048.31259 1048.31259 1052.14553 7540.42968 33.76329 31.82282 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 29020.41349 31037.89656 1.07755 29.99051 34.93218 34.93218 35.43809 0.16691 3907.66931 24942.09517 24942.09514 12139.93188 66724.50564 18266.18134 876394.94071 876394.94079 46283.91605 809.42356 37.27992 100.00000 12083.33998 28982.86688 17301.04917 0.02176 0.00000 0.85628 20964.36743 49569.94443 66510.56931 66510.56931 543088.23877 66999.33225 22185.54253 1.02700 7547.71871 1105.08971 24083.24328 155470.53742 60186.97047 172690.05571 0.05512 18.14208 0.13262 0.88273 255728.57011 37.24847 36.56730 37.25845 37.25909 33.80939 33.80939 34.14832 34.02596 34.14832 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 493518.29434 340527.62498 152990.66936 -7305.56449 0.87827 0.19770 8.92256 8.92256 917776.33341 729470.19305 358729.54607 263511.21931 322981.77429 152123.81843 22938.66574 22938.66571 23869.30695 49078.02280 15062.73832 4169.88681 176079.53011 176079.53016 10264.45378 172.20965 38.34435 100.00000 11067.64244 5421.72318 4842.73060 0.02176 0.00000 1.63522 4885.92591 9389.04705 14950.36943 14950.36943 130900.08803 15178.65852 5048.40343 1.02700 1702.71446 86.68223 5281.78378 39248.01742 25803.45536 22627.74379 0.06400 15.62599 0.11809 1.18232 234232.75044 38.20717 29.34344 38.25997 38.36025 31.16546 31.16546 31.18280 31.21609 31.18280 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 121511.04098 83842.61853 37668.42245 -3503.97542 0.53192 0.20924 6.24796 6.24796 206612.79008 159259.75767 78318.73171 57530.42834 70514.18872 38403.15483 4960.37070 4960.37070 5169.41489 10932.86332 152511.46556 15007.20542 1671353.62458 1671353.62469 110911.50817 2460.71233 39.08031 100.00000 -53260.89430 31965.31736 78946.19081 0.02176 0.00000 1.00000 18070.55281 96209.48922 153394.77620 153394.77619 1108618.61550 151596.27114 21815.79711 1.02700 15754.55163 1325.46861 24077.78094 178189.51409 152999.50124 364798.17489 0.08153 12.26542 0.24965 1.04811 -1127199.53744 38.25677 30.60881 38.21622 38.27322 31.06976 31.06976 31.21598 31.21296 31.21598 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1012409.12629 718810.48257 293598.64372 27573.40436 1.00133 0.17475 5.86949 5.86949 2035544.34781 1837431.36020 903588.55378 663747.17106 813545.01587 174353.73318 24837.46514 24837.46511 24961.09158 114849.90920 4546871.35828 44101.66883 + 16767.35600 4658.11195 256993.43057 256993.43056 12067.98474 329.71013 37.62066 100.00000 -5845.71542 9246.35483 2821.62991 0.02176 0.00000 0.74787 7667.38488 13385.68443 16892.06899 16892.06900 134436.02272 16618.13285 6809.72992 1.02700 1551.74493 135.27419 7049.70515 33223.07346 16350.45488 26297.60139 0.07542 13.25953 0.16779 1.03345 -123717.14400 36.85519 32.33045 36.82265 36.94565 32.43159 32.43159 32.44766 32.45940 32.44766 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 121050.33829 81103.72718 39946.61111 4046.64478 0.86850 0.19782 8.61939 8.61939 230352.31114 194646.37246 95720.70969 70313.36324 86182.04152 32507.90179 6968.12577 6968.12576 7174.41814 12756.09803 153714.26600 118756.91688 1388427.11336 154406.43415 154424.71520 29270.87331 34957.34913 891.59031 34065.75882 9634.64501 38905.51831 318985.83108 8135.76240 310850.06868 -995864.50767 126333.98622 36.01454 38.16984 35.91085 35.91085 35.11126 36.32064 35.11272 114808.74769 4125.06185 24193.04845 24193.04841 11279.57617 24193.04857 39597.68643 165602.98930 34039.85589 2591075.87750 2591075.87764 114058.29618 1538.49864 36.98953 100.00000 8218.63899 76748.89061 37309.40557 0.02176 0.00000 0.16463 45017.87818 133909.19526 164878.91559 164878.91555 1458205.06536 166629.19388 41081.49597 1.02700 16971.49148 1664.34106 43912.74712 348876.03808 24076.22005 242942.38137 0.05377 18.59642 0.14651 0.94413 173937.15104 36.80286 37.78453 36.80773 36.80700 35.41216 35.41216 35.69395 35.67694 35.69395 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1324295.87010 913764.15513 410531.71497 -25845.04368 3.19333 0.21592 9.10358 9.10358 2243351.84717 1796272.22538 883347.83737 648878.98921 795321.30754 341366.03093 42954.02949 42954.02944 43188.67341 119455.78384 73919.15845 16579.95090 900209.19516 900209.19516 50156.12546 638.09736 37.47025 100.00000 10403.07468 31484.07646 18672.04900 0.02176 0.00000 0.55484 23355.76756 54583.48065 73649.30824 73649.30823 630405.08732 74303.01929 20594.26364 1.02700 8473.92211 556.85535 21833.39034 175574.93838 25473.48143 254980.93413 0.05348 18.69901 0.13004 0.92571 220167.93340 37.00992 38.41135 37.01373 37.01315 35.70134 35.70134 35.97136 35.96124 35.97136 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 575821.60668 397316.91095 178504.69573 -9706.87982 1.68995 0.20937 8.52113 8.52113 1003002.88453 789272.54880 388138.38519 285114.00915 349459.99198 171795.45012 21495.00176 21495.00174 21563.54012 53403.88417 5717.22771 5559.52351 131.42386 2449.85661 2582.91080 228285.35596 35.40985 35.40985 1127.43407 2425.20660 38413.63919 7796.55323 1321098.85150 1321098.85149 27787.21473 430.56555 37.49785 100.00000 7167.19825 17203.25379 10583.96095 0.02176 0.00000 0.56895 11547.01175 69146.21835 38228.56866 38228.56865 352311.26388 38653.48381 9944.29668 1.02700 3891.36888 540.20679 10856.73992 88628.40703 16125.62011 142293.15067 0.05609 17.82920 0.14234 0.99370 151684.70811 38.24348 35.96915 38.25803 38.25859 34.97098 34.97098 35.23860 35.21739 35.23860 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 283165.04553 189720.58274 93444.46279 -6521.62511 1.44632 0.19148 9.67630 9.67630 562799.80073 430842.88095 211874.41524 155636.14991 190760.90964 86720.56274 10559.15982 10559.15981 10671.66939 28855.32317 10433.95412 846.35901 82225.85397 82225.85397 7241.16240 87.95930 34.92949 100.00000 47928.59691 2176.79406 5064.36834 0.02176 0.00000 9.25925 1320.84960 5862.05248 10336.91459 10336.91459 66801.86010 10531.21136 980.97402 1.02700 1418.00557 83.36568 1172.33225 25283.05304 54086.71673 41837.05117 0.06065 16.48800 0.17580 1.06586 1014347.90240 34.31694 31.86948 34.37986 34.37991 26.45491 26.45491 27.61542 27.59775 27.61542 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 60939.80762 34735.69065 26204.11697 -2679.78726 0.26909 0.16831 2.62369 2.62369 145477.50383 113931.20527 56027.63455 41156.10333 50444.42255 24738.79992 1071.37545 1071.37545 1075.29272 7706.31905 34.67490 32.68204 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 29658.86225 31720.72992 1.07755 30.80025 35.87534 35.87534 36.39492 0.16691 3993.63799 25490.82098 25490.82094 12407.01024 68192.44398 18668.03711 919858.86713 919858.86714 47302.16166 827.23087 38.28648 100.00000 12682.60134 29620.48961 17681.67206 0.02176 0.00000 0.85628 21425.58328 52028.31612 67973.80106 67973.80106 570022.15462 68473.31678 22673.62420 1.02700 7713.76842 1129.40167 24613.07435 158890.88775 60186.97047 181254.44541 0.05512 18.14208 0.13262 0.88273 268411.17145 38.25418 37.55462 38.26442 38.26508 34.72224 34.72224 35.07032 34.94466 35.07032 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 517993.83850 357415.75064 160578.08786 -7667.87635 0.89156 0.19770 8.92256 8.92256 937967.40081 745518.52756 366621.59135 269308.46270 330087.36908 155470.54065 23443.31612 23443.31609 24394.43143 50157.73871 15394.11840 4261.62427 184812.01734 184812.01737 10490.27165 175.99826 39.37965 100.00000 11616.53019 5541.00103 4949.27062 0.02176 0.00000 1.63522 4993.41622 9854.68743 15279.27738 15279.27738 137391.94638 15512.58882 5159.46825 1.02700 1740.17416 88.58924 5397.98297 40111.47391 25803.45536 23749.94400 0.06400 15.62599 0.11809 1.18232 245849.28063 39.23877 30.13571 39.29299 39.39597 32.00693 32.00693 32.02473 32.05892 32.02473 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 127537.25895 88000.70895 39536.55000 -3677.75180 0.53996 0.20924 6.24796 6.24796 211158.26906 162763.47031 80041.74284 58796.09707 72065.50000 39248.02409 5069.49879 5069.49879 5283.14195 11173.38618 155866.71603 15337.36377 1754242.72808 1754242.72815 113351.56007 2514.84797 40.13548 100.00000 -55902.31388 32668.55396 80683.00610 0.02176 0.00000 1.00000 18468.10476 100980.90224 156769.45951 156769.45950 1163599.44204 154931.38738 22295.74439 1.02700 16101.15158 1354.62891 24607.49184 182109.68130 152999.50124 382889.97362 0.08153 12.26542 0.24965 1.04811 -1183101.85132 39.28970 31.43525 39.24806 39.30660 31.90864 31.90864 32.05881 32.05571 32.05881 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1062618.53980 754459.16643 308159.37337 28940.87980 1.01692 0.17475 5.86949 5.86949 2080326.29775 1877854.82644 923467.49043 678349.60042 831442.99586 178189.51318 25383.88909 25383.88906 25510.23531 117376.60587 4772368.87190 45071.90504 + 17136.23764 4760.59036 269738.76149 269738.76147 12333.48027 336.96375 38.63642 100.00000 -6135.62787 9449.77453 2883.70574 0.02176 0.00000 0.74787 7836.06726 14049.53403 17263.69432 17263.69432 141103.24225 16983.73158 6959.54390 1.02700 1585.88330 138.25022 7204.79858 33953.98085 16350.45488 27601.80450 0.07542 13.25953 0.16779 1.03345 -129852.77187 37.85029 33.20337 37.81687 37.94318 33.30724 33.30724 33.32374 33.33581 33.32374 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 127053.70822 85125.98508 41927.72314 4247.33405 0.88126 0.19782 8.61939 8.61939 235420.05918 198928.59022 97826.56412 71860.25636 88078.04536 33223.07532 7121.42446 7121.42445 7332.25525 13036.73204 157095.97808 121369.56768 1457284.76038 157803.37393 157822.05716 29914.83218 35726.41040 911.20529 34815.20511 9846.60708 39761.43926 326003.51668 8314.74907 317688.76761 -1045253.40682 129113.33237 36.98693 39.20042 36.88045 36.88045 36.05927 37.30129 36.06077 117334.53882 4215.81316 24725.29523 24725.29520 11527.72671 24725.29536 40468.83507 169246.25319 34788.73233 2719577.68186 2719577.68160 116567.57741 1572.34559 37.98824 100.00000 8626.23378 78437.36531 38130.21210 0.02176 0.00000 0.16463 46008.27098 140550.28753 168506.24986 168506.24978 1530523.28149 170295.03421 41985.28841 1.02700 17344.86410 1700.95655 44878.82705 356551.31053 24076.22005 254990.86454 0.05377 18.59642 0.14651 0.94413 182563.38482 37.79653 38.80471 37.80153 37.80079 36.36829 36.36829 36.65769 36.64022 36.65769 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1389972.99396 959081.37109 430891.62287 -27126.80320 3.24164 0.21592 9.10358 9.10358 2292705.56143 1835790.19234 902781.47897 663154.31902 812818.36656 348876.08116 43899.01764 43899.01759 44138.82372 122083.80959 75545.37908 16944.70963 944854.16578 944854.16562 51259.55964 652.13549 38.48195 100.00000 10919.00457 32176.72577 19082.83388 0.02176 0.00000 0.55484 23869.59417 57290.49372 75269.59216 75269.59215 661669.39475 75937.68485 21047.33720 1.02700 8660.34828 569.10617 22313.72467 179437.58586 25473.48143 267626.45723 0.05348 18.69901 0.13004 0.92571 231086.93796 38.00919 39.44845 38.01310 38.01251 36.66528 36.66528 36.94259 36.93220 36.94259 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 604378.90102 417021.44426 187357.45676 -10188.28277 1.71551 0.20937 8.52113 8.52113 1025068.93541 806636.53465 396677.42466 291386.51370 357148.10731 175574.94829 21967.89155 21967.89152 22037.93775 54578.76897 5843.00665 5681.83297 134.31518 2503.75343 2639.73480 239606.93874 36.36592 36.36592 1152.23761 2478.56112 39258.73881 7968.07731 1386617.42156 1386617.42135 28398.53314 440.03799 38.51029 100.00000 7522.64807 17581.72517 10816.80798 0.02176 0.00000 0.56895 11801.04587 72575.45581 39069.59673 39069.59672 369783.78758 39503.86001 10163.07109 1.02700 3976.97895 552.09133 11095.58807 90578.23159 16125.62011 149350.03642 0.05609 17.82920 0.14234 0.99370 159207.35618 39.27605 36.94032 39.29099 39.29157 35.91520 35.91520 36.19004 36.16826 36.19004 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 297208.33177 199129.58475 98078.74702 -6845.05860 1.46757 0.19148 9.67630 9.67630 575181.38966 440321.41902 216535.64978 159060.14330 194957.64731 88628.41439 10791.46121 10791.46120 10906.44599 29490.13993 10663.50099 864.97889 86303.76257 86303.76256 7400.46788 89.89441 35.87259 100.00000 50305.56787 2224.68350 5175.78438 0.02176 0.00000 9.25925 1349.90827 6152.77509 10564.32659 10564.32659 70114.83123 10762.89789 1002.55544 1.02700 1449.20167 85.19973 1198.12355 25839.27994 54086.71673 43911.91766 0.06065 16.48800 0.17580 1.06586 1064653.47027 35.24350 32.72996 35.30811 35.30817 27.16920 27.16920 28.36104 28.34289 28.36104 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 63962.05615 36458.37234 27503.68381 -2812.68862 0.27245 0.16831 2.62369 2.62369 148678.00711 116437.69035 57260.24181 42061.53709 51554.19922 25283.05323 1094.94570 1094.94570 1098.94915 7875.85797 35.61112 33.56446 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 30311.35688 32418.58561 1.07755 31.63186 36.84398 36.84398 37.37758 0.16691 4081.49798 26051.61874 26051.61871 12679.96432 69692.67694 19078.73370 965478.34349 965478.34336 48342.80866 845.42994 39.32022 100.00000 13311.58254 30272.14002 18070.66864 0.02176 0.00000 0.85628 21896.94586 54608.60837 69469.22388 69469.22389 598291.83111 69979.72895 23172.44366 1.02700 7883.47123 1154.24849 25154.56169 162386.48572 60186.97047 190243.57742 0.05512 18.14208 0.13262 0.88273 281722.75399 39.28705 38.56859 39.29756 39.29824 35.65974 35.65974 36.01722 35.88817 36.01722 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 543683.22274 375141.42597 168541.79677 -8048.15664 0.90505 0.19770 8.92256 8.92256 958602.67138 761919.92521 374687.26150 275233.24534 337349.28684 158890.89069 23959.06880 23959.06877 24931.10863 51261.20835 15732.78884 4355.37996 193977.58354 193977.58353 10721.05752 179.87022 40.44290 100.00000 12192.63936 5662.90299 5058.15453 0.02176 0.00000 1.63522 5103.27132 10343.42081 15615.42131 15615.42131 144205.76197 15853.86559 5272.97650 1.02700 1778.45797 90.53820 5516.73854 40993.92642 25803.45536 24927.79860 0.06400 15.62599 0.11809 1.18232 258041.91999 40.29821 30.94938 40.35390 40.45967 32.87112 32.87112 32.88940 32.92452 32.88940 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 133862.34117 92365.01571 41497.32546 -3860.14647 0.54813 0.20924 6.24796 6.24796 215803.74850 166344.26458 81802.66019 60089.61048 73650.94011 40111.48045 5181.02770 5181.02770 5399.37101 11419.20054 159295.78198 15674.78559 1841242.63353 1841242.63349 115845.29308 2570.17460 41.21914 100.00000 -58674.73196 33387.26177 82458.03131 0.02176 0.00000 1.00000 18874.40285 105988.94875 160218.38581 160218.38580 1221306.98753 158339.87614 22786.25050 1.02700 16455.37671 1384.43073 25148.85637 186116.09213 152999.50124 401879.01693 0.08153 12.26542 0.24965 1.04811 -1241776.58328 40.35052 32.28400 40.30776 40.36788 32.77018 32.77018 32.92440 32.92121 32.92440 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1115318.03878 791875.81098 323442.22780 30376.17384 1.03275 0.17475 5.86949 5.86949 2126093.45005 1919167.60847 943783.76341 693273.28301 849734.73116 182109.68028 25942.33436 25942.33433 26071.46019 119958.88984 5009049.70801 46063.48643 + 17513.23467 4865.32330 283116.18433 283116.18429 12604.81669 344.37695 39.67961 100.00000 -6439.91824 9657.66946 2947.14723 0.02176 0.00000 0.74787 8008.46065 14746.30659 17643.49539 17643.49539 148101.11585 17357.37348 7112.65378 1.02700 1620.77271 141.29172 7363.30406 34700.96819 16350.45488 28970.68824 0.07542 13.25953 0.16779 1.03345 -136292.69011 38.87224 34.09986 38.83792 38.96765 34.20654 34.20654 34.22349 34.23588 34.22349 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 133354.80927 89347.72282 44007.08644 4457.97630 0.89420 0.19782 8.61939 8.61939 240599.29763 203305.01673 99978.74731 73441.18111 90015.76127 33953.98265 7278.09571 7278.09570 7493.56478 13323.53999 160552.08779 124039.69677 1529557.33322 161275.04634 161294.14061 30572.95813 36512.39101 931.25179 35581.13922 10063.23232 40636.19046 333175.59120 8497.67345 324677.91775 -1097091.69880 131953.82411 37.98558 40.25883 37.87622 37.87622 37.03287 38.30843 37.03441 119915.89733 4308.56100 25269.25144 25269.25140 11781.33657 25269.25158 41359.14898 172969.66886 35554.08404 2854452.40445 2854452.40358 119132.06282 1606.93718 39.01393 100.00000 9054.04276 80162.98644 38969.07638 0.02176 0.00000 0.16463 47020.45241 147520.73814 172213.38547 172213.38532 1606428.04692 174041.52301 42908.96427 1.02700 17726.45091 1738.37757 45866.16073 364395.43878 24076.22005 267636.88009 0.05377 18.59642 0.14651 0.94413 191617.42759 38.81704 39.85244 38.82218 38.82141 37.35024 37.35024 37.64745 37.62951 37.64745 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1458907.30878 1006646.04879 452261.25999 -28472.13051 3.29068 0.21592 9.10358 9.10358 2343145.05740 1876177.55466 922642.66068 677743.70607 830700.36087 356551.35246 44864.79553 44864.79547 45109.87734 124769.65191 77207.37654 17317.49305 991713.25912 991713.25874 52387.26937 666.48247 39.52096 100.00000 11460.52146 32884.61336 19502.65601 0.02176 0.00000 0.55484 24394.72497 60131.75846 76925.52232 76925.52230 694484.22423 77608.31303 21510.37837 1.02700 8850.87584 581.62649 22804.62635 183385.21150 25473.48143 280899.12236 0.05348 18.69901 0.13004 0.92571 242547.45943 39.03544 40.51356 39.03945 39.03885 37.65524 37.65524 37.94004 37.92937 37.94004 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 634352.46576 437703.20414 196649.26162 -10693.56042 1.74147 0.20937 8.52113 8.52113 1047620.43917 824382.52803 405404.32290 297797.01327 365005.36108 179437.59536 22451.18491 22451.18488 22522.77213 55779.50122 5971.55273 5806.83322 137.27011 2558.83597 2697.80894 251490.00408 37.34780 37.34780 1177.58682 2533.08943 40122.43062 8143.37492 1455385.31959 1455385.31910 29023.30056 449.71882 39.55007 100.00000 7895.72604 17968.52292 11054.77764 0.02176 0.00000 0.56895 12060.66874 76174.76292 39929.12742 39929.12739 388122.84358 40372.94448 10386.65853 1.02700 4064.47244 564.23734 11339.69088 92570.95225 16125.62011 156756.90131 0.05609 17.82920 0.14234 0.99370 167103.08222 40.33651 37.93771 40.35185 40.35244 36.88491 36.88491 37.16717 37.14480 37.16717 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 311948.08066 209005.21671 102942.86395 -7184.53248 1.48912 0.19148 9.67630 9.67630 587835.37353 450008.48492 221299.43147 162559.46454 199246.71320 90578.23877 11028.87324 11028.87323 11146.38768 30138.92266 10898.09789 884.00842 90583.91094 90583.91094 7563.27809 91.87208 36.84115 100.00000 52800.42236 2273.62651 5289.65158 0.02176 0.00000 9.25925 1379.60624 6457.91579 10796.74165 10796.74165 73592.10585 10999.68152 1024.61165 1.02700 1481.08409 87.07412 1224.48225 26407.74381 54086.71673 46089.68507 0.06065 16.48800 0.17580 1.06586 1117453.89263 36.19508 33.61367 36.26143 36.26149 27.90276 27.90276 29.12678 29.10815 29.12678 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 67134.19006 38266.48869 28867.70137 -2952.18109 0.27585 0.16831 2.62369 2.62369 151948.92143 118999.31807 58519.96641 42986.89039 52688.39096 25839.28010 1119.03449 1119.03449 1123.12601 8049.12676 36.57262 34.47070 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 30978.20638 33131.79411 1.07755 32.48592 37.83877 37.83877 38.38677 0.16691 4171.29089 26624.75405 26624.75402 12958.92339 71225.91501 19498.46562 1013360.27221 1013360.27186 49406.34989 864.02939 40.38186 100.00000 13971.75754 30938.12675 18468.22314 0.02176 0.00000 0.85628 22378.67842 57316.86770 70997.54599 70997.54600 627963.51394 71519.28216 23682.23714 1.02700 8056.90749 1179.64194 25707.96175 165958.98679 60186.97047 199678.51640 0.05512 18.14208 0.13262 0.88273 295694.51152 40.34780 39.60994 40.35860 40.35929 36.62256 36.62256 36.98969 36.85715 36.98969 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 570646.64624 393746.18839 176900.45785 -8447.29647 0.91874 0.19770 8.92256 8.92256 979691.91759 778682.15336 382930.37625 281288.37308 344770.96665 162386.48835 24486.16803 24486.16801 25479.59274 52388.95433 16078.91003 4451.19827 203597.70687 203597.70678 10956.92067 183.82736 41.53486 100.00000 12797.31995 5787.48679 5169.43388 0.02176 0.00000 1.63522 5215.54323 10856.39245 15958.96040 15958.96040 151357.50195 16202.65044 5388.98193 1.02700 1817.58403 92.53004 5638.10673 41895.79287 25803.45536 26164.06772 0.06400 15.62599 0.11809 1.18232 270839.23994 41.38627 31.78501 41.44346 41.55208 33.75864 33.75864 33.77742 33.81348 33.77742 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 140501.10950 96945.76588 43555.34362 -4051.58687 0.55643 0.20924 6.24796 6.24796 220551.42841 170003.83627 83602.31769 61411.58117 75271.25988 40993.93285 5295.01025 5295.01024 5518.15711 11670.42281 162800.28734 16019.63069 1932557.21206 1932557.21187 118393.88819 2626.71841 42.33205 100.00000 -61584.64522 34121.78114 84272.10705 0.02176 0.00000 1.00000 19289.63949 111245.36436 163743.18844 163743.18843 1281876.48088 161823.35160 23287.54774 1.02700 16817.39480 1414.88819 25702.13091 190210.64395 152999.50124 421809.80275 0.08153 12.26542 0.24965 1.04811 -1303361.22850 41.43999 33.15567 41.39607 41.45781 33.65497 33.65497 33.81336 33.81009 33.81336 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1170631.11652 831148.09647 339483.02006 31882.64988 1.04883 0.17475 5.86949 5.86949 2172867.47919 1961389.27123 964546.99411 708525.28639 868428.88437 186116.09099 26513.06542 26513.06539 26645.03202 122597.98402 5257468.49223 47076.88261 + 17898.52563 4972.36035 297157.04706 297157.04700 12882.12252 351.95324 40.75096 100.00000 -6759.29960 9870.13808 3011.98444 0.02176 0.00000 0.74787 8184.64669 15477.63488 18031.65209 18031.65209 155446.04199 17739.23549 7269.13208 1.02700 1656.42969 144.40014 7525.29667 35464.38924 16350.45488 30407.46041 0.07542 13.25953 0.16779 1.03345 -143051.98971 39.92179 35.02056 39.88655 40.01977 35.13012 35.13012 35.14752 35.16024 35.14752 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 139968.40710 93778.83341 46189.57369 4679.06512 0.90733 0.19782 8.61939 8.61939 245892.47927 207777.72459 102178.27852 75056.88619 91996.10690 34700.96993 7438.21373 7438.21372 7658.42312 13616.65771 164084.23186 126768.56867 1605414.19164 164823.09551 164842.60985 31245.56286 37315.66319 951.73932 36363.92387 10284.62332 41530.18617 340505.45118 8684.62216 331820.82902 -1151500.85873 134856.80664 39.01119 41.34582 38.89888 38.89888 38.03276 39.34276 38.03434 122554.04569 4403.34930 25825.17468 25825.17464 12040.52584 25825.17482 42269.04978 176774.99968 36336.27350 2996016.10372 2996016.10212 121752.96691 1642.28978 40.06730 100.00000 9503.06841 81926.57124 39826.39567 0.02176 0.00000 0.16463 48054.90181 154836.88120 176002.07806 176002.07780 1686097.23271 177870.43456 43852.96100 1.02700 18116.43263 1776.62186 46875.21574 372412.13768 24076.22005 280910.06202 0.05377 18.59642 0.14651 0.94413 201120.49599 39.86510 40.92845 39.87037 39.86959 38.35869 38.35869 38.66393 38.64550 38.66393 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1531260.35151 1056569.64868 474690.70283 -29884.17833 3.34047 0.21592 9.10358 9.10358 2394694.22266 1917453.43934 942940.78856 692654.05975 848975.75920 364395.47979 45851.82052 45851.82047 46102.29413 127514.58276 78905.93794 17698.47769 1040896.28241 1040896.28180 53539.78870 681.14507 40.58803 100.00000 12028.89432 33608.07447 19931.71423 0.02176 0.00000 0.55484 24931.40863 63113.93293 78617.88293 78617.88290 728926.47233 79315.69501 21983.60644 1.02700 9045.59499 594.42227 23306.32786 187419.68483 25473.48143 294830.03199 0.05348 18.69901 0.13004 0.92571 254576.35374 40.08940 41.60743 40.09352 40.09289 38.67194 38.67194 38.96442 38.95346 38.96442 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 665812.53941 459410.65514 206401.88427 -11223.89684 1.76781 0.20937 8.52113 8.52113 1070668.07583 842518.93313 414323.21282 304348.54375 373035.47435 183385.22062 22945.11072 22945.11069 23018.27285 57006.64958 6102.92682 5934.58349 140.29005 2615.13033 2757.16070 263962.39813 38.35619 38.35619 1203.49371 2588.81737 41005.12365 8322.52908 1527563.69278 1527563.69201 29661.81286 459.61263 40.61792 100.00000 8287.30640 18363.83022 11297.98264 0.02176 0.00000 0.56895 12326.00331 79952.57409 40807.56779 40807.56773 407371.40661 41261.14881 10615.16490 1.02700 4153.89079 576.65055 11589.16395 94607.51273 16125.62011 164531.10221 0.05609 17.82920 0.14234 0.99370 175390.38862 41.42559 38.96203 41.44135 41.44196 37.88080 37.88080 38.17068 38.14771 38.17068 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 327418.83253 219370.62063 108048.21190 -7540.84227 1.51099 0.19148 9.67630 9.67630 600767.74509 459908.66632 226168.01637 166135.77087 203630.13857 92570.95928 11271.50833 11271.50831 11391.60808 30801.97861 11137.85592 903.45659 95076.32899 95076.32898 7729.67012 93.89327 37.83586 100.00000 55419.00665 2323.64627 5406.02385 0.02176 0.00000 9.25925 1409.95756 6778.18964 11034.26984 11034.26984 77241.83241 11241.67439 1047.15309 1.02700 1513.66792 88.98975 1251.42085 26988.71389 54086.71673 48375.45666 0.06065 16.48800 0.17580 1.06586 1172872.89928 37.17234 34.52124 37.24049 37.24055 28.65614 28.65614 29.91321 29.89407 29.91321 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 70463.64277 40164.27677 30299.36600 -3098.59155 0.27929 0.16831 2.62369 2.62369 155291.79583 121617.30158 59807.40495 43932.60144 53847.53490 26407.74395 1143.65324 1143.65324 1147.83477 8226.20745 37.56008 35.40141 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 31659.72656 33860.69319 1.07755 33.36304 38.86041 38.86041 39.42322 0.16691 4263.05925 27210.49833 27210.49830 13244.01956 72792.88429 19927.43162 1063616.85739 1063616.85681 50493.28902 883.03802 41.47217 100.00000 14664.67338 31618.76517 18874.52384 0.02176 0.00000 0.85628 22871.00909 60159.44050 72559.49117 72559.49118 659106.73420 73092.70554 24203.24608 1.02700 8234.15934 1205.59405 26273.53660 169610.08281 60186.97047 209581.37172 0.05512 18.14208 0.13262 0.88273 310359.18490 41.43719 40.67941 41.44828 41.44899 37.61137 37.61137 37.98841 37.85229 37.98841 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 598947.29370 413273.63531 185673.65839 -8866.23111 0.93264 0.19770 8.92256 8.92256 1001245.12690 795813.15028 391354.83938 287476.71352 352355.92328 165958.98907 25024.86345 25024.86342 26040.14348 53541.51070 16432.64588 4549.12458 213694.93066 213694.93048 11197.97281 187.87156 42.65630 100.00000 13431.98889 5914.81144 5283.16137 0.02176 0.00000 1.63522 5330.28512 11394.80443 16310.05735 16310.05735 158863.92534 16559.10856 5507.53948 1.02700 1857.57086 94.56570 5762.14502 42817.50036 25803.45536 27461.64836 0.06400 15.62599 0.11809 1.18232 284271.22883 42.50370 32.64321 42.56243 42.67398 34.67012 34.67012 34.68941 34.72644 34.68941 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 147469.12091 101753.69376 45715.42715 -4252.52162 0.56484 0.20924 6.24796 6.24796 225403.55721 173743.91849 85441.56763 62762.63520 76927.22665 41895.79920 5411.50041 5411.50040 5639.55649 11927.17197 166381.89177 16372.06238 2028400.44559 2028400.44521 120998.55236 2684.50618 43.47502 100.00000 -64638.87255 34872.45992 86126.09244 0.02176 0.00000 1.00000 19714.01134 116762.46665 167345.53670 167345.53668 1345449.85749 165383.46350 23799.87352 1.02700 17187.37728 1446.01571 26267.57749 194395.27584 152999.50124 442729.03588 0.08153 12.26542 0.24965 1.04811 -1368000.10105 42.55887 34.05087 42.51376 42.57717 34.56366 34.56366 34.72632 34.72296 34.72632 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1228687.39084 872368.05152 356319.33932 33463.83814 1.06516 0.17475 5.86949 5.86949 2220670.53648 2004539.81015 985767.01563 724112.83363 887534.30870 190210.64265 27096.35256 27096.35253 27231.22242 125295.13825 5518207.35631 48112.57349 + 18292.29299 5081.75222 311894.25230 311894.25225 13165.52907 359.69621 41.85123 100.00000 -7094.52038 10087.28100 3078.24806 0.02176 0.00000 0.74787 8364.70882 16245.23268 18428.34823 18428.34822 163155.23238 18129.49847 7429.05290 1.02700 1692.87112 147.57694 7690.85311 36244.60554 16350.45488 31915.48784 0.07542 13.25953 0.16779 1.03345 -150146.51009 40.99968 35.96611 40.96348 41.10031 36.07863 36.07863 36.09650 36.10957 36.09650 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 146909.99970 98429.70050 48480.29920 4911.11861 0.92066 0.19782 8.61939 8.61939 251302.11089 212348.83201 104426.19940 76708.13677 94020.02013 35464.39093 7601.85435 7601.85434 7826.90834 13916.22402 167694.08308 129557.47573 1685033.09476 168449.20172 168469.14537 31932.96488 38136.60735 972.67758 37163.92978 10510.88491 42443.84979 347996.56793 8875.68374 339120.88418 -1208608.38632 137823.65476 40.06449 42.46216 39.94915 39.94915 39.05964 40.40501 39.06126 125250.23329 4500.22293 26393.32823 26393.32819 12305.41728 26393.32837 43198.96840 180664.04779 37135.67114 3144600.51273 3144600.51034 124431.53090 1678.42014 41.14912 100.00000 9974.36291 83728.95492 40702.57599 0.02176 0.00000 0.16463 49112.10910 162515.86097 179874.12193 179874.12148 1769717.53140 181783.58219 44817.72564 1.02700 18514.99397 1815.70753 47906.46997 380605.20380 24076.22005 294841.51398 0.05377 18.59642 0.14651 0.94413 211094.85890 40.94146 42.03352 40.94687 40.94607 39.39438 39.39438 39.70785 39.68893 39.70785 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1607201.67043 1108969.15901 498232.51142 -31366.25572 3.39100 0.21592 9.10358 9.10358 2447377.47055 1959637.39437 963685.47566 707892.44148 867653.21666 372412.17808 46860.56007 46860.56002 47116.54410 130319.90211 80641.86768 18087.84400 1092518.48870 1092518.48790 54717.66345 696.13026 41.68391 100.00000 12625.45503 34347.45173 20370.21173 0.02176 0.00000 0.55484 25479.89934 66244.00540 80347.47546 80347.47540 765076.84932 81060.63939 22467.24553 1.02700 9244.59797 607.49955 23819.06681 191542.91649 25473.48143 309451.83110 0.05348 18.69901 0.13004 0.92571 267201.80877 41.17181 42.73083 41.17605 41.17540 39.71608 39.71608 40.01646 40.00520 40.01646 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 698832.84392 482194.66539 216638.17853 -11780.53477 1.79456 0.20937 8.52113 8.52113 1094222.76041 861054.33911 423438.31827 311044.20786 381242.25007 187419.69361 23449.90289 23449.90286 23524.67459 58260.79520 6237.19114 6065.14425 143.37643 2672.66317 2817.81820 277053.34813 39.39181 39.39181 1229.97056 2645.77132 41907.23594 8505.62463 1603321.68028 1603321.67928 30314.37243 469.72410 41.71461 100.00000 8698.30674 18767.83429 11546.53814 0.02176 0.00000 0.56895 12597.17525 83917.74205 41705.33385 41705.33375 427574.58275 42168.89364 10848.69841 1.02700 4245.27634 589.33686 11844.12543 96688.87750 16125.62011 172690.85676 0.05609 17.82920 0.14234 0.99370 184088.69536 42.54408 40.01400 42.56027 42.56089 38.90358 38.90358 39.20129 39.17770 39.20129 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 343656.84070 230250.08621 113406.75448 -7914.82293 1.53318 0.19148 9.67630 9.67630 613984.62899 470026.65187 231143.71022 169790.75599 208109.99936 94607.51967 11519.48139 11519.48137 11642.22334 31479.62180 11382.88862 923.33263 99791.54399 99791.54398 7899.72278 95.95892 38.85743 100.00000 58167.45700 2374.76646 5524.95632 0.02176 0.00000 9.25925 1440.97661 7114.34715 11277.02365 11277.02365 81072.56349 11488.99109 1070.19045 1.02700 1546.96860 90.94752 1278.95209 27582.46530 54086.71673 50774.58880 0.06065 16.48800 0.17580 1.06586 1231040.35628 38.17600 35.45331 38.24598 38.24604 29.42985 29.42985 30.72086 30.70121 30.72086 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 73958.21634 42156.18373 31802.03261 -3252.26309 0.28278 0.16831 2.62369 2.62369 158708.21344 124292.88071 61123.16711 44899.11813 55032.18001 26988.71400 1168.81360 1168.81360 1173.08712 8407.18392 38.57421 36.35724 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 32356.24018 34605.62805 1.07755 34.26384 39.90965 39.90965 40.48764 0.16691 4356.84650 27809.12898 27809.12895 13535.38784 74394.32689 20365.83488 1116365.86781 1116365.86706 51604.14079 902.46485 42.59192 100.00000 15391.95388 32314.37764 19289.76315 0.02176 0.00000 0.85628 23374.17103 63142.98792 74155.79913 74155.79913 691794.47138 74700.74421 24735.71721 1.02700 8415.31073 1232.11711 26851.55410 173341.50287 60186.97047 219975.34921 0.05512 18.14208 0.13262 0.88273 325751.13879 42.55599 41.77776 42.56738 42.56812 38.62687 38.62687 39.01409 38.87431 39.01410 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 628651.48346 433769.52639 194881.95707 -9305.94222 0.94675 0.19770 8.92256 8.92256 1023272.50653 813321.02893 399964.64056 293801.19733 360107.74883 169610.08473 25575.41016 25575.41013 26613.02634 54719.42331 16794.16392 4649.20527 224292.91624 224292.91598 11444.32810 192.00473 43.80802 100.00000 14098.13338 6044.93723 5399.39087 0.02176 0.00000 1.63522 5447.55133 11959.91844 16668.87843 16668.87843 166742.62234 16923.40875 5628.70530 1.02700 1898.43740 96.64614 5888.91216 43759.48540 25803.45536 28823.58122 0.06400 15.62599 0.11809 1.18232 298369.36221 43.65130 33.52457 43.71162 43.82618 35.60622 35.60622 35.62602 35.66406 35.62602 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 154782.70390 106800.06600 47982.63789 -4463.42159 0.57339 0.20924 6.24796 6.24796 230362.43280 177566.28249 87321.28105 64143.41240 78619.62468 42817.50661 5530.55335 5530.55334 5763.62666 12189.56962 170042.29146 16732.24756 2128996.92823 2128996.92774 123660.51912 2743.56529 44.64884 100.00000 -67844.57097 35639.65364 88020.86549 0.02176 0.00000 1.00000 20147.71936 122553.18411 171027.13658 171027.13655 1412176.09196 169021.89781 24323.47046 1.02700 17565.49936 1477.82804 26845.46389 198671.96958 152999.50124 464685.73735 0.08153 12.26542 0.24965 1.04811 -1435844.67203 43.70796 34.97024 43.66164 43.72676 35.49687 35.49687 35.66393 35.66048 35.66393 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1289622.90785 915632.26888 373990.63897 35123.44398 1.08175 0.17475 5.86949 5.86949 2269525.26060 2048639.66055 1007453.87736 740043.30669 907060.05212 194395.27437 27692.47201 27692.47198 27830.30901 128051.62984 5791877.30223 49171.04955 + 18694.72323 5193.55071 327362.33449 327362.33445 13455.17056 367.60952 42.98122 100.00000 -7446.36612 10309.20107 3145.96949 0.02176 0.00000 0.74787 8548.73231 17050.89873 18833.77168 18833.77167 171246.75235 18528.34723 7592.49198 1.02700 1730.11427 150.82363 7860.05179 37041.98659 16350.45488 33498.30438 0.07542 13.25953 0.16779 1.03345 -157592.87622 42.10667 36.93720 42.06950 42.21002 37.05275 37.05275 37.07111 37.08453 37.07111 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 154195.85363 103311.22267 50884.63096 5154.68053 0.93418 0.19782 8.61939 8.61939 256830.75442 217020.50381 106723.57455 78395.71487 96088.45946 36244.60719 7769.09506 7769.09505 7999.10023 14222.38078 171383.35098 132407.73871 1768600.61719 172155.08223 172175.46463 32635.48974 38975.61227 994.07647 37981.53580 10742.12426 43377.61400 355652.48908 9070.94868 346581.54041 -1268548.10415 140855.77352 41.14624 43.60864 41.02777 41.02777 40.11425 41.49595 40.11592 128005.73698 4599.22779 26973.98115 26973.98111 12576.13632 26973.98129 44149.34521 184638.65502 37952.65553 3300553.81669 3300553.81321 127169.02334 1715.34537 42.26015 100.00000 10469.03060 85570.99106 41598.03228 0.02176 0.00000 0.16463 50192.57495 170575.67214 183831.35081 183831.35009 1857484.89435 185782.81913 45803.71511 1.02700 18922.32369 1855.65308 48960.41178 388978.51725 24076.22005 309463.88217 0.05377 18.59642 0.14651 0.94413 221563.88949 42.04688 43.16843 42.05244 42.05162 40.45803 40.45803 40.77997 40.76053 40.77997 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1686909.22220 1163967.36980 522941.85240 -32921.83611 3.44231 0.21592 9.10358 9.10358 2501219.75181 2002749.39803 984886.54665 723466.06817 886741.57887 380605.24410 47891.49190 47891.49185 48153.10757 133186.93853 82415.98786 18485.77637 1146700.84695 1146700.84596 55921.45145 711.44511 42.80937 100.00000 13251.60151 35103.09528 20818.35616 0.02176 0.00000 0.55484 26040.45683 69529.31080 82115.11902 82115.11892 803020.06819 82843.97255 22961.52468 1.02700 9447.97902 620.86454 24343.08601 195756.85918 25473.48143 324798.78365 0.05348 18.69901 0.13004 0.92571 280453.41028 42.28345 43.88456 42.28780 42.28714 40.78841 40.78841 41.09690 41.08534 41.09690 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 733490.75739 506108.62577 227382.13162 -12364.77867 1.82171 0.20937 8.52113 8.52113 1118295.64817 879997.52414 432753.95606 317887.17658 389629.57486 191542.92500 23965.80049 23965.80046 24042.21717 59542.53203 6374.40927 6198.57736 146.53071 2731.46173 2879.81017 290793.53070 40.45539 40.45539 1257.02990 2703.97826 42829.19471 8692.74829 1682836.80963 1682836.80841 30981.28833 480.05803 42.84090 100.00000 9129.69018 19180.72646 11800.56187 0.02176 0.00000 0.56895 12874.31296 88079.55868 42622.85079 42622.85061 448779.71512 43096.60888 11087.36965 1.02700 4338.67238 602.30226 12104.69605 98816.03228 16125.62011 181255.28609 0.05609 17.82920 0.14234 0.99370 193218.38554 43.69278 41.09438 43.70940 43.71004 39.95398 39.95398 40.25973 40.23550 40.25973 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 360700.15644 241669.10779 119031.04865 -8307.35085 1.55570 0.19148 9.67630 9.67630 627492.28471 480367.23340 236228.86947 173526.15087 212688.41721 96688.88445 11772.90986 11772.90984 11898.35213 32172.17315 11633.31203 943.64594 104740.60536 104740.60534 8073.51659 98.07001 39.90658 100.00000 61052.21400 2427.01130 5646.50529 0.02176 0.00000 9.25925 1472.67808 7467.17606 11525.11804 11525.11804 85093.27584 11741.74876 1093.73463 1.02700 1581.00189 92.94837 1307.08902 28189.27923 54086.71673 53292.70349 0.06065 16.48800 0.17580 1.06586 1292092.57028 39.20675 36.41055 39.27863 39.27869 30.22446 30.22446 31.55033 31.53014 31.55033 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 77626.09979 44246.87732 33379.22246 -3413.55582 0.28631 0.16831 2.62369 2.62369 162199.79222 127027.32258 62467.87605 45886.89818 56242.88729 27582.46538 1194.52748 1194.52748 1198.89503 8592.14186 39.61571 37.33889 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 33068.07710 35366.95146 1.07755 35.18896 40.98721 40.98721 41.58081 0.16691 4452.69707 28420.92951 28420.92947 13833.16622 76031.00121 20813.88300 1171730.91297 1171730.91208 52739.43130 922.31907 43.74190 100.00000 16155.30334 33025.29358 19714.13772 0.02176 0.00000 0.85628 23888.40253 66274.50152 75787.22584 75787.22583 726103.32435 76344.15971 25279.90270 1.02700 8600.44744 1259.22367 27442.28798 177155.01410 60186.97047 230884.80558 0.05512 18.14208 0.13262 0.88273 341906.44212 43.70500 42.90576 43.71670 43.71746 39.66980 39.66980 40.06748 39.92391 40.06748 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 659828.82282 455281.89065 204546.93217 -9767.46019 0.96107 0.19770 8.92256 8.92256 1045784.48836 831214.08083 408763.85727 300264.81970 368030.11444 173341.50442 26138.06889 26138.06886 27198.51261 55923.24999 17163.63536 4751.48774 235416.49845 235416.49812 11696.10321 196.22883 44.99083 100.00000 14797.31437 6177.92579 5518.17742 0.02176 0.00000 1.63522 5567.39740 12553.05877 17035.59357 17035.59356 175012.05552 17295.72354 5752.53676 1.02700 1940.20301 98.77236 6018.46817 44722.19409 25803.45536 30253.05778 0.06400 15.62599 0.11809 1.18232 313166.67658 44.82988 34.42974 44.89183 45.00949 36.56759 36.56759 36.58792 36.62699 36.58792 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 162458.99675 112096.70803 50362.28872 -4684.78104 0.58206 0.20924 6.24796 6.24796 235430.40367 181472.73853 89242.34816 65554.56669 80349.25546 43759.49160 5652.22545 5652.22545 5890.42638 12457.74001 173783.21990 17100.35681 2234582.39268 2234582.39209 126381.04913 2803.92369 45.85436 100.00000 -71209.25260 36423.72560 89957.32353 0.02176 0.00000 1.00000 20590.96896 128631.08646 174789.73161 174789.73157 1482211.54716 172740.37764 24858.58653 1.02700 17951.94012 1510.34025 27436.06378 203042.75052 152999.50124 487731.35936 0.08153 12.26542 0.24965 1.04811 -1507053.92463 44.88807 35.91444 44.84050 44.90738 36.45529 36.45529 36.62686 36.62331 36.62686 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1353580.46070 961042.13168 392538.32902 36865.35636 1.09859 0.17475 5.86949 5.86949 2319454.78834 2093709.70742 1029617.84986 756324.24998 927015.36172 198671.96791 28301.70608 28301.70605 28442.57549 130868.76422 6079119.63406 50252.81209 + 19106.00693 5307.80877 343597.54074 343597.54068 13751.18416 375.69693 44.14171 100.00000 -7815.66136 10536.00338 3215.18078 0.02176 0.00000 0.74787 8736.80433 17896.52098 19248.11444 19248.11443 179739.56316 18935.97066 7759.52672 1.02700 1768.17676 154.14175 8032.97284 37856.91000 16350.45488 35159.61911 0.07542 13.25953 0.16779 1.03345 -165408.53758 43.24355 37.93450 43.20537 43.34969 38.05318 38.05318 38.07203 38.08581 38.07203 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 161843.04217 108434.83903 53408.20314 5410.32159 0.94790 0.19782 8.61939 8.61939 262481.02818 221794.95246 109071.49198 80120.41971 98202.40448 37041.98822 7940.01506 7940.01505 8175.08035 14535.27300 175153.78274 135320.70744 1856312.58664 175942.49208 175963.32288 33353.47014 39833.07530 1015.94614 38817.12915 10978.45087 44331.92102 363476.84036 9270.50944 354206.33093 -1331460.47179 143954.59886 42.25718 44.78607 42.13552 42.13552 41.19734 42.61634 41.19905 130821.86172 4700.41074 27567.40844 27567.40840 12852.81118 27567.40857 45120.63032 188700.70370 38787.61361 3464241.46880 3464241.46360 129966.74068 1753.08296 43.40117 100.00000 10988.23059 87453.55204 42513.18863 0.02176 0.00000 0.16463 51296.81105 179035.20175 187875.63885 187875.63769 1949604.99077 189870.03939 46811.39636 1.02700 19338.61470 1896.47744 50037.54033 397536.04351 24076.22005 324811.43181 0.05377 18.59642 0.14651 0.94413 232552.12008 43.18214 44.33397 43.18786 43.18701 41.55039 41.55039 41.88102 41.86107 41.88102 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1770569.78901 1221693.16064 548876.62837 -34554.56511 3.49438 0.21592 9.10358 9.10358 2556246.56649 2046809.86841 1006554.04250 739382.31560 906249.88622 388978.55821 48945.10426 48945.10420 49212.47547 136117.04984 84229.13870 18892.46325 1203570.32548 1203570.32426 57151.72278 727.09690 43.96523 100.00000 13908.80105 35875.36300 21276.35978 0.02176 0.00000 0.55484 26613.34660 72977.54776 83921.65075 83921.65058 842845.04318 84666.53903 23466.67797 1.02700 9655.83445 634.52355 24878.63364 200063.50854 25473.48143 340906.85288 0.05348 18.69901 0.13004 0.92571 294362.21133 43.42510 45.06945 43.42957 43.42889 41.88970 41.88970 42.20652 42.19465 42.20652 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 769867.49542 531208.57502 238658.92040 -12977.99763 1.84927 0.20937 8.52113 8.52113 1142898.13992 899357.45964 442274.53803 324880.69071 398201.42094 195756.86757 24493.04784 24493.04781 24571.14569 60852.46708 6514.64620 6334.94599 149.75439 2791.55385 2943.16596 305215.14397 41.54768 41.54768 1284.68454 2763.46575 43771.43660 8883.98867 1766295.41271 1766295.41120 31662.87639 490.61930 43.99760 100.00000 9582.46758 19602.70227 12060.17412 0.02176 0.00000 0.56895 13157.54770 92447.77660 43560.55312 43560.55283 471036.49478 44044.73388 11331.29167 1.02700 4434.12314 615.55290 12370.99924 100989.98444 16125.62011 190244.45962 0.05609 17.82920 0.14234 0.99370 202800.85312 44.87248 42.20393 44.88955 44.89021 41.03274 41.03274 41.34674 41.32185 41.34674 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 378588.71818 253654.44409 124934.27408 -8719.34586 1.57855 0.19148 9.67630 9.67630 641297.10948 490935.30823 241425.90247 177343.72462 217367.56046 98816.03937 12031.91376 12031.91375 12160.11576 32879.96067 11889.24477 964.40614 109935.11048 109935.11044 8251.13386 100.22755 40.98406 100.00000 64080.03764 2480.40552 5770.72834 0.02176 0.00000 9.25925 1505.07698 7837.50316 11778.67050 11778.67050 89313.39138 12000.06710 1117.79678 1.02700 1615.78391 94.99323 1335.84496 28809.44305 54086.71673 55935.70154 0.06065 16.48800 0.17580 1.06586 1356172.60792 40.26533 37.39364 40.33915 40.33921 31.04052 31.04052 32.40219 32.38145 32.40219 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 81475.88822 46441.25675 35034.63146 -3582.84771 0.28988 0.16831 2.62369 2.62369 165768.18573 129821.92216 63842.16857 46896.40939 57480.23014 28189.27929 1220.80707 1220.80707 1225.27070 8781.16888 40.68534 38.34704 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 33795.57443 36145.02399 1.07755 36.13907 42.09386 42.09386 42.70349 0.16691 4550.65636 29046.18964 29046.18960 14137.49572 77703.68235 21271.78818 1229841.73267 1229841.73166 53899.69820 942.61008 44.92294 100.00000 16956.51062 33751.84967 20147.84853 0.02176 0.00000 0.85628 24413.94713 69561.31961 77454.54394 77454.54391 762113.69086 78023.73035 25836.06027 1.02700 8789.65716 1286.92658 28046.01800 181052.42251 60186.97047 242335.30549 0.05512 18.14208 0.13262 0.88273 358862.95274 44.88504 44.06421 44.89706 44.89783 40.74089 40.74089 41.14930 41.00186 41.14930 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 692552.37125 477861.13911 214691.23214 -10251.86644 0.97561 0.19770 8.92256 8.92256 1068791.73390 849500.77997 417756.65675 306870.64173 376126.77209 177155.01531 26713.10611 26713.10608 27796.87959 57153.56086 17541.23518 4856.02043 247091.74381 247091.74341 11953.41737 200.54586 46.20559 100.00000 15531.17021 6313.84010 5639.57728 0.02176 0.00000 1.63522 5689.88008 13175.61537 17410.37645 17410.37643 183691.60311 17676.22927 5879.09252 1.02700 1982.88746 100.94535 6150.87442 45706.08236 25803.45536 31753.42779 0.06400 15.62599 0.11809 1.18232 328697.84679 46.04029 35.35934 46.10391 46.22474 37.55491 37.55491 37.57580 37.61592 37.57580 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 170515.98775 117656.03175 52859.95599 -4917.11871 0.59087 0.20924 6.24796 6.24796 240609.87005 185465.13672 91205.67880 66996.76641 82116.93816 44722.20030 5776.57434 5776.57434 6020.01569 12731.81017 177606.44873 17476.56446 2345404.26257 2345404.26190 129161.43077 2865.60998 47.09243 100.00000 -74740.80197 37225.04715 91936.38362 0.02176 0.00000 1.00000 21043.97005 135010.41637 178635.10370 178635.10363 1555720.34064 176540.66400 25405.47514 1.02700 18346.88258 1543.56771 28039.65687 207509.68857 152999.50124 511919.90583 0.08153 12.26542 0.24965 1.04811 -1581794.72660 46.10005 36.88413 46.05119 46.11988 37.43958 37.43958 37.61578 37.61214 37.61578 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1420709.92427 1008704.05107 412005.87320 38693.65729 1.11570 0.17475 5.86949 5.86949 2370482.76560 2139771.29526 1052269.42965 772963.37391 947409.68801 203042.74862 28924.34330 28924.34327 29068.31184 133747.87554 6380607.46065 51358.37338 + 19526.33888 5424.58051 360637.91581 360637.91564 14053.71006 383.96225 45.33354 100.00000 -8203.27153 10767.79533 3285.91473 0.02176 0.00000 0.74787 8929.01393 18784.08102 19671.57275 19671.57272 188653.56634 19352.56180 7930.23623 1.02700 1807.07663 157.53287 8209.69816 38689.76173 16350.45488 36903.32506 0.07542 13.25953 0.16779 1.03345 -173611.80911 44.41113 38.95873 44.37192 44.52013 39.08061 39.08061 39.09997 39.11413 39.09997 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 169869.48532 113812.55597 56056.92935 5678.64081 0.96182 0.19782 8.61939 8.61939 268255.60814 226674.43913 111471.06367 81883.06810 100362.85636 37856.91166 8114.69530 8114.69529 8354.93203 14855.04884 179007.16393 138297.76145 1948374.54142 179813.22492 179834.51396 34087.24609 40709.40248 1038.29695 39671.10553 11219.97666 45307.22275 371473.32721 9474.46053 361998.86667 -1397492.91344 147121.59833 43.39813 45.99530 43.27318 43.27318 42.30966 43.76698 42.31142 133699.94118 4803.81973 28173.89113 28173.89109 13135.57288 28173.89124 46113.28370 192852.11764 39640.94082 3636047.04669 3636047.03820 132826.00791 1791.65078 44.57300 100.00000 11533.17938 89377.52945 43448.47846 0.02176 0.00000 0.16463 52425.34034 187914.27354 192008.90140 192008.89961 2046293.68924 194047.17866 47841.24661 1.02700 19764.06419 1938.19993 51138.36573 406281.83535 24076.22005 340920.12746 0.05377 18.59642 0.14651 0.94413 244085.29947 44.34806 45.53099 44.35393 44.35306 42.67225 42.67225 43.01181 42.99132 43.01181 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1858379.41569 1282281.80223 576097.61346 -36268.26965 3.54725 0.21592 9.10358 9.10358 2612483.97617 2091839.67322 1028698.22529 755648.72197 926187.37816 397536.08627 50021.89611 50021.89606 50295.14949 139111.62375 86082.17888 19308.09724 1263260.18946 1263260.18770 58409.06011 743.09303 45.15229 100.00000 14598.59359 36664.62062 21744.43948 0.02176 0.00000 0.55484 27198.83993 76596.79663 85767.92619 85767.92592 884645.09785 86529.20201 23982.94464 1.02700 9868.26271 648.48306 25425.96332 204464.90414 25473.48143 357813.78554 0.05348 18.69901 0.13004 0.92571 308960.80492 44.59758 46.28632 44.60217 44.60147 43.02072 43.02072 43.34610 43.33390 43.34610 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 808048.30122 557553.33093 250494.97029 -13621.62882 1.87724 0.20937 8.52113 8.52113 1168041.88756 919143.31460 452004.57320 332028.06241 406961.84797 200063.51707 25031.89463 25031.89460 25111.71063 62191.22072 6657.96834 6474.31472 153.04898 2852.96800 3007.91557 320351.98265 42.66947 42.66947 1312.94758 2824.26196 44734.40785 9079.43635 1853893.06239 1853893.06033 32359.45942 501.41292 45.18554 100.00000 10057.69992 20033.96157 12325.49785 0.02176 0.00000 0.56895 13447.01361 97032.63214 44518.88495 44518.88449 494397.07698 45013.71767 11580.57997 1.02700 4531.67383 629.09506 12643.16109 103211.76354 16125.62011 199679.44207 0.05609 17.82920 0.14234 0.99370 212858.55304 46.08404 43.34344 46.10157 46.10225 42.14062 42.14062 42.46310 42.43755 42.46310 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 397364.44484 266234.18073 131130.26411 -9151.77351 1.60173 0.19148 9.67630 9.67630 655405.64140 501735.88148 246737.27057 181245.28527 222149.64521 100989.99190 12296.61575 12296.61574 12427.63820 33603.31954 12150.80801 985.62306 115387.23188 115387.23178 8432.65871 102.43256 42.09063 100.00000 67258.02306 2534.97441 5897.68430 0.02176 0.00000 9.25925 1538.18866 8226.19627 12037.80112 12037.80111 93742.79929 12264.06844 1142.38829 1.02700 1651.33114 97.08308 1365.23354 29443.25048 54086.71673 58709.77641 0.06065 16.48800 0.17580 1.06586 1423430.63098 41.35250 38.40326 41.42831 41.42837 31.87862 31.87862 33.27705 33.25575 33.27705 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 85516.60302 48744.46422 36772.13880 -3760.53546 0.29350 0.16831 2.62369 2.62369 169415.08392 132678.00296 65246.69554 47928.12986 58744.79454 28809.44311 1247.66481 1247.66481 1252.22664 8974.35450 41.78384 39.38241 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 34539.07670 36940.21409 1.07755 37.11482 43.23040 43.23040 43.85649 0.16691 4650.77075 29685.20550 29685.20547 14448.52047 79413.16248 21739.76727 1290834.50111 1290834.49967 55085.49097 963.34749 46.13585 100.00000 17797.45314 34494.39000 20591.10097 0.02176 0.00000 0.85628 24951.05371 73011.14434 79158.54302 79158.54296 799909.95566 79740.25154 26404.45332 1.02700 8983.02950 1315.23895 28663.03009 185035.57383 60186.97047 254353.68139 0.05512 18.14208 0.13262 0.88273 376660.40588 46.09694 45.25395 46.10928 46.11007 41.84089 41.84089 42.26033 42.10891 42.26033 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 726898.81131 501560.18273 225338.62858 -10760.29627 0.99037 0.19770 8.92256 8.92256 1092305.13945 868189.78703 426947.29801 313621.79196 384401.55638 181052.42349 27300.79415 27300.79412 28408.41063 58410.93859 17927.14221 4962.85284 259346.01153 259346.01103 12216.39246 204.95787 47.45314 100.00000 16301.42039 6452.74453 5763.64793 0.02176 0.00000 1.63522 5815.05737 13829.04708 17793.40457 17793.40452 192801.60426 18065.10613 6008.43251 1.02700 2026.51098 103.16615 6286.19360 46711.61616 25803.45536 33328.20714 0.06400 15.62599 0.11809 1.18232 344999.26718 47.28338 36.31404 47.34872 47.47281 38.56889 38.56889 38.59034 38.63155 38.59034 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 178972.55719 123491.06455 55481.49263 -5160.97917 0.59981 0.20924 6.24796 6.24796 245903.28509 189545.36798 93212.20286 68470.69461 83923.51001 45706.08870 5903.65891 5903.65891 6152.45596 13011.90987 181513.78857 17861.04868 2461722.23240 2461722.23127 132002.98079 2928.65337 48.36393 100.00000 -78447.49498 38043.99776 93958.98303 0.02176 0.00000 1.00000 21506.93715 141706.12290 182565.07392 182565.07383 1632874.72900 180424.55661 25964.39531 1.02700 18750.51375 1577.52619 28656.52901 212074.89919 152999.50124 537308.05891 0.08153 12.26542 0.24965 1.04811 -1660242.22157 47.34475 37.88000 47.29458 47.36511 38.45045 38.45045 38.63141 38.62767 38.63141 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1491168.60610 1058729.71538 432438.89071 40612.63087 1.13307 0.17475 5.86949 5.86949 2422633.35866 2186846.23838 1075419.34428 789968.55859 968252.68955 207509.68646 29560.67852 29560.67849 29707.81437 136690.32729 6697047.27324 52488.25702 + 19955.91814 5543.92123 378523.39123 378523.39081 14362.89154 392.40942 46.55754 100.00000 -8610.10496 11004.68672 3358.20482 0.02176 0.00000 0.74787 9125.45214 19715.65870 20104.34715 20104.34710 198009.65042 19778.31796 8104.70134 1.02700 1846.83231 160.99859 8390.31143 39540.93618 16350.45488 38733.50835 0.07542 13.25953 0.16779 1.03345 -182221.91406 45.61023 40.01062 45.56996 45.72217 40.13579 40.13579 40.15567 40.17021 40.15567 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 178293.99172 119456.97525 58837.01646 5960.26691 0.97595 0.19782 8.61939 8.61939 274157.22917 231661.27478 113923.42607 83684.49486 102570.83829 38689.76347 8293.21852 8293.21851 8538.74045 15181.85976 182945.31956 141340.31064 2045002.21640 183769.11386 183790.87120 34837.16518 41605.00893 1061.13947 40543.86945 11466.81604 46303.98122 379645.73669 9682.89856 369962.83813 -1466800.16778 150358.27175 44.56988 47.23717 44.44156 44.44156 43.45203 44.94869 43.45383 136641.33835 4909.50371 28793.71646 28793.71643 13424.55535 28793.71652 47127.77548 197094.86299 40513.04131 3816373.15065 3816373.13743 135748.17924 1831.06710 45.77647 100.00000 12105.15398 91343.83453 44404.34471 0.02176 0.00000 0.16463 53578.69734 197233.69381 196233.09606 196233.09328 2147777.56345 198316.21533 48893.75364 1.02700 20198.87367 1980.84033 52263.40935 415220.03470 24076.22005 357827.71731 0.05377 18.59642 0.14651 0.94413 256190.45345 45.54546 46.76033 45.55149 45.55059 43.82441 43.82441 44.17313 44.15208 44.17313 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 1950543.86964 1345875.27368 604668.59596 -38066.96535 3.60091 0.21592 9.10358 9.10358 2669958.61615 2137860.13949 1051329.58300 772272.99144 946563.49755 406281.88149 51122.37747 51122.37742 51401.64243 142172.07856 87975.98602 19732.87521 1325910.31300 1325910.31038 59694.05890 759.44107 46.37140 100.00000 15322.59565 37471.24195 22222.81695 0.02176 0.00000 0.55484 27797.21416 80395.53835 87654.81978 87654.81930 928518.18368 88432.84364 24510.56920 1.02700 10085.36443 662.74969 25985.33427 208963.13042 25473.48143 375559.20034 0.05348 18.69901 0.13004 0.92571 324283.40057 45.80172 47.53605 45.80643 45.80571 44.18228 44.18228 44.51644 44.50392 44.51644 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 848122.64533 585204.62806 262918.01727 -14297.18028 1.90564 0.20937 8.52113 8.52113 1193738.79966 939364.45995 461948.66990 339332.67682 415915.00506 204464.91325 25582.59608 25582.59606 25664.16804 63559.42702 6804.44357 6616.74960 156.41606 2915.73327 3074.08968 336239.51859 43.82155 43.82155 1341.83244 2886.39571 45718.56452 9279.18389 1945835.03042 1945835.02796 33071.36732 512.44400 46.40555 100.00000 10556.50097 20474.70861 12596.65871 0.02176 0.00000 0.56895 13742.84778 101844.86883 45498.30015 45498.29945 518916.20340 46004.01918 11835.35262 1.02700 4631.37066 642.93515 12921.31052 105482.42179 16125.62011 209582.34289 0.05609 17.82920 0.14234 0.99370 223415.05401 47.32831 44.51371 47.34631 47.34701 43.27842 43.27842 43.60961 43.58336 43.60961 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 417071.33457 279437.79644 137633.53812 -9605.64683 1.62526 0.19148 9.67630 9.67630 669824.56245 512774.06843 252165.48929 185232.68063 227036.93629 103211.77167 12567.14121 12567.14120 12701.04615 34342.59238 12418.12566 1007.30676 121109.74582 121109.74560 8618.17711 104.68607 43.22708 100.00000 70593.61751 2590.74382 6027.43329 0.02176 0.00000 9.25925 1572.02879 8634.16626 12302.63261 12302.63260 98391.87920 12533.87781 1167.52082 1.02700 1687.66040 99.21891 1395.26866 30091.00166 54086.71673 61621.42873 0.06065 16.48800 0.17580 1.06586 1494024.24849 42.46901 39.44015 42.54687 42.54694 32.73934 32.73934 34.17553 34.15366 34.17553 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 89757.71294 51161.89687 38595.81607 -3947.03547 0.29716 0.16831 2.62369 2.62369 173142.21392 135596.91757 66682.12213 48982.54818 60037.17937 29443.25053 1275.11343 1275.11342 1279.77561 9171.79020 42.91200 40.44574 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 35298.93606 37752.89844 1.07755 38.11692 44.39762 44.39762 45.04061 0.16691 4753.08765 30338.27974 30338.27970 14766.38779 81160.25122 22218.04192 1354852.14570 1354852.14368 56297.37122 984.54112 47.38152 100.00000 18680.10196 35253.26625 21044.10497 0.02176 0.00000 0.85628 25499.97666 76632.05967 80900.03013 80900.02997 839580.68821 81494.53624 26985.35104 1.02700 9180.65604 1344.17419 29293.61648 189106.35443 60186.97047 266968.09647 0.05512 18.14208 0.13262 0.88273 395340.50784 47.34155 46.47580 47.35423 47.35504 42.97059 42.97059 43.40136 43.24585 43.40136 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 762948.62854 526434.55642 236514.07212 -11293.94059 1.00536 0.19770 8.92256 8.92256 1116335.84131 887289.95337 436340.13388 320521.46783 392858.38635 185035.57483 27901.41135 27901.41133 29033.39539 59695.97867 18321.53923 5072.03557 272208.01758 272208.01696 12485.15302 209.46694 48.73437 100.00000 17109.86983 6594.70487 5890.44815 0.02176 0.00000 1.63522 5942.98858 14514.88496 18184.85934 18184.85922 202363.40667 18462.53832 6140.61798 1.02700 2071.09423 105.43580 6424.48982 47739.27172 25803.45536 34981.08606 0.06400 15.62599 0.11809 1.18232 362109.13701 48.56003 37.29452 48.62713 48.75458 39.61025 39.61025 39.63228 39.67460 39.63228 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 187848.52171 129615.47991 58233.04180 -5416.93384 0.60888 0.20924 6.24796 6.24796 251313.15605 193715.36494 95262.87073 69977.04945 85769.82670 46711.62284 6033.53935 6033.53935 6287.80994 13298.17179 185507.08987 18253.99155 2583808.87570 2583808.87408 134907.04492 2993.08371 49.66975 100.00000 -82338.01654 38880.96529 96026.07962 0.02176 0.00000 1.00000 21980.08956 148733.89625 186581.50350 186581.50333 1713855.51164 184393.89486 26535.61174 1.02700 19163.02482 1612.23175 29286.97235 216740.54437 152999.50124 563955.31185 0.08153 12.26542 0.24965 1.04811 -1742580.23812 48.62306 38.90276 48.57153 48.64397 39.48862 39.48862 39.67446 39.67062 39.67446 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1565121.61539 1111236.35209 453885.26330 42626.77500 1.15071 0.17475 5.86949 5.86949 2475931.26555 2234956.83099 1099078.55732 807347.85750 989554.23736 212074.89689 30211.01314 30211.01312 30361.38598 139697.51300 7029180.60009 53642.99810 + 20394.94816 5665.88745 397295.87878 397295.87773 14678.87503 401.04242 47.81459 100.00000 -9037.11507 11246.78973 3432.08530 0.02176 0.00000 0.74787 9326.21200 20693.43691 20546.64261 20546.64251 207829.73968 20213.44077 8283.00470 1.02700 1887.46261 164.54056 8574.89821 40410.83648 16350.45488 40654.45770 0.07542 13.25953 0.16779 1.03345 -191259.02913 46.84171 41.09091 46.80035 46.95667 41.21946 41.21946 41.23988 41.25481 41.23988 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 187136.30278 125381.32364 61754.97914 6255.85976 0.99028 0.19782 8.61939 8.61939 280188.68640 236757.82126 116429.74067 85525.55317 104827.39603 39540.93812 8475.66924 8475.66924 8726.59266 15515.86053 186970.11461 144449.79590 2146422.04383 187812.03238 187834.26827 35603.58249 42520.31871 1084.48453 41435.83418 11719.08589 47322.66838 387997.93909 9895.92222 378102.01687 -1539544.64584 153666.15196 45.77326 48.51257 45.64148 45.64148 44.62523 46.16230 44.62709 139647.44623 5017.51273 29427.17798 29427.17796 13719.89543 29427.17796 48164.58612 201430.94918 41404.32812 4005642.34668 4005642.32584 138734.63864 1871.35058 47.01244 100.00000 12705.49452 93353.39854 45381.24011 0.02176 0.00000 0.16463 54757.42825 207015.30033 200550.22342 200550.21923 2254294.42222 202679.17122 49969.41592 1.02700 20643.24910 2024.41882 53413.20405 424354.87468 24076.22005 375573.82160 0.05377 18.59642 0.14651 0.94413 268895.94797 46.77519 48.02286 46.78138 46.78046 45.00766 45.00766 45.36581 45.34419 45.36581 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 2047279.12189 1412622.59461 634656.52728 -39954.86807 3.65539 0.21592 9.10358 9.10358 2728697.70856 2184893.06403 1074458.83464 789262.99788 967387.89524 415220.08647 52247.06950 52247.06946 52532.47830 145299.86376 89911.45703 20166.99832 1391667.50651 1391667.50189 61007.32774 776.14877 47.62343 100.00000 16082.50371 38295.60900 22711.71875 0.02176 0.00000 0.55484 28408.75265 84382.67381 89583.22515 89583.22433 974567.10892 90378.36552 25049.80154 1.02700 10307.24242 677.33018 26557.01143 213560.31769 25473.48143 394184.68064 0.05348 18.69901 0.13004 0.92571 340365.90429 47.03836 48.81953 47.04320 47.04247 45.37520 45.37520 45.71839 45.70553 45.71839 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 890184.43511 614227.26253 275957.17257 -15006.23522 1.93447 0.20937 8.52113 8.52113 1220001.04767 960030.47352 472111.53817 346797.99381 425065.13292 208963.14090 26145.41301 26145.41299 26228.77955 64957.73395 6954.14125 6762.31804 159.85721 2979.87937 3141.71962 352914.98221 45.00473 45.00473 1371.35276 2949.89641 46724.37275 9483.32590 2042336.76847 2042336.76563 33798.93727 523.71776 47.65850 100.00000 11080.03956 20925.15214 12873.78513 0.02176 0.00000 0.56895 14045.19032 106895.76315 46499.26259 46499.26154 544651.33015 47016.10742 12095.73030 1.02700 4733.26084 657.07972 13205.57926 107803.03457 16125.62011 219976.36798 0.05609 17.82920 0.14234 0.99370 234495.09357 48.60617 45.71558 48.62466 48.62538 44.44694 44.44694 44.78707 44.76011 44.78707 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 437755.56700 293296.23148 144459.33552 -10082.02946 1.64913 0.19148 9.67630 9.67630 684560.70178 524055.09698 257713.12956 189307.79922 232031.74844 105482.43101 12843.61826 12843.61825 12980.46911 35098.12931 12691.32429 1029.46749 127116.06215 127116.06167 8807.77692 106.98917 44.39421 100.00000 74094.63746 2647.74016 6160.03676 0.02176 0.00000 9.25925 1606.61341 9062.36909 12573.29039 12573.29037 103271.52547 12809.62299 1193.20627 1.02700 1724.78891 101.40172 1425.96456 30753.00335 54086.71673 64677.48149 0.06065 16.48800 0.17580 1.06586 1568118.88595 43.61568 40.50504 43.69564 43.69570 33.62330 33.62330 35.09827 35.07581 35.09827 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 94209.15638 53699.21962 40509.93677 -4142.78474 0.30087 0.16831 2.62369 2.62369 176951.34089 138580.04839 68149.12814 50060.16375 61357.99671 30091.00174 1303.16591 1303.16590 1307.93066 9373.56949 44.07063 41.53777 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 36075.51236 38583.46186 1.07755 39.14608 45.59635 45.59635 46.25671 0.16691 4857.65552 31005.72163 31005.72161 15091.24819 82945.77599 22706.83864 1422044.68156 1422044.67780 57535.91289 1006.20102 48.66082 100.00000 19606.52530 36028.83780 21507.07508 0.02176 0.00000 0.85628 26060.97595 80432.54983 82679.83003 82679.82967 881218.84949 83287.41529 27579.02854 1.02700 9382.63039 1373.74601 29938.07580 193266.69217 60186.97047 280208.11044 0.05512 18.14208 0.13262 0.88273 414947.03314 48.61978 47.73065 48.63279 48.63363 44.13080 44.13080 44.57320 44.41349 44.57320 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 800786.29965 552542.54923 248243.75042 -11854.05012 1.02057 0.19770 8.92256 8.92256 1140895.22184 906810.32596 445939.61335 327572.93742 401501.26766 189106.35600 28515.24217 28515.24215 29672.12985 61009.28971 18724.61303 5183.62034 285707.90174 285707.90089 12759.82634 214.07522 50.05020 100.00000 17958.41264 6739.78836 6020.03799 0.02176 0.00000 1.63522 6073.73428 15234.73587 18584.92619 18584.92593 212399.41631 18868.71408 6275.71154 1.02700 2116.65833 107.75539 6565.82856 48789.53572 25803.45536 36715.93776 0.06400 15.62599 0.11809 1.18232 380067.54965 49.87115 38.30147 49.94006 50.07095 40.67973 40.67973 40.70236 40.74581 40.70236 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 197164.68044 136043.62921 61121.05124 -5685.58272 0.61809 0.20924 6.24796 6.24796 256842.04577 197977.10307 97358.65390 71516.54453 87656.76289 47739.27909 6166.27718 6166.27718 6426.14172 13590.73152 189588.24382 18655.57916 2711950.28371 2711950.28072 137874.99848 3058.93152 51.01084 100.00000 -86421.48370 39736.34612 98138.65235 0.02176 0.00000 1.00000 22463.65135 156110.20441 190686.29453 190686.29422 1798852.45375 188450.55856 27119.39494 1.02700 19584.61112 1647.70083 29931.28546 221508.83369 152999.50124 591924.10826 0.08153 12.26542 0.24965 1.04811 -1829001.72181 49.93588 39.95314 49.88296 49.95736 40.55481 40.55481 40.74567 40.74173 40.74567 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1642742.24934 1166347.00226 476395.24708 44740.80920 1.16863 0.17475 5.86949 5.86949 2530401.72856 2284125.85866 1123258.27397 825109.50162 1011324.42004 216740.54203 30875.65512 30875.65510 31029.33617 142770.85682 7377785.74584 54823.14347 + 20843.63689 5790.53694 416999.36918 416999.36668 15001.81019 409.86535 49.10559 100.00000 -9485.30275 11494.21904 3507.59116 0.02176 0.00000 0.74787 9531.38860 21719.70723 20998.66861 20998.66841 218136.84552 20658.13633 8465.23075 1.02700 1928.98679 168.16045 8763.54592 41299.87459 16350.45488 42670.67453 0.07542 13.25953 0.16779 1.03345 -200744.33188 48.10643 42.20036 48.06396 48.22450 42.33238 42.33238 42.35335 42.36869 42.35335 1.00000 0.07527 0.00398 8.04040 0.05200 7.01340 0.04200 196417.13829 131599.48313 64817.65516 6566.11166 1.00483 0.19782 8.61939 8.61939 286352.83661 241966.49252 118991.19457 87407.11505 107133.59839 40410.83878 8662.13390 8662.13390 8918.57763 15857.20937 191083.45525 147627.68987 2252871.68575 191943.89516 191966.62003 36386.86108 43455.76538 1108.34319 42347.42220 11976.90570 48363.76679 396533.88996 10113.63240 386420.25755 -1615896.81343 157046.80552 47.00914 49.82241 46.87380 46.87380 45.83011 47.40868 45.83202 142719.68846 5127.89796 30074.57573 30074.57572 14021.73300 30074.57554 49224.20668 205862.42998 42315.22341 4204298.15704 4204298.12499 141786.80067 1912.52032 48.28177 100.00000 13335.60774 95407.17336 46379.62731 0.02176 0.00000 0.16463 55962.09140 217282.01439 204962.32825 204962.32199 2366093.86582 207138.11278 51068.74297 1.02700 21097.40101 2068.95606 54588.29445 433690.68159 24076.22005 394200.02563 0.05377 18.59642 0.14651 0.94413 282231.55571 48.03812 49.31948 48.04447 48.04353 46.22287 46.22287 46.59068 46.56848 46.59068 1.00000 0.07527 -0.05740 8.04040 0.05200 7.01340 0.04200 2148811.85143 1482680.17214 666131.67930 -41936.40174 3.71069 0.21592 9.10358 9.10358 2788729.07413 2232960.72283 1098096.93485 806626.78824 988670.43425 424354.93500 53396.50491 53396.50489 53688.19271 148496.46093 91889.50867 20610.67221 1460685.86179 1460685.85199 62349.48870 793.22404 48.90926 100.00000 16880.09817 39138.11226 23211.37644 0.02176 0.00000 0.55484 29033.74507 88567.54654 91554.05571 91554.05426 1022899.77864 92366.68916 25600.89706 1.02700 10534.00181 692.23144 27141.26556 218258.64319 25473.48143 413733.87190 0.05348 18.69901 0.13004 0.92571 357246.00245 48.30840 50.13765 48.31337 48.31261 46.60034 46.60034 46.95278 46.93958 46.95278 1.00000 0.07527 -0.06591 8.04040 0.05200 7.01340 0.04200 934332.23210 644689.24106 289642.99104 -15750.45570 1.96374 0.20937 8.52113 8.52113 1246841.07187 981151.14456 482497.99211 354427.54964 434416.56589 213560.33090 26720.61199 26720.61198 26805.81260 66386.80390 7107.13229 6911.08902 163.37407 3045.43670 3210.83743 370417.45137 46.21986 46.21986 1401.52257 3014.79416 47752.30886 9691.95906 2143624.41171 2143624.40909 34542.51383 535.23955 48.94528 100.00000 11629.54281 21385.50549 13157.00834 0.02176 0.00000 0.56895 14354.18444 112197.14949 47522.24631 47522.24480 571662.76210 48050.46172 12361.83632 1.02700 4837.39265 671.53547 13496.10195 110174.70091 16125.62011 230885.87422 0.05609 17.82920 0.14234 0.99370 246124.63638 49.91854 46.94990 49.93753 49.93826 45.64700 45.64700 45.99632 45.96863 45.99632 1.00000 0.07527 -0.02112 8.04040 0.05200 7.01340 0.04200 459465.61261 307841.96120 151623.65141 -10582.03717 1.67335 0.19148 9.67630 9.67630 699621.03855 535584.30987 263382.81874 193472.57104 237136.44720 107803.04540 13126.17783 13126.17783 13266.03940 35870.28816 12970.53330 1052.11577 133420.25604 133420.25485 9001.54793 109.34293 45.59285 100.00000 77769.28654 2705.99042 6295.55751 0.02176 0.00000 9.25925 1641.95890 9511.80848 12849.90265 12849.90261 108393.17271 13091.43456 1219.45680 1.02700 1762.73425 103.63256 1457.33577 31429.56909 54086.71673 67885.09607 0.06065 16.48800 0.17580 1.06586 1645888.17249 44.79330 41.59867 44.87542 44.87549 34.53113 34.53113 36.04592 36.02286 36.04592 1.00000 0.07527 -0.14391 8.04040 0.05200 7.01340 0.04200 98881.36423 56362.37791 42518.98632 -4348.24201 0.30462 0.16831 2.62369 2.62369 180844.26885 141628.80824 69648.40836 51161.48691 62707.87210 30753.00351 1331.83554 1331.83554 1336.70512 9579.78794 45.26053 42.65929 0.33020 -0.14627 0.01222 0.17247 -0.38645 -0.06891 0.03711 -0.09413 36869.17343 39432.29778 1.07755 40.20302 46.82745 46.82745 47.50564 0.16691 4964.52389 31687.84733 31687.84731 15423.25558 84770.58253 23206.38897 1492569.56455 1492569.55514 58801.70265 1028.33743 49.97467 100.00000 20578.89348 36821.47206 21980.23058 0.02176 0.00000 0.85628 26634.31730 84421.52137 84498.78578 84498.78496 924922.00883 85119.73792 28185.76704 1.02700 9589.04824 1403.96841 30596.71331 197518.55738 60186.97047 294104.74882 0.05512 18.14208 0.13262 0.88273 435525.92661 49.93251 49.01938 49.94588 49.94674 45.32233 45.32233 45.77667 45.61265 45.77667 1.00000 0.07527 -0.07203 8.04040 0.05200 7.01340 0.04200 840500.48746 579945.33766 260555.14980 -12441.93808 1.03601 0.19770 8.92256 8.92256 1165994.91516 926760.15181 455750.28382 334779.54112 410334.29456 193266.69544 29142.57736 29142.57735 30324.91656 62351.49383 19136.55458 5297.66001 299877.29811 299877.29661 13040.54256 218.78487 51.40156 100.00000 18849.03674 6888.06373 6152.47883 0.02176 0.00000 1.63522 6207.35640 15990.28611 18993.79463 18993.79411 222933.14948 19283.82584 6413.77718 1.02700 2163.22488 110.12601 6710.27678 49862.90560 25803.45536 38536.82749 0.06400 15.62599 0.11809 1.18232 398916.58639 51.21767 39.33561 51.28845 51.42287 41.77808 41.77808 41.80132 41.84595 41.80132 1.00000 0.07527 0.06186 8.04040 0.05200 7.01340 0.04200 206942.86337 142790.57506 64152.28831 -5967.55557 0.62745 0.20924 6.24796 6.24796 262492.57405 202332.60171 99500.54542 73089.90933 89585.21269 48789.54445 6301.93528 6301.93528 6567.51683 13889.72765 193759.18326 19066.00171 2846446.73680 2846446.72968 140908.24711 3126.22799 52.38813 100.00000 -90707.46429 40610.54538 100297.70173 0.02176 0.00000 1.00000 22957.85155 163852.33328 194881.39107 194881.39047 1888064.73052 192596.46898 27716.02142 1.02700 20015.47234 1683.95023 30589.77350 226382.02532 152999.50124 621279.98845 0.08153 12.26542 0.24965 1.04811 -1919709.18610 51.28415 41.03187 51.22980 51.30621 41.64979 41.64979 41.84580 41.84175 41.84580 1.00000 0.07527 0.01955 8.04040 0.05200 0.07219 7.01340 0.04200 1724212.39724 1224190.80673 500021.59051 46959.68818 1.18683 0.17475 5.86949 5.86949 2586070.54612 2334376.60888 1147969.94628 843261.90327 1033573.54844 221508.83164 31554.91928 31554.91927 31711.98131 145911.81436 7743679.61362 56029.25205 diff --git a/tests/ferhat/MARK3_exo.dat b/tests/ferhat/MARK3_exo.dat new file mode 100644 index 000000000..eeda8bb92 --- /dev/null +++ b/tests/ferhat/MARK3_exo.dat @@ -0,0 +1,131 @@ +CA_ALPHA1 CA_ALPHA2 CA_ALPHA3 CA_BCHI1 CA_BCHI2 CA_BETA CA_BT_GDP_RAT CA_CPI_GAP_EXOG CA_CPI_TAR CA_DELTA CA_DELTA_SS CA_DEM3 CA_DLLF_SS CA_G CA_GDP_GAP_EXOG CA_GEXOG CA_ICOM CA_LAMBDA CA_LAMBDA1 CA_LAMBDA2 CA_LAMBDA3 CA_MGROW CA_MT CA_NEER_PAR CA_NLIN CA_PAR CA_PART CA_PARUS CA_PGNPNO_GAP_EXOG CA_PGNPNO_TAR CA_PGNP_GAP_EXOG CA_PGNP_TAR CA_PHI CA_POP CA_PREM CA_PROB CA_PRODOIL CA_P_GAP_EXOG CA_P_TAR CA_RSCON CA_RSCON2 CA_RS_EXOG CA_SIGMA CA_TAXK_ALPHA CA_TAXK_SHAR CA_TPREM CA_TRATEK CA_TRATE_ALPHA CA_TRATE_EXOG CA_UNR_FE CA_UNR_GAP_EXOG CA_XOIL CA_X_RS1 CA_X_RS2 DC_BETA DC_DELTA DC_INFL DC_KCOMSHR DC_OILSHR DC_PROD DC_XOILSHR DC_XTNDHIST FR_ALPHA1 FR_ALPHA2 FR_ALPHA3 FR_BCHI1 FR_BCHI2 FR_BETA FR_BT_GDP_RAT FR_CPI_GAP_EXOG FR_CPI_TAR FR_DELTA FR_DELTA_SS FR_DEM3 FR_DLLF_SS FR_G FR_GDP_GAP_EXOG FR_GEXOG FR_ICOM FR_LAMBDA FR_LAMBDA1 FR_LAMBDA2 FR_LAMBDA3 FR_MGROW FR_MT FR_NEER_PAR FR_NLIN FR_PAR FR_PART FR_PARUS FR_PGNPNO_GAP_EXOG FR_PGNPNO_TAR FR_PGNP_GAP_EXOG FR_PGNP_TAR FR_PHI FR_POP FR_PREM FR_PROB FR_PRODOIL FR_P_GAP_EXOG FR_P_TAR FR_RSCON FR_RSCON2 FR_RS_EXOG FR_SIGMA FR_TAXK_ALPHA FR_TAXK_SHAR FR_TPREM FR_TRATEK FR_TRATE_ALPHA FR_TRATE_EXOG FR_UNR_FE FR_UNR_GAP_EXOG FR_XOIL FR_X_RS1 FR_X_RS2 GREAL GREAL_SS GR_ALPHA1 GR_ALPHA2 GR_ALPHA3 GR_BCHI1 GR_BCHI2 GR_BETA GR_BT_GDP_RAT GR_CPI_GAP_EXOG GR_CPI_TAR GR_DELTA GR_DELTA_SS GR_DEM3 GR_DLLF_SS GR_G GR_GDP_GAP_EXOG GR_GEXOG GR_ICOM GR_LAMBDA GR_LAMBDA1 GR_LAMBDA2 GR_LAMBDA3 GR_MGROW GR_MT GR_NEER_PAR GR_NLIN GR_PAR GR_PART GR_PARUS GR_PGNPNO_GAP_EXOG GR_PGNPNO_TAR GR_PGNP_GAP_EXOG GR_PGNP_TAR GR_PHI GR_POP GR_PREM GR_PROB GR_PRODOIL GR_P_GAP_EXOG GR_P_TAR GR_RSCON GR_RSCON2 GR_RS_EXOG GR_SIGMA GR_TAXK_ALPHA GR_TAXK_SHAR GR_TPREM GR_TRATEK GR_TRATE_ALPHA GR_TRATE_EXOG GR_UNR_FE GR_UNR_GAP_EXOG GR_XOIL GR_X_RS1 GR_X_RS2 HO_IOIL HO_QNT HO_XM IT_ALPHA1 IT_ALPHA2 IT_ALPHA3 IT_BCHI1 IT_BCHI2 IT_BETA IT_BT_GDP_RAT IT_CPI_GAP_EXOG IT_CPI_TAR IT_DELTA IT_DELTA_SS IT_DEM3 IT_DLLF_SS IT_G IT_GDP_GAP_EXOG IT_GEXOG IT_ICOM IT_LAMBDA IT_LAMBDA1 IT_LAMBDA2 IT_LAMBDA3 IT_MGROW IT_MT IT_NEER_PAR IT_NLIN IT_PAR IT_PART IT_PARUS IT_PGNPNO_GAP_EXOG IT_PGNPNO_TAR IT_PGNP_GAP_EXOG IT_PGNP_TAR IT_PHI IT_POP IT_PREM IT_PROB IT_PRODOIL IT_P_GAP_EXOG IT_P_TAR IT_RSCON IT_RSCON2 IT_RS_EXOG IT_SIGMA IT_TAXK_ALPHA IT_TAXK_SHAR IT_TPREM IT_TRATEK IT_TRATE_ALPHA IT_TRATE_EXOG IT_UNR_FE IT_UNR_GAP_EXOG IT_XOIL IT_X_RS1 IT_X_RS2 JA_ALPHA1 JA_ALPHA2 JA_ALPHA3 JA_BCHI1 JA_BCHI2 JA_BETA JA_BT_GDP_RAT JA_CPI_GAP_EXOG JA_CPI_TAR JA_DELTA JA_DELTA_SS JA_DEM3 JA_DLLF_SS JA_G JA_GDP_GAP_EXOG JA_GEXOG JA_ICOM JA_LAMBDA JA_LAMBDA1 JA_LAMBDA2 JA_LAMBDA3 JA_MGROW JA_MT JA_NEER_PAR JA_NLIN JA_PAR JA_PART JA_PARUS JA_PGNPNO_GAP_EXOG JA_PGNPNO_TAR JA_PGNP_GAP_EXOG JA_PGNP_TAR JA_PHI JA_POP JA_PREM JA_PROB JA_PRODOIL JA_P_GAP_EXOG JA_P_TAR JA_RSCON JA_RSCON2 JA_RS_EXOG JA_SIGMA JA_TAXK_ALPHA JA_TAXK_SHAR JA_TPREM JA_TRATEK JA_TRATE_ALPHA JA_TRATE_EXOG JA_UNR_FE JA_UNR_GAP_EXOG JA_XOIL JA_X_RS1 JA_X_RS2 RES_CA_COIL RES_CA_CPI RES_CA_C_DI RES_CA_ER RES_CA_GNP RES_CA_IM RES_CA_IOIL RES_CA_K RES_CA_M RES_CA_MPC RES_CA_NFA RES_CA_P RES_CA_PGNP RES_CA_PIM RES_CA_PXM RES_CA_RL RES_CA_RS RES_CA_TFP_FE RES_CA_TRATE RES_CA_UNR_A RES_CA_WH1 RES_CA_WH2 RES_CA_WH3 RES_CA_WK RES_CA_XM RES_DC_CTOT RES_DC_DEBT RES_DC_GDP_FE RES_DC_IT RES_DC_NFA RES_DC_PGNP RES_DC_PIM RES_DC_PIMA RES_DC_PXM RES_DC_QNT RES_DC_XOIL RES_DC_XSM RES_FR_COIL RES_FR_CPI RES_FR_C_DI RES_FR_ER RES_FR_GNP RES_FR_IM RES_FR_IOIL RES_FR_K RES_FR_M RES_FR_MPC RES_FR_NFA RES_FR_P RES_FR_PGNP RES_FR_PIM RES_FR_PXM RES_FR_RL RES_FR_RS RES_FR_TFP_FE RES_FR_TRATE RES_FR_UNR_A RES_FR_WH1 RES_FR_WH2 RES_FR_WH3 RES_FR_WK RES_FR_XM RES_GR_COIL RES_GR_CPI RES_GR_C_DI RES_GR_ER RES_GR_GNP RES_GR_IM RES_GR_IOIL RES_GR_K RES_GR_M RES_GR_MPC RES_GR_NFA RES_GR_P RES_GR_PGNP RES_GR_PIM RES_GR_PXM RES_GR_RL RES_GR_RS RES_GR_TFP_FE RES_GR_TRATE RES_GR_UNR_A RES_GR_WH1 RES_GR_WH2 RES_GR_WH3 RES_GR_WK RES_GR_XM RES_HO_ICOM RES_HO_IM RES_HO_PIT RES_HO_PXT RES_IT_COIL RES_IT_CPI RES_IT_C_DI RES_IT_ER RES_IT_GNP RES_IT_IM RES_IT_IOIL RES_IT_K RES_IT_M RES_IT_MPC RES_IT_NFA RES_IT_P RES_IT_PGNP RES_IT_PIM RES_IT_PXM RES_IT_RL RES_IT_RS RES_IT_TFP_FE RES_IT_TRATE RES_IT_UNR_A RES_IT_WH1 RES_IT_WH2 RES_IT_WH3 RES_IT_WK RES_IT_XM RES_JA_COIL RES_JA_CPI RES_JA_C_DI RES_JA_ER RES_JA_GNP RES_JA_IM RES_JA_IOIL RES_JA_K RES_JA_M RES_JA_MPC RES_JA_NFA RES_JA_P RES_JA_PGNP RES_JA_PIM RES_JA_PXM RES_JA_RL RES_JA_RS RES_JA_TFP_FE RES_JA_TRATE RES_JA_UNR_A RES_JA_WH1 RES_JA_WH2 RES_JA_WH3 RES_JA_WK RES_JA_XM RES_PCOM RES_RW_PIM RES_RW_PXM RES_RW_XM RES_SI_COIL RES_SI_CPI RES_SI_C_DI RES_SI_ER RES_SI_GNP RES_SI_IM RES_SI_IOIL RES_SI_K RES_SI_M RES_SI_MPC RES_SI_NFA RES_SI_P RES_SI_PGNP RES_SI_PIM RES_SI_PXM RES_SI_RL RES_SI_RS RES_SI_TFP_FE RES_SI_TRATE RES_SI_UNR_A RES_SI_WH1 RES_SI_WH2 RES_SI_WH3 RES_SI_WK RES_SI_XM RES_UK_COIL RES_UK_CPI RES_UK_C_DI RES_UK_ER RES_UK_GNP RES_UK_IM RES_UK_IOIL RES_UK_K RES_UK_M RES_UK_MPC RES_UK_NFA RES_UK_P RES_UK_PGNP RES_UK_PIM RES_UK_PXM RES_UK_RL RES_UK_RS RES_UK_TFP_FE RES_UK_TRATE RES_UK_UNR_A RES_UK_WH1 RES_UK_WH2 RES_UK_WH3 RES_UK_WK RES_UK_XM RES_US_COIL RES_US_CPI RES_US_C_DI RES_US_ER RES_US_GNP RES_US_IM RES_US_IOIL RES_US_K RES_US_M RES_US_MPC RES_US_NFA RES_US_P RES_US_PGNP RES_US_PIM RES_US_PXM RES_US_RL RES_US_RS RES_US_TFP_FE RES_US_TRATE RES_US_UNR_A RES_US_WH1 RES_US_WH2 RES_US_WH3 RES_US_WK RES_US_XM RES_WTRADE RES_WTRADER RPOIL RW_ER RW_INFL SI_ALPHA1 SI_ALPHA2 SI_ALPHA3 SI_BCHI1 SI_BCHI2 SI_BETA SI_BT_GDP_RAT SI_CPI_GAP_EXOG SI_CPI_TAR SI_DELTA SI_DELTA_SS SI_DEM3 SI_DLLF_SS SI_G SI_GDP_GAP_EXOG SI_GEXOG SI_ICOM SI_LAMBDA SI_LAMBDA1 SI_LAMBDA2 SI_LAMBDA3 SI_MGROW SI_MT SI_NEER_PAR SI_NLIN SI_PAR SI_PART SI_PARUS SI_PGNPNO_GAP_EXOG SI_PGNPNO_TAR SI_PGNP_GAP_EXOG SI_PGNP_TAR SI_PHI SI_POP SI_PREM SI_PROB SI_PRODOIL SI_P_GAP_EXOG SI_P_TAR SI_RSCON SI_RSCON2 SI_RS_EXOG SI_SIGMA SI_TAXK_ALPHA SI_TAXK_SHAR SI_TPREM SI_TRATEK SI_TRATE_ALPHA SI_TRATE_EXOG SI_UNR_FE SI_UNR_GAP_EXOG SI_XOIL SI_X_RS1 SI_X_RS2 TME UK_ALPHA1 UK_ALPHA2 UK_ALPHA3 UK_BCHI1 UK_BCHI2 UK_BETA UK_BT_GDP_RAT UK_CPI_GAP_EXOG UK_CPI_TAR UK_DELTA UK_DELTA_SS UK_DEM3 UK_DLLF_SS UK_G UK_GDP_GAP_EXOG UK_GEXOG UK_ICOM UK_LAMBDA UK_LAMBDA1 UK_LAMBDA2 UK_LAMBDA3 UK_MGROW UK_MT UK_NEER_PAR UK_NLIN UK_PAR UK_PART UK_PARUS UK_PGNPNO_GAP_EXOG UK_PGNPNO_TAR UK_PGNP_GAP_EXOG UK_PGNP_TAR UK_PHI UK_POP UK_PREM UK_PROB UK_PRODOIL UK_P_GAP_EXOG UK_P_TAR UK_RSCON UK_RSCON2 UK_RS_EXOG UK_SIGMA UK_TAXK_ALPHA UK_TAXK_SHAR UK_TPREM UK_TRATEK UK_TRATE_ALPHA UK_TRATE_EXOG UK_UNR_FE UK_UNR_GAP_EXOG UK_XOIL UK_X_RS1 UK_X_RS2 US_ALPHA1 US_ALPHA2 US_ALPHA3 US_BCHI1 US_BCHI2 US_BETA US_BT_GDP_RAT US_CPI_GAP_EXOG US_CPI_TAR US_DELTA US_DELTA_SS US_DEM3 US_DLLF_SS US_G US_GDP_GAP_EXOG US_GEXOG US_ICOM US_LAMBDA US_LAMBDA1 US_LAMBDA2 US_LAMBDA3 US_MGROW US_MT US_NEER_PAR US_NLIN US_PAR US_PART US_PARUS US_PGNPNO_GAP_EXOG US_PGNPNO_TAR US_PGNP_GAP_EXOG US_PGNP_TAR US_PHI US_POP US_PREM US_PROB US_PRODOIL US_P_GAP_EXOG US_P_TAR US_RRBAR US_RSCON US_RSCON2 US_RS_EXOG US_SIGMA US_TAXK_ALPHA US_TAXK_SHAR US_TPREM US_TRATEK US_TRATE_ALPHA US_TRATE_EXOG US_UNR_FE US_UNR_GAP_EXOG US_XOIL US_X_RS1 US_X_RS2 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.57959 0.02573 0.02573 0.50966 0.00000 236.22570 0.00000 0.00000 7.85769 1.00000 0.99845 0.99991 0.99935 1.04959 82.86612 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.55124 0.00000 1.54608 4.61939 33158.00000 0.00000 0.02100 31.85499 0.00000 1.54745 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 15.48200 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 4381.22130 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.55309 0.02772 0.02772 0.55039 0.00000 2594.67864 0.00000 0.00000 87.57525 0.75252 0.95980 0.99005 0.97379 1.04959 765.53343 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.54542 0.00000 1.54545 5.10358 61585.00000 0.00000 0.02100 4.46862 0.00000 1.54525 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 17.60976 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.57327 0.02733 0.02733 0.51791 0.00000 1147.43002 0.00000 0.00000 51.20367 0.74355 0.94622 0.98489 0.96355 1.04959 803.46800 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.55408 0.00000 1.55410 4.52113 77745.00000 0.00000 0.02100 1.49722 0.00000 1.55394 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.14373 1.00000 0.00000 0.12235 235.22684 97.39632 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.57443 0.02287 0.02287 0.54967 0.00000 505.45810 0.00000 0.00000 27.93591 0.91161 0.96192 0.99079 0.97535 1.04959 448.37859 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.60637 0.00000 1.60635 5.67630 56043.00000 0.00000 0.02100 1.56977 0.00000 1.60574 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 8.44371 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.46659 0.03532 0.03532 0.63827 0.00000 133.19564 0.00000 0.00000 8.10472 1.00000 0.78134 0.88702 0.82138 1.04959 131.83233 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.44352 0.00000 1.44351 0.00000 127292.00000 0.00000 0.02100 0.02121 0.00000 1.44087 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.29399 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07258 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.92608 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42239 32.18884 0.93107 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.77222 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 -0.68936 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -1.48640 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.55910 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.87393 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96143 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -2.00373 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.47600 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.83696 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10048 -0.00369 -0.00000 -4.48659 1.37209 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.60754 0.02762 0.02762 0.52207 0.00000 988.88207 0.00000 0.00000 60.79320 0.87110 0.94599 0.98480 0.96337 1.04959 571.14916 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.60664 0.00000 1.60662 4.92256 155124.00000 0.00000 0.02100 34.41056 0.00000 1.60619 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 71.38010 1.00000 0.00000 56.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.65344 0.02234 0.02234 0.55448 0.00000 237.42995 0.00000 0.00000 11.25173 1.00000 0.94361 0.98383 0.96153 1.04959 74.83822 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.65413 0.00000 1.64980 2.24796 59949.00000 0.00000 0.02100 14.43211 0.00000 1.64753 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 16.03367 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.68518 0.06836 0.06836 0.52882 0.00000 1982.34036 0.00000 0.00000 71.83063 0.69005 0.80852 0.90660 0.84632 1.04959 1206.52096 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.65037 0.00000 1.64792 1.86949 306560.00000 0.00000 0.02100 103.96362 0.00000 1.64966 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 9.48214 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.62224 0.02573 0.02573 0.52022 0.00000 241.42266 0.00000 0.00000 8.03056 1.00000 0.99845 0.99991 0.99935 1.04959 86.97578 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.59313 0.00000 1.58782 4.61939 33330.48276 0.00000 0.02100 32.55580 0.00000 1.58923 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 15.82261 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 4598.50356 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.59502 0.02772 0.02772 0.55941 0.00000 2651.76154 -0.00000 0.00000 89.50190 0.75252 0.95980 0.99005 0.97379 1.04959 803.49929 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.58715 0.00000 1.58718 5.10358 61692.37603 0.00000 0.02100 4.56693 0.00000 1.58697 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 17.99717 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.61575 0.02733 0.02733 0.52850 0.00000 1172.67347 -0.00000 0.00000 52.33015 0.74355 0.94622 0.98489 0.96355 1.04959 843.31519 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.59604 0.00000 1.59606 4.52113 77474.15599 0.00000 0.02100 1.53016 0.00000 1.59590 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.25689 1.00000 0.00000 0.12505 240.40183 99.53904 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.61694 0.02287 0.02287 0.55706 0.00000 516.57817 0.00000 0.00000 28.55050 0.91161 0.96192 0.99079 0.97535 1.04959 470.61548 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.64974 0.00000 1.64972 5.67630 55861.90312 0.00000 0.02100 1.60431 0.00000 1.64909 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 8.62947 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.50619 0.03532 0.03532 0.64593 0.00000 136.12594 0.00000 0.00000 8.28302 1.00000 0.78134 0.88702 0.82138 1.04959 138.37043 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.48249 0.00000 1.48249 0.00000 127038.38424 0.00000 0.02100 0.02168 0.00000 1.47978 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.30045 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07258 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.91030 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42268 32.18884 0.92964 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.77072 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 -0.67154 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -1.46418 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.53917 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.85773 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96175 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.98586 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.45934 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.82131 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.40913 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.65095 0.02762 0.02762 0.52925 0.00000 1010.63746 -0.00000 0.00000 62.13065 0.87110 0.94599 0.98480 0.96337 1.04959 599.47473 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.65002 0.00000 1.64999 4.92256 155211.74384 0.00000 0.02100 35.16759 0.00000 1.64955 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 72.95046 1.00000 0.00000 57.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.69808 0.02234 0.02234 0.56010 0.00000 242.65341 0.00000 0.00000 11.49927 1.00000 0.94361 0.98383 0.96153 1.04959 78.54975 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.69879 0.00000 1.69435 2.24796 60022.32020 0.00000 0.02100 14.74961 0.00000 1.69201 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 16.38641 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.73068 0.06836 0.06836 0.53797 0.00000 2025.95182 0.00000 0.00000 73.41091 0.69005 0.80852 0.90660 0.84632 1.04959 1266.35715 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.69493 0.00000 1.69241 1.86949 308304.45977 0.00000 0.02100 106.25082 0.00000 1.69421 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 9.69075 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.66604 0.02573 0.02573 0.53079 0.00000 246.73396 0.00000 0.00000 8.20723 1.00000 0.99845 0.99991 0.99935 1.04959 91.28926 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.63614 0.00000 1.63070 4.61939 33502.49425 0.00000 0.02100 33.27203 0.00000 1.63214 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 16.17070 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 4826.56172 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.63809 0.02772 0.02772 0.56848 0.00000 2710.10026 0.00000 0.00000 91.47094 0.75252 0.95980 0.99005 0.97379 1.04959 843.34802 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.63000 0.00000 1.63003 5.10358 61799.45868 0.00000 0.02100 4.66740 0.00000 1.62982 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 18.39311 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.65937 0.02733 0.02733 0.53928 0.00000 1198.47227 0.00000 0.00000 53.48141 0.74355 0.94622 0.98489 0.96355 1.04959 885.13856 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.63913 0.00000 1.63916 4.52113 77204.05200 0.00000 0.02100 1.56382 0.00000 1.63899 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.37254 1.00000 0.00000 0.12780 245.69067 101.72890 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.66060 0.02287 0.02287 0.56456 0.00000 527.94289 -0.00000 0.00000 29.17861 0.91161 0.96192 0.99079 0.97535 1.04959 493.95518 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.69429 0.00000 1.69426 5.67630 55681.30104 0.00000 0.02100 1.63960 0.00000 1.69362 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 8.81932 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.54686 0.03532 0.03532 0.65368 0.00000 139.12071 0.00000 0.00000 8.46525 1.00000 0.78134 0.88702 0.82138 1.04959 145.23277 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.52252 0.00000 1.52252 0.00000 126785.46141 0.00000 0.02100 0.02216 0.00000 1.51973 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.30706 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07258 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.89453 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42294 32.18884 0.92838 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76939 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.65372 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -1.44190 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.51920 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.84151 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96203 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.96798 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.44268 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.80565 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 1.44717 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.69552 0.02762 0.02762 0.53646 0.00000 1032.87147 0.00000 0.00000 63.49752 0.87110 0.94599 0.98480 0.96337 1.04959 629.20508 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.69457 0.00000 1.69454 4.92256 155299.24795 0.00000 0.02100 35.94128 0.00000 1.69409 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 74.55537 1.00000 0.00000 58.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.74393 0.02234 0.02234 0.56572 0.00000 247.99178 0.00000 0.00000 11.75225 1.00000 0.94361 0.98383 0.96153 1.04959 82.44535 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.74466 0.00000 1.74009 2.24796 60095.44007 0.00000 0.02100 15.07411 0.00000 1.73769 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 16.74691 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.77740 0.06836 0.06836 0.54710 0.00000 2070.52274 0.00000 0.00000 75.02595 0.69005 0.80852 0.90660 0.84632 1.04959 1329.16086 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.74070 0.00000 1.73810 1.86949 310044.15326 0.00000 0.02100 108.58833 0.00000 1.73995 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 9.90394 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.71102 0.02573 0.02573 0.54139 0.00000 252.16210 0.00000 0.00000 8.38779 1.00000 0.99845 0.99991 0.99935 1.04959 95.81666 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.68032 0.00000 1.67472 4.61939 33674.50575 0.00000 0.02100 34.00401 0.00000 1.67620 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 16.52646 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 5065.93020 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.68231 0.02772 0.02772 0.57763 0.00000 2769.72244 -0.00000 0.00000 93.48330 0.75252 0.95980 0.99005 0.97379 1.04959 885.17302 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.67401 0.00000 1.67405 5.10358 61906.54132 0.00000 0.02100 4.77008 0.00000 1.67382 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 18.79776 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.70418 0.02733 0.02733 0.55029 0.00000 1224.83865 0.00000 0.00000 54.65801 0.74355 0.94622 0.98489 0.96355 1.04959 929.03611 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.68339 0.00000 1.68341 4.52113 76933.94800 0.00000 0.02100 1.59823 0.00000 1.68324 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.49074 1.00000 0.00000 0.13061 251.09586 103.96693 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.70543 0.02287 0.02287 0.57217 0.00000 539.55762 0.00000 0.00000 29.82054 0.91161 0.96192 0.99079 0.97535 1.04959 518.45239 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.74003 0.00000 1.74001 5.67630 55500.69896 0.00000 0.02100 1.67568 0.00000 1.73934 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 9.01335 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.58862 0.03532 0.03532 0.66153 0.00000 142.18137 0.00000 0.00000 8.65148 1.00000 0.78134 0.88702 0.82138 1.04959 152.43544 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.56363 0.00000 1.56362 0.00000 126532.53859 0.00000 0.02100 0.02265 0.00000 1.56076 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.31382 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07258 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.87876 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42317 32.18884 0.92726 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76821 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 -0.63589 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -1.41955 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.49919 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.82527 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96229 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.95010 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.42602 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.78999 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.48623 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.74130 0.02762 0.02762 0.54374 0.00000 1055.59463 0.00000 0.00000 64.89447 0.87110 0.94599 0.98480 0.96337 1.04959 660.40987 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.74033 0.00000 1.74030 4.92256 155386.75205 0.00000 0.02100 36.73199 0.00000 1.73983 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 76.19559 1.00000 0.00000 59.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.79102 0.02234 0.02234 0.57138 0.00000 253.44760 0.00000 0.00000 12.01080 1.00000 0.94361 0.98383 0.96153 1.04959 86.53414 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.79176 0.00000 1.78708 2.24796 60168.55993 0.00000 0.02100 15.40574 0.00000 1.78461 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 17.11534 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.82539 0.06836 0.06836 0.55624 0.00000 2116.07422 0.00000 0.00000 76.67652 0.69005 0.80852 0.90660 0.84632 1.04959 1395.07926 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.78770 0.00000 1.78503 1.86949 311783.84674 0.00000 0.02100 110.97728 0.00000 1.78693 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 10.12183 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.75722 0.02573 0.02573 0.55203 0.00000 257.70967 0.00000 0.00000 8.57232 1.00000 0.99845 0.99991 0.99935 1.04959 100.56859 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.72569 0.00000 1.71994 4.61939 33846.51724 0.00000 0.02100 34.75210 0.00000 1.72146 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 16.89004 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 5317.16992 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.72774 0.02772 0.02772 0.58685 0.00000 2830.65630 0.00000 0.00000 95.53993 0.75252 0.95980 0.99005 0.97379 1.04959 929.07229 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.71921 0.00000 1.71924 5.10358 62013.62397 0.00000 0.02100 4.87502 0.00000 1.71902 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 19.21131 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.75019 0.02733 0.02733 0.56154 0.00000 1251.78508 0.00000 0.00000 55.86048 0.74355 0.94622 0.98489 0.96355 1.04959 975.11073 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.72884 0.00000 1.72887 4.52113 76663.84401 0.00000 0.02100 1.63339 0.00000 1.72869 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.61153 1.00000 0.00000 0.13348 256.61997 106.25420 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.75148 0.02287 0.02287 0.57991 0.00000 551.42789 0.00000 0.00000 30.47659 0.91161 0.96192 0.99079 0.97535 1.04959 544.16452 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.78701 0.00000 1.78699 5.67630 55320.09688 0.00000 0.02100 1.71254 0.00000 1.78631 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 9.21164 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.63151 0.03532 0.03532 0.66948 0.00000 145.30935 -0.00000 0.00000 8.84181 1.00000 0.78134 0.88702 0.82138 1.04959 159.99532 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.60584 0.00000 1.60584 0.00000 126279.61576 0.00000 0.02100 0.02314 0.00000 1.60290 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.32072 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07258 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.86298 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42337 32.18884 0.92626 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76716 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.61805 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -1.39712 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.47913 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.80901 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96252 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.93220 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.40936 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.77433 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.52635 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.78832 0.02762 0.02762 0.55108 0.00000 1078.81770 0.00000 0.00000 66.32214 0.87110 0.94599 0.98480 0.96337 1.04959 693.16223 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.78732 0.00000 1.78729 4.92256 155474.25616 0.00000 0.02100 37.54009 0.00000 1.78681 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 77.87189 1.00000 0.00000 60.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.83938 0.02234 0.02234 0.57706 0.00000 259.02344 0.00000 0.00000 12.27504 1.00000 0.94361 0.98383 0.96153 1.04959 90.82571 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.84014 0.00000 1.83533 2.24796 60241.67980 0.00000 0.02100 15.74466 0.00000 1.83280 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 17.49188 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.87468 0.06836 0.06836 0.56538 0.00000 2162.62783 0.00000 0.00000 78.36340 0.69005 0.80852 0.90660 0.84632 1.04959 1464.26681 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.83596 0.00000 1.83323 1.86949 313523.54023 0.00000 0.02100 113.41878 0.00000 1.83517 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 10.34451 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.80466 0.02573 0.02573 0.56274 0.00000 263.37928 0.00000 0.00000 8.76091 1.00000 0.99845 0.99991 0.99935 1.04959 105.55619 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.77228 0.00000 1.76638 4.61939 34019.00000 0.00000 0.02100 35.51664 0.00000 1.76794 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 17.26162 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 5580.86961 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.77439 0.02772 0.02772 0.59617 0.00000 2892.93070 0.00000 0.00000 97.64181 0.75252 0.95980 0.99005 0.97379 1.04959 975.14869 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.76563 0.00000 1.76566 5.10358 62121.00000 0.00000 0.02100 4.98227 0.00000 1.76543 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 19.63396 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.79745 0.02733 0.02733 0.57307 0.00000 1279.32434 0.00000 0.00000 57.08941 0.74355 0.94622 0.98489 0.96355 1.04959 1023.47036 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.77552 0.00000 1.77555 4.52113 76393.00000 0.00000 0.02100 1.66932 0.00000 1.77536 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.73499 1.00000 0.00000 0.13642 262.26560 108.59179 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.79877 0.02287 0.02287 0.58781 0.00000 563.55929 0.00000 0.00000 31.14708 0.91161 0.96192 0.99079 0.97535 1.04959 571.15181 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.83526 0.00000 1.83524 5.67630 55139.00000 0.00000 0.02100 1.75022 0.00000 1.83454 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 9.41430 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.67557 0.03532 0.03532 0.67757 0.00000 148.50616 0.00000 0.00000 9.03633 1.00000 0.78134 0.88702 0.82138 1.04959 167.93013 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.64920 0.00000 1.64920 0.00000 126026.00000 0.00000 0.02100 0.02365 0.00000 1.64618 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.32778 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.84720 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42355 32.18884 0.92537 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76623 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.60019 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -1.37459 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.45902 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.79270 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96272 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.91428 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.39268 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.75867 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 1.56755 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.83660 0.02762 0.02762 0.55850 0.00000 1102.55168 0.00000 0.00000 67.78123 0.87110 0.94599 0.98480 0.96337 1.04959 727.53892 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.83557 0.00000 1.83554 4.92256 155562.00000 0.00000 0.02100 38.36597 0.00000 1.83505 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 79.58507 1.00000 0.00000 61.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.88904 0.02234 0.02234 0.58278 0.00000 264.72196 0.00000 0.00000 12.54509 1.00000 0.94361 0.98383 0.96153 1.04959 95.33012 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.88982 0.00000 1.88488 2.24796 60315.00000 0.00000 0.02100 16.09104 0.00000 1.88228 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 17.87670 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.92530 0.06836 0.06836 0.57456 0.00000 2210.20561 0.00000 0.00000 80.08739 0.69005 0.80852 0.90660 0.84632 1.04959 1536.88565 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.88553 0.00000 1.88273 1.86949 315268.00000 0.00000 0.02100 115.91399 0.00000 1.88472 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 10.57209 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.85339 0.02573 0.02573 0.57533 0.00000 269.17362 0.00000 0.00000 8.95365 1.00000 0.99845 0.99991 0.99935 1.04959 110.79114 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.82013 0.00000 1.81407 4.61939 34146.73001 0.00000 0.02100 36.29801 0.00000 1.81568 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 17.64138 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 5857.64723 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.82229 0.02772 0.02772 0.60472 0.00000 2956.57515 0.00000 0.00000 99.78993 0.75252 0.95980 0.99005 0.97379 1.04959 1023.51021 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.81330 0.00000 1.81334 5.10358 62207.75246 0.00000 0.02100 5.09188 0.00000 1.81310 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 20.06590 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.84598 0.02733 0.02733 0.58693 0.00000 1307.46946 0.00000 0.00000 58.34538 0.74355 0.94622 0.98489 0.96355 1.04959 1074.22835 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.82346 0.00000 1.82349 4.52113 76107.35652 0.00000 0.02100 1.70605 0.00000 1.82330 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.86115 1.00000 0.00000 0.13942 268.03545 110.98081 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.84734 0.02287 0.02287 0.59821 0.00000 575.95759 0.00000 0.00000 31.83232 0.91161 0.96192 0.99079 0.97535 1.04959 599.47751 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.88481 0.00000 1.88479 5.67630 54953.10186 0.00000 0.02100 1.78872 0.00000 1.88407 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 9.62141 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.72081 0.03532 0.03532 0.67974 0.00000 151.77329 0.00000 0.00000 9.23513 1.00000 0.78134 0.88702 0.82138 1.04959 176.25846 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.69373 0.00000 1.69373 0.00000 125679.78970 0.00000 0.02100 0.02417 0.00000 1.69063 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.33499 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.82976 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42372 32.18884 0.92459 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76540 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.58245 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.35094 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.43780 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.77799 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96290 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.89525 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04446 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.37485 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.74134 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 1.60987 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.88619 0.02762 0.02762 0.56783 0.00000 1126.80781 0.00000 0.00000 69.27242 0.87110 0.94599 0.98480 0.96337 1.04959 763.62048 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.88513 0.00000 1.88510 4.92256 155586.98631 0.00000 0.02100 39.21002 0.00000 1.88460 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 81.33594 1.00000 0.00000 62.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.94004 0.02234 0.02234 0.59055 0.00000 270.54584 0.00000 0.00000 12.82108 1.00000 0.94361 0.98383 0.96153 1.04959 100.05792 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.94085 0.00000 1.93577 2.24796 60364.37295 0.00000 0.02100 16.44505 0.00000 1.93310 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 18.26999 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 1.97728 0.06836 0.06836 0.58615 0.00000 2258.83011 0.00000 0.00000 81.84932 0.69005 0.80852 0.90660 0.84632 1.04959 1613.10595 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.93644 0.00000 1.93356 1.86949 316748.58872 0.00000 0.02100 118.46409 0.00000 1.93561 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 10.80467 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.90343 0.02573 0.02573 0.58803 0.00000 275.09543 0.00000 0.00000 9.15063 1.00000 0.99845 0.99991 0.99935 1.04959 116.28572 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.86928 0.00000 1.86305 4.61939 34274.46002 0.00000 0.02100 37.09657 0.00000 1.86470 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 18.02949 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 6148.15135 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.87150 0.02772 0.02772 0.61333 0.00000 3021.61977 0.00000 0.00000 101.98531 0.75252 0.95980 0.99005 0.97379 1.04959 1074.27017 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.86226 0.00000 1.86230 5.10358 62294.50493 0.00000 0.02100 5.20390 0.00000 1.86205 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 20.50735 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.89582 0.02733 0.02733 0.60114 0.00000 1336.23377 0.00000 0.00000 59.62897 0.74355 0.94622 0.98489 0.96355 1.04959 1127.50362 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.87269 0.00000 1.87272 4.52113 75821.71303 0.00000 0.02100 1.74358 0.00000 1.87253 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 5.99010 1.00000 0.00000 0.14249 273.93222 113.42239 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.89721 0.02287 0.02287 0.60883 0.00000 588.62865 -0.00000 0.00000 32.53263 0.91161 0.96192 0.99079 0.97535 1.04959 629.20799 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.93570 0.00000 1.93568 5.67630 54767.20372 0.00000 0.02100 1.82807 0.00000 1.93494 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 9.83308 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.76727 0.03532 0.03532 0.68193 0.00000 155.11230 0.00000 0.00000 9.43830 1.00000 0.78134 0.88702 0.82138 1.04959 184.99982 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.73946 0.00000 1.73946 0.00000 125333.57941 0.00000 0.02100 0.02471 0.00000 1.73628 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.34236 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.81230 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42386 32.18884 0.92389 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76467 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.56470 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -1.32717 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.41651 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.76327 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96306 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.87621 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.35701 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.72400 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.65332 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.93712 0.02762 0.02762 0.57728 0.00000 1151.59757 0.00000 0.00000 70.79641 0.87110 0.94599 0.98480 0.96337 1.04959 801.49147 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.93603 0.00000 1.93600 4.92256 155611.97262 0.00000 0.02100 40.07264 0.00000 1.93548 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 83.12533 1.00000 0.00000 63.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 1.99242 0.02234 0.02234 0.59839 0.00000 276.49784 0.00000 0.00000 13.10315 1.00000 0.94361 0.98383 0.96153 1.04959 105.02020 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 1.99325 0.00000 1.98804 2.24796 60413.74589 0.00000 0.02100 16.80684 0.00000 1.98530 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 18.67193 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.03067 0.06836 0.06836 0.59781 0.00000 2308.52435 0.00000 0.00000 83.65000 0.69005 0.80852 0.90660 0.84632 1.04959 1693.10632 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 1.98873 0.00000 1.98577 1.86949 318229.17744 0.00000 0.02100 121.07030 0.00000 1.98787 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 11.04238 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 1.95482 0.02573 0.02573 0.60083 0.00000 281.14753 0.00000 0.00000 9.35195 1.00000 0.99845 0.99991 0.99935 1.04959 122.05279 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.91975 0.00000 1.91335 4.61939 34402.19003 0.00000 0.02100 37.91269 0.00000 1.91505 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 18.42614 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 6453.06274 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.92203 0.02772 0.02772 0.62201 0.00000 3088.09537 -0.00000 0.00000 104.22898 0.75252 0.95980 0.99005 0.97379 1.04959 1127.54752 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.91254 0.00000 1.91258 5.10358 62381.25739 0.00000 0.02100 5.31839 0.00000 1.91233 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 20.95851 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.94701 0.02733 0.02733 0.61572 0.00000 1365.63090 -0.00000 0.00000 60.94081 0.74355 0.94622 0.98489 0.96355 1.04959 1183.42103 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.92325 0.00000 1.92328 4.52113 75536.06955 0.00000 0.02100 1.78194 0.00000 1.92309 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.12188 1.00000 0.00000 0.14562 279.95873 115.91768 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 1.94844 0.02287 0.02287 0.61966 0.00000 601.57847 0.00000 0.00000 33.24834 0.91161 0.96192 0.99079 0.97535 1.04959 660.41293 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 1.98797 0.00000 1.98794 5.67630 54581.30559 0.00000 0.02100 1.86829 0.00000 1.98718 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 10.04941 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.81498 0.03532 0.03532 0.68414 0.00000 158.52477 0.00000 0.00000 9.64595 1.00000 0.78134 0.88702 0.82138 1.04959 194.17470 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.78643 0.00000 1.78642 0.00000 124987.36911 0.00000 0.02100 0.02525 0.00000 1.78315 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.34989 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.79483 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42399 32.18884 0.92327 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76401 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.54694 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.30330 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.39516 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.74855 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96321 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.85713 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.33915 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.70666 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 1.69795 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 1.98942 0.02762 0.02762 0.58683 0.00000 1176.93270 -0.00000 0.00000 72.35393 0.87110 0.94599 0.98480 0.96337 1.04959 841.24063 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 1.98831 0.00000 1.98827 4.92256 155636.95893 0.00000 0.02100 40.95424 0.00000 1.98774 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 84.95409 1.00000 0.00000 64.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.04622 0.02234 0.02234 0.60630 0.00000 282.58079 0.00000 0.00000 13.39142 1.00000 0.94361 0.98383 0.96153 1.04959 110.22857 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.04707 0.00000 2.04172 2.24796 60463.11884 0.00000 0.02100 17.17659 0.00000 2.03890 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 19.08271 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.08549 0.06836 0.06836 0.60953 0.00000 2359.31186 0.00000 0.00000 85.49030 0.69005 0.80852 0.90660 0.84632 1.04959 1777.07423 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.04242 0.00000 2.03938 1.86949 319709.76616 0.00000 0.02100 123.73385 0.00000 2.04155 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 11.28531 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.00760 0.02573 0.02573 0.61378 0.00000 287.33277 0.00000 0.00000 9.55769 1.00000 0.99845 0.99991 0.99935 1.04959 128.10588 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 1.97158 0.00000 1.96502 4.61939 34530.26999 0.00000 0.02100 38.74677 0.00000 1.96675 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 18.83151 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 6773.09590 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 1.97392 0.02772 0.02772 0.63079 0.00000 3156.03343 0.00000 0.00000 106.52202 0.75252 0.95980 0.99005 0.97379 1.04959 1183.46711 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 1.96418 0.00000 1.96422 5.10358 62468.24754 0.00000 0.02100 5.43539 0.00000 1.96396 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 21.41960 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 1.99957 0.02733 0.02733 0.63073 0.00000 1395.67476 0.00000 0.00000 62.28151 0.74355 0.94622 0.98489 0.96355 1.04959 1242.11160 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 1.97518 0.00000 1.97521 4.52113 75249.64348 0.00000 0.02100 1.82114 0.00000 1.97501 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.25656 1.00000 0.00000 0.14883 286.11782 118.46787 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.00105 0.02287 0.02287 0.63075 0.00000 614.81319 -0.00000 0.00000 33.97981 0.91161 0.96192 0.99079 0.97535 1.04959 693.16545 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.04164 0.00000 2.04161 5.67630 54394.89814 0.00000 0.02100 1.90939 0.00000 2.04084 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 10.27050 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.86399 0.03532 0.03532 0.68637 0.00000 162.01232 0.00000 0.00000 9.85816 1.00000 0.78134 0.88702 0.82138 1.04959 203.80460 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.83466 0.00000 1.83466 0.00000 124640.21030 0.00000 0.02100 0.02580 0.00000 1.83130 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.35759 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.77734 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42411 32.18884 0.92271 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76343 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.52917 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.27928 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.37372 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.73380 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96333 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.83803 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.32128 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.68931 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.74378 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.04313 0.02762 0.02762 0.59653 0.00000 1202.82520 0.00000 0.00000 73.94571 0.87110 0.94599 0.98480 0.96337 1.04959 882.96112 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.04199 0.00000 2.04195 4.92256 155662.01369 0.00000 0.02100 41.85523 0.00000 2.04141 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 86.82308 1.00000 0.00000 65.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.10147 0.02234 0.02234 0.61429 0.00000 288.79757 0.00000 0.00000 13.68603 1.00000 0.94361 0.98383 0.96153 1.04959 115.69524 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.10234 0.00000 2.09684 2.24796 60512.62705 0.00000 0.02100 17.55447 0.00000 2.09395 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 19.50253 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.14180 0.06836 0.06836 0.62134 0.00000 2411.21669 0.00000 0.00000 87.37108 0.69005 0.80852 0.90660 0.84632 1.04959 1865.20644 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.09757 0.00000 2.09445 1.86949 321194.41128 0.00000 0.02100 126.45599 0.00000 2.09667 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 11.53359 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.06181 0.02573 0.02573 0.62681 0.00000 293.65409 0.00000 0.00000 9.76796 1.00000 0.99845 0.99991 0.99935 1.04959 134.45916 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.02481 0.00000 2.01807 4.61939 34658.00000 0.00000 0.02100 39.59920 0.00000 2.01985 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 19.24580 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 7109.00078 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.02722 0.02772 0.02772 0.63961 0.00000 3225.46613 0.00000 0.00000 108.86550 0.75252 0.95980 0.99005 0.97379 1.04959 1242.15997 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.01721 0.00000 2.01725 5.10358 62555.00000 0.00000 0.02100 5.55497 0.00000 2.01699 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 21.89083 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.05356 0.02733 0.02733 0.64609 0.00000 1426.37959 -0.00000 0.00000 63.65170 0.74355 0.94622 0.98489 0.96355 1.04959 1303.71288 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.02851 0.00000 2.02854 4.52113 74964.00000 0.00000 0.02100 1.86121 0.00000 2.02833 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.39421 1.00000 0.00000 0.15210 292.41240 121.07416 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.05508 0.02287 0.02287 0.64204 0.00000 628.33908 0.00000 0.00000 34.72736 0.91161 0.96192 0.99079 0.97535 1.04959 727.54229 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.09677 0.00000 2.09674 5.67630 54209.00000 0.00000 0.02100 1.95140 0.00000 2.09594 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 10.49645 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.91432 0.03532 0.03532 0.68862 0.00000 165.57658 0.00000 0.00000 10.07504 1.00000 0.78134 0.88702 0.82138 1.04959 213.91208 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.88420 0.00000 1.88419 0.00000 124294.00000 0.00000 0.02100 0.02637 0.00000 1.88075 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.36546 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.75985 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42421 32.18884 0.92222 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76292 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.51139 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.25518 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.35222 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.71905 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96345 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.81891 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.30340 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.67195 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 1.79085 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.09830 0.02762 0.02762 0.60631 0.00000 1229.28735 0.00000 0.00000 75.57252 0.87110 0.94599 0.98480 0.96337 1.04959 926.75068 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.09712 0.00000 2.09709 4.92256 155687.00000 0.00000 0.02100 42.77605 0.00000 2.09653 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 88.73318 1.00000 0.00000 66.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.15821 0.02234 0.02234 0.62232 0.00000 295.15111 0.00000 0.00000 13.98712 1.00000 0.94361 0.98383 0.96153 1.04959 121.43303 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.15910 0.00000 2.15346 2.24796 60562.00000 0.00000 0.02100 17.94067 0.00000 2.15049 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 19.93159 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.19963 0.06836 0.06836 0.63319 0.00000 2464.26343 -0.00000 0.00000 89.29325 0.69005 0.80852 0.90660 0.84632 1.04959 1957.70947 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.15420 0.00000 2.15100 1.86949 322675.00000 0.00000 0.02100 129.23802 0.00000 2.15328 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 11.78732 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.11747 0.02573 0.02573 0.63922 0.00000 300.11448 0.00000 0.00000 9.98286 1.00000 0.99845 0.99991 0.99935 1.04959 141.12752 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.07948 0.00000 2.07256 4.61939 34726.56243 0.00000 0.02100 40.47038 0.00000 2.07439 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 19.66921 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 7461.56453 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.08195 0.02772 0.02772 0.64740 0.00000 3296.42635 0.00000 0.00000 111.26054 0.75252 0.95980 0.99005 0.97379 1.04959 1303.76364 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.07168 0.00000 2.07172 5.10358 62576.18839 0.00000 0.02100 5.67718 0.00000 2.07144 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 22.37243 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.10901 0.02733 0.02733 0.66584 0.00000 1457.75993 0.00000 0.00000 65.05204 0.74355 0.94622 0.98489 0.96355 1.04959 1368.36921 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.08328 0.00000 2.08331 4.52113 74670.36090 0.00000 0.02100 1.90215 0.00000 2.08310 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.53488 1.00000 0.00000 0.15545 298.84547 123.73779 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.11056 0.02287 0.02287 0.65811 0.00000 642.16253 0.00000 0.00000 35.49136 0.91161 0.96192 0.99079 0.97535 1.04959 763.62402 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.15338 0.00000 2.15335 5.67630 54001.71358 0.00000 0.02100 1.99433 0.00000 2.15253 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 10.72737 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 1.96600 0.03532 0.03532 0.69194 0.00000 169.21927 0.00000 0.00000 10.29669 1.00000 0.78134 0.88702 0.82138 1.04959 224.52084 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.93507 0.00000 1.93507 0.00000 123866.23439 0.00000 0.02100 0.02695 0.00000 1.93153 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.37350 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.74150 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42430 32.18884 0.92179 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76246 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.49334 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.22923 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.32855 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03622 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.70357 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96355 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.79868 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.28364 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.65478 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.83920 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.15495 0.02762 0.02762 0.61770 0.00000 1256.33165 0.00000 0.00000 77.23511 0.87110 0.94599 0.98480 0.96337 1.04959 972.71195 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.15375 0.00000 2.15371 4.92256 155612.04107 0.00000 0.02100 43.71712 0.00000 2.15313 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 90.68531 1.00000 0.00000 67.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.21648 0.02234 0.02234 0.63355 0.00000 301.64443 0.00000 0.00000 14.29484 1.00000 0.94361 0.98383 0.96153 1.04959 127.45538 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.21740 0.00000 2.21160 2.24796 60563.59912 0.00000 0.02100 18.33537 0.00000 2.20855 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 20.37008 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.25902 0.06836 0.06836 0.64253 0.00000 2518.47720 0.00000 0.00000 91.25770 0.69005 0.80852 0.90660 0.84632 1.04959 2054.80011 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.21237 0.00000 2.20907 1.86949 323736.81818 0.00000 0.02100 132.08126 0.00000 2.21142 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 12.04664 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.17465 0.02573 0.02573 0.65177 0.00000 306.71699 0.00000 0.00000 10.20248 1.00000 0.99845 0.99991 0.99935 1.04959 148.12660 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.13563 0.00000 2.12852 4.61939 34795.12486 0.00000 0.02100 41.36073 0.00000 2.13040 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 20.10193 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 7831.61332 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.13816 0.02772 0.02772 0.65525 0.00000 3368.94769 0.00000 0.00000 113.70827 0.75252 0.95980 0.99005 0.97379 1.04959 1368.42249 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.12761 0.00000 2.12766 5.10358 62597.37678 0.00000 0.02100 5.80208 0.00000 2.12737 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 22.86462 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.16595 0.02733 0.02733 0.68622 0.00000 1489.83063 0.00000 0.00000 66.48318 0.74355 0.94622 0.98489 0.96355 1.04959 1436.23211 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.13953 0.00000 2.13956 4.52113 74376.72180 0.00000 0.02100 1.94400 0.00000 2.13934 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.67865 1.00000 0.00000 0.15887 305.42007 126.46002 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.16755 0.02287 0.02287 0.67463 0.00000 656.29010 0.00000 0.00000 36.27217 0.91161 0.96192 0.99079 0.97535 1.04959 801.49519 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.21152 0.00000 2.21149 5.67630 53794.42716 0.00000 0.02100 2.03820 0.00000 2.21065 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 10.96337 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.01908 0.03532 0.03532 0.69530 0.00000 172.94209 -0.00000 0.00000 10.52321 1.00000 0.78134 0.88702 0.82138 1.04959 235.65572 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 1.98732 0.00000 1.98731 0.00000 123438.46878 0.00000 0.02100 0.02755 0.00000 1.98368 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.38171 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.72313 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42438 32.18884 0.92140 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76205 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 -0.47527 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -1.20310 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.30475 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.68806 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96364 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.77842 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.26385 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.63761 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.88884 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.21313 0.02762 0.02762 0.62926 0.00000 1283.97093 0.00000 0.00000 78.93429 0.87110 0.94599 0.98480 0.96337 1.04959 1020.95262 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.21190 0.00000 2.21186 4.92256 155537.08215 0.00000 0.02100 44.67889 0.00000 2.21127 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 92.68039 1.00000 0.00000 68.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.27632 0.02234 0.02234 0.64494 0.00000 308.28060 0.00000 0.00000 14.60932 1.00000 0.94361 0.98383 0.96153 1.04959 133.77640 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.27727 0.00000 2.27131 2.24796 60565.19825 0.00000 0.02100 18.73874 0.00000 2.26818 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 20.81822 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.32001 0.06836 0.06836 0.65192 0.00000 2573.88367 0.00000 0.00000 93.26537 0.69005 0.80852 0.90660 0.84632 1.04959 2156.70585 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.27210 0.00000 2.26872 1.86949 324798.63636 0.00000 0.02100 134.98704 0.00000 2.27112 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 12.31167 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.23336 0.02573 0.02573 0.66450 0.00000 313.46476 0.00000 0.00000 10.42693 1.00000 0.99845 0.99991 0.99935 1.04959 155.47279 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.19329 0.00000 2.18599 4.61939 34863.87514 0.00000 0.02100 42.27066 0.00000 2.18792 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 20.54418 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 8220.01431 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.19589 0.02772 0.02772 0.66320 0.00000 3443.06450 0.00000 0.00000 116.20985 0.75252 0.95980 0.99005 0.97379 1.04959 1436.28803 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.18506 0.00000 2.18510 5.10358 62618.62322 0.00000 0.02100 5.92973 0.00000 2.18481 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 23.36765 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.22443 0.02733 0.02733 0.70734 0.00000 1522.60689 0.00000 0.00000 67.94581 0.74355 0.94622 0.98489 0.96355 1.04959 1507.46059 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.19730 0.00000 2.19733 4.52113 74082.27820 0.00000 0.02100 1.98677 0.00000 2.19711 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.82558 1.00000 0.00000 0.16236 312.13931 129.24214 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.22607 0.02287 0.02287 0.69167 0.00000 670.72847 0.00000 0.00000 37.07016 0.91161 0.96192 0.99079 0.97535 1.04959 841.24453 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.27123 0.00000 2.27120 5.67630 53586.57284 0.00000 0.02100 2.08305 0.00000 2.27034 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 11.20457 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.07360 0.03532 0.03532 0.69871 0.00000 176.74681 0.00000 0.00000 10.75473 1.00000 0.78134 0.88702 0.82138 1.04959 247.34283 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.04097 0.00000 2.04097 0.00000 123009.53122 0.00000 0.02100 0.02815 0.00000 2.03724 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.39011 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.70473 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42445 32.18884 0.92105 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76168 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.45719 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -1.17676 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.28079 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.67253 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96372 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.75811 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.24402 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.62043 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.93983 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.27289 0.02762 0.02762 0.64103 0.00000 1312.21828 0.00000 0.00000 80.67084 0.87110 0.94599 0.98480 0.96337 1.04959 1071.58574 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.27162 0.00000 2.27158 4.92256 155461.91785 0.00000 0.02100 45.66183 0.00000 2.27097 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 94.71936 1.00000 0.00000 69.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.33778 0.02234 0.02234 0.65652 0.00000 315.06277 0.00000 0.00000 14.93073 1.00000 0.94361 0.98383 0.96153 1.04959 140.41091 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.33875 0.00000 2.33264 2.24796 60566.80175 0.00000 0.02100 19.15100 0.00000 2.32942 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 21.27622 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.38265 0.06836 0.06836 0.66138 0.00000 2630.50908 0.00000 0.00000 95.31720 0.69005 0.80852 0.90660 0.84632 1.04959 2263.66551 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.33345 0.00000 2.32997 1.86949 325863.36364 0.00000 0.02100 137.95676 0.00000 2.33244 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 12.58253 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.29366 0.02573 0.02573 0.67734 0.00000 320.36098 0.00000 0.00000 10.65632 1.00000 0.99845 0.99991 0.99935 1.04959 163.18331 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.25251 0.00000 2.24501 4.61939 34932.43757 0.00000 0.02100 43.20062 0.00000 2.24699 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 20.99615 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 8627.67765 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.25518 0.02772 0.02772 0.67119 0.00000 3518.81188 0.00000 0.00000 118.76647 0.75252 0.95980 0.99005 0.97379 1.04959 1507.51929 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.24406 0.00000 2.24410 5.10358 62639.81161 0.00000 0.02100 6.06018 0.00000 2.24380 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 23.88173 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.28449 0.02733 0.02733 0.72911 0.00000 1556.10422 0.00000 0.00000 69.44062 0.74355 0.94622 0.98489 0.96355 1.04959 1582.22159 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.25662 0.00000 2.25666 4.52113 73788.63910 0.00000 0.02100 2.03048 0.00000 2.25643 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 6.97574 1.00000 0.00000 0.16593 319.00637 132.08546 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.28618 0.02287 0.02287 0.70914 0.00000 685.48449 -0.00000 0.00000 37.88570 0.91161 0.96192 0.99079 0.97535 1.04959 882.96521 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.33256 0.00000 2.33252 5.67630 53379.28642 0.00000 0.02100 2.12887 0.00000 2.33163 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 11.45107 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.12959 0.03532 0.03532 0.70214 0.00000 180.63524 0.00000 0.00000 10.99133 1.00000 0.78134 0.88702 0.82138 1.04959 259.60955 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.09608 0.00000 2.09608 0.00000 122581.76561 0.00000 0.02100 0.02877 0.00000 2.09224 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.39869 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.68632 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42452 32.18884 0.92074 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76136 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.43910 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -1.15026 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.25673 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.65699 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96379 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.73776 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.22416 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.60325 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 1.99219 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.33426 0.02762 0.02762 0.65295 0.00000 1341.08707 0.00000 0.00000 82.44560 0.87110 0.94599 0.98480 0.96337 1.04959 1124.72996 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.33295 0.00000 2.33291 4.92256 155386.95893 0.00000 0.02100 46.66639 0.00000 2.33229 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 96.80318 1.00000 0.00000 70.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.40090 0.02234 0.02234 0.66823 0.00000 321.99415 0.00000 0.00000 15.25920 1.00000 0.94361 0.98383 0.96153 1.04959 147.37445 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.40190 0.00000 2.39562 2.24796 60568.40088 0.00000 0.02100 19.57232 0.00000 2.39232 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 21.74430 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.44699 0.06836 0.06836 0.67086 0.00000 2688.38025 0.00000 0.00000 97.41418 0.69005 0.80852 0.90660 0.84632 1.04959 2375.92973 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.39645 0.00000 2.39288 1.86949 326925.18182 0.00000 0.02100 140.99180 0.00000 2.39542 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 12.85934 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.35559 0.02573 0.02573 0.69033 0.00000 327.40892 0.00000 0.00000 10.89076 1.00000 0.99845 0.99991 0.99935 1.04959 171.27622 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.31333 0.00000 2.30563 4.61939 35001.00000 0.00000 0.02100 44.15103 0.00000 2.30766 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 21.45806 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 9055.55865 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.31607 0.02772 0.02772 0.67926 0.00000 3596.22570 -0.00000 0.00000 121.37933 0.75252 0.95980 0.99005 0.97379 1.04959 1582.28319 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.30464 0.00000 2.30469 5.10358 62661.00000 0.00000 0.02100 6.19350 0.00000 2.30439 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 24.40713 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.34617 0.02733 0.02733 0.75162 0.00000 1590.33850 0.00000 0.00000 70.96831 0.74355 0.94622 0.98489 0.96355 1.04959 1660.69027 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.31755 0.00000 2.31759 4.52113 73495.00000 0.00000 0.02100 2.07515 0.00000 2.31735 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.12921 1.00000 0.00000 0.16958 326.02451 134.99134 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.34790 0.02287 0.02287 0.72712 0.00000 700.56514 0.00000 0.00000 38.71919 0.91161 0.96192 0.99079 0.97535 1.04959 926.75498 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.39554 0.00000 2.39550 5.67630 53172.00000 0.00000 0.02100 2.17571 0.00000 2.39459 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 11.70299 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.18709 0.03532 0.03532 0.70561 0.00000 184.60921 0.00000 0.00000 11.23314 1.00000 0.78134 0.88702 0.82138 1.04959 272.48462 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.15267 0.00000 2.15267 0.00000 122154.00000 0.00000 0.02100 0.02940 0.00000 2.14873 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.40746 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.66789 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42458 32.18884 0.92047 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76107 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 -0.42100 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -1.12357 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.23254 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.64143 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96386 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.71738 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -2.20427 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.58606 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.04597 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.39728 0.02762 0.02762 0.66506 0.00000 1370.59097 0.00000 0.00000 84.25940 0.87110 0.94599 0.98480 0.96337 1.04959 1180.50981 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.39594 0.00000 2.39590 4.92256 155312.00000 0.00000 0.02100 47.69305 0.00000 2.39526 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 98.93285 1.00000 0.00000 71.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.46573 0.02234 0.02234 0.68011 0.00000 329.07802 0.00000 0.00000 15.59491 1.00000 0.94361 0.98383 0.96153 1.04959 154.68333 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.46675 0.00000 2.46030 2.24796 60570.00000 0.00000 0.02100 20.00291 0.00000 2.45691 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 22.22268 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.51306 0.06836 0.06836 0.68039 0.00000 2747.52458 0.00000 0.00000 99.55729 0.69005 0.80852 0.90660 0.84632 1.04959 2493.76157 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.46116 0.00000 2.45749 1.86949 327987.00000 0.00000 0.02100 144.09362 0.00000 2.46010 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 13.14225 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.41919 0.02573 0.02573 0.69545 0.00000 334.61192 0.00000 0.00000 11.13036 1.00000 0.99845 0.99991 0.99935 1.04959 179.77049 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.37579 0.00000 2.36788 4.61939 35028.78478 0.00000 0.02100 45.12235 0.00000 2.36997 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 21.93014 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 9504.65998 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.37861 0.02772 0.02772 0.68548 0.00000 3675.34263 0.00000 0.00000 124.04967 0.75252 0.95980 0.99005 0.97379 1.04959 1660.75494 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.36687 0.00000 2.36692 5.10358 62637.41292 0.00000 0.02100 6.32976 0.00000 2.36660 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 24.94409 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.40952 0.02733 0.02733 0.76802 0.00000 1625.32593 0.00000 0.00000 72.52961 0.74355 0.94622 0.98489 0.96355 1.04959 1743.05054 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.38013 0.00000 2.38016 4.52113 73152.18784 0.00000 0.02100 2.12080 0.00000 2.37992 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.28605 1.00000 0.00000 0.17331 333.19704 137.96115 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.41130 0.02287 0.02287 0.74488 0.00000 715.97757 -0.00000 0.00000 39.57101 0.91161 0.96192 0.99079 0.97535 1.04959 972.71646 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.46021 0.00000 2.46018 5.67630 52947.12322 0.00000 0.02100 2.22357 0.00000 2.45924 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 11.96046 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.24614 0.03532 0.03532 0.71299 0.00000 188.67062 0.00000 0.00000 11.48027 1.00000 0.78134 0.88702 0.82138 1.04959 285.99823 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.21080 0.00000 2.21079 0.00000 121747.22289 0.00000 0.02100 0.03005 0.00000 2.20675 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.41643 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.65181 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42463 32.18884 0.92023 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76082 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.40317 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -1.09890 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.20826 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.62466 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96391 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.69700 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.18551 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.57053 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.10119 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.46201 0.02762 0.02762 0.67618 0.00000 1400.74395 0.00000 0.00000 86.11310 0.87110 0.94599 0.98480 0.96337 1.04959 1239.05601 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.46063 0.00000 2.46059 4.92256 155138.29518 0.00000 0.02100 48.74230 0.00000 2.45993 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 101.10937 1.00000 0.00000 72.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.53230 0.02234 0.02234 0.68866 0.00000 336.31773 0.00000 0.00000 15.93799 1.00000 0.94361 0.98383 0.96153 1.04959 162.35470 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.53335 0.00000 2.52673 2.24796 60548.81161 0.00000 0.02100 20.44297 0.00000 2.52324 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 22.71157 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.58091 0.06836 0.06836 0.68398 0.00000 2807.97009 0.00000 0.00000 101.74755 0.69005 0.80852 0.90660 0.84632 1.04959 2617.43717 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.52761 0.00000 2.52384 1.86949 328648.43757 0.00000 0.02100 147.26368 0.00000 2.52652 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 13.43138 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.48451 0.02573 0.02573 0.70060 0.00000 341.97337 0.00000 0.00000 11.37523 1.00000 0.99845 0.99991 0.99935 1.04959 188.68603 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.43993 0.00000 2.43181 4.61939 35056.64567 0.00000 0.02100 46.11504 0.00000 2.43396 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 22.41260 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 9976.03403 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.44283 0.02772 0.02772 0.69176 0.00000 3756.20012 -0.00000 0.00000 126.77876 0.75252 0.95980 0.99005 0.97379 1.04959 1743.11841 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.43078 0.00000 2.43082 5.10358 62613.76123 0.00000 0.02100 6.46902 0.00000 2.43050 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 25.49286 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.47458 0.02733 0.02733 0.78494 0.00000 1661.08308 -0.00000 0.00000 74.12526 0.74355 0.94622 0.98489 0.96355 1.04959 1829.49538 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.44439 0.00000 2.44443 4.52113 72808.43647 0.00000 0.02100 2.16746 0.00000 2.44418 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.44634 1.00000 0.00000 0.17713 340.52737 140.99629 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.47640 0.02287 0.02287 0.76322 0.00000 731.72907 0.00000 0.00000 40.44157 0.91161 0.96192 0.99079 0.97535 1.04959 1020.95736 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.52664 0.00000 2.52660 5.67630 52721.63034 0.00000 0.02100 2.27249 0.00000 2.52564 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 12.22359 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.30678 0.03532 0.03532 0.72050 0.00000 192.82137 0.00000 0.00000 11.73283 1.00000 0.78134 0.88702 0.82138 1.04959 300.18202 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.27049 0.00000 2.27048 0.00000 121339.33133 0.00000 0.02100 0.03071 0.00000 2.26633 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.42559 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.63573 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42467 32.18884 0.92001 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76059 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.38533 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -1.07406 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.18382 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.60785 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96396 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.67657 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.16672 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.55499 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.15791 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.52848 0.02762 0.02762 0.68750 0.00000 1431.56030 -0.00000 0.00000 88.00759 0.87110 0.94599 0.98480 0.96337 1.04959 1300.50575 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.52707 0.00000 2.52703 4.92256 154964.11446 0.00000 0.02100 49.81463 0.00000 2.52635 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 103.33378 1.00000 0.00000 73.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.60068 0.02234 0.02234 0.69733 0.00000 343.71672 0.00000 0.00000 16.28863 1.00000 0.94361 0.98383 0.96153 1.04959 170.40652 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.60175 0.00000 2.59495 2.24796 60527.56517 0.00000 0.02100 20.89272 0.00000 2.59137 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 23.21123 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.65059 0.06836 0.06836 0.68759 0.00000 2869.74540 0.00000 0.00000 103.98599 0.69005 0.80852 0.90660 0.84632 1.04959 2747.24634 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.59585 0.00000 2.59199 1.86949 329311.68729 0.00000 0.02100 150.50348 0.00000 2.59474 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 13.72687 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.55159 0.02573 0.02573 0.70576 0.00000 349.49678 0.00000 0.00000 11.62548 1.00000 0.99845 0.99991 0.99935 1.04959 198.04372 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.50581 0.00000 2.49747 4.61939 35084.43045 0.00000 0.02100 47.12957 0.00000 2.49968 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 22.90568 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 10470.78541 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.50879 0.02772 0.02772 0.69807 0.00000 3838.83648 0.00000 0.00000 129.56790 0.75252 0.95980 0.99005 0.97379 1.04959 1829.56661 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.49641 0.00000 2.49646 5.10358 62590.17415 0.00000 0.02100 6.61133 0.00000 2.49613 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 26.05370 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.54139 0.02733 0.02733 0.80230 0.00000 1697.62689 0.00000 0.00000 75.75602 0.74355 0.94622 0.98489 0.96355 1.04959 1920.22736 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.51039 0.00000 2.51043 4.52113 72465.62432 0.00000 0.02100 2.21514 0.00000 2.51017 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.61016 1.00000 0.00000 0.18102 348.01897 144.09821 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.54326 0.02287 0.02287 0.78206 0.00000 747.82710 -0.00000 0.00000 41.33129 0.91161 0.96192 0.99079 0.97535 1.04959 1071.59071 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.59486 0.00000 2.59482 5.67630 52496.75356 0.00000 0.02100 2.32249 0.00000 2.59383 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 12.49250 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.36907 0.03532 0.03532 0.72810 0.00000 197.06343 0.00000 0.00000 11.99096 1.00000 0.78134 0.88702 0.82138 1.04959 315.06924 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.33179 0.00000 2.33179 0.00000 120932.55422 0.00000 0.02100 0.03139 0.00000 2.32752 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.43495 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.61965 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42471 32.18884 0.91982 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76039 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.36748 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -1.04911 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.15925 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.59102 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96401 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.65610 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.14792 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.53945 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.21616 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.59675 0.02762 0.02762 0.69897 0.00000 1463.05462 0.00000 0.00000 89.94376 0.87110 0.94599 0.98480 0.96337 1.04959 1365.00302 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.59530 0.00000 2.59526 4.92256 154790.40964 0.00000 0.02100 50.91055 0.00000 2.59456 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 105.60712 1.00000 0.00000 74.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.67089 0.02234 0.02234 0.70607 0.00000 351.27848 0.00000 0.00000 16.64698 1.00000 0.94361 0.98383 0.96153 1.04959 178.85766 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.67200 0.00000 2.66502 2.24796 60506.37678 0.00000 0.02100 21.35236 0.00000 2.66134 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 23.72188 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.72216 0.06836 0.06836 0.69118 0.00000 2932.87977 0.00000 0.00000 106.27369 0.69005 0.80852 0.90660 0.84632 1.04959 2883.49326 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.66594 0.00000 2.66197 1.86949 329973.12486 0.00000 0.02100 153.81455 0.00000 2.66479 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 14.02886 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.62049 0.02573 0.02573 0.71094 0.00000 357.18571 0.00000 0.00000 11.88124 1.00000 0.99845 0.99991 0.99935 1.04959 207.86550 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.57347 0.00000 2.56490 4.61939 35112.21522 0.00000 0.02100 48.16642 0.00000 2.56717 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 23.40960 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 10990.07349 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.57652 0.02772 0.02772 0.70444 0.00000 3923.29084 0.00000 0.00000 132.41839 0.75252 0.95980 0.99005 0.97379 1.04959 1920.30213 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.56381 0.00000 2.56386 5.10358 62566.58708 0.00000 0.02100 6.75678 0.00000 2.56352 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 26.62688 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.61001 0.02733 0.02733 0.82017 0.00000 1734.97466 -0.00000 0.00000 77.42265 0.74355 0.94622 0.98489 0.96355 1.04959 2015.45911 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.57817 0.00000 2.57821 4.52113 72122.81216 0.00000 0.02100 2.26387 0.00000 2.57794 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.77759 1.00000 0.00000 0.18501 355.67539 147.26837 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.61193 0.02287 0.02287 0.80148 0.00000 764.27928 0.00000 0.00000 42.24057 0.91161 0.96192 0.99079 0.97535 1.04959 1124.73518 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.66492 0.00000 2.66488 5.67630 52271.87678 0.00000 0.02100 2.37358 0.00000 2.66387 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 12.76734 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.43303 0.03532 0.03532 0.73583 0.00000 201.39883 0.00000 0.00000 12.25476 1.00000 0.78134 0.88702 0.82138 1.04959 330.69479 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.39475 0.00000 2.39475 0.00000 120525.77711 0.00000 0.02100 0.03208 0.00000 2.39036 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.44452 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.60357 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42475 32.18884 0.91965 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76021 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.34963 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -1.02402 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -1.13453 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.57415 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96405 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.63560 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.12910 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.52392 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.27598 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.66686 0.02762 0.02762 0.71062 0.00000 1495.24180 0.00000 0.00000 91.92252 0.87110 0.94599 0.98480 0.96337 1.04959 1432.69897 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.66537 0.00000 2.66533 4.92256 154616.70482 0.00000 0.02100 52.03058 0.00000 2.66461 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 107.93047 1.00000 0.00000 75.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.74301 0.02234 0.02234 0.71491 0.00000 359.00660 0.00000 0.00000 17.01321 1.00000 0.94361 0.98383 0.96153 1.04959 187.72792 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.74415 0.00000 2.73697 2.24796 60485.18839 0.00000 0.02100 21.82211 0.00000 2.73320 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 24.24376 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.79566 0.06836 0.06836 0.69477 0.00000 2997.40309 0.00000 0.00000 108.61171 0.69005 0.80852 0.90660 0.84632 1.04959 3026.49720 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.73792 0.00000 2.73384 1.86949 330634.56243 0.00000 0.02100 157.19847 0.00000 2.73674 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 14.33749 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.69124 0.02573 0.02573 0.71615 0.00000 365.04379 0.00000 0.00000 12.14263 1.00000 0.99845 0.99991 0.99935 1.04959 218.17438 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.64295 0.00000 2.63415 4.61939 35140.00000 0.00000 0.02100 49.22608 0.00000 2.63648 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 23.92462 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 11535.11513 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.64609 0.02772 0.02772 0.71086 0.00000 4009.60319 0.00000 0.00000 135.33159 0.75252 0.95980 0.99005 0.97379 1.04959 2015.53759 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.63303 0.00000 2.63308 5.10358 62543.00000 0.00000 0.02100 6.90543 0.00000 2.63274 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 27.21267 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.68048 0.02733 0.02733 0.83857 0.00000 1773.14408 0.00000 0.00000 79.12595 0.74355 0.94622 0.98489 0.96355 1.04959 2115.41377 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.64778 0.00000 2.64782 4.52113 71780.00000 0.00000 0.02100 2.31368 0.00000 2.64755 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 7.94869 1.00000 0.00000 0.18908 363.50024 150.50827 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.68245 0.02287 0.02287 0.82149 0.00000 781.09342 0.00000 0.00000 43.16987 0.91161 0.96192 0.99079 0.97535 1.04959 1180.51529 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.73687 0.00000 2.73683 5.67630 52047.00000 0.00000 0.02100 2.42580 0.00000 2.73579 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 13.04822 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.49872 0.03532 0.03532 0.74368 0.00000 205.82960 0.00000 0.00000 12.52436 1.00000 0.78134 0.88702 0.82138 1.04959 347.09526 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.45941 0.00000 2.45940 0.00000 120119.00000 0.00000 0.02100 0.03278 0.00000 2.45490 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.45430 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.58748 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42478 32.18884 0.91949 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.76005 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.33176 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04735 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.99877 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.10966 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.55725 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96409 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -1.61504 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.11025 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.50838 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.33742 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.73887 0.02762 0.02762 0.72246 0.00000 1528.13710 0.00000 0.00000 93.94481 0.87110 0.94599 0.98480 0.96337 1.04959 1503.75224 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.73734 0.00000 2.73729 4.92256 154443.00000 0.00000 0.02100 53.17525 0.00000 2.73656 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 110.30494 1.00000 0.00000 76.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.81707 0.02234 0.02234 0.72384 0.00000 366.90474 0.00000 0.00000 17.38750 1.00000 0.94361 0.98383 0.96153 1.04959 197.03810 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.81824 0.00000 2.81087 2.24796 60464.00000 0.00000 0.02100 22.30219 0.00000 2.80699 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 24.77712 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.87114 0.06836 0.06836 0.69837 0.00000 3063.34593 0.00000 0.00000 111.00116 0.69005 0.80852 0.90660 0.84632 1.04959 3176.59329 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.81184 0.00000 2.80766 1.86949 331296.00000 0.00000 0.02100 160.65684 0.00000 2.81064 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 14.65292 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.76390 0.02573 0.02573 0.71615 0.00000 373.07475 0.00000 0.00000 12.40977 1.00000 0.99845 0.99991 0.99935 1.04959 228.99452 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.71431 0.00000 2.70527 4.61939 35123.09947 0.00000 0.02100 50.30906 0.00000 2.70767 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 24.45096 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 12107.18757 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.71753 0.02772 0.02772 0.71086 0.00000 4097.81442 0.00000 0.00000 138.30888 0.75252 0.95980 0.99005 0.97379 1.04959 2115.49615 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.70412 0.00000 2.70418 5.10358 62483.01314 0.00000 0.02100 7.05735 0.00000 2.70382 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 27.81135 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.75285 0.02733 0.02733 0.83857 0.00000 1812.15323 0.00000 0.00000 80.86672 0.74355 0.94622 0.98489 0.96355 1.04959 2220.32559 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.71927 0.00000 2.71931 4.52113 71382.80416 0.00000 0.02100 2.36458 0.00000 2.71903 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 8.12356 1.00000 0.00000 0.19324 371.49724 153.81945 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.75488 0.02287 0.02287 0.82149 0.00000 798.27747 0.00000 0.00000 44.11960 0.91161 0.96192 0.99079 0.97535 1.04959 1239.06176 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.81077 0.00000 2.81073 5.67630 51763.89943 0.00000 0.02100 2.47917 0.00000 2.80966 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 13.33528 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.56619 0.03532 0.03532 0.74368 0.00000 210.35785 0.00000 0.00000 12.79990 1.00000 0.78134 0.88702 0.82138 1.04959 364.30910 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.52581 0.00000 2.52581 0.00000 119755.67202 0.00000 0.02100 0.03350 0.00000 2.52119 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.46430 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.57258 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42481 32.18884 0.91936 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75990 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.31608 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.97993 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -1.09143 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.54312 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96412 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.59859 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.09445 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.49340 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.40051 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.81282 0.02762 0.02762 0.72239 0.00000 1561.75610 0.00000 0.00000 96.01160 0.87110 0.94599 0.98480 0.96337 1.04959 1578.32932 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.81125 0.00000 2.81120 4.92256 154114.80909 0.00000 0.02100 54.34511 0.00000 2.81045 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 112.73165 1.00000 0.00000 77.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.89313 0.02234 0.02234 0.72384 0.00000 374.97664 0.00000 0.00000 17.77003 1.00000 0.94361 0.98383 0.96153 1.04959 206.81001 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.89433 0.00000 2.88676 2.24796 60395.19547 0.00000 0.02100 22.79284 0.00000 2.88278 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 25.32221 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 2.94866 0.06836 0.06836 0.69837 0.00000 3130.73950 0.00000 0.00000 113.44319 0.69005 0.80852 0.90660 0.84632 1.04959 3334.13324 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.88776 0.00000 2.88346 1.86949 331515.43968 0.00000 0.02100 164.19129 0.00000 2.88652 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 14.97528 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.83853 0.02573 0.02573 0.71615 0.00000 381.28239 0.00000 0.00000 12.68278 1.00000 0.99845 0.99991 0.99935 1.04959 240.35128 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.78760 0.00000 2.77832 4.61939 35106.24512 0.00000 0.02100 51.41586 0.00000 2.78077 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 24.98888 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 12707.63136 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.79091 0.02772 0.02772 0.71086 0.00000 4187.96629 -0.00000 0.00000 141.35168 0.75252 0.95980 0.99005 0.97379 1.04959 2220.41205 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.77714 0.00000 2.77719 5.10358 62423.19018 0.00000 0.02100 7.21261 0.00000 2.77682 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 28.42320 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.82718 0.02733 0.02733 0.83857 0.00000 1852.02058 0.00000 0.00000 82.64578 0.74355 0.94622 0.98489 0.96355 1.04959 2330.44041 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.79269 0.00000 2.79273 4.52113 70986.69356 0.00000 0.02100 2.41660 0.00000 2.79245 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 8.30228 1.00000 0.00000 0.19749 379.67018 157.20348 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.82926 0.02287 0.02287 0.82149 0.00000 815.83956 0.00000 0.00000 45.09023 0.91161 0.96192 0.99079 0.97535 1.04959 1300.51178 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.88666 0.00000 2.88662 5.67630 51481.57237 0.00000 0.02100 2.53371 0.00000 2.88552 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 13.62866 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.63548 0.03532 0.03532 0.74368 0.00000 214.98572 0.00000 0.00000 13.08149 1.00000 0.78134 0.88702 0.82138 1.04959 382.37665 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.59401 0.00000 2.59400 0.00000 119393.33674 0.00000 0.02100 0.03424 0.00000 2.58926 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.47451 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.55768 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42484 32.18884 0.91924 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75978 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.30040 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.96107 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.07318 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.52899 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96415 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.58214 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -2.07865 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.47842 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.46531 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.88876 0.02762 0.02762 0.72232 0.00000 1596.11472 0.00000 0.00000 98.12385 0.87110 0.94599 0.98480 0.96337 1.04959 1656.60498 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.88715 0.00000 2.88710 4.92256 153787.51487 0.00000 0.02100 55.54070 0.00000 2.88633 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 115.21175 1.00000 0.00000 78.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 2.97125 0.02234 0.02234 0.72384 0.00000 383.22613 0.00000 0.00000 18.16097 1.00000 0.94361 0.98383 0.96153 1.04959 217.06654 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 2.97248 0.00000 2.96471 2.24796 60326.57894 0.00000 0.02100 23.29428 0.00000 2.96062 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 25.87930 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.02827 0.06836 0.06836 0.69837 0.00000 3199.61573 0.00000 0.00000 115.93893 0.69005 0.80852 0.90660 0.84632 1.04959 3499.48623 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 2.96573 0.00000 2.96132 1.86949 331734.27980 0.00000 0.02100 167.80349 0.00000 2.96446 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 15.30474 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.91517 0.02573 0.02573 0.71615 0.00000 389.67060 0.00000 0.00000 12.96180 1.00000 0.99845 0.99991 0.99935 1.04959 252.27126 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.86286 0.00000 2.85333 4.61939 35089.39076 0.00000 0.02100 52.54700 0.00000 2.85585 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 25.53863 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 13337.85357 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.86626 0.02772 0.02772 0.71086 0.00000 4280.10150 0.00000 0.00000 144.46141 0.75252 0.95980 0.99005 0.97379 1.04959 2330.53115 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.85212 0.00000 2.85217 5.10358 62363.36722 0.00000 0.02100 7.37129 0.00000 2.85180 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 29.04851 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.90351 0.02733 0.02733 0.83857 0.00000 1892.76501 0.00000 0.00000 84.46399 0.74355 0.94622 0.98489 0.96355 1.04959 2446.01626 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.86809 0.00000 2.86814 4.52113 70590.58295 0.00000 0.02100 2.46977 0.00000 2.86784 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 8.48493 1.00000 0.00000 0.20183 388.02292 160.66195 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.90565 0.02287 0.02287 0.82149 0.00000 833.78802 -0.00000 0.00000 46.08222 0.91161 0.96192 0.99079 0.97535 1.04959 1365.00935 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 2.96460 0.00000 2.96456 5.67630 51199.24530 0.00000 0.02100 2.58945 0.00000 2.96343 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 13.92849 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.70663 0.03532 0.03532 0.74368 0.00000 219.71540 0.00000 0.00000 13.36929 1.00000 0.78134 0.88702 0.82138 1.04959 401.34023 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.66405 0.00000 2.66404 0.00000 119031.00146 0.00000 0.02100 0.03500 0.00000 2.65917 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.48495 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.54278 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42486 32.18884 0.91913 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75966 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.28473 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.94220 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -1.05492 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.51485 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96417 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.56568 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.06285 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.46344 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.53186 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 2.96676 0.02762 0.02762 0.72224 0.00000 1631.22922 0.00000 0.00000 100.28258 0.87110 0.94599 0.98480 0.96337 1.04959 1738.76263 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 2.96510 0.00000 2.96505 4.92256 153460.22066 0.00000 0.02100 56.76259 0.00000 2.96426 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 117.74640 1.00000 0.00000 79.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.05147 0.02234 0.02234 0.72384 0.00000 391.65710 0.00000 0.00000 18.56051 1.00000 0.94361 0.98383 0.96153 1.04959 227.83174 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.05273 0.00000 3.04475 2.24796 60257.96240 0.00000 0.02100 23.80676 0.00000 3.04055 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 26.44865 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.11004 0.06836 0.06836 0.69837 0.00000 3270.00724 0.00000 0.00000 118.48959 0.69005 0.80852 0.90660 0.84632 1.04959 3673.03973 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.04581 0.00000 3.04127 1.86949 331953.11991 0.00000 0.02100 171.49517 0.00000 3.04450 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 15.64144 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 2.99388 0.02573 0.02573 0.71615 0.00000 398.24335 0.00000 0.00000 13.24696 1.00000 0.99845 0.99991 0.99935 1.04959 264.78240 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 2.94016 0.00000 2.93037 4.61939 35072.53641 0.00000 0.02100 53.70304 0.00000 2.93296 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 26.10048 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 13999.33100 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 2.94365 0.02772 0.02772 0.71086 0.00000 4374.26368 -0.00000 0.00000 147.63956 0.75252 0.95980 0.99005 0.97379 1.04959 2446.11150 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 2.92913 0.00000 2.92918 5.10358 62303.54426 0.00000 0.02100 7.53346 0.00000 2.92880 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 29.68758 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 2.98191 0.02733 0.02733 0.83857 0.00000 1934.40582 0.00000 0.00000 86.32220 0.74355 0.94622 0.98489 0.96355 1.04959 2567.32398 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 2.94553 0.00000 2.94558 4.52113 70194.47235 0.00000 0.02100 2.52410 0.00000 2.94527 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 8.67160 1.00000 0.00000 0.20627 396.55942 164.19652 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 2.98410 0.02287 0.02287 0.82149 0.00000 852.13135 0.00000 0.00000 47.09603 0.91161 0.96192 0.99079 0.97535 1.04959 1432.70562 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.04464 0.00000 3.04460 5.67630 50916.91823 0.00000 0.02100 2.64642 0.00000 3.04344 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 14.23491 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.77971 0.03532 0.03532 0.74368 0.00000 224.54914 -0.00000 0.00000 13.66341 1.00000 0.78134 0.88702 0.82138 1.04959 421.24430 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.73598 0.00000 2.73597 0.00000 118668.66618 0.00000 0.02100 0.03577 0.00000 2.73097 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.49562 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.52788 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42488 32.18884 0.91903 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75956 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.26905 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.92330 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.03663 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.50071 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96419 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -1.54922 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.04705 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.44845 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.60020 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.04686 0.02762 0.02762 0.72217 0.00000 1667.11625 0.00000 0.00000 102.48879 0.87110 0.94599 0.98480 0.96337 1.04959 1824.99482 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.04516 0.00000 3.04511 4.92256 153132.92645 0.00000 0.02100 58.01137 0.00000 3.04429 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 120.33682 1.00000 0.00000 80.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.13386 0.02234 0.02234 0.72384 0.00000 400.27355 0.00000 0.00000 18.96884 1.00000 0.94361 0.98383 0.96153 1.04959 239.13082 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.13516 0.00000 3.12696 2.24796 60189.34587 0.00000 0.02100 24.33051 0.00000 3.12265 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 27.03052 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.19401 0.06836 0.06836 0.69837 0.00000 3341.94737 0.00000 0.00000 121.09636 0.69005 0.80852 0.90660 0.84632 1.04959 3855.20044 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.12805 0.00000 3.12339 1.86949 332171.96003 0.00000 0.02100 175.26806 0.00000 3.12670 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 15.98555 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.07471 0.02573 0.02573 0.71615 0.00000 407.00470 0.00000 0.00000 13.53840 1.00000 0.99845 0.99991 0.99935 1.04959 277.91401 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.01954 0.00000 3.00949 4.61939 35055.63588 0.00000 0.02100 54.88450 0.00000 3.01215 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 26.67469 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 14693.61375 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.02313 0.02772 0.02772 0.71086 0.00000 4470.49743 0.00000 0.00000 150.88763 0.75252 0.95980 0.99005 0.97379 1.04959 2567.42394 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.00821 0.00000 3.00827 5.10358 62243.55740 0.00000 0.02100 7.69919 0.00000 3.00787 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 30.34070 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.06242 0.02733 0.02733 0.83857 0.00000 1976.96273 0.00000 0.00000 88.22129 0.74355 0.94622 0.98489 0.96355 1.04959 2694.64783 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.02506 0.00000 3.02511 4.52113 69797.27651 0.00000 0.02100 2.57963 0.00000 3.02480 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 8.86237 1.00000 0.00000 0.21081 405.28372 167.80884 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.06467 0.02287 0.02287 0.82149 0.00000 870.87823 0.00000 0.00000 48.13214 0.91161 0.96192 0.99079 0.97535 1.04959 1503.75921 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.12685 0.00000 3.12680 5.67630 50633.81767 0.00000 0.02100 2.70464 0.00000 3.12561 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 14.54808 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.85476 0.03532 0.03532 0.74368 0.00000 229.48922 0.00000 0.00000 13.96401 1.00000 0.78134 0.88702 0.82138 1.04959 442.13549 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.80985 0.00000 2.80984 0.00000 118305.33820 0.00000 0.02100 0.03655 0.00000 2.80470 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.50652 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.51297 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42490 32.18884 0.91895 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75947 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.25337 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.90437 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.01832 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.48656 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96421 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.53276 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -2.03125 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.43347 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.67039 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.12913 0.02762 0.02762 0.72210 0.00000 1703.79279 0.00000 0.00000 104.74354 0.87110 0.94599 0.98480 0.96337 1.04959 1915.50360 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.12738 0.00000 3.12733 4.92256 152804.73554 0.00000 0.02100 59.28762 0.00000 3.12649 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 122.98423 1.00000 0.00000 81.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.21847 0.02234 0.02234 0.72384 0.00000 409.07956 0.00000 0.00000 19.38616 1.00000 0.94361 0.98383 0.96153 1.04959 250.99028 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.21981 0.00000 3.21139 2.24796 60120.54134 0.00000 0.02100 24.86578 0.00000 3.20696 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 27.62519 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.28025 0.06836 0.06836 0.69837 0.00000 3415.47017 0.00000 0.00000 123.76048 0.69005 0.80852 0.90660 0.84632 1.04959 4046.39523 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.21250 0.00000 3.20772 1.86949 332391.39971 0.00000 0.02100 179.12395 0.00000 3.21112 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 16.33724 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.15773 0.02573 0.02573 0.71615 0.00000 415.95880 0.00000 0.00000 13.83624 1.00000 0.99845 0.99991 0.99935 1.04959 291.69688 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.10107 0.00000 3.09075 4.61939 35040.43237 0.00000 0.02100 56.09196 0.00000 3.09348 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 27.26154 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 15422.32875 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.10475 0.02772 0.02772 0.71086 0.00000 4568.84833 -0.00000 0.00000 154.20716 0.75252 0.95980 0.99005 0.97379 1.04959 2694.75275 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.08943 0.00000 3.08949 5.10358 62189.61861 0.00000 0.02100 7.86858 0.00000 3.08909 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 31.00820 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.14510 0.02733 0.02733 0.83857 0.00000 2020.45588 0.00000 0.00000 90.16215 0.74355 0.94622 0.98489 0.96355 1.04959 2828.28618 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.10674 0.00000 3.10679 4.52113 69441.72226 0.00000 0.02100 2.63638 0.00000 3.10647 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 9.05735 1.00000 0.00000 0.21545 414.19996 171.50063 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.14742 0.02287 0.02287 0.82149 0.00000 890.03754 0.00000 0.00000 49.19104 0.91161 0.96192 0.99079 0.97535 1.04959 1578.33664 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.21127 0.00000 3.21123 5.67630 50380.37322 0.00000 0.02100 2.76414 0.00000 3.21001 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 14.86814 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 2.93184 0.03532 0.03532 0.74368 0.00000 234.53798 0.00000 0.00000 14.27121 1.00000 0.78134 0.88702 0.82138 1.04959 464.06275 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.88571 0.00000 2.88571 0.00000 117979.29422 0.00000 0.02100 0.03736 0.00000 2.88043 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.51767 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.49810 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42491 32.18884 0.91887 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75939 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.23776 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -0.88583 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -1.00038 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.47258 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96423 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -1.51644 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -2.01552 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.41844 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.74247 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.21362 0.02762 0.02762 0.72203 0.00000 1741.27621 -0.00000 0.00000 107.04790 0.87110 0.94599 0.98480 0.96337 1.04959 2010.50108 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.21182 0.00000 3.21176 4.92256 152509.96514 0.00000 0.02100 60.59195 0.00000 3.21090 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 125.68988 1.00000 0.00000 82.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.30537 0.02234 0.02234 0.72384 0.00000 418.07931 0.00000 0.00000 19.81265 1.00000 0.94361 0.98383 0.96153 1.04959 263.43789 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.30674 0.00000 3.29810 2.24796 60058.68452 0.00000 0.02100 25.41282 0.00000 3.29355 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 28.23294 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.36881 0.06836 0.06836 0.69837 0.00000 3490.61047 0.00000 0.00000 126.48321 0.69005 0.80852 0.90660 0.84632 1.04959 4247.07213 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.29924 0.00000 3.29433 1.86949 332589.01936 0.00000 0.02100 183.06468 0.00000 3.29782 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 16.69666 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.24299 0.02573 0.02573 0.71615 0.00000 425.10988 0.00000 0.00000 14.14064 1.00000 0.99845 0.99991 0.99935 1.04959 306.16329 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.18480 0.00000 3.17420 4.61939 35026.92367 0.00000 0.02100 57.32598 0.00000 3.17700 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 27.86129 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 16187.18364 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.18858 0.02772 0.02772 0.71086 0.00000 4669.36294 0.00000 0.00000 157.59971 0.75252 0.95980 0.99005 0.97379 1.04959 2828.39631 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.17285 0.00000 3.17291 5.10358 62141.71226 0.00000 0.02100 8.04169 0.00000 3.17249 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 31.69038 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.23002 0.02733 0.02733 0.83857 0.00000 2064.90589 0.00000 0.00000 92.14572 0.74355 0.94622 0.98489 0.96355 1.04959 2968.55219 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.19062 0.00000 3.19067 4.52113 69127.19486 0.00000 0.02100 2.69438 0.00000 3.19034 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 9.25661 1.00000 0.00000 0.22019 423.31235 175.27364 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.23240 0.02287 0.02287 0.82149 0.00000 909.61836 0.00000 0.00000 50.27325 0.91161 0.96192 0.99079 0.97535 1.04959 1656.61266 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.29798 0.00000 3.29793 5.67630 50156.15447 0.00000 0.02100 2.82495 0.00000 3.29668 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 15.19524 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.01100 0.03532 0.03532 0.74368 0.00000 239.69781 0.00000 0.00000 14.58518 1.00000 0.78134 0.88702 0.82138 1.04959 487.07748 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 2.96363 0.00000 2.96362 0.00000 117690.23177 0.00000 0.02100 0.03818 0.00000 2.95820 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.52906 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.48327 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42493 32.18884 0.91880 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75932 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.22221 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -0.86768 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.98281 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.45878 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96425 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.50026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.99988 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 0.00000 -1.40337 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.81650 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.30038 0.02762 0.02762 0.72197 0.00000 1779.58426 0.00000 0.00000 109.40295 0.87110 0.94599 0.98480 0.96337 1.04959 2110.20986 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.29854 0.00000 3.29848 4.92256 152248.42442 0.00000 0.02100 61.92497 0.00000 3.29760 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 128.45506 1.00000 0.00000 83.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.39462 0.02234 0.02234 0.72384 0.00000 427.27705 0.00000 0.00000 20.24853 1.00000 0.94361 0.98383 0.96153 1.04959 276.50282 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.39602 0.00000 3.38715 2.24796 60003.75410 0.00000 0.02100 25.97191 0.00000 3.38247 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 28.85407 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.45977 0.06836 0.06836 0.69837 0.00000 3567.40386 0.00000 0.00000 129.26584 0.69005 0.80852 0.90660 0.84632 1.04959 4457.70141 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.38832 0.00000 3.38327 1.86949 332764.77991 0.00000 0.02100 187.09210 0.00000 3.38686 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 17.06398 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.33055 0.02573 0.02573 0.71615 0.00000 434.46230 0.00000 0.00000 14.45173 1.00000 0.99845 0.99991 0.99935 1.04959 321.34715 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.27079 0.00000 3.25990 4.61939 35015.10783 0.00000 0.02100 58.58716 0.00000 3.26278 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 28.47424 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 16989.97074 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.27467 0.02772 0.02772 0.71086 0.00000 4772.08887 0.00000 0.00000 161.06691 0.75252 0.95980 0.99005 0.97379 1.04959 2968.66778 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.25852 0.00000 3.25858 5.10358 62099.82448 0.00000 0.02100 8.21860 0.00000 3.25815 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 32.38757 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.31723 0.02733 0.02733 0.83857 0.00000 2110.33380 -0.00000 0.00000 94.17292 0.74355 0.94622 0.98489 0.96355 1.04959 3115.77455 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.27677 0.00000 3.27682 4.52113 68853.15224 0.00000 0.02100 2.75366 0.00000 3.27648 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 9.46025 1.00000 0.00000 0.22503 432.62522 179.12966 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.31968 0.02287 0.02287 0.82149 0.00000 929.62995 -0.00000 0.00000 51.37926 0.91161 0.96192 0.99079 0.97535 1.04959 1738.77070 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.38702 0.00000 3.38697 5.67630 49960.78179 0.00000 0.02100 2.88710 0.00000 3.38569 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 15.52953 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.09230 0.03532 0.03532 0.74368 0.00000 244.97116 0.00000 0.00000 14.90605 1.00000 0.78134 0.88702 0.82138 1.04959 511.23359 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.04365 0.00000 3.04364 0.00000 117437.88317 0.00000 0.02100 0.03902 0.00000 3.03807 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.54069 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.46846 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42494 32.18884 0.91874 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75926 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.20673 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.84993 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.96561 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.44515 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96426 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -1.48423 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -1.98431 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.38825 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 2.89253 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.38949 0.02762 0.02762 0.72192 0.00000 1818.73510 0.00000 0.00000 111.80982 0.87110 0.94599 0.98480 0.96337 1.04959 2214.86359 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.38760 0.00000 3.38754 4.92256 152019.94423 0.00000 0.02100 63.28732 0.00000 3.38663 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 131.28107 1.00000 0.00000 84.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.48627 0.02234 0.02234 0.72384 0.00000 436.67714 0.00000 0.00000 20.69400 1.00000 0.94361 0.98383 0.96153 1.04959 290.21570 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.48772 0.00000 3.47860 2.24796 59955.73121 0.00000 0.02100 26.54329 0.00000 3.47380 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 29.48886 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.55319 0.06836 0.06836 0.69837 0.00000 3645.88671 0.00000 0.00000 132.10968 0.69005 0.80852 0.90660 0.84632 1.04959 4678.77663 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.47980 0.00000 3.47462 1.86949 332918.64658 0.00000 0.02100 191.20812 0.00000 3.47831 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 17.43939 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.42047 0.02573 0.02573 0.71615 0.00000 444.02046 0.00000 0.00000 14.76967 1.00000 0.99845 0.99991 0.99935 1.04959 337.28404 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.35910 0.00000 3.34792 4.61939 35004.98314 0.00000 0.02100 59.87607 0.00000 3.35088 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 29.10067 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 17832.57126 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.36309 0.02772 0.02772 0.71086 0.00000 4877.07477 0.00000 0.00000 164.61038 0.75252 0.95980 0.99005 0.97379 1.04959 3115.89587 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.34650 0.00000 3.34656 5.10358 62063.94314 0.00000 0.02100 8.39941 0.00000 3.34612 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 33.10009 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.40680 0.02733 0.02733 0.83857 0.00000 2156.76112 0.00000 0.00000 96.24473 0.74355 0.94622 0.98489 0.96355 1.04959 3270.29825 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.36524 0.00000 3.36529 4.52113 68619.12341 0.00000 0.02100 2.81424 0.00000 3.36495 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 9.66838 1.00000 0.00000 0.22998 442.14297 183.07051 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.40931 0.02287 0.02287 0.82149 0.00000 950.08180 0.00000 0.00000 52.50960 0.91161 0.96192 0.99079 0.97535 1.04959 1825.00328 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.47847 0.00000 3.47842 5.67630 49793.92533 0.00000 0.02100 2.95062 0.00000 3.47710 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 15.87118 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.17579 0.03532 0.03532 0.74368 0.00000 250.36052 0.00000 0.00000 15.23399 1.00000 0.78134 0.88702 0.82138 1.04959 536.58771 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.12582 0.00000 3.12582 0.00000 117222.01506 0.00000 0.02100 0.03988 0.00000 3.12010 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.55259 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.45369 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42495 32.18884 0.91869 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75920 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.19131 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.83256 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.94879 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.43170 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96427 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -1.46834 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -1.96882 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.37308 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 2.97061 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.48101 0.02762 0.02762 0.72187 0.00000 1858.74725 0.00000 0.00000 114.26963 0.87110 0.94599 0.98480 0.96337 1.04959 2324.70753 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.47906 0.00000 3.47900 4.92256 151824.37700 0.00000 0.02100 64.67964 0.00000 3.47807 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 134.16925 1.00000 0.00000 85.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.58040 0.02234 0.02234 0.72384 0.00000 446.28403 0.00000 0.00000 21.14926 1.00000 0.94361 0.98383 0.96153 1.04959 304.60866 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.58189 0.00000 3.57252 2.24796 59914.59932 0.00000 0.02100 27.12724 0.00000 3.56759 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 30.13761 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.64912 0.06836 0.06836 0.69837 0.00000 3726.09617 0.00000 0.00000 135.01609 0.69005 0.80852 0.90660 0.84632 1.04959 4910.81585 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.57376 0.00000 3.56844 1.86949 333050.58893 0.00000 0.02100 195.41470 0.00000 3.57222 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 17.82306 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.51283 0.02573 0.02573 0.71615 0.00000 453.78891 0.00000 0.00000 15.09460 1.00000 0.99845 0.99991 0.99935 1.04959 354.01130 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.44980 0.00000 3.43831 4.61939 34996.54814 0.00000 0.02100 61.19334 0.00000 3.44135 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 29.74088 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 18716.95970 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.45389 0.02772 0.02772 0.71086 0.00000 4984.37036 0.00000 0.00000 168.23180 0.75252 0.95980 0.99005 0.97379 1.04959 3270.42559 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.43685 0.00000 3.43692 5.10358 62034.05786 0.00000 0.02100 8.58420 0.00000 3.43646 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 33.82829 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.49878 0.02733 0.02733 0.83857 0.00000 2204.20984 -0.00000 0.00000 98.36211 0.74355 0.94622 0.98489 0.96355 1.04959 3432.48541 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.45610 0.00000 3.45615 4.52113 68424.70713 0.00000 0.02100 2.87615 0.00000 3.45580 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 9.88108 1.00000 0.00000 0.23504 451.87011 187.09806 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.50136 0.02287 0.02287 0.82149 0.00000 970.98359 0.00000 0.00000 53.66481 0.91161 0.96192 0.99079 0.97535 1.04959 1915.51248 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.57239 0.00000 3.57234 5.67630 49655.30404 0.00000 0.02100 3.01553 0.00000 3.57098 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 16.22035 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.26154 0.03532 0.03532 0.74368 0.00000 255.86845 -0.00000 0.00000 15.56913 1.00000 0.78134 0.88702 0.82138 1.04959 563.19924 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.21022 0.00000 3.21022 0.00000 117042.42811 0.00000 0.02100 0.04075 0.00000 3.20434 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.56475 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.43894 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42496 32.18884 0.91864 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75915 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.17597 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.81559 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.93234 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.41842 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96428 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.45260 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.95341 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.35786 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.05080 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.57500 0.02762 0.02762 0.72184 0.00000 1899.63967 0.00000 0.00000 116.78356 0.87110 0.94599 0.98480 0.96337 1.04959 2439.99906 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.57300 0.00000 3.57294 4.92256 151661.59651 0.00000 0.02100 66.10259 0.00000 3.57198 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 137.12097 1.00000 0.00000 86.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.67707 0.02234 0.02234 0.72384 0.00000 456.10227 0.00000 0.00000 21.61455 1.00000 0.94361 0.98383 0.96153 1.04959 319.71542 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.67860 0.00000 3.66898 2.24796 59880.34430 0.00000 0.02100 27.72404 0.00000 3.66392 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 30.80064 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.74765 0.06836 0.06836 0.69837 0.00000 3808.07025 0.00000 0.00000 137.98645 0.69005 0.80852 0.90660 0.84632 1.04959 5154.36282 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.67025 0.00000 3.66478 1.86949 333160.58082 0.00000 0.02100 199.71382 0.00000 3.66867 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 18.21516 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.60767 0.02573 0.02573 0.71615 0.00000 463.77226 0.00000 0.00000 15.42668 1.00000 0.99845 0.99991 0.99935 1.04959 371.56814 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.54294 0.00000 3.53115 4.61939 34989.80160 0.00000 0.02100 62.53960 0.00000 3.53427 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 30.39518 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 19645.20850 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.54715 0.02772 0.02772 0.71086 0.00000 5094.02645 -0.00000 0.00000 171.93290 0.75252 0.95980 0.99005 0.97379 1.04959 3432.61906 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.52965 0.00000 3.52972 5.10358 62010.16000 0.00000 0.02100 8.77305 0.00000 3.52925 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 34.57252 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.59325 0.02733 0.02733 0.83857 0.00000 2252.70243 0.00000 0.00000 100.52608 0.74355 0.94622 0.98489 0.96355 1.04959 3602.71607 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.54942 0.00000 3.54947 4.52113 68269.57079 0.00000 0.02100 2.93943 0.00000 3.54911 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 10.09847 1.00000 0.00000 0.24021 461.81124 191.21421 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.59590 0.02287 0.02287 0.82149 0.00000 992.34521 0.00000 0.00000 54.84544 0.91161 0.96192 0.99079 0.97535 1.04959 2010.51040 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.66885 0.00000 3.66879 5.67630 49544.68491 0.00000 0.02100 3.08187 0.00000 3.66740 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 16.57720 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.34960 0.03532 0.03532 0.74368 0.00000 261.49755 0.00000 0.00000 15.91166 1.00000 0.78134 0.88702 0.82138 1.04959 591.13054 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.29690 0.00000 3.29689 0.00000 116898.95667 0.00000 0.02100 0.04165 0.00000 3.29086 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.57717 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -1.42423 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42497 32.18884 0.91860 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75911 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.16069 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.79901 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.91627 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.40532 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96429 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.43701 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -1.93808 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 0.00000 -1.34260 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.13315 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.67152 0.02762 0.02762 0.72181 0.00000 1941.43172 0.00000 0.00000 119.35280 0.87110 0.94599 0.98480 0.96337 1.04959 2561.00836 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.66947 0.00000 3.66941 4.92256 151531.49779 0.00000 0.02100 67.55684 0.00000 3.66843 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 140.13763 1.00000 0.00000 87.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.77635 0.02234 0.02234 0.72384 0.00000 466.13652 0.00000 0.00000 22.09007 1.00000 0.94361 0.98383 0.96153 1.04959 335.57138 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.77792 0.00000 3.76804 2.24796 59852.95438 0.00000 0.02100 28.33397 0.00000 3.76284 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 31.47825 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.84883 0.06836 0.06836 0.69837 0.00000 3891.84775 0.00000 0.00000 141.02215 0.69005 0.80852 0.90660 0.84632 1.04959 5409.98827 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.76935 0.00000 3.76373 1.86949 333248.60049 0.00000 0.02100 204.10752 0.00000 3.76773 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 18.61590 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.70508 0.02573 0.02573 0.71615 0.00000 473.97524 0.00000 0.00000 15.76607 1.00000 0.99845 0.99991 0.99935 1.04959 389.99569 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.63860 0.00000 3.62649 4.61939 34984.74255 0.00000 0.02100 63.91547 0.00000 3.62969 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 31.06388 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 20619.49286 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.64292 0.02772 0.02772 0.71086 0.00000 5206.09497 0.00000 0.00000 175.71542 0.75252 0.95980 0.99005 0.97379 1.04959 3602.85635 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.62495 0.00000 3.62502 5.10358 61992.24265 0.00000 0.02100 8.96606 0.00000 3.62454 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 35.33311 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.69027 0.02733 0.02733 0.83857 0.00000 2302.26185 0.00000 0.00000 102.73765 0.74355 0.94622 0.98489 0.96355 1.04959 3781.38915 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.64525 0.00000 3.64531 4.52113 68153.44940 0.00000 0.02100 3.00410 0.00000 3.64493 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 10.32063 1.00000 0.00000 0.24550 471.97109 195.42092 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.69298 0.02287 0.02287 0.82149 0.00000 1014.17680 0.00000 0.00000 56.05204 0.91161 0.96192 0.99079 0.97535 1.04959 2110.21964 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.76791 0.00000 3.76785 5.67630 49461.88232 0.00000 0.02100 3.14967 0.00000 3.76642 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 16.94190 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.44004 0.03532 0.03532 0.74368 0.00000 267.25050 0.00000 0.00000 16.26171 1.00000 0.78134 0.88702 0.82138 1.04959 620.44706 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.38591 0.00000 3.38591 0.00000 116791.46851 0.00000 0.02100 0.04257 0.00000 3.37971 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.58987 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.40956 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42498 32.18884 0.91856 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75907 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.14547 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.78282 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.90057 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.39239 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96430 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -1.42156 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.92283 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.32729 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.21772 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.77065 0.02762 0.02762 0.72178 0.00000 1984.14319 0.00000 0.00000 121.97856 0.87110 0.94599 0.98480 0.96337 1.04959 2688.01899 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.76855 0.00000 3.76848 4.92256 151433.99698 0.00000 0.02100 69.04309 0.00000 3.76747 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 143.22066 1.00000 0.00000 88.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.87831 0.02234 0.02234 0.72384 0.00000 476.39152 0.00000 0.00000 22.57605 1.00000 0.94361 0.98383 0.96153 1.04959 352.21371 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.87992 0.00000 3.86978 2.24796 59832.42017 0.00000 0.02100 28.95731 0.00000 3.86444 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 32.17077 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 3.95275 0.06836 0.06836 0.69837 0.00000 3977.46836 0.00000 0.00000 144.12463 0.69005 0.80852 0.90660 0.84632 1.04959 5678.29119 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.87112 0.00000 3.86535 1.86949 333314.63051 0.00000 0.02100 208.59789 0.00000 3.86946 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 19.02544 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.80512 0.02573 0.02573 0.71615 0.00000 484.40269 0.00000 0.00000 16.11292 1.00000 0.99845 0.99991 0.99935 1.04959 409.33713 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.73684 0.00000 3.72440 4.61939 34981.37025 0.00000 0.02100 65.32161 0.00000 3.72769 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 31.74728 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 21642.09588 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.74128 0.02772 0.02772 0.71086 0.00000 5320.62900 0.00000 0.00000 179.58116 0.75252 0.95980 0.99005 0.97379 1.04959 3781.53639 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.72282 0.00000 3.72289 5.10358 61980.30062 0.00000 0.02100 9.16331 0.00000 3.72240 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 36.11044 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.78990 0.02733 0.02733 0.83857 0.00000 2352.91159 0.00000 0.00000 104.99787 0.74355 0.94622 0.98489 0.96355 1.04959 3968.92335 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.74367 0.00000 3.74373 4.52113 68076.14489 0.00000 0.02100 3.07019 0.00000 3.74334 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 10.54769 1.00000 0.00000 0.25090 482.35444 199.72018 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.79270 0.02287 0.02287 0.82149 0.00000 1036.48868 0.00000 0.00000 57.28518 0.91161 0.96192 0.99079 0.97535 1.04959 2214.87386 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.86964 0.00000 3.86958 5.67630 49406.75749 0.00000 0.02100 3.21897 0.00000 3.86811 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 17.31462 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.53292 0.03532 0.03532 0.74368 0.00000 273.13000 0.00000 0.00000 16.61947 1.00000 0.78134 0.88702 0.82138 1.04959 651.21751 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.47733 0.00000 3.47733 0.00000 116719.86465 0.00000 0.02100 0.04350 0.00000 3.47096 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.60285 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.39491 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42499 32.18884 0.91853 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75903 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.13032 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.76702 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.88524 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.37964 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96431 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.40625 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.90765 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.31193 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 3.30458 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.87246 0.02762 0.02762 0.72177 0.00000 2027.79432 -0.00000 0.00000 124.66209 0.87110 0.94599 0.98480 0.96337 1.04959 2821.32859 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.87030 0.00000 3.87023 4.92256 151369.03131 0.00000 0.02100 70.56204 0.00000 3.86919 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 146.37151 1.00000 0.00000 89.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 3.98303 0.02234 0.02234 0.72384 0.00000 486.87212 0.00000 0.00000 23.07272 1.00000 0.94361 0.98383 0.96153 1.04959 369.68139 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 3.98468 0.00000 3.97426 2.24796 59818.73461 0.00000 0.02100 29.59437 0.00000 3.96878 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 32.87853 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.05948 0.06836 0.06836 0.69837 0.00000 4064.97261 0.00000 0.00000 147.29537 0.69005 0.80852 0.90660 0.84632 1.04959 5959.90034 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 3.97564 0.00000 3.96972 1.86949 333358.65779 0.00000 0.02100 213.18704 0.00000 3.97393 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 19.44400 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 3.90786 0.02573 0.02573 0.71615 0.00000 495.05955 0.00000 0.00000 16.46741 1.00000 0.99845 0.99991 0.99935 1.04959 429.63779 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.83774 0.00000 3.82496 4.61939 34979.68422 0.00000 0.02100 66.75868 0.00000 3.82834 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 32.44572 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 22715.41387 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.84230 0.02772 0.02772 0.71086 0.00000 5437.68278 0.00000 0.00000 183.53194 0.75252 0.95980 0.99005 0.97379 1.04959 3969.07789 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.82334 0.00000 3.82341 5.10358 61974.33047 0.00000 0.02100 9.36490 0.00000 3.82291 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 36.90487 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.89223 0.02733 0.02733 0.83857 0.00000 2404.67562 0.00000 0.00000 107.30783 0.74355 0.94622 0.98489 0.96355 1.04959 4165.75811 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.84475 0.00000 3.84481 4.52113 68037.52552 0.00000 0.02100 3.13773 0.00000 3.84441 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 10.77974 1.00000 0.00000 0.25642 492.96624 204.11402 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 3.89510 0.02287 0.02287 0.82149 0.00000 1059.29142 0.00000 0.00000 58.54545 0.91161 0.96192 0.99079 0.97535 1.04959 2324.71831 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 3.97412 0.00000 3.97406 5.67630 49379.21811 0.00000 0.02100 3.28978 0.00000 3.97255 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 17.69554 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.62831 0.03532 0.03532 0.74368 0.00000 279.13886 0.00000 0.00000 16.98510 1.00000 0.78134 0.88702 0.82138 1.04959 683.51399 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.57122 0.00000 3.57122 0.00000 116684.07919 0.00000 0.02100 0.04446 0.00000 3.56468 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.61611 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -1.38030 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42499 32.18884 0.91850 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75900 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.11524 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.75161 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.87029 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.36706 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96432 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.39109 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.89256 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.29653 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 3.39378 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 3.97702 0.02762 0.02762 0.72176 0.00000 2072.40577 0.00000 0.00000 127.40465 0.87110 0.94599 0.98480 0.96337 1.04959 2961.24955 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 3.97479 0.00000 3.97473 4.92256 151336.55892 0.00000 0.02100 72.11440 0.00000 3.97366 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 149.59168 1.00000 0.00000 90.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.09057 0.02234 0.02234 0.72384 0.00000 497.58331 0.00000 0.00000 23.58032 1.00000 0.94361 0.98383 0.96153 1.04959 388.01537 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.09227 0.00000 4.08157 2.24796 59811.89300 0.00000 0.02100 30.24545 0.00000 4.07594 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 33.60186 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.16908 0.06836 0.06836 0.69837 0.00000 4154.40197 0.00000 0.00000 150.53587 0.69005 0.80852 0.90660 0.84632 1.04959 6255.47560 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.08298 0.00000 4.07690 1.86949 333380.67360 0.00000 0.02100 217.87715 0.00000 4.08123 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 19.87177 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.01337 0.02573 0.02573 0.71615 0.00000 505.95085 0.00000 0.00000 16.82969 1.00000 0.99845 0.99991 0.99935 1.04959 450.94525 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 3.94136 0.00000 3.92824 4.61939 34979.68422 0.00000 0.02100 68.22737 0.00000 3.93171 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 33.15953 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 23841.96198 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 3.94604 0.02772 0.02772 0.71086 0.00000 5557.31174 0.00000 0.00000 187.56964 0.75252 0.95980 0.99005 0.97379 1.04959 4165.92032 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 3.92657 0.00000 3.92664 5.10358 61974.33047 0.00000 0.02100 9.57093 0.00000 3.92612 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 37.71677 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 3.99732 0.02733 0.02733 0.83857 0.00000 2457.57845 0.00000 0.00000 109.66860 0.74355 0.94622 0.98489 0.96355 1.04959 4372.35469 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 3.94856 0.00000 3.94862 4.52113 68037.52552 0.00000 0.02100 3.20676 0.00000 3.94821 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 11.01689 1.00000 0.00000 0.26206 503.81149 208.60453 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.00027 0.02287 0.02287 0.82149 0.00000 1082.59581 -0.00000 0.00000 59.83345 0.91161 0.96192 0.99079 0.97535 1.04959 2440.01037 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.08142 0.00000 4.08136 5.67630 49379.21811 0.00000 0.02100 3.36216 0.00000 4.07981 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 18.08484 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.72627 0.03532 0.03532 0.74368 0.00000 285.27991 0.00000 0.00000 17.35877 1.00000 0.78134 0.88702 0.82138 1.04959 717.41218 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.66764 0.00000 3.66764 0.00000 116684.07919 0.00000 0.02100 0.04544 0.00000 3.66093 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.62966 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.36572 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42500 32.18884 0.91847 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75897 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 -0.10023 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.73660 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.85571 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.35466 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96432 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.37608 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.87754 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.28108 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.48539 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.08440 0.02762 0.02762 0.72176 0.00000 2117.99868 -0.00000 0.00000 130.20755 0.87110 0.94599 0.98480 0.96337 1.04959 3108.10974 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.08211 0.00000 4.08204 4.92256 151336.55892 0.00000 0.02100 73.70092 0.00000 4.08095 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 152.88270 1.00000 0.00000 91.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.20102 0.02234 0.02234 0.72384 0.00000 508.53013 0.00000 0.00000 24.09909 1.00000 0.94361 0.98383 0.96153 1.04959 407.25860 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.20276 0.00000 4.19177 2.24796 59811.89300 0.00000 0.02100 30.91085 0.00000 4.18599 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 34.34110 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.28165 0.06836 0.06836 0.69837 0.00000 4245.79876 0.00000 0.00000 153.84766 0.69005 0.80852 0.90660 0.84632 1.04959 6565.70963 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.19322 0.00000 4.18698 1.86949 333380.67360 0.00000 0.02100 222.67044 0.00000 4.19142 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 20.30895 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.12173 0.02573 0.02573 0.71615 0.00000 517.08176 0.00000 0.00000 17.19994 1.00000 0.99845 0.99991 0.99935 1.04959 473.30943 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.04777 0.00000 4.03430 4.61939 34979.68422 0.00000 0.02100 69.72837 0.00000 4.03786 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 33.88904 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 25024.38011 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.05258 0.02772 0.02772 0.71086 0.00000 5679.57253 0.00000 0.00000 191.69617 0.75252 0.95980 0.99005 0.97379 1.04959 4372.52495 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.03258 0.00000 4.03266 5.10358 61974.33047 0.00000 0.02100 9.78149 0.00000 4.03213 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 38.54654 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.10525 0.02733 0.02733 0.83857 0.00000 2511.64515 0.00000 0.00000 112.08131 0.74355 0.94622 0.98489 0.96355 1.04959 4589.19723 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.05517 0.00000 4.05523 4.52113 68037.52552 0.00000 0.02100 3.27731 0.00000 4.05482 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 11.25926 1.00000 0.00000 0.26782 514.89534 213.19383 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.10827 0.02287 0.02287 0.82149 0.00000 1106.41291 0.00000 0.00000 61.14979 0.91161 0.96192 0.99079 0.97535 1.04959 2561.02023 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.19162 0.00000 4.19156 5.67630 49379.21811 0.00000 0.02100 3.43613 0.00000 4.18996 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 18.48271 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.82688 0.03532 0.03532 0.74368 0.00000 291.55607 0.00000 0.00000 17.74066 1.00000 0.78134 0.88702 0.82138 1.04959 752.99151 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.76667 0.00000 3.76667 0.00000 116684.07919 0.00000 0.02100 0.04644 0.00000 3.75977 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.64352 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.35114 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42500 32.18884 0.91845 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75895 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.08521 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.72158 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.84113 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.34225 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96433 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.36106 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.86253 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.26563 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 3.57947 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.19468 0.02762 0.02762 0.72176 0.00000 2164.59462 0.00000 0.00000 133.07212 0.87110 0.94599 0.98480 0.96337 1.04959 3262.25332 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.19233 0.00000 4.19226 4.92256 151336.55892 0.00000 0.02100 75.32234 0.00000 4.19114 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 156.24612 1.00000 0.00000 92.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.31444 0.02234 0.02234 0.72384 0.00000 519.71779 0.00000 0.00000 24.62927 1.00000 0.94361 0.98383 0.96153 1.04959 427.45618 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.31623 0.00000 4.30495 2.24796 59811.89300 0.00000 0.02100 31.59089 0.00000 4.29901 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 35.09660 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.39725 0.06836 0.06836 0.69837 0.00000 4339.20629 0.00000 0.00000 157.23230 0.69005 0.80852 0.90660 0.84632 1.04959 6891.32939 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.30644 0.00000 4.30003 1.86949 333380.67360 0.00000 0.02100 227.56919 0.00000 4.30459 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 20.75575 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.23302 0.02573 0.02573 0.71615 0.00000 528.45756 0.00000 0.00000 17.57834 1.00000 0.99845 0.99991 0.99935 1.04959 496.78273 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.15706 0.00000 4.14322 4.61939 34979.68422 0.00000 0.02100 71.26240 0.00000 4.14689 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 34.63460 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 26265.43909 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.16200 0.02772 0.02772 0.71086 0.00000 5804.52307 0.00000 0.00000 195.91349 0.75252 0.95980 0.99005 0.97379 1.04959 4589.37592 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.14146 0.00000 4.14154 5.10358 61974.33047 0.00000 0.02100 9.99668 0.00000 4.14100 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 39.39457 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.21609 0.02733 0.02733 0.83857 0.00000 2566.90132 -0.00000 0.00000 114.54709 0.74355 0.94622 0.98489 0.96355 1.04959 4816.79385 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.16466 0.00000 4.16472 4.52113 68037.52552 0.00000 0.02100 3.34941 0.00000 4.16430 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 11.50697 1.00000 0.00000 0.27372 526.22303 217.88409 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.21920 0.02287 0.02287 0.82149 0.00000 1130.75398 -0.00000 0.00000 62.49508 0.91161 0.96192 0.99079 0.97535 1.04959 2688.03146 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.30479 0.00000 4.30473 5.67630 49379.21811 0.00000 0.02100 3.51172 0.00000 4.30309 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 18.88933 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 3.93021 0.03532 0.03532 0.74368 0.00000 297.97030 -0.00000 0.00000 18.13096 1.00000 0.78134 0.88702 0.82138 1.04959 790.33537 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.86837 0.00000 3.86837 0.00000 116684.07919 0.00000 0.02100 0.04746 0.00000 3.86129 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.65767 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.33656 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42501 32.18884 0.91842 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75892 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.07020 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.70657 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.82655 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.32985 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96434 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.34605 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.84751 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.25018 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.67609 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.30793 0.02762 0.02762 0.72176 0.00000 2212.21568 0.00000 0.00000 135.99970 0.87110 0.94599 0.98480 0.96337 1.04959 3424.04149 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.30552 0.00000 4.30545 4.92256 151336.55892 0.00000 0.02100 76.97943 0.00000 4.30430 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 159.68353 1.00000 0.00000 93.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.43093 0.02234 0.02234 0.72384 0.00000 531.15158 0.00000 0.00000 25.17111 1.00000 0.94361 0.98383 0.96153 1.04959 448.65544 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.43277 0.00000 4.42118 2.24796 59811.89300 0.00000 0.02100 32.28589 0.00000 4.41508 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 35.86873 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.51598 0.06836 0.06836 0.69837 0.00000 4434.66877 0.00000 0.00000 160.69141 0.69005 0.80852 0.90660 0.84632 1.04959 7233.09795 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.42271 0.00000 4.41613 1.86949 333380.67360 0.00000 0.02100 232.57571 0.00000 4.42081 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 21.21237 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.34731 0.02573 0.02573 0.71615 0.00000 540.08362 0.00000 0.00000 17.96507 1.00000 0.99845 0.99991 0.99935 1.04959 521.42017 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.26930 0.00000 4.25509 4.61939 34979.68422 0.00000 0.02100 72.83017 0.00000 4.25885 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 35.39656 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 27568.04713 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.27437 0.02772 0.02772 0.71086 0.00000 5932.22251 -0.00000 0.00000 200.22358 0.75252 0.95980 0.99005 0.97379 1.04959 4816.98141 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.25328 0.00000 4.25337 5.10358 61974.33047 0.00000 0.02100 10.21661 0.00000 4.25280 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 40.26125 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.32993 0.02733 0.02733 0.83857 0.00000 2623.37312 0.00000 0.00000 117.06713 0.74355 0.94622 0.98489 0.96355 1.04959 5055.67790 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.27711 0.00000 4.27717 4.52113 68037.52552 0.00000 0.02100 3.42310 0.00000 4.27673 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 11.76012 1.00000 0.00000 0.27974 537.79993 222.67754 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.33311 0.02287 0.02287 0.82149 0.00000 1155.63056 0.00000 0.00000 63.86997 0.91161 0.96192 0.99079 0.97535 1.04959 2821.34168 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.42102 0.00000 4.42096 5.67630 49379.21811 0.00000 0.02100 3.58898 0.00000 4.41928 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 19.30489 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.03633 0.03532 0.03532 0.74368 0.00000 304.52564 -0.00000 0.00000 18.52984 1.00000 0.78134 0.88702 0.82138 1.04959 829.53126 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 3.97282 0.00000 3.97281 0.00000 116684.07919 0.00000 0.02100 0.04850 0.00000 3.96554 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.67214 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.32198 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42501 32.18884 0.91841 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75890 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.05518 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.69155 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.81197 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.31744 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96434 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.33103 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.83250 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.23472 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 3.77532 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.42425 0.02762 0.02762 0.72176 0.00000 2260.88440 0.00000 0.00000 138.99169 0.87110 0.94599 0.98480 0.96337 1.04959 3593.85339 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.42177 0.00000 4.42170 4.92256 151336.55892 0.00000 0.02100 78.67298 0.00000 4.42051 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 163.19657 1.00000 0.00000 94.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.55057 0.02234 0.02234 0.72384 0.00000 542.83690 0.00000 0.00000 25.72488 1.00000 0.94361 0.98383 0.96153 1.04959 470.90606 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.55246 0.00000 4.54055 2.24796 59811.89300 0.00000 0.02100 32.99618 0.00000 4.53429 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 36.65784 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.63791 0.06836 0.06836 0.69837 0.00000 4532.23144 0.00000 0.00000 164.22662 0.69005 0.80852 0.90660 0.84632 1.04959 7591.81617 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.54213 0.00000 4.53536 1.86949 333380.67360 0.00000 0.02100 237.69237 0.00000 4.54017 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 21.67905 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.46468 0.02573 0.02573 0.71615 0.00000 551.96545 0.00000 0.00000 18.36030 1.00000 0.99845 0.99991 0.99935 1.04959 547.27948 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.38458 0.00000 4.36998 4.61939 34979.68422 0.00000 0.02100 74.43243 0.00000 4.37384 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 36.17528 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 28935.25671 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.38978 0.02772 0.02772 0.71086 0.00000 6062.73133 0.00000 0.00000 204.62850 0.75252 0.95980 0.99005 0.97379 1.04959 5055.87476 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.36812 0.00000 4.36821 5.10358 61974.33047 0.00000 0.02100 10.44138 0.00000 4.36763 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 41.14699 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.44683 0.02733 0.02733 0.83857 0.00000 2681.08729 0.00000 0.00000 119.64260 0.74355 0.94622 0.98489 0.96355 1.04959 5306.40916 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.39259 0.00000 4.39266 4.52113 68037.52552 0.00000 0.02100 3.49841 0.00000 4.39220 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 12.01884 1.00000 0.00000 0.28589 549.63152 227.57644 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.45011 0.02287 0.02287 0.82149 0.00000 1181.05442 0.00000 0.00000 65.27511 0.91161 0.96192 0.99079 0.97535 1.04959 2961.26328 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.54039 0.00000 4.54032 5.67630 49379.21811 0.00000 0.02100 3.66794 0.00000 4.53860 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 19.72960 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.14531 0.03532 0.03532 0.74368 0.00000 311.22520 0.00000 0.00000 18.93749 1.00000 0.78134 0.88702 0.82138 1.04959 870.67103 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.08008 0.00000 4.08008 0.00000 116684.07919 0.00000 0.02100 0.04957 0.00000 4.07261 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.68693 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.30740 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42501 32.18884 0.91839 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75889 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 -0.04017 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.67653 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.79739 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.30504 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96434 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.31602 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.81748 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.21927 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 3.87723 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.54370 0.02762 0.02762 0.72176 0.00000 2310.62383 0.00000 0.00000 142.04951 0.87110 0.94599 0.98480 0.96337 1.04959 3772.08693 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.54116 0.00000 4.54108 4.92256 151336.55892 0.00000 0.02100 80.40378 0.00000 4.53987 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 166.78689 1.00000 0.00000 95.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.67343 0.02234 0.02234 0.72384 0.00000 554.77931 0.00000 0.00000 26.29082 1.00000 0.94361 0.98383 0.96153 1.04959 494.26017 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.67537 0.00000 4.66315 2.24796 59811.89300 0.00000 0.02100 33.72209 0.00000 4.65672 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 37.46431 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.76313 0.06836 0.06836 0.69837 0.00000 4631.94048 0.00000 0.00000 167.83961 0.69005 0.80852 0.90660 0.84632 1.04959 7968.32466 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.66476 0.00000 4.65782 1.86949 333380.67360 0.00000 0.02100 242.92160 0.00000 4.66276 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 22.15598 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.58523 0.02573 0.02573 0.71615 0.00000 564.10868 0.00000 0.00000 18.76422 1.00000 0.99845 0.99991 0.99935 1.04959 574.42126 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.50296 0.00000 4.48797 4.61939 34979.68422 0.00000 0.02100 76.06994 0.00000 4.49193 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 36.97114 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 30370.27168 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.50831 0.02772 0.02772 0.71086 0.00000 6196.11135 0.00000 0.00000 209.13032 0.75252 0.95980 0.99005 0.97379 1.04959 5306.61578 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.48606 0.00000 4.48615 5.10358 61974.33047 0.00000 0.02100 10.67109 0.00000 4.48556 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 42.05223 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.56690 0.02733 0.02733 0.83857 0.00000 2740.07118 0.00000 0.00000 122.27474 0.74355 0.94622 0.98489 0.96355 1.04959 5569.57519 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.51119 0.00000 4.51126 4.52113 68037.52552 0.00000 0.02100 3.57537 0.00000 4.51079 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 12.28326 1.00000 0.00000 0.29218 561.72341 232.58312 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.57026 0.02287 0.02287 0.82149 0.00000 1207.03760 0.00000 0.00000 66.71116 0.91161 0.96192 0.99079 0.97535 1.04959 3108.12415 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.66298 0.00000 4.66291 5.67630 49379.21811 0.00000 0.02100 3.74863 0.00000 4.66114 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 20.16365 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.25723 0.03532 0.03532 0.74368 0.00000 318.07215 0.00000 0.00000 19.35412 1.00000 0.78134 0.88702 0.82138 1.04959 913.85108 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.19025 0.00000 4.19024 0.00000 116684.07919 0.00000 0.02100 0.05066 0.00000 4.18257 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.70204 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.29282 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42502 32.18884 0.91837 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75887 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.02515 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.66152 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.78281 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.29264 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96435 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.30100 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.80247 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.20382 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 3.98189 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.66638 0.02762 0.02762 0.72176 0.00000 2361.45753 0.00000 0.00000 145.17460 0.87110 0.94599 0.98480 0.96337 1.04959 3959.15979 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.66377 0.00000 4.66369 4.92256 151336.55892 0.00000 0.02100 82.17266 0.00000 4.66244 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 170.45620 1.00000 0.00000 96.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.79962 0.02234 0.02234 0.72384 0.00000 566.98445 0.00000 0.00000 26.86922 1.00000 0.94361 0.98383 0.96153 1.04959 518.77251 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.80161 0.00000 4.78905 2.24796 59811.89300 0.00000 0.02100 34.46398 0.00000 4.78245 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 38.28852 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 4.89174 0.06836 0.06836 0.69837 0.00000 4733.84311 0.00000 0.00000 171.53208 0.69005 0.80852 0.90660 0.84632 1.04959 8363.50571 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.79071 0.00000 4.78358 1.86949 333380.67360 0.00000 0.02100 248.26588 0.00000 4.78865 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 22.64342 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.70903 0.02573 0.02573 0.71615 0.00000 576.51907 0.00000 0.00000 19.17704 1.00000 0.99845 0.99991 0.99935 1.04959 602.90910 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.62454 0.00000 4.60914 4.61939 34979.68422 0.00000 0.02100 77.74348 0.00000 4.61322 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 37.78450 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 31876.45477 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.63003 0.02772 0.02772 0.71086 0.00000 6332.42573 0.00000 0.00000 213.73119 0.75252 0.95980 0.99005 0.97379 1.04959 5569.79206 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.60718 0.00000 4.60728 5.10358 61974.33047 0.00000 0.02100 10.90585 0.00000 4.60667 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 42.97738 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.69020 0.02733 0.02733 0.83857 0.00000 2800.35272 0.00000 0.00000 124.96478 0.74355 0.94622 0.98489 0.96355 1.04959 5845.79267 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.63299 0.00000 4.63306 4.52113 68037.52552 0.00000 0.02100 3.65403 0.00000 4.63258 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 12.55349 1.00000 0.00000 0.29861 574.08132 237.69995 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.69366 0.02287 0.02287 0.82149 0.00000 1233.59241 0.00000 0.00000 68.17881 0.91161 0.96192 0.99079 0.97535 1.04959 3262.26845 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.78888 0.00000 4.78881 5.67630 49379.21811 0.00000 0.02100 3.83110 0.00000 4.78699 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 20.60725 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.37217 0.03532 0.03532 0.74368 0.00000 325.06974 0.00000 0.00000 19.77991 1.00000 0.78134 0.88702 0.82138 1.04959 959.17261 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.30338 0.00000 4.30338 0.00000 116684.07919 0.00000 0.02100 0.05178 0.00000 4.29550 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.71749 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.27824 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42502 32.18884 0.91836 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75886 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 -0.01014 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.64650 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.76823 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.28023 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96435 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.28598 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.78745 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.18837 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.08938 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.79237 0.02762 0.02762 0.72176 0.00000 2413.40957 0.00000 0.00000 148.36844 0.87110 0.94599 0.98480 0.96337 1.04959 4155.51034 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.78969 0.00000 4.78961 4.92256 151336.55892 0.00000 0.02100 83.98046 0.00000 4.78833 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 174.20623 1.00000 0.00000 97.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 4.92921 0.02234 0.02234 0.72384 0.00000 579.45810 0.00000 0.00000 27.46034 1.00000 0.94361 0.98383 0.96153 1.04959 544.50051 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 4.93125 0.00000 4.91836 2.24796 59811.89300 0.00000 0.02100 35.22219 0.00000 4.91157 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 39.13087 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.02381 0.06836 0.06836 0.69837 0.00000 4837.98761 0.00000 0.00000 175.30578 0.69005 0.80852 0.90660 0.84632 1.04959 8778.28537 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 4.92006 0.00000 4.91274 1.86949 333380.67360 0.00000 0.02100 253.72772 0.00000 4.91795 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 23.14157 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.83618 0.02573 0.02573 0.71615 0.00000 589.20248 0.00000 0.00000 19.59893 1.00000 0.99845 0.99991 0.99935 1.04959 632.80977 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.74940 0.00000 4.73359 4.61939 34979.68422 0.00000 0.02100 79.45384 0.00000 4.73777 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 38.61576 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 33457.33549 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.75504 0.02772 0.02772 0.71086 0.00000 6471.73903 0.00000 0.00000 218.43327 0.75252 0.95980 0.99005 0.97379 1.04959 5846.02030 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.73158 0.00000 4.73167 5.10358 61974.33047 0.00000 0.02100 11.14578 0.00000 4.73105 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 43.92288 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.81684 0.02733 0.02733 0.83857 0.00000 2861.96045 0.00000 0.00000 127.71401 0.74355 0.94622 0.98489 0.96355 1.04959 6135.70888 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.75808 0.00000 4.75815 4.52113 68037.52552 0.00000 0.02100 3.73442 0.00000 4.75766 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 12.82966 1.00000 0.00000 0.30518 586.71110 242.92934 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.82039 0.02287 0.02287 0.82149 0.00000 1260.73143 0.00000 0.00000 69.67874 0.91161 0.96192 0.99079 0.97535 1.04959 3424.05737 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 4.91818 0.00000 4.91811 5.67630 49379.21811 0.00000 0.02100 3.91539 0.00000 4.91624 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 21.06061 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.49022 0.03532 0.03532 0.74368 0.00000 332.22127 0.00000 0.00000 20.21507 1.00000 0.78134 0.88702 0.82138 1.04959 1006.74181 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.41957 0.00000 4.41957 0.00000 116684.07919 0.00000 0.02100 0.05291 0.00000 4.41148 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.73327 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.26366 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42502 32.18884 0.91835 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75884 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 0.00488 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.63149 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.75365 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.26783 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96435 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.27097 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.77244 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.17292 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 4.19976 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 4.92177 0.02762 0.02762 0.72176 0.00000 2466.50455 -0.00000 0.00000 151.63254 0.87110 0.94599 0.98480 0.96337 1.04959 4361.59870 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 4.91902 0.00000 4.91893 4.92256 151336.55892 0.00000 0.02100 85.82803 0.00000 4.91762 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 178.03877 1.00000 0.00000 98.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.06230 0.02234 0.02234 0.72384 0.00000 592.20617 0.00000 0.00000 28.06447 1.00000 0.94361 0.98383 0.96153 1.04959 571.50447 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.06439 0.00000 5.05116 2.24796 59811.89300 0.00000 0.02100 35.99707 0.00000 5.04418 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 39.99175 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.15946 0.06836 0.06836 0.69837 0.00000 4944.42328 0.00000 0.00000 179.16250 0.69005 0.80852 0.90660 0.84632 1.04959 9213.63560 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.05290 0.00000 5.04538 1.86949 333380.67360 0.00000 0.02100 259.30973 0.00000 5.05073 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 23.65069 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 4.96675 0.02573 0.02573 0.71615 0.00000 602.16493 0.00000 0.00000 20.03011 1.00000 0.99845 0.99991 0.99935 1.04959 664.19334 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 4.87764 0.00000 4.86140 4.61939 34979.68422 0.00000 0.02100 81.20182 0.00000 4.86569 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 39.46531 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 35116.61841 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 4.88343 0.02772 0.02772 0.71086 0.00000 6614.11721 0.00000 0.00000 223.23880 0.75252 0.95980 0.99005 0.97379 1.04959 6135.94780 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.85933 0.00000 4.85943 5.10358 61974.33047 0.00000 0.02100 11.39099 0.00000 4.85878 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 44.88918 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 4.94690 0.02733 0.02733 0.83857 0.00000 2924.92354 0.00000 0.00000 130.52371 0.74355 0.94622 0.98489 0.96355 1.04959 6440.00320 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 4.88655 0.00000 4.88662 4.52113 68037.52552 0.00000 0.02100 3.81657 0.00000 4.88612 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 13.11192 1.00000 0.00000 0.31189 599.61874 248.27378 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 4.95054 0.02287 0.02287 0.82149 0.00000 1288.46751 0.00000 0.00000 71.21167 0.91161 0.96192 0.99079 0.97535 1.04959 3593.87005 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.05097 0.00000 5.05090 5.67630 49379.21811 0.00000 0.02100 4.00152 0.00000 5.04898 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 21.52394 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.61146 0.03532 0.03532 0.74368 0.00000 339.53013 0.00000 0.00000 20.65980 1.00000 0.78134 0.88702 0.82138 1.04959 1056.67016 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.53890 0.00000 4.53890 0.00000 116684.07919 0.00000 0.02100 0.05408 0.00000 4.53059 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.74940 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.24908 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42502 32.18884 0.91834 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75883 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.01990 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.61647 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.73907 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.25542 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.25595 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.75742 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.15747 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 4.31313 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.05466 0.02762 0.02762 0.72176 0.00000 2520.76762 0.00000 0.00000 154.96845 0.87110 0.94599 0.98480 0.96337 1.04959 4577.90780 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.05183 0.00000 5.05174 4.92256 151336.55892 0.00000 0.02100 87.71625 0.00000 5.05039 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 181.95562 1.00000 0.00000 99.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.19898 0.02234 0.02234 0.72384 0.00000 605.23470 0.00000 0.00000 28.68189 1.00000 0.94361 0.98383 0.96153 1.04959 599.84765 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.20113 0.00000 5.18754 2.24796 59811.89300 0.00000 0.02100 36.78901 0.00000 5.18038 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 40.87157 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.29876 0.06836 0.06836 0.69837 0.00000 5053.20054 0.00000 0.00000 183.10408 0.69005 0.80852 0.90660 0.84632 1.04959 9670.57660 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.18933 0.00000 5.18160 1.86949 333380.67360 0.00000 0.02100 265.01454 0.00000 5.18710 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 24.17100 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.10086 0.02573 0.02573 0.71615 0.00000 615.41255 0.00000 0.00000 20.47077 1.00000 0.99845 0.99991 0.99935 1.04959 697.13334 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.00933 0.00000 4.99266 4.61939 34979.68422 0.00000 0.02100 82.98826 0.00000 4.99707 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 40.33354 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 36858.19180 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.01528 0.02772 0.02772 0.71086 0.00000 6759.62772 0.00000 0.00000 228.15005 0.75252 0.95980 0.99005 0.97379 1.04959 6440.25396 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 4.99053 0.00000 4.99063 5.10358 61974.33047 0.00000 0.02100 11.64159 0.00000 4.98997 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 45.87674 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.08046 0.02733 0.02733 0.83857 0.00000 2989.27183 -0.00000 0.00000 133.39523 0.74355 0.94622 0.98489 0.96355 1.04959 6759.38868 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.01848 0.00000 5.01856 4.52113 68037.52552 0.00000 0.02100 3.90054 0.00000 5.01805 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 13.40038 1.00000 0.00000 0.31876 612.81034 253.73581 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.08420 0.02287 0.02287 0.82149 0.00000 1316.81378 -0.00000 0.00000 72.77833 0.91161 0.96192 0.99079 0.97535 1.04959 3772.10443 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.18735 0.00000 5.18727 5.67630 49379.21811 0.00000 0.02100 4.08956 0.00000 5.18530 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 21.99747 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.73597 0.03532 0.03532 0.74368 0.00000 346.99979 0.00000 0.00000 21.11431 1.00000 0.78134 0.88702 0.82138 1.04959 1109.07465 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.66145 0.00000 4.66145 0.00000 116684.07919 0.00000 0.02100 0.05527 0.00000 4.65292 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.76589 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.23450 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91833 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75882 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.03491 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.60146 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.72449 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.24302 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.24094 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.74241 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.14202 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.42955 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.19113 0.02762 0.02762 0.72176 0.00000 2576.22448 0.00000 0.00000 158.37776 0.87110 0.94599 0.98480 0.96337 1.04959 4804.94454 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.18823 0.00000 5.18814 4.92256 151336.55892 0.00000 0.02100 89.64600 0.00000 5.18675 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 185.95864 1.00000 0.00000 100.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.33935 0.02234 0.02234 0.72384 0.00000 618.54986 0.00000 0.00000 29.31289 1.00000 0.94361 0.98383 0.96153 1.04959 629.59650 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.34156 0.00000 5.32760 2.24796 59811.89300 0.00000 0.02100 37.59837 0.00000 5.32025 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 41.77074 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.44183 0.06836 0.06836 0.69837 0.00000 5164.37089 0.00000 0.00000 187.13237 0.69005 0.80852 0.90660 0.84632 1.04959 10150.17912 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.32945 0.00000 5.32151 1.86949 333380.67360 0.00000 0.02100 270.84486 0.00000 5.32715 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 24.70276 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.23858 0.02573 0.02573 0.71615 0.00000 628.95162 0.00000 0.00000 20.92113 1.00000 0.99845 0.99991 0.99935 1.04959 731.70696 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.14458 0.00000 5.12746 4.61939 34979.68422 0.00000 0.02100 84.81400 0.00000 5.13199 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 41.22088 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 38686.13676 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.15069 0.02772 0.02772 0.71086 0.00000 6908.33945 0.00000 0.00000 233.16935 0.75252 0.95980 0.99005 0.97379 1.04959 6759.65188 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.12528 0.00000 5.12538 5.10358 61974.33047 0.00000 0.02100 11.89770 0.00000 5.12470 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 46.88603 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.21763 0.02733 0.02733 0.83857 0.00000 3055.03577 0.00000 0.00000 136.32993 0.74355 0.94622 0.98489 0.96355 1.04959 7094.61377 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.15398 0.00000 5.15406 4.52113 68037.52552 0.00000 0.02100 3.98635 0.00000 5.15353 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 13.69519 1.00000 0.00000 0.32577 626.29216 259.31799 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.22148 0.02287 0.02287 0.82149 0.00000 1345.78367 0.00000 0.00000 74.37945 0.91161 0.96192 0.99079 0.97535 1.04959 3959.17815 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.32741 0.00000 5.32733 5.67630 49379.21811 0.00000 0.02100 4.17953 0.00000 5.32530 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 22.48141 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.86384 0.03532 0.03532 0.74368 0.00000 354.63378 0.00000 0.00000 21.57883 1.00000 0.78134 0.88702 0.82138 1.04959 1164.07809 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.78731 0.00000 4.78730 0.00000 116684.07919 0.00000 0.02100 0.05648 0.00000 4.77854 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.78274 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.21992 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91832 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75881 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.04993 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.58644 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.70991 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.23062 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.22592 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.72739 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.12657 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.54912 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.33129 0.02762 0.02762 0.72176 0.00000 2632.90139 0.00000 0.00000 161.86207 0.87110 0.94599 0.98480 0.96337 1.04959 5043.24093 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.32831 0.00000 5.32822 4.92256 151336.55892 0.00000 0.02100 91.61821 0.00000 5.32679 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 190.04973 1.00000 0.00000 101.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.48351 0.02234 0.02234 0.72384 0.00000 632.15795 0.00000 0.00000 29.95777 1.00000 0.94361 0.98383 0.96153 1.04959 660.82070 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.48579 0.00000 5.47145 2.24796 59811.89300 0.00000 0.02100 38.42553 0.00000 5.46389 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 42.68970 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.58876 0.06836 0.06836 0.69837 0.00000 5277.98699 0.00000 0.00000 191.24928 0.69005 0.80852 0.90660 0.84632 1.04959 10653.56705 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.47334 0.00000 5.46519 1.86949 333380.67360 0.00000 0.02100 276.80344 0.00000 5.47099 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 25.24622 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.38002 0.02573 0.02573 0.71615 0.00000 642.78855 0.00000 0.00000 21.38139 1.00000 0.99845 0.99991 0.99935 1.04959 767.99523 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.28349 0.00000 5.26590 4.61939 34979.68422 0.00000 0.02100 86.67991 0.00000 5.27055 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 42.12774 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 40604.73682 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.28976 0.02772 0.02772 0.71086 0.00000 7060.32284 0.00000 0.00000 238.29907 0.75252 0.95980 0.99005 0.97379 1.04959 7094.89002 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.26366 0.00000 5.26376 5.10358 61974.33047 0.00000 0.02100 12.15945 0.00000 5.26307 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 47.91752 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.35851 0.02733 0.02733 0.83857 0.00000 3122.24653 -0.00000 0.00000 139.32918 0.74355 0.94622 0.98489 0.96355 1.04959 7446.46400 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.29314 0.00000 5.29322 4.52113 68037.52552 0.00000 0.02100 4.07405 0.00000 5.29268 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 13.99648 1.00000 0.00000 0.33294 640.07058 265.02298 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.36246 0.02287 0.02287 0.82149 0.00000 1375.39089 -0.00000 0.00000 76.01580 0.91161 0.96192 0.99079 0.97535 1.04959 4155.52961 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.47125 0.00000 5.47117 5.67630 49379.21811 0.00000 0.02100 4.27148 0.00000 5.46909 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 22.97600 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 4.99516 0.03532 0.03532 0.74368 0.00000 362.43572 0.00000 0.00000 22.05356 1.00000 0.78134 0.88702 0.82138 1.04959 1221.80937 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 4.91657 0.00000 4.91656 0.00000 116684.07919 0.00000 0.02100 0.05773 0.00000 4.90756 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.79996 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.20534 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91831 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75881 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.06494 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.57143 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.69533 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.21821 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.21091 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.71238 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.11112 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.67192 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.47524 0.02762 0.02762 0.72176 0.00000 2690.82519 0.00000 0.00000 165.42303 0.87110 0.94599 0.98480 0.96337 1.04959 5293.35539 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.47218 0.00000 5.47208 4.92256 151336.55892 0.00000 0.02100 93.63381 0.00000 5.47062 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 194.23082 1.00000 0.00000 102.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.63157 0.02234 0.02234 0.72384 0.00000 646.06541 0.00000 0.00000 30.61684 1.00000 0.94361 0.98383 0.96153 1.04959 693.59344 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.63390 0.00000 5.61917 2.24796 59811.89300 0.00000 0.02100 39.27089 0.00000 5.61142 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 43.62887 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.73966 0.06836 0.06836 0.69837 0.00000 5394.10265 0.00000 0.00000 195.45676 0.69005 0.80852 0.90660 0.84632 1.04959 11181.92000 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.62112 0.00000 5.61275 1.86949 333380.67360 0.00000 0.02100 282.89311 0.00000 5.61870 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 25.80164 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.52528 0.02573 0.02573 0.71615 0.00000 656.92989 0.00000 0.00000 21.85178 1.00000 0.99845 0.99991 0.99935 1.04959 806.08319 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.42614 0.00000 5.40808 4.61939 34979.68422 0.00000 0.02100 88.58687 0.00000 5.41286 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 43.05455 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 42618.48792 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.43259 0.02772 0.02772 0.71086 0.00000 7215.64986 -0.00000 0.00000 243.54165 0.75252 0.95980 0.99005 0.97379 1.04959 7446.75395 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.40578 0.00000 5.40589 5.10358 61974.33047 0.00000 0.02100 12.42696 0.00000 5.40517 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 48.97171 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.50319 0.02733 0.02733 0.83857 0.00000 3190.93591 0.00000 0.00000 142.39442 0.74355 0.94622 0.98489 0.96355 1.04959 7815.76390 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.43606 0.00000 5.43614 4.52113 68037.52552 0.00000 0.02100 4.16368 0.00000 5.43558 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 14.30440 1.00000 0.00000 0.34026 654.15213 270.85349 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.50724 0.02287 0.02287 0.82149 0.00000 1405.64948 0.00000 0.00000 77.68815 0.91161 0.96192 0.99079 0.97535 1.04959 4361.61893 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.61897 0.00000 5.61889 5.67630 49379.21811 0.00000 0.02100 4.36545 0.00000 5.61675 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 23.48147 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.13003 0.03532 0.03532 0.74368 0.00000 370.40930 0.00000 0.00000 22.53874 1.00000 0.78134 0.88702 0.82138 1.04959 1282.40378 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.04932 0.00000 5.04931 0.00000 116684.07919 0.00000 0.02100 0.05900 0.00000 5.04007 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.81756 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.19076 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91831 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75880 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.07996 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.55641 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.68075 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.20581 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.19589 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.69736 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.09567 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.79803 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.62307 0.02762 0.02762 0.72176 0.00000 2750.02332 0.00000 0.00000 169.06234 0.87110 0.94599 0.98480 0.96337 1.04959 5555.87403 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.61992 0.00000 5.61983 4.92256 151336.55892 0.00000 0.02100 95.69376 0.00000 5.61832 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 198.50390 1.00000 0.00000 103.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.78362 0.02234 0.02234 0.72384 0.00000 660.27885 0.00000 0.00000 31.29041 1.00000 0.94361 0.98383 0.96153 1.04959 727.99151 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.78602 0.00000 5.77089 2.24796 59811.89300 0.00000 0.02100 40.13485 0.00000 5.76293 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 44.58870 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 5.89463 0.06836 0.06836 0.69837 0.00000 5512.77284 0.00000 0.00000 199.75680 0.69005 0.80852 0.90660 0.84632 1.04959 11736.47608 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.77289 0.00000 5.76429 1.86949 333380.67360 0.00000 0.02100 289.11676 0.00000 5.77041 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 26.36927 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.67446 0.02573 0.02573 0.71615 0.00000 671.38234 0.00000 0.00000 22.33252 1.00000 0.99845 0.99991 0.99935 1.04959 846.06007 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.57265 0.00000 5.55410 4.61939 34979.68422 0.00000 0.02100 90.53578 0.00000 5.55900 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 44.00175 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 44732.10898 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.57927 0.02772 0.02772 0.71086 0.00000 7374.39407 0.00000 0.00000 248.89956 0.75252 0.95980 0.99005 0.97379 1.04959 7816.06823 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.55174 0.00000 5.55184 5.10358 61974.33047 0.00000 0.02100 12.70035 0.00000 5.55111 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 50.04908 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.65178 0.02733 0.02733 0.83857 0.00000 3261.13647 0.00000 0.00000 145.52710 0.74355 0.94622 0.98489 0.96355 1.04959 8203.37885 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.58283 0.00000 5.58292 4.52113 68037.52552 0.00000 0.02100 4.25528 0.00000 5.58234 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 14.61910 1.00000 0.00000 0.34775 668.54347 276.81226 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.65594 0.02287 0.02287 0.82149 0.00000 1436.57375 0.00000 0.00000 79.39728 0.91161 0.96192 0.99079 0.97535 1.04959 4577.92903 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.77068 0.00000 5.77060 5.67630 49379.21811 0.00000 0.02100 4.46149 0.00000 5.76840 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 23.99807 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.26854 0.03532 0.03532 0.74368 0.00000 378.55830 -0.00000 0.00000 23.03459 1.00000 0.78134 0.88702 0.82138 1.04959 1346.00331 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.18565 0.00000 5.18564 0.00000 116684.07919 0.00000 0.02100 0.06029 0.00000 5.17615 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.83554 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.17618 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91830 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75879 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.09497 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.54140 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.66617 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -2.19340 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96436 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.18088 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.68234 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.08022 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 4.92754 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.77489 0.02762 0.02762 0.72176 0.00000 2810.52380 0.00000 0.00000 172.78170 0.87110 0.94599 0.98480 0.96337 1.04959 5831.41202 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.77166 0.00000 5.77156 4.92256 151336.55892 0.00000 0.02100 97.79902 0.00000 5.77002 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 202.87098 1.00000 0.00000 104.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 5.93978 0.02234 0.02234 0.72384 0.00000 674.80497 0.00000 0.00000 31.97880 1.00000 0.94361 0.98383 0.96153 1.04959 764.09552 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 5.94224 0.00000 5.92671 2.24796 59811.89300 0.00000 0.02100 41.01782 0.00000 5.91853 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 45.56966 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.05378 0.06836 0.06836 0.69837 0.00000 5634.05378 0.00000 0.00000 204.15145 0.69005 0.80852 0.90660 0.84632 1.04959 12318.53481 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 5.92876 0.00000 5.91993 1.86949 333380.67360 0.00000 0.02100 295.47732 0.00000 5.92621 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 26.94940 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.82767 0.02573 0.02573 0.71615 0.00000 686.15274 0.00000 0.00000 22.82384 1.00000 0.99845 0.99991 0.99935 1.04959 888.01957 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.72311 0.00000 5.70406 4.61939 34979.68422 0.00000 0.02100 92.52756 0.00000 5.70910 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 44.96978 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 46950.55295 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.72991 0.02772 0.02772 0.71086 0.00000 7536.63066 0.00000 0.00000 254.37535 0.75252 0.95980 0.99005 0.97379 1.04959 8203.69828 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.70163 0.00000 5.70174 5.10358 61974.33047 0.00000 0.02100 12.97976 0.00000 5.70099 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 51.15016 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.80437 0.02733 0.02733 0.83857 0.00000 3332.88143 0.00000 0.00000 148.72869 0.74355 0.94622 0.98489 0.96355 1.04959 8610.21718 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.73357 0.00000 5.73366 4.52113 68037.52552 0.00000 0.02100 4.34890 0.00000 5.73307 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 14.94072 1.00000 0.00000 0.35540 683.25141 282.90213 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.80865 0.02287 0.02287 0.82149 0.00000 1468.17835 0.00000 0.00000 81.14402 0.91161 0.96192 0.99079 0.97535 1.04959 4804.96682 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 5.92649 0.00000 5.92640 5.67630 49379.21811 0.00000 0.02100 4.55964 0.00000 5.92415 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 24.52602 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.41079 0.03532 0.03532 0.74368 0.00000 386.88658 -0.00000 0.00000 23.54135 1.00000 0.78134 0.88702 0.82138 1.04959 1412.75699 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.32566 0.00000 5.32565 0.00000 116684.07919 0.00000 0.02100 0.06162 0.00000 5.31591 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.85393 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.16160 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91830 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75879 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.10999 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.52638 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.65159 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.18100 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.16586 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.66733 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.06477 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 5.06056 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 5.93081 0.02762 0.02762 0.72176 0.00000 2872.35529 -0.00000 0.00000 176.58290 0.87110 0.94599 0.98480 0.96337 1.04959 6120.61504 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 5.92750 0.00000 5.92740 4.92256 151336.55892 0.00000 0.02100 99.95060 0.00000 5.92581 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 207.33414 1.00000 0.00000 105.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.10015 0.02234 0.02234 0.72384 0.00000 689.65067 0.00000 0.00000 32.68234 1.00000 0.94361 0.98383 0.96153 1.04959 801.99006 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.10268 0.00000 6.08673 2.24796 59811.89300 0.00000 0.02100 41.92021 0.00000 6.07833 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 46.57219 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.21723 0.06836 0.06836 0.69837 0.00000 5758.00290 0.00000 0.00000 208.64278 0.69005 0.80852 0.90660 0.84632 1.04959 12929.46016 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.08884 0.00000 6.07977 1.86949 333380.67360 0.00000 0.02100 301.97782 0.00000 6.08622 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 27.54229 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 5.98502 0.02573 0.02573 0.71615 0.00000 701.24809 0.00000 0.00000 23.32596 1.00000 0.99845 0.99991 0.99935 1.04959 932.06001 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 5.87763 0.00000 5.85807 4.61939 34979.68422 0.00000 0.02100 94.56317 0.00000 5.86324 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 45.95912 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 49279.01842 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 5.88461 0.02772 0.02772 0.71086 0.00000 7702.43645 0.00000 0.00000 259.97161 0.75252 0.95980 0.99005 0.97379 1.04959 8610.55244 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 5.85558 0.00000 5.85569 5.10358 61974.33047 0.00000 0.02100 13.26531 0.00000 5.85492 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 52.27547 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 5.96109 0.02733 0.02733 0.83857 0.00000 3406.20479 0.00000 0.00000 152.00072 0.74355 0.94622 0.98489 0.96355 1.04959 9037.23224 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 5.88837 0.00000 5.88846 4.52113 68037.52552 0.00000 0.02100 4.44457 0.00000 5.88786 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 15.26941 1.00000 0.00000 0.36321 698.28294 289.12597 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 5.96548 0.02287 0.02287 0.82149 0.00000 1500.47826 0.00000 0.00000 82.92919 0.91161 0.96192 0.99079 0.97535 1.04959 5043.26432 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.08651 0.00000 6.08642 5.67630 49379.21811 0.00000 0.02100 4.65995 0.00000 6.08410 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 25.06560 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.55689 0.03532 0.03532 0.74368 0.00000 395.39808 0.00000 0.00000 24.05926 1.00000 0.78134 0.88702 0.82138 1.04959 1482.82125 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.46945 0.00000 5.46945 0.00000 116684.07919 0.00000 0.02100 0.06298 0.00000 5.45944 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.87271 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.14702 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42503 32.18884 0.91829 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75878 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.12500 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.51137 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.63701 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.16860 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.15085 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.65231 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.04932 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 5.19716 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.09094 0.02762 0.02762 0.72176 0.00000 2935.54707 0.00000 0.00000 180.46772 0.87110 0.94599 0.98480 0.96337 1.04959 6424.16079 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.08754 0.00000 6.08744 4.92256 151336.55892 0.00000 0.02100 102.14951 0.00000 6.08581 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 211.89549 1.00000 0.00000 106.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.26486 0.02234 0.02234 0.72384 0.00000 704.82298 0.00000 0.00000 33.40135 1.00000 0.94361 0.98383 0.96153 1.04959 841.76396 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.26745 0.00000 6.25107 2.24796 59811.89300 0.00000 0.02100 42.84245 0.00000 6.24244 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 47.59677 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.38510 0.06836 0.06836 0.69837 0.00000 5884.67890 0.00000 0.00000 213.23292 0.69005 0.80852 0.90660 0.84632 1.04959 13570.68373 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.25323 0.00000 6.24392 1.86949 333380.67360 0.00000 0.02100 308.62133 0.00000 6.25055 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 28.14821 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 6.14662 0.02573 0.02573 0.71615 0.00000 716.67554 0.00000 0.00000 23.83913 1.00000 0.99845 0.99991 0.99935 1.04959 978.28459 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.03633 0.00000 6.01623 4.61939 34979.68422 0.00000 0.02100 96.64356 0.00000 6.02155 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 46.97022 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 51722.96179 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.04350 0.02772 0.02772 0.71086 0.00000 7871.88996 0.00000 0.00000 265.69098 0.75252 0.95980 0.99005 0.97379 1.04959 9037.58413 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.01368 0.00000 6.01380 5.10358 61974.33047 0.00000 0.02100 13.55715 0.00000 6.01300 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 53.42553 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.12204 0.02733 0.02733 0.83857 0.00000 3481.14125 -0.00000 0.00000 155.34474 0.74355 0.94622 0.98489 0.96355 1.04959 9485.42469 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.04736 0.00000 6.04745 4.52113 68037.52552 0.00000 0.02100 4.54235 0.00000 6.04683 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 15.60534 1.00000 0.00000 0.37121 713.64515 295.48674 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.12655 0.02287 0.02287 0.82149 0.00000 1533.48877 -0.00000 0.00000 84.75363 0.91161 0.96192 0.99079 0.97535 1.04959 5293.37994 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.25084 0.00000 6.25075 5.67630 49379.21811 0.00000 0.02100 4.76247 0.00000 6.24837 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 25.61704 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.70692 0.03532 0.03532 0.74368 0.00000 404.09683 0.00000 0.00000 24.58857 1.00000 0.78134 0.88702 0.82138 1.04959 1556.36028 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.61713 0.00000 5.61712 0.00000 116684.07919 0.00000 0.02100 0.06436 0.00000 5.60684 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.89191 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.13244 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91829 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75878 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.14002 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.49635 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.62243 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.15619 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.13583 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.63730 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.03387 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 5.33745 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.25540 0.02762 0.02762 0.72176 0.00000 3000.12907 0.00000 0.00000 184.43801 0.87110 0.94599 0.98480 0.96337 1.04959 6742.76058 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.25190 0.00000 6.25180 4.92256 151336.55892 0.00000 0.02100 104.39680 0.00000 6.25012 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 216.55719 1.00000 0.00000 107.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.43401 0.02234 0.02234 0.72384 0.00000 720.32908 0.00000 0.00000 34.13618 1.00000 0.94361 0.98383 0.96153 1.04959 883.51039 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.43667 0.00000 6.41985 2.24796 59811.89300 0.00000 0.02100 43.78498 0.00000 6.41099 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 48.64390 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.55750 0.06836 0.06836 0.69837 0.00000 6014.14177 0.00000 0.00000 217.92404 0.69005 0.80852 0.90660 0.84632 1.04959 14243.70815 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.42207 0.00000 6.41251 1.86949 333380.67360 0.00000 0.02100 315.41100 0.00000 6.41931 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 28.76748 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 6.31258 0.02573 0.02573 0.71615 0.00000 732.44240 0.00000 0.00000 24.36359 1.00000 0.99845 0.99991 0.99935 1.04959 1026.80163 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.19931 0.00000 6.17867 4.61939 34979.68422 0.00000 0.02100 98.76971 0.00000 6.18413 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 48.00356 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 54288.11008 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.20667 0.02772 0.02772 0.71086 0.00000 8045.07145 -0.00000 0.00000 271.53618 0.75252 0.95980 0.99005 0.97379 1.04959 9485.79403 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.17605 0.00000 6.17617 5.10358 61974.33047 0.00000 0.02100 13.85541 0.00000 6.17535 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 54.60089 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.28734 0.02733 0.02733 0.83857 0.00000 3557.72632 0.00000 0.00000 158.76232 0.74355 0.94622 0.98489 0.96355 1.04959 9955.84479 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.21064 0.00000 6.21073 4.52113 68037.52552 0.00000 0.02100 4.64228 0.00000 6.21010 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 15.94866 1.00000 0.00000 0.37937 729.34534 301.98744 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.29197 0.02287 0.02287 0.82149 0.00000 1567.22550 0.00000 0.00000 86.61821 0.91161 0.96192 0.99079 0.97535 1.04959 5555.89980 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.41962 0.00000 6.41952 5.67630 49379.21811 0.00000 0.02100 4.86725 0.00000 6.41708 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 26.18061 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 5.86101 0.03532 0.03532 0.74368 0.00000 412.98696 0.00000 0.00000 25.12951 1.00000 0.78134 0.88702 0.82138 1.04959 1633.54640 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.76879 0.00000 5.76878 0.00000 116684.07919 0.00000 0.02100 0.06578 0.00000 5.75823 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.91153 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.11786 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91828 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75877 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 0.15503 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.48134 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.60785 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.14379 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.12082 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.62228 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -1.01842 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 5.48152 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.42430 0.02762 0.02762 0.72176 0.00000 3066.13188 0.00000 0.00000 188.49564 0.87110 0.94599 0.98480 0.96337 1.04959 7077.16101 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.42071 0.00000 6.42060 4.92256 151336.55892 0.00000 0.02100 106.69352 0.00000 6.41888 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 221.32144 1.00000 0.00000 108.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.60772 0.02234 0.02234 0.72384 0.00000 736.17631 0.00000 0.00000 34.88717 1.00000 0.94361 0.98383 0.96153 1.04959 927.32720 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.61046 0.00000 6.59318 2.24796 59811.89300 0.00000 0.02100 44.74825 0.00000 6.58409 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 49.71407 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.73455 0.06836 0.06836 0.69837 0.00000 6146.45282 0.00000 0.00000 222.71837 0.69005 0.80852 0.90660 0.84632 1.04959 14950.11053 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.59547 0.00000 6.58564 1.86949 333380.67360 0.00000 0.02100 322.35003 0.00000 6.59263 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 29.40036 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 6.48301 0.02573 0.02573 0.71615 0.00000 748.55612 0.00000 0.00000 24.89959 1.00000 0.99845 0.99991 0.99935 1.04959 1077.72482 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.36669 0.00000 6.34550 4.61939 34979.68422 0.00000 0.02100 100.94265 0.00000 6.35110 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 49.05964 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 56980.47432 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.37425 0.02772 0.02772 0.71086 0.00000 8222.06293 0.00000 0.00000 277.50997 0.75252 0.95980 0.99005 0.97379 1.04959 9956.23245 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.34280 0.00000 6.34292 5.10358 61974.33047 0.00000 0.02100 14.16023 0.00000 6.34208 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 55.80211 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.45709 0.02733 0.02733 0.83857 0.00000 3635.99626 -0.00000 0.00000 162.25509 0.74355 0.94622 0.98489 0.96355 1.04959 10449.59490 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.37832 0.00000 6.37842 4.52113 68037.52552 0.00000 0.02100 4.74441 0.00000 6.37777 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 16.29953 1.00000 0.00000 0.38772 745.39093 308.63116 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.46185 0.02287 0.02287 0.82149 0.00000 1601.70444 0.00000 0.00000 88.52381 0.91161 0.96192 0.99079 0.97535 1.04959 5831.43906 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.59295 0.00000 6.59285 5.67630 49379.21811 0.00000 0.02100 4.97433 0.00000 6.59034 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 26.75659 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.01926 0.03532 0.03532 0.74368 0.00000 422.07267 0.00000 0.00000 25.68236 1.00000 0.78134 0.88702 0.82138 1.04959 1714.56050 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 5.92455 0.00000 5.92454 0.00000 116684.07919 0.00000 0.02100 0.06723 0.00000 5.91370 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.93159 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.10328 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91828 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75877 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.17005 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.46632 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.59327 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -2.13138 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.10580 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.60727 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -1.00297 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 5.62949 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.59775 0.02762 0.02762 0.72176 0.00000 3133.58675 0.00000 0.00000 192.64255 0.87110 0.94599 0.98480 0.96337 1.04959 7428.14570 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.59406 0.00000 6.59395 4.92256 151336.55892 0.00000 0.02100 109.04078 0.00000 6.59219 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 226.19051 1.00000 0.00000 109.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.78613 0.02234 0.02234 0.72384 0.00000 752.37218 0.00000 0.00000 35.65469 1.00000 0.94361 0.98383 0.96153 1.04959 973.31706 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.78895 0.00000 6.77120 2.24796 59811.89300 0.00000 0.02100 45.73272 0.00000 6.76186 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 50.80778 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 6.91638 0.06836 0.06836 0.69837 0.00000 6281.67471 0.00000 0.00000 227.61817 0.69005 0.80852 0.90660 0.84632 1.04959 15691.54624 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.77354 0.00000 6.76346 1.86949 333380.67360 0.00000 0.02100 329.44173 0.00000 6.77063 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 30.04717 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 6.65806 0.02573 0.02573 0.71615 0.00000 765.02435 0.00000 0.00000 25.44738 1.00000 0.99845 0.99991 0.99935 1.04959 1131.17350 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.53859 0.00000 6.51683 4.61939 34979.68422 0.00000 0.02100 103.16338 0.00000 6.52258 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 50.13895 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 59806.36366 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.54636 0.02772 0.02772 0.71086 0.00000 8402.94822 -0.00000 0.00000 283.61519 0.75252 0.95980 0.99005 0.97379 1.04959 10450.00179 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.51406 0.00000 6.51418 5.10358 61974.33047 0.00000 0.02100 14.47175 0.00000 6.51332 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 57.02975 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.63144 0.02733 0.02733 0.83857 0.00000 3715.98814 0.00000 0.00000 165.82470 0.74355 0.94622 0.98489 0.96355 1.04959 10967.83206 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.55054 0.00000 6.55064 4.52113 68037.52552 0.00000 0.02100 4.84879 0.00000 6.54997 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 16.65812 1.00000 0.00000 0.39625 761.78952 315.42104 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.63632 0.02287 0.02287 0.82149 0.00000 1636.94192 0.00000 0.00000 90.47133 0.91161 0.96192 0.99079 0.97535 1.04959 6120.64342 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.77096 0.00000 6.77086 5.67630 49379.21811 0.00000 0.02100 5.08376 0.00000 6.76828 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 27.34523 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.18178 0.03532 0.03532 0.74368 0.00000 431.35826 -0.00000 0.00000 26.24737 1.00000 0.78134 0.88702 0.82138 1.04959 1799.59240 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.08451 0.00000 6.08450 0.00000 116684.07919 0.00000 0.02100 0.06870 0.00000 6.07337 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.95208 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.08870 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91828 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75877 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.18506 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.45130 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.57869 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.11898 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.09078 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.59225 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.98751 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 5.78144 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.77589 0.02762 0.02762 0.72176 0.00000 3202.52562 0.00000 0.00000 196.88068 0.87110 0.94599 0.98480 0.96337 1.04959 7796.53712 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.77210 0.00000 6.77199 4.92256 151336.55892 0.00000 0.02100 111.43968 0.00000 6.77018 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 231.16670 1.00000 0.00000 110.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 6.96936 0.02234 0.02234 0.72384 0.00000 768.92436 0.00000 0.00000 36.43909 1.00000 0.94361 0.98383 0.96153 1.04959 1021.58774 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 6.97225 0.00000 6.95402 2.24796 59811.89300 0.00000 0.02100 46.73883 0.00000 6.94443 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 51.92555 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 7.10312 0.06836 0.06836 0.69837 0.00000 6419.87148 0.00000 0.00000 232.62577 0.69005 0.80852 0.90660 0.84632 1.04959 16469.75270 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 6.95643 0.00000 6.94607 1.86949 333380.67360 0.00000 0.02100 336.68945 0.00000 6.95344 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 30.70820 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 6.83782 0.02573 0.02573 0.71615 0.00000 781.85488 0.00000 0.00000 26.00722 1.00000 0.99845 0.99991 0.99935 1.04959 1187.27291 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.71513 0.00000 6.69278 4.61939 34979.68422 0.00000 0.02100 105.43298 0.00000 6.69869 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 51.24201 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 62772.40014 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.72311 0.02772 0.02772 0.71086 0.00000 8587.81299 0.00000 0.00000 289.85472 0.75252 0.95980 0.99005 0.97379 1.04959 10968.25912 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.68993 0.00000 6.69007 5.10358 61974.33047 0.00000 0.02100 14.79013 0.00000 6.68918 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 58.28440 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.81049 0.02733 0.02733 0.83857 0.00000 3797.73983 -0.00000 0.00000 169.47284 0.74355 0.94622 0.98489 0.96355 1.04959 11511.77066 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.72740 0.00000 6.72751 4.52113 68037.52552 0.00000 0.02100 4.95546 0.00000 6.72682 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 17.02460 1.00000 0.00000 0.40497 778.54888 322.36030 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.81550 0.02287 0.02287 0.82149 0.00000 1672.95463 0.00000 0.00000 92.46170 0.91161 0.96192 0.99079 0.97535 1.04959 6424.19058 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 6.95377 0.00000 6.95367 5.67630 49379.21811 0.00000 0.02100 5.19561 0.00000 6.95102 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 27.94683 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.34868 0.03532 0.03532 0.74368 0.00000 440.84814 -0.00000 0.00000 26.82482 1.00000 0.78134 0.88702 0.82138 1.04959 1888.84137 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.24879 0.00000 6.24878 0.00000 116684.07919 0.00000 0.02100 0.07022 0.00000 6.23735 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.97303 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.07412 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91827 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75877 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.20008 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.43629 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.56411 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.10658 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.07577 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.57724 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.97206 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 5.93750 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 6.95884 0.02762 0.02762 0.72176 0.00000 3272.98115 0.00000 0.00000 201.21205 0.87110 0.94599 0.98480 0.96337 1.04959 8183.19854 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 6.95495 0.00000 6.95483 4.92256 151336.55892 0.00000 0.02100 113.89135 0.00000 6.95297 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 236.25236 1.00000 0.00000 111.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 7.15753 0.02234 0.02234 0.72384 0.00000 785.84069 0.00000 0.00000 37.24075 1.00000 0.94361 0.98383 0.96153 1.04959 1072.25236 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 7.16050 0.00000 7.14178 2.24796 59811.89300 0.00000 0.02100 47.76709 0.00000 7.13193 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 53.06791 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 7.29491 0.06836 0.06836 0.69837 0.00000 6561.10858 0.00000 0.00000 237.74353 0.69005 0.80852 0.90660 0.84632 1.04959 17286.55352 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 7.14425 0.00000 7.13361 1.86949 333380.67360 0.00000 0.02100 344.09661 0.00000 7.14118 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 31.38378 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 7.02244 0.02573 0.02573 0.71615 0.00000 799.05567 0.00000 0.00000 26.57938 1.00000 0.99845 0.99991 0.99935 1.04959 1246.15452 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 6.89644 0.00000 6.87348 4.61939 34979.68422 0.00000 0.02100 107.75250 0.00000 6.87956 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 52.36933 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 65885.53421 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 6.90463 0.02772 0.02772 0.71086 0.00000 8776.74477 -0.00000 0.00000 296.23152 0.75252 0.95980 0.99005 0.97379 1.04959 11512.21891 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 6.87056 0.00000 6.87070 5.10358 61974.33047 0.00000 0.02100 15.11551 0.00000 6.86979 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 59.56666 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 6.99437 0.02733 0.02733 0.83857 0.00000 3881.29007 0.00000 0.00000 173.20124 0.74355 0.94622 0.98489 0.96355 1.04959 12082.68535 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 6.90904 0.00000 6.90915 4.52113 68037.52552 0.00000 0.02100 5.06449 0.00000 6.90844 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 17.39914 1.00000 0.00000 0.41387 795.67695 329.45223 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 6.99952 0.02287 0.02287 0.82149 0.00000 1709.75961 0.00000 0.00000 94.49586 0.91161 0.96192 0.99079 0.97535 1.04959 6742.79185 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 7.14152 0.00000 7.14142 5.67630 49379.21811 0.00000 0.02100 5.30991 0.00000 7.13870 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 28.56166 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.52010 0.03532 0.03532 0.74368 0.00000 450.54679 0.00000 0.00000 27.41496 1.00000 0.78134 0.88702 0.82138 1.04959 1982.51656 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.41751 0.00000 6.41750 0.00000 116684.07919 0.00000 0.02100 0.07176 0.00000 6.40576 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 0.99444 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.05954 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91827 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75876 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 0.21509 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.42127 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.54953 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.09417 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.06075 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.56222 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.95661 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 6.09778 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 7.14673 0.02762 0.02762 0.72176 0.00000 3344.98669 0.00000 0.00000 205.63872 0.87110 0.94599 0.98480 0.96337 1.04959 8589.03604 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 7.14273 0.00000 7.14261 4.92256 151336.55892 0.00000 0.02100 116.39696 0.00000 7.14070 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 241.44991 1.00000 0.00000 112.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 7.35078 0.02234 0.02234 0.72384 0.00000 803.12917 0.00000 0.00000 38.06005 1.00000 0.94361 0.98383 0.96153 1.04959 1125.42964 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 7.35383 0.00000 7.33461 2.24796 59811.89300 0.00000 0.02100 48.81796 0.00000 7.32449 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 54.23540 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 7.49187 0.06836 0.06836 0.69837 0.00000 6705.45289 0.00000 0.00000 242.97389 0.69005 0.80852 0.90660 0.84632 1.04959 18143.86276 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 7.33715 0.00000 7.32622 1.86949 333380.67360 0.00000 0.02100 351.66673 0.00000 7.33399 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 32.07423 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 7.21205 0.02573 0.02573 0.71615 0.00000 816.63489 0.00000 0.00000 27.16413 1.00000 0.99845 0.99991 0.99935 1.04959 1307.95630 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 7.08265 0.00000 7.05907 4.61939 34979.68422 0.00000 0.02100 110.12305 0.00000 7.06531 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 53.52146 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 69153.06104 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 7.09106 0.02772 0.02772 0.71086 0.00000 8969.83306 0.00000 0.00000 302.74861 0.75252 0.95980 0.99005 0.97379 1.04959 12083.15583 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 7.05607 0.00000 7.05621 5.10358 61974.33047 0.00000 0.02100 15.44805 0.00000 7.05527 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 60.87713 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 7.18322 0.02733 0.02733 0.83857 0.00000 3966.67840 0.00000 0.00000 177.01167 0.74355 0.94622 0.98489 0.96355 1.04959 12681.91398 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 7.09559 0.00000 7.09570 4.52113 68037.52552 0.00000 0.02100 5.17590 0.00000 7.09497 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 17.78192 1.00000 0.00000 0.42298 813.18183 336.70017 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 7.18851 0.02287 0.02287 0.82149 0.00000 1747.37430 0.00000 0.00000 96.57477 0.91161 0.96192 0.99079 0.97535 1.04959 7077.19383 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 7.33434 0.00000 7.33424 5.67630 49379.21811 0.00000 0.02100 5.42673 0.00000 7.33145 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 29.19001 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.69614 0.03532 0.03532 0.74368 0.00000 460.45882 0.00000 0.00000 28.01809 1.00000 0.78134 0.88702 0.82138 1.04959 2080.83748 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.59078 0.00000 6.59077 0.00000 116684.07919 0.00000 0.02100 0.07334 0.00000 6.57871 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.01631 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.04496 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91827 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75876 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.23011 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.40626 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.53495 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.08177 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.04574 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.54721 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.94116 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 6.26238 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 7.33969 0.02762 0.02762 0.72176 0.00000 3418.57636 0.00000 0.00000 210.16276 0.87110 0.94599 0.98480 0.96337 1.04959 9015.00065 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 7.33559 0.00000 7.33546 4.92256 151336.55892 0.00000 0.02100 118.95769 0.00000 7.33350 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 246.76181 1.00000 0.00000 113.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 7.54926 0.02234 0.02234 0.72384 0.00000 820.79801 0.00000 0.00000 38.89737 1.00000 0.94361 0.98383 0.96153 1.04959 1181.24419 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 7.55239 0.00000 7.53264 2.24796 59811.89300 0.00000 0.02100 49.89196 0.00000 7.52225 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 55.42858 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 7.69415 0.06836 0.06836 0.69837 0.00000 6852.97278 0.00000 0.00000 248.31931 0.69005 0.80852 0.90660 0.84632 1.04959 19043.68940 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 7.53525 0.00000 7.52403 1.86949 333380.67360 0.00000 0.02100 359.40340 0.00000 7.53201 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 32.77986 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 7.40678 0.02573 0.02573 0.71615 0.00000 834.60085 0.00000 0.00000 27.76174 1.00000 0.99845 0.99991 0.99935 1.04959 1372.82308 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 7.27388 0.00000 7.24966 4.61939 34979.68422 0.00000 0.02100 112.54576 0.00000 7.25607 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 54.69893 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 72582.63758 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 7.28252 0.02772 0.02772 0.71086 0.00000 9167.16928 -0.00000 0.00000 309.40907 0.75252 0.95980 0.99005 0.97379 1.04959 12682.40779 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 7.24658 0.00000 7.24672 5.10358 61974.33047 0.00000 0.02100 15.78791 0.00000 7.24577 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 62.21642 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 7.37716 0.02733 0.02733 0.83857 0.00000 4053.94528 0.00000 0.00000 180.90592 0.74355 0.94622 0.98489 0.96355 1.04959 13310.86076 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 7.28717 0.00000 7.28728 4.52113 68037.52552 0.00000 0.02100 5.28977 0.00000 7.28653 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 18.17312 1.00000 0.00000 0.43229 831.07182 344.10757 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 7.38260 0.02287 0.02287 0.82149 0.00000 1785.81652 -0.00000 0.00000 98.69941 0.91161 0.96192 0.99079 0.97535 1.04959 7428.18014 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 7.53237 0.00000 7.53226 5.67630 49379.21811 0.00000 0.02100 5.54611 0.00000 7.52940 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 29.83219 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 6.87694 0.03532 0.03532 0.74368 0.00000 470.58891 0.00000 0.00000 28.63449 1.00000 0.78134 0.88702 0.82138 1.04959 2184.03452 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.76873 0.00000 6.76872 0.00000 116684.07919 0.00000 0.02100 0.07495 0.00000 6.75634 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.03867 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -1.03038 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91827 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75876 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 0.24513 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.39124 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.52037 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.06936 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.03072 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.53219 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.92571 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 6.43142 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 7.53786 0.02762 0.02762 0.72176 0.00000 3493.78500 0.00000 0.00000 214.78634 0.87110 0.94599 0.98480 0.96337 1.04959 9462.09054 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 7.53365 0.00000 7.53352 4.92256 151336.55892 0.00000 0.02100 121.57476 0.00000 7.53150 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 252.19057 1.00000 0.00000 114.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 7.75309 0.02234 0.02234 0.72384 0.00000 838.85555 0.00000 0.00000 39.75311 1.00000 0.94361 0.98383 0.96153 1.04959 1239.82681 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 7.75630 0.00000 7.73602 2.24796 59811.89300 0.00000 0.02100 50.98958 0.00000 7.72535 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 56.64801 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 7.90189 0.06836 0.06836 0.69837 0.00000 7003.73810 0.00000 0.00000 253.78233 0.69005 0.80852 0.90660 0.84632 1.04959 19988.14203 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 7.73870 0.00000 7.72718 1.86949 333380.67360 0.00000 0.02100 367.31027 0.00000 7.73538 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 33.50102 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 7.60676 0.02573 0.02573 0.71615 0.00000 852.96206 0.00000 0.00000 28.37250 1.00000 0.99845 0.99991 0.99935 1.04959 1440.90686 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 7.47027 0.00000 7.44540 4.61939 34979.68422 0.00000 0.02100 115.02177 0.00000 7.45198 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 55.90231 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 76182.30051 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 7.47915 0.02772 0.02772 0.71086 0.00000 9368.84690 0.00000 0.00000 316.21607 0.75252 0.95980 0.99005 0.97379 1.04959 13311.37906 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 7.44224 0.00000 7.44239 5.10358 61974.33047 0.00000 0.02100 16.13525 0.00000 7.44140 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 63.58518 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 7.57635 0.02733 0.02733 0.83857 0.00000 4143.13203 0.00000 0.00000 184.88585 0.74355 0.94622 0.98489 0.96355 1.04959 13970.99952 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 7.48392 0.00000 7.48404 4.52113 68037.52552 0.00000 0.02100 5.40615 0.00000 7.48327 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 18.57293 1.00000 0.00000 0.44180 849.35539 351.67793 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 7.58193 0.02287 0.02287 0.82149 0.00000 1825.10446 0.00000 0.00000 100.87080 0.91161 0.96192 0.99079 0.97535 1.04959 7796.57327 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 7.73575 0.00000 7.73563 5.67630 49379.21811 0.00000 0.02100 5.66813 0.00000 7.73269 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 30.48850 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 7.06261 0.03532 0.03532 0.74368 0.00000 480.94186 0.00000 0.00000 29.26445 1.00000 0.78134 0.88702 0.82138 1.04959 2292.34952 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 6.95149 0.00000 6.95148 0.00000 116684.07919 0.00000 0.02100 0.07660 0.00000 6.93876 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.06152 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.01580 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91827 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75876 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.26014 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.37623 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.50579 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.05696 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -1.01571 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.51718 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.91026 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 6.60503 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 7.74138 0.02762 0.02762 0.72176 0.00000 3570.64823 0.00000 0.00000 219.51164 0.87110 0.94599 0.98480 0.96337 1.04959 9931.35341 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 7.73706 0.00000 7.73693 4.92256 151336.55892 0.00000 0.02100 124.24940 0.00000 7.73485 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 257.73875 1.00000 0.00000 115.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 7.96242 0.02234 0.02234 0.72384 0.00000 857.31037 0.00000 0.00000 40.62768 1.00000 0.94361 0.98383 0.96153 1.04959 1301.31477 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 7.96572 0.00000 7.94490 2.24796 59811.89300 0.00000 0.02100 52.11135 0.00000 7.93393 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 57.89427 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 8.11525 0.06836 0.06836 0.69837 0.00000 7157.82026 0.00000 0.00000 259.36554 0.69005 0.80852 0.90660 0.84632 1.04959 20979.43383 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 7.94765 0.00000 7.93581 1.86949 333380.67360 0.00000 0.02100 375.39109 0.00000 7.94423 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 34.23804 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 7.81214 0.02573 0.02573 0.71615 0.00000 871.72721 0.00000 0.00000 28.99669 1.00000 0.99845 0.99991 0.99935 1.04959 1512.36718 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 7.67197 0.00000 7.64643 4.61939 34979.68422 0.00000 0.02100 117.55224 0.00000 7.65319 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 57.13216 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 79960.48512 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 7.68108 0.02772 0.02772 0.71086 0.00000 9574.96143 0.00000 0.00000 323.17282 0.75252 0.95980 0.99005 0.97379 1.04959 13971.54352 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 7.64318 0.00000 7.64333 5.10358 61974.33047 0.00000 0.02100 16.49022 0.00000 7.64232 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 64.98406 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 7.78091 0.02733 0.02733 0.83857 0.00000 4234.28089 -0.00000 0.00000 188.95334 0.74355 0.94622 0.98489 0.96355 1.04959 14663.87719 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 7.68599 0.00000 7.68611 4.52113 68037.52552 0.00000 0.02100 5.52508 0.00000 7.68532 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 18.98153 1.00000 0.00000 0.45151 868.04120 359.41484 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 7.78664 0.02287 0.02287 0.82149 0.00000 1865.25674 -0.00000 0.00000 103.08995 0.91161 0.96192 0.99079 0.97535 1.04959 8183.23648 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 7.94461 0.00000 7.94449 5.67630 49379.21811 0.00000 0.02100 5.79283 0.00000 7.94147 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 31.15925 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 7.25331 0.03532 0.03532 0.74368 0.00000 491.52257 0.00000 0.00000 29.90826 1.00000 0.78134 0.88702 0.82138 1.04959 2406.03629 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 7.13918 0.00000 7.13917 0.00000 116684.07919 0.00000 0.02100 0.07829 0.00000 7.12611 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.08488 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -1.00122 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75876 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.27516 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.36121 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.49120 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.04456 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -1.00069 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.50216 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.89481 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 6.78332 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 7.95040 0.02762 0.02762 0.72176 0.00000 3649.20245 0.00000 0.00000 224.34089 0.87110 0.94599 0.98480 0.96337 1.04959 10423.88890 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 7.94596 0.00000 7.94582 4.92256 151336.55892 0.00000 0.02100 126.98288 0.00000 7.94370 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 263.40900 1.00000 0.00000 116.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 8.17740 0.02234 0.02234 0.72384 0.00000 876.17118 0.00000 0.00000 41.52149 1.00000 0.94361 0.98383 0.96153 1.04959 1365.85217 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 8.18080 0.00000 8.15941 2.24796 59811.89300 0.00000 0.02100 53.25780 0.00000 8.14815 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 59.16794 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 8.33436 0.06836 0.06836 0.69837 0.00000 7315.29223 0.00000 0.00000 265.07158 0.69005 0.80852 0.90660 0.84632 1.04959 22019.88776 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 8.16224 0.00000 8.15008 1.86949 333380.67360 0.00000 0.02100 383.64969 0.00000 8.15873 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 34.99128 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 8.02307 0.02573 0.02573 0.71615 0.00000 890.90520 0.00000 0.00000 29.63462 1.00000 0.99845 0.99991 0.99935 1.04959 1587.37151 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 7.87911 0.00000 7.85288 4.61939 34979.68422 0.00000 0.02100 120.13839 0.00000 7.85982 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 58.38906 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 83926.04498 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 7.88847 0.02772 0.02772 0.71086 0.00000 9785.61047 0.00000 0.00000 330.28262 0.75252 0.95980 0.99005 0.97379 1.04959 14664.44817 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 7.84955 0.00000 7.84970 5.10358 61974.33047 0.00000 0.02100 16.85301 0.00000 7.84866 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 66.41371 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 7.99099 0.02733 0.02733 0.83857 0.00000 4327.43502 0.00000 0.00000 193.11031 0.74355 0.94622 0.98489 0.96355 1.04959 15391.11744 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 7.89351 0.00000 7.89363 4.52113 68037.52552 0.00000 0.02100 5.64664 0.00000 7.89282 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 19.39913 1.00000 0.00000 0.46145 887.13810 367.32197 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 7.99688 0.02287 0.02287 0.82149 0.00000 1906.29236 0.00000 0.00000 105.35793 0.91161 0.96192 0.99079 0.97535 1.04959 8589.07587 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 8.15912 0.00000 8.15900 5.67630 49379.21811 0.00000 0.02100 5.92027 0.00000 8.15589 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 31.84475 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 7.44914 0.03532 0.03532 0.74368 0.00000 502.33606 -0.00000 0.00000 30.56625 1.00000 0.78134 0.88702 0.82138 1.04959 2525.36124 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 7.33194 0.00000 7.33193 0.00000 116684.07919 0.00000 0.02100 0.08001 0.00000 7.31851 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.10874 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.98664 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.29017 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.34620 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.47662 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.03215 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.98568 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.48715 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.87936 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 6.96642 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 8.16506 0.02762 0.02762 0.72176 0.00000 3729.48487 0.00000 0.00000 229.27639 0.87110 0.94599 0.98480 0.96337 1.04959 10940.85119 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 8.16050 0.00000 8.16036 4.92256 151336.55892 0.00000 0.02100 129.77651 0.00000 8.15818 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 269.20400 1.00000 0.00000 117.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 8.39819 0.02234 0.02234 0.72384 0.00000 895.44694 0.00000 0.00000 42.43496 1.00000 0.94361 0.98383 0.96153 1.04959 1433.59023 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 8.40168 0.00000 8.37971 2.24796 59811.89300 0.00000 0.02100 54.42947 0.00000 8.36815 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 60.46963 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 8.55938 0.06836 0.06836 0.69837 0.00000 7476.22857 0.00000 0.00000 270.90315 0.69005 0.80852 0.90660 0.84632 1.04959 23111.94196 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 8.38262 0.00000 8.37013 1.86949 333380.67360 0.00000 0.02100 392.08998 0.00000 8.37901 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 35.76108 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 8.23969 0.02573 0.02573 0.71615 0.00000 910.50511 0.00000 0.00000 30.28658 1.00000 0.99845 0.99991 0.99935 1.04959 1666.09561 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 8.09185 0.00000 8.06491 4.61939 34979.68422 0.00000 0.02100 122.78143 0.00000 8.07204 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 59.67362 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 88088.27281 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 8.10146 0.02772 0.02772 0.71086 0.00000 10000.89379 0.00000 0.00000 337.54883 0.75252 0.95980 0.99005 0.97379 1.04959 15391.71674 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 8.06148 0.00000 8.06164 5.10358 61974.33047 0.00000 0.02100 17.22377 0.00000 8.06058 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 67.87481 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 8.20675 0.02733 0.02733 0.83857 0.00000 4422.63854 -0.00000 0.00000 197.35873 0.74355 0.94622 0.98489 0.96355 1.04959 16154.42443 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 8.10664 0.00000 8.10676 4.52113 68037.52552 0.00000 0.02100 5.77086 0.00000 8.10593 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 19.82591 1.00000 0.00000 0.47160 906.65513 375.40305 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 8.21279 0.02287 0.02287 0.82149 0.00000 1948.23077 0.00000 0.00000 107.67580 0.91161 0.96192 0.99079 0.97535 1.04959 9015.04245 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 8.37941 0.00000 8.37929 5.67630 49379.21811 0.00000 0.02100 6.05052 0.00000 8.37610 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 32.54533 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 7.65027 0.03532 0.03532 0.74368 0.00000 513.38745 0.00000 0.00000 31.23870 1.00000 0.78134 0.88702 0.82138 1.04959 2650.60399 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 7.52990 0.00000 7.52989 0.00000 116684.07919 0.00000 0.02100 0.08177 0.00000 7.51611 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.13314 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.97206 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 0.30519 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.33118 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.46204 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -2.01975 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.97066 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.47213 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.86391 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 7.15447 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 8.38552 0.02762 0.02762 0.72176 0.00000 3811.53349 0.00000 0.00000 234.32047 0.87110 0.94599 0.98480 0.96337 1.04959 11483.45170 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 8.38083 0.00000 8.38069 4.92256 151336.55892 0.00000 0.02100 132.63159 0.00000 8.37845 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 275.12648 1.00000 0.00000 118.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 8.62495 0.02234 0.02234 0.72384 0.00000 915.14676 0.00000 0.00000 43.36853 1.00000 0.94361 0.98383 0.96153 1.04959 1504.68770 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 8.62852 0.00000 8.60597 2.24796 59811.89300 0.00000 0.02100 55.62692 0.00000 8.59409 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 61.79996 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 8.79049 0.06836 0.06836 0.69837 0.00000 7640.70552 0.00000 0.00000 276.86302 0.69005 0.80852 0.90660 0.84632 1.04959 24258.15548 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 8.60895 0.00000 8.59613 1.86949 333380.67360 0.00000 0.02100 400.71595 0.00000 8.60525 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 36.54783 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 8.46216 0.02573 0.02573 0.71615 0.00000 930.53621 0.00000 0.00000 30.95288 1.00000 0.99845 0.99991 0.99935 1.04959 1748.72394 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 8.31033 0.00000 8.28266 4.61939 34979.68422 0.00000 0.02100 125.48262 0.00000 8.28998 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 60.98644 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 92456.92213 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 8.32020 0.02772 0.02772 0.71086 0.00000 10220.91334 0.00000 0.00000 344.97490 0.75252 0.95980 0.99005 0.97379 1.04959 16155.05346 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 8.27914 0.00000 8.27931 5.10358 61974.33047 0.00000 0.02100 17.60269 0.00000 8.27821 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 69.36805 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 8.42833 0.02733 0.02733 0.83857 0.00000 4519.93654 0.00000 0.00000 201.70062 0.74355 0.94622 0.98489 0.96355 1.04959 16955.58687 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 8.32551 0.00000 8.32564 4.52113 68037.52552 0.00000 0.02100 5.89782 0.00000 8.32479 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 20.26208 1.00000 0.00000 0.48198 926.60153 383.66191 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 8.43454 0.02287 0.02287 0.82149 0.00000 1991.09183 0.00000 0.00000 110.04467 0.91161 0.96192 0.99079 0.97535 1.04959 9462.13442 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 8.60566 0.00000 8.60553 5.67630 49379.21811 0.00000 0.02100 6.18363 0.00000 8.60226 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 33.26133 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 7.85683 0.03532 0.03532 0.74368 0.00000 524.68197 0.00000 0.00000 31.92595 1.00000 0.78134 0.88702 0.82138 1.04959 2782.05803 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 7.73321 0.00000 7.73320 0.00000 116684.07919 0.00000 0.02100 0.08357 0.00000 7.71905 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.15807 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.95748 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.32020 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.31617 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.44746 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -2.00734 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.95565 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.45711 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.84846 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 7.34759 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 8.61193 0.02762 0.02762 0.72176 0.00000 3895.38718 0.00000 0.00000 239.47552 0.87110 0.94599 0.98480 0.96337 1.04959 12052.96194 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 8.60712 0.00000 8.60697 4.92256 151336.55892 0.00000 0.02100 135.54948 0.00000 8.60466 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 281.17926 1.00000 0.00000 119.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 8.85782 0.02234 0.02234 0.72384 0.00000 935.27998 0.00000 0.00000 44.32263 1.00000 0.94361 0.98383 0.96153 1.04959 1579.31117 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 8.86149 0.00000 8.83833 2.24796 59811.89300 0.00000 0.02100 56.85071 0.00000 8.82613 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 63.15956 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 9.02783 0.06836 0.06836 0.69837 0.00000 7808.80095 0.00000 0.00000 282.95400 0.69005 0.80852 0.90660 0.84632 1.04959 25461.21432 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 8.84139 0.00000 8.82822 1.86949 333380.67360 0.00000 0.02100 409.53170 0.00000 8.83759 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 37.35188 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 8.69064 0.02573 0.02573 0.71615 0.00000 951.00799 0.00000 0.00000 31.63385 1.00000 0.99845 0.99991 0.99935 1.04959 1835.45015 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 8.53471 0.00000 8.50630 4.61939 34979.68422 0.00000 0.02100 128.24324 0.00000 8.51381 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 62.32814 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 97042.23023 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 8.54485 0.02772 0.02772 0.71086 0.00000 10445.77331 0.00000 0.00000 352.56434 0.75252 0.95980 0.99005 0.97379 1.04959 16956.24709 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 8.50268 0.00000 8.50285 5.10358 61974.33047 0.00000 0.02100 17.98995 0.00000 8.50172 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 70.89415 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 8.65590 0.02733 0.02733 0.83857 0.00000 4619.37509 0.00000 0.00000 206.13803 0.74355 0.94622 0.98489 0.96355 1.04959 17796.48215 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 8.55030 0.00000 8.55044 4.52113 68037.52552 0.00000 0.02100 6.02757 0.00000 8.54956 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 20.70784 1.00000 0.00000 0.49258 946.98675 392.10247 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 8.66227 0.02287 0.02287 0.82149 0.00000 2034.89583 0.00000 0.00000 112.46565 0.91161 0.96192 0.99079 0.97535 1.04959 9931.39946 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 8.83801 0.00000 8.83788 5.67630 49379.21811 0.00000 0.02100 6.31967 0.00000 8.83452 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 33.99308 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 8.06896 0.03532 0.03532 0.74368 0.00000 536.22497 0.00000 0.00000 32.62832 1.00000 0.78134 0.88702 0.82138 1.04959 2920.03140 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 7.94201 0.00000 7.94199 0.00000 116684.07919 0.00000 0.02100 0.08541 0.00000 7.92746 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.18354 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.94290 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.33522 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.30115 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.43288 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.99494 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.94063 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.44210 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.83301 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 7.54593 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 8.84445 0.02762 0.02762 0.72176 0.00000 3981.08566 0.00000 0.00000 244.74398 0.87110 0.94599 0.98480 0.96337 1.04959 12650.71647 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 8.83951 0.00000 8.83936 4.92256 151336.55892 0.00000 0.02100 138.53157 0.00000 8.83699 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 287.36520 1.00000 0.00000 120.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 9.09698 0.02234 0.02234 0.72384 0.00000 955.85613 0.00000 0.00000 45.29773 1.00000 0.94361 0.98383 0.96153 1.04959 1657.63552 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 9.10075 0.00000 9.07696 2.24796 59811.89300 0.00000 0.02100 58.10143 0.00000 9.06444 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 64.54907 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 9.27158 0.06836 0.06836 0.69837 0.00000 7980.59448 0.00000 0.00000 289.17898 0.69005 0.80852 0.90660 0.84632 1.04959 26723.93764 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 9.08011 0.00000 9.06658 1.86949 333380.67360 0.00000 0.02100 418.54139 0.00000 9.07620 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 38.17362 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 8.92529 0.02573 0.02573 0.71615 0.00000 971.93016 0.00000 0.00000 32.32979 1.00000 0.99845 0.99991 0.99935 1.04959 1926.47746 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 8.76515 0.00000 8.73597 4.61939 34979.68422 0.00000 0.02100 131.06459 0.00000 8.74369 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 63.69936 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 101854.94208 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 8.77556 0.02772 0.02772 0.71086 0.00000 10675.58021 -0.00000 0.00000 360.32076 0.75252 0.95980 0.99005 0.97379 1.04959 17797.17512 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 8.73225 0.00000 8.73243 5.10358 61974.33047 0.00000 0.02100 18.38573 0.00000 8.73127 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 72.45382 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 8.88961 0.02733 0.02733 0.83857 0.00000 4721.00129 0.00000 0.00000 210.67307 0.74355 0.94622 0.98489 0.96355 1.04959 18679.08079 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 8.78116 0.00000 8.78130 4.52113 68037.52552 0.00000 0.02100 6.16018 0.00000 8.78040 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 21.16342 1.00000 0.00000 0.50342 967.82045 400.72872 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 8.89615 0.02287 0.02287 0.82149 0.00000 2079.66351 -0.00000 0.00000 114.93989 0.91161 0.96192 0.99079 0.97535 1.04959 10423.93723 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 9.07663 0.00000 9.07650 5.67630 49379.21811 0.00000 0.02100 6.45870 0.00000 9.07305 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 34.74093 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 8.28683 0.03532 0.03532 0.74368 0.00000 548.02191 -0.00000 0.00000 33.34615 1.00000 0.78134 0.88702 0.82138 1.04959 3064.84742 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 8.15644 0.00000 8.15643 0.00000 116684.07919 0.00000 0.02100 0.08729 0.00000 8.14150 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.20958 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.92832 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.35023 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.28614 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.41830 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.98254 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.92561 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.42708 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.81756 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 7.74962 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 9.08325 0.02762 0.02762 0.72176 0.00000 4068.66950 0.00000 0.00000 250.12834 0.87110 0.94599 0.98480 0.96337 1.04959 13278.11604 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 9.07817 0.00000 9.07802 4.92256 151336.55892 0.00000 0.02100 141.57926 0.00000 9.07559 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 293.68724 1.00000 0.00000 121.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 9.34260 0.02234 0.02234 0.72384 0.00000 976.88495 0.00000 0.00000 46.29428 1.00000 0.94361 0.98383 0.96153 1.04959 1739.84429 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 9.34647 0.00000 9.32204 2.24796 59811.89300 0.00000 0.02100 59.37966 0.00000 9.30918 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 65.96915 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 9.52192 0.06836 0.06836 0.69837 0.00000 8156.16747 0.00000 0.00000 295.54092 0.69005 0.80852 0.90660 0.84632 1.04959 28049.28446 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 9.32527 0.00000 9.31138 1.86949 333380.67360 0.00000 0.02100 427.74930 0.00000 9.32126 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 39.01344 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 9.16627 0.02573 0.02573 0.71615 0.00000 993.31261 0.00000 0.00000 33.04104 1.00000 0.99845 0.99991 0.99935 1.04959 2022.01917 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 9.00181 0.00000 8.97184 4.61939 34979.68422 0.00000 0.02100 133.94801 0.00000 8.97977 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 65.10074 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 106906.33553 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 9.01250 0.02772 0.02772 0.71086 0.00000 10910.44285 0.00000 0.00000 368.24781 0.75252 0.95980 0.99005 0.97379 1.04959 18679.80812 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 8.96802 0.00000 8.96820 5.10358 61974.33047 0.00000 0.02100 18.79022 0.00000 8.96701 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 74.04780 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 9.12963 0.02733 0.02733 0.83857 0.00000 4824.86327 0.00000 0.00000 215.30787 0.74355 0.94622 0.98489 0.96355 1.04959 19605.45103 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 9.01825 0.00000 9.01839 4.52113 68037.52552 0.00000 0.02100 6.29570 0.00000 9.01747 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 21.62901 1.00000 0.00000 0.51449 989.11249 409.54474 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 9.13635 0.02287 0.02287 0.82149 0.00000 2125.41609 0.00000 0.00000 117.46857 0.91161 0.96192 0.99079 0.97535 1.04959 10940.90192 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 9.32170 0.00000 9.32157 5.67630 49379.21811 0.00000 0.02100 6.60079 0.00000 9.31802 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 35.50523 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 8.51057 0.03532 0.03532 0.74368 0.00000 560.07839 0.00000 0.00000 34.07976 1.00000 0.78134 0.88702 0.82138 1.04959 3216.84545 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 8.37666 0.00000 8.37665 0.00000 116684.07919 0.00000 0.02100 0.08921 0.00000 8.36132 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.23619 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.91374 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.36525 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.27112 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.40372 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.97013 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.91060 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.41207 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.80211 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 7.95881 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 9.32850 0.02762 0.02762 0.72176 0.00000 4158.18018 0.00000 0.00000 255.63116 0.87110 0.94599 0.98480 0.96337 1.04959 13936.63085 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 9.32329 0.00000 9.32313 4.92256 151336.55892 0.00000 0.02100 144.69400 0.00000 9.32063 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 300.14835 1.00000 0.00000 122.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 9.59485 0.02234 0.02234 0.72384 0.00000 998.37641 0.00000 0.00000 47.31275 1.00000 0.94361 0.98383 0.96153 1.04959 1826.13012 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 9.59883 0.00000 9.57374 2.24796 59811.89300 0.00000 0.02100 60.68601 0.00000 9.56052 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 67.42047 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 9.77901 0.06836 0.06836 0.69837 0.00000 8335.60306 0.00000 0.00000 302.04281 0.69005 0.80852 0.90660 0.84632 1.04959 29440.36052 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 9.57705 0.00000 9.56279 1.86949 333380.67360 0.00000 0.02100 437.15978 0.00000 9.57293 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 39.87173 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 9.41376 0.02573 0.02573 0.71615 0.00000 1015.16548 0.00000 0.00000 33.76795 1.00000 0.99845 0.99991 0.99935 1.04959 2122.29918 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 9.24485 0.00000 9.21408 4.61939 34979.68422 0.00000 0.02100 136.89486 0.00000 9.22222 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 66.53296 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 112208.24775 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 9.25583 0.02772 0.02772 0.71086 0.00000 11150.47247 0.00000 0.00000 376.34926 0.75252 0.95980 0.99005 0.97379 1.04959 19606.21443 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 9.21016 0.00000 9.21034 5.10358 61974.33047 0.00000 0.02100 19.20360 0.00000 9.20912 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 75.67685 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 9.37613 0.02733 0.02733 0.83857 0.00000 4931.01020 -0.00000 0.00000 220.04464 0.74355 0.94622 0.98489 0.96355 1.04959 20577.76366 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 9.26175 0.00000 9.26189 4.52113 68037.52552 0.00000 0.02100 6.43421 0.00000 9.26094 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 22.10485 1.00000 0.00000 0.52581 1010.87295 418.55472 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 9.38303 0.02287 0.02287 0.82149 0.00000 2172.17522 -0.00000 0.00000 120.05288 0.91161 0.96192 0.99079 0.97535 1.04959 11483.50495 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 9.57339 0.00000 9.57325 5.67630 49379.21811 0.00000 0.02100 6.74601 0.00000 9.56961 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 36.28634 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 8.74035 0.03532 0.03532 0.74368 0.00000 572.40010 0.00000 0.00000 34.82952 1.00000 0.78134 0.88702 0.82138 1.04959 3376.38167 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 8.60283 0.00000 8.60282 0.00000 116684.07919 0.00000 0.02100 0.09117 0.00000 8.58708 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.26339 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.89916 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.38026 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.25610 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.38914 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.95773 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.89558 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.39705 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.78666 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 8.17364 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 9.58037 0.02762 0.02762 0.72176 0.00000 4249.66010 0.00000 0.00000 261.25504 0.87110 0.94599 0.98480 0.96337 1.04959 14627.80405 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 9.57501 0.00000 9.57485 4.92256 151336.55892 0.00000 0.02100 147.87727 0.00000 9.57229 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 306.75161 1.00000 0.00000 123.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 9.85391 0.02234 0.02234 0.72384 0.00000 1020.34068 0.00000 0.00000 48.35363 1.00000 0.94361 0.98383 0.96153 1.04959 1916.69521 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 9.85800 0.00000 9.83223 2.24796 59811.89300 0.00000 0.02100 62.02110 0.00000 9.81866 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 68.90372 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 10.04304 0.06836 0.06836 0.69837 0.00000 8518.98623 0.00000 0.00000 308.68775 0.69005 0.80852 0.90660 0.84632 1.04959 30900.42560 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 9.83563 0.00000 9.82098 1.86949 333380.67360 0.00000 0.02100 446.77729 0.00000 9.83140 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 40.74891 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 9.66793 0.02573 0.02573 0.71615 0.00000 1037.49911 0.00000 0.00000 34.51084 1.00000 0.99845 0.99991 0.99935 1.04959 2227.55247 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 9.49447 0.00000 9.46286 4.61939 34979.68422 0.00000 0.02100 139.90655 0.00000 9.47122 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 67.99668 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 117773.10299 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 9.50574 0.02772 0.02772 0.71086 0.00000 11395.78274 0.00000 0.00000 384.62894 0.75252 0.95980 0.99005 0.97379 1.04959 20578.56492 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 9.45884 0.00000 9.45902 5.10358 61974.33047 0.00000 0.02100 19.62608 0.00000 9.45777 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 77.34174 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 9.62928 0.02733 0.02733 0.83857 0.00000 5039.49237 0.00000 0.00000 224.88562 0.74355 0.94622 0.98489 0.96355 1.04959 21598.29716 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 9.51181 0.00000 9.51196 4.52113 68037.52552 0.00000 0.02100 6.57576 0.00000 9.51098 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 22.59115 1.00000 0.00000 0.53738 1033.11215 427.76292 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 9.63637 0.02287 0.02287 0.82149 0.00000 2219.96305 0.00000 0.00000 122.69404 0.91161 0.96192 0.99079 0.97535 1.04959 12053.01783 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 9.83187 0.00000 9.83173 5.67630 49379.21811 0.00000 0.02100 6.89442 0.00000 9.82799 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 37.08464 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 8.97634 0.03532 0.03532 0.74368 0.00000 584.99290 0.00000 0.00000 35.59577 1.00000 0.78134 0.88702 0.82138 1.04959 3543.82992 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 8.83511 0.00000 8.83510 0.00000 116684.07919 0.00000 0.02100 0.09317 0.00000 8.81893 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.29118 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -0.88458 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01929 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.39528 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.24109 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.37456 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.94532 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.88057 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.38204 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.77121 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 8.39428 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 9.83904 0.02762 0.02762 0.72176 0.00000 4343.15257 0.00000 0.00000 267.00265 0.87110 0.94599 0.98480 0.96337 1.04959 15353.25528 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 9.83354 0.00000 9.83337 4.92256 151336.55892 0.00000 0.02100 151.13057 0.00000 9.83074 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 313.50014 1.00000 0.00000 124.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 10.11997 0.02234 0.02234 0.72384 0.00000 1042.78816 0.00000 0.00000 49.41741 1.00000 0.94361 0.98383 0.96153 1.04959 2011.75178 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 10.12416 0.00000 10.09770 2.24796 59811.89300 0.00000 0.02100 63.38556 0.00000 10.08376 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 70.41960 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 10.31420 0.06836 0.06836 0.69837 0.00000 8706.40383 0.00000 0.00000 315.47888 0.69005 0.80852 0.90660 0.84632 1.04959 32432.90115 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 10.10119 0.00000 10.08615 1.86949 333380.67360 0.00000 0.02100 456.60638 0.00000 10.09685 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 41.64539 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 9.92897 0.02573 0.02573 0.71615 0.00000 1060.32408 0.00000 0.00000 35.27008 1.00000 0.99845 0.99991 0.99935 1.04959 2338.02569 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 9.75082 0.00000 9.71836 4.61939 34979.68422 0.00000 0.02100 142.98449 0.00000 9.72694 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 69.49261 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 123613.94162 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 9.76240 0.02772 0.02772 0.71086 0.00000 11646.48983 0.00000 0.00000 393.09077 0.75252 0.95980 0.99005 0.97379 1.04959 21599.13816 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 9.71422 0.00000 9.71442 5.10358 61974.33047 0.00000 0.02100 20.05786 0.00000 9.71313 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 79.04326 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 9.88927 0.02733 0.02733 0.83857 0.00000 5150.36115 -0.00000 0.00000 229.83310 0.74355 0.94622 0.98489 0.96355 1.04959 22669.44299 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 9.76863 0.00000 9.76878 4.52113 68037.52552 0.00000 0.02100 6.72043 0.00000 9.76778 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 23.08816 1.00000 0.00000 0.54920 1055.84060 437.17370 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 9.89655 0.02287 0.02287 0.82149 0.00000 2268.80221 0.00000 0.00000 125.39331 0.91161 0.96192 0.99079 0.97535 1.04959 12650.77513 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 10.09733 0.00000 10.09718 5.67630 49379.21811 0.00000 0.02100 7.04610 0.00000 10.09334 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 37.90050 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 9.21871 0.03532 0.03532 0.74368 0.00000 597.86274 0.00000 0.00000 36.37887 1.00000 0.78134 0.88702 0.82138 1.04959 3719.58260 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 9.07366 0.00000 9.07364 0.00000 116684.07919 0.00000 0.02100 0.09522 0.00000 9.05704 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.31959 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.87000 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.41029 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.22607 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.35998 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.93292 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96437 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.86555 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.36702 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.75576 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 8.62087 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 10.10469 0.02762 0.02762 0.72176 0.00000 4438.70188 -0.00000 0.00000 272.87671 0.87110 0.94599 0.98480 0.96337 1.04959 16114.68454 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 10.09905 0.00000 10.09887 4.92256 151336.55892 0.00000 0.02100 154.45544 0.00000 10.09617 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 320.39714 1.00000 0.00000 125.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 10.39321 0.02234 0.02234 0.72384 0.00000 1065.72949 0.00000 0.00000 50.50460 1.00000 0.94361 0.98383 0.96153 1.04959 2111.52259 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 10.39751 0.00000 10.37033 2.24796 59811.89300 0.00000 0.02100 64.78004 0.00000 10.35602 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 71.96883 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 10.59269 0.06836 0.06836 0.69837 0.00000 8897.94462 0.00000 0.00000 322.41941 0.69005 0.80852 0.90660 0.84632 1.04959 34041.37827 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 10.37393 0.00000 10.35848 1.86949 333380.67360 0.00000 0.02100 466.65172 0.00000 10.36947 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 42.56158 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 10.19705 0.02573 0.02573 0.71615 0.00000 1083.65119 0.00000 0.00000 36.04602 1.00000 0.99845 0.99991 0.99935 1.04959 2453.97773 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 10.01409 0.00000 9.98075 4.61939 34979.68422 0.00000 0.02100 146.13015 0.00000 9.98957 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 71.02145 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 129744.45078 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 10.02598 0.02772 0.02772 0.71086 0.00000 11902.71247 0.00000 0.00000 401.73876 0.75252 0.95980 0.99005 0.97379 1.04959 22670.32570 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 9.97651 0.00000 9.97670 5.10358 61974.33047 0.00000 0.02100 20.49913 0.00000 9.97538 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 80.78221 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 10.15628 0.02733 0.02733 0.83857 0.00000 5263.66903 0.00000 0.00000 234.88943 0.74355 0.94622 0.98489 0.96355 1.04959 23793.71123 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 10.03239 0.00000 10.03254 4.52113 68037.52552 0.00000 0.02100 6.86828 0.00000 10.03151 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 23.59610 1.00000 0.00000 0.56128 1079.06908 446.79152 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 10.16376 0.02287 0.02287 0.82149 0.00000 2318.71583 0.00000 0.00000 128.15196 0.91161 0.96192 0.99079 0.97535 1.04959 13278.17761 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 10.36996 0.00000 10.36981 5.67630 49379.21811 0.00000 0.02100 7.20111 0.00000 10.36586 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 38.73431 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 9.46761 0.03532 0.03532 0.74368 0.00000 611.01571 0.00000 0.00000 37.17921 1.00000 0.78134 0.88702 0.82138 1.04959 3904.05156 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 9.31865 0.00000 9.31863 0.00000 116684.07919 0.00000 0.02100 0.09732 0.00000 9.30158 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.34862 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.85542 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.42531 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.21106 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.34540 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.92052 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.85054 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.35201 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.74030 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 8.85357 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 10.37752 0.02762 0.02762 0.72176 0.00000 4536.35327 0.00000 0.00000 278.87999 0.87110 0.94599 0.98480 0.96337 1.04959 16913.87612 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 10.37172 0.00000 10.37154 4.92256 151336.55892 0.00000 0.02100 157.85346 0.00000 10.36877 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 327.44588 1.00000 0.00000 126.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 10.67382 0.02234 0.02234 0.72384 0.00000 1089.17553 0.00000 0.00000 51.61570 1.00000 0.94361 0.98383 0.96153 1.04959 2216.24143 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 10.67825 0.00000 10.65033 2.24796 59811.89300 0.00000 0.02100 66.20520 0.00000 10.63564 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 73.55215 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 10.87869 0.06836 0.06836 0.69837 0.00000 9093.69930 0.00000 0.00000 329.51263 0.69005 0.80852 0.90660 0.84632 1.04959 35729.62620 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 10.65402 0.00000 10.63816 1.86949 333380.67360 0.00000 0.02100 476.91805 0.00000 10.64944 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 43.49794 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 10.47237 0.02573 0.02573 0.71615 0.00000 1107.49151 0.00000 0.00000 36.83903 1.00000 0.99845 0.99991 0.99935 1.04959 2575.68029 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 10.28447 0.00000 10.25023 4.61939 34979.68422 0.00000 0.02100 149.34501 0.00000 10.25929 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 72.58392 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 136178.99637 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 10.29668 0.02772 0.02772 0.71086 0.00000 12164.57201 0.00000 0.00000 410.57701 0.75252 0.95980 0.99005 0.97379 1.04959 23794.63771 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 10.24587 0.00000 10.24608 5.10358 61974.33047 0.00000 0.02100 20.95011 0.00000 10.24472 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 82.55942 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 10.43050 0.02733 0.02733 0.83857 0.00000 5379.46969 0.00000 0.00000 240.05699 0.74355 0.94622 0.98489 0.96355 1.04959 24973.73641 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 10.30326 0.00000 10.30342 4.52113 68037.52552 0.00000 0.02100 7.01938 0.00000 10.30236 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 24.11521 1.00000 0.00000 0.57363 1102.80859 456.62093 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 10.43818 0.02287 0.02287 0.82149 0.00000 2369.72755 0.00000 0.00000 130.97130 0.91161 0.96192 0.99079 0.97535 1.04959 13936.69548 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 10.64995 0.00000 10.64979 5.67630 49379.21811 0.00000 0.02100 7.35954 0.00000 10.64574 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 39.58647 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 9.72324 0.03532 0.03532 0.74368 0.00000 624.45805 0.00000 0.00000 37.99715 1.00000 0.78134 0.88702 0.82138 1.04959 4097.66907 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 9.57025 0.00000 9.57024 0.00000 116684.07919 0.00000 0.02100 0.09946 0.00000 9.55272 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.37829 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.84084 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.44032 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.19604 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.33082 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.90811 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.83552 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.33699 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.72485 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 9.09256 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 10.65771 0.02762 0.02762 0.72176 0.00000 4636.15299 -0.00000 0.00000 285.01535 0.87110 0.94599 0.98480 0.96337 1.04959 17752.70280 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 10.65176 0.00000 10.65157 4.92256 151336.55892 0.00000 0.02100 161.32623 0.00000 10.64872 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 334.64968 1.00000 0.00000 127.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 10.96202 0.02234 0.02234 0.72384 0.00000 1113.13738 0.00000 0.00000 52.75124 1.00000 0.94361 0.98383 0.96153 1.04959 2326.15369 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 10.96656 0.00000 10.93789 2.24796 59811.89300 0.00000 0.02100 67.66172 0.00000 10.92280 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 75.17029 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 11.17241 0.06836 0.06836 0.69837 0.00000 9293.76058 0.00000 0.00000 336.76191 0.69005 0.80852 0.90660 0.84632 1.04959 37501.60109 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 10.94168 0.00000 10.92539 1.86949 333380.67360 0.00000 0.02100 487.41024 0.00000 10.93698 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 44.45489 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 10.75513 0.02573 0.02573 0.71615 0.00000 1131.85631 0.00000 0.00000 37.64949 1.00000 0.99845 0.99991 0.99935 1.04959 2703.41856 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 10.56215 0.00000 10.52699 4.61939 34979.68422 0.00000 0.02100 152.63060 0.00000 10.53629 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 74.18076 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 142932.65679 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 10.57469 0.02772 0.02772 0.71086 0.00000 12432.19245 -0.00000 0.00000 419.60970 0.75252 0.95980 0.99005 0.97379 1.04959 24974.70884 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 10.52251 0.00000 10.52272 5.10358 61974.33047 0.00000 0.02100 21.41101 0.00000 10.52133 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 84.37572 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 10.71213 0.02733 0.02733 0.83857 0.00000 5497.81796 0.00000 0.00000 245.33825 0.74355 0.94622 0.98489 0.96355 1.04959 26212.28376 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 10.58145 0.00000 10.58161 4.52113 68037.52552 0.00000 0.02100 7.17380 0.00000 10.58052 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 24.64575 1.00000 0.00000 0.58625 1127.07037 466.66658 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 10.72001 0.02287 0.02287 0.82149 0.00000 2421.86153 0.00000 0.00000 133.85267 0.91161 0.96192 0.99079 0.97535 1.04959 14627.87188 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 10.93750 0.00000 10.93734 5.67630 49379.21811 0.00000 0.02100 7.52145 0.00000 10.93318 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 40.45737 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 9.98576 0.03532 0.03532 0.74368 0.00000 638.19612 0.00000 0.00000 38.83309 1.00000 0.78134 0.88702 0.82138 1.04959 4300.88885 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 9.82865 0.00000 9.82863 0.00000 116684.07919 0.00000 0.02100 0.10165 0.00000 9.81065 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.40861 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.82625 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.45534 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.18103 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.31624 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.89571 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.82051 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.32198 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.70940 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 9.33800 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 10.94547 0.02762 0.02762 0.72176 0.00000 4738.14830 0.00000 0.00000 291.28568 0.87110 0.94599 0.98480 0.96337 1.04959 18633.13025 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 10.93935 0.00000 10.93917 4.92256 151336.55892 0.00000 0.02100 164.87541 0.00000 10.93624 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 342.01197 1.00000 0.00000 128.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 11.25799 0.02234 0.02234 0.72384 0.00000 1137.62639 0.00000 0.00000 53.91177 1.00000 0.94361 0.98383 0.96153 1.04959 2441.51695 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 11.26266 0.00000 11.23322 2.24796 59811.89300 0.00000 0.02100 69.15028 0.00000 11.21771 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 76.82404 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 11.47407 0.06836 0.06836 0.69837 0.00000 9498.22321 -0.00000 0.00000 344.17067 0.69005 0.80852 0.90660 0.84632 1.04959 39361.45529 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 11.23711 0.00000 11.22037 1.86949 333380.67360 0.00000 0.02100 498.13326 0.00000 11.23228 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 45.43290 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 11.04551 0.02573 0.02573 0.71615 0.00000 1156.75713 0.00000 0.00000 38.47778 1.00000 0.99845 0.99991 0.99935 1.04959 2837.49189 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 10.84733 0.00000 10.81122 4.61939 34979.68422 0.00000 0.02100 155.98847 0.00000 10.82077 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 75.81274 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 150021.25820 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 10.86021 0.02772 0.02772 0.71086 0.00000 12705.70055 0.00000 0.00000 428.84111 0.75252 0.95980 0.99005 0.97379 1.04959 26213.30442 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 10.80662 0.00000 10.80683 5.10358 61974.33047 0.00000 0.02100 21.88205 0.00000 10.80540 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 86.23199 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 11.00135 0.02733 0.02733 0.83857 0.00000 5618.76989 0.00000 0.00000 250.73568 0.74355 0.94622 0.98489 0.96355 1.04959 27512.25562 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 10.86715 0.00000 10.86732 4.52113 68037.52552 0.00000 0.02100 7.33163 0.00000 10.86620 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 25.18795 1.00000 0.00000 0.59915 1151.86590 476.93324 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 11.00946 0.02287 0.02287 0.82149 0.00000 2475.14246 0.00000 0.00000 136.79742 0.91161 0.96192 0.99079 0.97535 1.04959 15353.32648 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 11.23281 0.00000 11.23264 5.67630 49379.21811 0.00000 0.02100 7.68692 0.00000 11.22837 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 41.34743 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 10.25538 0.03532 0.03532 0.74368 0.00000 652.23643 0.00000 0.00000 39.68741 1.00000 0.78134 0.88702 0.82138 1.04959 4514.18711 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 10.09402 0.00000 10.09401 0.00000 116684.07919 0.00000 0.02100 0.10389 0.00000 10.07553 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.43960 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.81167 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.47036 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.16601 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.30166 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.88330 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.80549 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.30696 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.69395 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 9.59006 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 11.24100 0.02762 0.02762 0.72176 0.00000 4842.38751 0.00000 0.00000 297.69396 0.87110 0.94599 0.98480 0.96337 1.04959 19557.22161 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 11.23472 0.00000 11.23452 4.92256 151336.55892 0.00000 0.02100 168.50266 0.00000 11.23152 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 349.53623 1.00000 0.00000 129.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 11.56196 0.02234 0.02234 0.72384 0.00000 1162.65416 0.00000 0.00000 55.09783 1.00000 0.94361 0.98383 0.96153 1.04959 2562.60152 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 11.56675 0.00000 11.53651 2.24796 59811.89300 0.00000 0.02100 70.67158 0.00000 11.52059 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 78.51417 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 11.78387 0.06836 0.06836 0.69837 0.00000 9707.18401 0.00000 0.00000 351.74242 0.69005 0.80852 0.90660 0.84632 1.04959 41313.54709 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 11.54051 0.00000 11.52332 1.86949 333380.67360 0.00000 0.02100 509.09219 0.00000 11.53555 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 46.43242 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 11.34374 0.02573 0.02573 0.71615 0.00000 1182.20578 0.00000 0.00000 39.32429 1.00000 0.99845 0.99991 0.99935 1.04959 2978.21444 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 11.14021 0.00000 11.10312 4.61939 34979.68422 0.00000 0.02100 159.42022 0.00000 11.11293 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 77.48062 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 157461.41167 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 11.15344 0.02772 0.02772 0.71086 0.00000 12985.22581 0.00000 0.00000 438.27561 0.75252 0.95980 0.99005 0.97379 1.04959 27513.32690 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 11.09840 0.00000 11.09862 5.10358 61974.33047 0.00000 0.02100 22.36346 0.00000 11.09715 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 88.12909 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 11.29839 0.02733 0.02733 0.83857 0.00000 5742.38277 0.00000 0.00000 256.25187 0.74355 0.94622 0.98489 0.96355 1.04959 28876.69828 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 11.16056 0.00000 11.16073 4.52113 68037.52552 0.00000 0.02100 7.49292 0.00000 11.15959 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 25.74209 1.00000 0.00000 0.61233 1177.20694 487.42577 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 11.30671 0.02287 0.02287 0.82149 0.00000 2529.59556 -0.00000 0.00000 139.80697 0.91161 0.96192 0.99079 0.97535 1.04959 16114.75927 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 11.53610 0.00000 11.53593 5.67630 49379.21811 0.00000 0.02100 7.85603 0.00000 11.53154 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 42.25707 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 10.53228 0.03532 0.03532 0.74368 0.00000 666.58562 -0.00000 0.00000 40.56054 1.00000 0.78134 0.88702 0.82138 1.04959 4738.06368 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 10.36656 0.00000 10.36654 0.00000 116684.07919 0.00000 0.02100 0.10617 0.00000 10.34757 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.47127 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.79709 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91826 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.48537 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.15100 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.28708 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.87090 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.79048 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.29195 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.67850 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 9.84893 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 11.54451 0.02762 0.02762 0.72176 0.00000 4948.91998 0.00000 0.00000 304.24323 0.87110 0.94599 0.98480 0.96337 1.04959 20527.14235 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 11.53805 0.00000 11.53786 4.92256 151336.55892 0.00000 0.02100 172.20972 0.00000 11.53477 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 357.22602 1.00000 0.00000 130.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 11.87413 0.02234 0.02234 0.72384 0.00000 1188.23253 0.00000 0.00000 56.30998 1.00000 0.94361 0.98383 0.96153 1.04959 2689.69117 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 11.87905 0.00000 11.84800 2.24796 59811.89300 0.00000 0.02100 72.22635 0.00000 11.83165 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 80.24148 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 12.10203 0.06836 0.06836 0.69837 0.00000 9920.74194 0.00000 0.00000 359.48075 0.69005 0.80852 0.90660 0.84632 1.04959 43362.45093 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 11.85210 0.00000 11.83445 1.86949 333380.67360 0.00000 0.02100 520.29221 0.00000 11.84701 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 47.45394 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 11.65002 0.02573 0.02573 0.71615 0.00000 1208.21429 0.00000 0.00000 40.18942 1.00000 0.99845 0.99991 0.99935 1.04959 3125.91600 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 11.44099 0.00000 11.40290 4.61939 34979.68422 0.00000 0.02100 162.92746 0.00000 11.41298 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 79.18519 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 165270.55207 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 11.45458 0.02772 0.02772 0.71086 0.00000 13270.90063 0.00000 0.00000 447.91766 0.75252 0.95980 0.99005 0.97379 1.04959 28877.82268 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 11.39806 0.00000 11.39828 5.10358 61974.33047 0.00000 0.02100 22.85545 0.00000 11.39677 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 90.06793 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 11.60345 0.02733 0.02733 0.83857 0.00000 5868.71512 0.00000 0.00000 261.88940 0.74355 0.94622 0.98489 0.96355 1.04959 30308.80910 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 11.46190 0.00000 11.46207 4.52113 68037.52552 0.00000 0.02100 7.65777 0.00000 11.46090 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 26.30841 1.00000 0.00000 0.62580 1203.10548 498.14913 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 11.61199 0.02287 0.02287 0.82149 0.00000 2585.24664 0.00000 0.00000 142.88272 0.91161 0.96192 0.99079 0.97535 1.04959 16913.95455 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 11.84757 0.00000 11.84740 5.67630 49379.21811 0.00000 0.02100 8.02886 0.00000 11.84289 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 43.18673 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 10.81665 0.03532 0.03532 0.74368 0.00000 681.25050 0.00000 0.00000 41.45287 1.00000 0.78134 0.88702 0.82138 1.04959 4973.04319 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 10.64646 0.00000 10.64644 0.00000 116684.07919 0.00000 0.02100 0.10851 0.00000 10.62696 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.50364 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.78251 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.50039 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.13598 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.27250 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.85849 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.77546 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.27693 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.66305 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 10.11479 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 11.85621 0.02762 0.02762 0.72176 0.00000 5057.79616 0.00000 0.00000 310.93657 0.87110 0.94599 0.98480 0.96337 1.04959 21545.16534 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 11.84958 0.00000 11.84938 4.92256 151336.55892 0.00000 0.02100 175.99833 0.00000 11.84621 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 365.08499 1.00000 0.00000 131.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 12.19473 0.02234 0.02234 0.72384 0.00000 1214.37364 0.00000 0.00000 57.54880 1.00000 0.94361 0.98383 0.96153 1.04959 2823.08370 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 12.19979 0.00000 12.16789 2.24796 59811.89300 0.00000 0.02100 73.81533 0.00000 12.15110 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 82.00679 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 12.42879 0.06836 0.06836 0.69837 0.00000 10138.99815 0.00000 0.00000 367.38932 0.69005 0.80852 0.90660 0.84632 1.04959 45512.96808 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 12.17211 0.00000 12.15398 1.86949 333380.67360 0.00000 0.02100 531.73863 0.00000 12.16688 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 48.49792 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 11.96457 0.02573 0.02573 0.71615 0.00000 1234.79499 0.00000 0.00000 41.07359 1.00000 0.99845 0.99991 0.99935 1.04959 3280.94266 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 11.74990 0.00000 11.71078 4.61939 34979.68422 0.00000 0.02100 166.51186 0.00000 11.72113 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 80.92727 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 173466.97894 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 11.76385 0.02772 0.02772 0.71086 0.00000 13562.86029 0.00000 0.00000 457.77185 0.75252 0.95980 0.99005 0.97379 1.04959 30309.98927 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 11.70580 0.00000 11.70603 5.10358 61974.33047 0.00000 0.02100 23.35827 0.00000 11.70449 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 92.04942 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 11.91674 0.02733 0.02733 0.83857 0.00000 5997.82679 -0.00000 0.00000 267.65097 0.74355 0.94622 0.98489 0.96355 1.04959 31811.94401 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 11.77137 0.00000 11.77155 4.52113 68037.52552 0.00000 0.02100 7.82624 0.00000 11.77034 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 26.88720 1.00000 0.00000 0.63957 1229.57379 509.10840 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 11.92552 0.02287 0.02287 0.82149 0.00000 2642.12203 0.00000 0.00000 146.02614 0.91161 0.96192 0.99079 0.97535 1.04959 17752.78512 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 12.16746 0.00000 12.16728 5.67630 49379.21811 0.00000 0.02100 8.20550 0.00000 12.16265 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 44.13684 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 11.10870 0.03532 0.03532 0.74368 0.00000 696.23800 0.00000 0.00000 42.36483 1.00000 0.78134 0.88702 0.82138 1.04959 5219.67626 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 10.93391 0.00000 10.93389 0.00000 116684.07919 0.00000 0.02100 0.11089 0.00000 10.91389 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.53672 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.76793 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.51540 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.12097 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.25792 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.84609 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.76045 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.26191 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.64760 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 10.38782 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 12.17633 0.02762 0.02762 0.72176 0.00000 5169.06762 0.00000 0.00000 317.77718 0.87110 0.94599 0.98480 0.96337 1.04959 22613.67615 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 12.16952 0.00000 12.16931 4.92256 151336.55892 0.00000 0.02100 179.87029 0.00000 12.16605 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 373.11686 1.00000 0.00000 132.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 12.52399 0.02234 0.02234 0.72384 0.00000 1241.08984 0.00000 0.00000 58.81487 1.00000 0.94361 0.98383 0.96153 1.04959 2963.09170 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 12.52918 0.00000 12.49643 2.24796 59811.89300 0.00000 0.02100 75.43927 0.00000 12.47918 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 83.81094 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 12.76437 0.06836 0.06836 0.69837 0.00000 10362.05600 0.00000 0.00000 375.47188 0.69005 0.80852 0.90660 0.84632 1.04959 47770.13798 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 12.50076 0.00000 12.48214 1.86949 333380.67360 0.00000 0.02100 543.43687 0.00000 12.49538 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 49.56488 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 12.28762 0.02573 0.02573 0.71615 0.00000 1261.96047 0.00000 0.00000 41.97721 1.00000 0.99845 0.99991 0.99935 1.04959 3443.65771 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 12.06715 0.00000 12.02697 4.61939 34979.68422 0.00000 0.02100 170.17512 0.00000 12.03760 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 82.70766 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 182069.89936 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 12.08148 0.02772 0.02772 0.71086 0.00000 13861.24307 0.00000 0.00000 467.84282 0.75252 0.95980 0.99005 0.97379 1.04959 31813.18271 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 12.02186 0.00000 12.02210 5.10358 61974.33047 0.00000 0.02100 23.87215 0.00000 12.02051 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 94.07451 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 12.23849 0.02733 0.02733 0.83857 0.00000 6129.77891 0.00000 0.00000 273.53929 0.74355 0.94622 0.98489 0.96355 1.04959 33389.62539 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 12.08919 0.00000 12.08938 4.52113 68037.52552 0.00000 0.02100 7.99842 0.00000 12.08814 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 27.47872 1.00000 0.00000 0.65364 1256.62439 520.30878 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 12.24750 0.02287 0.02287 0.82149 0.00000 2700.24869 0.00000 0.00000 149.23871 0.91161 0.96192 0.99079 0.97535 1.04959 18633.21665 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 12.49598 0.00000 12.49579 5.67630 49379.21811 0.00000 0.02100 8.38602 0.00000 12.49104 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 45.10785 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 11.40863 0.03532 0.03532 0.74368 0.00000 711.55523 0.00000 0.00000 43.29686 1.00000 0.78134 0.88702 0.82138 1.04959 5478.54086 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 11.22913 0.00000 11.22911 0.00000 116684.07919 0.00000 0.02100 0.11333 0.00000 11.20856 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.57053 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.75335 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75875 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 0.53042 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 -0.10595 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.24334 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.83369 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.74543 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.24690 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.63215 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 10.66822 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 12.50509 0.02762 0.02762 0.72176 0.00000 5282.78705 0.00000 0.00000 324.76827 0.87110 0.94599 0.98480 0.96337 1.04959 23735.17869 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 12.49810 0.00000 12.49788 4.92256 151336.55892 0.00000 0.02100 183.82744 0.00000 12.49454 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 381.32543 1.00000 0.00000 133.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 12.86214 0.02234 0.02234 0.72384 0.00000 1268.39380 0.00000 0.00000 60.10880 1.00000 0.94361 0.98383 0.96153 1.04959 3110.04325 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 12.86747 0.00000 12.83383 2.24796 59811.89300 0.00000 0.02100 77.09893 0.00000 12.81612 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 85.65478 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 13.10900 0.06836 0.06836 0.69837 0.00000 10590.02111 0.00000 0.00000 383.73226 0.69005 0.80852 0.90660 0.84632 1.04959 50139.24994 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 12.83828 0.00000 12.81916 1.86949 333380.67360 0.00000 0.02100 555.39248 0.00000 12.83276 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 50.65530 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 12.61938 0.02573 0.02573 0.71615 0.00000 1289.72358 0.00000 0.00000 42.90071 1.00000 0.99845 0.99991 0.99935 1.04959 3614.44245 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 12.39296 0.00000 12.35170 4.61939 34979.68422 0.00000 0.02100 173.91897 0.00000 12.36262 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 84.52723 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 191099.47297 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 12.40768 0.02772 0.02772 0.71086 0.00000 14166.19026 0.00000 0.00000 478.13536 0.75252 0.95980 0.99005 0.97379 1.04959 33390.92552 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 12.34645 0.00000 12.34669 5.10358 61974.33047 0.00000 0.02100 24.39734 0.00000 12.34506 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 96.14415 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 12.56893 0.02733 0.02733 0.83857 0.00000 6264.63398 0.00000 0.00000 279.55715 0.74355 0.94622 0.98489 0.96355 1.04959 35045.55029 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 12.41560 0.00000 12.41580 4.52113 68037.52552 0.00000 0.02100 8.17438 0.00000 12.41452 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 28.08325 1.00000 0.00000 0.66802 1284.27012 531.75557 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 12.57819 0.02287 0.02287 0.82149 0.00000 2759.65413 0.00000 0.00000 152.52196 0.91161 0.96192 0.99079 0.97535 1.04959 19557.31230 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 12.83337 0.00000 12.83318 5.67630 49379.21811 0.00000 0.02100 8.57051 0.00000 12.82830 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 46.10022 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 11.71666 0.03532 0.03532 0.74368 0.00000 727.20943 0.00000 0.00000 44.24939 1.00000 0.78134 0.88702 0.82138 1.04959 5750.24359 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 11.53231 0.00000 11.53230 0.00000 116684.07919 0.00000 0.02100 0.11583 0.00000 11.51119 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.60508 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.73877 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.54543 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.09094 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.22876 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.82128 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.73041 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.23188 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.61670 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 10.95619 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 12.84272 0.02762 0.02762 0.72176 0.00000 5399.00830 -0.00000 0.00000 331.91317 0.87110 0.94599 0.98480 0.96337 1.04959 24912.30101 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 12.83555 0.00000 12.83533 4.92256 151336.55892 0.00000 0.02100 187.87164 0.00000 12.83189 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 389.71458 1.00000 0.00000 134.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 13.20941 0.02234 0.02234 0.72384 0.00000 1296.29845 0.00000 0.00000 61.43119 1.00000 0.94361 0.98383 0.96153 1.04959 3264.28272 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 13.21489 0.00000 13.18034 2.24796 59811.89300 0.00000 0.02100 78.79511 0.00000 13.16216 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 87.53918 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 13.46295 0.06836 0.06836 0.69837 0.00000 10823.00145 0.00000 0.00000 392.17436 0.69005 0.80852 0.90660 0.84632 1.04959 52625.85564 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 13.18491 0.00000 13.16527 1.86949 333380.67360 0.00000 0.02100 567.61111 0.00000 13.17924 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 51.76972 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 12.96011 0.02573 0.02573 0.71615 0.00000 1318.09749 0.00000 0.00000 43.84452 1.00000 0.99845 0.99991 0.99935 1.04959 3793.69709 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 12.72757 0.00000 12.68520 4.61939 34979.68422 0.00000 0.02100 177.74519 0.00000 12.69641 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 86.38683 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 200576.85920 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 12.74268 0.02772 0.02772 0.71086 0.00000 14477.84628 -0.00000 0.00000 488.65433 0.75252 0.95980 0.99005 0.97379 1.04959 35046.91490 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 12.67981 0.00000 12.68005 5.10358 61974.33047 0.00000 0.02100 24.93408 0.00000 12.67838 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 98.25932 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 12.90829 0.02733 0.02733 0.83857 0.00000 6402.45585 0.00000 0.00000 285.70740 0.74355 0.94622 0.98489 0.96355 1.04959 36783.59913 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 12.75082 0.00000 12.75102 4.52113 68037.52552 0.00000 0.02100 8.35422 0.00000 12.74971 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 28.70108 1.00000 0.00000 0.68271 1312.52404 543.45419 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 12.91780 0.02287 0.02287 0.82149 0.00000 2820.36649 0.00000 0.00000 155.87744 0.91161 0.96192 0.99079 0.97535 1.04959 20527.23754 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 13.17987 0.00000 13.17968 5.67630 49379.21811 0.00000 0.02100 8.75906 0.00000 13.17466 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 47.11442 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 12.03301 0.03532 0.03532 0.74368 0.00000 743.20803 0.00000 0.00000 45.22287 1.00000 0.78134 0.88702 0.82138 1.04959 6035.42114 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 11.84369 0.00000 11.84367 0.00000 116684.07919 0.00000 0.02100 0.11837 0.00000 11.82199 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.64039 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.72419 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 0.56045 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.07592 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.21418 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.80888 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.71540 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -1.21687 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.60125 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 11.25194 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 13.18948 0.02762 0.02762 0.72176 0.00000 5517.78642 0.00000 0.00000 339.21525 0.87110 0.94599 0.98480 0.96337 1.04959 26147.80153 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 13.18211 0.00000 13.18188 4.92256 151336.55892 0.00000 0.02100 192.00481 0.00000 13.17835 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 398.28830 1.00000 0.00000 135.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 13.56607 0.02234 0.02234 0.72384 0.00000 1324.81700 0.00000 0.00000 62.78267 1.00000 0.94361 0.98383 0.96153 1.04959 3426.17154 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 13.57169 0.00000 13.53621 2.24796 59811.89300 0.00000 0.02100 80.52860 0.00000 13.51754 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 89.46504 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 13.82645 0.06836 0.06836 0.69837 0.00000 11061.10736 0.00000 0.00000 400.80219 0.69005 0.80852 0.90660 0.84632 1.04959 55235.78204 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 13.54090 0.00000 13.52074 1.86949 333380.67360 0.00000 0.02100 580.09855 0.00000 13.53508 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 52.90865 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 13.31003 0.02573 0.02573 0.71615 0.00000 1347.09562 0.00000 0.00000 44.80910 1.00000 0.99845 0.99991 0.99935 1.04959 3981.84168 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 13.07121 0.00000 13.02770 4.61939 34979.68422 0.00000 0.02100 181.65558 0.00000 13.03921 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 88.28734 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 210524.26688 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 13.08674 0.02772 0.02772 0.71086 0.00000 14796.35873 0.00000 0.00000 499.40472 0.75252 0.95980 0.99005 0.97379 1.04959 36785.03141 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 13.02216 0.00000 13.02242 5.10358 61974.33047 0.00000 0.02100 25.48263 0.00000 13.02069 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 100.42102 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 13.25682 0.02733 0.02733 0.83857 0.00000 6543.30981 0.00000 0.00000 291.99296 0.74355 0.94622 0.98489 0.96355 1.04959 38607.84474 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 13.09510 0.00000 13.09530 4.52113 68037.52552 0.00000 0.02100 8.53801 0.00000 13.09395 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 29.33250 1.00000 0.00000 0.69773 1341.39956 555.41017 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 13.26658 0.02287 0.02287 0.82149 0.00000 2882.41452 0.00000 0.00000 159.30674 0.91161 0.96192 0.99079 0.97535 1.04959 21545.26525 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 13.53573 0.00000 13.53553 5.67630 49379.21811 0.00000 0.02100 8.95176 0.00000 13.53038 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 48.15094 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 12.35791 0.03532 0.03532 0.74368 0.00000 759.55860 0.00000 0.00000 46.21777 1.00000 0.78134 0.88702 0.82138 1.04959 6334.74178 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 12.16347 0.00000 12.16345 0.00000 116684.07919 0.00000 0.02100 0.12098 0.00000 12.14119 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.67648 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.70961 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.57546 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.06090 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.19960 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.79647 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.70038 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.20185 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.58580 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 11.55566 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 13.54559 0.02762 0.02762 0.72176 0.00000 5639.17766 0.00000 0.00000 346.67799 0.87110 0.94599 0.98480 0.96337 1.04959 27444.57546 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 13.53802 0.00000 13.53779 4.92256 151336.55892 0.00000 0.02100 196.22892 0.00000 13.53417 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 407.05063 1.00000 0.00000 136.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 13.93235 0.02234 0.02234 0.72384 0.00000 1353.96296 0.00000 0.00000 64.16389 1.00000 0.94361 0.98383 0.96153 1.04959 3596.08907 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 13.93813 0.00000 13.90169 2.24796 59811.89300 0.00000 0.02100 82.30023 0.00000 13.88251 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 91.43327 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 14.19976 0.06836 0.06836 0.69837 0.00000 11304.45160 0.00000 0.00000 409.61984 0.69005 0.80852 0.90660 0.84632 1.04959 57975.14511 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 13.90651 0.00000 13.88580 1.86949 333380.67360 0.00000 0.02100 592.86071 0.00000 13.90053 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 54.07264 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 13.66940 0.02573 0.02573 0.71615 0.00000 1376.73170 0.00000 0.00000 45.79490 1.00000 0.99845 0.99991 0.99935 1.04959 4179.31712 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 13.42414 0.00000 13.37945 4.61939 34979.68422 0.00000 0.02100 185.65200 0.00000 13.39127 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 90.22966 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 220965.00623 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 13.44008 0.02772 0.02772 0.71086 0.00000 15121.87846 -0.00000 0.00000 510.39162 0.75252 0.95980 0.99005 0.97379 1.04959 38609.34806 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 13.37376 0.00000 13.37402 5.10358 61974.33047 0.00000 0.02100 26.04325 0.00000 13.37225 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 102.63028 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 13.61475 0.02733 0.02733 0.83857 0.00000 6687.26255 0.00000 0.00000 298.41680 0.74355 0.94622 0.98489 0.96355 1.04959 40522.56199 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 13.44866 0.00000 13.44887 4.52113 68037.52552 0.00000 0.02100 8.72585 0.00000 13.44749 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 29.97782 1.00000 0.00000 0.71308 1370.91033 567.62919 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 13.62478 0.02287 0.02287 0.82149 0.00000 2945.82760 0.00000 0.00000 162.81149 0.91161 0.96192 0.99079 0.97535 1.04959 22613.78102 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 13.90119 0.00000 13.90099 5.67630 49379.21811 0.00000 0.02100 9.14870 0.00000 13.89570 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 49.21026 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 12.69157 0.03532 0.03532 0.74368 0.00000 776.26888 0.00000 0.00000 47.23456 1.00000 0.78134 0.88702 0.82138 1.04959 6648.90693 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 12.49188 0.00000 12.49186 0.00000 116684.07919 0.00000 0.02100 0.12364 0.00000 12.46900 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.71336 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.69503 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 0.59048 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.04589 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.18502 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.78407 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 -0.00000 -0.68537 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.18684 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.57035 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 11.86759 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 13.91132 0.02762 0.02762 0.72176 0.00000 5763.23951 0.00000 0.00000 354.30490 0.87110 0.94599 0.98480 0.96337 1.04959 28805.66159 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 13.90355 0.00000 13.90331 4.92256 151336.55892 0.00000 0.02100 200.54595 0.00000 13.89959 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 416.00574 1.00000 0.00000 137.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 14.30852 0.02234 0.02234 0.72384 0.00000 1383.75013 0.00000 0.00000 65.57550 1.00000 0.94361 0.98383 0.96153 1.04959 3774.43349 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 14.31446 0.00000 14.27704 2.24796 59811.89300 0.00000 0.02100 84.11083 0.00000 14.25734 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 93.44480 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 14.58315 0.06836 0.06836 0.69837 0.00000 11553.14941 0.00000 0.00000 418.63147 0.69005 0.80852 0.90660 0.84632 1.04959 60850.36415 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 14.28198 0.00000 14.26071 1.86949 333380.67360 0.00000 0.02100 605.90364 0.00000 14.27584 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 55.26224 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 14.03848 0.02573 0.02573 0.71615 0.00000 1407.01979 0.00000 0.00000 46.80239 1.00000 0.99845 0.99991 0.99935 1.04959 4386.58615 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 13.78659 0.00000 13.74069 4.61939 34979.68422 0.00000 0.02100 189.73634 0.00000 13.75283 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 92.21471 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 231923.54356 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 13.80296 0.02772 0.02772 0.71086 0.00000 15454.55961 0.00000 0.00000 521.62023 0.75252 0.95980 0.99005 0.97379 1.04959 40524.13986 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 13.73485 0.00000 13.73512 5.10358 61974.33047 0.00000 0.02100 26.61620 0.00000 13.73330 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 104.88815 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 13.98235 0.02733 0.02733 0.83857 0.00000 6834.38225 0.00000 0.00000 304.98197 0.74355 0.94622 0.98489 0.96355 1.04959 42532.23771 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 13.81178 0.00000 13.81199 4.52113 68037.52552 0.00000 0.02100 8.91782 0.00000 13.81057 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 30.63733 1.00000 0.00000 0.72877 1401.07035 580.11703 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 13.99265 0.02287 0.02287 0.82149 0.00000 3010.63578 0.00000 0.00000 166.39334 0.91161 0.96192 0.99079 0.97535 1.04959 23735.28875 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 14.27652 0.00000 14.27631 5.67630 49379.21811 0.00000 0.02100 9.34997 0.00000 14.27088 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 50.29288 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 13.03424 0.03532 0.03532 0.74368 0.00000 793.34679 0.00000 0.00000 48.27372 1.00000 0.78134 0.88702 0.82138 1.04959 6978.65278 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 12.82916 0.00000 12.82914 0.00000 116684.07919 0.00000 0.02100 0.12636 0.00000 12.80566 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.75106 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.68045 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.60549 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 -0.03087 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.17044 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.77167 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.67035 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.17182 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.55490 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 12.18794 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 14.28693 0.02762 0.02762 0.72176 0.00000 5890.03071 0.00000 0.00000 362.09960 0.87110 0.94599 0.98480 0.96337 1.04959 30234.24942 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 14.27895 0.00000 14.27870 4.92256 151336.55892 0.00000 0.02100 204.95796 0.00000 14.27488 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 425.15787 1.00000 0.00000 138.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 14.69486 0.02234 0.02234 0.72384 0.00000 1414.19262 0.00000 0.00000 67.01816 1.00000 0.94361 0.98383 0.96153 1.04959 3961.62273 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 14.70095 0.00000 14.66252 2.24796 59811.89300 0.00000 0.02100 85.96127 0.00000 14.64228 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 95.50059 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 14.97690 0.06836 0.06836 0.69837 0.00000 11807.31856 0.00000 0.00000 427.84136 0.69005 0.80852 0.90660 0.84632 1.04959 63868.17678 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 14.66760 0.00000 14.64575 1.86949 333380.67360 0.00000 0.02100 619.23351 0.00000 14.66129 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 56.47801 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 14.41751 0.02573 0.02573 0.71615 0.00000 1437.97421 0.00000 0.00000 47.83204 1.00000 0.99845 0.99991 0.99935 1.04959 4604.13448 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 14.15882 0.00000 14.11169 4.61939 34979.68422 0.00000 0.02100 193.91054 0.00000 14.12416 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 94.24343 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 243425.55853 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 14.17564 0.02772 0.02772 0.71086 0.00000 15794.55974 0.00000 0.00000 533.09587 0.75252 0.95980 0.99005 0.97379 1.04959 42533.89384 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 14.10569 0.00000 14.10597 5.10358 61974.33047 0.00000 0.02100 27.20176 0.00000 14.10410 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 107.19569 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 14.35987 0.02733 0.02733 0.83857 0.00000 6984.73858 -0.00000 0.00000 311.69157 0.74355 0.94622 0.98489 0.96355 1.04959 44641.58128 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 14.18469 0.00000 14.18492 4.52113 68037.52552 0.00000 0.02100 9.11401 0.00000 14.18346 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 31.31135 1.00000 0.00000 0.74481 1431.89388 592.87959 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 14.37045 0.02287 0.02287 0.82149 0.00000 3076.86973 -0.00000 0.00000 170.05399 0.91161 0.96192 0.99079 0.97535 1.04959 24912.41653 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 14.66199 0.00000 14.66177 5.67630 49379.21811 0.00000 0.02100 9.55567 0.00000 14.65620 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 51.39933 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 13.38617 0.03532 0.03532 0.74368 0.00000 810.80041 -0.00000 0.00000 49.33575 1.00000 0.78134 0.88702 0.82138 1.04959 7324.75205 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 13.17555 0.00000 13.17553 0.00000 116684.07919 0.00000 0.02100 0.12914 0.00000 13.15142 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.78958 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.66587 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.62051 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 -0.01586 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.15586 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.75926 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.65534 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.15681 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.53945 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 12.51693 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 14.67268 0.02762 0.02762 0.72176 0.00000 6019.61132 0.00000 0.00000 370.06579 0.87110 0.94599 0.98480 0.96337 1.04959 31733.68662 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 14.66448 0.00000 14.66422 4.92256 151336.55892 0.00000 0.02100 209.46703 0.00000 14.66030 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 434.51133 1.00000 0.00000 139.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 15.09162 0.02234 0.02234 0.72384 0.00000 1445.30484 0.00000 0.00000 68.49256 1.00000 0.94361 0.98383 0.96153 1.04959 4158.09542 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 15.09787 0.00000 15.05841 2.24796 59811.89300 0.00000 0.02100 87.85242 0.00000 15.03763 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 97.60160 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 15.38128 0.06836 0.06836 0.69837 0.00000 12067.07943 0.00000 0.00000 437.25386 0.69005 0.80852 0.90660 0.84632 1.04959 67035.65480 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 15.06362 0.00000 15.04119 1.86949 333380.67360 0.00000 0.02100 632.85664 0.00000 15.05715 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 57.72052 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 14.80679 0.02573 0.02573 0.71615 0.00000 1469.60962 0.00000 0.00000 48.88435 1.00000 0.99845 0.99991 0.99935 1.04959 4832.47190 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 14.54111 0.00000 14.49271 4.61939 34979.68422 0.00000 0.02100 198.17657 0.00000 14.50551 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 96.31679 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 255498.00437 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 14.55838 0.02772 0.02772 0.71086 0.00000 16142.03988 0.00000 0.00000 544.82397 0.75252 0.95980 0.99005 0.97379 1.04959 44643.31954 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 14.48655 0.00000 14.48683 5.10358 61974.33047 0.00000 0.02100 27.80020 0.00000 14.48491 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 109.55399 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 14.74759 0.02733 0.02733 0.83857 0.00000 7138.40275 0.00000 0.00000 318.54878 0.74355 0.94622 0.98489 0.96355 1.04959 46855.53562 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 14.56768 0.00000 14.56791 4.52113 68037.52552 0.00000 0.02100 9.31451 0.00000 14.56641 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 32.00020 1.00000 0.00000 0.76119 1463.39553 605.92294 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 14.75845 0.02287 0.02287 0.82149 0.00000 3144.56083 0.00000 0.00000 173.79518 0.91161 0.96192 0.99079 0.97535 1.04959 26147.92278 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 15.05786 0.00000 15.05764 5.67630 49379.21811 0.00000 0.02100 9.76589 0.00000 15.05192 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 52.53011 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 13.74759 0.03532 0.03532 0.74368 0.00000 828.63801 0.00000 0.00000 50.42113 1.00000 0.78134 0.88702 0.82138 1.04959 7688.01577 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 13.53129 0.00000 13.53127 0.00000 116684.07919 0.00000 0.02100 0.13198 0.00000 13.50651 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.82895 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.65129 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.63552 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 -0.00084 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.14128 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.74686 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -0.64032 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.14179 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.52400 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 12.85480 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 15.06884 0.02762 0.02762 0.72176 0.00000 6152.04270 0.00000 0.00000 378.20723 0.87110 0.94599 0.98480 0.96337 1.04959 33307.48690 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 15.06042 0.00000 15.06016 4.92256 151336.55892 0.00000 0.02100 214.07530 0.00000 15.05613 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 444.07058 1.00000 0.00000 140.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 15.49909 0.02234 0.02234 0.72384 0.00000 1477.10153 0.00000 0.00000 69.99939 1.00000 0.94361 0.98383 0.96153 1.04959 4364.31199 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 15.50552 0.00000 15.46498 2.24796 59811.89300 0.00000 0.02100 89.78517 0.00000 15.44364 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 99.74883 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 15.79657 0.06836 0.06836 0.69837 0.00000 12332.55504 0.00000 0.00000 446.87344 0.69005 0.80852 0.90660 0.84632 1.04959 70360.22070 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 15.47034 0.00000 15.44730 1.86949 333380.67360 0.00000 0.02100 646.77948 0.00000 15.46369 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 58.99037 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 15.20657 0.02573 0.02573 0.71615 0.00000 1501.94102 0.00000 0.00000 49.95980 1.00000 0.99845 0.99991 0.99935 1.04959 5072.13348 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 14.93372 0.00000 14.88401 4.61939 34979.68422 0.00000 0.02100 202.53645 0.00000 14.89716 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 98.43576 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 268169.17103 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 14.95146 0.02772 0.02772 0.71086 0.00000 16497.16457 0.00000 0.00000 556.81009 0.75252 0.95980 0.99005 0.97379 1.04959 46857.36009 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 14.87768 0.00000 14.87797 5.10358 61974.33047 0.00000 0.02100 28.41180 0.00000 14.87601 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 111.96418 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 15.14577 0.02733 0.02733 0.83857 0.00000 7295.44753 -0.00000 0.00000 325.55685 0.74355 0.94622 0.98489 0.96355 1.04959 49179.28880 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 14.96101 0.00000 14.96124 4.52113 68037.52552 0.00000 0.02100 9.51943 0.00000 14.95970 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 32.70420 1.00000 0.00000 0.77794 1495.59021 619.25324 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 15.15693 0.02287 0.02287 0.82149 0.00000 3213.74113 -0.00000 0.00000 177.61867 0.91161 0.96192 0.99079 0.97535 1.04959 27444.70273 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 15.46443 0.00000 15.46420 5.67630 49379.21811 0.00000 0.02100 9.98074 0.00000 15.45832 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 53.68577 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 14.11878 0.03532 0.03532 0.74368 0.00000 846.86804 0.00000 0.00000 51.53040 1.00000 0.78134 0.88702 0.82138 1.04959 8069.29518 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 13.89663 0.00000 13.89661 0.00000 116684.07919 0.00000 0.02100 0.13489 0.00000 13.87118 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.86919 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.63671 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.65054 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 0.01417 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.12670 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.73445 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.62531 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.12678 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.50854 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 13.20180 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 15.47570 0.02762 0.02762 0.72176 0.00000 6287.38757 -0.00000 0.00000 386.52779 0.87110 0.94599 0.98480 0.96337 1.04959 34959.33823 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 15.46705 0.00000 15.46678 4.92256 151336.55892 0.00000 0.02100 218.78496 0.00000 15.46264 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 453.84013 1.00000 0.00000 141.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 15.91757 0.02234 0.02234 0.72384 0.00000 1509.59775 0.00000 0.00000 71.53938 1.00000 0.94361 0.98383 0.96153 1.04959 4580.75565 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 15.92416 0.00000 15.88254 2.24796 59811.89300 0.00000 0.02100 91.76044 0.00000 15.86062 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 101.94331 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 16.22308 0.06836 0.06836 0.69837 0.00000 12603.87111 0.00000 0.00000 456.70465 0.69005 0.80852 0.90660 0.84632 1.04959 73849.66511 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 15.88804 0.00000 15.86438 1.86949 333380.67360 0.00000 0.02100 661.00862 0.00000 15.88121 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 60.28816 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 15.61715 0.02573 0.02573 0.71615 0.00000 1534.98370 0.00000 0.00000 51.05892 1.00000 0.99845 0.99991 0.99935 1.04959 5323.68084 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 15.33693 0.00000 15.28588 4.61939 34979.68422 0.00000 0.02100 206.99225 0.00000 15.29939 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 100.60134 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 281468.75145 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 15.35515 0.02772 0.02772 0.71086 0.00000 16860.10200 0.00000 0.00000 569.05991 0.75252 0.95980 0.99005 0.97379 1.04959 49181.20375 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 15.27938 0.00000 15.27968 5.10358 61974.33047 0.00000 0.02100 29.03686 0.00000 15.27766 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 114.42739 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 15.55471 0.02733 0.02733 0.83857 0.00000 7455.94729 0.00000 0.00000 332.71910 0.74355 0.94622 0.98489 0.96355 1.04959 51618.28618 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 15.36496 0.00000 15.36520 4.52113 68037.52552 0.00000 0.02100 9.72886 0.00000 15.36362 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 33.42370 1.00000 0.00000 0.79505 1528.49318 632.87680 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 15.56616 0.02287 0.02287 0.82149 0.00000 3284.44340 0.00000 0.00000 181.52628 0.91161 0.96192 0.99079 0.97535 1.04959 28805.79516 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 15.88196 0.00000 15.88173 5.67630 49379.21811 0.00000 0.02100 10.20032 0.00000 15.87569 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 54.86686 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 14.49998 0.03532 0.03532 0.74368 0.00000 865.49912 0.00000 0.00000 52.66406 1.00000 0.78134 0.88702 0.82138 1.04959 8469.48376 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 14.27184 0.00000 14.27182 0.00000 116684.07919 0.00000 0.02100 0.13785 0.00000 14.24570 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.91031 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.62213 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.66556 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.02919 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.11212 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.72205 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.61029 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.11176 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.49309 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 13.55816 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 15.89354 0.02762 0.02762 0.72176 0.00000 6425.71002 0.00000 0.00000 395.03139 0.87110 0.94599 0.98480 0.96337 1.04959 36693.11146 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 15.88466 0.00000 15.88439 4.92256 151336.55892 0.00000 0.02100 223.59822 0.00000 15.88014 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 463.82460 1.00000 0.00000 142.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 16.34734 0.02234 0.02234 0.72384 0.00000 1542.80888 0.00000 0.00000 73.11324 1.00000 0.94361 0.98383 0.96153 1.04959 4807.93362 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 16.35412 0.00000 16.31137 2.24796 59811.89300 0.00000 0.02100 93.77917 0.00000 16.28886 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 104.18606 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 16.66110 0.06836 0.06836 0.69837 0.00000 12881.15613 0.00000 0.00000 466.75215 0.69005 0.80852 0.90660 0.84632 1.04959 77512.16500 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 16.31702 0.00000 16.29272 1.86949 333380.67360 0.00000 0.02100 675.55080 0.00000 16.31000 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 61.61450 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 16.03881 0.02573 0.02573 0.71615 0.00000 1568.75333 0.00000 0.00000 52.18221 1.00000 0.99845 0.99991 0.99935 1.04959 5587.70344 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 15.75103 0.00000 15.69860 4.61939 34979.68422 0.00000 0.02100 211.54608 0.00000 15.71247 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 102.81457 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 295427.91120 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 15.76974 0.02772 0.02772 0.71086 0.00000 17231.02406 0.00000 0.00000 581.57922 0.75252 0.95980 0.99005 0.97379 1.04959 51620.29610 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 15.69192 0.00000 15.69223 5.10358 61974.33047 0.00000 0.02100 29.67567 0.00000 15.69015 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 116.94479 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 15.97469 0.02733 0.02733 0.83857 0.00000 7619.97805 0.00000 0.00000 340.03891 0.74355 0.94622 0.98489 0.96355 1.04959 54178.24319 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 15.77981 0.00000 15.78006 4.52113 68037.52552 0.00000 0.02100 9.94290 0.00000 15.77843 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 34.15902 1.00000 0.00000 0.81254 1562.12001 646.80008 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 15.98645 0.02287 0.02287 0.82149 0.00000 3356.70112 0.00000 0.00000 185.51985 0.91161 0.96192 0.99079 0.97535 1.04959 30234.38962 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 16.31078 0.00000 16.31054 5.67630 49379.21811 0.00000 0.02100 10.42473 0.00000 16.30434 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 56.07393 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 14.89148 0.03532 0.03532 0.74368 0.00000 884.54009 0.00000 0.00000 53.82267 1.00000 0.78134 0.88702 0.82138 1.04959 8889.51929 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 14.65718 0.00000 14.65716 0.00000 116684.07919 0.00000 0.02100 0.14089 0.00000 14.63034 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.95234 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.60755 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.68057 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.04420 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 -0.09754 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.70965 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.59528 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.09675 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.47764 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 13.92414 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 16.32267 0.02762 0.02762 0.72176 0.00000 6567.07557 0.00000 0.00000 403.72208 0.87110 0.94599 0.98480 0.96337 1.04959 38512.86943 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 16.31355 0.00000 16.31327 4.92256 151336.55892 0.00000 0.02100 228.51738 0.00000 16.30890 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 474.02874 1.00000 0.00000 143.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 16.78872 0.02234 0.02234 0.72384 0.00000 1576.75066 0.00000 0.00000 74.72173 1.00000 0.94361 0.98383 0.96153 1.04959 5046.37826 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 16.79568 0.00000 16.75177 2.24796 59811.89300 0.00000 0.02100 95.84231 0.00000 16.72866 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 106.47815 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 17.11095 0.06836 0.06836 0.69837 0.00000 13164.54142 0.00000 0.00000 477.02069 0.69005 0.80852 0.90660 0.84632 1.04959 81356.30289 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 16.75758 0.00000 16.73262 1.86949 333380.67360 0.00000 0.02100 690.41291 0.00000 16.75037 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 62.97002 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 16.47186 0.02573 0.02573 0.71615 0.00000 1603.26588 0.00000 0.00000 53.33022 1.00000 0.99845 0.99991 0.99935 1.04959 5864.81998 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 16.17631 0.00000 16.12246 4.61939 34979.68422 0.00000 0.02100 216.20009 0.00000 16.13671 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 105.07649 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 310079.36143 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 16.19552 0.02772 0.02772 0.71086 0.00000 17610.10639 -0.00000 0.00000 594.37396 0.75252 0.95980 0.99005 0.97379 1.04959 54180.35279 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 16.11560 0.00000 16.11592 5.10358 61974.33047 0.00000 0.02100 30.32853 0.00000 16.11379 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 119.51757 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 16.40600 0.02733 0.02733 0.83857 0.00000 7787.61748 0.00000 0.00000 347.51977 0.74355 0.94622 0.98489 0.96355 1.04959 56865.15869 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 16.20587 0.00000 16.20612 4.52113 68037.52552 0.00000 0.02100 10.16164 0.00000 16.20445 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 34.91051 1.00000 0.00000 0.83042 1596.48663 661.02968 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 16.41809 0.02287 0.02287 0.82149 0.00000 3430.54850 0.00000 0.00000 189.60129 0.91161 0.96192 0.99079 0.97535 1.04959 31733.83377 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 16.75117 0.00000 16.75092 5.67630 49379.21811 0.00000 0.02100 10.65407 0.00000 16.74455 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 57.30756 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 15.29355 0.03532 0.03532 0.74368 0.00000 903.99997 0.00000 0.00000 55.00677 1.00000 0.78134 0.88702 0.82138 1.04959 9330.38606 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 15.05292 0.00000 15.05290 0.00000 116684.07919 0.00000 0.02100 0.14398 0.00000 15.02536 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 1.99529 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.59297 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.69559 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.05922 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.08296 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.69724 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.58026 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.08173 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.46219 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 14.30000 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 16.76338 0.02762 0.02762 0.72176 0.00000 6711.55116 0.00000 0.00000 412.60396 0.87110 0.94599 0.98480 0.96337 1.04959 40422.87647 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 16.75401 0.00000 16.75372 4.92256 151336.55892 0.00000 0.02100 233.54476 0.00000 16.74924 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 484.45737 1.00000 0.00000 144.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 17.24201 0.02234 0.02234 0.72384 0.00000 1611.43916 0.00000 0.00000 76.36561 1.00000 0.94361 0.98383 0.96153 1.04959 5296.64831 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 17.24916 0.00000 17.20407 2.24796 59811.89300 0.00000 0.02100 97.95084 0.00000 17.18033 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 108.82067 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 17.57295 0.06836 0.06836 0.69837 0.00000 13454.16118 0.00000 0.00000 487.51514 0.69005 0.80852 0.90660 0.84632 1.04959 85391.08694 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 17.21003 0.00000 17.18440 1.86949 333380.67360 0.00000 0.02100 705.60199 0.00000 17.20263 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 64.35536 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 16.91660 0.02573 0.02573 0.71615 0.00000 1638.53771 0.00000 0.00000 54.50348 1.00000 0.99845 0.99991 0.99935 1.04959 6155.67983 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 16.61307 0.00000 16.55776 4.61939 34979.68422 0.00000 0.02100 220.95649 0.00000 16.57240 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 107.38817 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 325457.43561 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 16.63280 0.02772 0.02772 0.71086 0.00000 17997.52853 0.00000 0.00000 607.45018 0.75252 0.95980 0.99005 0.97379 1.04959 56867.37292 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 16.55073 0.00000 16.55105 5.10358 61974.33047 0.00000 0.02100 30.99576 0.00000 16.54886 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 122.14696 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 16.84897 0.02733 0.02733 0.83857 0.00000 7958.94497 0.00000 0.00000 355.16520 0.74355 0.94622 0.98489 0.96355 1.04959 59685.32907 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 16.64342 0.00000 16.64368 4.52113 68037.52552 0.00000 0.02100 10.38520 0.00000 16.64197 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 35.67854 1.00000 0.00000 0.84869 1631.60932 675.57232 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 16.86137 0.02287 0.02287 0.82149 0.00000 3506.02053 0.00000 0.00000 193.77251 0.91161 0.96192 0.99079 0.97535 1.04959 33307.64135 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 17.20345 0.00000 17.20320 5.67630 49379.21811 0.00000 0.02100 10.88846 0.00000 17.19666 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 58.56832 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 15.70648 0.03532 0.03532 0.74368 0.00000 923.88795 0.00000 0.00000 56.21692 1.00000 0.78134 0.88702 0.82138 1.04959 9793.11718 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 15.45935 0.00000 15.45933 0.00000 116684.07919 0.00000 0.02100 0.14715 0.00000 15.43104 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.03918 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.57839 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.71060 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 0.00000 0.07423 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.06838 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.68484 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.56524 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.06671 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.44674 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 14.68600 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 17.21599 0.02762 0.02762 0.72176 0.00000 6859.20521 0.00000 0.00000 421.68124 0.87110 0.94599 0.98480 0.96337 1.04959 42427.60839 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 17.20637 0.00000 17.20607 4.92256 151336.55892 0.00000 0.02100 238.68275 0.00000 17.20147 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 495.11542 1.00000 0.00000 145.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 17.70755 0.02234 0.02234 0.72384 0.00000 1646.89080 0.00000 0.00000 78.04565 1.00000 0.94361 0.98383 0.96153 1.04959 5559.33026 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 17.71489 0.00000 17.66858 2.24796 59811.89300 0.00000 0.02100 100.10576 0.00000 17.64420 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 111.21472 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 18.04742 0.06836 0.06836 0.69837 0.00000 13750.15258 0.00000 0.00000 498.24047 0.69005 0.80852 0.90660 0.84632 1.04959 89625.97205 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 17.67470 0.00000 17.64838 1.86949 333380.67360 0.00000 0.02100 721.12522 0.00000 17.66710 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 65.77118 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 17.37335 0.02573 0.02573 0.71615 0.00000 1674.58552 0.00000 0.00000 55.70256 1.00000 0.99845 0.99991 0.99935 1.04959 6460.96458 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 17.06162 0.00000 17.00482 4.61939 34979.68422 0.00000 0.02100 225.81753 0.00000 17.01985 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 109.75071 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 341598.16992 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 17.08189 0.02772 0.02772 0.71086 0.00000 18393.47395 -0.00000 0.00000 620.81407 0.75252 0.95980 0.99005 0.97379 1.04959 59687.65310 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 16.99760 0.00000 16.99793 5.10358 61974.33047 0.00000 0.02100 31.67767 0.00000 16.99568 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 124.83419 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 17.30389 0.02733 0.02733 0.83857 0.00000 8134.04167 -0.00000 0.00000 362.97883 0.74355 0.94622 0.98489 0.96355 1.04959 62645.36295 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 17.09280 0.00000 17.09306 4.52113 68037.52552 0.00000 0.02100 10.61367 0.00000 17.09131 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 36.46347 1.00000 0.00000 0.86736 1667.50471 690.43491 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 17.31663 0.02287 0.02287 0.82149 0.00000 3583.15294 -0.00000 0.00000 198.03551 0.91161 0.96192 0.99079 0.97535 1.04959 34959.50034 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 17.66794 0.00000 17.66768 5.67630 49379.21811 0.00000 0.02100 11.12801 0.00000 17.66097 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 59.85682 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 16.13056 0.03532 0.03532 0.74368 0.00000 944.21348 -0.00000 0.00000 57.45369 1.00000 0.78134 0.88702 0.82138 1.04959 10278.79698 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 15.87676 0.00000 15.87673 0.00000 116684.07919 0.00000 0.02100 0.15039 0.00000 15.84768 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.08405 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.56381 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.72562 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.08925 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.05380 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.67243 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.55023 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.05170 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.43129 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 15.08243 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 17.68082 0.02762 0.02762 0.72176 0.00000 7010.10764 0.00000 0.00000 430.95823 0.87110 0.94599 0.98480 0.96337 1.04959 44531.76297 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 17.67094 0.00000 17.67064 4.92256 151336.55892 0.00000 0.02100 243.93376 0.00000 17.66591 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 506.00796 1.00000 0.00000 146.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 18.18565 0.02234 0.02234 0.72384 0.00000 1683.12238 0.00000 0.00000 79.76266 1.00000 0.94361 0.98383 0.96153 1.04959 5835.03966 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 18.19319 0.00000 18.14563 2.24796 59811.89300 0.00000 0.02100 102.30808 0.00000 18.12059 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 113.66144 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 18.53470 0.06836 0.06836 0.69837 0.00000 14052.65578 0.00000 0.00000 509.20175 0.69005 0.80852 0.90660 0.84632 1.04959 94070.88202 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 18.15192 0.00000 18.12489 1.86949 333380.67360 0.00000 0.02100 736.98997 0.00000 18.14411 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 67.21814 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 17.84243 0.02573 0.02573 0.71615 0.00000 1711.42639 0.00000 0.00000 56.92802 1.00000 0.99845 0.99991 0.99935 1.04959 6781.38962 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 17.52229 0.00000 17.46395 4.61939 34979.68422 0.00000 0.02100 230.78551 0.00000 17.47939 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 112.16522 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 358539.38772 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 17.54310 0.02772 0.02772 0.71086 0.00000 18798.13017 0.00000 0.00000 634.47198 0.75252 0.95980 0.99005 0.97379 1.04959 62647.80225 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 17.45653 0.00000 17.45687 5.10358 61974.33047 0.00000 0.02100 32.37458 0.00000 17.45456 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 127.58054 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 17.77109 0.02733 0.02733 0.83857 0.00000 8312.99049 0.00000 0.00000 370.96436 0.74355 0.94622 0.98489 0.96355 1.04959 65752.19675 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 17.55430 0.00000 17.55458 4.52113 68037.52552 0.00000 0.02100 10.84717 0.00000 17.55277 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 37.26567 1.00000 0.00000 0.88644 1704.18979 705.62447 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 17.78418 0.02287 0.02287 0.82149 0.00000 3661.98227 0.00000 0.00000 202.39229 0.91161 0.96192 0.99079 0.97535 1.04959 36693.28161 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 18.14498 0.00000 18.14471 5.67630 49379.21811 0.00000 0.02100 11.37282 0.00000 18.13781 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 61.17367 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 16.56608 0.03532 0.03532 0.74368 0.00000 964.98616 0.00000 0.00000 58.71767 1.00000 0.78134 0.88702 0.82138 1.04959 10788.56358 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 16.30543 0.00000 16.30540 0.00000 116684.07919 0.00000 0.02100 0.15370 0.00000 16.27557 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.12989 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.54923 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.74063 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.10427 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 -0.03922 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.66003 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.53521 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -1.03668 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.41584 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 15.48955 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 18.15821 0.02762 0.02762 0.72176 0.00000 7164.32993 0.00000 0.00000 440.43930 0.87110 0.94599 0.98480 0.96337 1.04959 46740.27099 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 18.14806 0.00000 18.14775 4.92256 151336.55892 0.00000 0.02100 249.30030 0.00000 18.14289 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 517.14013 1.00000 0.00000 147.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 18.67666 0.02234 0.02234 0.72384 0.00000 1720.15105 0.00000 0.00000 81.51743 1.00000 0.94361 0.98383 0.96153 1.04959 6124.42258 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 18.68441 0.00000 18.63557 2.24796 59811.89300 0.00000 0.02100 104.55886 0.00000 18.60985 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 116.16199 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 19.03513 0.06836 0.06836 0.69837 0.00000 14361.81404 0.00000 0.00000 520.40419 0.69005 0.80852 0.90660 0.84632 1.04959 98736.23284 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 18.64202 0.00000 18.61426 1.86949 333380.67360 0.00000 0.02100 753.20374 0.00000 18.63401 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 68.69694 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 18.32417 0.02573 0.02573 0.71615 0.00000 1749.07775 0.00000 0.00000 58.18043 1.00000 0.99845 0.99991 0.99935 1.04959 7117.70582 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 17.99539 0.00000 17.93548 4.61939 34979.68422 0.00000 0.02100 235.86279 0.00000 17.95133 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 114.63286 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 376320.78819 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 18.01676 0.02772 0.02772 0.71086 0.00000 19211.68882 -0.00000 0.00000 648.43035 0.75252 0.95980 0.99005 0.97379 1.04959 65754.75702 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 17.92786 0.00000 17.92821 5.10358 61974.33047 0.00000 0.02100 33.08682 0.00000 17.92584 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 130.38731 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 18.25091 0.02733 0.02733 0.83857 0.00000 8495.87619 0.00000 0.00000 379.12557 0.74355 0.94622 0.98489 0.96355 1.04959 69013.11084 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 18.02827 0.00000 18.02855 4.52113 68037.52552 0.00000 0.02100 11.08581 0.00000 18.02670 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 38.08551 1.00000 0.00000 0.90594 1741.68195 721.14820 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 18.26435 0.02287 0.02287 0.82149 0.00000 3742.54583 -0.00000 0.00000 206.84491 0.91161 0.96192 0.99079 0.97535 1.04959 38513.04802 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 18.63489 0.00000 18.63462 5.67630 49379.21811 0.00000 0.02100 11.62302 0.00000 18.62753 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 62.51949 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 17.01337 0.03532 0.03532 0.74368 0.00000 986.21585 0.00000 0.00000 60.00946 1.00000 0.78134 0.88702 0.82138 1.04959 11323.61155 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 16.74568 0.00000 16.74565 0.00000 116684.07919 0.00000 0.02100 0.15708 0.00000 16.71501 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.17675 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.53465 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.75565 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.11928 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 -0.02464 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.64763 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.52020 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.02167 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.40039 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 15.90767 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 18.64848 0.02762 0.02762 0.72176 0.00000 7321.94511 0.00000 0.00000 450.12896 0.87110 0.94599 0.98480 0.96337 1.04959 49058.30773 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 18.63806 0.00000 18.63773 4.92256 151336.55892 0.00000 0.02100 254.78491 0.00000 18.63275 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 528.51720 1.00000 0.00000 148.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 19.18093 0.02234 0.02234 0.72384 0.00000 1757.99435 0.00000 0.00000 83.31082 1.00000 0.94361 0.98383 0.96153 1.04959 6428.15716 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 19.18889 0.00000 19.13873 2.24796 59811.89300 0.00000 0.02100 106.85915 0.00000 19.11232 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 118.71756 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 19.54908 0.06836 0.06836 0.69837 0.00000 14677.77379 0.00000 0.00000 531.85307 0.69005 0.80852 0.90660 0.84632 1.04959 103632.95704 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 19.14535 0.00000 19.11684 1.86949 333380.67360 0.00000 0.02100 769.77421 0.00000 19.13712 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 70.20827 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 18.81893 0.02573 0.02573 0.71615 0.00000 1787.55744 0.00000 0.00000 59.46040 1.00000 0.99845 0.99991 0.99935 1.04959 7470.70129 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 18.48126 0.00000 18.41974 4.61939 34979.68422 0.00000 0.02100 241.05177 0.00000 18.43602 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 117.15478 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 394984.03933 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 18.50321 0.02772 0.02772 0.71086 0.00000 19634.34575 0.00000 0.00000 662.69581 0.75252 0.95980 0.99005 0.97379 1.04959 69015.79808 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 18.41191 0.00000 18.41227 5.10358 61974.33047 0.00000 0.02100 33.81473 0.00000 18.40984 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 133.25583 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 18.74369 0.02733 0.02733 0.83857 0.00000 8682.78537 0.00000 0.00000 387.46633 0.74355 0.94622 0.98489 0.96355 1.04959 72435.74669 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 18.51503 0.00000 18.51532 4.52113 68037.52552 0.00000 0.02100 11.32970 0.00000 18.51342 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 38.92339 1.00000 0.00000 0.92587 1779.99893 737.01345 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 18.75749 0.02287 0.02287 0.82149 0.00000 3824.88180 0.00000 0.00000 211.39550 0.91161 0.96192 0.99079 0.97535 1.04959 40423.06392 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 19.13804 0.00000 19.13775 5.67630 49379.21811 0.00000 0.02100 11.87873 0.00000 19.13048 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 63.89492 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 17.47273 0.03532 0.03532 0.74368 0.00000 1007.91259 0.00000 0.00000 61.32967 1.00000 0.78134 0.88702 0.82138 1.04959 11885.19468 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 17.19781 0.00000 17.19778 0.00000 116684.07919 0.00000 0.02100 0.16054 0.00000 17.16631 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.22464 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.52007 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.77066 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 0.00000 0.13430 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 -0.01006 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.63522 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.50518 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -1.00665 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.38494 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 16.33707 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 19.15199 0.02762 0.02762 0.72176 0.00000 7483.02782 0.00000 0.00000 460.03179 0.87110 0.94599 0.98480 0.96337 1.04959 51491.30518 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 19.14128 0.00000 19.14095 4.92256 151336.55892 0.00000 0.02100 260.39017 0.00000 19.13583 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 540.14457 1.00000 0.00000 149.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 19.69882 0.02234 0.02234 0.72384 0.00000 1796.67021 0.00000 0.00000 85.14365 1.00000 0.94361 0.98383 0.96153 1.04959 6746.95515 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 19.70699 0.00000 19.65547 2.24796 59811.89300 0.00000 0.02100 109.21005 0.00000 19.62835 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 121.32934 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 20.07691 0.06836 0.06836 0.69837 0.00000 15000.68464 0.00000 0.00000 543.55383 0.69005 0.80852 0.90660 0.84632 1.04959 108772.52935 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 19.66228 0.00000 19.63300 1.86949 333380.67360 0.00000 0.02100 786.70924 0.00000 19.65383 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 71.75285 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 19.32704 0.02573 0.02573 0.71615 0.00000 1826.88368 0.00000 0.00000 60.76853 1.00000 0.99845 0.99991 0.99935 1.04959 7841.20321 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 18.98026 0.00000 18.91707 4.61939 34979.68422 0.00000 0.02100 246.35490 0.00000 18.93379 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 119.73218 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 414572.87565 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 19.00280 0.02772 0.02772 0.71086 0.00000 20066.30113 0.00000 0.00000 677.27511 0.75252 0.95980 0.99005 0.97379 1.04959 72438.56720 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 18.90903 0.00000 18.90940 5.10358 61974.33047 0.00000 0.02100 34.55865 0.00000 18.90690 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 136.18746 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 19.24977 0.02733 0.02733 0.83857 0.00000 8873.80655 0.00000 0.00000 395.99058 0.74355 0.94622 0.98489 0.96355 1.04959 76028.12472 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 19.01494 0.00000 19.01523 4.52113 68037.52552 0.00000 0.02100 11.57895 0.00000 19.01328 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 39.77971 1.00000 0.00000 0.94624 1819.15889 753.22773 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 19.26394 0.02287 0.02287 0.82149 0.00000 3909.02916 0.00000 0.00000 216.04620 0.91161 0.96192 0.99079 0.97535 1.04959 42427.80513 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 19.65476 0.00000 19.65447 5.67630 49379.21811 0.00000 0.02100 12.14006 0.00000 19.64700 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 65.30061 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 17.94449 0.03532 0.03532 0.74368 0.00000 1030.08665 0.00000 0.00000 62.67892 1.00000 0.78134 0.88702 0.82138 1.04959 12474.62896 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 17.66215 0.00000 17.66212 0.00000 116684.07919 0.00000 0.02100 0.16407 0.00000 17.62980 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.27358 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.50549 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.78568 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.14931 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.00452 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.62282 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.49017 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.99164 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.36949 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 16.77806 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 19.66909 0.02762 0.02762 0.72176 0.00000 7647.65434 0.00000 0.00000 470.15249 0.87110 0.94599 0.98480 0.96337 1.04959 54044.96470 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 19.65810 0.00000 19.65776 4.92256 151336.55892 0.00000 0.02100 266.11875 0.00000 19.65250 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 552.02775 1.00000 0.00000 150.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 20.23069 0.02234 0.02234 0.72384 0.00000 1836.19693 0.00000 0.00000 87.01681 1.00000 0.94361 0.98383 0.96153 1.04959 7081.56361 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 20.23908 0.00000 20.18617 2.24796 59811.89300 0.00000 0.02100 111.61267 0.00000 20.15831 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 123.99858 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 20.61898 0.06836 0.06836 0.69837 0.00000 15330.69953 0.00000 0.00000 555.51201 0.69005 0.80852 0.90660 0.84632 1.04959 114166.99359 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 20.19316 0.00000 20.16309 1.86949 333380.67360 0.00000 0.02100 804.01683 0.00000 20.18448 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 73.33141 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 19.84887 0.02573 0.02573 0.71615 0.00000 1867.07510 0.00000 0.00000 62.10544 1.00000 0.99845 0.99991 0.99935 1.04959 8230.07980 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 19.49273 0.00000 19.42783 4.61939 34979.68422 0.00000 0.02100 251.77471 0.00000 19.44500 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 122.36629 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 435133.20061 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 19.51588 0.02772 0.02772 0.71086 0.00000 20507.75953 0.00000 0.00000 692.17516 0.75252 0.95980 0.99005 0.97379 1.04959 76031.08511 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 19.41958 0.00000 19.41996 5.10358 61974.33047 0.00000 0.02100 35.31894 0.00000 19.41739 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 139.18358 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 19.76951 0.02733 0.02733 0.83857 0.00000 9069.03019 0.00000 0.00000 404.70237 0.74355 0.94622 0.98489 0.96355 1.04959 79798.66312 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 19.52834 0.00000 19.52865 4.52113 68037.52552 0.00000 0.02100 11.83369 0.00000 19.52664 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 40.65486 1.00000 0.00000 0.96706 1859.18036 769.79874 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 19.78407 0.02287 0.02287 0.82149 0.00000 3995.02775 0.00000 0.00000 220.79921 0.91161 0.96192 0.99079 0.97535 1.04959 44531.96947 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 20.18544 0.00000 20.18514 5.67630 49379.21811 0.00000 0.02100 12.40714 0.00000 20.17747 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 66.73722 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 18.42899 0.03532 0.03532 0.74368 0.00000 1052.74855 0.00000 0.00000 64.05786 1.00000 0.78134 0.88702 0.82138 1.04959 13093.29564 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 18.13903 0.00000 18.13900 0.00000 116684.07919 0.00000 0.02100 0.16768 0.00000 18.10581 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.32360 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.49091 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.80069 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.16433 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.01910 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.61041 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.47515 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.97662 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.35404 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 17.23096 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 20.20016 0.02762 0.02762 0.72176 0.00000 7815.90265 0.00000 0.00000 480.49584 0.87110 0.94599 0.98480 0.96337 1.04959 56725.27038 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 20.18887 0.00000 20.18852 4.92256 151336.55892 0.00000 0.02100 271.97336 0.00000 20.18312 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 564.17235 1.00000 0.00000 151.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 20.77692 0.02234 0.02234 0.72384 0.00000 1876.59325 0.00000 0.00000 88.93118 1.00000 0.94361 0.98383 0.96153 1.04959 7432.76664 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 20.78553 0.00000 20.73120 2.24796 59811.89300 0.00000 0.02100 114.06815 0.00000 20.70259 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 126.72655 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 21.17570 0.06836 0.06836 0.69837 0.00000 15667.97475 0.00000 0.00000 567.73327 0.69005 0.80852 0.90660 0.84632 1.04959 119828.99085 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 20.73838 0.00000 20.70749 1.86949 333380.67360 0.00000 0.02100 821.70519 0.00000 20.72946 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 74.94470 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 20.38479 0.02573 0.02573 0.71615 0.00000 1908.15073 0.00000 0.00000 63.47175 1.00000 0.99845 0.99991 0.99935 1.04959 8638.24233 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 20.01903 0.00000 19.95239 4.61939 34979.68422 0.00000 0.02100 257.31375 0.00000 19.97002 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 125.05835 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 456713.19422 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 20.04280 0.02772 0.02772 0.71086 0.00000 20958.93000 0.00000 0.00000 707.40300 0.75252 0.95980 0.99005 0.97379 1.04959 79801.77034 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 19.94390 0.00000 19.94430 5.10358 61974.33047 0.00000 0.02100 36.09596 0.00000 19.94166 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 142.24562 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 20.30329 0.02733 0.02733 0.83857 0.00000 9268.54875 0.00000 0.00000 413.60582 0.74355 0.94622 0.98489 0.96355 1.04959 83756.19759 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 20.05561 0.00000 20.05592 4.52113 68037.52552 0.00000 0.02100 12.09403 0.00000 20.05386 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 41.54927 1.00000 0.00000 0.98834 1900.08231 786.73430 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 20.31824 0.02287 0.02287 0.82149 0.00000 4082.91832 0.00000 0.00000 225.65679 0.91161 0.96192 0.99079 0.97535 1.04959 46740.48772 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 20.73045 0.00000 20.73014 5.67630 49379.21811 0.00000 0.02100 12.68010 0.00000 20.72226 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 68.20544 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 18.92657 0.03532 0.03532 0.74368 0.00000 1075.90900 0.00000 0.00000 65.46713 1.00000 0.78134 0.88702 0.82138 1.04959 13742.64447 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 18.62878 0.00000 18.62875 0.00000 116684.07919 0.00000 0.02100 0.17137 0.00000 18.59466 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.37472 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.47633 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.81571 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.17934 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.03368 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.59801 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.46014 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.96161 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.33859 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 17.69608 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 20.74556 0.02762 0.02762 0.72176 0.00000 7987.85242 0.00000 0.00000 491.06674 0.87110 0.94599 0.98480 0.96337 1.04959 59538.50314 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 20.73397 0.00000 20.73361 4.92256 151336.55892 0.00000 0.02100 277.95677 0.00000 20.72806 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 576.58414 1.00000 0.00000 152.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 21.33789 0.02234 0.02234 0.72384 0.00000 1917.87828 0.00000 0.00000 90.88767 1.00000 0.94361 0.98383 0.96153 1.04959 7801.38723 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 21.34674 0.00000 21.29094 2.24796 59811.89300 0.00000 0.02100 116.57765 0.00000 21.26156 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 129.51453 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 21.74744 0.06836 0.06836 0.69837 0.00000 16012.67001 0.00000 0.00000 580.22340 0.69005 0.80852 0.90660 0.84632 1.04959 125771.78918 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 21.29831 0.00000 21.26659 1.86949 333380.67360 0.00000 0.02100 839.78270 0.00000 21.28916 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 76.59349 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 20.93518 0.02573 0.02573 0.71615 0.00000 1950.13003 0.00000 0.00000 64.86813 1.00000 0.99845 0.99991 0.99935 1.04959 9066.64727 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 20.55954 0.00000 20.49110 4.61939 34979.68422 0.00000 0.02100 262.97465 0.00000 20.50921 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 127.80963 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 479363.42592 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 20.58396 0.02772 0.02772 0.71086 0.00000 21420.02623 -0.00000 0.00000 722.96586 0.75252 0.95980 0.99005 0.97379 1.04959 83759.45891 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 20.48239 0.00000 20.48279 5.10358 61974.33047 0.00000 0.02100 36.89007 0.00000 20.48008 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 145.37502 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 20.85148 0.02733 0.02733 0.83857 0.00000 9472.45672 -0.00000 0.00000 422.70514 0.74355 0.94622 0.98489 0.96355 1.04959 87910.00201 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 20.59711 0.00000 20.59743 4.52113 68037.52552 0.00000 0.02100 12.36010 0.00000 20.59531 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 42.46335 1.00000 0.00000 1.01008 1941.88410 804.04245 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 20.86683 0.02287 0.02287 0.82149 0.00000 4172.74247 0.00000 0.00000 230.62124 0.91161 0.96192 0.99079 0.97535 1.04959 49058.53522 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 21.29017 0.00000 21.28986 5.67630 49379.21811 0.00000 0.02100 12.95906 0.00000 21.28176 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 69.70596 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 19.43759 0.03532 0.03532 0.74368 0.00000 1099.57899 0.00000 0.00000 66.90740 1.00000 0.78134 0.88702 0.82138 1.04959 14424.19711 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 19.13176 0.00000 19.13173 0.00000 116684.07919 0.00000 0.02100 0.17514 0.00000 19.09672 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.42696 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.46175 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.83073 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.19436 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 0.04826 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.58561 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.44512 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.94659 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.32314 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 18.17376 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 21.30569 0.02762 0.02762 0.72176 0.00000 8163.58508 0.00000 0.00000 501.87020 0.87110 0.94599 0.98480 0.96337 1.04959 62491.25534 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 21.29378 0.00000 21.29342 4.92256 151336.55892 0.00000 0.02100 284.07182 0.00000 21.28772 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 589.26898 1.00000 0.00000 153.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 21.91402 0.02234 0.02234 0.72384 0.00000 1960.07158 0.00000 0.00000 92.88719 1.00000 0.94361 0.98383 0.96153 1.04959 8188.28918 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 21.92310 0.00000 21.86579 2.24796 59811.89300 0.00000 0.02100 119.14236 0.00000 21.83562 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 132.36385 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 22.33462 0.06836 0.06836 0.69837 0.00000 16364.94857 0.00000 0.00000 592.98830 0.69005 0.80852 0.90660 0.84632 1.04959 132009.31461 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 21.87337 0.00000 21.84079 1.86949 333380.67360 0.00000 0.02100 858.25791 0.00000 21.86396 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 78.27854 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 21.50043 0.02573 0.02573 0.71615 0.00000 1993.03286 0.00000 0.00000 66.29523 1.00000 0.99845 0.99991 0.99935 1.04959 9516.29853 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 21.11465 0.00000 21.04436 4.61939 34979.68422 0.00000 0.02100 268.76009 0.00000 21.06296 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 130.62144 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 503136.97308 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 21.13973 0.02772 0.02772 0.71086 0.00000 21891.26656 0.00000 0.00000 738.87110 0.75252 0.95980 0.99005 0.97379 1.04959 87913.42506 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 21.03541 0.00000 21.03583 5.10358 61974.33047 0.00000 0.02100 37.70165 0.00000 21.03304 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 148.57327 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 21.41447 0.02733 0.02733 0.83857 0.00000 9680.85066 0.00000 0.00000 432.00465 0.74355 0.94622 0.98489 0.96355 1.04959 92269.81017 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 21.15323 0.00000 21.15356 4.52113 68037.52552 0.00000 0.02100 12.63202 0.00000 21.15139 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 43.39754 1.00000 0.00000 1.03230 1984.60553 821.73137 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 21.43024 0.02287 0.02287 0.82149 0.00000 4264.54276 0.00000 0.00000 235.69490 0.91161 0.96192 0.99079 0.97535 1.04959 51491.54395 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 21.86501 0.00000 21.86468 5.67630 49379.21811 0.00000 0.02100 13.24416 0.00000 21.85637 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 71.23949 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 19.96241 0.03532 0.03532 0.74368 0.00000 1123.76971 0.00000 0.00000 68.37937 1.00000 0.78134 0.88702 0.82138 1.04959 15139.55066 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 19.64832 0.00000 19.64829 0.00000 116684.07919 0.00000 0.02100 0.17899 0.00000 19.61233 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.48036 1.00000 0.00000 -0.01091 -0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.44717 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.84574 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.20937 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.06284 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.57320 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.43011 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.93158 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.30769 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 18.66433 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 21.88094 0.02762 0.02762 0.72176 0.00000 8343.18386 0.00000 0.00000 512.91134 0.87110 0.94599 0.98480 0.96337 1.04959 65590.44632 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 21.86872 0.00000 21.86834 4.92256 151336.55892 0.00000 0.02100 290.32140 0.00000 21.86249 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 602.23289 1.00000 0.00000 154.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 22.50570 0.02234 0.02234 0.72384 0.00000 2003.19313 0.00000 0.00000 94.93071 1.00000 0.94361 0.98383 0.96153 1.04959 8594.37915 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 22.51503 0.00000 22.45617 2.24796 59811.89300 0.00000 0.02100 121.76349 0.00000 22.42518 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 135.27586 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 22.93766 0.06836 0.06836 0.69837 0.00000 16724.97725 0.00000 0.00000 606.03404 0.69005 0.80852 0.90660 0.84632 1.04959 138556.18385 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 22.46395 0.00000 22.43049 1.86949 333380.67360 0.00000 0.02100 877.13957 0.00000 22.45429 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 80.00067 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 22.08094 0.02573 0.02573 0.71615 0.00000 2036.87956 0.00000 0.00000 67.75372 1.00000 0.99845 0.99991 0.99935 1.04959 9988.24979 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 21.68475 0.00000 21.61256 4.61939 34979.68422 0.00000 0.02100 274.67281 0.00000 21.63166 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 133.49511 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 528089.54541 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 21.71050 0.02772 0.02772 0.71086 0.00000 22372.87417 -0.00000 0.00000 755.12626 0.75252 0.95980 0.99005 0.97379 1.04959 92273.40299 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 21.60337 0.00000 21.60379 5.10358 61974.33047 0.00000 0.02100 38.53108 0.00000 21.60094 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 151.84188 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 21.99266 0.02733 0.02733 0.83857 0.00000 9893.82926 -0.00000 0.00000 441.50875 0.74355 0.94622 0.98489 0.96355 1.04959 96845.83864 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 21.72437 0.00000 21.72471 4.52113 68037.52552 0.00000 0.02100 12.90992 0.00000 21.72247 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 44.35229 1.00000 0.00000 1.05501 2028.26682 839.80945 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 22.00885 0.02287 0.02287 0.82149 0.00000 4358.36265 -0.00000 0.00000 240.88019 0.91161 0.96192 0.99079 0.97535 1.04959 54045.21531 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 22.45536 0.00000 22.45503 5.67630 49379.21811 0.00000 0.02100 13.53553 0.00000 22.44649 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 72.80676 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 20.50139 0.03532 0.03532 0.74368 0.00000 1148.49263 0.00000 0.00000 69.88371 1.00000 0.78134 0.88702 0.82138 1.04959 15890.38146 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 20.17882 0.00000 20.17879 0.00000 116684.07919 0.00000 0.02100 0.18293 0.00000 20.14187 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.53492 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.43259 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.86076 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.22439 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.07742 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.56080 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.41509 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.91656 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.29224 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 19.16814 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 22.47173 0.02762 0.02762 0.72176 0.00000 8526.73381 -0.00000 0.00000 524.19538 0.87110 0.94599 0.98480 0.96337 1.04959 68843.33856 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 22.45917 0.00000 22.45878 4.92256 151336.55892 0.00000 0.02100 296.70846 0.00000 22.45277 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 615.48201 1.00000 0.00000 155.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 23.11335 0.02234 0.02234 0.72384 0.00000 2047.26335 0.00000 0.00000 97.01919 1.00000 0.94361 0.98383 0.96153 1.04959 9020.60875 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 23.12293 0.00000 23.06249 2.24796 59811.89300 0.00000 0.02100 124.44228 0.00000 23.03066 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 138.25192 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 23.55697 0.06836 0.06836 0.69837 0.00000 17092.92656 0.00000 0.00000 619.36678 0.69005 0.80852 0.90660 0.84632 1.04959 145427.73849 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 23.07048 0.00000 23.03612 1.86949 333380.67360 0.00000 0.02100 896.43663 0.00000 23.06056 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 81.76068 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 22.67712 0.02573 0.02573 0.71615 0.00000 2081.69089 0.00000 0.00000 69.24431 1.00000 0.99845 0.99991 0.99935 1.04959 10483.60700 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 22.27023 0.00000 22.19610 4.61939 34979.68422 0.00000 0.02100 280.71561 0.00000 22.21571 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 136.43200 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 554279.61549 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 22.29668 0.02772 0.02772 0.71086 0.00000 22865.07715 0.00000 0.00000 771.73903 0.75252 0.95980 0.99005 0.97379 1.04959 96849.60964 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 22.18666 0.00000 22.18710 5.10358 61974.33047 0.00000 0.02100 39.37877 0.00000 22.18416 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 155.18240 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 22.58646 0.02733 0.02733 0.83857 0.00000 10111.49339 0.00000 0.00000 451.22193 0.74355 0.94622 0.98489 0.96355 1.04959 101648.81064 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 22.31093 0.00000 22.31127 4.52113 68037.52552 0.00000 0.02100 13.19394 0.00000 22.30898 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 45.32804 1.00000 0.00000 1.07822 2072.88867 858.28525 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 22.60309 0.02287 0.02287 0.82149 0.00000 4454.24658 0.00000 0.00000 246.17955 0.91161 0.96192 0.99079 0.97535 1.04959 56725.53342 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 23.06166 0.00000 23.06132 5.67630 49379.21811 0.00000 0.02100 13.83331 0.00000 23.05255 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 74.40850 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 21.05493 0.03532 0.03532 0.74368 0.00000 1173.75946 0.00000 0.00000 71.42115 1.00000 0.78134 0.88702 0.82138 1.04959 16678.44895 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 20.72365 0.00000 20.72362 0.00000 116684.07919 0.00000 0.02100 0.18695 0.00000 20.68570 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.59069 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.41801 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.87577 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.23940 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.09200 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.54839 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.40008 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.90154 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.27678 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 19.68555 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 23.07847 0.02762 0.02762 0.72176 0.00000 8714.32186 0.00000 0.00000 535.72768 0.87110 0.94599 0.98480 0.96337 1.04959 72257.55473 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 23.06557 0.00000 23.06517 4.92256 151336.55892 0.00000 0.02100 303.23605 0.00000 23.05900 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 629.02261 1.00000 0.00000 156.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 23.73741 0.02234 0.02234 0.72384 0.00000 2092.30312 0.00000 0.00000 99.15361 1.00000 0.94361 0.98383 0.96153 1.04959 9467.97677 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 23.74725 0.00000 23.68517 2.24796 59811.89300 0.00000 0.02100 127.18001 0.00000 23.65249 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 141.29346 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 24.19301 0.06836 0.06836 0.69837 0.00000 17468.97075 0.00000 0.00000 632.99284 0.69005 0.80852 0.90660 0.84632 1.04959 152640.08097 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 23.69338 0.00000 23.65809 1.86949 333380.67360 0.00000 0.02100 916.15823 0.00000 23.68319 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 83.55942 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 23.28941 0.02573 0.02573 0.71615 0.00000 2127.48807 0.00000 0.00000 70.76768 1.00000 0.99845 0.99991 0.99935 1.04959 11003.53094 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 22.87153 0.00000 22.79539 4.61939 34979.68422 0.00000 0.02100 286.89135 0.00000 22.81554 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 139.43350 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 581768.55575 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 22.89869 0.02772 0.02772 0.71086 0.00000 23368.10858 -0.00000 0.00000 788.71728 0.75252 0.95980 0.99005 0.97379 1.04959 101652.76866 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 22.78570 0.00000 22.78615 5.10358 61974.33047 0.00000 0.02100 40.24510 0.00000 22.78313 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 158.59641 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 23.19629 0.02733 0.02733 0.83857 0.00000 10333.94613 0.00000 0.00000 461.14881 0.74355 0.94622 0.98489 0.96355 1.04959 106689.98121 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 22.91332 0.00000 22.91368 4.52113 68037.52552 0.00000 0.02100 13.48421 0.00000 22.91132 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 46.32526 1.00000 0.00000 1.10194 2118.49220 877.16751 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 23.21338 0.02287 0.02287 0.82149 0.00000 4552.23996 -0.00000 0.00000 251.59550 0.91161 0.96192 0.99079 0.97535 1.04959 59538.77922 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 23.68432 0.00000 23.68397 5.67630 49379.21811 0.00000 0.02100 14.13765 0.00000 23.67497 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 76.04549 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 21.62341 0.03532 0.03532 0.74368 0.00000 1199.58215 0.00000 0.00000 72.99242 1.00000 0.78134 0.88702 0.82138 1.04959 17505.59986 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 21.28319 0.00000 21.28316 0.00000 116684.07919 0.00000 0.02100 0.19106 0.00000 21.24421 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.64769 1.00000 0.00000 -0.01091 0.00000 6.37971 -0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.40343 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.89079 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.25442 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.10658 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.53599 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.38506 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.88653 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.26133 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 20.21693 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 23.70159 0.02762 0.02762 0.72176 0.00000 8906.03684 -0.00000 0.00000 547.51368 0.87110 0.94599 0.98480 0.96337 1.04959 75841.09551 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 23.68834 0.00000 23.68793 4.92256 151336.55892 0.00000 0.02100 309.90724 0.00000 23.68159 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 642.86110 1.00000 0.00000 157.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 24.37832 0.02234 0.02234 0.72384 0.00000 2138.33377 0.00000 0.00000 101.33499 1.00000 0.94361 0.98383 0.96153 1.04959 9937.53156 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 24.38843 0.00000 24.32467 2.24796 59811.89300 0.00000 0.02100 129.97797 0.00000 24.29111 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 144.40192 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 24.84622 0.06836 0.06836 0.69837 0.00000 17853.28791 0.00000 0.00000 646.91868 0.69005 0.80852 0.90660 0.84632 1.04959 160210.11232 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 24.33310 0.00000 24.29686 1.86949 333380.67360 0.00000 0.02100 936.31370 0.00000 24.32264 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 85.39772 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 23.91822 0.02573 0.02573 0.71615 0.00000 2174.29278 0.00000 0.00000 72.32457 1.00000 0.99845 0.99991 0.99935 1.04959 11549.24000 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 23.48906 0.00000 23.41087 4.61939 34979.68422 0.00000 0.02100 293.20295 0.00000 23.43156 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 142.50104 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 610620.78237 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 23.51696 0.02772 0.02772 0.71086 0.00000 23882.20671 0.00000 0.00000 806.06905 0.75252 0.95980 0.99005 0.97379 1.04959 106694.13552 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 23.40092 0.00000 23.40138 5.10358 61974.33047 0.00000 0.02100 41.13049 0.00000 23.39828 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 162.08553 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 23.82259 0.02733 0.02733 0.83857 0.00000 10561.29283 0.00000 0.00000 471.29408 0.74355 0.94622 0.98489 0.96355 1.04959 111981.16356 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 23.53198 0.00000 23.53235 4.52113 68037.52552 0.00000 0.02100 13.78086 0.00000 23.52993 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 47.34441 1.00000 0.00000 1.12618 2165.09900 896.46519 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 23.84014 0.02287 0.02287 0.82149 0.00000 4652.38918 0.00000 0.00000 257.13060 0.91161 0.96192 0.99079 0.97535 1.04959 62491.54512 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 24.32380 0.00000 24.32344 5.67630 49379.21811 0.00000 0.02100 14.44868 0.00000 24.31419 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 77.71849 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 22.20725 0.03532 0.03532 0.74368 0.00000 1225.97295 0.00000 0.00000 74.59825 1.00000 0.78134 0.88702 0.82138 1.04959 18373.77248 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 21.85783 0.00000 21.85780 0.00000 116684.07919 0.00000 0.02100 0.19527 0.00000 21.81780 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.70594 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.38885 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.90580 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.26943 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.12116 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.52359 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.37004 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.87151 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.24588 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 20.76265 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 24.34153 0.02762 0.02762 0.72176 0.00000 9101.96955 0.00000 0.00000 559.55897 0.87110 0.94599 0.98480 0.96337 1.04959 79602.35839 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 24.32792 0.00000 24.32751 4.92256 151336.55892 0.00000 0.02100 316.72519 0.00000 24.32100 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 657.00404 1.00000 0.00000 158.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 25.03654 0.02234 0.02234 0.72384 0.00000 2185.37709 0.00000 0.00000 103.56435 1.00000 0.94361 0.98383 0.96153 1.04959 10430.37344 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 25.04692 0.00000 24.98144 2.24796 59811.89300 0.00000 0.02100 132.83748 0.00000 24.94697 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 147.57876 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 25.51707 0.06836 0.06836 0.69837 0.00000 18246.06004 0.00000 0.00000 661.15088 0.69005 0.80852 0.90660 0.84632 1.04959 168155.57177 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 24.99009 0.00000 24.95288 1.86949 333380.67360 0.00000 0.02100 956.91259 0.00000 24.97935 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 87.27647 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 24.56401 0.02573 0.02573 0.71615 0.00000 2222.12720 0.00000 0.00000 73.91571 1.00000 0.99845 0.99991 0.99935 1.04959 12122.01294 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 24.12327 0.00000 24.04296 4.61939 34979.68422 0.00000 0.02100 299.65342 0.00000 24.06421 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 145.63606 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 640903.90617 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 24.15192 0.02772 0.02772 0.71086 0.00000 24407.61498 0.00000 0.00000 823.80256 0.75252 0.95980 0.99005 0.97379 1.04959 111985.52390 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 24.03274 0.00000 24.03321 5.10358 61974.33047 0.00000 0.02100 42.03536 0.00000 24.03003 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 165.65141 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 24.46580 0.02733 0.02733 0.83857 0.00000 10793.64115 0.00000 0.00000 481.66254 0.74355 0.94622 0.98489 0.96355 1.04959 117534.75679 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 24.16734 0.00000 24.16772 4.52113 68037.52552 0.00000 0.02100 14.08404 0.00000 24.16524 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 48.38599 1.00000 0.00000 1.15096 2212.73116 916.18741 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 24.48382 0.02287 0.02287 0.82149 0.00000 4754.74169 0.00000 0.00000 262.78747 0.91161 0.96192 0.99079 0.97535 1.04959 65590.75047 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 24.98054 0.00000 24.98017 5.67630 49379.21811 0.00000 0.02100 14.76655 0.00000 24.97067 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 79.42830 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 22.80684 0.03532 0.03532 0.74368 0.00000 1252.94434 0.00000 0.00000 76.23941 1.00000 0.78134 0.88702 0.82138 1.04959 19285.00125 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 22.44800 0.00000 22.44796 0.00000 116684.07919 0.00000 0.02100 0.19956 0.00000 22.40688 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.76547 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.37427 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 0.92082 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.28445 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 0.13574 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.51118 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.35503 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.85650 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.23043 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 21.32311 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 24.99875 0.02762 0.02762 0.72176 0.00000 9302.21277 0.00000 0.00000 571.86927 0.87110 0.94599 0.98480 0.96337 1.04959 83550.15732 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 24.98478 0.00000 24.98435 4.92256 151336.55892 0.00000 0.02100 323.69314 0.00000 24.97766 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 671.45812 1.00000 0.00000 159.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 25.71252 0.02234 0.02234 0.72384 0.00000 2233.45536 0.00000 0.00000 105.84277 1.00000 0.94361 0.98383 0.96153 1.04959 10947.65733 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 25.72318 0.00000 25.65594 2.24796 59811.89300 0.00000 0.02100 135.75991 0.00000 25.62054 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 150.82549 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 26.20603 0.06836 0.06836 0.69837 0.00000 18647.47315 0.00000 0.00000 675.69619 0.69005 0.80852 0.90660 0.84632 1.04959 176495.07829 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 25.66483 0.00000 25.62660 1.86949 333380.67360 0.00000 0.02100 977.96466 0.00000 25.65379 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 89.19655 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 25.22724 0.02573 0.02573 0.71615 0.00000 2271.01397 0.00000 0.00000 75.54185 1.00000 0.99845 0.99991 0.99935 1.04959 12723.19199 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 24.77460 0.00000 24.69212 4.61939 34979.68422 0.00000 0.02100 306.24579 0.00000 24.71394 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 148.84005 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 672688.89104 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 24.80402 0.02772 0.02772 0.71086 0.00000 24944.58223 0.00000 0.00000 841.92621 0.75252 0.95980 0.99005 0.97379 1.04959 117539.33337 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 24.68163 0.00000 24.68211 5.10358 61974.33047 0.00000 0.02100 42.96014 0.00000 24.67884 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 169.29574 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 25.12638 0.02733 0.02733 0.83857 0.00000 11031.10113 0.00000 0.00000 492.25911 0.74355 0.94622 0.98489 0.96355 1.04959 123363.77488 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 24.81986 0.00000 24.82025 4.52113 68037.52552 0.00000 0.02100 14.39389 0.00000 24.81770 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 49.45048 1.00000 0.00000 1.17628 2261.41122 936.34353 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 25.14489 0.02287 0.02287 0.82149 0.00000 4859.34595 0.00000 0.00000 268.56879 0.91161 0.96192 0.99079 0.97535 1.04959 68843.65780 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 25.65501 0.00000 25.65464 5.67630 49379.21811 0.00000 0.02100 15.09141 0.00000 25.64488 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 81.17572 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 23.42263 0.03532 0.03532 0.74368 0.00000 1280.50910 0.00000 0.00000 77.91667 1.00000 0.78134 0.88702 0.82138 1.04959 20241.42150 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 23.05409 0.00000 23.05406 0.00000 116684.07919 0.00000 0.02100 0.20395 0.00000 23.01187 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.82631 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.35969 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.93583 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.29947 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.15032 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.49878 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.34001 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.84148 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.21498 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 21.89869 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 25.67372 0.02762 0.02762 0.72176 0.00000 9506.86135 0.00000 0.00000 584.45038 0.87110 0.94599 0.98480 0.96337 1.04959 87693.74337 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 25.65937 0.00000 25.65893 4.92256 151336.55892 0.00000 0.02100 330.81439 0.00000 25.65206 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 686.23019 1.00000 0.00000 160.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 26.40676 0.02234 0.02234 0.72384 0.00000 2282.59135 0.00000 0.00000 108.17131 1.00000 0.94361 0.98383 0.96153 1.04959 11490.59539 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 26.41771 0.00000 26.34865 2.24796 59811.89300 0.00000 0.02100 138.74662 0.00000 26.31229 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 154.14365 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 26.91360 0.06836 0.06836 0.69837 0.00000 19057.71735 0.00000 0.00000 690.56150 0.69005 0.80852 0.90660 0.84632 1.04959 185248.17425 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 26.35778 0.00000 26.31852 1.86949 333380.67360 0.00000 0.02100 999.47987 0.00000 26.34644 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 91.15888 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 25.90838 0.02573 0.02573 0.71615 0.00000 2320.97625 0.00000 0.00000 77.20377 1.00000 0.99845 0.99991 0.99935 1.04959 13354.18590 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 25.44351 0.00000 25.35881 4.61939 34979.68422 0.00000 0.02100 312.98319 0.00000 25.38122 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 152.11453 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 706050.22028 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 25.47373 0.02772 0.02772 0.71086 0.00000 25493.36276 0.00000 0.00000 860.44857 0.75252 0.95980 0.99005 0.97379 1.04959 123368.57844 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 25.34803 0.00000 25.34853 5.10358 61974.33047 0.00000 0.02100 43.90526 0.00000 25.34517 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 173.02024 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 25.80479 0.02733 0.02733 0.83857 0.00000 11273.78523 0.00000 0.00000 503.08881 0.74355 0.94622 0.98489 0.96355 1.04959 129481.87727 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 25.49000 0.00000 25.49040 4.52113 68037.52552 0.00000 0.02100 14.71055 0.00000 25.48778 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 50.53839 1.00000 0.00000 1.20216 2311.16224 956.94307 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 25.82380 0.02287 0.02287 0.82149 0.00000 4966.25151 0.00000 0.00000 274.47730 0.91161 0.96192 0.99079 0.97535 1.04959 72257.88979 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 26.34770 0.00000 26.34731 5.67630 49379.21811 0.00000 0.02100 15.42342 0.00000 26.33729 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 82.96158 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 24.05504 0.03532 0.03532 0.74368 0.00000 1308.68028 0.00000 0.00000 79.63084 1.00000 0.78134 0.88702 0.82138 1.04959 21245.27445 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 23.67655 0.00000 23.67652 0.00000 116684.07919 0.00000 0.02100 0.20844 0.00000 23.63319 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.88849 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.34511 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.95085 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.31448 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.16490 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.48637 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.32500 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.82647 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.19953 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 22.48981 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 26.36691 0.02762 0.02762 0.72176 0.00000 9716.01219 0.00000 0.00000 597.30828 0.87110 0.94599 0.98480 0.96337 1.04959 92042.82641 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 26.35217 0.00000 26.35172 4.92256 151336.55892 0.00000 0.02100 338.09230 0.00000 26.34466 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 701.32724 1.00000 0.00000 161.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 27.11974 0.02234 0.02234 0.72384 0.00000 2332.80834 0.00000 0.00000 110.55108 1.00000 0.94361 0.98383 0.96153 1.04959 12060.45991 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 27.13099 0.00000 27.06006 2.24796 59811.89300 0.00000 0.02100 141.79905 0.00000 27.02272 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 157.53481 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 27.64026 0.06836 0.06836 0.69837 0.00000 19476.98691 0.00000 0.00000 705.75385 0.69005 0.80852 0.90660 0.84632 1.04959 194435.37121 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 27.06944 0.00000 27.02912 1.86949 333380.67360 0.00000 0.02100 1021.46841 0.00000 27.05780 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 93.16437 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 26.60790 0.02573 0.02573 0.71615 0.00000 2372.03770 0.00000 0.00000 78.90225 1.00000 0.99845 0.99991 0.99935 1.04959 14016.47333 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 26.13049 0.00000 26.04350 4.61939 34979.68422 0.00000 0.02100 319.86882 0.00000 26.06651 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 155.46105 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 741066.07110 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 26.16152 0.02772 0.02772 0.71086 0.00000 26054.21645 -0.00000 0.00000 879.37843 0.75252 0.95980 0.99005 0.97379 1.04959 129486.91905 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 26.03243 0.00000 26.03294 5.10358 61974.33047 0.00000 0.02100 44.87118 0.00000 26.02949 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 176.82668 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 26.50152 0.02733 0.02733 0.83857 0.00000 11521.80838 -0.00000 0.00000 514.15676 0.74355 0.94622 0.98489 0.96355 1.04959 135903.40079 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 26.17823 0.00000 26.17864 4.52113 68037.52552 0.00000 0.02100 15.03418 0.00000 26.17595 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 51.65023 1.00000 0.00000 1.22861 2362.00778 977.99581 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 26.52104 0.02287 0.02287 0.82149 0.00000 5075.50899 0.00000 0.00000 280.51579 0.91161 0.96192 0.99079 0.97535 1.04959 75841.44719 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 27.05909 0.00000 27.05869 5.67630 49379.21811 0.00000 0.02100 15.76274 0.00000 27.04840 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 84.78674 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 24.70452 0.03532 0.03532 0.74368 0.00000 1337.47124 0.00000 0.00000 81.38272 1.00000 0.78134 0.88702 0.82138 1.04959 22298.91248 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 24.31582 0.00000 24.31578 0.00000 116684.07919 0.00000 0.02100 0.21303 0.00000 24.27129 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 2.95203 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 -0.00000 -0.33053 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.96586 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.32950 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.17948 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.47397 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.30998 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.81145 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.18408 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 23.09689 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 27.07881 0.02762 0.02762 0.72176 0.00000 9929.76435 0.00000 0.00000 610.44906 0.87110 0.94599 0.98480 0.96337 1.04959 96607.59785 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 27.06368 0.00000 27.06321 4.92256 151336.55892 0.00000 0.02100 345.53033 0.00000 27.05597 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 716.75644 1.00000 0.00000 162.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 27.85198 0.02234 0.02234 0.72384 0.00000 2384.13009 0.00000 0.00000 112.98320 1.00000 0.94361 0.98383 0.96153 1.04959 12658.58629 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 27.86352 0.00000 27.79069 2.24796 59811.89300 0.00000 0.02100 144.91863 0.00000 27.75234 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 161.00057 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 28.38655 0.06836 0.06836 0.69837 0.00000 19905.48040 0.00000 0.00000 721.28042 0.69005 0.80852 0.90660 0.84632 1.04959 204078.19796 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 27.80031 0.00000 27.75891 1.86949 333380.67360 0.00000 0.02100 1043.94071 0.00000 27.78836 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 95.21399 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 27.32632 0.02573 0.02573 0.71615 0.00000 2424.22250 0.00000 0.00000 80.63810 1.00000 0.99845 0.99991 0.99935 1.04959 14711.60623 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 26.83601 0.00000 26.74667 4.61939 34979.68422 0.00000 0.02100 326.90593 0.00000 26.77031 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 158.88119 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 777818.49784 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 26.86788 0.02772 0.02772 0.71086 0.00000 26627.40891 0.00000 0.00000 898.72475 0.75252 0.95980 0.99005 0.97379 1.04959 135908.69262 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 26.73530 0.00000 26.73583 5.10358 61974.33047 0.00000 0.02100 45.85834 0.00000 26.73229 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 180.71687 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 27.21706 0.02733 0.02733 0.83857 0.00000 11775.28803 0.00000 0.00000 525.46820 0.74355 0.94622 0.98489 0.96355 1.04959 142643.39332 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 26.88504 0.00000 26.88546 4.52113 68037.52552 0.00000 0.02100 15.36494 0.00000 26.88270 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 52.78654 1.00000 0.00000 1.25564 2413.97192 999.51171 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 27.23711 0.02287 0.02287 0.82149 0.00000 5187.17013 0.00000 0.00000 286.68714 0.91161 0.96192 0.99079 0.97535 1.04959 79602.72751 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 27.78968 0.00000 27.78927 5.67630 49379.21811 0.00000 0.02100 16.10952 0.00000 27.77871 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 86.65204 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 25.37155 0.03532 0.03532 0.74368 0.00000 1366.89559 0.00000 0.00000 83.17314 1.00000 0.78134 0.88702 0.82138 1.04959 23404.80462 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 24.97235 0.00000 24.97231 0.00000 116684.07919 0.00000 0.02100 0.21771 0.00000 24.92661 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.01698 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.31595 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 0.98088 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.34451 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.19406 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.46157 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 -0.29497 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.79644 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.16863 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 23.72035 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 27.80994 0.02762 0.02762 0.72176 0.00000 10148.21905 0.00000 0.00000 623.87893 0.87110 0.94599 0.98480 0.96337 1.04959 101398.75454 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 27.79440 0.00000 27.79392 4.92256 151336.55892 0.00000 0.02100 353.13199 0.00000 27.78648 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 732.52507 1.00000 0.00000 163.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 28.60398 0.02234 0.02234 0.72384 0.00000 2436.58093 0.00000 0.00000 115.46883 1.00000 0.94361 0.98383 0.96153 1.04959 13286.37616 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 28.61584 0.00000 28.54103 2.24796 59811.89300 0.00000 0.02100 148.10683 0.00000 28.50165 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 164.54258 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 29.15299 0.06836 0.06836 0.69837 0.00000 20343.40074 0.00000 0.00000 737.14859 0.69005 0.80852 0.90660 0.84632 1.04959 214199.25101 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 28.55092 0.00000 28.50840 1.86949 333380.67360 0.00000 0.02100 1066.90739 0.00000 28.53865 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 97.30869 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 28.06413 0.02573 0.02573 0.71615 0.00000 2477.55537 0.00000 0.00000 82.41214 1.00000 0.99845 0.99991 0.99935 1.04959 15441.21355 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 27.56058 0.00000 27.46883 4.61939 34979.68422 0.00000 0.02100 334.09785 0.00000 27.49311 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 162.37658 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 816393.62424 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 27.59331 0.02772 0.02772 0.71086 0.00000 27213.21160 -0.00000 0.00000 918.49668 0.75252 0.95980 0.99005 0.97379 1.04959 142648.94759 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 27.45715 0.00000 27.45769 5.10358 61974.33047 0.00000 0.02100 46.86722 0.00000 27.45406 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 184.69264 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 27.95192 0.02733 0.02733 0.83857 0.00000 12034.34423 0.00000 0.00000 537.02849 0.74355 0.94622 0.98489 0.96355 1.04959 149717.64900 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 27.61094 0.00000 27.61137 4.52113 68037.52552 0.00000 0.02100 15.70296 0.00000 27.60853 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 53.94784 1.00000 0.00000 1.28326 2467.07928 1021.50095 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 27.97251 0.02287 0.02287 0.82149 0.00000 5301.28781 -0.00000 0.00000 292.99425 0.91161 0.96192 0.99079 0.97535 1.04959 83550.54475 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 28.54001 0.00000 28.53958 5.67630 49379.21811 0.00000 0.02100 16.46393 0.00000 28.52873 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 88.55839 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 26.05658 0.03532 0.03532 0.74368 0.00000 1396.96728 0.00000 0.00000 85.00295 1.00000 0.78134 0.88702 0.82138 1.04959 24565.54238 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 25.64660 0.00000 25.64656 0.00000 116684.07919 0.00000 0.02100 0.22250 0.00000 25.59963 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.08335 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.30137 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 0.99589 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.35953 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.20864 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.44916 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.27995 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.78142 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.15318 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 24.36064 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 28.56081 0.02762 0.02762 0.72176 0.00000 10371.47975 -0.00000 0.00000 637.60426 0.87110 0.94599 0.98480 0.96337 1.04959 106427.52382 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 28.54485 0.00000 28.54436 4.92256 151336.55892 0.00000 0.02100 360.90089 0.00000 28.53672 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 748.64061 1.00000 0.00000 164.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 29.37629 0.02234 0.02234 0.72384 0.00000 2490.18568 0.00000 0.00000 118.00914 1.00000 0.94361 0.98383 0.96153 1.04959 13945.30062 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 29.38847 0.00000 29.31164 2.24796 59811.89300 0.00000 0.02100 151.36518 0.00000 29.27119 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 168.16252 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 29.94012 0.06836 0.06836 0.69837 0.00000 20790.95533 0.00000 0.00000 753.36585 0.69005 0.80852 0.90660 0.84632 1.04959 224822.24752 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 29.32179 0.00000 29.27813 1.86949 333380.67360 0.00000 0.02100 1090.37934 0.00000 29.30919 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 99.44948 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 28.82186 0.02573 0.02573 0.71615 0.00000 2532.06156 0.00000 0.00000 84.22521 1.00000 0.99845 0.99991 0.99935 1.04959 16207.00501 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 28.30472 0.00000 28.21049 4.61939 34979.68422 0.00000 0.02100 341.44800 0.00000 28.23542 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 165.94886 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 856881.84524 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 28.33833 0.02772 0.02772 0.71086 0.00000 27811.90195 0.00000 0.00000 938.70360 0.75252 0.95980 0.99005 0.97379 1.04959 149723.47873 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 28.19850 0.00000 28.19905 5.10358 61974.33047 0.00000 0.02100 47.89830 0.00000 28.19532 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 188.75587 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 28.70663 0.02733 0.02733 0.83857 0.00000 12299.09967 0.00000 0.00000 548.84311 0.74355 0.94622 0.98489 0.96355 1.04959 157142.74528 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 28.35643 0.00000 28.35688 4.52113 68037.52552 0.00000 0.02100 16.04843 0.00000 28.35396 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 55.13469 1.00000 0.00000 1.31149 2521.35500 1043.97396 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 28.72777 0.02287 0.02287 0.82149 0.00000 5417.91608 0.00000 0.00000 299.44012 0.91161 0.96192 0.99079 0.97535 1.04959 87694.15002 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 29.31059 0.00000 29.31015 5.67630 49379.21811 0.00000 0.02100 16.82613 0.00000 29.29901 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 90.50667 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 26.76010 0.03532 0.03532 0.74368 0.00000 1427.70054 0.00000 0.00000 86.87301 1.00000 0.78134 0.88702 0.82138 1.04959 25783.84575 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 26.33906 0.00000 26.33902 0.00000 116684.07919 0.00000 0.02100 0.22740 0.00000 26.29082 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.15119 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.28679 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.01091 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.37454 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 0.22322 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.43676 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.26494 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.76641 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.13773 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 25.01822 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 29.33195 0.02762 0.02762 0.72176 0.00000 10599.65219 0.00000 0.00000 651.63155 0.87110 0.94599 0.98480 0.96337 1.04959 111705.68987 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 29.31556 0.00000 29.31506 4.92256 151336.55892 0.00000 0.02100 368.84070 0.00000 29.30721 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 765.11070 1.00000 0.00000 165.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 30.16945 0.02234 0.02234 0.72384 0.00000 2544.96974 0.00000 0.00000 120.60534 1.00000 0.94361 0.98383 0.96153 1.04959 14636.90379 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 30.18196 0.00000 30.10306 2.24796 59811.89300 0.00000 0.02100 154.69521 0.00000 30.06152 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 171.86209 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 30.74850 0.06836 0.06836 0.69837 0.00000 21248.35611 0.00000 0.00000 769.93989 0.69005 0.80852 0.90660 0.84632 1.04959 235972.08085 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 30.11348 0.00000 30.06864 1.86949 333380.67360 0.00000 0.02100 1114.36767 0.00000 30.10054 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 101.63737 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 29.60005 0.02573 0.02573 0.71615 0.00000 2587.76689 0.00000 0.00000 86.07816 1.00000 0.99845 0.99991 0.99935 1.04959 17010.77513 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 29.06894 0.00000 28.97217 4.61939 34979.68422 0.00000 0.02100 348.95986 0.00000 28.99778 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 169.59973 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 899378.03886 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 29.10347 0.02772 0.02772 0.71086 0.00000 28423.76347 0.00000 0.00000 959.35507 0.75252 0.95980 0.99005 0.97379 1.04959 157148.86413 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 28.95986 0.00000 28.96043 5.10358 61974.33047 0.00000 0.02100 48.95207 0.00000 28.95659 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 192.90850 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 29.48171 0.02733 0.02733 0.83857 0.00000 12569.67972 0.00000 0.00000 560.91766 0.74355 0.94622 0.98489 0.96355 1.04959 164936.08174 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 29.12206 0.00000 29.12251 4.52113 68037.52552 0.00000 0.02100 16.40149 0.00000 29.11952 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 56.34765 1.00000 0.00000 1.34035 2576.82478 1066.94138 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 29.50342 0.02287 0.02287 0.82149 0.00000 5537.11017 -0.00000 0.00000 306.02780 0.91161 0.96192 0.99079 0.97535 1.04959 92043.25322 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 30.10197 0.00000 30.10153 5.67630 49379.21811 0.00000 0.02100 17.19631 0.00000 30.09008 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 92.49782 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 27.48263 0.03532 0.03532 0.74368 0.00000 1459.10993 0.00000 0.00000 88.78421 1.00000 0.78134 0.88702 0.82138 1.04959 27062.56966 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 27.05021 0.00000 27.05017 0.00000 116684.07919 0.00000 0.02100 0.23240 0.00000 27.00067 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.22051 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.27221 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.02593 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.38956 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 0.00000 0.00000 0.23780 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.42435 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.24992 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.75139 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.12228 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 25.69354 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 30.12392 0.02762 0.02762 0.72176 0.00000 10832.84441 0.00000 0.00000 665.96744 0.87110 0.94599 0.98480 0.96337 1.04959 117245.62125 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 30.10708 0.00000 30.10656 4.92256 151336.55892 0.00000 0.02100 376.95520 0.00000 30.09850 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 781.94312 1.00000 0.00000 166.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 30.98402 0.02234 0.02234 0.72384 0.00000 2600.95904 0.00000 0.00000 123.25866 1.00000 0.94361 0.98383 0.96153 1.04959 15362.80631 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 30.99687 0.00000 30.91584 2.24796 59811.89300 0.00000 0.02100 158.09851 0.00000 30.87318 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 175.64306 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 31.57871 0.06836 0.06836 0.69837 0.00000 21715.81970 0.00000 0.00000 786.87856 0.69005 0.80852 0.90660 0.84632 1.04959 247674.87896 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 30.92655 0.00000 30.88049 1.86949 333380.67360 0.00000 0.02100 1138.88375 0.00000 30.91325 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 103.87339 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 30.39925 0.02573 0.02573 0.71615 0.00000 2644.69773 0.00000 0.00000 87.97188 1.00000 0.99845 0.99991 0.99935 1.04959 17854.40742 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 29.85381 0.00000 29.75442 4.61939 34979.68422 0.00000 0.02100 356.63697 0.00000 29.78072 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 173.33092 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 943981.78848 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 29.88926 0.02772 0.02772 0.71086 0.00000 29049.08595 0.00000 0.00000 980.46087 0.75252 0.95980 0.99005 0.97379 1.04959 164942.50405 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 29.74177 0.00000 29.74236 5.10358 61974.33047 0.00000 0.02100 50.02901 0.00000 29.73842 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 197.15249 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 30.27771 0.02733 0.02733 0.83857 0.00000 12846.21253 -0.00000 0.00000 573.25784 0.74355 0.94622 0.98489 0.96355 1.04959 173115.92089 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 29.90835 0.00000 29.90882 4.52113 68037.52552 0.00000 0.02100 16.76233 0.00000 29.90574 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 57.58730 1.00000 0.00000 1.36983 2633.51489 1090.41408 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 30.30001 0.02287 0.02287 0.82149 0.00000 5658.92653 0.00000 0.00000 312.76041 0.91161 0.96192 0.99079 0.97535 1.04959 96608.04582 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 30.91472 0.00000 30.91427 5.67630 49379.21811 0.00000 0.02100 17.57462 0.00000 30.90251 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 94.53277 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 28.22466 0.03532 0.03532 0.74368 0.00000 1491.21034 0.00000 0.00000 90.73747 1.00000 0.78134 0.88702 0.82138 1.04959 28404.71060 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 27.78057 0.00000 27.78053 0.00000 116684.07919 0.00000 0.02100 0.23751 0.00000 27.72969 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.29136 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.25763 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 -0.00000 1.04094 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.40457 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.25238 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.41195 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.23491 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.73638 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.10683 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 26.38710 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 30.93726 0.02762 0.02762 0.72176 0.00000 11071.16687 0.00000 0.00000 680.61871 0.87110 0.94599 0.98480 0.96337 1.04959 123060.29996 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 30.91997 0.00000 30.91944 4.92256 151336.55892 0.00000 0.02100 385.24821 0.00000 30.91116 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 799.14586 1.00000 0.00000 167.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 31.82059 0.02234 0.02234 0.72384 0.00000 2658.18011 0.00000 0.00000 125.97034 1.00000 0.94361 0.98383 0.96153 1.04959 16124.70925 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 31.83378 0.00000 31.75057 2.24796 59811.89300 0.00000 0.02100 161.57667 0.00000 31.70675 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 179.50720 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 32.43134 0.06836 0.06836 0.69837 0.00000 22193.56749 0.00000 0.00000 804.18987 0.69005 0.80852 0.90660 0.84632 1.04959 259958.06557 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 31.76156 0.00000 31.71426 1.86949 333380.67360 0.00000 0.02100 1163.93918 0.00000 31.74791 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 106.15861 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 31.22003 0.02573 0.02573 0.71615 0.00000 2702.88105 0.00000 0.00000 89.90726 1.00000 0.99845 0.99991 0.99935 1.04959 18739.87881 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 30.65986 0.00000 30.55779 4.61939 34979.68422 0.00000 0.02100 364.48298 0.00000 30.58480 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 177.14420 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 990797.61621 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 30.69627 0.02772 0.02772 0.71086 0.00000 29688.16550 0.00000 0.00000 1002.03099 0.75252 0.95980 0.99005 0.97379 1.04959 173122.66171 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 30.54480 0.00000 30.54540 5.10358 61974.33047 0.00000 0.02100 51.12965 0.00000 30.54136 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 201.48984 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 31.09521 0.02733 0.02733 0.83857 0.00000 13128.82906 0.00000 0.00000 585.86950 0.74355 0.94622 0.98489 0.96355 1.04959 181701.43094 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 30.71588 0.00000 30.71636 4.52113 68037.52552 0.00000 0.02100 17.13110 0.00000 30.71320 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 58.85422 1.00000 0.00000 1.39997 2691.45219 1114.40317 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 31.11811 0.02287 0.02287 0.82149 0.00000 5783.42285 0.00000 0.00000 319.64114 0.91161 0.96192 0.99079 0.97535 1.04959 101399.22473 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 31.74942 0.00000 31.74896 5.67630 49379.21811 0.00000 0.02100 17.96127 0.00000 31.73688 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 96.61249 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 28.98673 0.03532 0.03532 0.74368 0.00000 1524.01695 0.00000 0.00000 92.73369 1.00000 0.78134 0.88702 0.82138 1.04959 29813.41366 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 28.53065 0.00000 28.53060 0.00000 116684.07919 0.00000 0.02100 0.24274 0.00000 28.47839 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.36377 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.24305 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.05596 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.41959 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.26696 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.39955 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.21989 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.72136 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.09138 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 27.09937 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 31.77257 0.02762 0.02762 0.72176 0.00000 11314.73241 0.00000 0.00000 695.59232 0.87110 0.94599 0.98480 0.96337 1.04959 129163.35181 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 31.75481 0.00000 31.75426 4.92256 151336.55892 0.00000 0.02100 393.72366 0.00000 31.74577 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 816.72706 1.00000 0.00000 168.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 32.67975 0.02234 0.02234 0.72384 0.00000 2716.66004 0.00000 0.00000 128.74169 1.00000 0.94361 0.98383 0.96153 1.04959 16924.39799 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 32.69330 0.00000 32.60783 2.24796 59811.89300 0.00000 0.02100 165.13136 0.00000 32.56284 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 183.45636 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 33.30698 0.06836 0.06836 0.69837 0.00000 22681.82572 0.00000 0.00000 821.88204 0.69005 0.80852 0.90660 0.84632 1.04959 272850.42447 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 32.61913 0.00000 32.57055 1.86949 333380.67360 0.00000 0.02100 1189.54583 0.00000 32.60510 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 108.49409 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 32.06297 0.02573 0.02573 0.71615 0.00000 2762.34440 0.00000 0.00000 91.88522 1.00000 0.99845 0.99991 0.99935 1.04959 19669.26426 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 31.48768 0.00000 31.38285 4.61939 34979.68422 0.00000 0.02100 372.50160 0.00000 31.41059 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 181.04137 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1039935.22786 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 31.52507 0.02772 0.02772 0.71086 0.00000 30341.30481 -0.00000 0.00000 1024.07567 0.75252 0.95980 0.99005 0.97379 1.04959 181708.50606 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 31.36951 0.00000 31.37013 5.10358 61974.33047 0.00000 0.02100 52.25450 0.00000 31.36598 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 205.92261 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 31.93478 0.02733 0.02733 0.83857 0.00000 13417.66315 -0.00000 0.00000 598.75863 0.74355 0.94622 0.98489 0.96355 1.04959 190712.73073 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 31.54521 0.00000 31.54570 4.52113 68037.52552 0.00000 0.02100 17.50798 0.00000 31.54246 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 60.14901 1.00000 0.00000 1.43077 2750.66411 1138.92003 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 31.95830 0.02287 0.02287 0.82149 0.00000 5910.65809 0.00000 0.00000 326.67324 0.91161 0.96192 0.99079 0.97535 1.04959 106428.01733 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 32.60666 0.00000 32.60618 5.67630 49379.21811 0.00000 0.02100 18.35641 0.00000 32.59378 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 98.73796 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 29.76937 0.03532 0.03532 0.74368 0.00000 1557.54530 0.00000 0.00000 94.77383 1.00000 0.78134 0.88702 0.82138 1.04959 31291.97994 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 29.30097 0.00000 29.30093 0.00000 116684.07919 0.00000 0.02100 0.24808 0.00000 29.24731 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.43778 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.22847 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.07097 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.43460 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.28154 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.38714 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.20487 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 -0.00000 -0.70634 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.07593 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 27.83088 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 32.63043 0.02762 0.02762 0.72176 0.00000 11563.65640 0.00000 0.00000 710.89534 0.87110 0.94599 0.98480 0.96337 1.04959 135569.07838 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 32.61219 0.00000 32.61163 4.92256 151336.55892 0.00000 0.02100 402.38558 0.00000 32.60290 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 834.69505 1.00000 0.00000 169.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 33.56210 0.02234 0.02234 0.72384 0.00000 2776.42653 0.00000 0.00000 131.57401 1.00000 0.94361 0.98383 0.96153 1.04959 17763.74649 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 33.57602 0.00000 33.48825 2.24796 59811.89300 0.00000 0.02100 168.76425 0.00000 33.44203 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 187.49239 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 34.20627 0.06836 0.06836 0.69837 0.00000 23180.82562 0.00000 0.00000 839.96344 0.69005 0.80852 0.90660 0.84632 1.04959 286382.16696 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 33.49984 0.00000 33.44995 1.86949 333380.67360 0.00000 0.02100 1215.71582 0.00000 33.48544 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 110.88096 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 32.92867 0.02573 0.02573 0.71615 0.00000 2823.11595 0.00000 0.00000 93.90669 1.00000 0.99845 0.99991 0.99935 1.04959 20644.74164 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 32.33784 0.00000 32.23019 4.61939 34979.68422 0.00000 0.02100 380.69663 0.00000 32.25867 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 185.02428 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1091509.76995 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 32.37625 0.02772 0.02772 0.71086 0.00000 31008.81317 0.00000 0.00000 1046.60532 0.75252 0.95980 0.99005 0.97379 1.04959 190720.15673 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 32.21649 0.00000 32.21712 5.10358 61974.33047 0.00000 0.02100 53.40410 0.00000 32.21286 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 210.45291 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 32.79702 0.02733 0.02733 0.83857 0.00000 13712.85159 0.00000 0.00000 611.93131 0.74355 0.94622 0.98489 0.96355 1.04959 200170.93687 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 32.39693 0.00000 32.39743 4.52113 68037.52552 0.00000 0.02100 17.89316 0.00000 32.39410 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 61.47229 1.00000 0.00000 1.46225 2811.17869 1163.97626 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 32.82117 0.02287 0.02287 0.82149 0.00000 6040.69250 0.00000 0.00000 333.86004 0.91161 0.96192 0.99079 0.97535 1.04959 111706.20785 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 33.48704 0.00000 33.48654 5.67630 49379.21811 0.00000 0.02100 18.76025 0.00000 33.47381 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 100.91020 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 30.57314 0.03532 0.03532 0.74368 0.00000 1591.81128 0.00000 0.00000 96.85885 1.00000 0.78134 0.88702 0.82138 1.04959 32843.87422 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 30.09210 0.00000 30.09205 0.00000 116684.07919 0.00000 0.02100 0.25354 0.00000 30.03699 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.51341 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.21389 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 -0.00000 1.08599 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.44962 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.29612 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.37474 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.18986 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.69133 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.06048 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 28.58212 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 33.51145 0.02762 0.02762 0.72176 0.00000 11818.05671 0.00000 0.00000 726.53503 0.87110 0.94599 0.98480 0.96337 1.04959 142292.49053 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 33.49272 0.00000 33.49214 4.92256 151336.55892 0.00000 0.02100 411.23806 0.00000 33.48318 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 853.05833 1.00000 0.00000 170.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 34.46828 0.02234 0.02234 0.72384 0.00000 2837.50788 0.00000 0.00000 134.46863 1.00000 0.94361 0.98383 0.96153 1.04959 18644.72164 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 34.48257 0.00000 34.39243 2.24796 59811.89300 0.00000 0.02100 172.47706 0.00000 34.34497 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 191.61723 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 35.12984 0.06836 0.06836 0.69837 0.00000 23690.80352 0.00000 0.00000 858.44262 0.69005 0.80852 0.90660 0.84632 1.04959 300585.00260 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 34.40434 0.00000 34.35310 1.86949 333380.67360 0.00000 0.02100 1242.46156 0.00000 34.38955 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 113.32034 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 33.81775 0.02573 0.02573 0.71615 0.00000 2885.22446 0.00000 0.00000 95.97264 1.00000 0.99845 0.99991 0.99935 1.04959 21668.59685 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 33.21096 0.00000 33.10040 4.61939 34979.68422 0.00000 0.02100 389.07195 0.00000 33.12966 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 189.09481 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1145642.09960 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 33.25041 0.02772 0.02772 0.71086 0.00000 31691.00670 -0.00000 0.00000 1069.63062 0.75252 0.95980 0.99005 0.97379 1.04959 200178.73116 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 33.08633 0.00000 33.08698 5.10358 61974.33047 0.00000 0.02100 54.57899 0.00000 33.08261 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 215.08287 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 33.68254 0.02733 0.02733 0.83857 0.00000 14014.53416 0.00000 0.00000 625.39379 0.74355 0.94622 0.98489 0.96355 1.04959 210098.21323 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 33.27165 0.00000 33.27216 4.52113 68037.52552 0.00000 0.02100 18.28681 0.00000 33.26874 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 62.82468 1.00000 0.00000 1.49441 2873.02458 1189.58372 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 33.70735 0.02287 0.02287 0.82149 0.00000 6173.58767 0.00000 0.00000 341.20496 0.91161 0.96192 0.99079 0.97535 1.04959 117246.16492 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 34.39119 0.00000 34.39068 5.67630 49379.21811 0.00000 0.02100 19.17298 0.00000 34.37760 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 103.13022 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 31.39861 0.03532 0.03532 0.74368 0.00000 1626.83111 -0.00000 0.00000 98.98975 1.00000 0.78134 0.88702 0.82138 1.04959 34472.73314 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 30.90459 0.00000 30.90454 0.00000 116684.07919 0.00000 0.02100 0.25911 0.00000 30.84799 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.59070 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.19931 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.10100 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.46464 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.31070 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.36233 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.17484 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.67631 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.04503 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 29.35365 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 34.41626 0.02762 0.02762 0.72176 0.00000 12078.05382 0.00000 0.00000 742.51879 0.87110 0.94599 0.98480 0.96337 1.04959 149349.34354 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 34.39702 0.00000 34.39643 4.92256 151336.55892 0.00000 0.02100 420.28529 0.00000 34.38723 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 871.82560 1.00000 0.00000 171.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 35.39892 0.02234 0.02234 0.72384 0.00000 2899.93303 0.00000 0.00000 137.42694 1.00000 0.94361 0.98383 0.96153 1.04959 19569.38787 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 35.41360 0.00000 35.32102 2.24796 59811.89300 0.00000 0.02100 176.27155 0.00000 35.27228 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 195.83280 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 36.07835 0.06836 0.06836 0.69837 0.00000 24212.00093 0.00000 0.00000 877.32835 0.69005 0.80852 0.90660 0.84632 1.04959 315492.21360 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 35.33326 0.00000 35.28064 1.86949 333380.67360 0.00000 0.02100 1269.79570 0.00000 35.31807 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 115.81339 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 34.73083 0.02573 0.02573 0.71615 0.00000 2948.69937 0.00000 0.00000 98.08403 1.00000 0.99845 0.99991 0.99935 1.04959 22743.22912 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 34.10766 0.00000 33.99412 4.61939 34979.68422 0.00000 0.02100 397.63153 0.00000 34.02416 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 193.25490 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1202459.06772 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 34.14817 0.02772 0.02772 0.71086 0.00000 32388.20849 0.00000 0.00000 1093.16248 0.75252 0.95980 0.99005 0.97379 1.04959 210106.39407 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 33.97967 0.00000 33.98033 5.10358 61974.33047 0.00000 0.02100 55.77972 0.00000 33.97584 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 219.81469 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 34.59197 0.02733 0.02733 0.83857 0.00000 14322.85376 0.00000 0.00000 639.15245 0.74355 0.94622 0.98489 0.96355 1.04959 220517.82289 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 34.16998 0.00000 34.17051 4.52113 68037.52552 0.00000 0.02100 18.68912 0.00000 34.16700 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 64.20682 1.00000 0.00000 1.52729 2936.23109 1215.75455 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 34.61744 0.02287 0.02287 0.82149 0.00000 6309.40652 0.00000 0.00000 348.71147 0.91161 0.96192 0.99079 0.97535 1.04959 123060.87060 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 35.31975 0.00000 35.31923 5.67630 49379.21811 0.00000 0.02100 19.59479 0.00000 35.30580 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 105.39908 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 32.24638 0.03532 0.03532 0.74368 0.00000 1662.62138 0.00000 0.00000 101.16752 1.00000 0.78134 0.88702 0.82138 1.04959 36182.37368 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 31.73901 0.00000 31.73896 0.00000 116684.07919 0.00000 0.02100 0.26481 0.00000 31.68088 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.66970 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.18473 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.11602 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.47965 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.32529 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.34993 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.15983 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.66130 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 -0.02957 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 30.14601 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 35.34550 0.02762 0.02762 0.72176 0.00000 12343.77086 0.00000 0.00000 758.85419 0.87110 0.94599 0.98480 0.96337 1.04959 156756.17407 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 35.32574 0.00000 35.32514 4.92256 151336.55892 0.00000 0.02100 429.53156 0.00000 35.31568 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 891.00576 1.00000 0.00000 172.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 36.35469 0.02234 0.02234 0.72384 0.00000 2963.73152 0.00000 0.00000 140.45033 1.00000 0.94361 0.98383 0.96153 1.04959 20539.91198 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 36.36977 0.00000 36.27469 2.24796 59811.89300 0.00000 0.02100 180.14952 0.00000 36.22464 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 200.14112 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 37.05246 0.06836 0.06836 0.69837 0.00000 24744.66467 0.00000 0.00000 896.62957 0.69005 0.80852 0.90660 0.84632 1.04959 331138.73274 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 36.28726 0.00000 36.23321 1.86949 333380.67360 0.00000 0.02100 1297.73119 0.00000 36.27165 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 118.36128 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 35.66856 0.02573 0.02573 0.71615 0.00000 3013.57072 0.00000 0.00000 100.24188 1.00000 0.99845 0.99991 0.99935 1.04959 23871.15671 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 35.02857 0.00000 34.91196 4.61939 34979.68422 0.00000 0.02100 406.37942 0.00000 34.94281 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 197.50650 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1262093.81625 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 35.07017 0.02772 0.02772 0.71086 0.00000 33100.74870 -0.00000 0.00000 1117.21205 0.75252 0.95980 0.99005 0.97379 1.04959 220526.40945 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 34.89712 0.00000 34.89780 5.10358 61974.33047 0.00000 0.02100 57.00688 0.00000 34.89318 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 224.65061 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 35.52595 0.02733 0.02733 0.83857 0.00000 14637.95638 0.00000 0.00000 653.21379 0.74355 0.94622 0.98489 0.96355 1.04959 231454.18261 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 35.09257 0.00000 35.09312 4.52113 68037.52552 0.00000 0.02100 19.10028 0.00000 35.08951 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 65.61937 1.00000 0.00000 1.56089 3000.82814 1242.50114 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 35.55212 0.02287 0.02287 0.82149 0.00000 6448.21340 -0.00000 0.00000 356.38312 0.91161 0.96192 0.99079 0.97535 1.04959 129163.95075 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 36.27338 0.00000 36.27285 5.67630 49379.21811 0.00000 0.02100 20.02587 0.00000 36.25906 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 107.71786 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 33.11703 0.03532 0.03532 0.74368 0.00000 1699.19903 0.00000 0.00000 103.39320 1.00000 0.78134 0.88702 0.82138 1.04959 37976.80213 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 32.59596 0.00000 32.59591 0.00000 116684.07919 0.00000 0.02100 0.27064 0.00000 32.53627 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.75043 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.17015 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.13103 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.49467 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.33987 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.33753 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.14481 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.64628 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 -0.01412 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 30.95975 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 36.29983 0.02762 0.02762 0.72176 0.00000 12615.33368 -0.00000 0.00000 775.54898 0.87110 0.94599 0.98480 0.96337 1.04959 164530.33893 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 36.27954 0.00000 36.27891 4.92256 151336.55892 0.00000 0.02100 438.98125 0.00000 36.26920 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 910.60787 1.00000 0.00000 173.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 37.33627 0.02234 0.02234 0.72384 0.00000 3028.93358 0.00000 0.00000 143.54024 1.00000 0.94361 0.98383 0.96153 1.04959 21558.56827 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 37.35175 0.00000 37.25411 2.24796 59811.89300 0.00000 0.02100 184.11281 0.00000 37.20270 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 204.54422 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 38.05288 0.06836 0.06836 0.69837 0.00000 25289.04701 0.00000 0.00000 916.35541 0.69005 0.80852 0.90660 0.84632 1.04959 347561.22527 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 37.26701 0.00000 37.21151 1.86949 333380.67360 0.00000 0.02100 1326.28126 0.00000 37.25099 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 120.96523 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 36.63161 0.02573 0.02573 0.71615 0.00000 3079.86924 0.00000 0.00000 102.44720 1.00000 0.99845 0.99991 0.99935 1.04959 25055.02272 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 35.97434 0.00000 35.85458 4.61939 34979.68422 0.00000 0.02100 415.31976 0.00000 35.88626 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 201.85164 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1324686.09018 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 36.01706 0.02772 0.02772 0.71086 0.00000 33828.96480 0.00000 0.00000 1141.79070 0.75252 0.95980 0.99005 0.97379 1.04959 231463.19501 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 35.83934 0.00000 35.84004 5.10358 61974.33047 0.00000 0.02100 58.26103 0.00000 35.83530 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 229.59292 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 36.48515 0.02733 0.02733 0.83857 0.00000 14959.99125 -0.00000 0.00000 667.58449 0.74355 0.94622 0.98489 0.96355 1.04959 242932.92010 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 36.04007 0.00000 36.04063 4.52113 68037.52552 0.00000 0.02100 19.52048 0.00000 36.03693 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 67.06300 1.00000 0.00000 1.59523 3066.84633 1269.83615 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 36.51202 0.02287 0.02287 0.82149 0.00000 6590.07402 0.00000 0.00000 364.22354 0.91161 0.96192 0.99079 0.97535 1.04959 135569.70703 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 37.25276 0.00000 37.25222 5.67630 49379.21811 0.00000 0.02100 20.46644 0.00000 37.23805 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 110.08765 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 34.01119 0.03532 0.03532 0.74368 0.00000 1736.58139 0.00000 0.00000 105.66785 1.00000 0.78134 0.88702 0.82138 1.04959 39860.22345 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 33.47606 0.00000 33.47600 0.00000 116684.07919 0.00000 0.02100 0.27659 0.00000 33.41475 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.83294 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 -0.15557 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.14605 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.50968 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.35445 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 -0.00000 -1.32512 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.12980 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.63127 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.00133 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 31.79546 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 37.27992 0.02762 0.02762 0.72176 0.00000 12892.87088 0.00000 0.00000 792.61105 0.87110 0.94599 0.98480 0.96337 1.04959 172690.05567 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 37.25909 0.00000 37.25845 4.92256 151336.55892 0.00000 0.02100 448.63883 0.00000 37.24847 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 930.64124 1.00000 0.00000 174.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 38.34435 0.02234 0.02234 0.72384 0.00000 3095.57008 0.00000 0.00000 146.69812 1.00000 0.94361 0.98383 0.96153 1.04959 22627.74379 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 38.36025 0.00000 38.25997 2.24796 59811.89300 0.00000 0.02100 188.16329 0.00000 38.20717 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 209.04419 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 39.08031 0.06836 0.06836 0.69837 0.00000 25845.40576 0.00000 0.00000 936.51521 0.69005 0.80852 0.90660 0.84632 1.04959 364798.17481 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 38.27322 0.00000 38.21622 1.86949 333380.67360 0.00000 0.02100 1355.45943 0.00000 38.25677 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 123.62646 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 37.62066 0.02573 0.02573 0.71615 0.00000 3147.62633 0.00000 0.00000 104.70104 1.00000 0.99845 0.99991 0.99935 1.04959 26297.60139 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 36.94565 0.00000 36.82265 4.61939 34979.68422 0.00000 0.02100 424.45679 0.00000 36.85519 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 206.29238 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1390382.56500 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 36.98952 0.02772 0.02772 0.71086 0.00000 34573.20164 0.00000 0.00000 1166.91008 0.75252 0.95980 0.99005 0.97379 1.04959 242942.37946 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 36.80700 0.00000 36.80772 5.10358 61974.33047 0.00000 0.02100 59.54277 0.00000 36.80285 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 234.64396 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 37.47025 0.02733 0.02733 0.83857 0.00000 15289.11089 0.00000 0.00000 682.27134 0.74355 0.94622 0.98489 0.96355 1.04959 254980.93403 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 37.01315 0.00000 37.01373 4.52113 68037.52552 0.00000 0.02100 19.94993 0.00000 37.00992 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 68.53838 1.00000 0.00000 1.63033 3134.31691 1297.77253 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 37.49785 0.02287 0.02287 0.82149 0.00000 6735.05557 -0.00000 0.00000 372.23645 0.91161 0.96192 0.99079 0.97535 1.04959 142293.15035 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 38.25859 0.00000 38.25803 5.67630 49379.21811 0.00000 0.02100 20.91670 0.00000 38.24348 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 112.50958 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 34.92949 0.03532 0.03532 0.74368 0.00000 1774.78616 0.00000 0.00000 107.99254 1.00000 0.78134 0.88702 0.82138 1.04959 41837.05116 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 34.37991 0.00000 34.37986 0.00000 116684.07919 0.00000 0.02100 0.28268 0.00000 34.31694 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 3.91726 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.14099 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.16106 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.52470 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 0.00000 0.36903 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.31272 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 -0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.11478 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.61625 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.01678 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 32.65372 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 38.28648 0.02762 0.02762 0.72176 0.00000 13176.51389 -0.00000 0.00000 810.04848 0.87110 0.94599 0.98480 0.96337 1.04959 181254.44536 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 38.26508 0.00000 38.26442 4.92256 151336.55892 0.00000 0.02100 458.50888 0.00000 38.25418 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 951.11533 1.00000 0.00000 175.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 39.37965 0.02234 0.02234 0.72384 0.00000 3163.67259 0.00000 0.00000 149.92548 1.00000 0.94361 0.98383 0.96153 1.04959 23749.94399 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 39.39597 0.00000 39.29299 2.24796 59811.89300 0.00000 0.02100 192.30288 0.00000 39.23877 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 213.64316 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 40.13548 0.06836 0.06836 0.69837 0.00000 26414.00439 0.00000 0.00000 957.11854 0.69005 0.80852 0.90660 0.84632 1.04959 382889.97353 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 39.30660 0.00000 39.24806 1.86949 333380.67360 0.00000 0.02100 1385.27952 0.00000 39.28970 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 126.34624 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 38.63642 0.02573 0.02573 0.71615 0.00000 3216.87408 0.00000 0.00000 107.00446 1.00000 0.99845 0.99991 0.99935 1.04959 27601.80449 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 37.94318 0.00000 37.81687 4.61939 34979.68422 0.00000 0.02100 433.79484 0.00000 37.85028 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 210.83081 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1459337.19044 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 37.98824 0.02772 0.02772 0.71086 0.00000 35333.81168 0.00000 0.00000 1192.58209 0.75252 0.95980 0.99005 0.97379 1.04959 254990.86252 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 37.80079 0.00000 37.80153 5.10358 61974.33047 0.00000 0.02100 60.85271 0.00000 37.79653 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 239.80613 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 38.48195 0.02733 0.02733 0.83857 0.00000 15625.47115 0.00000 0.00000 697.28130 0.74355 0.94622 0.98489 0.96355 1.04959 267626.45710 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 38.01251 0.00000 38.01310 4.52113 68037.52552 0.00000 0.02100 20.38883 0.00000 38.00919 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 70.04623 1.00000 0.00000 1.66619 3203.27185 1326.32351 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 38.51029 0.02287 0.02287 0.82149 0.00000 6883.22672 0.00000 0.00000 380.42565 0.91161 0.96192 0.99079 0.97535 1.04959 149350.03608 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 39.29157 0.00000 39.29099 5.67630 49379.21811 0.00000 0.02100 21.37687 0.00000 39.27605 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 114.98479 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 35.87259 0.03532 0.03532 0.74368 0.00000 1813.83143 0.00000 0.00000 110.36838 1.00000 0.78134 0.88702 0.82138 1.04959 43911.91765 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 35.30817 0.00000 35.30811 0.00000 116684.07919 0.00000 0.02100 0.28890 0.00000 35.24350 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.00344 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.12641 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.17608 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.53971 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.38361 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.30031 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.09977 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.60124 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.03223 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 33.53516 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 39.32021 0.02762 0.02762 0.72176 0.00000 13466.39705 0.00000 0.00000 827.86954 0.87110 0.94599 0.98480 0.96337 1.04959 190243.57735 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 39.29824 0.00000 39.29756 4.92256 151336.55892 0.00000 0.02100 468.59607 0.00000 39.28705 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 972.03986 1.00000 0.00000 176.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 40.44290 0.02234 0.02234 0.72384 0.00000 3233.27335 0.00000 0.00000 153.22384 1.00000 0.94361 0.98383 0.96153 1.04959 24927.79858 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 40.45967 0.00000 40.35390 2.24796 59811.89300 0.00000 0.02100 196.53354 0.00000 40.29821 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 218.34331 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 41.21914 0.06836 0.06836 0.69837 0.00000 26995.11219 0.00000 0.00000 978.17514 0.69005 0.80852 0.90660 0.84632 1.04959 401879.01681 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 40.36788 0.00000 40.30776 1.86949 333380.67360 0.00000 0.02100 1415.75566 0.00000 40.35052 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 129.12586 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 39.67961 0.02573 0.02573 0.71615 0.00000 3287.64527 0.00000 0.00000 109.35856 1.00000 0.99845 0.99991 0.99935 1.04959 28970.68823 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 38.96765 0.00000 38.83792 4.61939 34979.68422 0.00000 0.02100 443.33832 0.00000 38.87224 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 215.46908 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1531711.55121 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 39.01392 0.02772 0.02772 0.71086 0.00000 36111.15513 0.00000 0.00000 1218.81888 0.75252 0.95980 0.99005 0.97379 1.04959 267636.87798 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 38.82141 0.00000 38.82217 5.10358 61974.33047 0.00000 0.02100 62.19147 0.00000 38.81704 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 245.08186 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 39.52096 0.02733 0.02733 0.83857 0.00000 15969.23134 0.00000 0.00000 712.62148 0.74355 0.94622 0.98489 0.96355 1.04959 280899.12217 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 39.03884 0.00000 39.03945 4.52113 68037.52552 0.00000 0.02100 20.83738 0.00000 39.03544 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 71.58724 1.00000 0.00000 1.70285 3273.74379 1355.50261 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 39.55007 0.02287 0.02287 0.82149 0.00000 7034.65762 -0.00000 0.00000 388.79501 0.91161 0.96192 0.99079 0.97535 1.04959 156756.90096 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 40.35244 0.00000 40.35185 5.67630 49379.21811 0.00000 0.02100 21.84716 0.00000 40.33651 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 117.51445 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 36.84115 0.03532 0.03532 0.74368 0.00000 1853.73570 0.00000 0.00000 112.79648 1.00000 0.78134 0.88702 0.82138 1.04959 46089.68505 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 36.26149 0.00000 36.26143 0.00000 116684.07919 0.00000 0.02100 0.29525 0.00000 36.19508 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.09152 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.11183 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.19110 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.55473 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.39819 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.28791 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.08475 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.58622 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 0.04768 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 34.44038 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 40.38186 0.02762 0.02762 0.72176 0.00000 13762.65763 0.00000 0.00000 846.08266 0.87110 0.94599 0.98480 0.96337 1.04959 199678.51630 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 40.35929 0.00000 40.35860 4.92256 151336.55892 0.00000 0.02100 478.90518 0.00000 40.34780 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 993.42473 1.00000 0.00000 177.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 41.53486 0.02234 0.02234 0.72384 0.00000 3304.40533 0.00000 0.00000 156.59476 1.00000 0.94361 0.98383 0.96153 1.04959 26164.06769 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 41.55208 0.00000 41.44346 2.24796 59811.89300 0.00000 0.02100 200.85728 0.00000 41.38627 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 223.14686 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 42.33205 0.06836 0.06836 0.69837 0.00000 27589.00435 0.00000 0.00000 999.69498 0.69005 0.80852 0.90660 0.84632 1.04959 421809.80261 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 41.45781 0.00000 41.39607 1.86949 333380.67360 0.00000 0.02100 1446.90227 0.00000 41.43999 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 131.96663 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 40.75096 0.02573 0.02573 0.71615 0.00000 3359.97343 0.00000 0.00000 111.76445 1.00000 0.99845 0.99991 0.99935 1.04959 30407.46039 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 40.01977 0.00000 39.88655 4.61939 34979.68422 0.00000 0.02100 453.09176 0.00000 39.92179 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 220.20940 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1607675.24563 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 40.06730 0.02772 0.02772 0.71086 0.00000 36905.60013 -0.00000 0.00000 1245.63288 0.75252 0.95980 0.99005 0.97379 1.04959 280910.05986 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 39.86959 0.00000 39.87037 5.10358 61974.33047 0.00000 0.02100 63.55968 0.00000 39.86510 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 250.47366 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 40.58803 0.02733 0.02733 0.83857 0.00000 16320.55424 0.00000 0.00000 728.29915 0.74355 0.94622 0.98489 0.96355 1.04959 294830.03172 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 40.09289 0.00000 40.09352 4.52113 68037.52552 0.00000 0.02100 21.29581 0.00000 40.08940 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 73.16216 1.00000 0.00000 1.74031 3345.76612 1385.32365 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 40.61792 0.02287 0.02287 0.82149 0.00000 7189.42001 0.00000 0.00000 397.34850 0.91161 0.96192 0.99079 0.97535 1.04959 164531.10187 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 41.44196 0.00000 41.44135 5.67630 49379.21811 0.00000 0.02100 22.32780 0.00000 41.42559 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 120.09977 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 37.83586 0.03532 0.03532 0.74368 0.00000 1894.51787 -0.00000 0.00000 115.27800 1.00000 0.78134 0.88702 0.82138 1.04959 48375.45665 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 37.24055 0.00000 37.24049 0.00000 116684.07919 0.00000 0.02100 0.30175 0.00000 37.17234 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.18153 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.09725 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.20611 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.56974 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.41277 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.27550 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.06974 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 -0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.57121 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.06313 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 35.37004 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 41.47217 0.02762 0.02762 0.72176 0.00000 14065.43594 0.00000 0.00000 864.69647 0.87110 0.94599 0.98480 0.96337 1.04959 209581.37156 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 41.44899 0.00000 41.44828 4.92256 151336.55892 0.00000 0.02100 489.44109 0.00000 41.43719 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1015.28006 1.00000 0.00000 178.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 42.65630 0.02234 0.02234 0.72384 0.00000 3377.10221 0.00000 0.00000 160.03984 1.00000 0.94361 0.98383 0.96153 1.04959 27461.64833 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 42.67398 0.00000 42.56243 2.24796 59811.89300 0.00000 0.02100 205.27613 0.00000 42.50370 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 228.05609 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 43.47502 0.06836 0.06836 0.69837 0.00000 28195.96213 0.00000 0.00000 1021.68826 0.69005 0.80852 0.90660 0.84632 1.04959 442729.03569 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 42.57717 0.00000 42.51376 1.86949 333380.67360 0.00000 0.02100 1478.73410 0.00000 42.55887 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 134.86989 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 41.85123 0.02573 0.02573 0.71615 0.00000 3433.89280 0.00000 0.00000 114.22326 1.00000 0.99845 0.99991 0.99935 1.04959 31915.48781 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 41.10031 0.00000 40.96348 4.61939 34979.68422 0.00000 0.02100 463.05977 0.00000 40.99968 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 225.05400 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1687406.28311 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 41.14912 0.02772 0.02772 0.71086 0.00000 37717.52292 0.00000 0.00000 1273.03679 0.75252 0.95980 0.99005 0.97379 1.04959 294841.51186 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 40.94607 0.00000 40.94687 5.10358 61974.33047 0.00000 0.02100 64.95799 0.00000 40.94146 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 255.98408 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 41.68391 0.02733 0.02733 0.83857 0.00000 16679.60625 -0.00000 0.00000 744.32172 0.74355 0.94622 0.98489 0.96355 1.04959 309451.83073 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 41.17540 0.00000 41.17604 4.52113 68037.52552 0.00000 0.02100 21.76431 0.00000 41.17181 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 74.77173 1.00000 0.00000 1.77860 3419.37294 1415.80076 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 41.71460 0.02287 0.02287 0.82149 0.00000 7347.58717 0.00000 0.00000 406.09016 0.91161 0.96192 0.99079 0.97535 1.04959 172690.85645 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 42.56089 0.00000 42.56027 5.67630 49379.21811 0.00000 0.02100 22.81901 0.00000 42.54408 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 122.74196 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 38.85743 0.03532 0.03532 0.74368 0.00000 1936.19724 0.00000 0.00000 117.81412 1.00000 0.78134 0.88702 0.82138 1.04959 50774.58878 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 38.24604 0.00000 38.24598 0.00000 116684.07919 0.00000 0.02100 0.30839 0.00000 38.17600 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.27353 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.08267 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 -0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.22113 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 -0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.58476 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 -0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.42735 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.26310 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.05472 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 -0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.55619 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.07858 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 36.32480 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 42.59192 0.02762 0.02762 0.72176 0.00000 14374.87537 0.00000 0.00000 883.71978 0.87110 0.94599 0.98480 0.96337 1.04959 219975.34898 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 42.56812 0.00000 42.56738 4.92256 151336.55892 0.00000 0.02100 500.20879 0.00000 42.55599 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1037.61621 1.00000 0.00000 179.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 43.80802 0.02234 0.02234 0.72384 0.00000 3451.39842 0.00000 0.00000 163.56072 1.00000 0.94361 0.98383 0.96153 1.04959 28823.58116 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 43.82618 0.00000 43.71162 2.24796 59811.89300 0.00000 0.02100 209.79221 0.00000 43.65130 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 233.07332 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 44.64884 0.06836 0.06836 0.69837 0.00000 28816.27297 0.00000 0.00000 1044.16539 0.69005 0.80852 0.90660 0.84632 1.04959 464685.73710 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 43.72675 0.00000 43.66163 1.86949 333380.67360 0.00000 0.02100 1511.26623 0.00000 43.70796 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 137.83703 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 42.98121 0.02573 0.02573 0.71615 0.00000 3509.43841 0.00000 0.00000 116.73617 1.00000 0.99845 0.99991 0.99935 1.04959 33498.30434 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 42.21002 0.00000 42.06950 4.61939 34979.68422 0.00000 0.02100 473.24708 0.00000 42.10667 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 230.00519 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1771091.50123 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 42.26015 0.02772 0.02772 0.71086 0.00000 38547.30799 -0.00000 0.00000 1301.04359 0.75252 0.95980 0.99005 0.97379 1.04959 309463.88021 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 42.05161 0.00000 42.05244 5.10358 61974.33047 0.00000 0.02100 66.38707 0.00000 42.04688 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 261.61572 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 42.80937 0.02733 0.02733 0.83857 0.00000 17046.55740 0.00000 0.00000 760.69679 0.74355 0.94622 0.98489 0.96355 1.04959 324798.78315 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 42.28714 0.00000 42.28780 4.52113 68037.52552 0.00000 0.02100 22.24313 0.00000 42.28345 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 76.41671 1.00000 0.00000 1.81773 3494.59910 1446.94836 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 42.84090 0.02287 0.02287 0.82149 0.00000 7509.23400 -0.00000 0.00000 415.02414 0.91161 0.96192 0.99079 0.97535 1.04959 181255.28585 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 43.71004 0.00000 43.70939 5.67630 49379.21811 0.00000 0.02100 23.32103 0.00000 43.69277 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 125.44229 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 39.90658 0.03532 0.03532 0.74368 0.00000 1978.79356 0.00000 0.00000 120.40603 1.00000 0.78134 0.88702 0.82138 1.04959 53292.70347 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 39.27869 0.00000 39.27863 0.00000 116684.07919 0.00000 0.02100 0.31517 0.00000 39.20675 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.36754 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.06809 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.23614 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.59977 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.44193 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.25070 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.03971 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.54118 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.09403 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 37.30533 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 43.74190 0.02762 0.02762 0.72176 0.00000 14691.12246 0.00000 0.00000 903.16160 0.87110 0.94599 0.98480 0.96337 1.04959 230884.80525 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 43.71746 0.00000 43.71670 4.92256 151336.55892 0.00000 0.02100 511.21337 0.00000 43.70500 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1060.44375 1.00000 0.00000 180.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 44.99083 0.02234 0.02234 0.72384 0.00000 3527.32914 0.00000 0.00000 167.15905 1.00000 0.94361 0.98383 0.96153 1.04959 30253.05769 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 45.00949 0.00000 44.89183 2.24796 59811.89300 0.00000 0.02100 214.40763 0.00000 44.82988 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 238.20093 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 45.85436 0.06836 0.06836 0.69837 0.00000 29450.23065 0.00000 0.00000 1067.13701 0.69005 0.80852 0.90660 0.84632 1.04959 487731.35904 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 44.90738 0.00000 44.84050 1.86949 333380.67360 0.00000 0.02100 1544.51407 0.00000 44.88807 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 140.86944 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 44.14171 0.02573 0.02573 0.71615 0.00000 3586.64601 0.00000 0.00000 119.30437 1.00000 0.99845 0.99991 0.99935 1.04959 35159.61907 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 43.34969 0.00000 43.20537 4.61939 34979.68422 0.00000 0.02100 483.65851 0.00000 43.24355 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 235.06530 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1858927.00360 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 43.40117 0.02772 0.02772 0.71086 0.00000 39395.34833 0.00000 0.00000 1329.66653 0.75252 0.95980 0.99005 0.97379 1.04959 324811.43022 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 43.18701 0.00000 43.18786 5.10358 61974.33047 0.00000 0.02100 67.84758 0.00000 43.18214 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 267.37127 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 43.96522 0.02733 0.02733 0.83857 0.00000 17421.58147 -0.00000 0.00000 777.43211 0.74355 0.94622 0.98489 0.96355 1.04959 340906.85226 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 43.42889 0.00000 43.42957 4.52113 68037.52552 0.00000 0.02100 22.73248 0.00000 43.42510 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 78.09787 1.00000 0.00000 1.85772 3571.48024 1478.78121 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 43.99760 0.02287 0.02287 0.82149 0.00000 7674.43707 0.00000 0.00000 424.15466 0.91161 0.96192 0.99079 0.97535 1.04959 190244.45952 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 44.89021 0.00000 44.88955 5.67630 49379.21811 0.00000 0.02100 23.83409 0.00000 44.87248 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 128.20201 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 40.98406 0.03532 0.03532 0.74368 0.00000 2022.32699 0.00000 0.00000 123.05496 1.00000 0.78134 0.88702 0.82138 1.04959 55935.70151 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 40.33921 0.00000 40.33915 0.00000 116684.07919 0.00000 0.02100 0.32211 0.00000 40.26533 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.46363 1.00000 0.00000 -0.01091 -0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 0.00000 0.00000 -0.05351 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 -0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.25116 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.61479 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.45651 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.23829 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 -0.02469 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.52616 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 0.10948 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 -0.00000 -4.48659 38.31232 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 44.92293 0.02762 0.02762 0.72176 0.00000 15014.32699 0.00000 0.00000 923.03115 0.87110 0.94599 0.98480 0.96337 1.04959 242335.30504 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 44.89783 0.00000 44.89705 4.92256 151336.55892 0.00000 0.02100 522.46006 0.00000 44.88504 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1083.77350 1.00000 0.00000 181.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 46.20559 0.02234 0.02234 0.72384 0.00000 3604.93034 0.00000 0.00000 170.83655 1.00000 0.94361 0.98383 0.96153 1.04959 31753.42767 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 46.22474 0.00000 46.10391 2.24796 59811.89300 0.00000 0.02100 219.12460 0.00000 46.04029 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 243.44135 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 47.09243 0.06836 0.06836 0.69837 0.00000 30098.13539 0.00000 0.00000 1090.61401 0.69005 0.80852 0.90660 0.84632 1.04959 511919.90544 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 46.11988 0.00000 46.05119 1.86949 333380.67360 0.00000 0.02100 1578.49336 0.00000 46.10005 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 143.96857 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 45.33353 0.02573 0.02573 0.71615 0.00000 3665.55218 0.00000 0.00000 121.92906 1.00000 0.99845 0.99991 0.99935 1.04959 36903.32503 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 44.52013 0.00000 44.37192 4.61939 34979.68422 0.00000 0.02100 494.29899 0.00000 44.41113 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 240.23673 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 1951118.61941 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 44.57300 0.02772 0.02772 0.71086 0.00000 40262.04554 0.00000 0.00000 1358.91918 0.75252 0.95980 0.99005 0.97379 1.04959 340920.12654 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 44.35306 0.00000 44.35393 5.10358 61974.33047 0.00000 0.02100 69.34023 0.00000 44.34806 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 273.25343 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 45.15229 0.02733 0.02733 0.83857 0.00000 17804.85606 0.00000 0.00000 794.53561 0.74355 0.94622 0.98489 0.96355 1.04959 357813.78485 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 44.60147 0.00000 44.60217 4.52113 68037.52552 0.00000 0.02100 23.23259 0.00000 44.59758 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 79.81603 1.00000 0.00000 1.89859 3650.05277 1511.31438 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 45.18554 0.02287 0.02287 0.82149 0.00000 7843.27459 -0.00000 0.00000 433.48606 0.91161 0.96192 0.99079 0.97535 1.04959 199679.44222 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 46.10225 0.00000 46.10157 5.67630 49379.21811 0.00000 0.02100 24.35844 0.00000 46.08404 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 131.02246 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 42.09063 0.03532 0.03532 0.74368 0.00000 2066.81816 0.00000 0.00000 125.76217 1.00000 0.78134 0.88702 0.82138 1.04959 58709.77639 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 41.42837 0.00000 41.42831 0.00000 116684.07919 0.00000 0.02100 0.32919 0.00000 41.35250 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.56183 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.03892 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.26617 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.62980 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.47109 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 -0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 0.00000 -0.00000 -1.22589 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 0.00000 -0.00967 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 -0.00000 0.00000 0.05876 -0.00425 0.00000 -0.00000 -0.51114 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 -0.00000 -0.00000 0.12493 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 39.34650 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 46.13585 0.02762 0.02762 0.72176 0.00000 15344.64201 0.00000 0.00000 943.33782 0.87110 0.94599 0.98480 0.96337 1.04959 254353.68085 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 46.11007 0.00000 46.10928 4.92256 151336.55892 0.00000 0.02100 533.95418 0.00000 46.09693 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1107.61651 1.00000 0.00000 182.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 47.45314 0.02234 0.02234 0.72384 0.00000 3684.23877 0.00000 0.00000 174.59495 1.00000 0.94361 0.98383 0.96153 1.04959 33328.20699 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 47.47281 0.00000 47.34871 2.24796 59811.89300 0.00000 0.02100 223.94534 0.00000 47.28338 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 248.79706 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 48.36393 0.06836 0.06836 0.69837 0.00000 30760.29402 0.00000 0.00000 1114.60751 0.69005 0.80852 0.90660 0.84632 1.04959 537308.05847 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 47.36511 0.00000 47.29458 1.86949 333380.67360 0.00000 0.02100 1613.22020 0.00000 47.34475 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 147.13587 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 46.55754 0.02573 0.02573 0.71615 0.00000 3746.19429 0.00000 0.00000 124.61150 1.00000 0.99845 0.99991 0.99935 1.04959 38733.50833 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 45.72217 0.00000 45.56996 4.61939 34979.68422 0.00000 0.02100 505.17356 0.00000 45.61023 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 245.52194 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 2047882.38572 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 45.77647 0.02772 0.02772 0.71086 0.00000 41147.81008 0.00000 0.00000 1388.81539 0.75252 0.95980 0.99005 0.97379 1.04959 357827.71746 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 45.55059 0.00000 45.55148 5.10358 61974.33047 0.00000 0.02100 70.86571 0.00000 45.54546 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 279.26500 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 46.37140 0.02733 0.02733 0.83857 0.00000 18196.56269 0.00000 0.00000 812.01538 0.74355 0.94622 0.98489 0.96355 1.04959 375559.19977 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 45.80571 0.00000 45.80643 4.52113 68037.52552 0.00000 0.02100 23.74371 0.00000 45.80172 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 81.57198 1.00000 0.00000 1.94036 3730.35389 1544.56327 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 46.40555 0.02287 0.02287 0.82149 0.00000 8015.82655 0.00000 0.00000 443.02275 0.91161 0.96192 0.99079 0.97535 1.04959 209582.34341 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 47.34701 0.00000 47.34631 5.67630 49379.21811 0.00000 0.02100 24.89432 0.00000 47.32831 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 133.90495 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 43.22707 0.03532 0.03532 0.74368 0.00000 2112.28814 0.00000 0.00000 128.52893 1.00000 0.78134 0.88702 0.82138 1.04959 61621.42873 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 42.54694 0.00000 42.54687 0.00000 116684.07919 0.00000 0.02100 0.33643 0.00000 42.46901 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.66219 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.02434 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 -0.00000 0.00000 -0.00000 -0.05894 0.00112 -0.00000 0.00000 1.28119 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 -0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.64482 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.48567 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 0.00000 0.00000 -0.00000 -0.22120 -0.00079 -0.00000 0.00000 -1.21348 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 0.00534 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.49613 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 0.14038 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 40.40860 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 47.38152 0.02762 0.02762 0.72176 0.00000 15682.22396 0.00000 0.00000 964.09125 0.87110 0.94599 0.98480 0.96337 1.04959 266968.09593 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 47.35504 0.00000 47.35423 4.92256 151336.55892 0.00000 0.02100 545.70116 0.00000 47.34155 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1131.98406 1.00000 0.00000 183.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 48.73437 0.02234 0.02234 0.72384 0.00000 3765.29198 0.00000 0.00000 178.43604 1.00000 0.94361 0.98383 0.96153 1.04959 34981.08591 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 48.75458 0.00000 48.62713 2.24796 59811.89300 0.00000 0.02100 228.87213 0.00000 48.56003 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 254.27059 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 49.66975 0.06836 0.06836 0.69837 0.00000 31437.02014 0.00000 0.00000 1139.12886 0.69005 0.80852 0.90660 0.84632 1.04959 563955.31143 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 48.64397 0.00000 48.57153 1.86949 333380.67360 0.00000 0.02100 1648.71103 0.00000 48.62306 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 150.37286 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 47.81459 0.02573 0.02573 0.71615 0.00000 3828.61052 0.00000 0.00000 127.35295 1.00000 0.99845 0.99991 0.99935 1.04959 40654.45773 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 46.95667 0.00000 46.80035 4.61939 34979.68422 0.00000 0.02100 516.28738 0.00000 46.84171 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 250.92342 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 2149445.05373 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 47.01244 0.02772 0.02772 0.71086 0.00000 42053.06143 0.00000 0.00000 1419.36931 0.75252 0.95980 0.99005 0.97379 1.04959 375573.82335 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 46.78046 0.00000 46.78138 5.10358 61974.33047 0.00000 0.02100 72.42476 0.00000 46.77519 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 285.40883 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 47.62343 0.02733 0.02733 0.83857 0.00000 18596.88686 0.00000 0.00000 829.87971 0.74355 0.94622 0.98489 0.96355 1.04959 394184.68070 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 47.04247 0.00000 47.04320 4.52113 68037.52552 0.00000 0.02100 24.26607 0.00000 47.03836 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 83.36656 1.00000 0.00000 1.98305 3812.42163 1578.54365 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 47.65850 0.02287 0.02287 0.82149 0.00000 8192.17464 0.00000 0.00000 452.76925 0.91161 0.96192 0.99079 0.97535 1.04959 219976.36902 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 48.62538 0.00000 48.62466 5.67630 49379.21811 0.00000 0.02100 25.44200 0.00000 48.60617 4.34921 0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 136.85086 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 44.39421 0.03532 0.03532 0.74368 0.00000 2158.75846 0.00000 0.00000 131.35657 1.00000 0.78134 0.88702 0.82138 1.04959 64677.48153 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 43.69570 0.00000 43.69564 0.00000 116684.07919 0.00000 0.02100 0.34384 0.00000 43.61568 4.34921 0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.76476 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 0.00000 -0.00000 0.00000 0.02360 0.00836 -0.00000 0.00000 -0.00976 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.29620 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 -0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 -0.00000 -0.00000 0.65984 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 -0.00000 -0.00000 -0.03941 -0.00346 0.00000 -0.00000 0.50025 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.20108 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 0.00000 -0.00000 0.00000 -0.07716 0.00971 0.00000 -0.00000 0.02036 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 0.00000 0.00000 0.00000 0.05876 -0.00425 0.00000 0.00000 -0.48111 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 0.00000 0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 0.15583 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 41.49936 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 48.66082 0.02762 0.02762 0.72176 0.00000 16027.23271 -0.00000 0.00000 985.30124 0.87110 0.94599 0.98480 0.96337 1.04959 280208.11024 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 48.63363 0.00000 48.63279 4.92256 151336.55892 0.00000 0.02100 557.70658 0.00000 48.61977 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1156.88769 1.00000 0.00000 184.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 50.05020 0.02234 0.02234 0.72384 0.00000 3848.12836 0.00000 0.00000 182.36163 1.00000 0.94361 0.98383 0.96153 1.04959 36715.93770 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 50.07095 0.00000 49.94006 2.24796 59811.89300 0.00000 0.02100 233.90732 0.00000 49.87115 4.34921 0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 259.86454 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 51.01084 0.06836 0.06836 0.69837 0.00000 32128.63422 0.00000 0.00000 1164.18968 0.69005 0.80852 0.90660 0.84632 1.04959 591924.10811 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 49.95736 0.00000 49.88296 1.86949 333380.67360 0.00000 0.02100 1684.98265 0.00000 49.93588 0.07219 4.34921 0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 153.68106 1.00000 0.00000 + 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.41998 0.00000 49.10559 0.02573 0.02573 0.71615 0.00000 3912.83991 0.00000 0.00000 130.15471 1.00000 0.99845 0.99991 0.99935 1.04959 42670.67469 1.03345 8.61939 0.74189 0.80217 1.33714 0.00000 48.22450 0.00000 48.06396 4.61939 34979.68422 0.00000 0.02100 527.64569 0.00000 48.10643 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19461 1.00000 0.19782 8.61939 0.00000 256.44373 1.00000 0.00000 0.39373 0.09000 1.02700 0.02672 0.24764 0.02200 0.90913 2256044.62015 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.42246 0.00000 48.28177 0.02772 0.02772 0.71086 0.00000 42978.22830 -0.00000 0.00000 1450.59542 0.75252 0.95980 0.99005 0.97379 1.04959 394200.02953 0.94413 9.10358 3.37023 0.66465 6.07428 0.00000 48.04353 0.00000 48.04447 5.10358 61974.33047 0.00000 0.02100 74.01810 0.00000 48.03812 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21821 1.00000 0.21592 9.10358 0.00000 291.68782 1.00000 0.00000 1.02200 1.02200 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.32732 0.00000 48.90926 0.02733 0.02733 0.83857 0.00000 19006.01816 0.00000 0.00000 848.13706 0.74355 0.94622 0.98489 0.96355 1.04959 413733.87364 0.92571 8.52113 1.00000 0.68837 1.80234 0.00000 48.31261 0.00000 48.31337 4.52113 68037.52552 0.00000 0.02100 24.79992 0.00000 48.30840 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21123 1.00000 0.20937 8.52113 0.00000 85.20062 1.00000 0.00000 2.02667 3896.29486 1613.27159 0.07800 0.12100 0.09117 21.21212 5.91549 0.33000 0.89336 0.00000 48.94528 0.02287 0.02287 0.82149 0.00000 8372.40239 0.00000 0.00000 462.73016 0.91161 0.96192 0.99079 0.97535 1.04959 230885.87588 0.99370 9.67630 0.97519 0.59484 1.75762 0.00000 49.93826 0.00000 49.93753 5.67630 49379.21811 0.00000 0.02100 26.00172 0.00000 49.91854 4.34921 -0.00000 7.01340 2.46202 0.00000 0.33000 0.00960 0.19361 1.00000 0.19148 9.67630 0.00000 139.86157 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.43000 0.22710 0.00000 45.59285 0.03532 0.03532 0.74368 0.00000 2206.25112 0.00000 0.00000 134.24641 1.00000 0.78134 0.88702 0.82138 1.04959 67885.09620 1.06586 2.62369 0.05992 0.80825 0.10800 0.00000 44.87549 0.00000 44.87542 0.00000 116684.07919 0.00000 0.02100 0.35140 0.00000 44.79330 4.34921 -0.00000 7.01340 2.46202 0.00000 0.43000 0.00960 0.17148 1.00000 0.16831 2.62369 0.00000 4.86958 1.00000 0.00000 -0.01091 0.00000 6.37971 0.00000 1.07016 0.00236 0.52646 0.00000 -0.55057 0.07257 -0.00000 -0.00000 0.00000 0.02360 0.00836 0.00000 -0.00000 0.00482 -0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.07025 0.00527 0.42504 32.18884 0.91825 -0.00000 11.72099 0.05656 0.00034 0.00034 0.06676 -0.29644 194.33698 2.75874 -0.01676 -0.00000 176.64731 0.00000 -6.83766 0.01884 -1.09289 0.00000 -0.75072 0.01928 0.00000 0.00000 -0.00000 -0.05894 0.00112 0.00000 0.00000 1.31122 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.04736 0.00459 -0.05998 0.00000 56.11137 0.00000 -2.55379 0.01115 -2.88052 0.00000 -0.58271 0.01856 0.00000 -0.00000 -0.00000 -0.06218 0.00201 0.00000 -0.00000 0.67485 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03551 -0.00957 -3.79494 0.02178 -0.01124 0.02137 -0.02741 -0.00000 23.24535 0.00000 -1.65998 0.07874 0.40043 0.00000 -0.59937 0.02498 -0.00000 0.00000 -0.00000 -0.03941 -0.00346 -0.00000 -0.00000 0.51483 0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.05248 0.00383 -0.09831 -0.00000 9.19437 0.00000 -0.75904 0.03230 -0.18256 0.00000 -0.42712 0.03621 -0.00000 -0.00000 -0.00000 -0.22120 -0.00079 0.00000 0.00000 -1.18868 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.07182 -0.19164 2.96438 0.17992 0.00070 0.00758 -0.05611 -0.00000 55.78404 0.00000 -1.95141 -0.00718 -4.22515 0.00000 -0.47858 0.02260 -0.00000 0.00000 0.00000 -0.07716 0.00971 -0.00000 0.00000 0.03537 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03896 0.00581 -0.08069 -0.00000 -8.62271 0.00000 -0.91146 -0.00084 -2.41280 0.00000 -0.52976 0.04445 -0.00000 0.00000 0.00000 0.05876 -0.00425 -0.00000 0.00000 -0.46610 -0.00000 -0.00000 -0.00000 -0.00000 -0.00000 0.03084 0.01081 -0.03496 -0.00000 -93.81350 0.00000 7.18063 -0.01756 2.19015 -0.00000 -0.61399 0.08762 -0.00000 -0.00000 0.00000 -0.04426 -0.00188 0.00000 -0.00000 0.17128 0.00000 0.00000 -0.00000 -0.00000 -0.00000 0.10049 -0.00369 0.00000 -4.48659 42.61957 1.00000 1.02700 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.35108 0.00000 49.97467 0.02762 0.02762 0.72176 0.00000 16379.83165 0.00000 0.00000 1006.97786 0.87110 0.94599 0.98480 0.96337 1.04959 294104.74975 0.88273 8.92256 0.64796 0.68475 1.16784 0.00000 49.94674 0.00000 49.94588 4.92256 151336.55892 0.00000 0.02100 569.97612 0.00000 49.93251 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.19915 1.00000 0.19770 8.92256 0.00000 1182.33921 1.00000 0.00000 185.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.31000 0.30320 0.00000 51.40156 0.02234 0.02234 0.72384 0.00000 3932.78714 0.00000 0.00000 186.37358 1.00000 0.94361 0.98383 0.96153 1.04959 38536.82772 1.18232 6.24796 0.33930 0.74368 0.61154 0.00000 51.42287 0.00000 51.28845 2.24796 59811.89300 0.00000 0.02100 239.05328 0.00000 51.21767 4.34921 -0.00000 7.01340 2.46202 0.00000 0.31000 0.00960 0.21243 1.00000 0.20924 6.24796 0.00000 265.58156 1.00000 0.00000 0.07800 0.12100 0.09117 21.21212 5.91549 0.29000 0.28849 0.00000 52.38813 0.06836 0.06836 0.69837 0.00000 32835.46381 0.00000 0.00000 1189.80184 0.69005 0.80852 0.90660 0.84632 1.04959 621279.98914 1.04811 5.86949 0.55484 0.77944 1.00000 0.00000 51.30621 0.00000 51.22980 1.86949 333380.67360 0.00000 0.02100 1722.05225 0.00000 51.28415 0.07219 4.34921 -0.00000 7.01340 2.46202 0.00000 0.29000 0.00960 0.17270 1.00000 0.17475 5.86949 0.00000 157.06204 1.00000 0.00000 diff --git a/tests/ferhat/bidon.mod b/tests/ferhat/bidon.mod index f38e75afd..c6167015e 100644 --- a/tests/ferhat/bidon.mod +++ b/tests/ferhat/bidon.mod @@ -13,14 +13,14 @@ m=1; n=1; o=1; -model(SPARSE_DLL,gcc_compiler); +model(SPARSE_DLL,gcc_compiler,cutoff=1e-12); /*0*/ k=(1-h)*k(-1)+i; /*k:0*/ /*1*/ y=l^j*k^m; /*l:1*/ /*2*/ c=y*a+b+0.3*c(-1)+0.1*c(+1)+0.*g_bar(-10); /*c:2*/ /*3*/ infl=0.02*y+0.5*r; /*infl:3*/ /*4*/ i=d*(y-y(-1))+e/**r*/; /*i4*/ /*5*/ g=f*g_bar; /*g:5*/ -/*6*/ y=0.6*(c+i+g)+0.1*y(-2)+0.1*y(+2)+0.1*y(-1)+0.1*y(+1); /*y:6*/ +/*6*/ y=0.6*(c+i+g)+/*0.1*y(-2)+0.1*y(+2)+*/0.1*y(-1)+0.1*y(+1); /*y:6*/ /*7*/ r=y-1+infl-0.02; /*r7*/ /*8*/ p1=i+0.5*q1; /*9*/ q1=0.5*p1+c; @@ -50,16 +50,16 @@ end; steady(solve_algo=2); //check; -/*shocks; +shocks; var g_bar; periods 1; values 0.16; -end;*/ +end; + +options_.slowc = 1; - - -simul(periods=100); +simul(periods=80); rplot c; diff --git a/tests/ferhat/fs2000.mod b/tests/ferhat/fs2000.mod new file mode 100644 index 000000000..6c3285c16 --- /dev/null +++ b/tests/ferhat/fs2000.mod @@ -0,0 +1,103 @@ +// This file replicates the estimation of the CIA model from +// Frank Schorfheide (2000) "Loss function-based evaluation of DSGE models" +// Journal of Applied Econometrics, 15, 645-670. +// the data are the ones provided on Schorfheide's web site with the programs. +// http://www.econ.upenn.edu/~schorf/programs/dsgesel.ZIP +// You need to have fsdat.m in the same directory as this file. +// This file replicates: +// -the posterior mode as computed by Frank's Gauss programs +// -the parameter mean posterior estimates reported in the paper +// -the model probability (harmonic mean) reported in the paper +// This file was tested with dyn_mat_test_0218.zip +// the smooth shocks are probably stil buggy +// +// The equations are taken from J. Nason and T. Cogley (1994) +// "Testing the implications of long-run neutrality for monetary business +// cycle models" Journal of Applied Econometrics, 9, S37-S70. +// Note that there is an initial minus sign missing in equation (A1), p. S63. +// +// Michel Juillard, February 2004 + +var m P c e W R k d n l gy_obs gp_obs y dA; +varexo e_a e_m; + +parameters alp bet gam mst rho psi del; + +alp = 0.33; +bet = 0.99; +gam = 0.003; +mst = 1.011; +rho = 0.7; +psi = 0.787; +del = 0.02; + +model(sparse_dll,gcc_compiler,cutoff=1e-17); +dA = exp(gam+e_a); +log(m) = (1-rho)*log(mst) + rho*log(m(-1))+e_m; +-P/(c(+1)*P(+1)*m)+bet*P(+1)*(alp*exp(-alp*(gam+log(e(+1))))*k^(alp-1)*n(+1)^(1-alp)+(1-del)*exp(-(gam+log(e(+1)))))/(c(+2)*P(+2)*m(+1))=0; +W = l/n; +-(psi/(1-psi))*(c*P/(1-n))+l/n = 0; +R = P*(1-alp)*exp(-alp*(gam+e_a))*k(-1)^alp*n^(-alp)/W; +1/(c*P)-bet*P*(1-alp)*exp(-alp*(gam+e_a))*k(-1)^alp*n^(1-alp)/(m*l*c(+1)*P(+1)) = 0; +c+k = exp(-alp*(gam+e_a))*k(-1)^alp*n^(1-alp)+(1-del)*exp(-(gam+e_a))*k(-1); +P*c = m; +m-1+d = l; +e = exp(e_a); +y = k(-1)^alp*n^(1-alp)*exp(-alp*(gam+e_a)); +gy_obs = dA*y/y(-1); +gp_obs = (P/P(-1))*m(-1)/dA; +end; + +initval; +k = 6; +m = mst; +P = 2.25; +c = 0.45; +e = 1; +W = 4; +R = 1.02; +d = 0.85; +n = 0.19; +l = 0.86; +y = 0.6; +gy_obs = exp(gam); +gp_obs = exp(-gam); +dA = exp(gam); +e_a=0; +e_m=0; +end; + +/*shocks; +var e_a; stderr 0.014; +var e_m; stderr 0.005; +end; +*/ +steady; + +shocks; +var e_a; +periods 1; +values 0.16; +end; + + +simul(periods=80); +rplot y; +rplot k; +rplot c; +/*estimated_params; +alp, beta_pdf, 0.356, 0.02; +bet, beta_pdf, 0.993, 0.002; +gam, normal_pdf, 0.0085, 0.003; +mst, normal_pdf, 1.0002, 0.007; +rho, beta_pdf, 0.129, 0.223; +psi, beta_pdf, 0.65, 0.05; +del, beta_pdf, 0.01, 0.005; +stderr e_a, inv_gamma_pdf, 0.035449, inf; +stderr e_m, inv_gamma_pdf, 0.008862, inf; +end; + +varobs gp_obs gy_obs; + +estimation(datafile=fsdat,nobs=192,loglinear,mh_replic=2000,mh_nblocks=5,mh_jscale=0.8); +*/ diff --git a/tests/ferhat/ireland.mod b/tests/ferhat/ireland.mod new file mode 100644 index 000000000..80fa7a1fc --- /dev/null +++ b/tests/ferhat/ireland.mod @@ -0,0 +1,124 @@ +var y a k c i h eoy eoc eoh oy oc oh; +varexo e eeoy eeoc eeoh; + +parameters theta rho eta gam bet delta aa r11 r12 r13 r21 r22 r23 r31 r32 r33 scy shc shy; + +bet = 0.99; +delta = 0.025; +theta = 0.2; +rho = 0.9959; +eta = 1.0051; +gam = 0.0045; +aa = 1.8; +r11 = 0.99; +r12 = 0; +r13 = 0; +r21 = 0; +r22 = 0.99; +r23 = 0; +r31 = 0; +r32 = 0; +r33 = 0.99; +scy = 0.0040; +shy = 0.0015; +shc = 0.0010; + +model(sparse_dll,gcc_compiler); +exp(y) = exp(a)*exp(k(-1))^theta*exp(h)^(1-theta); +a = (1-rho)*aa+rho*a(-1)+e; +exp(y) = exp(c) + exp(i); +eta*exp(k) = (1-delta)*exp(k(-1))+exp(i); +gam*exp(c)*exp(h) = (1-theta)*exp(y); +eta/exp(c) = bet*(1/exp(c(+1)))*(theta*(exp(y(+1))/exp(k))+1-delta); +eoy = r11*eoy(-1) + r12*eoc(-1) + r13*eoh(-1) + eeoy; +eoc = r21*eoy(-1) + r22*eoc(-1) + r23*eoh(-1) + scy*eeoy+eeoc; +eoh = r31*eoy(-1) + r32*eoc(-1) + r33*eoh(-1) + shy*eeoy+shc*eeoc+eeoh; +oy = y + eoy; +oc = c + eoc; +oh = h + eoh; +end; + +initval; +/*a = 1.7; +y = 8; +c = 8; +k = 10; +i = 5; +h = 4; +eoy = 0; +eoc = 0; +eoh = 0; +oy = y; +oc = c; +oh = h; +*/ +e=0; +eeoy=0; +eeoc=0; +eeoh=0; +y= 7.99331700544506; +a= 1.8; +k= 9.59646163090336; +c= 7.83132048725623; +i= 6.09323152367607; +h= 5.34253084908048; +eoy= 0.0000; +eoc= 0.0000; +eoh= 0; +oy= 7.99331700544506; +oc= 7.83132048725623; +oh= 5.34253084908048; + + +end; +options_.dynatol=1e-12; +options_.maxit_=500; +options_.slowc=1; +steady(solve_algo=3); +options_.dynatol=4e-8; +//check; + + +shocks; +var e; +periods 1; +values -0.0002; +end; +simul(periods=60); +rplot y; +rplot k; + + +/*estimated_params; +theta , 0.22, 0.1, 0.5; +rho , 0.99, 0.7, 0.9999; +eta , 1.0051, 1, 1.03; +gam , 0.0045, 0.001, 0.01; +aa , 1.8, 0.1, 4; +r11 , 1.4187, -2, 2; +r12 , 0.2251, -2, 2; +r13 , -0.4441, -2, 2; +r21 , 0.0935, -2, 2; +r22 , 1.0236, -2, 2; +r23 , -0.0908, -2, 2; +r31 , 0.7775, -2, 2; +r32 , 0.3706, -2, 2; +r33 , 0.2398, -2, 2; +scy , 0.0040, -2, 2; +shy , 0.0015, -2, 2; +shc , 0.0010, -2, 2; +stderr e , 0.0056, 0, 0.2; +stderr eeoy , 0.0070, 0, 0.1; +stderr eeoc , 0.0069, 0, 0.1; +stderr eeoh , 0.0018, 0, 0.1; +end; + +varobs oy oc oh; + +observation_trends; +oy (log(eta)); +oc (log(eta)); +end; + +estimation(datafile=idata,mode_compute=1,nograph); +*/ diff --git a/tests/ferhat/ls2003.mod b/tests/ferhat/ls2003.mod new file mode 100644 index 000000000..d535f90cf --- /dev/null +++ b/tests/ferhat/ls2003.mod @@ -0,0 +1,79 @@ +var y y_s R pie dq pie_s de A y_obs pie_obs R_obs; +varexo e_R e_q e_ys e_pies e_A; + +parameters psi1 psi2 psi3 rho_R tau alpha rr k rho_q rho_A rho_ys rho_pies; + +psi1 = 1.54; +psi2 = 0.25; +psi3 = 0.25; +rho_R = 0.5; +alpha = 0.3; +rr = 2.51; +k = 0.5; +tau = 0.5; +rho_q = 0.4; +rho_A = 0.2; +rho_ys = 0.9; +rho_pies = 0.7; + + +model(sparse_dll,gcc_compiler,cutoff=1e-17); +y = y(+1) - (tau +alpha*(2-alpha)*(1-tau))*(R-pie(+1))-alpha*(tau +alpha*(2-alpha)*(1-tau))*dq(+1) + alpha*(2-alpha)*((1-tau)/tau)*(y_s-y_s(+1))-A(+1); +pie = exp(-rr/400)*pie(+1)+alpha*exp(-rr/400)*dq(+1)-alpha*dq+(k/(tau+alpha*(2-alpha)*(1-tau)))*y+alpha*(2-alpha)*(1-tau)/(tau*(tau+alpha*(2-alpha)*(1-tau)))*y_s; +pie = de+(1-alpha)*dq+pie_s; +R = rho_R*R(-1)+(1-rho_R)*(psi1*pie+psi2*(y+alpha*(2-alpha)*((1-tau)/tau)*y_s)+psi3*de)+e_R; +dq = rho_q*dq(-1)+e_q; +y_s = rho_ys*y_s(-1)+e_ys; +pie_s = rho_pies*pie_s(-1)+e_pies; +A = rho_A*A(-1)+e_A; +y_obs = y-y(-1)+A; +pie_obs = 4*pie; +R_obs = 4*R; +end; + +/*shocks; +var e_R = 1.25^2; +var e_q = 2.5^2; +var e_A = 1.89; +var e_ys = 1.89; +var e_pies = 1.89; +end; + +varobs y_obs R_obs pie_obs dq de; + +estimated_params; +psi1 , gamma_pdf,1.5,0.5; +psi2 , gamma_pdf,0.25,0.125; +psi3 , gamma_pdf,0.25,0.125; +rho_R ,beta_pdf,0.5,0.2; +alpha ,beta_pdf,0.3,0.1; +rr ,gamma_pdf,2.5,1; +k , gamma_pdf,0.5,0.25; +tau ,gamma_pdf,0.5,0.2; +rho_q ,beta_pdf,0.4,0.2; +rho_A ,beta_pdf,0.5,0.2; +rho_ys ,beta_pdf,0.8,0.1; +rho_pies,beta_pdf,0.7,0.15; +stderr e_R,inv_gamma_pdf,1.2533,0.6551; +stderr e_q,inv_gamma_pdf,2.5066,1.3103; +stderr e_A,inv_gamma_pdf,1.2533,0.6551; +stderr e_ys,inv_gamma_pdf,1.2533,0.6551; +stderr e_pies,inv_gamma_pdf,1.88,0.9827; +end; + +estimation(datafile=data_ca1,first_obs=8,nobs=79,mh_nblocks=10,prefilter=1,mh_jscale=0.5,mh_replic=0); + +*/ + +steady; + + +shocks; +var e_q; +periods 1; +values 0.5; +end; + +simul(periods=80); +rplot A; +rplot pie; diff --git a/tests/ferhat/multimod.mod b/tests/ferhat/multimod.mod new file mode 100644 index 000000000..8996fe873 --- /dev/null +++ b/tests/ferhat/multimod.mod @@ -0,0 +1,4558 @@ +var +CA_A +CA_ACT +CA_B +CA_BT +CA_C +CA_COIL +CA_CPI +CA_CU +CA_CURBAL +CA_C_DI +CA_C_PI +CA_DLGDP +CA_DLLF +CA_ER +CA_FACT +CA_GDEF +CA_GDP +CA_GDP_FE +CA_GE +CA_GNP +CA_IM +CA_INFL +CA_INVEST +CA_IOIL +CA_IT +CA_K +CA_LF +CA_M +CA_MPC +CA_MPCINV +CA_MPK +CA_NEER +CA_NFA +CA_P +CA_PFM +CA_PGNP +CA_PGNPNO +CA_PIM +CA_PIMA +CA_PIT +CA_PXM +CA_PXT +CA_Q +CA_R +CA_RCI +CA_RL +CA_RLR +CA_RS +CA_RSR +CA_TAX +CA_TAXH +CA_TAXK +CA_TB +CA_TFP_FE +CA_TRATE +CA_UNR +CA_UNR_A +CA_W +CA_WH +CA_WH1 +CA_WH2 +CA_WH3 +CA_WK +CA_XM +CA_XMA +CA_XT +CA_YD +DC_A +DC_CTOT +DC_DEBT +DC_GDP +DC_GDP_FE +DC_IM +DC_INVEST +DC_INVESTC +DC_INVESTM +DC_IOIL +DC_IT +DC_K +DC_KC +DC_KM +DC_NFA +DC_NNPCAP +DC_P +DC_PGNP +DC_PIM +DC_PIMA +DC_PIT +DC_PXM +DC_PXT +DC_QNT +DC_XCOM +DC_XM +DC_XMA +DC_XOIL +DC_XSM +DC_XT +FR_A +FR_ACT +FR_B +FR_BT +FR_C +FR_COIL +FR_CPI +FR_CU +FR_CURBAL +FR_C_DI +FR_C_PI +FR_DLGDP +FR_DLLF +FR_ER +FR_FACT +FR_GDEF +FR_GDP +FR_GDP_FE +FR_GE +FR_GNP +FR_IM +FR_INFL +FR_INVEST +FR_IOIL +FR_IT +FR_K +FR_LF +FR_M +FR_MPC +FR_MPCINV +FR_MPK +FR_NEER +FR_NFA +FR_P +FR_PFM +FR_PGNP +FR_PGNPNO +FR_PIM +FR_PIMA +FR_PIT +FR_PXM +FR_PXT +FR_Q +FR_R +FR_RCI +FR_RL +FR_RLR +FR_RS +FR_RSR +FR_TAX +FR_TAXH +FR_TAXK +FR_TB +FR_TFP_FE +FR_TRATE +FR_UNR +FR_UNR_A +FR_W +FR_WH +FR_WH1 +FR_WH2 +FR_WH3 +FR_WK +FR_XM +FR_XMA +FR_XT +FR_YD +GR_A +GR_ACT +GR_B +GR_BT +GR_C +GR_COIL +GR_CPI +GR_CU +GR_CURBAL +GR_C_DI +GR_C_PI +GR_DLGDP +GR_DLLF +GR_ER +GR_FACT +GR_GDEF +GR_GDP +GR_GDP_FE +GR_GE +GR_GNP +GR_IM +GR_INFL +GR_INVEST +GR_IOIL +GR_IT +GR_K +GR_LF +GR_M +GR_MPC +GR_MPCINV +GR_MPK +GR_NEER +GR_NFA +GR_P +GR_PFM +GR_PGNP +GR_PGNPNO +GR_PIM +GR_PIMA +GR_PIT +GR_PXM +GR_PXT +GR_Q +GR_R +GR_RCI +GR_RL +GR_RLR +GR_RS +GR_RSR +GR_TAX +GR_TAXH +GR_TAXK +GR_TB +GR_TFP_FE +GR_TRATE +GR_UNR +GR_UNR_A +GR_W +GR_WH +GR_WH1 +GR_WH2 +GR_WH3 +GR_WK +GR_XM +GR_XMA +GR_XT +GR_YD +HO_A +HO_GDP +HO_ICOM +HO_IM +HO_IT +HO_NFA +HO_PIT +HO_PXT +HO_XOIL +HO_XT +IT_A +IT_ACT +IT_B +IT_BT +IT_C +IT_COIL +IT_CPI +IT_CU +IT_CURBAL +IT_C_DI +IT_C_PI +IT_DLGDP +IT_DLLF +IT_ER +IT_FACT +IT_GDEF +IT_GDP +IT_GDP_FE +IT_GE +IT_GNP +IT_IM +IT_INFL +IT_INVEST +IT_IOIL +IT_IT +IT_K +IT_LF +IT_M +IT_MPC +IT_MPCINV +IT_MPK +IT_NEER +IT_NFA +IT_P +IT_PFM +IT_PGNP +IT_PGNPNO +IT_PIM +IT_PIMA +IT_PIT +IT_PXM +IT_PXT +IT_Q +IT_R +IT_RCI +IT_RL +IT_RLR +IT_RS +IT_RSR +IT_TAX +IT_TAXH +IT_TAXK +IT_TB +IT_TFP_FE +IT_TRATE +IT_UNR +IT_UNR_A +IT_W +IT_WH +IT_WH1 +IT_WH2 +IT_WH3 +IT_WK +IT_XM +IT_XMA +IT_XT +IT_YD +JA_A +JA_ACT +JA_B +JA_BT +JA_C +JA_COIL +JA_CPI +JA_CU +JA_CURBAL +JA_C_DI +JA_C_PI +JA_DLGDP +JA_DLLF +JA_ER +JA_FACT +JA_GDEF +JA_GDP +JA_GDP_FE +JA_GE +JA_GNP +JA_IM +JA_INFL +JA_INVEST +JA_IOIL +JA_IT +JA_K +JA_LF +JA_M +JA_MPC +JA_MPCINV +JA_MPK +JA_NEER +JA_NFA +JA_P +JA_PFM +JA_PGNP +JA_PGNPNO +JA_PIM +JA_PIMA +JA_PIT +JA_PXM +JA_PXT +JA_Q +JA_R +JA_RCI +JA_RL +JA_RLR +JA_RS +JA_RSR +JA_TAX +JA_TAXH +JA_TAXK +JA_TB +JA_TFP_FE +JA_TRATE +JA_UNR +JA_UNR_A +JA_W +JA_WH +JA_WH1 +JA_WH2 +JA_WH3 +JA_WK +JA_XM +JA_XMA +JA_XT +JA_YD +PCOM +POIL +RES_CA_ICOM +RES_FR_ICOM +RES_GR_ICOM +RES_IT_ICOM +RES_JA_ICOM +RES_SI_ICOM +RES_UK_ICOM +RES_US_ICOM +RW_FACT +RW_IM +RW_NEER +RW_PFM +RW_PIM +RW_PIMA +RW_PXM +RW_RCI +RW_XCOM +RW_XM +RW_XMA +RW_XOIL +SI_A +SI_ACT +SI_B +SI_BT +SI_C +SI_COIL +SI_CPI +SI_CU +SI_CURBAL +SI_C_DI +SI_C_PI +SI_DLGDP +SI_DLLF +SI_ER +SI_FACT +SI_GDEF +SI_GDP +SI_GDP_FE +SI_GE +SI_GNP +SI_IM +SI_INFL +SI_INVEST +SI_IOIL +SI_IT +SI_K +SI_LF +SI_M +SI_MPC +SI_MPCINV +SI_MPK +SI_NEER +SI_NFA +SI_P +SI_PFM +SI_PGNP +SI_PGNPNO +SI_PIM +SI_PIMA +SI_PIT +SI_PXM +SI_PXT +SI_Q +SI_R +SI_RCI +SI_RL +SI_RLR +SI_RS +SI_RSR +SI_TAX +SI_TAXH +SI_TAXK +SI_TB +SI_TFP_FE +SI_TRATE +SI_UNR +SI_UNR_A +SI_W +SI_WH +SI_WH1 +SI_WH2 +SI_WH3 +SI_WK +SI_XM +SI_XMA +SI_XT +SI_YD +UK_A +UK_ACT +UK_B +UK_BT +UK_C +UK_COIL +UK_CPI +UK_CU +UK_CURBAL +UK_C_DI +UK_C_PI +UK_DLGDP +UK_DLLF +UK_ER +UK_FACT +UK_GDEF +UK_GDP +UK_GDP_FE +UK_GE +UK_GNP +UK_IM +UK_INFL +UK_INVEST +UK_IOIL +UK_IT +UK_K +UK_LF +UK_M +UK_MPC +UK_MPCINV +UK_MPK +UK_NEER +UK_NFA +UK_P +UK_PFM +UK_PGNP +UK_PGNPNO +UK_PIM +UK_PIMA +UK_PIT +UK_PXM +UK_PXT +UK_Q +UK_R +UK_RCI +UK_RL +UK_RLR +UK_RS +UK_RSR +UK_TAX +UK_TAXH +UK_TAXK +UK_TB +UK_TFP_FE +UK_TRATE +UK_UNR +UK_UNR_A +UK_W +UK_WH +UK_WH1 +UK_WH2 +UK_WH3 +UK_WK +UK_XM +UK_XMA +UK_XT +UK_YD +US_A +US_ACT +US_B +US_BT +US_C +US_COIL +US_CPI +US_CU +US_CURBAL +US_C_DI +US_C_PI +US_DLGDP +US_DLLF +US_ER +US_FACT +US_GDEF +US_GDP +US_GDP_FE +US_GE +US_GNP +US_IM +US_INFL +US_INVEST +US_IOIL +US_IT +US_K +US_LF +US_M +US_MPC +US_MPCINV +US_MPK +US_NEER +US_NFA +US_P +US_PFM +US_PGNP +US_PGNPNO +US_PIM +US_PIMA +US_PIT +US_PXM +US_PXT +US_Q +US_R +US_RCI +US_RL +US_RLR +US_RR +US_RS +US_RSR +US_TAX +US_TAXH +US_TAXK +US_TB +US_TFP_FE +US_TRATE +US_UNR +US_UNR_A +US_W +US_WH +US_WH1 +US_WH2 +US_WH3 +US_WK +US_XM +US_XMA +US_XT +US_YD +WTRADE +WTRADER +; +varexo +CA_ALPHA1 +CA_ALPHA2 +CA_ALPHA3 +CA_BCHI1 +CA_BCHI2 +CA_BETA +CA_BT_GDP_RAT +CA_CPI_GAP_EXOG +CA_CPI_TAR +CA_DELTA +CA_DELTA_SS +CA_DEM3 +CA_DLLF_SS +CA_G +CA_GDP_GAP_EXOG +CA_GEXOG +CA_ICOM +CA_LAMBDA +CA_LAMBDA1 +CA_LAMBDA2 +CA_LAMBDA3 +CA_MGROW +CA_MT +CA_NEER_PAR +CA_NLIN +CA_PAR +CA_PART +CA_PARUS +CA_PGNPNO_GAP_EXOG +CA_PGNPNO_TAR +CA_PGNP_GAP_EXOG +CA_PGNP_TAR +CA_PHI +CA_POP +CA_PREM +CA_PROB +CA_PRODOIL +CA_P_GAP_EXOG +CA_P_TAR +CA_RSCON +CA_RSCON2 +CA_RS_EXOG +CA_SIGMA +CA_TAXK_ALPHA +CA_TAXK_SHAR +CA_TPREM +CA_TRATEK +CA_TRATE_ALPHA +CA_TRATE_EXOG +CA_UNR_FE +CA_UNR_GAP_EXOG +CA_XOIL +CA_X_RS1 +CA_X_RS2 +DC_BETA +DC_DELTA +DC_INFL +DC_KCOMSHR +DC_OILSHR +DC_PROD +DC_XOILSHR +DC_XTNDHIST +FR_ALPHA1 +FR_ALPHA2 +FR_ALPHA3 +FR_BCHI1 +FR_BCHI2 +FR_BETA +FR_BT_GDP_RAT +FR_CPI_GAP_EXOG +FR_CPI_TAR +FR_DELTA +FR_DELTA_SS +FR_DEM3 +FR_DLLF_SS +FR_G +FR_GDP_GAP_EXOG +FR_GEXOG +FR_ICOM +FR_LAMBDA +FR_LAMBDA1 +FR_LAMBDA2 +FR_LAMBDA3 +FR_MGROW +FR_MT +FR_NEER_PAR +FR_NLIN +FR_PAR +FR_PART +FR_PARUS +FR_PGNPNO_GAP_EXOG +FR_PGNPNO_TAR +FR_PGNP_GAP_EXOG +FR_PGNP_TAR +FR_PHI +FR_POP +FR_PREM +FR_PROB +FR_PRODOIL +FR_P_GAP_EXOG +FR_P_TAR +FR_RSCON +FR_RSCON2 +FR_RS_EXOG +FR_SIGMA +FR_TAXK_ALPHA +FR_TAXK_SHAR +FR_TPREM +FR_TRATEK +FR_TRATE_ALPHA +FR_TRATE_EXOG +FR_UNR_FE +FR_UNR_GAP_EXOG +FR_XOIL +FR_X_RS1 +FR_X_RS2 +GREAL +GREAL_SS +GR_ALPHA1 +GR_ALPHA2 +GR_ALPHA3 +GR_BCHI1 +GR_BCHI2 +GR_BETA +GR_BT_GDP_RAT +GR_CPI_GAP_EXOG +GR_CPI_TAR +GR_DELTA +GR_DELTA_SS +GR_DEM3 +GR_DLLF_SS +GR_G +GR_GDP_GAP_EXOG +GR_GEXOG +GR_ICOM +GR_LAMBDA +GR_LAMBDA1 +GR_LAMBDA2 +GR_LAMBDA3 +GR_MGROW +GR_MT +GR_NEER_PAR +GR_NLIN +GR_PAR +GR_PART +GR_PARUS +GR_PGNPNO_GAP_EXOG +GR_PGNPNO_TAR +GR_PGNP_GAP_EXOG +GR_PGNP_TAR +GR_PHI +GR_POP +GR_PREM +GR_PROB +GR_PRODOIL +GR_P_GAP_EXOG +GR_P_TAR +GR_RSCON +GR_RSCON2 +GR_RS_EXOG +GR_SIGMA +GR_TAXK_ALPHA +GR_TAXK_SHAR +GR_TPREM +GR_TRATEK +GR_TRATE_ALPHA +GR_TRATE_EXOG +GR_UNR_FE +GR_UNR_GAP_EXOG +GR_XOIL +GR_X_RS1 +GR_X_RS2 +HO_IOIL +HO_QNT +HO_XM +IT_ALPHA1 +IT_ALPHA2 +IT_ALPHA3 +IT_BCHI1 +IT_BCHI2 +IT_BETA +IT_BT_GDP_RAT +IT_CPI_GAP_EXOG +IT_CPI_TAR +IT_DELTA +IT_DELTA_SS +IT_DEM3 +IT_DLLF_SS +IT_G +IT_GDP_GAP_EXOG +IT_GEXOG +IT_ICOM +IT_LAMBDA +IT_LAMBDA1 +IT_LAMBDA2 +IT_LAMBDA3 +IT_MGROW +IT_MT +IT_NEER_PAR +IT_NLIN +IT_PAR +IT_PART +IT_PARUS +IT_PGNPNO_GAP_EXOG +IT_PGNPNO_TAR +IT_PGNP_GAP_EXOG +IT_PGNP_TAR +IT_PHI +IT_POP +IT_PREM +IT_PROB +IT_PRODOIL +IT_P_GAP_EXOG +IT_P_TAR +IT_RSCON +IT_RSCON2 +IT_RS_EXOG +IT_SIGMA +IT_TAXK_ALPHA +IT_TAXK_SHAR +IT_TPREM +IT_TRATEK +IT_TRATE_ALPHA +IT_TRATE_EXOG +IT_UNR_FE +IT_UNR_GAP_EXOG +IT_XOIL +IT_X_RS1 +IT_X_RS2 +JA_ALPHA1 +JA_ALPHA2 +JA_ALPHA3 +JA_BCHI1 +JA_BCHI2 +JA_BETA +JA_BT_GDP_RAT +JA_CPI_GAP_EXOG +JA_CPI_TAR +JA_DELTA +JA_DELTA_SS +JA_DEM3 +JA_DLLF_SS +JA_G +JA_GDP_GAP_EXOG +JA_GEXOG +JA_ICOM +JA_LAMBDA +JA_LAMBDA1 +JA_LAMBDA2 +JA_LAMBDA3 +JA_MGROW +JA_MT +JA_NEER_PAR +JA_NLIN +JA_PAR +JA_PART +JA_PARUS +JA_PGNPNO_GAP_EXOG +JA_PGNPNO_TAR +JA_PGNP_GAP_EXOG +JA_PGNP_TAR +JA_PHI +JA_POP +JA_PREM +JA_PROB +JA_PRODOIL +JA_P_GAP_EXOG +JA_P_TAR +JA_RSCON +JA_RSCON2 +JA_RS_EXOG +JA_SIGMA +JA_TAXK_ALPHA +JA_TAXK_SHAR +JA_TPREM +JA_TRATEK +JA_TRATE_ALPHA +JA_TRATE_EXOG +JA_UNR_FE +JA_UNR_GAP_EXOG +JA_XOIL +JA_X_RS1 +JA_X_RS2 +RES_CA_COIL +RES_CA_CPI +RES_CA_C_DI +RES_CA_ER +RES_CA_GNP +RES_CA_IM +RES_CA_IOIL +RES_CA_K +RES_CA_M +RES_CA_MPC +RES_CA_NFA +RES_CA_P +RES_CA_PGNP +RES_CA_PIM +RES_CA_PXM +RES_CA_RL +RES_CA_RS +RES_CA_TFP_FE +RES_CA_TRATE +RES_CA_UNR_A +RES_CA_WH1 +RES_CA_WH2 +RES_CA_WH3 +RES_CA_WK +RES_CA_XM +RES_DC_CTOT +RES_DC_DEBT +RES_DC_GDP_FE +RES_DC_IT +RES_DC_NFA +RES_DC_PGNP +RES_DC_PIM +RES_DC_PIMA +RES_DC_PXM +RES_DC_QNT +RES_DC_XOIL +RES_DC_XSM +RES_FR_COIL +RES_FR_CPI +RES_FR_C_DI +RES_FR_ER +RES_FR_GNP +RES_FR_IM +RES_FR_IOIL +RES_FR_K +RES_FR_M +RES_FR_MPC +RES_FR_NFA +RES_FR_P +RES_FR_PGNP +RES_FR_PIM +RES_FR_PXM +RES_FR_RL +RES_FR_RS +RES_FR_TFP_FE +RES_FR_TRATE +RES_FR_UNR_A +RES_FR_WH1 +RES_FR_WH2 +RES_FR_WH3 +RES_FR_WK +RES_FR_XM +RES_GR_COIL +RES_GR_CPI +RES_GR_C_DI +RES_GR_ER +RES_GR_GNP +RES_GR_IM +RES_GR_IOIL +RES_GR_K +RES_GR_M +RES_GR_MPC +RES_GR_NFA +RES_GR_P +RES_GR_PGNP +RES_GR_PIM +RES_GR_PXM +RES_GR_RL +RES_GR_RS +RES_GR_TFP_FE +RES_GR_TRATE +RES_GR_UNR_A +RES_GR_WH1 +RES_GR_WH2 +RES_GR_WH3 +RES_GR_WK +RES_GR_XM +RES_HO_ICOM +RES_HO_IM +RES_HO_PIT +RES_HO_PXT +RES_IT_COIL +RES_IT_CPI +RES_IT_C_DI +RES_IT_ER +RES_IT_GNP +RES_IT_IM +RES_IT_IOIL +RES_IT_K +RES_IT_M +RES_IT_MPC +RES_IT_NFA +RES_IT_P +RES_IT_PGNP +RES_IT_PIM +RES_IT_PXM +RES_IT_RL +RES_IT_RS +RES_IT_TFP_FE +RES_IT_TRATE +RES_IT_UNR_A +RES_IT_WH1 +RES_IT_WH2 +RES_IT_WH3 +RES_IT_WK +RES_IT_XM +RES_JA_COIL +RES_JA_CPI +RES_JA_C_DI +RES_JA_ER +RES_JA_GNP +RES_JA_IM +RES_JA_IOIL +RES_JA_K +RES_JA_M +RES_JA_MPC +RES_JA_NFA +RES_JA_P +RES_JA_PGNP +RES_JA_PIM +RES_JA_PXM +RES_JA_RL +RES_JA_RS +RES_JA_TFP_FE +RES_JA_TRATE +RES_JA_UNR_A +RES_JA_WH1 +RES_JA_WH2 +RES_JA_WH3 +RES_JA_WK +RES_JA_XM +RES_PCOM +RES_RW_PIM +RES_RW_PXM +RES_RW_XM +RES_SI_COIL +RES_SI_CPI +RES_SI_C_DI +RES_SI_ER +RES_SI_GNP +RES_SI_IM +RES_SI_IOIL +RES_SI_K +RES_SI_M +RES_SI_MPC +RES_SI_NFA +RES_SI_P +RES_SI_PGNP +RES_SI_PIM +RES_SI_PXM +RES_SI_RL +RES_SI_RS +RES_SI_TFP_FE +RES_SI_TRATE +RES_SI_UNR_A +RES_SI_WH1 +RES_SI_WH2 +RES_SI_WH3 +RES_SI_WK +RES_SI_XM +RES_UK_COIL +RES_UK_CPI +RES_UK_C_DI +RES_UK_ER +RES_UK_GNP +RES_UK_IM +RES_UK_IOIL +RES_UK_K +RES_UK_M +RES_UK_MPC +RES_UK_NFA +RES_UK_P +RES_UK_PGNP +RES_UK_PIM +RES_UK_PXM +RES_UK_RL +RES_UK_RS +RES_UK_TFP_FE +RES_UK_TRATE +RES_UK_UNR_A +RES_UK_WH1 +RES_UK_WH2 +RES_UK_WH3 +RES_UK_WK +RES_UK_XM +RES_US_COIL +RES_US_CPI +RES_US_C_DI +RES_US_ER +RES_US_GNP +RES_US_IM +RES_US_IOIL +RES_US_K +RES_US_M +RES_US_MPC +RES_US_NFA +RES_US_P +RES_US_PGNP +RES_US_PIM +RES_US_PXM +RES_US_RL +RES_US_RS +RES_US_TFP_FE +RES_US_TRATE +RES_US_UNR_A +RES_US_WH1 +RES_US_WH2 +RES_US_WH3 +RES_US_WK +RES_US_XM +RES_WTRADE +RES_WTRADER +RPOIL +RW_ER +RW_INFL +SI_ALPHA1 +SI_ALPHA2 +SI_ALPHA3 +SI_BCHI1 +SI_BCHI2 +SI_BETA +SI_BT_GDP_RAT +SI_CPI_GAP_EXOG +SI_CPI_TAR +SI_DELTA +SI_DELTA_SS +SI_DEM3 +SI_DLLF_SS +SI_G +SI_GDP_GAP_EXOG +SI_GEXOG +SI_ICOM +SI_LAMBDA +SI_LAMBDA1 +SI_LAMBDA2 +SI_LAMBDA3 +SI_MGROW +SI_MT +SI_NEER_PAR +SI_NLIN +SI_PAR +SI_PART +SI_PARUS +SI_PGNPNO_GAP_EXOG +SI_PGNPNO_TAR +SI_PGNP_GAP_EXOG +SI_PGNP_TAR +SI_PHI +SI_POP +SI_PREM +SI_PROB +SI_PRODOIL +SI_P_GAP_EXOG +SI_P_TAR +SI_RSCON +SI_RSCON2 +SI_RS_EXOG +SI_SIGMA +SI_TAXK_ALPHA +SI_TAXK_SHAR +SI_TPREM +SI_TRATEK +SI_TRATE_ALPHA +SI_TRATE_EXOG +SI_UNR_FE +SI_UNR_GAP_EXOG +SI_XOIL +SI_X_RS1 +SI_X_RS2 +TME +UK_ALPHA1 +UK_ALPHA2 +UK_ALPHA3 +UK_BCHI1 +UK_BCHI2 +UK_BETA +UK_BT_GDP_RAT +UK_CPI_GAP_EXOG +UK_CPI_TAR +UK_DELTA +UK_DELTA_SS +UK_DEM3 +UK_DLLF_SS +UK_G +UK_GDP_GAP_EXOG +UK_GEXOG +UK_ICOM +UK_LAMBDA +UK_LAMBDA1 +UK_LAMBDA2 +UK_LAMBDA3 +UK_MGROW +UK_MT +UK_NEER_PAR +UK_NLIN +UK_PAR +UK_PART +UK_PARUS +UK_PGNPNO_GAP_EXOG +UK_PGNPNO_TAR +UK_PGNP_GAP_EXOG +UK_PGNP_TAR +UK_PHI +UK_POP +UK_PREM +UK_PROB +UK_PRODOIL +UK_P_GAP_EXOG +UK_P_TAR +UK_RSCON +UK_RSCON2 +UK_RS_EXOG +UK_SIGMA +UK_TAXK_ALPHA +UK_TAXK_SHAR +UK_TPREM +UK_TRATEK +UK_TRATE_ALPHA +UK_TRATE_EXOG +UK_UNR_FE +UK_UNR_GAP_EXOG +UK_XOIL +UK_X_RS1 +UK_X_RS2 +US_ALPHA1 +US_ALPHA2 +US_ALPHA3 +US_BCHI1 +US_BCHI2 +US_BETA +US_BT_GDP_RAT +US_CPI_GAP_EXOG +US_CPI_TAR +US_DELTA +US_DELTA_SS +US_DEM3 +US_DLLF_SS +US_G +US_GDP_GAP_EXOG +US_GEXOG +US_ICOM +US_LAMBDA +US_LAMBDA1 +US_LAMBDA2 +US_LAMBDA3 +US_MGROW +US_MT +US_NEER_PAR +US_NLIN +US_PAR +US_PART +US_PARUS +US_PGNPNO_GAP_EXOG +US_PGNPNO_TAR +US_PGNP_GAP_EXOG +US_PGNP_TAR +US_PHI +US_POP +US_PREM +US_PROB +US_PRODOIL +US_P_GAP_EXOG +US_P_TAR +US_RRBAR +US_RSCON +US_RSCON2 +US_RS_EXOG +US_SIGMA +US_TAXK_ALPHA +US_TAXK_SHAR +US_TPREM +US_TRATEK +US_TRATE_ALPHA +US_TRATE_EXOG +US_UNR_FE +US_UNR_GAP_EXOG +US_XOIL +US_X_RS1 +US_X_RS2 +; +parameters +CA_CHI +CA_COIL0 +CA_COIL1 +CA_COIL2 +CA_COIL3 +CA_COIL4 +CA_CPI1 +CA_CPI2 +CA_C_MPROP +CA_DELTA_PI +CA_E96 +CA_GAMMA +CA_G_MPROP +CA_IC0 +CA_IC1 +CA_IC2 +CA_IC3 +CA_IC4 +CA_IC5 +CA_IM0 +CA_IM1 +CA_IM2 +CA_IM3 +CA_INVEST_MPROP +CA_K1 +CA_K2 +CA_M0 +CA_M2 +CA_M4 +CA_PXM0 +CA_PXM1 +CA_PXM2 +CA_RS1 +CA_RS1PERM +CA_RS2 +CA_RS3 +CA_RS4 +CA_RS5 +CA_RS6 +CA_RTARC1 +CA_RTARC2 +CA_RTARC3 +CA_RTARC4 +CA_RTARF1 +CA_RTARF2 +CA_RTARF3 +CA_RTARF4 +CA_UNR_1 +CA_UNR_2 +CA_WT +CA_XM0 +CA_XM1 +CA_XM2 +CA_XM3 +CA_XT_MPROP +DC_C0 +DC_C1 +DC_C2 +DC_DEBT1 +DC_DEBT2 +DC_GDP_FE0 +FR_CHI +FR_COIL0 +FR_COIL1 +FR_COIL2 +FR_COIL3 +FR_COIL4 +FR_CPI1 +FR_CPI2 +FR_C_MPROP +FR_DELTA_PI +FR_E96 +FR_GAMMA +FR_G_MPROP +FR_IC0 +FR_IC1 +FR_IC2 +FR_IC3 +FR_IC4 +FR_IC5 +FR_IM0 +FR_IM1 +FR_IM2 +FR_IM3 +FR_INVEST_MPROP +FR_K1 +FR_K2 +FR_M0 +FR_M2 +FR_M4 +FR_PXM0 +FR_PXM1 +FR_PXM2 +FR_RS1 +FR_RS1PERM +FR_RS2 +FR_RS3 +FR_RS4 +FR_RS5 +FR_RS6 +FR_RTARC1 +FR_RTARC2 +FR_RTARC3 +FR_RTARC4 +FR_RTARF1 +FR_RTARF2 +FR_RTARF3 +FR_RTARF4 +FR_UNR_1 +FR_UNR_2 +FR_WT +FR_XM0 +FR_XM1 +FR_XM2 +FR_XM3 +FR_XT_MPROP +GR_CHI +GR_COIL0 +GR_COIL1 +GR_COIL2 +GR_COIL3 +GR_COIL4 +GR_CPI1 +GR_CPI2 +GR_C_MPROP +GR_DELTA_PI +GR_E96 +GR_GAMMA +GR_G_MPROP +GR_IC0 +GR_IC1 +GR_IC2 +GR_IC3 +GR_IC4 +GR_IC5 +GR_IM0 +GR_IM1 +GR_IM2 +GR_IM3 +GR_INVEST_MPROP +GR_K1 +GR_K2 +GR_M0 +GR_M2 +GR_M4 +GR_PXM0 +GR_PXM1 +GR_PXM2 +GR_RS1 +GR_RS1PERM +GR_RS2 +GR_RS3 +GR_RS4 +GR_RS5 +GR_RS6 +GR_RTARC1 +GR_RTARC2 +GR_RTARC3 +GR_RTARC4 +GR_RTARF1 +GR_RTARF2 +GR_RTARF3 +GR_RTARF4 +GR_UNR_1 +GR_UNR_2 +GR_WT +GR_XM0 +GR_XM1 +GR_XM2 +GR_XM3 +GR_XT_MPROP +HO_A0 +HO_A1 +HO_IC2 +ISR +IT_CHI +IT_COIL0 +IT_COIL1 +IT_COIL2 +IT_COIL3 +IT_COIL4 +IT_CPI1 +IT_CPI2 +IT_C_MPROP +IT_DELTA_PI +IT_E96 +IT_GAMMA +IT_G_MPROP +IT_IC0 +IT_IC1 +IT_IC2 +IT_IC3 +IT_IC4 +IT_IC5 +IT_IM0 +IT_IM1 +IT_IM2 +IT_IM3 +IT_INVEST_MPROP +IT_K1 +IT_K2 +IT_M0 +IT_M2 +IT_M4 +IT_PXM0 +IT_PXM1 +IT_PXM2 +IT_RS1 +IT_RS1PERM +IT_RS2 +IT_RS3 +IT_RS4 +IT_RS5 +IT_RS6 +IT_RTARC1 +IT_RTARC2 +IT_RTARC3 +IT_RTARC4 +IT_RTARF1 +IT_RTARF2 +IT_RTARF3 +IT_RTARF4 +IT_UNR_1 +IT_UNR_2 +IT_WT +IT_XM0 +IT_XM1 +IT_XM2 +IT_XM3 +IT_XT_MPROP +JA_CHI +JA_COIL0 +JA_COIL1 +JA_COIL2 +JA_COIL3 +JA_COIL4 +JA_CPI1 +JA_CPI2 +JA_C_MPROP +JA_DELTA_PI +JA_E96 +JA_GAMMA +JA_G_MPROP +JA_IC0 +JA_IC1 +JA_IC2 +JA_IC3 +JA_IC4 +JA_IC5 +JA_IM0 +JA_IM1 +JA_IM2 +JA_IM3 +JA_INVEST_MPROP +JA_K1 +JA_K2 +JA_M0 +JA_M2 +JA_M4 +JA_PXM0 +JA_PXM1 +JA_PXM2 +JA_RS1 +JA_RS1PERM +JA_RS2 +JA_RS3 +JA_RS4 +JA_RS5 +JA_RS6 +JA_RTARC1 +JA_RTARC2 +JA_RTARC3 +JA_RTARC4 +JA_RTARF1 +JA_RTARF2 +JA_RTARF3 +JA_RTARF4 +JA_UNR_1 +JA_UNR_2 +JA_WT +JA_XM0 +JA_XM1 +JA_XM2 +JA_XM3 +JA_XT_MPROP +RW_E96 +RW_PXM1 +RW_PXM2 +RW_XCOM1 +RW_XM0 +RW_XM1 +RW_XM2 +RW_XM3 +RW_XSM1 +S0101 +S0102 +S0103 +S0104 +S0105 +S0106 +S0107 +S0108 +S0109 +S0201 +S0202 +S0203 +S0204 +S0205 +S0206 +S0207 +S0208 +S0209 +S0301 +S0302 +S0303 +S0304 +S0305 +S0306 +S0307 +S0308 +S0309 +S0401 +S0402 +S0403 +S0404 +S0405 +S0406 +S0407 +S0408 +S0409 +S0501 +S0502 +S0503 +S0504 +S0505 +S0506 +S0507 +S0508 +S0509 +S0601 +S0602 +S0603 +S0604 +S0605 +S0606 +S0607 +S0608 +S0609 +S0701 +S0702 +S0703 +S0704 +S0705 +S0706 +S0707 +S0708 +S0709 +S0801 +S0802 +S0803 +S0804 +S0805 +S0806 +S0807 +S0808 +S0809 +S0901 +S0902 +S0903 +S0904 +S0905 +S0906 +S0907 +S0908 +S0909 +SI_CHI +SI_COIL0 +SI_COIL1 +SI_COIL2 +SI_COIL3 +SI_COIL4 +SI_CPI1 +SI_CPI2 +SI_C_MPROP +SI_DELTA_PI +SI_E96 +SI_GAMMA +SI_G_MPROP +SI_IC0 +SI_IC1 +SI_IC2 +SI_IC3 +SI_IC4 +SI_IC5 +SI_IM0 +SI_IM1 +SI_IM2 +SI_IM3 +SI_INVEST_MPROP +SI_K1 +SI_K2 +SI_M0 +SI_M2 +SI_M4 +SI_PXM0 +SI_PXM1 +SI_PXM2 +SI_RS1 +SI_RS1PERM +SI_RS2 +SI_RS3 +SI_RS4 +SI_RS5 +SI_RS6 +SI_RTARC1 +SI_RTARC2 +SI_RTARC3 +SI_RTARC4 +SI_RTARF1 +SI_RTARF2 +SI_RTARF3 +SI_RTARF4 +SI_UNR_1 +SI_UNR_2 +SI_WT +SI_XM0 +SI_XM1 +SI_XM2 +SI_XM3 +SI_XT_MPROP +T01 +T02 +T03 +T04 +T05 +T06 +T07 +T08 +T09 +TAU1 +TRDE +TRDER +UK_CHI +UK_COIL0 +UK_COIL1 +UK_COIL2 +UK_COIL3 +UK_COIL4 +UK_CPI1 +UK_CPI2 +UK_C_MPROP +UK_DELTA_PI +UK_E96 +UK_GAMMA +UK_G_MPROP +UK_IC0 +UK_IC1 +UK_IC2 +UK_IC3 +UK_IC4 +UK_IC5 +UK_IM0 +UK_IM1 +UK_IM2 +UK_IM3 +UK_INVEST_MPROP +UK_K1 +UK_K2 +UK_M0 +UK_M2 +UK_M4 +UK_PXM0 +UK_PXM1 +UK_PXM2 +UK_RS1 +UK_RS1PERM +UK_RS2 +UK_RS3 +UK_RS4 +UK_RS5 +UK_RS6 +UK_RTARC1 +UK_RTARC2 +UK_RTARC3 +UK_RTARC4 +UK_RTARF1 +UK_RTARF2 +UK_RTARF3 +UK_RTARF4 +UK_UNR_1 +UK_UNR_2 +UK_WT +UK_XM0 +UK_XM1 +UK_XM2 +UK_XM3 +UK_XT_MPROP +US_CHI +US_COIL0 +US_COIL1 +US_COIL2 +US_COIL3 +US_COIL4 +US_CPI1 +US_CPI2 +US_C_MPROP +US_DELTA_PI +US_E96 +US_GAMMA +US_G_MPROP +US_IC0 +US_IC1 +US_IC2 +US_IC3 +US_IC4 +US_IC5 +US_IM0 +US_IM1 +US_IM2 +US_IM3 +US_INVEST_MPROP +US_K1 +US_K2 +US_M0 +US_M2 +US_M4 +US_PXM0 +US_PXM1 +US_PXM2 +US_RS1 +US_RS1PERM +US_RS2 +US_RS3 +US_RS4 +US_RS5 +US_RS6 +US_RTARC1 +US_RTARC2 +US_RTARC3 +US_RTARC4 +US_RTARF1 +US_RTARF2 +US_RTARF3 +US_RTARF4 +US_UNR_1 +US_UNR_2 +US_WT +US_XM0 +US_XM1 +US_XM2 +US_XM3 +US_XT_MPROP +V0102 +V0103 +V0104 +V0105 +V0106 +V0107 +V0108 +V0201 +V0203 +V0204 +V0205 +V0206 +V0207 +V0208 +V0301 +V0302 +V0304 +V0305 +V0306 +V0307 +V0308 +V0401 +V0402 +V0403 +V0405 +V0406 +V0407 +V0408 +V0501 +V0502 +V0503 +V0504 +V0506 +V0507 +V0508 +V0601 +V0602 +V0603 +V0604 +V0605 +V0607 +V0608 +V0701 +V0702 +V0703 +V0704 +V0705 +V0706 +V0708 +V0801 +V0802 +V0803 +V0804 +V0805 +V0806 +V0807 +W0101 +W0102 +W0103 +W0104 +W0105 +W0106 +W0107 +W0108 +W0109 +W0201 +W0202 +W0203 +W0204 +W0205 +W0206 +W0207 +W0208 +W0209 +W0301 +W0302 +W0303 +W0304 +W0305 +W0306 +W0307 +W0308 +W0309 +W0401 +W0402 +W0403 +W0404 +W0405 +W0406 +W0407 +W0408 +W0409 +W0501 +W0502 +W0503 +W0504 +W0505 +W0506 +W0507 +W0508 +W0509 +W0601 +W0602 +W0603 +W0604 +W0605 +W0606 +W0607 +W0608 +W0609 +W0701 +W0702 +W0703 +W0704 +W0705 +W0706 +W0707 +W0708 +W0709 +W0801 +W0802 +W0803 +W0804 +W0805 +W0806 +W0807 +W0808 +W0809 +W0901 +W0902 +W0903 +W0904 +W0905 +W0906 +W0907 +W0908 +W0909 +; +CA_CHI=12; +CA_COIL0=-0.23205499351; +CA_COIL1=0.971576988697; +CA_COIL2=-0.0460230000317; +CA_COIL3=-0.0477560013533; +CA_COIL4=0.0639569982886; +CA_CPI1=0.0885436907411; +CA_CPI2=0.584154784679; +CA_C_MPROP=0.178070038557; +CA_DELTA_PI=0.53; +CA_E96=0.733423769474; +CA_GAMMA=1.77305098623; +CA_G_MPROP=0.184400975704; +CA_IC0=-3.32013988495; +CA_IC1=2.43067002296; +CA_IC2=-1.11615002155; +CA_IC3=-0.562039971352; +CA_IC4=0.662097990513; +CA_IC5=-1; +CA_IM0=0.0133133819327; +CA_IM1=-0.339117258787; +CA_IM2=0.0625357478857; +CA_IM3=-0.991348028183; +CA_INVEST_MPROP=0.515719473362; +CA_K1=0.0328033864498; +CA_K2=0.0473355539143; +CA_M0=-0.0607150010765; +CA_M2=-0.0054020001553; +CA_M4=0.788931012154; +CA_PXM0=-0.0128829535097; +CA_PXM1=0.645817816257; +CA_PXM2=0.0349373221397; +CA_RS1=0.333; +CA_RS1PERM=0.333; +CA_RS2=0; +CA_RS3=0; +CA_RS4=0; +CA_RS5=0; +CA_RS6=0; +CA_RTARC1=0; +CA_RTARC2=0; +CA_RTARC3=0; +CA_RTARC4=0; +CA_RTARF1=0; +CA_RTARF2=0; +CA_RTARF3=0; +CA_RTARF4=0; +CA_UNR_1=-0.42063587904; +CA_UNR_2=0.32201731205; +CA_WT=6.36961058059e-006; +CA_XM0=-0.00616873381659; +CA_XM1=-0.419528901577; +CA_XM2=0.0101102301851; +CA_XM3=-1.74084436893; +CA_XT_MPROP=0.15729150176; +DC_C0=-0.433786988258; +DC_C1=0.366304010153; +DC_C2=0.372914999723; +DC_DEBT1=0.600000023842; +DC_DEBT2=0.15000000596; +DC_GDP_FE0=3.73925995827; +FR_CHI=12; +FR_COIL0=-0.234044000506; +FR_COIL1=2.4851899147; +FR_COIL2=-0.0460230000317; +FR_COIL3=-0.0477560013533; +FR_COIL4=0.0639569982886; +FR_CPI1=0.133349880576; +FR_CPI2=0.822861135006; +FR_C_MPROP=0.164363101125; +FR_DELTA_PI=1; +FR_E96=0.195483461022; +FR_GAMMA=1.13691873848; +FR_G_MPROP=0.0880697220564; +FR_IC0=-0.19662900269; +FR_IC1=1.18206000328; +FR_IC2=-0.317216992378; +FR_IC3=-0.126195997; +FR_IC4=0.271228998899; +FR_IC5=-0.513716995716; +FR_IM0=0.00227451790124; +FR_IM1=-0.339117258787; +FR_IM2=0.140992045403; +FR_IM3=-0.991348028183; +FR_INVEST_MPROP=0.330241620541; +FR_K1=0.0328033864498; +FR_K2=0.0473355539143; +FR_M0=0.125633999705; +FR_M2=-0.0054020001553; +FR_M4=0.788931012154; +FR_PXM0=-0.00220575975254; +FR_PXM1=0.705334246159; +FR_PXM2=0.0349373221397; +FR_RS1=0; +FR_RS1PERM=0.333; +FR_RS2=2000000; +FR_RS3=0; +FR_RS4=0; +FR_RS5=0; +FR_RS6=0; +FR_RTARC1=0; +FR_RTARC2=0; +FR_RTARC3=0; +FR_RTARC4=0; +FR_RTARF1=0; +FR_RTARF2=0; +FR_RTARF3=0; +FR_RTARF4=0; +FR_UNR_1=-0.295711427927; +FR_UNR_2=0.437749415636; +FR_WT=1.6754593069e-005; +FR_XM0=-0.00668761134148; +FR_XM1=-0.482208490372; +FR_XM2=0.014295168221; +FR_XM3=-1.74084436893; +FR_XT_MPROP=0.153821244836; +GR_CHI=12; +GR_COIL0=-0.235900998116; +GR_COIL1=1.66013002396; +GR_COIL2=-0.0460230000317; +GR_COIL3=-0.0477560013533; +GR_COIL4=0.0639569982886; +GR_CPI1=0.154569670558; +GR_CPI2=0.557855904102; +GR_C_MPROP=0.166775077581; +GR_DELTA_PI=0.53; +GR_E96=0.66455155611; +GR_GAMMA=0.819746218622; +GR_G_MPROP=0.0776999294758; +GR_IC0=-0.014525000006; +GR_IC1=1.10573005676; +GR_IC2=-0.48298099637; +GR_IC3=0; +GR_IC4=0; +GR_IC5=0; +GR_IM0=0.0129903983325; +GR_IM1=-0.339117258787; +GR_IM2=0.133345082402; +GR_IM3=-0.991348028183; +GR_INVEST_MPROP=0.197875678539; +GR_K1=0.0328033864498; +GR_K2=0.0473355539143; +GR_M0=0.136906996369; +GR_M2=-0.0054020001553; +GR_M4=0.788931012154; +GR_PXM0=-0.00301471399143; +GR_PXM1=0.808721482754; +GR_PXM2=0.0349373221397; +GR_RS1=0.333; +GR_RS1PERM=0.333; +GR_RS2=0; +GR_RS3=0; +GR_RS4=0; +GR_RS5=0; +GR_RS6=0; +GR_RTARC1=0; +GR_RTARC2=0; +GR_RTARC3=0; +GR_RTARC4=0; +GR_RTARF1=0; +GR_RTARF2=0; +GR_RTARF3=0; +GR_RTARF4=0; +GR_UNR_1=-0.337131500244; +GR_UNR_2=0.177726686001; +GR_WT=2.56170225665e-005; +GR_XM0=-0.00160425971262; +GR_XM1=-0.404824435711; +GR_XM2=0.0564797371626; +GR_XM3=-1.74084436893; +GR_XT_MPROP=0.248123139143; +HO_A0=0; +HO_A1=0.140000000596; +HO_IC2=-1.03489995003; +ISR=0.0299999993294; +IT_CHI=12; +IT_COIL0=-0.231263995171; +IT_COIL1=0.593788981438; +IT_COIL2=-0.0460230000317; +IT_COIL3=-0.0477560013533; +IT_COIL4=0.0639569982886; +IT_CPI1=0.0572924762964; +IT_CPI2=0.849322021008; +IT_C_MPROP=0.170956239104; +IT_DELTA_PI=1; +IT_E96=0.648110522889; +IT_GAMMA=2.30496358126; +IT_G_MPROP=0.0941127538681; +IT_IC0=-0.746583998203; +IT_IC1=2.10226988792; +IT_IC2=-0.430978000164; +IT_IC3=-0.278881013393; +IT_IC4=0.292979985476; +IT_IC5=-0.616999983788; +IT_IM0=-0.0256050173193; +IT_IM1=-0.339117258787; +IT_IM2=0.344494223595; +IT_IM3=-0.991348028183; +IT_INVEST_MPROP=0.166337579489; +IT_K1=0.0328033864498; +IT_K2=0.0473355539143; +IT_M0=0.161681994796; +IT_M2=-0.0054020001553; +IT_M4=0.788931012154; +IT_PXM0=0.000566755014006; +IT_PXM1=0.658845901489; +IT_PXM2=0.0349373221397; +IT_RS1=0; +IT_RS1PERM=0.333; +IT_RS2=2000000; +IT_RS3=0; +IT_RS4=0; +IT_RS5=0; +IT_RS6=0; +IT_RTARC1=0; +IT_RTARC2=0; +IT_RTARC3=0; +IT_RTARC4=0; +IT_RTARF1=0; +IT_RTARF2=0; +IT_RTARF3=0; +IT_RTARF4=0; +IT_UNR_1=-0.0943256691098; +IT_UNR_2=0.793544411659; +IT_WT=1.32181730735e-005; +IT_XM0=-0.0253433175385; +IT_XM1=-0.387458562851; +IT_XM2=0.17049998045; +IT_XM3=-1.74084436893; +IT_XT_MPROP=0.165393054485; +JA_CHI=12; +JA_COIL0=-0.320129007101; +JA_COIL1=1.22408998013; +JA_COIL2=-0.0460230000317; +JA_COIL3=-0.0477560013533; +JA_COIL4=0.0639569982886; +JA_CPI1=0.0650515928864; +JA_CPI2=0.791279554367; +JA_C_MPROP=0.0782259404659; +JA_DELTA_PI=0.53; +JA_E96=9.19294636697; +JA_GAMMA=9.10910964012; +JA_G_MPROP=0.0464610271156; +JA_IC0=-1.10236001015; +JA_IC1=0.436967998743; +JA_IC2=-0.423990011215; +JA_IC3=-0.337971001863; +JA_IC4=0.210978001356; +JA_IC5=-0.458155989647; +JA_IM0=-0.0712840557098; +JA_IM1=-0.339117258787; +JA_IM2=0.347616523504; +JA_IM3=-0.991348028183; +JA_INVEST_MPROP=0.0722297132015; +JA_K1=0.0328033864498; +JA_K2=0.0473355539143; +JA_M0=0.029030000791; +JA_M2=-0.0054020001553; +JA_M4=0.788931012154; +JA_PXM0=-0.00688820658252; +JA_PXM1=0.64994853735; +JA_PXM2=0.0349373221397; +JA_RS1=0.333; +JA_RS1PERM=0.333; +JA_RS2=0; +JA_RS3=0; +JA_RS4=0; +JA_RS5=0; +JA_RS6=0; +JA_RTARC1=0; +JA_RTARC2=0; +JA_RTARC3=0; +JA_RTARC4=0; +JA_RTARF1=0; +JA_RTARF2=0; +JA_RTARF3=0; +JA_RTARF4=0; +JA_UNR_1=-0.0611038096249; +JA_UNR_2=0.48595276475; +JA_WT=5.00687931675e-005; +JA_XM0=0.024151481688; +JA_XM1=-0.459041416645; +JA_XM2=0.364201933146; +JA_XM3=-1.74084436893; +JA_XT_MPROP=0.0883775576949; +RW_E96=1; +RW_PXM1=-0.40000000596; +RW_PXM2=-0.10000000149; +RW_XCOM1=0.300000011921; +RW_XM0=-0.00616873381659; +RW_XM1=-0.419528901577; +RW_XM2=0.0101102301851; +RW_XM3=-1.74084436893; +RW_XSM1=0.40000000596; +S0101=0; +S0102=0.211428981673; +S0103=0.0518315242932; +S0104=0.0499099911459; +S0105=0.0461929631515; +S0106=0.107709788268; +S0107=0.755355733991; +S0108=0.102362944882; +S0109=0.25825817487; +S0201=0.140730977983; +S0202=0; +S0203=0.0402535143414; +S0204=0.0186281396133; +S0205=0.0178380540457; +S0206=0.0435290672186; +S0207=0.0291917712961; +S0208=0.0498749237363; +S0209=0.206865929608; +S0301=0.0496485427176; +S0302=0.0441081698314; +S0303=0; +S0304=0.193178152483; +S0305=0.200114990415; +S0306=0.14276178335; +S0307=0.015950421856; +S0308=0.262332248098; +S0309=0.126014094315; +S0401=0.021532626072; +S0402=0.0167699758807; +S0403=0.108500266691; +S0404=0; +S0405=0.138882342615; +S0406=0.0935827744846; +S0407=0.0109323931691; +S0408=0.128842129226; +S0409=0.0649077327766; +S0501=0.0229825548319; +S0502=0.0174868984566; +S0503=0.0964474330303; +S0504=0.108455598703; +S0505=0; +S0506=0.0564481958061; +S0507=0.010383992488; +S0508=0.0836702594125; +S0509=0.0699498052739; +S0601=0.0391029180375; +S0602=0.0208742140953; +S0603=0.0650511176965; +S0604=0.0836065042775; +S0605=0.0602465540559; +S0606=0; +S0607=0.0175125547848; +S0608=0.116874153448; +S0609=0.0646555060199; +S0701=0.204879168808; +S0702=0.0233890814121; +S0703=0.00508720134929; +S0704=0.00419850099405; +S0705=0.00503869062909; +S0706=0.00975502690095; +S0707=0; +S0708=0.00782505967526; +S0709=0.0142728223294; +S0801=0.0670277430388; +S0802=0.0995331039443; +S0803=0.405142668132; +S0804=0.348010416891; +S0805=0.26853217235; +S0806=0.317507537454; +S0807=0.0434426679092; +S0808=0; +S0809=0.195075934808; +S0901=0.454095468511; +S0902=0.566409574707; +S0903=0.227686274466; +S0904=0.194012695892; +S0905=0.263154232738; +S0906=0.228705826518; +S0907=0.117230464506; +S0908=0.248218281522; +S0909=0; +SI_CHI=12; +SI_COIL0=-0.220861002803; +SI_COIL1=0.764611005783; +SI_COIL2=-0.0460230000317; +SI_COIL3=-0.0477560013533; +SI_COIL4=0.0639569982886; +SI_CPI1=0.0885436907411; +SI_CPI2=0.584154784679; +SI_C_MPROP=0.178070038557; +SI_DELTA_PI=0.53; +SI_E96=1; +SI_GAMMA=2.68042981625; +SI_G_MPROP=0.184400975704; +SI_IC0=-1.8622200489; +SI_IC1=1.95882999897; +SI_IC2=-0.451727002859; +SI_IC3=-0.135161995888; +SI_IC4=0.498308986425; +SI_IC5=-0.599273979664; +SI_IM0=0.0133133819327; +SI_IM1=-0.339117258787; +SI_IM2=0.0625357478857; +SI_IM3=-0.991348028183; +SI_INVEST_MPROP=0.515719473362; +SI_K1=0.0328033864498; +SI_K2=0.0473355539143; +SI_M0=-0.0292150005698; +SI_M2=-0.0054020001553; +SI_M4=0.788931012154; +SI_PXM0=-0.0128829535097; +SI_PXM1=0.645817816257; +SI_PXM2=0.0349373221397; +SI_RS1=0.333; +SI_RS1PERM=0.333; +SI_RS2=0; +SI_RS3=0; +SI_RS4=0; +SI_RS5=0; +SI_RS6=0; +SI_RTARC1=0; +SI_RTARC2=0; +SI_RTARC3=0; +SI_RTARC4=0; +SI_RTARF1=0; +SI_RTARF2=0; +SI_RTARF3=0; +SI_RTARF4=0; +SI_UNR_1=-0.414891779423; +SI_UNR_2=0.367525577545; +SI_WT=3.509713705e-005; +SI_XM0=-0.00616873381659; +SI_XM1=-0.419528901577; +SI_XM2=0.0101102301851; +SI_XM3=-1.74084436893; +SI_XT_MPROP=0.15729150176; +T01=0.16637001296; +T02=0.0851782429459; +T03=0.112577622798; +T04=0.0672679615184; +T05=0.051428852688; +T06=0.0635713068531; +T07=0.0437942590402; +T08=0.168281015113; +T09=0.241530726083; +TAU1=0.2; +TRDE=1000; +TRDER=1000; +UK_CHI=12; +UK_COIL0=-0.295890003443; +UK_COIL1=1.26555001736; +UK_COIL2=-0.0432269982994; +UK_COIL3=-0.0499509982765; +UK_COIL4=0.0755050033331; +UK_CPI1=0.135559409857; +UK_CPI2=0.739067137241; +UK_C_MPROP=0.236572146416; +UK_DELTA_PI=0.53; +UK_E96=1.56173992157; +UK_GAMMA=2.36357469112; +UK_G_MPROP=0.117712050676; +UK_IC0=-0.0400650016963; +UK_IC1=1.13595998287; +UK_IC2=-0.480706006289; +UK_IC3=0; +UK_IC4=0; +UK_IC5=0; +UK_IM0=-0.00298645487055; +UK_IM1=-0.339117258787; +UK_IM2=0.259559065104; +UK_IM3=-0.991348028183; +UK_INVEST_MPROP=0.326577752829; +UK_K1=0.0328033864498; +UK_K2=0.0473355539143; +UK_M0=-0.0982170030475; +UK_M2=-0.0054020001553; +UK_M4=0.788931012154; +UK_PXM0=-0.00295503181405; +UK_PXM1=0.63050109148; +UK_PXM2=0.0349373221397; +UK_RS1=0.333; +UK_RS1PERM=0.333; +UK_RS2=0; +UK_RS3=0; +UK_RS4=0; +UK_RS5=0; +UK_RS6=0; +UK_RTARC1=0; +UK_RTARC2=0; +UK_RTARC3=0; +UK_RTARC4=0; +UK_RTARF1=0; +UK_RTARF2=0; +UK_RTARF3=0; +UK_RTARF4=0; +UK_UNR_1=-0.33446392417; +UK_UNR_2=0.683579683304; +UK_WT=1.2619961324e-005; +UK_XM0=0.00526482798159; +UK_XM1=-0.451665729284; +UK_XM2=0.130913674831; +UK_XM3=-1.74084436893; +UK_XT_MPROP=0.15884745121; +US_CHI=12; +US_COIL0=-0.234869003296; +US_COIL1=0.851813018322; +US_COIL2=-0.0460230000317; +US_COIL3=-0.0477560013533; +US_COIL4=0.0639569982886; +US_CPI1=0.0600003153086; +US_CPI2=0.978459060192; +US_C_MPROP=0.0787769183517; +US_DELTA_PI=0.53; +US_E96=1; +US_GAMMA=1.25564420596; +US_G_MPROP=0.0697601884603; +US_IC0=-4.08905982971; +US_IC1=2.08457994461; +US_IC2=-0.722373008728; +US_IC3=-0.219500005245; +US_IC4=0.815505981445; +US_IC5=-0.823925971985; +US_IM0=0.0275149382651; +US_IM1=-0.339117258787; +US_IM2=0.0594643093646; +US_IM3=-0.991348028183; +US_INVEST_MPROP=0.174478381872; +US_K1=0.0328033864498; +US_K2=0.0473355539143; +US_M0=0.0839120000601; +US_M2=-0.0054020001553; +US_M4=0.788931012154; +US_PXM0=-0.00524724042043; +US_PXM1=0.638190448284; +US_PXM2=0.0349373221397; +US_RS1=0.333; +US_RS1PERM=0.333; +US_RS2=0; +US_RS3=0; +US_RS4=0; +US_RS5=0; +US_RS6=0; +US_RTARC1=0; +US_RTARC2=0; +US_RTARC3=0; +US_RTARC4=0; +US_RTARF1=0; +US_RTARF2=0; +US_RTARF3=0; +US_RTARF4=0; +US_UNR_1=-0.418832212687; +US_UNR_2=0.20457854867; +US_WT=8.31260528269e-005; +US_XM0=0.0335212536156; +US_XM1=-0.42607691884; +US_XM2=0.0847327336669; +US_XM3=-1.74084436893; +US_XT_MPROP=0.068832308054; +V0102=0.302939; +V0103=0.1149987; +V0104=0.05839044; +V0105=0.04559976; +V0106=0.0890599; +V0107=0.2508736; +V0108=0.1381385; +V0201=0.5340386; +V0203=0.1368557; +V0204=0.04634024; +V0205=0.03792391; +V0206=0.06666363; +V0207=0.03194354; +V0208=0.1462343; +V0301=0.1048398; +V0302=0.07077477; +V0304=0.1628517; +V0305=0.1299371; +V0306=0.1107158; +V0307=0.0077914; +V0308=0.4130895; +V0401=0.09336697; +V0402=0.04203319; +V0403=0.2856347; +V0405=0.143795; +V0406=0.1087066; +V0407=0.007638456; +V0408=0.3188251; +V0501=0.09431349; +V0502=0.04449457; +V0503=0.2947892; +V0504=0.185996; +V0506=0.09233788; +V0507=0.007625379; +V0508=0.2804435; +V0601=0.1649267; +V0602=0.07002937; +V0603=0.2248978; +V0604=0.1258964; +V0605=0.08267559; +V0607=0.01384079; +V0608=0.3177335; +V0701=0.8238854; +V0702=0.05950828; +V0703=0.0280669; +V0704=0.01568794; +V0705=0.01210771; +V0706=0.02454505; +V0708=0.03619872; +V0801=0.0269276; +V0802=0.0324527; +V0803=0.08555825; +V0804=0.06546576; +V0805=0.0516105; +V0806=0.05701964; +V0807=0.006865961; +W0101=-1; +W0102=0.158314128764; +W0103=0.144148080288; +W0104=0.078498145888; +W0105=0.0731862618008; +W0106=0.0770074545758; +W0107=0.013557730213; +W0108=0.212383102831; +W0109=0.242905095639; +W0201=0.198243776352; +W0202=-1; +W0203=0.13303216642; +W0204=0.0713086550403; +W0205=0.0695296751108; +W0206=0.0712296426923; +W0207=0.0765000899962; +W0208=0.187864186254; +W0209=0.192291808135; +W0301=0.158728054259; +W0302=0.10595582598; +W0303=-1; +W0304=0.107333239352; +W0305=0.0847327465098; +W0306=0.0981502409584; +W0307=0.0275220178134; +W0308=0.167795340239; +W0309=0.249782534889; +W0401=0.138316983506; +W0402=0.0938147168545; +W0403=0.168836924388; +W0404=-1; +W0405=0.0747207012628; +W0406=0.0813418537478; +W0407=0.0220610834413; +W0408=0.194651586757; +W0409=0.226256150043; +W0501=0.142928956526; +W0502=0.102467450391; +W0503=0.150092928257; +W0504=0.0835779316292; +W0505=-1; +W0506=0.078777445823; +W0507=0.0247664878133; +W0508=0.217768101495; +W0509=0.199620698065; +W0601=0.138720021274; +W0602=0.102439099154; +W0603=0.168900001338; +W0604=0.0888147938683; +W0605=0.0768422939279; +W0606=-1; +W0607=0.0347617704635; +W0608=0.164211166816; +W0609=0.225310853159; +W0701=0.0332804830561; +W0702=0.164136190858; +W0703=0.0742635886407; +W0704=0.0347684058849; +W0705=0.0347291240407; +W0706=0.0510638287607; +W0707=-1; +W0708=0.100630284767; +W0709=0.507128093992; +W0801=0.166407280379; +W0802=0.115122730336; +W0803=0.137316258214; +W0804=0.102276661523; +W0805=0.101929410645; +W0806=0.0783535439484; +W0807=0.0278301070227; +W0808=-1; +W0809=0.270764007932; +W0901=0.149822902292; +W0902=0.11592454783; +W0903=0.15042408861; +W0904=0.082470009466; +W0905=0.0666627750021; +W0906=0.0800069594276; +W0907=0.147854375051; +W0908=0.206834342322; +W0909=-1; +model(SPARSE_DLL,gcc_compiler); + ( log(US_CPI)-(log(US_CPI(-1)))) = US_CPI1*( log(US_PIM)-(log(US_PIM(-1))))+US_CPI2*( log(US_PGNP)-(log(US_PGNP(-1))))+(1-US_CPI1-US_CPI2)*log(US_CPI(-1)/US_CPI(-2))+RES_US_CPI ; + US_UNR_A = US_UNR_FE+US_UNR_1*100*log(US_GDP/US_GDP_FE)+US_UNR_2*(US_UNR(-1)-US_UNR_FE(-1))+RES_US_UNR_A ; + US_UNR = /*MAX(US_UNR_A;0.1)*/US_UNR_A ; + ( log(US_PGNPNO)-(log(US_PGNPNO(-1)))) = US_LAMBDA*(US_DELTA_PI*( log(US_PGNPNO(1))-(log(US_PGNPNO)))+(1-US_DELTA_PI)*( log(US_PGNPNO(-1))-(log(US_PGNPNO(-2)))))+(1-US_LAMBDA)*( log(US_PGNPNO(-1))-(log(US_PGNPNO(-2))))+US_GAMMA/100*(US_NLIN-US_UNR)/(US_UNR-US_PHI)+RES_US_PGNP ; + US_INFL = US_MGROW/GREAL ; + US_DLLF = log(US_LF/US_LF(-1)) ; + US_DLGDP = log(US_GDP/US_GDP(-1)) ; + US_C = US_C_DI+US_C_PI ; + US_MPC = 1/US_MPCINV ; + US_MPCINV(1) = US_MPCINV-1-((1-US_SIGMA)*(US_RSR+US_PROB)-(RES_US_MPC+US_PROB))*US_MPCINV/US_SIGMA ; + US_WH1(1) = US_WH1*(1+US_RSR+US_ALPHA1+RES_US_WH1+US_PROB+exp(US_DLLF_SS)-1)-(((1-US_BETA)*US_GDP*US_PGNP-US_TAXH)/US_P+RES_US_WK*US_WK) ; + US_WH2(1) = US_WH2*(1+US_RSR+US_ALPHA2+RES_US_WH2+US_PROB+exp(US_DLLF_SS)-1)-(((1-US_BETA)*US_GDP*US_PGNP-US_TAXH)/US_P+RES_US_WK*US_WK) ; + US_WH3(1) = US_WH3*(1+US_RSR+US_ALPHA3+RES_US_WH3+US_PROB+exp(US_DLLF_SS)-1)-(((1-US_BETA)*US_GDP*US_PGNP-US_TAXH)/US_P+RES_US_WK*US_WK) ; + US_C_DI = (US_LAMBDA1*US_BCHI1+US_LAMBDA2*US_BCHI2+US_LAMBDA3*(1-US_BCHI1-US_BCHI2))*((1-US_BETA)*US_GDP*US_PGNP-US_TAXH)/US_P+RES_US_C_DI*GREAL^TME ; + US_C_PI = US_MPC*(US_WK+(US_M+US_B+US_NFA/US_ER)/US_P+US_BCHI1*(1-US_LAMBDA1)*US_WH1+US_BCHI2*(1-US_LAMBDA2)*US_WH2+(1-US_BCHI1-US_BCHI2)*(1-US_LAMBDA3)*US_WH3) ; + US_WH = US_BCHI1*US_WH1+US_BCHI2*US_WH2+(1-US_BCHI1-US_BCHI2)*US_WH3 ; + ( log(US_COIL)-(log(US_COIL(-1)))) = US_COIL0+US_COIL1*( log(US_GDP)-(log(US_GDP(-1))))+US_COIL2*( log(POIL/US_ER/US_PGNP)-(log(POIL(-1)/US_ER(-1)/US_PGNP(-1))))+US_COIL3*log(POIL(-1)/US_ER(-1)/US_PGNP(-1))+US_COIL4*log(US_GDP(-1)/US_COIL(-1))+RES_US_COIL ; + US_INVEST/US_K(-1)-(US_DELTA_SS+GREAL_SS-1) = US_K1*(US_WK/US_K(-1)-1)+US_K2*(US_WK(-1)/US_K(-2)-1)+RES_US_K ; + US_MPK = US_BETA*US_GDP/US_K ; + US_Q = US_CHI*(US_INVEST/US_K(-1)-(US_DELTA_SS+GREAL_SS-1))+1 ; + US_WK(1) = US_WK*(1+US_RSR+US_K/US_K(-1)-1+US_DELTA+RES_US_WK)-(US_BETA*US_GDP*US_PGNP-US_TAXK)/US_P+(US_CHI/2*((US_Q-1)/US_CHI)^2+US_INVEST/US_K(-1)*(US_Q-1))*US_K(-1)*US_PGNP/US_P ; + US_INVEST = ( US_K-(US_K(-1)))+US_DELTA*US_K(-1) ; + ( log(US_XM)-(log(US_XM(-1)))) = US_XM0+( log(US_FACT)-(log(US_FACT(-1))))+US_XM1*( US_RCI-(US_RCI(-1)))+US_XM2*(US_XM3*US_RCI(-1)+log(US_FACT(-1))-log(US_XM(-1)))+RES_US_XM ; + US_XMA = US_XM+T01*(WTRADER-TRDER*GREAL^TME)/US_E96 ; + US_XT = US_XMA+US_XOIL ; + US_ACT = US_C_MPROP*US_C+US_INVEST_MPROP*US_INVEST+US_G_MPROP*US_G+US_XT_MPROP*US_XT ; + ( log(US_IM)-(log(US_IM(-1)))) = US_IM0+( log(US_ACT)-(log(US_ACT(-1))))+US_IM1*( log(US_PIMA/US_PGNPNO)-(log(US_PIMA(-1)/US_PGNPNO(-1))))+US_IM2*(US_IM3*log(US_PIMA(-1)/US_PGNPNO(-1))+log(US_ACT(-1))-log(US_IM(-1)))+RES_US_IM ; + US_IOIL = US_COIL+US_XOIL-US_PRODOIL+RES_US_IOIL*GREAL^TME ; + ( log(US_ICOM)-(log(US_ICOM(-1)))) = US_IC0+US_IC2*( log(PCOM/US_ER/US_PGNP)-(log(PCOM(-1)/US_ER(-1)/US_PGNP(-1))))+US_IC1*( log(US_GDP)-(log(US_GDP(-1))))+US_IC3*log(PCOM(-1)/US_ER(-1)/US_PGNP(-1))+US_IC4*log(US_GDP(-1))+US_IC5*log(US_ICOM(-1))+RES_US_ICOM-(US_IC4+US_IC5)*log(GREAL^TME) ; + US_IT = US_IM+US_IOIL+US_ICOM ; + US_A = US_C+US_INVEST+US_G ; + US_GDP = US_A+US_XT-US_IT ; + US_GNP = US_GDP+(US_R+(US_PREM(-3)+US_PREM(-2)+US_PREM(-1))/3)*US_NFA(-1)/US_ER/US_PGNP+RES_US_GNP*GREAL^TME ; + US_W = US_WH+US_WK+(US_M+US_B+US_NFA/US_ER)/US_P ; + US_YD = (US_GDP*US_PGNP-US_TAX)/US_P-US_DELTA*US_K(-1) ; + US_GE = US_P*US_G+US_R*US_B(-1)+US_GEXOG ; + US_TAX = US_TRATE*US_PGNP*US_GNP ; + US_TAXK = US_TAXK_ALPHA*US_TAXK_SHAR*US_TAX+(1-US_TAXK_ALPHA)*US_TRATEK*US_BETA*US_GDP*US_PGNP ; + US_TAXH = US_TAX-US_TAXK ; + US_TRATE = US_TRATE_EXOG*(1-US_TRATE_ALPHA)+US_TRATE_ALPHA*((US_TRATE(-2)/5+US_TRATE(-1)/5+US_TRATE(0)/5+US_TRATE(1)/5+US_TRATE(2)/5)+TAU1*(US_B(1)/(US_GNP(1)*US_PGNP(1))-US_BT_GDP_RAT(1))+RES_US_TRATE) ; + US_BT = US_BT_GDP_RAT*US_GNP*US_PGNP ; + ( US_B-(US_B(-1)))+( US_M-(US_M(-1))) = US_R*US_B(-1)+US_P*US_G-US_TAX ; + US_GDEF = ( US_B+US_M-(US_B(-1)+US_M(-1))) ; + log(US_M/US_P) = US_M0+(1-US_M4)*log(US_A)+US_M2*US_RS+US_M4*log(US_M(-1)/US_P(-1))+RES_US_M ; + US_RS = (1-US_X_RS1)*US_RS_EXOG+US_X_RS1*(US_RS(-1)+US_RS1*log(US_MT/US_M)/US_M2+US_RS2*log(GR_ER/US_ER/US_PAR)+US_RS3*log(US_ER/US_ER/US_PARUS)+US_RS4*log(US_NEER/US_NEER_PAR)+US_RS5*(US_UNR_FE-US_UNR-US_UNR_GAP_EXOG)+US_RS6*100*(log(US_GDP)-log(US_GDP_FE)-US_GDP_GAP_EXOG)+US_X_RS2*(-US_RS(-1)+US_RSCON+100*( log(US_P(1))-(log(US_P))))+100*(US_RTARC1*(( log(US_P)-(log(US_P(-1))))-( log(US_P_TAR)-(log(US_P_TAR(-1))))-US_P_GAP_EXOG)+US_RTARC2*(( log(US_PGNP)-(log(US_PGNP(-1))))-( log(US_PGNP_TAR)-(log(US_PGNP_TAR(-1))))-US_PGNP_GAP_EXOG)+US_RTARC3*(( log(US_CPI)-(log(US_CPI(-1))))-( log(US_CPI_TAR)-(log(US_CPI_TAR(-1))))-US_CPI_GAP_EXOG)+US_RTARC4*(( log(US_PGNPNO)-(log(US_PGNPNO(-1))))-( log(US_PGNPNO_TAR)-(log(US_PGNPNO_TAR(-1))))-US_PGNPNO_GAP_EXOG)+US_RTARF1*(( log(US_P(1))-(log(US_P)))-( log(US_P_TAR(1))-(log(US_P_TAR)))-US_P_GAP_EXOG(1))+US_RTARF2*(( log(US_PGNP(1))-(log(US_PGNP)))-( log(US_PGNP_TAR(1))-(log(US_PGNP_TAR)))-US_PGNP_GAP_EXOG(1))+US_RTARF3*(( log(US_CPI(1))-(log(US_CPI)))-( log(US_CPI_TAR(1))-(log(US_CPI_TAR)))-US_CPI_GAP_EXOG(1))+US_RTARF4*(( log(US_PGNPNO(1))-(log(US_PGNPNO)))-( log(US_PGNPNO_TAR(1))-(log(US_PGNPNO_TAR)))-US_PGNPNO_GAP_EXOG(1)))+US_RSCON2+RES_US_RS)+US_RS1PERM*0 ; + US_RL/100 = ((1+US_RS/100)*(1+US_RS(1)/100)*(1+US_RS(2)/100)*(1+US_RS(3)/100)*(1+US_RS(4)/100)*(1+US_RS(5)/100)*(1+US_RS(6)/100)*(1+US_RS(7)/100)*(1+US_RS(8)/100)*(1+US_RS(9)/100))^0.1*(1+US_TPREM)-1+RES_US_RL ; + US_R = 0.5*US_RS(-1)/100+0.5*(US_RL(-3)/100+US_RL(-2)/100+US_RL(-1)/100)/3 ; + US_RLR = (1+US_RL/100)/(US_P(10)/US_P)^0.1-1 ; + US_RSR = (1+US_RS/100)/(US_P(1)/US_P)-1 ; + US_PGNPNO = (US_GDP*US_PGNP-US_PRODOIL*POIL/US_ER*US_E96)/(US_GDP-US_PRODOIL) ; + US_PGNP = (US_P*US_A+US_XT*US_PXT-US_IT*US_PIT)/US_GDP+RES_US_P*US_PGNP ; + ( log(US_PXM)-(log(US_PXM(-1)))) = US_PXM0+US_PXM1*( log(US_PGNPNO)-(log(US_PGNPNO(-1))))+(1-US_PXM1)*( log(US_PFM)-(log(US_PFM(-1))))+US_PXM2*log(US_PGNPNO(-1)/US_PXM(-1))+RES_US_PXM ; + US_PXT = (US_XMA*US_PXM+POIL/US_ER*US_E96*US_XOIL)/US_XT ; + US_PIM = (S0101*US_PXM+S0201*JA_PXM*JA_ER/JA_E96+S0301*GR_PXM*GR_ER/GR_E96+S0401*FR_PXM*FR_ER/FR_E96+S0501*IT_PXM*IT_ER/IT_E96+S0601*UK_PXM*UK_ER/UK_E96+S0701*CA_PXM*CA_ER/CA_E96+S0801*SI_PXM*SI_ER/SI_E96+S0901*RW_PXM*RW_ER/RW_E96)/(US_ER/US_E96)*(1+RES_US_PIM) ; + US_PIMA = US_PIM+T01*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/US_ER/US_IM ; + US_PIT = (US_IM*US_PIMA+US_IOIL*POIL/US_ER*US_E96+US_ICOM*PCOM/US_ER*US_E96)/US_IT ; + log(US_TFP_FE) = RES_US_TFP_FE ; + US_GDP_FE = US_TFP_FE*US_K^US_BETA*((1-US_UNR_FE/100)*US_LF)^(1-US_BETA) ; + US_LF = US_POP*US_PART/(1+US_DEM3) ; + US_CU = 100*US_GDP/US_GDP_FE ; + ( US_NFA-(US_NFA(-1))) = (US_XT*US_PXT-US_IT*US_PIT)*US_ER+(US_R+(US_PREM(-3)+US_PREM(-2)+US_PREM(-1))/3)*US_NFA(-1)+RES_US_NFA*US_INFL^TME*GREAL^TME ; + US_TB = US_XT*US_PXT-US_IT*US_PIT ; + US_CURBAL = ( US_NFA-(US_NFA(-1))) ; + US_ER = 1+RES_US_ER ; + US_RR = (0.8*US_RS(-1)+0.2*(US_RL(-3)+US_RL(-2)+US_RL(-1))/3)/100 ; + US_RCI = log(US_PXM)-log(US_PFM) ; + US_FACT = (US_IM*US_E96*S0101+JA_IM*JA_E96*S0102+GR_IM*GR_E96*S0103+FR_IM*FR_E96*S0104+IT_IM*IT_E96*S0105+UK_IM*UK_E96*S0106+CA_IM*CA_E96*S0107+SI_IM*SI_E96*S0108+(HO_IM+DC_IM)*RW_E96*S0109)/US_E96 ; + log(US_PFM) = W0101*log(US_ER/US_E96)+W0102*log(JA_PXM*JA_ER/JA_E96)+W0103*log(GR_PXM*GR_ER/GR_E96)+W0104*log(FR_PXM*FR_ER/FR_E96)+W0105*log(IT_PXM*IT_ER/IT_E96)+W0106*log(UK_PXM*UK_ER/UK_E96)+W0107*log(CA_PXM*CA_ER/CA_E96)+W0108*log(SI_PXM*SI_ER/SI_E96)+W0109*log(RW_PXM*RW_ER/RW_E96) ; + US_NEER = exp(+(log(US_ER/US_E96))-V0102*log(JA_ER/JA_E96)-V0103*log(GR_ER/GR_E96)-V0104*log(FR_ER/FR_E96)-V0105*log(IT_ER/IT_E96)-V0106*log(UK_ER/UK_E96)-V0107*log(CA_ER/CA_E96)-V0108*log(SI_ER/SI_E96)) ; + ( log(JA_CPI)-(log(JA_CPI(-1)))) = JA_CPI1*( log(JA_PIM)-(log(JA_PIM(-1))))+JA_CPI2*( log(JA_PGNP)-(log(JA_PGNP(-1))))+(1-JA_CPI1-JA_CPI2)*log(JA_CPI(-1)/JA_CPI(-2))+RES_JA_CPI ; + JA_UNR_A = JA_UNR_FE+JA_UNR_1*100*log(JA_GDP/JA_GDP_FE)+JA_UNR_2*(JA_UNR(-1)-JA_UNR_FE(-1))+RES_JA_UNR_A ; + JA_UNR = JA_UNR_A/*MAX(JA_UNR_A;0.1)*/ ; + ( log(JA_PGNPNO)-(log(JA_PGNPNO(-1)))) = JA_LAMBDA*(JA_DELTA_PI*( log(JA_PGNPNO(1))-(log(JA_PGNPNO)))+(1-JA_DELTA_PI)*( log(JA_PGNPNO(-1))-(log(JA_PGNPNO(-2)))))+(1-JA_LAMBDA)*( log(JA_PGNPNO(-1))-(log(JA_PGNPNO(-2))))+JA_GAMMA/100*(JA_NLIN-JA_UNR)/(JA_UNR-JA_PHI)+RES_JA_PGNP ; + JA_INFL = JA_MGROW/GREAL ; + JA_DLLF = log(JA_LF/JA_LF(-1)) ; + JA_DLGDP = log(JA_GDP/JA_GDP(-1)) ; + JA_C = JA_C_DI+JA_C_PI ; + JA_MPC = 1/JA_MPCINV ; + JA_MPCINV(1) = JA_MPCINV-1-((1-JA_SIGMA)*(JA_RSR+JA_PROB)-(RES_JA_MPC+JA_PROB))*JA_MPCINV/JA_SIGMA ; + JA_WH1(1) = JA_WH1*(1+JA_RSR+JA_ALPHA1+RES_JA_WH1+JA_PROB+exp(JA_DLLF_SS)-1)-(((1-JA_BETA)*JA_GDP*JA_PGNP-JA_TAXH)/JA_P+RES_JA_WK*JA_WK) ; + JA_WH2(1) = JA_WH2*(1+JA_RSR+JA_ALPHA2+RES_JA_WH2+JA_PROB+exp(JA_DLLF_SS)-1)-(((1-JA_BETA)*JA_GDP*JA_PGNP-JA_TAXH)/JA_P+RES_JA_WK*JA_WK) ; + JA_WH3(1) = JA_WH3*(1+JA_RSR+JA_ALPHA3+RES_JA_WH3+JA_PROB+exp(JA_DLLF_SS)-1)-(((1-JA_BETA)*JA_GDP*JA_PGNP-JA_TAXH)/JA_P+RES_JA_WK*JA_WK) ; + JA_C_DI = (JA_LAMBDA1*JA_BCHI1+JA_LAMBDA2*JA_BCHI2+JA_LAMBDA3*(1-JA_BCHI1-JA_BCHI2))*((1-JA_BETA)*JA_GDP*JA_PGNP-JA_TAXH)/JA_P+RES_JA_C_DI*GREAL^TME ; + JA_C_PI = JA_MPC*(JA_WK+(JA_M+JA_B+JA_NFA/JA_ER)/JA_P+JA_BCHI1*(1-JA_LAMBDA1)*JA_WH1+JA_BCHI2*(1-JA_LAMBDA2)*JA_WH2+(1-JA_BCHI1-JA_BCHI2)*(1-JA_LAMBDA3)*JA_WH3) ; + JA_WH = JA_BCHI1*JA_WH1+JA_BCHI2*JA_WH2+(1-JA_BCHI1-JA_BCHI2)*JA_WH3 ; + ( log(JA_COIL)-(log(JA_COIL(-1)))) = JA_COIL0+JA_COIL1*( log(JA_GDP)-(log(JA_GDP(-1))))+JA_COIL2*( log(POIL/JA_ER/JA_PGNP)-(log(POIL(-1)/JA_ER(-1)/JA_PGNP(-1))))+JA_COIL3*log(POIL(-1)/JA_ER(-1)/JA_PGNP(-1))+JA_COIL4*log(JA_GDP(-1)/JA_COIL(-1))+RES_JA_COIL ; + JA_INVEST/JA_K(-1)-(JA_DELTA_SS+GREAL_SS-1) = JA_K1*(JA_WK/JA_K(-1)-1)+JA_K2*(JA_WK(-1)/JA_K(-2)-1)+RES_JA_K ; + JA_MPK = JA_BETA*JA_GDP/JA_K ; + JA_Q = JA_CHI*(JA_INVEST/JA_K(-1)-(JA_DELTA_SS+GREAL_SS-1))+1 ; + JA_WK(1) = JA_WK*(1+JA_RSR+JA_K/JA_K(-1)-1+JA_DELTA+RES_JA_WK)-(JA_BETA*JA_GDP*JA_PGNP-JA_TAXK)/JA_P+(JA_CHI/2*((JA_Q-1)/JA_CHI)^2+JA_INVEST/JA_K(-1)*(JA_Q-1))*JA_K(-1)*JA_PGNP/JA_P ; + JA_INVEST = ( JA_K-(JA_K(-1)))+JA_DELTA*JA_K(-1) ; + ( log(JA_XM)-(log(JA_XM(-1)))) = JA_XM0+( log(JA_FACT)-(log(JA_FACT(-1))))+JA_XM1*( JA_RCI-(JA_RCI(-1)))+JA_XM2*(JA_XM3*JA_RCI(-1)+log(JA_FACT(-1))-log(JA_XM(-1)))+RES_JA_XM ; + JA_XMA = JA_XM+T02*(WTRADER-TRDER*GREAL^TME)/JA_E96 ; + JA_XT = JA_XMA+JA_XOIL ; + JA_ACT = JA_C_MPROP*JA_C+JA_INVEST_MPROP*JA_INVEST+JA_G_MPROP*JA_G+JA_XT_MPROP*JA_XT ; + ( log(JA_IM)-(log(JA_IM(-1)))) = JA_IM0+( log(JA_ACT)-(log(JA_ACT(-1))))+JA_IM1*( log(JA_PIMA/JA_PGNPNO)-(log(JA_PIMA(-1)/JA_PGNPNO(-1))))+JA_IM2*(JA_IM3*log(JA_PIMA(-1)/JA_PGNPNO(-1))+log(JA_ACT(-1))-log(JA_IM(-1)))+RES_JA_IM ; + JA_IOIL = JA_COIL+JA_XOIL-JA_PRODOIL+RES_JA_IOIL*GREAL^TME ; + ( log(JA_ICOM)-(log(JA_ICOM(-1)))) = JA_IC0+JA_IC2*( log(PCOM/JA_ER/JA_PGNP)-(log(PCOM(-1)/JA_ER(-1)/JA_PGNP(-1))))+JA_IC1*( log(JA_GDP)-(log(JA_GDP(-1))))+JA_IC3*log(PCOM(-1)/JA_ER(-1)/JA_PGNP(-1))+JA_IC4*log(JA_GDP(-1))+JA_IC5*log(JA_ICOM(-1))+RES_JA_ICOM-(JA_IC4+JA_IC5)*log(GREAL^TME) ; + JA_IT = JA_IM+JA_IOIL+JA_ICOM ; + JA_A = JA_C+JA_INVEST+JA_G ; + JA_GDP = JA_A+JA_XT-JA_IT ; + JA_GNP = JA_GDP+(US_R+(JA_PREM(-3)+JA_PREM(-2)+JA_PREM(-1))/3)*JA_NFA(-1)/JA_ER/JA_PGNP+RES_JA_GNP*GREAL^TME ; + JA_W = JA_WH+JA_WK+(JA_M+JA_B+JA_NFA/JA_ER)/JA_P ; + JA_YD = (JA_GDP*JA_PGNP-JA_TAX)/JA_P-JA_DELTA*JA_K(-1) ; + JA_GE = JA_P*JA_G+JA_R*JA_B(-1)+JA_GEXOG ; + JA_TAX = JA_TRATE*JA_PGNP*JA_GNP ; + JA_TAXK = JA_TAXK_ALPHA*JA_TAXK_SHAR*JA_TAX+(1-JA_TAXK_ALPHA)*JA_TRATEK*JA_BETA*JA_GDP*JA_PGNP ; + JA_TAXH = JA_TAX-JA_TAXK ; + JA_TRATE = JA_TRATE_EXOG*(1-JA_TRATE_ALPHA)+JA_TRATE_ALPHA*((JA_TRATE(-2)/5+JA_TRATE(-1)/5+JA_TRATE(0)/5+JA_TRATE(1)/5+JA_TRATE(2)/5)+TAU1*(JA_B(1)/(JA_GNP(1)*JA_PGNP(1))-JA_BT_GDP_RAT(1))+RES_JA_TRATE) ; + JA_BT = JA_BT_GDP_RAT*JA_GNP*JA_PGNP ; + ( JA_B-(JA_B(-1)))+( JA_M-(JA_M(-1))) = JA_R*JA_B(-1)+JA_P*JA_G-JA_TAX ; + JA_GDEF = ( JA_B+JA_M-(JA_B(-1)+JA_M(-1))) ; + log(JA_M/JA_P) = JA_M0+(1-JA_M4)*log(JA_A)+JA_M2*JA_RS+JA_M4*log(JA_M(-1)/JA_P(-1))+RES_JA_M ; + JA_RS = (1-JA_X_RS1)*JA_RS_EXOG+JA_X_RS1*(JA_RS(-1)+JA_RS1*log(JA_MT/JA_M)/JA_M2+JA_RS2*log(GR_ER/JA_ER/JA_PAR)+JA_RS3*log(US_ER/JA_ER/JA_PARUS)+JA_RS4*log(JA_NEER/JA_NEER_PAR)+JA_RS5*(JA_UNR_FE-JA_UNR-JA_UNR_GAP_EXOG)+JA_RS6*100*(log(JA_GDP)-log(JA_GDP_FE)-JA_GDP_GAP_EXOG)+JA_X_RS2*(-JA_RS(-1)+JA_RSCON+100*( log(JA_P(1))-(log(JA_P))))+100*(JA_RTARC1*(( log(JA_P)-(log(JA_P(-1))))-( log(JA_P_TAR)-(log(JA_P_TAR(-1))))-JA_P_GAP_EXOG)+JA_RTARC2*(( log(JA_PGNP)-(log(JA_PGNP(-1))))-( log(JA_PGNP_TAR)-(log(JA_PGNP_TAR(-1))))-JA_PGNP_GAP_EXOG)+JA_RTARC3*(( log(JA_CPI)-(log(JA_CPI(-1))))-( log(JA_CPI_TAR)-(log(JA_CPI_TAR(-1))))-JA_CPI_GAP_EXOG)+JA_RTARC4*(( log(JA_PGNPNO)-(log(JA_PGNPNO(-1))))-( log(JA_PGNPNO_TAR)-(log(JA_PGNPNO_TAR(-1))))-JA_PGNPNO_GAP_EXOG)+JA_RTARF1*(( log(JA_P(1))-(log(JA_P)))-( log(JA_P_TAR(1))-(log(JA_P_TAR)))-JA_P_GAP_EXOG(1))+JA_RTARF2*(( log(JA_PGNP(1))-(log(JA_PGNP)))-( log(JA_PGNP_TAR(1))-(log(JA_PGNP_TAR)))-JA_PGNP_GAP_EXOG(1))+JA_RTARF3*(( log(JA_CPI(1))-(log(JA_CPI)))-( log(JA_CPI_TAR(1))-(log(JA_CPI_TAR)))-JA_CPI_GAP_EXOG(1))+JA_RTARF4*(( log(JA_PGNPNO(1))-(log(JA_PGNPNO)))-( log(JA_PGNPNO_TAR(1))-(log(JA_PGNPNO_TAR)))-JA_PGNPNO_GAP_EXOG(1)))+JA_RSCON2+RES_JA_RS)+JA_RS1PERM*0 ; + JA_RL/100 = ((1+JA_RS/100)*(1+JA_RS(1)/100)*(1+JA_RS(2)/100)*(1+JA_RS(3)/100)*(1+JA_RS(4)/100)*(1+JA_RS(5)/100)*(1+JA_RS(6)/100)*(1+JA_RS(7)/100)*(1+JA_RS(8)/100)*(1+JA_RS(9)/100))^0.1*(1+JA_TPREM)-1+RES_JA_RL ; + JA_R = 0.5*JA_RS(-1)/100+0.5*(JA_RL(-3)/100+JA_RL(-2)/100+JA_RL(-1)/100)/3 ; + JA_RLR = (1+JA_RL/100)/(JA_P(10)/JA_P)^0.1-1 ; + JA_RSR = (1+JA_RS/100)/(JA_P(1)/JA_P)-1 ; + JA_PGNPNO = (JA_GDP*JA_PGNP-JA_PRODOIL*POIL/JA_ER*JA_E96)/(JA_GDP-JA_PRODOIL) ; + JA_PGNP = (JA_P*JA_A+JA_XT*JA_PXT-JA_IT*JA_PIT)/JA_GDP+RES_JA_P*JA_PGNP ; + ( log(JA_PXM)-(log(JA_PXM(-1)))) = JA_PXM0+JA_PXM1*( log(JA_PGNPNO)-(log(JA_PGNPNO(-1))))+(1-JA_PXM1)*( log(JA_PFM)-(log(JA_PFM(-1))))+JA_PXM2*log(JA_PGNPNO(-1)/JA_PXM(-1))+RES_JA_PXM ; + JA_PXT = (JA_XMA*JA_PXM+POIL/JA_ER*JA_E96*JA_XOIL)/JA_XT ; + JA_PIM = (S0102*US_PXM+S0202*JA_PXM*JA_ER/JA_E96+S0302*GR_PXM*GR_ER/GR_E96+S0402*FR_PXM*FR_ER/FR_E96+S0502*IT_PXM*IT_ER/IT_E96+S0602*UK_PXM*UK_ER/UK_E96+S0702*CA_PXM*CA_ER/CA_E96+S0802*SI_PXM*SI_ER/SI_E96+S0902*RW_PXM*RW_ER/RW_E96)/(JA_ER/JA_E96)*(1+RES_JA_PIM) ; + JA_PIMA = JA_PIM+T02*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/JA_ER/JA_IM ; + JA_PIT = (JA_IM*JA_PIMA+JA_IOIL*POIL/JA_ER*JA_E96+JA_ICOM*PCOM/JA_ER*JA_E96)/JA_IT ; + log(JA_TFP_FE) = RES_JA_TFP_FE ; + JA_GDP_FE = JA_TFP_FE*JA_K^JA_BETA*((1-JA_UNR_FE/100)*JA_LF)^(1-JA_BETA) ; + JA_LF = JA_POP*JA_PART/(1+JA_DEM3) ; + JA_CU = 100*JA_GDP/JA_GDP_FE ; + ( JA_NFA-(JA_NFA(-1))) = (JA_XT*JA_PXT-JA_IT*JA_PIT)*JA_ER+(US_R+(JA_PREM(-3)+JA_PREM(-2)+JA_PREM(-1))/3)*JA_NFA(-1)+RES_JA_NFA*US_INFL^TME*GREAL^TME ; + JA_TB = JA_XT*JA_PXT-JA_IT*JA_PIT ; + JA_CURBAL = ( JA_NFA-(JA_NFA(-1))) ; + 1+US_RS/100 = (1+JA_RS/100)*JA_ER(1)/JA_ER-JA_PREM+RES_JA_ER ; + JA_RCI = log(JA_PXM)-log(JA_PFM) ; + JA_FACT = (US_IM*US_E96*S0201+JA_IM*JA_E96*S0202+GR_IM*GR_E96*S0203+FR_IM*FR_E96*S0204+IT_IM*IT_E96*S0205+UK_IM*UK_E96*S0206+CA_IM*CA_E96*S0207+SI_IM*SI_E96*S0208+(HO_IM+DC_IM)*RW_E96*S0209)/JA_E96 ; + log(JA_PFM) = W0201*log(US_PXM*US_ER/US_E96)+W0202*log(JA_ER/JA_E96)+W0203*log(GR_PXM*GR_ER/GR_E96)+W0204*log(FR_PXM*FR_ER/FR_E96)+W0205*log(IT_PXM*IT_ER/IT_E96)+W0206*log(UK_PXM*UK_ER/UK_E96)+W0207*log(CA_PXM*CA_ER/CA_E96)+W0208*log(SI_PXM*SI_ER/SI_E96)+W0209*log(RW_PXM*RW_ER/RW_E96) ; + JA_NEER = exp(-V0201*log(US_ER/US_E96)+log(JA_ER/JA_E96)-V0203*log(GR_ER/GR_E96)-V0204*log(FR_ER/FR_E96)-V0205*log(IT_ER/IT_E96)-V0206*log(UK_ER/UK_E96)-V0207*log(CA_ER/CA_E96)-V0208*log(SI_ER/SI_E96)) ; + ( log(GR_CPI)-(log(GR_CPI(-1)))) = GR_CPI1*( log(GR_PIM)-(log(GR_PIM(-1))))+GR_CPI2*( log(GR_PGNP)-(log(GR_PGNP(-1))))+(1-GR_CPI1-GR_CPI2)*log(GR_CPI(-1)/GR_CPI(-2))+RES_GR_CPI ; + GR_UNR_A = GR_UNR_FE+GR_UNR_1*100*log(GR_GDP/GR_GDP_FE)+GR_UNR_2*(GR_UNR(-1)-GR_UNR_FE(-1))+RES_GR_UNR_A ; + GR_UNR = GR_UNR_A/*MAX(GR_UNR_A;0.1)*/ ; + ( log(GR_PGNPNO)-(log(GR_PGNPNO(-1)))) = GR_LAMBDA*(GR_DELTA_PI*( log(GR_PGNPNO(1))-(log(GR_PGNPNO)))+(1-GR_DELTA_PI)*( log(GR_PGNPNO(-1))-(log(GR_PGNPNO(-2)))))+(1-GR_LAMBDA)*( log(GR_PGNPNO(-1))-(log(GR_PGNPNO(-2))))+GR_GAMMA/100*(GR_NLIN-GR_UNR)/(GR_UNR-GR_PHI)+RES_GR_PGNP ; + GR_INFL = GR_MGROW/GREAL ; + GR_DLLF = log(GR_LF/GR_LF(-1)) ; + GR_DLGDP = log(GR_GDP/GR_GDP(-1)) ; + GR_C = GR_C_DI+GR_C_PI ; + GR_MPC = 1/GR_MPCINV ; + GR_MPCINV(1) = GR_MPCINV-1-((1-GR_SIGMA)*(GR_RSR+GR_PROB)-(RES_GR_MPC+GR_PROB))*GR_MPCINV/GR_SIGMA ; + GR_WH1(1) = GR_WH1*(1+GR_RSR+GR_ALPHA1+RES_GR_WH1+GR_PROB+exp(GR_DLLF_SS)-1)-(((1-GR_BETA)*GR_GDP*GR_PGNP-GR_TAXH)/GR_P+RES_GR_WK*GR_WK) ; + GR_WH2(1) = GR_WH2*(1+GR_RSR+GR_ALPHA2+RES_GR_WH2+GR_PROB+exp(GR_DLLF_SS)-1)-(((1-GR_BETA)*GR_GDP*GR_PGNP-GR_TAXH)/GR_P+RES_GR_WK*GR_WK) ; + GR_WH3(1) = GR_WH3*(1+GR_RSR+GR_ALPHA3+RES_GR_WH3+GR_PROB+exp(GR_DLLF_SS)-1)-(((1-GR_BETA)*GR_GDP*GR_PGNP-GR_TAXH)/GR_P+RES_GR_WK*GR_WK) ; + GR_C_DI = (GR_LAMBDA1*GR_BCHI1+GR_LAMBDA2*GR_BCHI2+GR_LAMBDA3*(1-GR_BCHI1-GR_BCHI2))*((1-GR_BETA)*GR_GDP*GR_PGNP-GR_TAXH)/GR_P+RES_GR_C_DI*GREAL^TME ; + GR_C_PI = GR_MPC*(GR_WK+(GR_M+GR_B+GR_NFA/GR_ER)/GR_P+GR_BCHI1*(1-GR_LAMBDA1)*GR_WH1+GR_BCHI2*(1-GR_LAMBDA2)*GR_WH2+(1-GR_BCHI1-GR_BCHI2)*(1-GR_LAMBDA3)*GR_WH3) ; + GR_WH = GR_BCHI1*GR_WH1+GR_BCHI2*GR_WH2+(1-GR_BCHI1-GR_BCHI2)*GR_WH3 ; + ( log(GR_COIL)-(log(GR_COIL(-1)))) = GR_COIL0+GR_COIL1*( log(GR_GDP)-(log(GR_GDP(-1))))+GR_COIL2*( log(POIL/GR_ER/GR_PGNP)-(log(POIL(-1)/GR_ER(-1)/GR_PGNP(-1))))+GR_COIL3*log(POIL(-1)/GR_ER(-1)/GR_PGNP(-1))+GR_COIL4*log(GR_GDP(-1)/GR_COIL(-1))+RES_GR_COIL ; + GR_INVEST/GR_K(-1)-(GR_DELTA_SS+GREAL_SS-1) = GR_K1*(GR_WK/GR_K(-1)-1)+GR_K2*(GR_WK(-1)/GR_K(-2)-1)+RES_GR_K ; + GR_MPK = GR_BETA*GR_GDP/GR_K ; + GR_Q = GR_CHI*(GR_INVEST/GR_K(-1)-(GR_DELTA_SS+GREAL_SS-1))+1 ; + GR_WK(1) = GR_WK*(1+GR_RSR+GR_K/GR_K(-1)-1+GR_DELTA+RES_GR_WK)-(GR_BETA*GR_GDP*GR_PGNP-GR_TAXK)/GR_P+(GR_CHI/2*((GR_Q-1)/GR_CHI)^2+GR_INVEST/GR_K(-1)*(GR_Q-1))*GR_K(-1)*GR_PGNP/GR_P ; + GR_INVEST = ( GR_K-(GR_K(-1)))+GR_DELTA*GR_K(-1) ; + ( log(GR_XM)-(log(GR_XM(-1)))) = GR_XM0+( log(GR_FACT)-(log(GR_FACT(-1))))+GR_XM1*( GR_RCI-(GR_RCI(-1)))+GR_XM2*(GR_XM3*GR_RCI(-1)+log(GR_FACT(-1))-log(GR_XM(-1)))+RES_GR_XM ; + GR_XMA = GR_XM+T03*(WTRADER-TRDER*GREAL^TME)/GR_E96 ; + GR_XT = GR_XMA+GR_XOIL ; + GR_ACT = GR_C_MPROP*GR_C+GR_INVEST_MPROP*GR_INVEST+GR_G_MPROP*GR_G+GR_XT_MPROP*GR_XT ; + ( log(GR_IM)-(log(GR_IM(-1)))) = GR_IM0+( log(GR_ACT)-(log(GR_ACT(-1))))+GR_IM1*( log(GR_PIMA/GR_PGNPNO)-(log(GR_PIMA(-1)/GR_PGNPNO(-1))))+GR_IM2*(GR_IM3*log(GR_PIMA(-1)/GR_PGNPNO(-1))+log(GR_ACT(-1))-log(GR_IM(-1)))+RES_GR_IM ; + GR_IOIL = GR_COIL+GR_XOIL-GR_PRODOIL+RES_GR_IOIL*GREAL^TME ; + ( log(GR_ICOM)-(log(GR_ICOM(-1)))) = GR_IC0+GR_IC2*( log(PCOM/GR_ER/GR_PGNP)-(log(PCOM(-1)/GR_ER(-1)/GR_PGNP(-1))))+GR_IC1*( log(GR_GDP)-(log(GR_GDP(-1))))+GR_IC3*log(PCOM(-1)/GR_ER(-1)/GR_PGNP(-1))+GR_IC4*log(GR_GDP(-1))+GR_IC5*log(GR_ICOM(-1))+RES_GR_ICOM-(GR_IC4+GR_IC5)*log(GREAL^TME) ; + GR_IT = GR_IM+GR_IOIL+GR_ICOM ; + GR_A = GR_C+GR_INVEST+GR_G ; + GR_GDP = GR_A+GR_XT-GR_IT ; + GR_GNP = GR_GDP+(US_R+(GR_PREM(-3)+GR_PREM(-2)+GR_PREM(-1))/3)*GR_NFA(-1)/GR_ER/GR_PGNP+RES_GR_GNP*GREAL^TME ; + GR_W = GR_WH+GR_WK+(GR_M+GR_B+GR_NFA/GR_ER)/GR_P ; + GR_YD = (GR_GDP*GR_PGNP-GR_TAX)/GR_P-GR_DELTA*GR_K(-1) ; + GR_GE = GR_P*GR_G+GR_R*GR_B(-1)+GR_GEXOG ; + GR_TAX = GR_TRATE*GR_PGNP*GR_GNP ; + GR_TAXK = GR_TAXK_ALPHA*GR_TAXK_SHAR*GR_TAX+(1-GR_TAXK_ALPHA)*GR_TRATEK*GR_BETA*GR_GDP*GR_PGNP ; + GR_TAXH = GR_TAX-GR_TAXK ; + GR_TRATE = GR_TRATE_EXOG*(1-GR_TRATE_ALPHA)+GR_TRATE_ALPHA*((GR_TRATE(-2)/5+GR_TRATE(-1)/5+GR_TRATE(0)/5+GR_TRATE(1)/5+GR_TRATE(2)/5)+TAU1*(GR_B(1)/(GR_GNP(1)*GR_PGNP(1))-GR_BT_GDP_RAT(1))+RES_GR_TRATE) ; + GR_BT = GR_BT_GDP_RAT*GR_GNP*GR_PGNP ; + ( GR_B-(GR_B(-1)))+( GR_M-(GR_M(-1))) = GR_R*GR_B(-1)+GR_P*GR_G-GR_TAX ; + GR_GDEF = ( GR_B+GR_M-(GR_B(-1)+GR_M(-1))) ; + log(GR_M/GR_P) = GR_M0+(1-GR_M4)*log(GR_A)+GR_M2*GR_RS+GR_M4*log(GR_M(-1)/GR_P(-1))+RES_GR_M ; + GR_RS = (1-GR_X_RS1)*GR_RS_EXOG+GR_X_RS1*(GR_RS(-1)+GR_RS1*log(GR_MT/GR_M)/GR_M2+GR_RS2*log(GR_ER/GR_ER/GR_PAR)+GR_RS3*log(US_ER/GR_ER/GR_PARUS)+GR_RS4*log(GR_NEER/GR_NEER_PAR)+GR_RS5*(GR_UNR_FE-GR_UNR-GR_UNR_GAP_EXOG)+GR_RS6*100*(log(GR_GDP)-log(GR_GDP_FE)-GR_GDP_GAP_EXOG)+GR_X_RS2*(-GR_RS(-1)+GR_RSCON+100*( log(GR_P(1))-(log(GR_P))))+100*(GR_RTARC1*(( log(GR_P)-(log(GR_P(-1))))-( log(GR_P_TAR)-(log(GR_P_TAR(-1))))-GR_P_GAP_EXOG)+GR_RTARC2*(( log(GR_PGNP)-(log(GR_PGNP(-1))))-( log(GR_PGNP_TAR)-(log(GR_PGNP_TAR(-1))))-GR_PGNP_GAP_EXOG)+GR_RTARC3*(( log(GR_CPI)-(log(GR_CPI(-1))))-( log(GR_CPI_TAR)-(log(GR_CPI_TAR(-1))))-GR_CPI_GAP_EXOG)+GR_RTARC4*(( log(GR_PGNPNO)-(log(GR_PGNPNO(-1))))-( log(GR_PGNPNO_TAR)-(log(GR_PGNPNO_TAR(-1))))-GR_PGNPNO_GAP_EXOG)+GR_RTARF1*(( log(GR_P(1))-(log(GR_P)))-( log(GR_P_TAR(1))-(log(GR_P_TAR)))-GR_P_GAP_EXOG(1))+GR_RTARF2*(( log(GR_PGNP(1))-(log(GR_PGNP)))-( log(GR_PGNP_TAR(1))-(log(GR_PGNP_TAR)))-GR_PGNP_GAP_EXOG(1))+GR_RTARF3*(( log(GR_CPI(1))-(log(GR_CPI)))-( log(GR_CPI_TAR(1))-(log(GR_CPI_TAR)))-GR_CPI_GAP_EXOG(1))+GR_RTARF4*(( log(GR_PGNPNO(1))-(log(GR_PGNPNO)))-( log(GR_PGNPNO_TAR(1))-(log(GR_PGNPNO_TAR)))-GR_PGNPNO_GAP_EXOG(1)))+GR_RSCON2+RES_GR_RS)+GR_RS1PERM*0 ; + GR_RL/100 = ((1+GR_RS/100)*(1+GR_RS(1)/100)*(1+GR_RS(2)/100)*(1+GR_RS(3)/100)*(1+GR_RS(4)/100)*(1+GR_RS(5)/100)*(1+GR_RS(6)/100)*(1+GR_RS(7)/100)*(1+GR_RS(8)/100)*(1+GR_RS(9)/100))^0.1*(1+GR_TPREM)-1+RES_GR_RL ; + GR_R = 0.5*GR_RS(-1)/100+0.5*(GR_RL(-3)/100+GR_RL(-2)/100+GR_RL(-1)/100)/3 ; + GR_RLR = (1+GR_RL/100)/(GR_P(10)/GR_P)^0.1-1 ; + GR_RSR = (1+GR_RS/100)/(GR_P(1)/GR_P)-1 ; + GR_PGNPNO = (GR_GDP*GR_PGNP-GR_PRODOIL*POIL/GR_ER*GR_E96)/(GR_GDP-GR_PRODOIL) ; + GR_PGNP = (GR_P*GR_A+GR_XT*GR_PXT-GR_IT*GR_PIT)/GR_GDP+RES_GR_P*GR_PGNP ; + ( log(GR_PXM)-(log(GR_PXM(-1)))) = GR_PXM0+GR_PXM1*( log(GR_PGNPNO)-(log(GR_PGNPNO(-1))))+(1-GR_PXM1)*( log(GR_PFM)-(log(GR_PFM(-1))))+GR_PXM2*log(GR_PGNPNO(-1)/GR_PXM(-1))+RES_GR_PXM ; + GR_PXT = (GR_XMA*GR_PXM+POIL/GR_ER*GR_E96*GR_XOIL)/GR_XT ; + GR_PIM = (S0103*US_PXM+S0203*JA_PXM*JA_ER/JA_E96+S0303*GR_PXM*GR_ER/GR_E96+S0403*FR_PXM*FR_ER/FR_E96+S0503*IT_PXM*IT_ER/IT_E96+S0603*UK_PXM*UK_ER/UK_E96+S0703*CA_PXM*CA_ER/CA_E96+S0803*SI_PXM*SI_ER/SI_E96+S0903*RW_PXM*RW_ER/RW_E96)/(GR_ER/GR_E96)*(1+RES_GR_PIM) ; + GR_PIMA = GR_PIM+T03*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/GR_ER/GR_IM ; + GR_PIT = (GR_IM*GR_PIMA+GR_IOIL*POIL/GR_ER*GR_E96+GR_ICOM*PCOM/GR_ER*GR_E96)/GR_IT ; + log(GR_TFP_FE) = RES_GR_TFP_FE ; + GR_GDP_FE = GR_TFP_FE*GR_K^GR_BETA*((1-GR_UNR_FE/100)*GR_LF)^(1-GR_BETA) ; + GR_LF = GR_POP*GR_PART/(1+GR_DEM3) ; + GR_CU = 100*GR_GDP/GR_GDP_FE ; + ( GR_NFA-(GR_NFA(-1))) = (GR_XT*GR_PXT-GR_IT*GR_PIT)*GR_ER+(US_R+(GR_PREM(-3)+GR_PREM(-2)+GR_PREM(-1))/3)*GR_NFA(-1)+RES_GR_NFA*US_INFL^TME*GREAL^TME ; + GR_TB = GR_XT*GR_PXT-GR_IT*GR_PIT ; + GR_CURBAL = ( GR_NFA-(GR_NFA(-1))) ; + 1+US_RS/100 = (1+GR_RS/100)*GR_ER(1)/GR_ER-GR_PREM+RES_GR_ER ; + GR_RCI = log(GR_PXM)-log(GR_PFM) ; + GR_FACT = (US_IM*US_E96*S0301+JA_IM*JA_E96*S0302+GR_IM*GR_E96*S0303+FR_IM*FR_E96*S0304+IT_IM*IT_E96*S0305+UK_IM*UK_E96*S0306+CA_IM*CA_E96*S0307+SI_IM*SI_E96*S0308+(HO_IM+DC_IM)*RW_E96*S0309)/GR_E96 ; + log(GR_PFM) = W0301*log(US_PXM*US_ER/US_E96)+W0302*log(JA_PXM*JA_ER/JA_E96)+W0303*log(GR_ER/GR_E96)+W0304*log(FR_PXM*FR_ER/FR_E96)+W0305*log(IT_PXM*IT_ER/IT_E96)+W0306*log(UK_PXM*UK_ER/UK_E96)+W0307*log(CA_PXM*CA_ER/CA_E96)+W0308*log(SI_PXM*SI_ER/SI_E96)+W0309*log(RW_PXM*RW_ER/RW_E96) ; + GR_NEER = exp(-V0301*log(US_ER/US_E96)-V0302*log(JA_ER/JA_E96)+log(GR_ER/GR_E96)-V0304*log(FR_ER/FR_E96)-V0305*log(IT_ER/IT_E96)-V0306*log(UK_ER/UK_E96)-V0307*log(CA_ER/CA_E96)-V0308*log(SI_ER/SI_E96)) ; + ( log(FR_CPI)-(log(FR_CPI(-1)))) = FR_CPI1*( log(FR_PIM)-(log(FR_PIM(-1))))+FR_CPI2*( log(FR_PGNP)-(log(FR_PGNP(-1))))+(1-FR_CPI1-FR_CPI2)*log(FR_CPI(-1)/FR_CPI(-2))+RES_FR_CPI ; + FR_UNR_A = FR_UNR_FE+FR_UNR_1*100*log(FR_GDP/FR_GDP_FE)+FR_UNR_2*(FR_UNR(-1)-FR_UNR_FE(-1))+RES_FR_UNR_A ; + FR_UNR = FR_UNR_A/*MAX(FR_UNR_A;0.1)*/ ; + ( log(FR_PGNPNO)-(log(FR_PGNPNO(-1)))) = FR_LAMBDA*(FR_DELTA_PI*( log(FR_PGNPNO(1))-(log(FR_PGNPNO)))+(1-FR_DELTA_PI)*( log(FR_PGNPNO(-1))-(log(FR_PGNPNO(-2)))))+(1-FR_LAMBDA)*( log(FR_PGNPNO(-1))-(log(FR_PGNPNO(-2))))+FR_GAMMA/100*(FR_NLIN-FR_UNR)/(FR_UNR-FR_PHI)+RES_FR_PGNP ; + FR_INFL = FR_MGROW/GREAL ; + FR_DLLF = log(FR_LF/FR_LF(-1)) ; + FR_DLGDP = log(FR_GDP/FR_GDP(-1)) ; + FR_C = FR_C_DI+FR_C_PI ; + FR_MPC = 1/FR_MPCINV ; + FR_MPCINV(1) = FR_MPCINV-1-((1-FR_SIGMA)*(FR_RSR+FR_PROB)-(RES_FR_MPC+FR_PROB))*FR_MPCINV/FR_SIGMA ; + FR_WH1(1) = FR_WH1*(1+FR_RSR+FR_ALPHA1+RES_FR_WH1+FR_PROB+exp(FR_DLLF_SS)-1)-(((1-FR_BETA)*FR_GDP*FR_PGNP-FR_TAXH)/FR_P+RES_FR_WK*FR_WK) ; + FR_WH2(1) = FR_WH2*(1+FR_RSR+FR_ALPHA2+RES_FR_WH2+FR_PROB+exp(FR_DLLF_SS)-1)-(((1-FR_BETA)*FR_GDP*FR_PGNP-FR_TAXH)/FR_P+RES_FR_WK*FR_WK) ; + FR_WH3(1) = FR_WH3*(1+FR_RSR+FR_ALPHA3+RES_FR_WH3+FR_PROB+exp(FR_DLLF_SS)-1)-(((1-FR_BETA)*FR_GDP*FR_PGNP-FR_TAXH)/FR_P+RES_FR_WK*FR_WK) ; + FR_C_DI = (FR_LAMBDA1*FR_BCHI1+FR_LAMBDA2*FR_BCHI2+FR_LAMBDA3*(1-FR_BCHI1-FR_BCHI2))*((1-FR_BETA)*FR_GDP*FR_PGNP-FR_TAXH)/FR_P+RES_FR_C_DI*GREAL^TME ; + FR_C_PI = FR_MPC*(FR_WK+(FR_M+FR_B+FR_NFA/FR_ER)/FR_P+FR_BCHI1*(1-FR_LAMBDA1)*FR_WH1+FR_BCHI2*(1-FR_LAMBDA2)*FR_WH2+(1-FR_BCHI1-FR_BCHI2)*(1-FR_LAMBDA3)*FR_WH3) ; + FR_WH = FR_BCHI1*FR_WH1+FR_BCHI2*FR_WH2+(1-FR_BCHI1-FR_BCHI2)*FR_WH3 ; + ( log(FR_COIL)-(log(FR_COIL(-1)))) = FR_COIL0+FR_COIL1*( log(FR_GDP)-(log(FR_GDP(-1))))+FR_COIL2*( log(POIL/FR_ER/FR_PGNP)-(log(POIL(-1)/FR_ER(-1)/FR_PGNP(-1))))+FR_COIL3*log(POIL(-1)/FR_ER(-1)/FR_PGNP(-1))+FR_COIL4*log(FR_GDP(-1)/FR_COIL(-1))+RES_FR_COIL ; + FR_INVEST/FR_K(-1)-(FR_DELTA_SS+GREAL_SS-1) = FR_K1*(FR_WK/FR_K(-1)-1)+FR_K2*(FR_WK(-1)/FR_K(-2)-1)+RES_FR_K ; + FR_MPK = FR_BETA*FR_GDP/FR_K ; + FR_Q = FR_CHI*(FR_INVEST/FR_K(-1)-(FR_DELTA_SS+GREAL_SS-1))+1 ; + FR_WK(1) = FR_WK*(1+FR_RSR+FR_K/FR_K(-1)-1+FR_DELTA+RES_FR_WK)-(FR_BETA*FR_GDP*FR_PGNP-FR_TAXK)/FR_P+(FR_CHI/2*((FR_Q-1)/FR_CHI)^2+FR_INVEST/FR_K(-1)*(FR_Q-1))*FR_K(-1)*FR_PGNP/FR_P ; + FR_INVEST = ( FR_K-(FR_K(-1)))+FR_DELTA*FR_K(-1) ; + ( log(FR_XM)-(log(FR_XM(-1)))) = FR_XM0+( log(FR_FACT)-(log(FR_FACT(-1))))+FR_XM1*( FR_RCI-(FR_RCI(-1)))+FR_XM2*(FR_XM3*FR_RCI(-1)+log(FR_FACT(-1))-log(FR_XM(-1)))+RES_FR_XM ; + FR_XMA = FR_XM+T04*(WTRADER-TRDER*GREAL^TME)/FR_E96 ; + FR_XT = FR_XMA+FR_XOIL ; + FR_ACT = FR_C_MPROP*FR_C+FR_INVEST_MPROP*FR_INVEST+FR_G_MPROP*FR_G+FR_XT_MPROP*FR_XT ; + ( log(FR_IM)-(log(FR_IM(-1)))) = FR_IM0+( log(FR_ACT)-(log(FR_ACT(-1))))+FR_IM1*( log(FR_PIMA/FR_PGNPNO)-(log(FR_PIMA(-1)/FR_PGNPNO(-1))))+FR_IM2*(FR_IM3*log(FR_PIMA(-1)/FR_PGNPNO(-1))+log(FR_ACT(-1))-log(FR_IM(-1)))+RES_FR_IM ; + FR_IOIL = FR_COIL+FR_XOIL-FR_PRODOIL+RES_FR_IOIL*GREAL^TME ; + ( log(FR_ICOM)-(log(FR_ICOM(-1)))) = FR_IC0+FR_IC2*( log(PCOM/FR_ER/FR_PGNP)-(log(PCOM(-1)/FR_ER(-1)/FR_PGNP(-1))))+FR_IC1*( log(FR_GDP)-(log(FR_GDP(-1))))+FR_IC3*log(PCOM(-1)/FR_ER(-1)/FR_PGNP(-1))+FR_IC4*log(FR_GDP(-1))+FR_IC5*log(FR_ICOM(-1))+RES_FR_ICOM-(FR_IC4+FR_IC5)*log(GREAL^TME) ; + FR_IT = FR_IM+FR_IOIL+FR_ICOM ; + FR_A = FR_C+FR_INVEST+FR_G ; + FR_GDP = FR_A+FR_XT-FR_IT ; + FR_GNP = FR_GDP+(US_R+(FR_PREM(-3)+FR_PREM(-2)+FR_PREM(-1))/3)*FR_NFA(-1)/FR_ER/FR_PGNP+RES_FR_GNP*GREAL^TME ; + FR_W = FR_WH+FR_WK+(FR_M+FR_B+FR_NFA/FR_ER)/FR_P ; + FR_YD = (FR_GDP*FR_PGNP-FR_TAX)/FR_P-FR_DELTA*FR_K(-1) ; + FR_GE = FR_P*FR_G+FR_R*FR_B(-1)+FR_GEXOG ; + FR_TAX = FR_TRATE*FR_PGNP*FR_GNP ; + FR_TAXK = FR_TAXK_ALPHA*FR_TAXK_SHAR*FR_TAX+(1-FR_TAXK_ALPHA)*FR_TRATEK*FR_BETA*FR_GDP*FR_PGNP ; + FR_TAXH = FR_TAX-FR_TAXK ; + FR_TRATE = FR_TRATE_EXOG*(1-FR_TRATE_ALPHA)+FR_TRATE_ALPHA*((FR_TRATE(-2)/5+FR_TRATE(-1)/5+FR_TRATE(0)/5+FR_TRATE(1)/5+FR_TRATE(2)/5)+TAU1*(FR_B(1)/(FR_GNP(1)*FR_PGNP(1))-FR_BT_GDP_RAT(1))+RES_FR_TRATE) ; + FR_BT = FR_BT_GDP_RAT*FR_GNP*FR_PGNP ; + ( FR_B-(FR_B(-1)))+( FR_M-(FR_M(-1))) = FR_R*FR_B(-1)+FR_P*FR_G-FR_TAX ; + FR_GDEF = ( FR_B+FR_M-(FR_B(-1)+FR_M(-1))) ; + log(FR_M/FR_P) = FR_M0+(1-FR_M4)*log(FR_A)+FR_M2*FR_RS+FR_M4*log(FR_M(-1)/FR_P(-1))+RES_FR_M ; + FR_RS = (1-FR_X_RS1)*FR_RS_EXOG+FR_X_RS1*(FR_RS(-1)+FR_RS1*log(FR_MT/FR_M)/FR_M2+FR_RS2*log(GR_ER/FR_ER/FR_PAR)+FR_RS3*log(US_ER/FR_ER/FR_PARUS)+FR_RS4*log(FR_NEER/FR_NEER_PAR)+FR_RS5*(FR_UNR_FE-FR_UNR-FR_UNR_GAP_EXOG)+FR_RS6*100*(log(FR_GDP)-log(FR_GDP_FE)-FR_GDP_GAP_EXOG)+FR_X_RS2*(-FR_RS(-1)+FR_RSCON+100*( log(FR_P(1))-(log(FR_P))))+100*(FR_RTARC1*(( log(FR_P)-(log(FR_P(-1))))-( log(FR_P_TAR)-(log(FR_P_TAR(-1))))-FR_P_GAP_EXOG)+FR_RTARC2*(( log(FR_PGNP)-(log(FR_PGNP(-1))))-( log(FR_PGNP_TAR)-(log(FR_PGNP_TAR(-1))))-FR_PGNP_GAP_EXOG)+FR_RTARC3*(( log(FR_CPI)-(log(FR_CPI(-1))))-( log(FR_CPI_TAR)-(log(FR_CPI_TAR(-1))))-FR_CPI_GAP_EXOG)+FR_RTARC4*(( log(FR_PGNPNO)-(log(FR_PGNPNO(-1))))-( log(FR_PGNPNO_TAR)-(log(FR_PGNPNO_TAR(-1))))-FR_PGNPNO_GAP_EXOG)+FR_RTARF1*(( log(FR_P(1))-(log(FR_P)))-( log(FR_P_TAR(1))-(log(FR_P_TAR)))-FR_P_GAP_EXOG(1))+FR_RTARF2*(( log(FR_PGNP(1))-(log(FR_PGNP)))-( log(FR_PGNP_TAR(1))-(log(FR_PGNP_TAR)))-FR_PGNP_GAP_EXOG(1))+FR_RTARF3*(( log(FR_CPI(1))-(log(FR_CPI)))-( log(FR_CPI_TAR(1))-(log(FR_CPI_TAR)))-FR_CPI_GAP_EXOG(1))+FR_RTARF4*(( log(FR_PGNPNO(1))-(log(FR_PGNPNO)))-( log(FR_PGNPNO_TAR(1))-(log(FR_PGNPNO_TAR)))-FR_PGNPNO_GAP_EXOG(1)))+FR_RSCON2+RES_FR_RS)+FR_RS1PERM*0 ; + FR_RL/100 = ((1+FR_RS/100)*(1+FR_RS(1)/100)*(1+FR_RS(2)/100)*(1+FR_RS(3)/100)*(1+FR_RS(4)/100)*(1+FR_RS(5)/100)*(1+FR_RS(6)/100)*(1+FR_RS(7)/100)*(1+FR_RS(8)/100)*(1+FR_RS(9)/100))^0.1*(1+FR_TPREM)-1+RES_FR_RL ; + FR_R = 0.5*FR_RS(-1)/100+0.5*(FR_RL(-3)/100+FR_RL(-2)/100+FR_RL(-1)/100)/3 ; + FR_RLR = (1+FR_RL/100)/(FR_P(10)/FR_P)^0.1-1 ; + FR_RSR = (1+FR_RS/100)/(FR_P(1)/FR_P)-1 ; + FR_PGNPNO = (FR_GDP*FR_PGNP-FR_PRODOIL*POIL/FR_ER*FR_E96)/(FR_GDP-FR_PRODOIL) ; + FR_PGNP = (FR_P*FR_A+FR_XT*FR_PXT-FR_IT*FR_PIT)/FR_GDP+RES_FR_P*FR_PGNP ; + ( log(FR_PXM)-(log(FR_PXM(-1)))) = FR_PXM0+FR_PXM1*( log(FR_PGNPNO)-(log(FR_PGNPNO(-1))))+(1-FR_PXM1)*( log(FR_PFM)-(log(FR_PFM(-1))))+FR_PXM2*log(FR_PGNPNO(-1)/FR_PXM(-1))+RES_FR_PXM ; + FR_PXT = (FR_XMA*FR_PXM+POIL/FR_ER*FR_E96*FR_XOIL)/FR_XT ; + FR_PIM = (S0104*US_PXM+S0204*JA_PXM*JA_ER/JA_E96+S0304*GR_PXM*GR_ER/GR_E96+S0404*FR_PXM*FR_ER/FR_E96+S0504*IT_PXM*IT_ER/IT_E96+S0604*UK_PXM*UK_ER/UK_E96+S0704*CA_PXM*CA_ER/CA_E96+S0804*SI_PXM*SI_ER/SI_E96+S0904*RW_PXM*RW_ER/RW_E96)/(FR_ER/FR_E96)*(1+RES_FR_PIM) ; + FR_PIMA = FR_PIM+T04*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/FR_ER/FR_IM ; + FR_PIT = (FR_IM*FR_PIMA+FR_IOIL*POIL/FR_ER*FR_E96+FR_ICOM*PCOM/FR_ER*FR_E96)/FR_IT ; + log(FR_TFP_FE) = RES_FR_TFP_FE ; + FR_GDP_FE = FR_TFP_FE*FR_K^FR_BETA*((1-FR_UNR_FE/100)*FR_LF)^(1-FR_BETA) ; + FR_LF = FR_POP*FR_PART/(1+FR_DEM3) ; + FR_CU = 100*FR_GDP/FR_GDP_FE ; + ( FR_NFA-(FR_NFA(-1))) = (FR_XT*FR_PXT-FR_IT*FR_PIT)*FR_ER+(US_R+(FR_PREM(-3)+FR_PREM(-2)+FR_PREM(-1))/3)*FR_NFA(-1)+RES_FR_NFA*US_INFL^TME*GREAL^TME ; + FR_TB = FR_XT*FR_PXT-FR_IT*FR_PIT ; + FR_CURBAL = ( FR_NFA-(FR_NFA(-1))) ; + 1+US_RS/100 = (1+FR_RS/100)*FR_ER(1)/FR_ER-FR_PREM+RES_FR_ER ; + FR_RCI = log(FR_PXM)-log(FR_PFM) ; + FR_FACT = (US_IM*US_E96*S0401+JA_IM*JA_E96*S0402+GR_IM*GR_E96*S0403+FR_IM*FR_E96*S0404+IT_IM*IT_E96*S0405+UK_IM*UK_E96*S0406+CA_IM*CA_E96*S0407+SI_IM*SI_E96*S0408+(HO_IM+DC_IM)*RW_E96*S0409)/FR_E96 ; + log(FR_PFM) = W0401*log(US_PXM*US_ER/US_E96)+W0402*log(JA_PXM*JA_ER/JA_E96)+W0403*log(GR_PXM*GR_ER/GR_E96)+W0404*log(FR_ER/FR_E96)+W0405*log(IT_PXM*IT_ER/IT_E96)+W0406*log(UK_PXM*UK_ER/UK_E96)+W0407*log(CA_PXM*CA_ER/CA_E96)+W0408*log(SI_PXM*SI_ER/SI_E96)+W0409*log(RW_PXM*RW_ER/RW_E96) ; + FR_NEER = exp(-V0401*log(US_ER/US_E96)-V0402*log(JA_ER/JA_E96)-V0403*log(GR_ER/GR_E96)+log(FR_ER/FR_E96)-V0405*log(IT_ER/IT_E96)-V0406*log(UK_ER/UK_E96)-V0407*log(CA_ER/CA_E96)-V0408*log(SI_ER/SI_E96)) ; + ( log(IT_CPI)-(log(IT_CPI(-1)))) = IT_CPI1*( log(IT_PIM)-(log(IT_PIM(-1))))+IT_CPI2*( log(IT_PGNP)-(log(IT_PGNP(-1))))+(1-IT_CPI1-IT_CPI2)*log(IT_CPI(-1)/IT_CPI(-2))+RES_IT_CPI ; + IT_UNR_A = IT_UNR_FE+IT_UNR_1*100*log(IT_GDP/IT_GDP_FE)+IT_UNR_2*(IT_UNR(-1)-IT_UNR_FE(-1))+RES_IT_UNR_A ; + IT_UNR = IT_UNR_A/*MAX(IT_UNR_A;0.1)*/ ; + ( log(IT_PGNPNO)-(log(IT_PGNPNO(-1)))) = IT_LAMBDA*(IT_DELTA_PI*( log(IT_PGNPNO(1))-(log(IT_PGNPNO)))+(1-IT_DELTA_PI)*( log(IT_PGNPNO(-1))-(log(IT_PGNPNO(-2)))))+(1-IT_LAMBDA)*( log(IT_PGNPNO(-1))-(log(IT_PGNPNO(-2))))+IT_GAMMA/100*(IT_NLIN-IT_UNR)/(IT_UNR-IT_PHI)+RES_IT_PGNP ; + IT_INFL = IT_MGROW/GREAL ; + IT_DLLF = log(IT_LF/IT_LF(-1)) ; + IT_DLGDP = log(IT_GDP/IT_GDP(-1)) ; + IT_C = IT_C_DI+IT_C_PI ; + IT_MPC = 1/IT_MPCINV ; + IT_MPCINV(1) = IT_MPCINV-1-((1-IT_SIGMA)*(IT_RSR+IT_PROB)-(RES_IT_MPC+IT_PROB))*IT_MPCINV/IT_SIGMA ; + IT_WH1(1) = IT_WH1*(1+IT_RSR+IT_ALPHA1+RES_IT_WH1+IT_PROB+exp(IT_DLLF_SS)-1)-(((1-IT_BETA)*IT_GDP*IT_PGNP-IT_TAXH)/IT_P+RES_IT_WK*IT_WK) ; + IT_WH2(1) = IT_WH2*(1+IT_RSR+IT_ALPHA2+RES_IT_WH2+IT_PROB+exp(IT_DLLF_SS)-1)-(((1-IT_BETA)*IT_GDP*IT_PGNP-IT_TAXH)/IT_P+RES_IT_WK*IT_WK) ; + IT_WH3(1) = IT_WH3*(1+IT_RSR+IT_ALPHA3+RES_IT_WH3+IT_PROB+exp(IT_DLLF_SS)-1)-(((1-IT_BETA)*IT_GDP*IT_PGNP-IT_TAXH)/IT_P+RES_IT_WK*IT_WK) ; + IT_C_DI = (IT_LAMBDA1*IT_BCHI1+IT_LAMBDA2*IT_BCHI2+IT_LAMBDA3*(1-IT_BCHI1-IT_BCHI2))*((1-IT_BETA)*IT_GDP*IT_PGNP-IT_TAXH)/IT_P+RES_IT_C_DI*GREAL^TME ; + IT_C_PI = IT_MPC*(IT_WK+(IT_M+IT_B+IT_NFA/IT_ER)/IT_P+IT_BCHI1*(1-IT_LAMBDA1)*IT_WH1+IT_BCHI2*(1-IT_LAMBDA2)*IT_WH2+(1-IT_BCHI1-IT_BCHI2)*(1-IT_LAMBDA3)*IT_WH3) ; + IT_WH = IT_BCHI1*IT_WH1+IT_BCHI2*IT_WH2+(1-IT_BCHI1-IT_BCHI2)*IT_WH3 ; + ( log(IT_COIL)-(log(IT_COIL(-1)))) = IT_COIL0+IT_COIL1*( log(IT_GDP)-(log(IT_GDP(-1))))+IT_COIL2*( log(POIL/IT_ER/IT_PGNP)-(log(POIL(-1)/IT_ER(-1)/IT_PGNP(-1))))+IT_COIL3*log(POIL(-1)/IT_ER(-1)/IT_PGNP(-1))+IT_COIL4*log(IT_GDP(-1)/IT_COIL(-1))+RES_IT_COIL ; + IT_INVEST/IT_K(-1)-(IT_DELTA_SS+GREAL_SS-1) = IT_K1*(IT_WK/IT_K(-1)-1)+IT_K2*(IT_WK(-1)/IT_K(-2)-1)+RES_IT_K ; + IT_MPK = IT_BETA*IT_GDP/IT_K ; + IT_Q = IT_CHI*(IT_INVEST/IT_K(-1)-(IT_DELTA_SS+GREAL_SS-1))+1 ; + IT_WK(1) = IT_WK*(1+IT_RSR+IT_K/IT_K(-1)-1+IT_DELTA+RES_IT_WK)-(IT_BETA*IT_GDP*IT_PGNP-IT_TAXK)/IT_P+(IT_CHI/2*((IT_Q-1)/IT_CHI)^2+IT_INVEST/IT_K(-1)*(IT_Q-1))*IT_K(-1)*IT_PGNP/IT_P ; + IT_INVEST = ( IT_K-(IT_K(-1)))+IT_DELTA*IT_K(-1) ; + ( log(IT_XM)-(log(IT_XM(-1)))) = IT_XM0+( log(IT_FACT)-(log(IT_FACT(-1))))+IT_XM1*( IT_RCI-(IT_RCI(-1)))+IT_XM2*(IT_XM3*IT_RCI(-1)+log(IT_FACT(-1))-log(IT_XM(-1)))+RES_IT_XM ; + IT_XMA = IT_XM+T05*(WTRADER-TRDER*GREAL^TME)/IT_E96 ; + IT_XT = IT_XMA+IT_XOIL ; + IT_ACT = IT_C_MPROP*IT_C+IT_INVEST_MPROP*IT_INVEST+IT_G_MPROP*IT_G+IT_XT_MPROP*IT_XT ; + ( log(IT_IM)-(log(IT_IM(-1)))) = IT_IM0+( log(IT_ACT)-(log(IT_ACT(-1))))+IT_IM1*( log(IT_PIMA/IT_PGNPNO)-(log(IT_PIMA(-1)/IT_PGNPNO(-1))))+IT_IM2*(IT_IM3*log(IT_PIMA(-1)/IT_PGNPNO(-1))+log(IT_ACT(-1))-log(IT_IM(-1)))+RES_IT_IM ; + IT_IOIL = IT_COIL+IT_XOIL-IT_PRODOIL+RES_IT_IOIL*GREAL^TME ; + ( log(IT_ICOM)-(log(IT_ICOM(-1)))) = IT_IC0+IT_IC2*( log(PCOM/IT_ER/IT_PGNP)-(log(PCOM(-1)/IT_ER(-1)/IT_PGNP(-1))))+IT_IC1*( log(IT_GDP)-(log(IT_GDP(-1))))+IT_IC3*log(PCOM(-1)/IT_ER(-1)/IT_PGNP(-1))+IT_IC4*log(IT_GDP(-1))+IT_IC5*log(IT_ICOM(-1))+RES_IT_ICOM-(IT_IC4+IT_IC5)*log(GREAL^TME) ; + IT_IT = IT_IM+IT_IOIL+IT_ICOM ; + IT_A = IT_C+IT_INVEST+IT_G ; + IT_GDP = IT_A+IT_XT-IT_IT ; + IT_GNP = IT_GDP+(US_R+(IT_PREM(-3)+IT_PREM(-2)+IT_PREM(-1))/3)*IT_NFA(-1)/IT_ER/IT_PGNP+RES_IT_GNP*GREAL^TME ; + IT_W = IT_WH+IT_WK+(IT_M+IT_B+IT_NFA/IT_ER)/IT_P ; + IT_YD = (IT_GDP*IT_PGNP-IT_TAX)/IT_P-IT_DELTA*IT_K(-1) ; + IT_GE = IT_P*IT_G+IT_R*IT_B(-1)+IT_GEXOG ; + IT_TAX = IT_TRATE*IT_PGNP*IT_GNP ; + IT_TAXK = IT_TAXK_ALPHA*IT_TAXK_SHAR*IT_TAX+(1-IT_TAXK_ALPHA)*IT_TRATEK*IT_BETA*IT_GDP*IT_PGNP ; + IT_TAXH = IT_TAX-IT_TAXK ; + IT_TRATE = IT_TRATE_EXOG*(1-IT_TRATE_ALPHA)+IT_TRATE_ALPHA*((IT_TRATE(-2)/5+IT_TRATE(-1)/5+IT_TRATE(0)/5+IT_TRATE(1)/5+IT_TRATE(2)/5)+TAU1*(IT_B(1)/(IT_GNP(1)*IT_PGNP(1))-IT_BT_GDP_RAT(1))+RES_IT_TRATE) ; + IT_BT = IT_BT_GDP_RAT*IT_GNP*IT_PGNP ; + ( IT_B-(IT_B(-1)))+( IT_M-(IT_M(-1))) = IT_R*IT_B(-1)+IT_P*IT_G-IT_TAX ; + IT_GDEF = ( IT_B+IT_M-(IT_B(-1)+IT_M(-1))) ; + log(IT_M/IT_P) = IT_M0+(1-IT_M4)*log(IT_A)+IT_M2*IT_RS+IT_M4*log(IT_M(-1)/IT_P(-1))+RES_IT_M ; + IT_RS = (1-IT_X_RS1)*IT_RS_EXOG+IT_X_RS1*(IT_RS(-1)+IT_RS1*log(IT_MT/IT_M)/IT_M2+IT_RS2*log(GR_ER/IT_ER/IT_PAR)+IT_RS3*log(US_ER/IT_ER/IT_PARUS)+IT_RS4*log(IT_NEER/IT_NEER_PAR)+IT_RS5*(IT_UNR_FE-IT_UNR-IT_UNR_GAP_EXOG)+IT_RS6*100*(log(IT_GDP)-log(IT_GDP_FE)-IT_GDP_GAP_EXOG)+IT_X_RS2*(-IT_RS(-1)+IT_RSCON+100*( log(IT_P(1))-(log(IT_P))))+100*(IT_RTARC1*(( log(IT_P)-(log(IT_P(-1))))-( log(IT_P_TAR)-(log(IT_P_TAR(-1))))-IT_P_GAP_EXOG)+IT_RTARC2*(( log(IT_PGNP)-(log(IT_PGNP(-1))))-( log(IT_PGNP_TAR)-(log(IT_PGNP_TAR(-1))))-IT_PGNP_GAP_EXOG)+IT_RTARC3*(( log(IT_CPI)-(log(IT_CPI(-1))))-( log(IT_CPI_TAR)-(log(IT_CPI_TAR(-1))))-IT_CPI_GAP_EXOG)+IT_RTARC4*(( log(IT_PGNPNO)-(log(IT_PGNPNO(-1))))-( log(IT_PGNPNO_TAR)-(log(IT_PGNPNO_TAR(-1))))-IT_PGNPNO_GAP_EXOG)+IT_RTARF1*(( log(IT_P(1))-(log(IT_P)))-( log(IT_P_TAR(1))-(log(IT_P_TAR)))-IT_P_GAP_EXOG(1))+IT_RTARF2*(( log(IT_PGNP(1))-(log(IT_PGNP)))-( log(IT_PGNP_TAR(1))-(log(IT_PGNP_TAR)))-IT_PGNP_GAP_EXOG(1))+IT_RTARF3*(( log(IT_CPI(1))-(log(IT_CPI)))-( log(IT_CPI_TAR(1))-(log(IT_CPI_TAR)))-IT_CPI_GAP_EXOG(1))+IT_RTARF4*(( log(IT_PGNPNO(1))-(log(IT_PGNPNO)))-( log(IT_PGNPNO_TAR(1))-(log(IT_PGNPNO_TAR)))-IT_PGNPNO_GAP_EXOG(1)))+IT_RSCON2+RES_IT_RS)+IT_RS1PERM*0 ; + IT_RL/100 = ((1+IT_RS/100)*(1+IT_RS(1)/100)*(1+IT_RS(2)/100)*(1+IT_RS(3)/100)*(1+IT_RS(4)/100)*(1+IT_RS(5)/100)*(1+IT_RS(6)/100)*(1+IT_RS(7)/100)*(1+IT_RS(8)/100)*(1+IT_RS(9)/100))^0.1*(1+IT_TPREM)-1+RES_IT_RL ; + IT_R = 0.5*IT_RS(-1)/100+0.5*(IT_RL(-3)/100+IT_RL(-2)/100+IT_RL(-1)/100)/3 ; + IT_RLR = (1+IT_RL/100)/(IT_P(10)/IT_P)^0.1-1 ; + IT_RSR = (1+IT_RS/100)/(IT_P(1)/IT_P)-1 ; + IT_PGNPNO = (IT_GDP*IT_PGNP-IT_PRODOIL*POIL/IT_ER*IT_E96)/(IT_GDP-IT_PRODOIL) ; + IT_PGNP = (IT_P*IT_A+IT_XT*IT_PXT-IT_IT*IT_PIT)/IT_GDP+RES_IT_P*IT_PGNP ; + ( log(IT_PXM)-(log(IT_PXM(-1)))) = IT_PXM0+IT_PXM1*( log(IT_PGNPNO)-(log(IT_PGNPNO(-1))))+(1-IT_PXM1)*( log(IT_PFM)-(log(IT_PFM(-1))))+IT_PXM2*log(IT_PGNPNO(-1)/IT_PXM(-1))+RES_IT_PXM ; + IT_PXT = (IT_XMA*IT_PXM+POIL/IT_ER*IT_E96*IT_XOIL)/IT_XT ; + IT_PIM = (S0105*US_PXM+S0205*JA_PXM*JA_ER/JA_E96+S0305*GR_PXM*GR_ER/GR_E96+S0405*FR_PXM*FR_ER/FR_E96+S0505*IT_PXM*IT_ER/IT_E96+S0605*UK_PXM*UK_ER/UK_E96+S0705*CA_PXM*CA_ER/CA_E96+S0805*SI_PXM*SI_ER/SI_E96+S0905*RW_PXM*RW_ER/RW_E96)/(IT_ER/IT_E96)*(1+RES_IT_PIM) ; + IT_PIMA = IT_PIM+T05*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/IT_ER/IT_IM ; + IT_PIT = (IT_IM*IT_PIMA+IT_IOIL*POIL/IT_ER*IT_E96+IT_ICOM*PCOM/IT_ER*IT_E96)/IT_IT ; + log(IT_TFP_FE) = RES_IT_TFP_FE ; + IT_GDP_FE = IT_TFP_FE*IT_K^IT_BETA*((1-IT_UNR_FE/100)*IT_LF)^(1-IT_BETA) ; + IT_LF = IT_POP*IT_PART/(1+IT_DEM3) ; + IT_CU = 100*IT_GDP/IT_GDP_FE ; + ( IT_NFA-(IT_NFA(-1))) = (IT_XT*IT_PXT-IT_IT*IT_PIT)*IT_ER+(US_R+(IT_PREM(-3)+IT_PREM(-2)+IT_PREM(-1))/3)*IT_NFA(-1)+RES_IT_NFA*US_INFL^TME*GREAL^TME ; + IT_TB = IT_XT*IT_PXT-IT_IT*IT_PIT ; + IT_CURBAL = ( IT_NFA-(IT_NFA(-1))) ; + 1+US_RS/100 = (1+IT_RS/100)*IT_ER(1)/IT_ER-IT_PREM+RES_IT_ER ; + IT_RCI = log(IT_PXM)-log(IT_PFM) ; + IT_FACT = (US_IM*US_E96*S0501+JA_IM*JA_E96*S0502+GR_IM*GR_E96*S0503+FR_IM*FR_E96*S0504+IT_IM*IT_E96*S0505+UK_IM*UK_E96*S0506+CA_IM*CA_E96*S0507+SI_IM*SI_E96*S0508+(HO_IM+DC_IM)*RW_E96*S0509)/IT_E96 ; + log(IT_PFM) = W0501*log(US_PXM*US_ER/US_E96)+W0502*log(JA_PXM*JA_ER/JA_E96)+W0503*log(GR_PXM*GR_ER/GR_E96)+W0504*log(FR_PXM*FR_ER/FR_E96)+W0505*log(IT_ER/IT_E96)+W0506*log(UK_PXM*UK_ER/UK_E96)+W0507*log(CA_PXM*CA_ER/CA_E96)+W0508*log(SI_PXM*SI_ER/SI_E96)+W0509*log(RW_PXM*RW_ER/RW_E96) ; + IT_NEER = exp(-V0501*log(US_ER/US_E96)-V0502*log(JA_ER/JA_E96)-V0503*log(GR_ER/GR_E96)-V0504*log(FR_ER/FR_E96)+log(IT_ER/IT_E96)-V0506*log(UK_ER/UK_E96)-V0507*log(CA_ER/CA_E96)-V0508*log(SI_ER/SI_E96)) ; + ( log(UK_CPI)-(log(UK_CPI(-1)))) = UK_CPI1*( log(UK_PIM)-(log(UK_PIM(-1))))+UK_CPI2*( log(UK_PGNP)-(log(UK_PGNP(-1))))+(1-UK_CPI1-UK_CPI2)*log(UK_CPI(-1)/UK_CPI(-2))+RES_UK_CPI ; + UK_UNR_A = UK_UNR_FE+UK_UNR_1*100*log(UK_GDP/UK_GDP_FE)+UK_UNR_2*(UK_UNR(-1)-UK_UNR_FE(-1))+RES_UK_UNR_A ; + UK_UNR = UK_UNR_A/*MAX(UK_UNR_A;0.1)*/ ; + ( log(UK_PGNPNO)-(log(UK_PGNPNO(-1)))) = UK_LAMBDA*(UK_DELTA_PI*( log(UK_PGNPNO(1))-(log(UK_PGNPNO)))+(1-UK_DELTA_PI)*( log(UK_PGNPNO(-1))-(log(UK_PGNPNO(-2)))))+(1-UK_LAMBDA)*( log(UK_PGNPNO(-1))-(log(UK_PGNPNO(-2))))+UK_GAMMA/100*(UK_NLIN-UK_UNR)/(UK_UNR-UK_PHI)+RES_UK_PGNP ; + UK_INFL = UK_MGROW/GREAL ; + UK_DLLF = log(UK_LF/UK_LF(-1)) ; + UK_DLGDP = log(UK_GDP/UK_GDP(-1)) ; + UK_C = UK_C_DI+UK_C_PI ; + UK_MPC = 1/UK_MPCINV ; + UK_MPCINV(1) = UK_MPCINV-1-((1-UK_SIGMA)*(UK_RSR+UK_PROB)-(RES_UK_MPC+UK_PROB))*UK_MPCINV/UK_SIGMA ; + UK_WH1(1) = UK_WH1*(1+UK_RSR+UK_ALPHA1+RES_UK_WH1+UK_PROB+exp(UK_DLLF_SS)-1)-(((1-UK_BETA)*UK_GDP*UK_PGNP-UK_TAXH)/UK_P+RES_UK_WK*UK_WK) ; + UK_WH2(1) = UK_WH2*(1+UK_RSR+UK_ALPHA2+RES_UK_WH2+UK_PROB+exp(UK_DLLF_SS)-1)-(((1-UK_BETA)*UK_GDP*UK_PGNP-UK_TAXH)/UK_P+RES_UK_WK*UK_WK) ; + UK_WH3(1) = UK_WH3*(1+UK_RSR+UK_ALPHA3+RES_UK_WH3+UK_PROB+exp(UK_DLLF_SS)-1)-(((1-UK_BETA)*UK_GDP*UK_PGNP-UK_TAXH)/UK_P+RES_UK_WK*UK_WK) ; + UK_C_DI = (UK_LAMBDA1*UK_BCHI1+UK_LAMBDA2*UK_BCHI2+UK_LAMBDA3*(1-UK_BCHI1-UK_BCHI2))*((1-UK_BETA)*UK_GDP*UK_PGNP-UK_TAXH)/UK_P+RES_UK_C_DI*GREAL^TME ; + UK_C_PI = UK_MPC*(UK_WK+(UK_M+UK_B+UK_NFA/UK_ER)/UK_P+UK_BCHI1*(1-UK_LAMBDA1)*UK_WH1+UK_BCHI2*(1-UK_LAMBDA2)*UK_WH2+(1-UK_BCHI1-UK_BCHI2)*(1-UK_LAMBDA3)*UK_WH3) ; + UK_WH = UK_BCHI1*UK_WH1+UK_BCHI2*UK_WH2+(1-UK_BCHI1-UK_BCHI2)*UK_WH3 ; + ( log(UK_COIL)-(log(UK_COIL(-1)))) = UK_COIL0+UK_COIL1*( log(UK_GDP)-(log(UK_GDP(-1))))+UK_COIL2*( log(POIL/UK_ER/UK_PGNP)-(log(POIL(-1)/UK_ER(-1)/UK_PGNP(-1))))+UK_COIL3*log(POIL(-1)/UK_ER(-1)/UK_PGNP(-1))+UK_COIL4*log(UK_GDP(-1)/UK_COIL(-1))+RES_UK_COIL ; + UK_INVEST/UK_K(-1)-(UK_DELTA_SS+GREAL_SS-1) = UK_K1*(UK_WK/UK_K(-1)-1)+UK_K2*(UK_WK(-1)/UK_K(-2)-1)+RES_UK_K ; + UK_MPK = UK_BETA*UK_GDP/UK_K ; + UK_Q = UK_CHI*(UK_INVEST/UK_K(-1)-(UK_DELTA_SS+GREAL_SS-1))+1 ; + UK_WK(1) = UK_WK*(1+UK_RSR+UK_K/UK_K(-1)-1+UK_DELTA+RES_UK_WK)-(UK_BETA*UK_GDP*UK_PGNP-UK_TAXK)/UK_P+(UK_CHI/2*((UK_Q-1)/UK_CHI)^2+UK_INVEST/UK_K(-1)*(UK_Q-1))*UK_K(-1)*UK_PGNP/UK_P ; + UK_INVEST = ( UK_K-(UK_K(-1)))+UK_DELTA*UK_K(-1) ; + ( log(UK_XM)-(log(UK_XM(-1)))) = UK_XM0+( log(UK_FACT)-(log(UK_FACT(-1))))+UK_XM1*( UK_RCI-(UK_RCI(-1)))+UK_XM2*(UK_XM3*UK_RCI(-1)+log(UK_FACT(-1))-log(UK_XM(-1)))+RES_UK_XM ; + UK_XMA = UK_XM+T06*(WTRADER-TRDER*GREAL^TME)/UK_E96 ; + UK_XT = UK_XMA+UK_XOIL ; + UK_ACT = UK_C_MPROP*UK_C+UK_INVEST_MPROP*UK_INVEST+UK_G_MPROP*UK_G+UK_XT_MPROP*UK_XT ; + ( log(UK_IM)-(log(UK_IM(-1)))) = UK_IM0+( log(UK_ACT)-(log(UK_ACT(-1))))+UK_IM1*( log(UK_PIMA/UK_PGNPNO)-(log(UK_PIMA(-1)/UK_PGNPNO(-1))))+UK_IM2*(UK_IM3*log(UK_PIMA(-1)/UK_PGNPNO(-1))+log(UK_ACT(-1))-log(UK_IM(-1)))+RES_UK_IM ; + UK_IOIL = UK_COIL+UK_XOIL-UK_PRODOIL+RES_UK_IOIL*GREAL^TME ; + ( log(UK_ICOM)-(log(UK_ICOM(-1)))) = UK_IC0+UK_IC2*( log(PCOM/UK_ER/UK_PGNP)-(log(PCOM(-1)/UK_ER(-1)/UK_PGNP(-1))))+UK_IC1*( log(UK_GDP)-(log(UK_GDP(-1))))+UK_IC3*log(PCOM(-1)/UK_ER(-1)/UK_PGNP(-1))+UK_IC4*log(UK_GDP(-1))+UK_IC5*log(UK_ICOM(-1))+RES_UK_ICOM-(UK_IC4+UK_IC5)*log(GREAL^TME) ; + UK_IT = UK_IM+UK_IOIL+UK_ICOM ; + UK_A = UK_C+UK_INVEST+UK_G ; + UK_GDP = UK_A+UK_XT-UK_IT ; + UK_GNP = UK_GDP+(US_R+(UK_PREM(-3)+UK_PREM(-2)+UK_PREM(-1))/3)*UK_NFA(-1)/UK_ER/UK_PGNP+RES_UK_GNP*GREAL^TME ; + UK_W = UK_WH+UK_WK+(UK_M+UK_B+UK_NFA/UK_ER)/UK_P ; + UK_YD = (UK_GDP*UK_PGNP-UK_TAX)/UK_P-UK_DELTA*UK_K(-1) ; + UK_GE = UK_P*UK_G+UK_R*UK_B(-1)+UK_GEXOG ; + UK_TAX = UK_TRATE*UK_PGNP*UK_GNP ; + UK_TAXK = UK_TAXK_ALPHA*UK_TAXK_SHAR*UK_TAX+(1-UK_TAXK_ALPHA)*UK_TRATEK*UK_BETA*UK_GDP*UK_PGNP ; + UK_TAXH = UK_TAX-UK_TAXK ; + UK_TRATE = UK_TRATE_EXOG*(1-UK_TRATE_ALPHA)+UK_TRATE_ALPHA*((UK_TRATE(-2)/5+UK_TRATE(-1)/5+UK_TRATE(0)/5+UK_TRATE(1)/5+UK_TRATE(2)/5)+TAU1*(UK_B(1)/(UK_GNP(1)*UK_PGNP(1))-UK_BT_GDP_RAT(1))+RES_UK_TRATE) ; + UK_BT = UK_BT_GDP_RAT*UK_GNP*UK_PGNP ; + ( UK_B-(UK_B(-1)))+( UK_M-(UK_M(-1))) = UK_R*UK_B(-1)+UK_P*UK_G-UK_TAX ; + UK_GDEF = ( UK_B+UK_M-(UK_B(-1)+UK_M(-1))) ; + log(UK_M/UK_P) = UK_M0+(1-UK_M4)*log(UK_A)+UK_M2*UK_RS+UK_M4*log(UK_M(-1)/UK_P(-1))+RES_UK_M ; + UK_RS = (1-UK_X_RS1)*UK_RS_EXOG+UK_X_RS1*(UK_RS(-1)+UK_RS1*log(UK_MT/UK_M)/UK_M2+UK_RS2*log(GR_ER/UK_ER/UK_PAR)+UK_RS3*log(US_ER/UK_ER/UK_PARUS)+UK_RS4*log(UK_NEER/UK_NEER_PAR)+UK_RS5*(UK_UNR_FE-UK_UNR-UK_UNR_GAP_EXOG)+UK_RS6*100*(log(UK_GDP)-log(UK_GDP_FE)-UK_GDP_GAP_EXOG)+UK_X_RS2*(-UK_RS(-1)+UK_RSCON+100*( log(UK_P(1))-(log(UK_P))))+100*(UK_RTARC1*(( log(UK_P)-(log(UK_P(-1))))-( log(UK_P_TAR)-(log(UK_P_TAR(-1))))-UK_P_GAP_EXOG)+UK_RTARC2*(( log(UK_PGNP)-(log(UK_PGNP(-1))))-( log(UK_PGNP_TAR)-(log(UK_PGNP_TAR(-1))))-UK_PGNP_GAP_EXOG)+UK_RTARC3*(( log(UK_CPI)-(log(UK_CPI(-1))))-( log(UK_CPI_TAR)-(log(UK_CPI_TAR(-1))))-UK_CPI_GAP_EXOG)+UK_RTARC4*(( log(UK_PGNPNO)-(log(UK_PGNPNO(-1))))-( log(UK_PGNPNO_TAR)-(log(UK_PGNPNO_TAR(-1))))-UK_PGNPNO_GAP_EXOG)+UK_RTARF1*(( log(UK_P(1))-(log(UK_P)))-( log(UK_P_TAR(1))-(log(UK_P_TAR)))-UK_P_GAP_EXOG(1))+UK_RTARF2*(( log(UK_PGNP(1))-(log(UK_PGNP)))-( log(UK_PGNP_TAR(1))-(log(UK_PGNP_TAR)))-UK_PGNP_GAP_EXOG(1))+UK_RTARF3*(( log(UK_CPI(1))-(log(UK_CPI)))-( log(UK_CPI_TAR(1))-(log(UK_CPI_TAR)))-UK_CPI_GAP_EXOG(1))+UK_RTARF4*(( log(UK_PGNPNO(1))-(log(UK_PGNPNO)))-( log(UK_PGNPNO_TAR(1))-(log(UK_PGNPNO_TAR)))-UK_PGNPNO_GAP_EXOG(1)))+UK_RSCON2+RES_UK_RS)+UK_RS1PERM*0 ; + UK_RL/100 = ((1+UK_RS/100)*(1+UK_RS(1)/100)*(1+UK_RS(2)/100)*(1+UK_RS(3)/100)*(1+UK_RS(4)/100)*(1+UK_RS(5)/100)*(1+UK_RS(6)/100)*(1+UK_RS(7)/100)*(1+UK_RS(8)/100)*(1+UK_RS(9)/100))^0.1*(1+UK_TPREM)-1+RES_UK_RL ; + UK_R = 0.5*UK_RS(-1)/100+0.5*(UK_RL(-3)/100+UK_RL(-2)/100+UK_RL(-1)/100)/3 ; + UK_RLR = (1+UK_RL/100)/(UK_P(10)/UK_P)^0.1-1 ; + UK_RSR = (1+UK_RS/100)/(UK_P(1)/UK_P)-1 ; + UK_PGNPNO = (UK_GDP*UK_PGNP-UK_PRODOIL*POIL/UK_ER*UK_E96)/(UK_GDP-UK_PRODOIL) ; + UK_PGNP = (UK_P*UK_A+UK_XT*UK_PXT-UK_IT*UK_PIT)/UK_GDP+RES_UK_P*UK_PGNP ; + ( log(UK_PXM)-(log(UK_PXM(-1)))) = UK_PXM0+UK_PXM1*( log(UK_PGNPNO)-(log(UK_PGNPNO(-1))))+(1-UK_PXM1)*( log(UK_PFM)-(log(UK_PFM(-1))))+UK_PXM2*log(UK_PGNPNO(-1)/UK_PXM(-1))+RES_UK_PXM ; + UK_PXT = (UK_XMA*UK_PXM+POIL/UK_ER*UK_E96*UK_XOIL)/UK_XT ; + UK_PIM = (S0106*US_PXM+S0206*JA_PXM*JA_ER/JA_E96+S0306*GR_PXM*GR_ER/GR_E96+S0406*FR_PXM*FR_ER/FR_E96+S0506*IT_PXM*IT_ER/IT_E96+S0606*UK_PXM*UK_ER/UK_E96+S0706*CA_PXM*CA_ER/CA_E96+S0806*SI_PXM*SI_ER/SI_E96+S0906*RW_PXM*RW_ER/RW_E96)/(UK_ER/UK_E96)*(1+RES_UK_PIM) ; + UK_PIMA = UK_PIM+T06*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/UK_ER/UK_IM ; + UK_PIT = (UK_IM*UK_PIMA+UK_IOIL*POIL/UK_ER*UK_E96+UK_ICOM*PCOM/UK_ER*UK_E96)/UK_IT ; + log(UK_TFP_FE) = RES_UK_TFP_FE ; + UK_GDP_FE = UK_TFP_FE*UK_K^UK_BETA*((1-UK_UNR_FE/100)*UK_LF)^(1-UK_BETA) ; + UK_LF = UK_POP*UK_PART/(1+UK_DEM3) ; + UK_CU = 100*UK_GDP/UK_GDP_FE ; + ( UK_NFA-(UK_NFA(-1))) = (UK_XT*UK_PXT-UK_IT*UK_PIT)*UK_ER+(US_R+(UK_PREM(-3)+UK_PREM(-2)+UK_PREM(-1))/3)*UK_NFA(-1)+RES_UK_NFA*US_INFL^TME*GREAL^TME ; + UK_TB = UK_XT*UK_PXT-UK_IT*UK_PIT ; + UK_CURBAL = ( UK_NFA-(UK_NFA(-1))) ; + 1+US_RS/100 = (1+UK_RS/100)*UK_ER(1)/UK_ER-UK_PREM+RES_UK_ER ; + UK_RCI = log(UK_PXM)-log(UK_PFM) ; + UK_FACT = (US_IM*US_E96*S0601+JA_IM*JA_E96*S0602+GR_IM*GR_E96*S0603+FR_IM*FR_E96*S0604+IT_IM*IT_E96*S0605+UK_IM*UK_E96*S0606+CA_IM*CA_E96*S0607+SI_IM*SI_E96*S0608+(HO_IM+DC_IM)*RW_E96*S0609)/UK_E96 ; + log(UK_PFM) = W0601*log(US_PXM*US_ER/US_E96)+W0602*log(JA_PXM*JA_ER/JA_E96)+W0603*log(GR_PXM*GR_ER/GR_E96)+W0604*log(FR_PXM*FR_ER/FR_E96)+W0605*log(IT_PXM*IT_ER/IT_E96)+W0606*log(UK_ER/UK_E96)+W0607*log(CA_PXM*CA_ER/CA_E96)+W0608*log(SI_PXM*SI_ER/SI_E96)+W0609*log(RW_PXM*RW_ER/RW_E96) ; + UK_NEER = exp(-V0601*log(US_ER/US_E96)-V0602*log(JA_ER/JA_E96)-V0603*log(GR_ER/GR_E96)-V0604*log(FR_ER/FR_E96)-V0605*log(IT_ER/IT_E96)+log(UK_ER/UK_E96)-V0607*log(CA_ER/CA_E96)-V0608*log(SI_ER/SI_E96)) ; + ( log(CA_CPI)-(log(CA_CPI(-1)))) = CA_CPI1*( log(CA_PIM)-(log(CA_PIM(-1))))+CA_CPI2*( log(CA_PGNP)-(log(CA_PGNP(-1))))+(1-CA_CPI1-CA_CPI2)*log(CA_CPI(-1)/CA_CPI(-2))+RES_CA_CPI ; + CA_UNR_A = CA_UNR_FE+CA_UNR_1*100*log(CA_GDP/CA_GDP_FE)+CA_UNR_2*(CA_UNR(-1)-CA_UNR_FE(-1))+RES_CA_UNR_A ; + CA_UNR = CA_UNR_A/*MAX(CA_UNR_A;0.1)*/ ; + ( log(CA_PGNPNO)-(log(CA_PGNPNO(-1)))) = CA_LAMBDA*(CA_DELTA_PI*( log(CA_PGNPNO(1))-(log(CA_PGNPNO)))+(1-CA_DELTA_PI)*( log(CA_PGNPNO(-1))-(log(CA_PGNPNO(-2)))))+(1-CA_LAMBDA)*( log(CA_PGNPNO(-1))-(log(CA_PGNPNO(-2))))+CA_GAMMA/100*(CA_NLIN-CA_UNR)/(CA_UNR-CA_PHI)+RES_CA_PGNP ; + CA_INFL = CA_MGROW/GREAL ; + CA_DLLF = log(CA_LF/CA_LF(-1)) ; + CA_DLGDP = log(CA_GDP/CA_GDP(-1)) ; + CA_C = CA_C_DI+CA_C_PI ; + CA_MPC = 1/CA_MPCINV ; + CA_MPCINV(1) = CA_MPCINV-1-((1-CA_SIGMA)*(CA_RSR+CA_PROB)-(RES_CA_MPC+CA_PROB))*CA_MPCINV/CA_SIGMA ; + CA_WH1(1) = CA_WH1*(1+CA_RSR+CA_ALPHA1+RES_CA_WH1+CA_PROB+exp(CA_DLLF_SS)-1)-(((1-CA_BETA)*CA_GDP*CA_PGNP-CA_TAXH)/CA_P+RES_CA_WK*CA_WK) ; + CA_WH2(1) = CA_WH2*(1+CA_RSR+CA_ALPHA2+RES_CA_WH2+CA_PROB+exp(CA_DLLF_SS)-1)-(((1-CA_BETA)*CA_GDP*CA_PGNP-CA_TAXH)/CA_P+RES_CA_WK*CA_WK) ; + CA_WH3(1) = CA_WH3*(1+CA_RSR+CA_ALPHA3+RES_CA_WH3+CA_PROB+exp(CA_DLLF_SS)-1)-(((1-CA_BETA)*CA_GDP*CA_PGNP-CA_TAXH)/CA_P+RES_CA_WK*CA_WK) ; + CA_C_DI = (CA_LAMBDA1*CA_BCHI1+CA_LAMBDA2*CA_BCHI2+CA_LAMBDA3*(1-CA_BCHI1-CA_BCHI2))*((1-CA_BETA)*CA_GDP*CA_PGNP-CA_TAXH)/CA_P+RES_CA_C_DI*GREAL^TME ; + CA_C_PI = CA_MPC*(CA_WK+(CA_M+CA_B+CA_NFA/CA_ER)/CA_P+CA_BCHI1*(1-CA_LAMBDA1)*CA_WH1+CA_BCHI2*(1-CA_LAMBDA2)*CA_WH2+(1-CA_BCHI1-CA_BCHI2)*(1-CA_LAMBDA3)*CA_WH3) ; + CA_WH = CA_BCHI1*CA_WH1+CA_BCHI2*CA_WH2+(1-CA_BCHI1-CA_BCHI2)*CA_WH3 ; + ( log(CA_COIL)-(log(CA_COIL(-1)))) = CA_COIL0+CA_COIL1*( log(CA_GDP)-(log(CA_GDP(-1))))+CA_COIL2*( log(POIL/CA_ER/CA_PGNP)-(log(POIL(-1)/CA_ER(-1)/CA_PGNP(-1))))+CA_COIL3*log(POIL(-1)/CA_ER(-1)/CA_PGNP(-1))+CA_COIL4*log(CA_GDP(-1)/CA_COIL(-1))+RES_CA_COIL ; + CA_INVEST/CA_K(-1)-(CA_DELTA_SS+GREAL_SS-1) = CA_K1*(CA_WK/CA_K(-1)-1)+CA_K2*(CA_WK(-1)/CA_K(-2)-1)+RES_CA_K ; + CA_MPK = CA_BETA*CA_GDP/CA_K ; + CA_Q = CA_CHI*(CA_INVEST/CA_K(-1)-(CA_DELTA_SS+GREAL_SS-1))+1 ; + CA_WK(1) = CA_WK*(1+CA_RSR+CA_K/CA_K(-1)-1+CA_DELTA+RES_CA_WK)-(CA_BETA*CA_GDP*CA_PGNP-CA_TAXK)/CA_P+(CA_CHI/2*((CA_Q-1)/CA_CHI)^2+CA_INVEST/CA_K(-1)*(CA_Q-1))*CA_K(-1)*CA_PGNP/CA_P ; + CA_INVEST = ( CA_K-(CA_K(-1)))+CA_DELTA*CA_K(-1) ; + ( log(CA_XM)-(log(CA_XM(-1)))) = CA_XM0+( log(CA_FACT)-(log(CA_FACT(-1))))+CA_XM1*( CA_RCI-(CA_RCI(-1)))+CA_XM2*(CA_XM3*CA_RCI(-1)+log(CA_FACT(-1))-log(CA_XM(-1)))+RES_CA_XM ; + CA_XMA = CA_XM+T07*(WTRADER-TRDER*GREAL^TME)/CA_E96 ; + CA_XT = CA_XMA+CA_XOIL ; + CA_ACT = CA_C_MPROP*CA_C+CA_INVEST_MPROP*CA_INVEST+CA_G_MPROP*CA_G+CA_XT_MPROP*CA_XT ; + ( log(CA_IM)-(log(CA_IM(-1)))) = CA_IM0+( log(CA_ACT)-(log(CA_ACT(-1))))+CA_IM1*( log(CA_PIMA/CA_PGNPNO)-(log(CA_PIMA(-1)/CA_PGNPNO(-1))))+CA_IM2*(CA_IM3*log(CA_PIMA(-1)/CA_PGNPNO(-1))+log(CA_ACT(-1))-log(CA_IM(-1)))+RES_CA_IM ; + CA_IOIL = CA_COIL+CA_XOIL-CA_PRODOIL+RES_CA_IOIL*GREAL^TME ; + ( log(CA_ICOM)-(log(CA_ICOM(-1)))) = CA_IC0+CA_IC2*( log(PCOM/CA_ER/CA_PGNP)-(log(PCOM(-1)/CA_ER(-1)/CA_PGNP(-1))))+CA_IC1*( log(CA_GDP)-(log(CA_GDP(-1))))+CA_IC3*log(PCOM(-1)/CA_ER(-1)/CA_PGNP(-1))+CA_IC4*log(CA_GDP(-1))+CA_IC5*log(CA_ICOM(-1))+RES_CA_ICOM-(CA_IC4+CA_IC5)*log(GREAL^TME) ; + CA_IT = CA_IM+CA_IOIL+CA_ICOM ; + CA_A = CA_C+CA_INVEST+CA_G ; + CA_GDP = CA_A+CA_XT-CA_IT ; + CA_GNP = CA_GDP+(US_R+(CA_PREM(-3)+CA_PREM(-2)+CA_PREM(-1))/3)*CA_NFA(-1)/CA_ER/CA_PGNP+RES_CA_GNP*GREAL^TME ; + CA_W = CA_WH+CA_WK+(CA_M+CA_B+CA_NFA/CA_ER)/CA_P ; + CA_YD = (CA_GDP*CA_PGNP-CA_TAX)/CA_P-CA_DELTA*CA_K(-1) ; + CA_GE = CA_P*CA_G+CA_R*CA_B(-1)+CA_GEXOG ; + CA_TAX = CA_TRATE*CA_PGNP*CA_GNP ; + CA_TAXK = CA_TAXK_ALPHA*CA_TAXK_SHAR*CA_TAX+(1-CA_TAXK_ALPHA)*CA_TRATEK*CA_BETA*CA_GDP*CA_PGNP ; + CA_TAXH = CA_TAX-CA_TAXK ; + CA_TRATE = CA_TRATE_EXOG*(1-CA_TRATE_ALPHA)+CA_TRATE_ALPHA*((CA_TRATE(-2)/5+CA_TRATE(-1)/5+CA_TRATE(0)/5+CA_TRATE(1)/5+CA_TRATE(2)/5)+TAU1*(CA_B(1)/(CA_GNP(1)*CA_PGNP(1))-CA_BT_GDP_RAT(1))+RES_CA_TRATE) ; + CA_BT = CA_BT_GDP_RAT*CA_GNP*CA_PGNP ; + ( CA_B-(CA_B(-1)))+( CA_M-(CA_M(-1))) = CA_R*CA_B(-1)+CA_P*CA_G-CA_TAX ; + CA_GDEF = ( CA_B+CA_M-(CA_B(-1)+CA_M(-1))) ; + log(CA_M/CA_P) = CA_M0+(1-CA_M4)*log(CA_A)+CA_M2*CA_RS+CA_M4*log(CA_M(-1)/CA_P(-1))+RES_CA_M ; + CA_RS = (1-CA_X_RS1)*CA_RS_EXOG+CA_X_RS1*(CA_RS(-1)+CA_RS1*log(CA_MT/CA_M)/CA_M2+CA_RS2*log(GR_ER/CA_ER/CA_PAR)+CA_RS3*log(US_ER/CA_ER/CA_PARUS)+CA_RS4*log(CA_NEER/CA_NEER_PAR)+CA_RS5*(CA_UNR_FE-CA_UNR-CA_UNR_GAP_EXOG)+CA_RS6*100*(log(CA_GDP)-log(CA_GDP_FE)-CA_GDP_GAP_EXOG)+CA_X_RS2*(-CA_RS(-1)+CA_RSCON+100*( log(CA_P(1))-(log(CA_P))))+100*(CA_RTARC1*(( log(CA_P)-(log(CA_P(-1))))-( log(CA_P_TAR)-(log(CA_P_TAR(-1))))-CA_P_GAP_EXOG)+CA_RTARC2*(( log(CA_PGNP)-(log(CA_PGNP(-1))))-( log(CA_PGNP_TAR)-(log(CA_PGNP_TAR(-1))))-CA_PGNP_GAP_EXOG)+CA_RTARC3*(( log(CA_CPI)-(log(CA_CPI(-1))))-( log(CA_CPI_TAR)-(log(CA_CPI_TAR(-1))))-CA_CPI_GAP_EXOG)+CA_RTARC4*(( log(CA_PGNPNO)-(log(CA_PGNPNO(-1))))-( log(CA_PGNPNO_TAR)-(log(CA_PGNPNO_TAR(-1))))-CA_PGNPNO_GAP_EXOG)+CA_RTARF1*(( log(CA_P(1))-(log(CA_P)))-( log(CA_P_TAR(1))-(log(CA_P_TAR)))-CA_P_GAP_EXOG(1))+CA_RTARF2*(( log(CA_PGNP(1))-(log(CA_PGNP)))-( log(CA_PGNP_TAR(1))-(log(CA_PGNP_TAR)))-CA_PGNP_GAP_EXOG(1))+CA_RTARF3*(( log(CA_CPI(1))-(log(CA_CPI)))-( log(CA_CPI_TAR(1))-(log(CA_CPI_TAR)))-CA_CPI_GAP_EXOG(1))+CA_RTARF4*(( log(CA_PGNPNO(1))-(log(CA_PGNPNO)))-( log(CA_PGNPNO_TAR(1))-(log(CA_PGNPNO_TAR)))-CA_PGNPNO_GAP_EXOG(1)))+CA_RSCON2+RES_CA_RS)+CA_RS1PERM*0 ; + CA_RL/100 = ((1+CA_RS/100)*(1+CA_RS(1)/100)*(1+CA_RS(2)/100)*(1+CA_RS(3)/100)*(1+CA_RS(4)/100)*(1+CA_RS(5)/100)*(1+CA_RS(6)/100)*(1+CA_RS(7)/100)*(1+CA_RS(8)/100)*(1+CA_RS(9)/100))^0.1*(1+CA_TPREM)-1+RES_CA_RL ; + CA_R = 0.5*CA_RS(-1)/100+0.5*(CA_RL(-3)/100+CA_RL(-2)/100+CA_RL(-1)/100)/3 ; + CA_RLR = (1+CA_RL/100)/(CA_P(10)/CA_P)^0.1-1 ; + CA_RSR = (1+CA_RS/100)/(CA_P(1)/CA_P)-1 ; + CA_PGNPNO = (CA_GDP*CA_PGNP-CA_PRODOIL*POIL/CA_ER*CA_E96)/(CA_GDP-CA_PRODOIL) ; + CA_PGNP = (CA_P*CA_A+CA_XT*CA_PXT-CA_IT*CA_PIT)/CA_GDP+RES_CA_P*CA_PGNP ; + ( log(CA_PXM)-(log(CA_PXM(-1)))) = CA_PXM0+CA_PXM1*( log(CA_PGNPNO)-(log(CA_PGNPNO(-1))))+(1-CA_PXM1)*( log(CA_PFM)-(log(CA_PFM(-1))))+CA_PXM2*log(CA_PGNPNO(-1)/CA_PXM(-1))+RES_CA_PXM ; + CA_PXT = (CA_XMA*CA_PXM+POIL/CA_ER*CA_E96*CA_XOIL)/CA_XT ; + CA_PIM = (S0107*US_PXM+S0207*JA_PXM*JA_ER/JA_E96+S0307*GR_PXM*GR_ER/GR_E96+S0407*FR_PXM*FR_ER/FR_E96+S0507*IT_PXM*IT_ER/IT_E96+S0607*UK_PXM*UK_ER/UK_E96+S0707*CA_PXM*CA_ER/CA_E96+S0807*SI_PXM*SI_ER/SI_E96+S0907*RW_PXM*RW_ER/RW_E96)/(CA_ER/CA_E96)*(1+RES_CA_PIM) ; + CA_PIMA = CA_PIM+T07*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/CA_ER/CA_IM ; + CA_PIT = (CA_IM*CA_PIMA+CA_IOIL*POIL/CA_ER*CA_E96+CA_ICOM*PCOM/CA_ER*CA_E96)/CA_IT ; + log(CA_TFP_FE) = RES_CA_TFP_FE ; + CA_GDP_FE = CA_TFP_FE*CA_K^CA_BETA*((1-CA_UNR_FE/100)*CA_LF)^(1-CA_BETA) ; + CA_LF = CA_POP*CA_PART/(1+CA_DEM3) ; + CA_CU = 100*CA_GDP/CA_GDP_FE ; + ( CA_NFA-(CA_NFA(-1))) = (CA_XT*CA_PXT-CA_IT*CA_PIT)*CA_ER+(US_R+(CA_PREM(-3)+CA_PREM(-2)+CA_PREM(-1))/3)*CA_NFA(-1)+RES_CA_NFA*US_INFL^TME*GREAL^TME ; + CA_TB = CA_XT*CA_PXT-CA_IT*CA_PIT ; + CA_CURBAL = ( CA_NFA-(CA_NFA(-1))) ; + 1+US_RS/100 = (1+CA_RS/100)*CA_ER(1)/CA_ER-CA_PREM+RES_CA_ER ; + CA_RCI = log(CA_PXM)-log(CA_PFM) ; + CA_FACT = (US_IM*US_E96*S0701+JA_IM*JA_E96*S0702+GR_IM*GR_E96*S0703+FR_IM*FR_E96*S0704+IT_IM*IT_E96*S0705+UK_IM*UK_E96*S0706+CA_IM*CA_E96*S0707+SI_IM*SI_E96*S0708+(HO_IM+DC_IM)*RW_E96*S0709)/CA_E96 ; + log(CA_PFM) = W0701*log(US_PXM*US_ER/US_E96)+W0702*log(JA_PXM*JA_ER/JA_E96)+W0703*log(GR_PXM*GR_ER/GR_E96)+W0704*log(FR_PXM*FR_ER/FR_E96)+W0705*log(IT_PXM*IT_ER/IT_E96)+W0706*log(UK_PXM*UK_ER/UK_E96)+W0707*log(CA_ER/CA_E96)+W0708*log(SI_PXM*SI_ER/SI_E96)+W0709*log(RW_PXM*RW_ER/RW_E96) ; + CA_NEER = exp(-V0701*log(US_ER/US_E96)-V0702*log(JA_ER/JA_E96)-V0703*log(GR_ER/GR_E96)-V0704*log(FR_ER/FR_E96)-V0705*log(IT_ER/IT_E96)-V0706*log(UK_ER/UK_E96)+log(CA_ER/CA_E96)-V0708*log(SI_ER/SI_E96)) ; + ( log(SI_CPI)-(log(SI_CPI(-1)))) = SI_CPI1*( log(SI_PIM)-(log(SI_PIM(-1))))+SI_CPI2*( log(SI_PGNP)-(log(SI_PGNP(-1))))+(1-SI_CPI1-SI_CPI2)*log(SI_CPI(-1)/SI_CPI(-2))+RES_SI_CPI ; + SI_UNR_A = SI_UNR_FE+SI_UNR_1*100*log(SI_GDP/SI_GDP_FE)+SI_UNR_2*(SI_UNR(-1)-SI_UNR_FE(-1))+RES_SI_UNR_A ; + SI_UNR = SI_UNR_A/*MAX(SI_UNR_A;0.1)*/ ; + ( log(SI_PGNPNO)-(log(SI_PGNPNO(-1)))) = SI_LAMBDA*(SI_DELTA_PI*( log(SI_PGNPNO(1))-(log(SI_PGNPNO)))+(1-SI_DELTA_PI)*( log(SI_PGNPNO(-1))-(log(SI_PGNPNO(-2)))))+(1-SI_LAMBDA)*( log(SI_PGNPNO(-1))-(log(SI_PGNPNO(-2))))+SI_GAMMA/100*(SI_NLIN-SI_UNR)/(SI_UNR-SI_PHI)+RES_SI_PGNP ; + SI_INFL = SI_MGROW/GREAL ; + SI_DLLF = log(SI_LF/SI_LF(-1)) ; + SI_DLGDP = log(SI_GDP/SI_GDP(-1)) ; + SI_C = SI_C_DI+SI_C_PI ; + SI_MPC = 1/SI_MPCINV ; + SI_MPCINV(1) = SI_MPCINV-1-((1-SI_SIGMA)*(SI_RSR+SI_PROB)-(RES_SI_MPC+SI_PROB))*SI_MPCINV/SI_SIGMA ; + SI_WH1(1) = SI_WH1*(1+SI_RSR+SI_ALPHA1+RES_SI_WH1+SI_PROB+exp(SI_DLLF_SS)-1)-(((1-SI_BETA)*SI_GDP*SI_PGNP-SI_TAXH)/SI_P+RES_SI_WK*SI_WK) ; + SI_WH2(1) = SI_WH2*(1+SI_RSR+SI_ALPHA2+RES_SI_WH2+SI_PROB+exp(SI_DLLF_SS)-1)-(((1-SI_BETA)*SI_GDP*SI_PGNP-SI_TAXH)/SI_P+RES_SI_WK*SI_WK) ; + SI_WH3(1) = SI_WH3*(1+SI_RSR+SI_ALPHA3+RES_SI_WH3+SI_PROB+exp(SI_DLLF_SS)-1)-(((1-SI_BETA)*SI_GDP*SI_PGNP-SI_TAXH)/SI_P+RES_SI_WK*SI_WK) ; + SI_C_DI = (SI_LAMBDA1*SI_BCHI1+SI_LAMBDA2*SI_BCHI2+SI_LAMBDA3*(1-SI_BCHI1-SI_BCHI2))*((1-SI_BETA)*SI_GDP*SI_PGNP-SI_TAXH)/SI_P+RES_SI_C_DI*GREAL^TME ; + SI_C_PI = SI_MPC*(SI_WK+(SI_M+SI_B+SI_NFA/SI_ER)/SI_P+SI_BCHI1*(1-SI_LAMBDA1)*SI_WH1+SI_BCHI2*(1-SI_LAMBDA2)*SI_WH2+(1-SI_BCHI1-SI_BCHI2)*(1-SI_LAMBDA3)*SI_WH3) ; + SI_WH = SI_BCHI1*SI_WH1+SI_BCHI2*SI_WH2+(1-SI_BCHI1-SI_BCHI2)*SI_WH3 ; + ( log(SI_COIL)-(log(SI_COIL(-1)))) = SI_COIL0+SI_COIL1*( log(SI_GDP)-(log(SI_GDP(-1))))+SI_COIL2*( log(POIL/SI_ER/SI_PGNP)-(log(POIL(-1)/SI_ER(-1)/SI_PGNP(-1))))+SI_COIL3*log(POIL(-1)/SI_ER(-1)/SI_PGNP(-1))+SI_COIL4*log(SI_GDP(-1)/SI_COIL(-1))+RES_SI_COIL ; + SI_INVEST/SI_K(-1)-(SI_DELTA_SS+GREAL_SS-1) = SI_K1*(SI_WK/SI_K(-1)-1)+SI_K2*(SI_WK(-1)/SI_K(-2)-1)+RES_SI_K ; + SI_MPK = SI_BETA*SI_GDP/SI_K ; + SI_Q = SI_CHI*(SI_INVEST/SI_K(-1)-(SI_DELTA_SS+GREAL_SS-1))+1 ; + SI_WK(1) = SI_WK*(1+SI_RSR+SI_K/SI_K(-1)-1+SI_DELTA+RES_SI_WK)-(SI_BETA*SI_GDP*SI_PGNP-SI_TAXK)/SI_P+(SI_CHI/2*((SI_Q-1)/SI_CHI)^2+SI_INVEST/SI_K(-1)*(SI_Q-1))*SI_K(-1)*SI_PGNP/SI_P ; + SI_INVEST = ( SI_K-(SI_K(-1)))+SI_DELTA*SI_K(-1) ; + ( log(SI_XM)-(log(SI_XM(-1)))) = SI_XM0+( log(SI_FACT)-(log(SI_FACT(-1))))+SI_XM1*( SI_RCI-(SI_RCI(-1)))+SI_XM2*(SI_XM3*SI_RCI(-1)+log(SI_FACT(-1))-log(SI_XM(-1)))+RES_SI_XM ; + SI_XMA = SI_XM+T08*(WTRADER-TRDER*GREAL^TME)/SI_E96 ; + SI_XT = SI_XMA+SI_XOIL ; + SI_ACT = SI_C_MPROP*SI_C+SI_INVEST_MPROP*SI_INVEST+SI_G_MPROP*SI_G+SI_XT_MPROP*SI_XT ; + ( log(SI_IM)-(log(SI_IM(-1)))) = SI_IM0+( log(SI_ACT)-(log(SI_ACT(-1))))+SI_IM1*( log(SI_PIMA/SI_PGNPNO)-(log(SI_PIMA(-1)/SI_PGNPNO(-1))))+SI_IM2*(SI_IM3*log(SI_PIMA(-1)/SI_PGNPNO(-1))+log(SI_ACT(-1))-log(SI_IM(-1)))+RES_SI_IM ; + SI_IOIL = SI_COIL+SI_XOIL-SI_PRODOIL+RES_SI_IOIL*GREAL^TME ; + ( log(SI_ICOM)-(log(SI_ICOM(-1)))) = SI_IC0+SI_IC2*( log(PCOM/SI_ER/SI_PGNP)-(log(PCOM(-1)/SI_ER(-1)/SI_PGNP(-1))))+SI_IC1*( log(SI_GDP)-(log(SI_GDP(-1))))+SI_IC3*log(PCOM(-1)/SI_ER(-1)/SI_PGNP(-1))+SI_IC4*log(SI_GDP(-1))+SI_IC5*log(SI_ICOM(-1))+RES_SI_ICOM-(SI_IC4+SI_IC5)*log(GREAL^TME) ; + SI_IT = SI_IM+SI_IOIL+SI_ICOM ; + SI_A = SI_C+SI_INVEST+SI_G ; + SI_GDP = SI_A+SI_XT-SI_IT ; + SI_GNP = SI_GDP+(US_R+(SI_PREM(-3)+SI_PREM(-2)+SI_PREM(-1))/3)*SI_NFA(-1)/SI_ER/SI_PGNP+RES_SI_GNP*GREAL^TME ; + SI_W = SI_WH+SI_WK+(SI_M+SI_B+SI_NFA/SI_ER)/SI_P ; + SI_YD = (SI_GDP*SI_PGNP-SI_TAX)/SI_P-SI_DELTA*SI_K(-1) ; + SI_GE = SI_P*SI_G+SI_R*SI_B(-1)+SI_GEXOG ; + SI_TAX = SI_TRATE*SI_PGNP*SI_GNP ; + SI_TAXK = SI_TAXK_ALPHA*SI_TAXK_SHAR*SI_TAX+(1-SI_TAXK_ALPHA)*SI_TRATEK*SI_BETA*SI_GDP*SI_PGNP ; + SI_TAXH = SI_TAX-SI_TAXK ; + SI_TRATE = SI_TRATE_EXOG*(1-SI_TRATE_ALPHA)+SI_TRATE_ALPHA*((SI_TRATE(-2)/5+SI_TRATE(-1)/5+SI_TRATE(0)/5+SI_TRATE(1)/5+SI_TRATE(2)/5)+TAU1*(SI_B(1)/(SI_GNP(1)*SI_PGNP(1))-SI_BT_GDP_RAT(1))+RES_SI_TRATE) ; + SI_BT = SI_BT_GDP_RAT*SI_GNP*SI_PGNP ; + ( SI_B-(SI_B(-1)))+( SI_M-(SI_M(-1))) = SI_R*SI_B(-1)+SI_P*SI_G-SI_TAX ; + SI_GDEF = ( SI_B+SI_M-(SI_B(-1)+SI_M(-1))) ; + log(SI_M/SI_P) = SI_M0+(1-SI_M4)*log(SI_A)+SI_M2*SI_RS+SI_M4*log(SI_M(-1)/SI_P(-1))+RES_SI_M ; + SI_RS = (1-SI_X_RS1)*SI_RS_EXOG+SI_X_RS1*(SI_RS(-1)+SI_RS1*log(SI_MT/SI_M)/SI_M2+SI_RS2*log(GR_ER/SI_ER/SI_PAR)+SI_RS3*log(US_ER/SI_ER/SI_PARUS)+SI_RS4*log(SI_NEER/SI_NEER_PAR)+SI_RS5*(SI_UNR_FE-SI_UNR-SI_UNR_GAP_EXOG)+SI_RS6*100*(log(SI_GDP)-log(SI_GDP_FE)-SI_GDP_GAP_EXOG)+SI_X_RS2*(-SI_RS(-1)+SI_RSCON+100*( log(SI_P(1))-(log(SI_P))))+100*(SI_RTARC1*(( log(SI_P)-(log(SI_P(-1))))-( log(SI_P_TAR)-(log(SI_P_TAR(-1))))-SI_P_GAP_EXOG)+SI_RTARC2*(( log(SI_PGNP)-(log(SI_PGNP(-1))))-( log(SI_PGNP_TAR)-(log(SI_PGNP_TAR(-1))))-SI_PGNP_GAP_EXOG)+SI_RTARC3*(( log(SI_CPI)-(log(SI_CPI(-1))))-( log(SI_CPI_TAR)-(log(SI_CPI_TAR(-1))))-SI_CPI_GAP_EXOG)+SI_RTARC4*(( log(SI_PGNPNO)-(log(SI_PGNPNO(-1))))-( log(SI_PGNPNO_TAR)-(log(SI_PGNPNO_TAR(-1))))-SI_PGNPNO_GAP_EXOG)+SI_RTARF1*(( log(SI_P(1))-(log(SI_P)))-( log(SI_P_TAR(1))-(log(SI_P_TAR)))-SI_P_GAP_EXOG(1))+SI_RTARF2*(( log(SI_PGNP(1))-(log(SI_PGNP)))-( log(SI_PGNP_TAR(1))-(log(SI_PGNP_TAR)))-SI_PGNP_GAP_EXOG(1))+SI_RTARF3*(( log(SI_CPI(1))-(log(SI_CPI)))-( log(SI_CPI_TAR(1))-(log(SI_CPI_TAR)))-SI_CPI_GAP_EXOG(1))+SI_RTARF4*(( log(SI_PGNPNO(1))-(log(SI_PGNPNO)))-( log(SI_PGNPNO_TAR(1))-(log(SI_PGNPNO_TAR)))-SI_PGNPNO_GAP_EXOG(1)))+SI_RSCON2+RES_SI_RS)+SI_RS1PERM*0 ; + SI_RL/100 = ((1+SI_RS/100)*(1+SI_RS(1)/100)*(1+SI_RS(2)/100)*(1+SI_RS(3)/100)*(1+SI_RS(4)/100)*(1+SI_RS(5)/100)*(1+SI_RS(6)/100)*(1+SI_RS(7)/100)*(1+SI_RS(8)/100)*(1+SI_RS(9)/100))^0.1*(1+SI_TPREM)-1+RES_SI_RL ; + SI_R = 0.5*SI_RS(-1)/100+0.5*(SI_RL(-3)/100+SI_RL(-2)/100+SI_RL(-1)/100)/3 ; + SI_RLR = (1+SI_RL/100)/(SI_P(10)/SI_P)^0.1-1 ; + SI_RSR = (1+SI_RS/100)/(SI_P(1)/SI_P)-1 ; + SI_PGNPNO = (SI_GDP*SI_PGNP-SI_PRODOIL*POIL/SI_ER*SI_E96)/(SI_GDP-SI_PRODOIL) ; + SI_PGNP = (SI_P*SI_A+SI_XT*SI_PXT-SI_IT*SI_PIT)/SI_GDP+RES_SI_P*SI_PGNP ; + ( log(SI_PXM)-(log(SI_PXM(-1)))) = SI_PXM0+SI_PXM1*( log(SI_PGNPNO)-(log(SI_PGNPNO(-1))))+(1-SI_PXM1)*( log(SI_PFM)-(log(SI_PFM(-1))))+SI_PXM2*log(SI_PGNPNO(-1)/SI_PXM(-1))+RES_SI_PXM ; + SI_PXT = (SI_XMA*SI_PXM+POIL/SI_ER*SI_E96*SI_XOIL)/SI_XT ; + SI_PIM = (S0108*US_PXM+S0208*JA_PXM*JA_ER/JA_E96+S0308*GR_PXM*GR_ER/GR_E96+S0408*FR_PXM*FR_ER/FR_E96+S0508*IT_PXM*IT_ER/IT_E96+S0608*UK_PXM*UK_ER/UK_E96+S0708*CA_PXM*CA_ER/CA_E96+S0808*SI_PXM*SI_ER/SI_E96+S0908*RW_PXM*RW_ER/RW_E96)/(SI_ER/SI_E96)*(1+RES_SI_PIM) ; + SI_PIMA = SI_PIM+T08*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/SI_ER/SI_IM ; + SI_PIT = (SI_IM*SI_PIMA+SI_IOIL*POIL/SI_ER*SI_E96+SI_ICOM*PCOM/SI_ER*SI_E96)/SI_IT ; + log(SI_TFP_FE) = RES_SI_TFP_FE ; + SI_GDP_FE = SI_TFP_FE*SI_K^SI_BETA*((1-SI_UNR_FE/100)*SI_LF)^(1-SI_BETA) ; + SI_LF = SI_POP*SI_PART/(1+SI_DEM3) ; + SI_CU = 100*SI_GDP/SI_GDP_FE ; + ( SI_NFA-(SI_NFA(-1))) = (SI_XT*SI_PXT-SI_IT*SI_PIT)*SI_ER+(US_R+(SI_PREM(-3)+SI_PREM(-2)+SI_PREM(-1))/3)*SI_NFA(-1)+RES_SI_NFA*US_INFL^TME*GREAL^TME ; + SI_TB = SI_XT*SI_PXT-SI_IT*SI_PIT ; + SI_CURBAL = ( SI_NFA-(SI_NFA(-1))) ; + 1+US_RS/100 = (1+SI_RS/100)*SI_ER(1)/SI_ER-SI_PREM+RES_SI_ER ; + SI_RCI = log(SI_PXM)-log(SI_PFM) ; + SI_FACT = (US_IM*US_E96*S0801+JA_IM*JA_E96*S0802+GR_IM*GR_E96*S0803+FR_IM*FR_E96*S0804+IT_IM*IT_E96*S0805+UK_IM*UK_E96*S0806+CA_IM*CA_E96*S0807+SI_IM*SI_E96*S0808+(HO_IM+DC_IM)*RW_E96*S0809)/SI_E96 ; + log(SI_PFM) = W0801*log(US_PXM*US_ER/US_E96)+W0802*log(JA_PXM*JA_ER/JA_E96)+W0803*log(GR_PXM*GR_ER/GR_E96)+W0804*log(FR_PXM*FR_ER/FR_E96)+W0805*log(IT_PXM*IT_ER/IT_E96)+W0806*log(UK_PXM*UK_ER/UK_E96)+W0807*log(CA_PXM*CA_ER/CA_E96)+W0808*log(SI_ER/SI_E96)+W0809*log(RW_PXM*RW_ER/RW_E96) ; + SI_NEER = exp(-V0801*log(US_ER/US_E96)-V0802*log(JA_ER/JA_E96)-V0803*log(GR_ER/GR_E96)-V0804*log(FR_ER/FR_E96)-V0805*log(IT_ER/IT_E96)-V0806*log(UK_ER/UK_E96)-V0807*log(CA_ER/CA_E96)+log(SI_ER/SI_E96)) ; + ( log(DC_CTOT)-(log(DC_CTOT(-1)))) = DC_C0+DC_C1*( log(DC_GDP+DC_NFA(-1)*US_R/RW_ER/DC_P-DC_DELTA*DC_K(-1)+(DC_DEBT-DC_DEBT(-1))/DC_P/RW_ER)-(log(DC_GDP(-1)+DC_NFA(-2)*US_R(-1)/RW_ER(-1)/DC_P(-1)-DC_DELTA(-1)*DC_K(-2)+(DC_DEBT(-1)-DC_DEBT(-2))/DC_P(-1)/RW_ER(-1))))+DC_C2*log((DC_GDP(-1)+DC_NFA(-2)*US_R(-1)/RW_ER(-1)/DC_P(-1)-DC_DELTA(-1)*DC_K(-2)+( DC_DEBT(-1)-(DC_DEBT(-2)))/DC_P(-1)/RW_ER(-1))/DC_CTOT(-1))+RES_DC_CTOT ; + DC_INVEST = DC_GDP-(DC_XM+DC_XCOM+DC_XOIL)-DC_CTOT+DC_IT ; + DC_INVESTC = PCOM/RW_ER/DC_PXM*DC_KCOMSHR*DC_INVEST ; + DC_KC = DC_KC(-1)*(1-DC_DELTA)+DC_INVESTC ; + DC_K = DC_KC+DC_KM ; + DC_INVESTM = DC_INVEST-DC_INVESTC ; + DC_KM = DC_KM(-1)*(1-DC_DELTA)+DC_INVESTM ; + DC_XM = RW_XM-HO_XM ; + DC_XMA = RW_XMA-HO_XM ; + DC_XCOM = RW_XCOM+HO_ICOM ; + DC_XOIL = DC_XOILSHR*(RW_XOIL-DC_IOIL)+RES_DC_XOIL*GREAL^TME ; + DC_XT = DC_XCOM+DC_XOIL+DC_XMA ; + DC_IOIL = DC_OILSHR*DC_IT ; + DC_IT = DC_IM+DC_IOIL ; + DC_A = DC_CTOT+DC_INVEST ; + DC_GDP = DC_XM+DC_XCOM+DC_XOIL+DC_QNT ; + log(DC_QNT) = log(DC_GDP_FE)+RES_DC_QNT ; + DC_NNPCAP = DC_GDP_FE-DC_DELTA*DC_K(-1) ; + DC_P = (DC_PXM*DC_QNT+DC_PIT*DC_IT)/(DC_CTOT+DC_INVEST) ; + DC_PGNP = (DC_PXM*(DC_QNT+DC_XMA)+PCOM/RW_ER*DC_XCOM+POIL/RW_ER*DC_XOIL)/DC_GDP+RES_DC_PGNP*DC_PGNP ; + ( RW_RCI-(RW_RCI(-1))) = RW_PXM1*RW_RCI(-1)+RW_PXM2*log(DC_XSM/DC_XM)+RES_DC_PXM ; + log(RW_PFM) = W0901*log(US_PXM*US_ER/US_E96)+W0902*log(JA_PXM*JA_ER/JA_E96)+W0903*log(GR_PXM*GR_ER/GR_E96)+W0904*log(FR_PXM*FR_ER/FR_E96)+W0905*log(IT_PXM*IT_ER/IT_E96)+W0906*log(UK_PXM*UK_ER/UK_E96)+W0907*log(CA_PXM*CA_ER/CA_E96)+W0908*log(SI_PXM*SI_ER/SI_E96)+W0909*log(RW_ER/RW_E96) ; + log(DC_XCOM) = RW_XCOM1*log(DC_KC(-1))+(1-RW_XCOM1)*log(1+DC_PROD)*TME+RES_PCOM ; + DC_PXT = (DC_PXM*DC_XMA+PCOM/RW_ER*DC_XCOM+POIL/RW_ER*DC_XOIL)/DC_XT ; + DC_PIM = RW_PIM+RES_DC_PIM*DC_INFL^TME ; + DC_PIMA = RW_PIMA+RES_DC_PIMA*DC_INFL^TME ; + DC_PIT = (DC_PIMA*DC_IM+POIL/RW_ER*DC_IOIL)/DC_IT ; + log(DC_XSM) = RW_XSM1*log(DC_KM(-1))+(1-RW_XSM1)*log(1+DC_PROD)*TME+RES_DC_XSM ; + DC_GDP_FE = exp(RES_DC_GDP_FE+DC_GDP_FE0+log(1+DC_PROD)*TME*(1-DC_BETA)+log(DC_K(-1))*DC_BETA) ; + ( DC_DEBT-(DC_DEBT(-1))) = ((DC_XT(4)*DC_PXT(4)*RW_ER(4)/(DC_XT(-1)*DC_PXT(-1)*RW_ER(-1)))^(1/5)-1)*DC_XT(-1)*DC_PXT(-1)*RW_ER(-1)*DC_DEBT1+DC_DEBT2*(ISR*DC_PXT(-1)*DC_XT(-1)*RW_ER(-1)/US_RRBAR(-1)-DC_DEBT(-1))+DC_DEBT2/10*(ISR*DC_XTNDHIST(-1)/US_RR(-1)-DC_DEBT(-1))+RES_DC_DEBT*US_INFL^TME*GREAL^TME ; + DC_NFA = DC_NFA(-1)-( DC_DEBT-(DC_DEBT(-1)))+RES_DC_NFA*DC_PIT*RW_ER*GREAL^TME ; + ( DC_NFA-(DC_NFA(-1)))/RW_ER = DC_PXM*DC_XMA+PCOM/RW_ER*DC_XCOM+POIL/RW_ER*DC_XOIL-DC_PIT*DC_IT+US_R*DC_NFA(-1)/RW_ER+RES_DC_IT*DC_PIT*GREAL^TME ; + HO_XOIL = RW_XOIL-DC_XOIL ; + HO_XT = HO_XOIL+HO_XM ; + log(HO_ICOM) = HO_IC2*log(PCOM/RW_ER/RW_PXM)+log(HO_GDP)+RES_HO_ICOM ; + HO_IM = HO_IT-HO_IOIL-HO_ICOM ; + HO_IT = HO_A+HO_XT-HO_GDP ; + HO_GDP = HO_XT+HO_QNT ; + ( log(HO_A)-(log(HO_A(-1)))) = HO_A0+HO_A1*log((HO_QNT+HO_XT*HO_PXT/DC_PGNP+0.035*HO_NFA/RW_ER/DC_PGNP)/HO_A(-1))+RES_HO_IM ; + HO_PXT = (RW_PXM*HO_XM+POIL/RW_ER*HO_XOIL)/HO_XT*(1+RES_HO_PXT) ; + HO_PIT = (RW_PIMA*HO_IM+POIL/RW_ER*HO_IOIL+PCOM/RW_ER*HO_ICOM)/HO_IT*(1+RES_HO_PIT) ; + 0 = HO_NFA+JA_NFA+CA_NFA+US_NFA+UK_NFA+IT_NFA+FR_NFA+GR_NFA+SI_NFA+DC_NFA ; + ( log(RW_XM)-(log(RW_XM(-1)))) = RW_XM0+( log(RW_FACT)-(log(RW_FACT(-1))))+RW_XM1*( RW_RCI-(RW_RCI(-1)))+RW_XM2*(RW_XM3*RW_RCI(-1)+log(RW_FACT(-1))-log(RW_XM(-1)))+RES_RW_XM ; + RW_XMA = RW_XM+T09*(WTRADER-TRDER*GREAL^TME)/RW_E96 ; + RW_XCOM = US_ICOM+JA_ICOM*JA_E96+GR_ICOM*GR_E96+CA_ICOM*CA_E96+FR_ICOM*FR_E96+IT_ICOM*IT_E96+UK_ICOM*UK_E96+SI_ICOM*SI_E96 ; + RW_XOIL = -(US_XOIL-US_IOIL+(JA_XOIL-JA_IOIL)*JA_E96+(GR_XOIL-GR_IOIL)*GR_E96+(FR_XOIL-FR_IOIL)*FR_E96+(IT_XOIL-IT_IOIL)*IT_E96+(UK_XOIL-UK_IOIL)*UK_E96+(CA_XOIL-CA_IOIL)*CA_E96+(SI_XOIL-SI_IOIL)*SI_E96)/RW_E96+DC_IOIL+HO_IOIL ; + RW_IM = DC_IM+HO_IM ; + RW_PXM = DC_PXM+RES_RW_PXM*RW_INFL^TME ; + RW_PIM = (S0109*US_PXM+S0209*JA_PXM*JA_ER/JA_E96+S0309*GR_PXM*GR_ER/GR_E96+S0409*FR_PXM*FR_ER/FR_E96+S0509*IT_PXM*IT_ER/IT_E96+S0609*UK_PXM*UK_ER/UK_E96+S0709*CA_PXM*CA_ER/CA_E96+S0809*SI_PXM*SI_ER/SI_E96+S0909*RW_PXM*RW_ER/RW_E96)/(RW_ER/RW_E96)*(1+RES_RW_PIM) ; + RW_RCI = log(RW_PXM)-log(RW_PFM) ; + RW_NEER = exp(-(W0902*log(JA_ER/JA_E96)+W0903*log(GR_ER/GR_E96)+W0904*log(FR_ER/FR_E96)+W0905*log(IT_ER/IT_E96)+W0906*log(UK_ER/UK_E96)+W0907*log(CA_ER/CA_E96)+W0908*log(SI_ER/SI_E96)+W0909*log(RW_ER/RW_E96))) ; + RW_FACT = (US_IM*US_E96*S0901+JA_IM*JA_E96*S0902+GR_IM*GR_E96*S0903+FR_IM*FR_E96*S0904+IT_IM*IT_E96*S0905+UK_IM*UK_E96*S0906+CA_IM*CA_E96*S0907+SI_IM*SI_E96*S0908+(HO_IM+DC_IM)*RW_E96*S0909)/RW_E96 ; + RW_PIMA = RW_PIM+T09*(WTRADE-TRDE*GREAL^TME*US_INFL^TME)/RW_ER/RW_IM ; + WTRADE-TRDE*GREAL^TME*US_INFL^TME = US_XMA*US_PXM-US_IM*US_PIM+(JA_XMA*JA_PXM-JA_IM*JA_PIM)*JA_ER+(GR_XMA*GR_PXM-GR_IM*GR_PIM)*GR_ER+(FR_XMA*FR_PXM-FR_IM*FR_PIM)*FR_ER+(IT_XMA*IT_PXM-IT_IM*IT_PIM)*IT_ER+(UK_XMA*UK_PXM-UK_IM*UK_PIM)*UK_ER+(CA_XMA*CA_PXM-CA_IM*CA_PIM)*CA_ER+(SI_XMA*SI_PXM-SI_IM*SI_PIM)*SI_ER+(RW_XMA*RW_PXM-RW_IM*RW_PIM)*RW_ER+RES_WTRADE*GREAL^TME*US_INFL^TME ; + WTRADER-TRDER*GREAL^TME = US_IM-US_XM+(JA_IM-JA_XM)*JA_E96+(GR_IM-GR_XM)*GR_E96+(FR_IM-FR_XM)*FR_E96+(IT_IM-IT_XM)*IT_E96+(UK_IM-UK_XM)*UK_E96+(CA_IM-CA_XM)*CA_E96+(SI_IM-SI_XM)*SI_E96+(RW_IM-RW_XM)*RW_E96+RES_WTRADER*GREAL^TME ; + POIL = RPOIL*US_PGNP^US_WT*(JA_PGNP*JA_ER/JA_E96)^JA_WT*(GR_PGNP*GR_ER/GR_E96)^GR_WT*(FR_PGNP*FR_ER/FR_E96)^FR_WT*(IT_PGNP*IT_ER/IT_E96)^IT_WT*(UK_PGNP*UK_ER/UK_E96)^UK_WT*(SI_PGNP*SI_ER/SI_E96)^SI_WT*(CA_PGNP*CA_ER/CA_E96)^CA_WT ; +end; + +initval; +CA_A=1258.37060606; +CA_ACT=349.585896649; +CA_ALPHA1=0.078; +CA_ALPHA2=0.121; +CA_ALPHA3=0.0911709766895; +CA_B=809.80955381; +CA_BCHI1=21.2121212121; +CA_BCHI2=5.91549295775; +CA_BETA=0.33; +CA_BT=809.80955381; +CA_BT_GDP_RAT=0.419976226386; +CA_C=905.688246476; +CA_COIL=24.7443625907; +CA_CPI=1.57958629296; +CA_CPI_GAP_EXOG=0; +CA_CPI_TAR=1.57958629296; +CA_CU=100; +CA_CURBAL=-18.4203759425; +CA_C_DI=693.928200938; +CA_C_PI=211.760045538; +CA_DELTA=0.025734401231; +CA_DELTA_SS=0.025734401231; +CA_DEM3=0.50966182372; +CA_DLGDP=0.0217614806134; +CA_DLLF=0.00144378024362; +CA_DLLF_SS=0; +CA_ER=0.74786657095; +CA_FACT=575.428338476; +CA_G=236.225701292; +CA_GDEF=42.179502634; +CA_GDP=1267.73017149; +CA_GDP_FE=1267.73017149; +CA_GDP_GAP_EXOG=8.881784197e-016; +CA_GE=423.620066068; +CA_GEXOG=0; +CA_GNP=1247.17158457; +CA_ICOM=7.85769143591; +CA_IM=511.06232766; +CA_INFL=1.0270000062; +CA_INVEST=116.456658295; +CA_IOIL=10.1521707873; +CA_IT=529.072189883; +CA_K=2493.27232399; +CA_LAMBDA=1; +CA_LAMBDA1=0.998452603746; +CA_LAMBDA2=0.999906905629; +CA_LAMBDA3=0.999345807356; +CA_LF=17618.8512388; +CA_M=82.8661220161; +CA_MGROW=1.04959399462; +CA_MPC=0.0754183988398; +CA_MPCINV=13.2593639667; +CA_MPK=0.167791922513; +CA_MT=82.8661220161; +CA_NEER=1.03344502186; +CA_NEER_PAR=1.03344502186; +CA_NFA=-389.843893754; +CA_NLIN=8.61938667297; +CA_P=1.54744635591; +CA_PAR=0.741890628438; +CA_PART=0.802174651456; +CA_PARUS=1.33713691565; +CA_PFM=1.35746485675; +CA_PGNP=1.54608006964; +CA_PGNPNO=1.55124422251; +CA_PGNPNO_GAP_EXOG=0; +CA_PGNPNO_TAR=1.55124422251; +CA_PGNP_GAP_EXOG=0; +CA_PGNP_TAR=1.54608006964; +CA_PHI=4.61938697849; +CA_PIM=1.36171164077; +CA_PIMA=1.36171164077; +CA_PIT=1.36238623326; +CA_POP=33158; +CA_PREM=0; +CA_PROB=0.021; +CA_PRODOIL=31.8549893389; +CA_PXM=1.36287943551; +CA_PXT=1.36238623326; +CA_P_GAP_EXOG=0; +CA_P_TAR=1.54744635591; +CA_Q=1.00001954084; +CA_R=0.0752690064927; +CA_RCI=0.00398080928473; +CA_RL=8.04040065237; +CA_RLR=0.052; +CA_RS=7.01340064617; +CA_RSCON=4.34920694771; +CA_RSCON2=0; +CA_RSR=0.042; +CA_RS_EXOG=7.01340064617; +CA_SIGMA=2.46201848984; +CA_TAX=381.440563434; +CA_TAXH=255.565177501; +CA_TAXK=125.875385933; +CA_TAXK_ALPHA=0; +CA_TAXK_SHAR=0.33; +CA_TB=12.7513430893; +CA_TFP_FE=0.145718808234; +CA_TPREM=0.00959692898273; +CA_TRATE=0.19781931155; +CA_TRATEK=0.194611305933; +CA_TRATE_ALPHA=1; +CA_TRATE_EXOG=0.19781931155; +CA_UNR=8.61938697848; +CA_UNR_A=8.61938697848; +CA_UNR_FE=8.61938697849; +CA_UNR_GAP_EXOG=0; +CA_W=17287.6390819; +CA_WH=14607.985195; +CA_WH1=7183.72844482; +CA_WH2=5276.9364611; +CA_WH3=6467.8624197; +CA_WK=2439.64491168; +CA_XM=522.949752064; +CA_XMA=522.949752064; +CA_XOIL=15.4820032481; +CA_XT=538.431755312; +CA_X_RS1=1; +CA_X_RS2=0; +CA_YD=957.332488133; +DC_A=11536.0772211; +DC_BETA=0.393728; +DC_CTOT=8912.56873925; +DC_DEBT=4375.0594787; +DC_DELTA=0.09; +DC_GDP=11588.0236257; +DC_GDP_FE=11589.3955919; +DC_IM=2196.74507138; +DC_INFL=1.0270000062; +DC_INVEST=2623.5084819; +DC_INVESTC=66.9128177073; +DC_INVESTM=2556.59566419; +DC_IOIL=723.068926272; +DC_IT=2919.81399765; +DC_K=23256.8531664; +DC_KC=615.953408725; +DC_KCOMSHR=0.0267156084709; +DC_KM=22640.8997576; +DC_NFA=-3138.05919175; +DC_NNPCAP=9548.73512857; +DC_OILSHR=0.247642119277; +DC_P=1.5121496198; +DC_PGNP=1.60264450124; +DC_PIM=1.50779607912; +DC_PIMA=1.50779607912; +DC_PIT=1.47422355167; +DC_PROD=0.0219999885862; +DC_PXM=1.52500171841; +DC_PXT=1.47428483631; +DC_QNT=8616.26322349; +DC_XCOM=309.581102136; +DC_XM=1815.66020781; +DC_XMA=1815.66020781; +DC_XOIL=846.519092264; +DC_XOILSHR=0.909129264415; +DC_XSM=1815.66020781; +DC_XT=2971.76040221; +DC_XTNDHIST=4381.22129813; +FR_A=12428.3120854; +FR_ACT=2554.65167678; +FR_ALPHA1=0.078; +FR_ALPHA2=0.121; +FR_ALPHA3=0.0911709766895; +FR_B=8164.71454206; +FR_BCHI1=21.2121212121; +FR_BCHI2=5.91549295775; +FR_BETA=0.31; +FR_BT=8164.71454206; +FR_BT_GDP_RAT=0.42246434571; +FR_C=8559.94267961; +FR_COIL=115.462535562; +FR_CPI=1.55308652521; +FR_CPI_GAP_EXOG=0; +FR_CPI_TAR=1.55308652521; +FR_CU=100; +FR_CURBAL=25.8977049485; +FR_C_DI=5759.91516804; +FR_C_PI=2800.02751158; +FR_DELTA=0.0277164109602; +FR_DELTA_SS=0.0277164109602; +FR_DEM3=0.550387627392; +FR_DLGDP=0.0217614806135; +FR_DLLF=-0.00310730457315; +FR_DLLF_SS=0; +FR_ER=0.164628446102; +FR_FACT=3378.539512; +FR_G=2594.67863751; +FR_GDEF=421.959988213; +FR_GDP=12373.9712324; +FR_GDP_FE=12373.9712324; +FR_GDP_GAP_EXOG=0; +FR_GE=4594.93602206; +FR_GEXOG=0; +FR_GNP=12505.3276835; +FR_ICOM=87.5752466318; +FR_IM=3083.11857811; +FR_INFL=1.0270000062; +FR_INVEST=1273.69076828; +FR_IOIL=124.906863476; +FR_IT=3295.60068822; +FR_K=26180.57806; +FR_LAMBDA=0.752518355846; +FR_LAMBDA1=0.95979954587; +FR_LAMBDA2=0.990046224521; +FR_LAMBDA3=0.97378573951; +FR_LF=26401.37859; +FR_M=765.533425034; +FR_MGROW=1.04959399462; +FR_MPC=0.0537747019055; +FR_MPCINV=18.5961049446; +FR_MPK=0.146518196552; +FR_MT=765.533425034; +FR_NEER=0.944128414683; +FR_NEER_PAR=0.944128414683; +FR_NFA=548.092078464; +FR_NLIN=9.10357761383; +FR_P=1.54524876208; +FR_PAR=3.37022679523; +FR_PART=0.664648383729; +FR_PARUS=6.07428438813; +FR_PFM=1.58646640137; +FR_PGNP=1.5454532315; +FR_PGNPNO=1.54542290009; +FR_PGNPNO_GAP_EXOG=0; +FR_PGNPNO_TAR=1.54542290009; +FR_PGNP_GAP_EXOG=0; +FR_PGNP_TAR=1.5454532315; +FR_PHI=5.10357726511; +FR_PIM=1.48685752168; +FR_PIMA=1.48685752168; +FR_PIT=1.49868897023; +FR_POP=61585; +FR_PREM=0; +FR_PROB=0.021; +FR_PRODOIL=4.46861579712; +FR_PXM=1.49797486646; +FR_PXT=1.49868897023; +FR_P_GAP_EXOG=0; +FR_P_TAR=1.54524876208; +FR_Q=1.00005197187; +FR_R=0.0752690064927; +FR_RCI=-0.0573950470952; +FR_RL=8.04040065237; +FR_RLR=0.052; +FR_RS=7.01340064617; +FR_RSCON=4.34920694771; +FR_RSCON2=0; +FR_RSR=0.042; +FR_RS_EXOG=7.01340064617; +FR_SIGMA=2.46201848984; +FR_TAX=4172.97603385; +FR_TAXH=2879.35346336; +FR_TAXK=1293.62257049; +FR_TAXK_ALPHA=0; +FR_TAXK_SHAR=0.31; +FR_TB=-81.4400370019; +FR_TFP_FE=0.501898498749; +FR_TPREM=0.00959692898273; +FR_TRATE=0.215921031988; +FR_TRATEK=0.218213151465; +FR_TRATE_ALPHA=1; +FR_TRATE_EXOG=0.215921031988; +FR_UNR=9.1035772651; +FR_UNR_A=9.1035772651; +FR_UNR_FE=9.10357726511; +FR_UNR_GAP_EXOG=0; +FR_W=168360.064296; +FR_WH=134808.153404; +FR_WH1=66294.232454; +FR_WH2=48697.6164374; +FR_WH3=59687.9431099; +FR_WK=25618.2270584; +FR_XM=3223.65007818; +FR_XMA=3223.65007818; +FR_XOIL=17.6097570464; +FR_XT=3241.25983523; +FR_X_RS1=1; +FR_X_RS2=0; +FR_YD=8965.07961638; +GREAL=1.02199998859; +GREAL_SS=1.02199998859; +GR_A=5547.54704742; +GR_ACT=1244.30607441; +GR_ALPHA1=0.078; +GR_ALPHA2=0.121; +GR_ALPHA3=0.0911709766895; +GR_B=2836.64063958; +GR_BCHI1=21.2121212121; +GR_BCHI2=5.91549295775; +GR_BETA=0.31; +GR_BT=2836.64063958; +GR_BT_GDP_RAT=0.327321201968; +GR_C=3764.15898979; +GR_COIL=47.8884655943; +GR_CPI=1.57327094041; +GR_CPI_GAP_EXOG=0; +GR_CPI_TAR=1.57327094041; +GR_CU=100; +GR_CURBAL=32.7810545775; +GR_C_DI=2362.84340677; +GR_C_PI=1401.31558301; +GR_DELTA=0.027325658516; +GR_DELTA_SS=0.027325658516; +GR_DEM3=0.517911346568; +GR_DLGDP=0.0217614806135; +GR_DLLF=-0.00533289129889; +GR_DLLF_SS=0; +GR_ER=0.55483520031; +GR_FACT=1752.82324912; +GR_G=1147.43001864; +GR_GDEF=171.997485885; +GR_GDP=5527.29510412; +GR_GDP_FE=5527.29510412; +GR_GDP_GAP_EXOG=0; +GR_GE=1986.46344565; +GR_GEXOG=0; +GR_GNP=5576.35538713; +GR_ICOM=51.2036719786; +GR_IM=1545.57558691; +GR_INFL=1.0270000062; +GR_INVEST=635.958039002; +GR_IOIL=41.791347602; +GR_IT=1638.57060649; +GR_K=13176.1632314; +GR_LAMBDA=0.743550360203; +GR_LAMBDA1=0.946223644928; +GR_LAMBDA2=0.984891127527; +GR_LAMBDA3=0.963549035564; +GR_LF=35257.118086; +GR_M=803.468000031; +GR_MGROW=1.04959399462; +GR_MPC=0.0534792245595; +GR_MPCINV=18.6988500345; +GR_MPK=0.130042520891; +GR_MT=803.468000031; +GR_NEER=0.925708703761; +GR_NEER_PAR=0.925708703761; +GR_NFA=693.76944302; +GR_NLIN=8.52112674713; +GR_P=1.55394301397; +GR_PAR=1; +GR_PART=0.688368121295; +GR_PARUS=1.80233698122; +GR_PFM=1.61278488747; +GR_PGNP=1.554102787; +GR_PGNPNO=1.55407854318; +GR_PGNPNO_GAP_EXOG=0; +GR_PGNPNO_TAR=1.55407854318; +GR_PGNP_GAP_EXOG=0; +GR_PGNP_TAR=1.554102787; +GR_PHI=4.52112647046; +GR_PIM=1.49899942983; +GR_PIMA=1.49899942983; +GR_PIT=1.51033669586; +GR_POP=77745; +GR_PREM=0; +GR_PROB=0.021; +GR_PRODOIL=1.49721926483; +GR_PXM=1.5099118411; +GR_PXT=1.51033669586; +GR_P_GAP_EXOG=0; +GR_P_TAR=1.55394301397; +GR_Q=1.00002519661; +GR_R=0.0752690064927; +GR_RCI=-0.0659111627379; +GR_RL=8.04040065237; +GR_RLR=0.052; +GR_RS=7.01340064617; +GR_RSCON=4.34920694771; +GR_RSCON2=0; +GR_RSR=0.042; +GR_RS_EXOG=7.01340064617; +GR_SIGMA=2.46201848984; +GR_TAX=1814.46595976; +GR_TAXH=1251.98151224; +GR_TAXK=562.484447526; +GR_TAXK_ALPHA=0; +GR_TAXK_SHAR=0.31; +GR_TB=-30.5872531417; +GR_TFP_FE=0.22618636237; +GR_TPREM=0.00959692898273; +GR_TRATE=0.20937201935; +GR_TRATEK=0.211230405835; +GR_TRATE_ALPHA=1; +GR_TRATE_EXOG=0.20937201935; +GR_UNR=8.52112647046; +GR_UNR_A=8.52112647046; +GR_UNR_FE=8.52112647046; +GR_UNR_GAP_EXOG=0; +GR_W=75273.9837207; +GR_WH=59233.9926595; +GR_WH1=29129.3366121; +GR_WH2=21397.4762042; +GR_WH3=26226.5678653; +GR_WK=12892.8261271; +GR_XM=1613.17493703; +GR_XMA=1613.17493703; +GR_XOIL=5.14372615061; +GR_XT=1618.31866318; +GR_X_RS1=1; +GR_X_RS2=0; +GR_YD=4007.91448996; +HO_A=429.071306821; +HO_GDP=417.235790092; +HO_ICOM=9.8632080102; +HO_IM=183.858899853; +HO_IOIL=0.122354153306; +HO_IT=193.844462017; +HO_NFA=719.347820924; +HO_PIT=1.48676053562; +HO_PXT=1.48676053562; +HO_QNT=235.226844805; +HO_XM=97.3963213053; +HO_XOIL=84.6126239818; +HO_XT=182.008945287; +IT_A=2882.89903126; +IT_ACT=585.122270907; +IT_ALPHA1=0.078; +IT_ALPHA2=0.121; +IT_ALPHA3=0.0911709766895; +IT_B=4162.90203487; +IT_BCHI1=21.2121212121; +IT_BCHI2=5.91549295775; +IT_BETA=0.33; +IT_BT=4162.90203487; +IT_BT_GDP_RAT=0.893355068859; +IT_C=2085.39820473; +IT_COIL=32.313444431; +IT_CPI=1.57442961175; +IT_CPI_GAP_EXOG=0; +IT_CPI_TAR=1.57442961175; +IT_CU=100; +IT_CURBAL=22.5845089076; +IT_C_DI=1291.08423915; +IT_C_PI=794.313965584; +IT_DELTA=0.0228725129802; +IT_DELTA_SS=0.0228725129802; +IT_DEM3=0.549666865555; +IT_DLGDP=0.0217614806135; +IT_DLLF=-0.00734415718949; +IT_DLLF_SS=0; +IT_ER=0.56895200396; +IT_FACT=866.589830511; +IT_G=505.458099941; +IT_GDEF=217.885990105; +IT_GDP=2869.00970783; +IT_GDP_FE=2869.00970783; +IT_GDP_GAP_EXOG=0; +IT_GE=1110.16464714; +IT_GEXOG=0; +IT_GNP=2900.89911415; +IT_ICOM=27.9359136154; +IT_IM=746.307923056; +IT_INFL=1.0270000062; +IT_INVEST=292.042726587; +IT_IOIL=40.5418920294; +IT_IT=814.785728701; +IT_K=6651.22322272; +IT_LAMBDA=0.911613047123; +IT_LAMBDA1=0.96192072127; +IT_LAMBDA2=0.990790836676; +IT_LAMBDA3=0.975347367544; +IT_LF=21512.1047038; +IT_M=448.378594908; +IT_MGROW=1.04959399462; +IT_MPC=0.0560882113769; +IT_MPCINV=17.8290584679; +IT_MPK=0.142345726775; +IT_MT=448.378594908; +IT_NEER=0.993697877386; +IT_NEER_PAR=0.993697877386; +IT_NFA=477.972486476; +IT_NLIN=9.6763048172; +IT_P=1.60573655135; +IT_PAR=0.975188058832; +IT_PART=0.594839602944; +IT_PARUS=1.75761750208; +IT_PFM=1.5102439297; +IT_PGNP=1.60634734372; +IT_PGNPNO=1.60637099427; +IT_PGNPNO_GAP_EXOG=0; +IT_PGNPNO_TAR=1.60637099427; +IT_PGNP_GAP_EXOG=0; +IT_PGNP_TAR=1.60634734372; +IT_PHI=5.67630449384; +IT_PIM=1.46833347211; +IT_PIMA=1.46833347211; +IT_PIT=1.4795699128; +IT_POP=56043; +IT_PREM=0; +IT_PROB=0.021; +IT_PRODOIL=1.56977411787; +IT_PXM=1.4786793971; +IT_PXT=1.4795699128; +IT_P_GAP_EXOG=0; +IT_P_TAR=1.60573655135; +IT_Q=1.00002007572; +IT_R=0.0752690064927; +IT_RCI=-0.0211217904449; +IT_RL=8.04040065237; +IT_RLR=0.052; +IT_RS=7.01340064617; +IT_RSCON=4.34920694771; +IT_RSCON2=0; +IT_RSR=0.042; +IT_RS_EXOG=7.01340064617; +IT_SIGMA=2.46201848984; +IT_TAX=892.278657033; +IT_TAXH=597.826700212; +IT_TAXK=294.451956821; +IT_TAXK_ALPHA=0; +IT_TAXK_SHAR=0.33; +IT_TB=-20.5502250652; +IT_TFP_FE=0.210324484098; +IT_TPREM=0.00959692898273; +IT_TRATE=0.191482205062; +IT_TRATEK=0.193610554027; +IT_TRATE_ALPHA=1; +IT_TRATE_EXOG=0.191482205062; +IT_UNR=9.67630449384; +IT_UNR_A=9.67630449384; +IT_UNR_FE=9.67630449384; +IT_UNR_GAP_EXOG=0; +IT_W=42237.362887; +IT_WH=32334.2602264; +IT_WH1=15900.9296512; +IT_WH2=11680.3128189; +IT_WH3=14316.3854423; +IT_WK=6508.16627893; +IT_XM=792.45269194; +IT_XMA=792.45269194; +IT_XOIL=8.44371332531; +IT_XT=800.896405265; +IT_X_RS1=1; +IT_X_RS2=0; +IT_YD=2165.56404681; +JA_A=783.056146905; +JA_ACT=63.5182611397; +JA_ALPHA1=0.078; +JA_ALPHA2=0.121; +JA_ALPHA3=0.0911709766895; +JA_B=259.101105567; +JA_BCHI1=21.2121212121; +JA_BCHI2=5.91549295775; +JA_BETA=0.43; +JA_BT=259.101105567; +JA_BT_GDP_RAT=0.22710463859; +JA_C=543.440832231; +JA_COIL=6.60124352681; +JA_CPI=1.46659153746; +JA_CPI_GAP_EXOG=0; +JA_CPI_TAR=1.46659153746; +JA_CU=100; +JA_CURBAL=151.027332837; +JA_C_DI=163.365868119; +JA_C_PI=380.074964113; +JA_DELTA=0.0353191039248; +JA_DELTA_SS=0.0353191039248; +JA_DEM3=0.638269939189; +JA_DLGDP=0.0217614806135; +JA_DLLF=-0.0101586915738; +JA_DLLF_SS=0; +JA_ER=9.25925280899; +JA_FACT=99.1282294501; +JA_G=133.195640388; +JA_GDEF=18.4718577163; +JA_GDP=775.773443241; +JA_GDP_FE=775.773443241; +JA_GDP_GAP_EXOG=0; +JA_GE=210.49870329; +JA_GEXOG=0; +JA_GNP=790.355189354; +JA_ICOM=8.10471508424; +JA_IM=73.6209617483; +JA_INFL=1.0270000062; +JA_INVEST=106.419674286; +JA_IOIL=6.25649765204; +JA_IT=87.9821744845; +JA_K=1897.42378099; +JA_LAMBDA=1; +JA_LAMBDA1=0.781339016115; +JA_LAMBDA2=0.887019030794; +JA_LAMBDA3=0.82137824171; +JA_LF=62800.2277851; +JA_M=131.832334634; +JA_MGROW=1.04959399462; +JA_MPC=0.0606503031206; +JA_MPCINV=16.4879637619; +JA_MPK=0.175808158375; +JA_MT=131.832334634; +JA_NEER=1.06586189299; +JA_NEER_PAR=1.06586189299; +JA_NFA=3196.30194739; +JA_NLIN=2.62369418144; +JA_P=1.44087235439; +JA_PAR=0.059922243377; +JA_PART=0.808249735683; +JA_PARUS=0.108000075236; +JA_PFM=1.33811031428; +JA_PGNP=1.44351384028; +JA_PGNPNO=1.44351605851; +JA_PGNPNO_GAP_EXOG=0; +JA_PGNPNO_TAR=1.44351605851; +JA_PGNP_GAP_EXOG=0; +JA_PGNP_TAR=1.44351384028; +JA_PHI=0; +JA_PIM=1.11076764325; +JA_PIMA=1.11076764325; +JA_PIT=1.15949407771; +JA_POP=127292; +JA_PREM=0; +JA_PROB=0.021; +JA_PRODOIL=0.0212147508622; +JA_PXM=1.15875219126; +JA_PXT=1.15949407771; +JA_P_GAP_EXOG=0; +JA_P_TAR=1.44087235439; +JA_Q=1.00001538804; +JA_R=0.0752690064927; +JA_RCI=-0.143914676498; +JA_RL=8.04040065237; +JA_RLR=0.052; +JA_RS=7.01340064617; +JA_RSCON=4.34920694771; +JA_RSCON2=0; +JA_RSR=0.042; +JA_RS_EXOG=7.01340064617; +JA_SIGMA=2.46201848984; +JA_TAX=192.026845573; +JA_TAXH=109.455301977; +JA_TAXK=82.5715435966; +JA_TAXK_ALPHA=0; +JA_TAXK_SHAR=0.43; +JA_TB=-8.44425176742; +JA_TFP_FE=0.0564765253676; +JA_TPREM=0.00959692898273; +JA_TRATE=0.16831339746; +JA_TRATEK=0.171477083005; +JA_TRATE_ALPHA=1; +JA_TRATE_EXOG=0.16831339746; +JA_UNR=2.62369409684; +JA_UNR_A=2.62369409684; +JA_UNR_FE=2.62369409684; +JA_UNR_GAP_EXOG=0; +JA_W=10917.9054016; +JA_WH=8550.40523148; +JA_WH1=4204.80911339; +JA_WH2=3088.71788415; +JA_WH3=3785.79550374; +JA_WK=1856.60530237; +JA_XM=80.4054846447; +JA_XMA=80.4054846447; +JA_XOIL=0.29398617645; +JA_XT=80.6994708212; +JA_X_RS1=1; +JA_X_RS2=0; +JA_YD=578.351766744; +PCOM=1.45590188668; +POIL=1.37222734974; +RES_CA_COIL=-0.0109079988152; +RES_CA_CPI=1.45716771982e-016; +RES_CA_C_DI=6.37971312724; +RES_CA_ER=2.22044604925e-016; +RES_CA_GNP=1.07016091968; +RES_CA_ICOM=0.33019785665; +RES_CA_IM=0.00235525414693; +RES_CA_IOIL=0.526458158973; +RES_CA_K=1.71000399694e-008; +RES_CA_M=-0.550565119176; +RES_CA_MPC=0.0725757835938; +RES_CA_NFA=-1.35976046915e-015; +RES_CA_P=-3.22528117171e-016; +RES_CA_PGNP=1.35421873758e-009; +RES_CA_PIM=0.0236040516254; +RES_CA_PXM=0.00836005025292; +RES_CA_RL=4.02455846427e-016; +RES_CA_RS=-1.41372510865e-025; +RES_CA_TFP_FE=-1.92607648534; +RES_CA_TRATE=-2.51618067138e-017; +RES_CA_UNR_A=5.67903297341e-014; +RES_CA_WH1=-2.98068141344e-007; +RES_CA_WH2=-4.05773425957e-007; +RES_CA_WH3=-3.31058461917e-007; +RES_CA_WK=0.0702500610208; +RES_CA_XM=0.00527196299678; +RES_DC_CTOT=0.422387255093; +RES_DC_DEBT=32.1888401163; +RES_DC_GDP_FE=0.931068718221; +RES_DC_IT=-3.51105481552e-014; +RES_DC_NFA=11.720990544; +RES_DC_PGNP=0.0565622498116; +RES_DC_PIM=0.000335349354246; +RES_DC_PIMA=0.000335349354246; +RES_DC_PXM=0.0667624996576; +RES_DC_QNT=-0.296439016955; +RES_DC_XOIL=194.336977011; +RES_DC_XSM=2.77221679942; +RES_FR_COIL=-0.0167592386654; +RES_FR_CPI=-1.38777878078e-016; +RES_FR_C_DI=176.647308119; +RES_FR_ER=2.22044604925e-016; +RES_FR_GNP=-6.83765577133; +RES_FR_ICOM=-0.146270714655; +RES_FR_IM=0.0188358301561; +RES_FR_IOIL=-1.09289296157; +RES_FR_K=4.02123033244e-008; +RES_FR_M=-0.750716274859; +RES_FR_MPC=0.0192892161783; +RES_FR_NFA=-2.9084127087e-015; +RES_FR_P=1.42177072593e-016; +RES_FR_PGNP=-9.91177872979e-010; +RES_FR_PIM=-0.0589379247028; +RES_FR_PXM=0.00111629219566; +RES_FR_RL=1.80411241502e-016; +RES_FR_RS=-1.0504879353e-025; +RES_FR_TFP_FE=-0.689357373461; +RES_FR_TRATE=-1.02390673979e-017; +RES_FR_UNR_A=-1.22338250303e-014; +RES_FR_WH1=-1.05051439415e-006; +RES_FR_WH2=-1.43011199597e-006; +RES_FR_WH3=-1.16678581671e-006; +RES_FR_WK=0.0473543323484; +RES_FR_XM=0.00458843620038; +RES_GR_COIL=-0.0599808385464; +RES_GR_CPI=-2.01227923213e-016; +RES_GR_C_DI=56.1113704318; +RES_GR_ER=2.22044604925e-016; +RES_GR_GNP=-2.55379408086; +RES_GR_ICOM=0.0122241574252; +RES_GR_IM=0.0111511469269; +RES_GR_IOIL=-2.88051845816; +RES_GR_K=2.00019476797e-008; +RES_GR_M=-0.582712538577; +RES_GR_MPC=0.0185606904822; +RES_GR_NFA=-2.24957186463e-015; +RES_GR_P=1.41759807568e-016; +RES_GR_PGNP=-5.67002899152e-010; +RES_GR_PIM=-0.0621848991172; +RES_GR_PXM=0.0020074176271; +RES_GR_RL=1.80411241502e-016; +RES_GR_RS=2.83313491133e-025; +RES_GR_TFP_FE=-1.48639600726; +RES_GR_TRATE=-2.93586865643e-017; +RES_GR_UNR_A=-1.00673945799e-014; +RES_GR_WH1=-5.67239752245e-007; +RES_GR_WH2=-7.7220871869e-007; +RES_GR_WH3=-6.30022112363e-007; +RES_GR_WK=0.0355104120004; +RES_GR_XM=-0.0095654330276; +RES_HO_ICOM=-3.79494263097; +RES_HO_IM=0.021778181942; +RES_HO_PIT=-0.0112362204049; +RES_HO_PXT=0.0213732250159; +RES_IT_COIL=-0.027413074423; +RES_IT_CPI=-4.85722573274e-017; +RES_IT_C_DI=23.2453468402; +RES_IT_ER=4.4408920985e-016; +RES_IT_GNP=-1.6599777279; +RES_IT_ICOM=0.172465314805; +RES_IT_IM=0.0787416293833; +RES_IT_IOIL=0.400434794101; +RES_IT_K=2.04877417533e-008; +RES_IT_M=-0.599367064131; +RES_IT_MPC=0.024983903402; +RES_IT_NFA=5.20512673071e-017; +RES_IT_P=-4.03009782146e-017; +RES_IT_PGNP=-1.86335704269e-009; +RES_IT_PIM=-0.0394139247307; +RES_IT_PXM=-0.00346055065303; +RES_IT_RL=1.80411241502e-016; +RES_IT_RS=-9.56044004053e-026; +RES_IT_TFP_FE=-1.55910377843; +RES_IT_TRATE=5.12930108144e-017; +RES_IT_UNR_A=-2.49703172526e-015; +RES_IT_WH1=-2.80708934474e-007; +RES_IT_WH2=-3.82141564777e-007; +RES_IT_WH3=-3.11777929959e-007; +RES_IT_WK=0.0524795286111; +RES_IT_XM=0.00382575709651; +RES_JA_COIL=-0.098310587964; +RES_JA_CPI=-1.97758476261e-016; +RES_JA_C_DI=9.19437254995; +RES_JA_ER=2.22044604925e-016; +RES_JA_GNP=-0.759041216713; +RES_JA_ICOM=-0.386447875848; +RES_JA_IM=0.0322950153553; +RES_JA_IOIL=-0.182557313543; +RES_JA_K=5.87450491463e-009; +RES_JA_M=-0.427124000253; +RES_JA_MPC=0.0362152885381; +RES_JA_NFA=-8.09336819432e-016; +RES_JA_P=1.45181614284e-016; +RES_JA_PGNP=-2.93727895115e-009; +RES_JA_PIM=-0.221200305623; +RES_JA_PXM=-0.000788854755803; +RES_JA_RL=-2.63677968348e-016; +RES_JA_RS=-8.13538550497e-026; +RES_JA_TFP_FE=-2.87393020739; +RES_JA_TRATE=-5.14825168766e-017; +RES_JA_UNR_A=3.81337021603e-015; +RES_JA_WH1=-5.41207974696e-007; +RES_JA_WH2=-7.36770500828e-007; +RES_JA_WH3=-6.01109125171e-007; +RES_JA_WK=0.071815561682; +RES_JA_XM=-0.191635175395; +RES_PCOM=2.96142508204; +RES_RW_PIM=0.179918124325; +RES_RW_PXM=0.000701519557326; +RES_RW_XM=0.00757522099654; +RES_SI_COIL=-0.0561108572625; +RES_SI_CPI=4.57966997658e-016; +RES_SI_C_DI=55.784039885; +RES_SI_ER=2.22044604925e-016; +RES_SI_GNP=-1.95141273136; +RES_SI_ICOM=-0.0689147298982; +RES_SI_IM=-0.00718032410169; +RES_SI_IOIL=-4.22515210093; +RES_SI_K=9.31431864482e-009; +RES_SI_M=-0.478584774363; +RES_SI_MPC=0.0226014551092; +RES_SI_NFA=2.63739383605e-015; +RES_SI_P=-1.38492650462e-016; +RES_SI_PGNP=9.74854052457e-010; +RES_SI_PIM=-0.0771624065748; +RES_SI_PXM=0.00971162329178; +RES_SI_RL=1.80411241502e-016; +RES_SI_RS=2.15290279144e-025; +RES_SI_TFP_FE=-2.00372760211; +RES_SI_TRATE=3.43291264805e-017; +RES_SI_UNR_A=-6.51192381672e-017; +RES_SI_WH1=-2.63320724475e-007; +RES_SI_WH2=-3.58470220651e-007; +RES_SI_WH3=-2.92465184612e-007; +RES_SI_WK=0.0389567669552; +RES_SI_XM=0.00581089017958; +RES_UK_COIL=-0.0806931765756; +RES_UK_CPI=9.02056207508e-017; +RES_UK_C_DI=-8.62271098965; +RES_UK_ER=2.22044604925e-016; +RES_UK_GNP=-0.9114566915; +RES_UK_ICOM=0.0371063111646; +RES_UK_IM=-0.000837070829134; +RES_UK_IOIL=-2.41279576534; +RES_UK_K=3.50187874409e-008; +RES_UK_M=-0.529762438429; +RES_UK_MPC=0.0444559224021; +RES_UK_NFA=-5.57685810744e-015; +RES_UK_P=-1.79670262479e-016; +RES_UK_PGNP=6.81994717598e-010; +RES_UK_PIM=0.0587561474127; +RES_UK_PXM=-0.00424513169106; +RES_UK_RL=1.80411241502e-016; +RES_UK_RS=-6.88768018652e-026; +RES_UK_TFP_FE=-2.47600195449; +RES_UK_TRATE=-9.43272633968e-018; +RES_UK_UNR_A=2.95170244024e-014; +RES_UK_WH1=-5.27106184031e-007; +RES_UK_WH2=-7.17573106004e-007; +RES_UK_WH3=-5.85446541819e-007; +RES_UK_WK=0.0308395179277; +RES_UK_XM=0.0108137902997; +RES_US_COIL=-0.0349556083001; +RES_US_CPI=-7.97972798949e-017; +RES_US_C_DI=-93.8135046341; +RES_US_ER=0; +RES_US_GNP=7.18062984233; +RES_US_ICOM=-0.094132087951; +RES_US_IM=-0.0175610612422; +RES_US_IOIL=2.19014971638; +RES_US_K=-5.62109347086e-008; +RES_US_M=-0.613986121855; +RES_US_MPC=0.0876209985143; +RES_US_NFA=-1.53995030743e-014; +RES_US_P=-4.20291712167e-017; +RES_US_PGNP=7.35968716581e-010; +RES_US_PIM=-0.0442566864737; +RES_US_PXM=-0.00187707613244; +RES_US_RL=1.80411241502e-016; +RES_US_RS=-2.40604412419e-025; +RES_US_TFP_FE=-1.8369647179; +RES_US_TRATE=-8.38593190783e-017; +RES_US_UNR_A=-4.47527360645e-015; +RES_US_WH1=-1.46913990487e-006; +RES_US_WH2=-2.000005534e-006; +RES_US_WH3=-1.63174499393e-006; +RES_US_WK=0.100484836793; +RES_US_XM=-0.00368724829424; +RES_WTRADE=-4.55499885022e-014; +RES_WTRADER=-4.486587131; +RPOIL=1.37209440777; +RW_ER=1; +RW_FACT=2225.86319145; +RW_IM=2380.60397123; +RW_INFL=1.0270000062; +RW_NEER=1.07755126355; +RW_PFM=1.29321620968; +RW_PIM=1.5063051999; +RW_PIMA=1.5063051999; +RW_PXM=1.52812049863; +RW_RCI=0.166906246657; +RW_XCOM=299.717894126; +RW_XM=1913.05652912; +RW_XMA=1913.05652912; +RW_XOIL=931.131716246; +SI_A=5117.76377531; +SI_ACT=1401.01452561; +SI_ALPHA1=0.078; +SI_ALPHA2=0.121; +SI_ALPHA3=0.0911709766895; +SI_B=2898.55852703; +SI_BCHI1=21.2121212121; +SI_BCHI2=5.91549295775; +SI_BETA=0.31; +SI_BT=2898.55852703; +SI_BT_GDP_RAT=0.351078837384; +SI_C=3549.9723216; +SI_COIL=62.0827158115; +SI_CPI=1.60754202926; +SI_CPI_GAP_EXOG=0; +SI_CPI_TAR=1.60754202926; +SI_CU=100; +SI_CURBAL=39.9640389591; +SI_C_DI=2222.98337367; +SI_C_PI=1326.98894793; +SI_DELTA=0.0276156380992; +SI_DELTA_SS=0.0276156380992; +SI_DEM3=0.522070543645; +SI_DLGDP=0.0217614806135; +SI_DLLF=-0.00284483828482; +SI_DLLF_SS=0; +SI_ER=0.85627815444; +SI_FACT=1607.96515637; +SI_G=988.882067352; +SI_GDEF=163.945930821; +SI_GDP=5101.35487684; +SI_GDP_FE=5101.35487684; +SI_GDP_GAP_EXOG=0; +SI_GE=1796.19136277; +SI_GEXOG=0; +SI_GNP=5138.84296627; +SI_ICOM=60.7931978894; +SI_IM=1701.62918621; +SI_INFL=1.0270000062; +SI_INVEST=578.909386351; +SI_IOIL=84.7602832535; +SI_IT=1847.18266735; +SI_K=11924.3496871; +SI_LAMBDA=0.87110388279; +SI_LAMBDA1=0.945988405976; +SI_LAMBDA2=0.98479623869; +SI_LAMBDA3=0.963368318818; +SI_LF=69787.1739395; +SI_M=571.14916167; +SI_MGROW=1.04959399462; +SI_MPC=0.0551206864881; +SI_MPCINV=18.142009175; +SI_MPK=0.132621069771; +SI_MT=571.14916167; +SI_NEER=0.882725108922; +SI_NEER_PAR=0.882725108922; +SI_NFA=845.78819708; +SI_NLIN=8.92256450653; +SI_P=1.60618595958; +SI_PAR=0.647961410008; +SI_PART=0.684748986472; +SI_PARUS=1.16784481166; +SI_PFM=1.57681314987; +SI_PGNP=1.60661595608; +SI_PGNPNO=1.60664357831; +SI_PGNPNO_GAP_EXOG=0; +SI_PGNPNO_TAR=1.60664357831; +SI_PGNP_GAP_EXOG=0; +SI_PGNP_TAR=1.60661595608; +SI_PHI=4.92256465201; +SI_PIM=1.45788972496; +SI_PIMA=1.45788972496; +SI_PIT=1.47250454613; +SI_POP=155124; +SI_PREM=0; +SI_PROB=0.021; +SI_PRODOIL=34.410559154; +SI_PXM=1.46722854834; +SI_PXT=1.47250454613; +SI_P_GAP_EXOG=0; +SI_P_TAR=1.60618595958; +SI_Q=1.00001195585; +SI_R=0.0752690064927; +SI_RCI=-0.0720305363805; +SI_RL=8.04040065237; +SI_RLR=0.052; +SI_RS=7.01340064617; +SI_RSCON=4.34920694771; +SI_RSCON2=0; +SI_RSR=0.042; +SI_RS_EXOG=7.01340064617; +SI_SIGMA=2.46201848984; +SI_TAX=1632.24543195; +SI_TAXH=1126.24934805; +SI_TAXK=505.996083905; +SI_TAXK_ALPHA=0; +SI_TAXK_SHAR=0.31; +SI_TB=-24.1621775859; +SI_TFP_FE=0.134831746225; +SI_TPREM=0.00959692898273; +SI_TRATE=0.197700623683; +SI_TRATEK=0.199153457065; +SI_TRATE_ALPHA=1; +SI_TRATE_EXOG=0.197700623683; +SI_UNR=8.92256465201; +SI_UNR_A=8.92256465201; +SI_UNR_FE=8.92256465201; +SI_UNR_GAP_EXOG=0; +SI_W=70393.2746601; +SI_WH=55950.3040857; +SI_WH1=27514.5261713; +SI_WH2=20211.2882576; +SI_WH3=24772.6749676; +SI_WK=11667.7893945; +SI_XM=1759.39366752; +SI_XMA=1759.39366752; +SI_XOIL=71.3801013646; +SI_XT=1830.77376889; +SI_X_RS1=1; +SI_X_RS2=0; +SI_YD=3764.28653477; +TME=56; +UK_A=1155.31070583; +UK_ACT=319.829953313; +UK_ALPHA1=0.078; +UK_ALPHA2=0.121; +UK_ALPHA3=0.0911709766895; +UK_B=582.359396161; +UK_BCHI1=21.2121212121; +UK_BCHI2=5.91549295775; +UK_BETA=0.31; +UK_BT=582.359396161; +UK_BT_GDP_RAT=0.303201156422; +UK_C=787.282698991; +UK_COIL=13.2084645927; +UK_CPI=1.65344105214; +UK_CPI_GAP_EXOG=0; +UK_CPI_TAR=1.65344105214; +UK_CU=100; +UK_CURBAL=36.6047768844; +UK_C_DI=415.845695136; +UK_C_PI=371.437003854; +UK_DELTA=0.0223378842507; +UK_DELTA_SS=0.0223378842507; +UK_DEM3=0.554484700166; +UK_DLGDP=0.0217614806135; +UK_DLLF=-0.002770417422; +UK_DLLF_SS=0; +UK_ER=1.63522100449; +UK_FACT=374.750092695; +UK_G=237.429954234; +UK_GDEF=31.0530122626; +UK_GDP=1146.69203206; +UK_GDP_FE=1146.69203206; +UK_GDP_GAP_EXOG=0; +UK_GE=432.934454507; +UK_GEXOG=0; +UK_GNP=1164.20179276; +UK_ICOM=11.251733102; +UK_IM=387.212098441; +UK_INFL=1.0270000062; +UK_INVEST=130.598052604; +UK_IOIL=6.64851932886; +UK_IT=405.112350872; +UK_K=3010.13959234; +UK_LAMBDA=1; +UK_LAMBDA1=0.943609109433; +UK_LAMBDA2=0.983826472125; +UK_LAMBDA3=0.961534659433; +UK_LF=28680.2495054; +UK_M=74.8382229877; +UK_MGROW=1.04959399462; +UK_MPC=0.0639968766536; +UK_MPCINV=15.625762573; +UK_MPK=0.118092373803; +UK_MT=74.8382229877; +UK_NEER=1.18232335241; +UK_NEER_PAR=1.18232335241; +UK_NFA=774.693675913; +UK_NLIN=6.24795866013; +UK_P=1.64752593728; +UK_PAR=0.339302882477; +UK_PART=0.743682280824; +UK_PARUS=0.611538132923; +UK_PFM=1.26531412293; +UK_PGNP=1.64980254779; +UK_PGNPNO=1.65412657552; +UK_PGNPNO_GAP_EXOG=0; +UK_PGNPNO_TAR=1.65412657552; +UK_PGNP_GAP_EXOG=0; +UK_PGNP_TAR=1.64980254779; +UK_PHI=2.24795877554; +UK_PIM=1.34388143146; +UK_PIMA=1.34388143146; +UK_PIT=1.34462885652; +UK_POP=59949; +UK_PREM=0; +UK_PROB=0.021; +UK_PRODOIL=14.4321078551; +UK_PXM=1.3460644352; +UK_PXT=1.34462885652; +UK_P_GAP_EXOG=0; +UK_P_TAR=1.64752593728; +UK_Q=1.00003342951; +UK_R=0.0752690064927; +UK_RCI=0.0618646918253; +UK_RL=8.04040065237; +UK_RLR=0.052; +UK_RS=7.01340064617; +UK_RSCON=4.34920694771; +UK_RSCON2=0; +UK_RSR=0.042; +UK_RS_EXOG=7.01340064617; +UK_SIGMA=2.46201848984; +UK_TAX=401.881442244; +UK_TAXH=277.298195149; +UK_TAXK=124.583247096; +UK_TAXK_ALPHA=0; +UK_TAXK_SHAR=0.31; +UK_TB=-11.5889174594; +UK_TFP_FE=0.0840787050036; +UK_TPREM=0.00959692898273; +UK_TRATE=0.209236630913; +UK_TRATEK=0.212431632914; +UK_TRATE_ALPHA=1; +UK_TRATE_EXOG=0.209236630913; +UK_UNR=6.24795877554; +UK_UNR_A=6.24795877554; +UK_UNR_FE=6.24795877554; +UK_UNR_GAP_EXOG=0; +UK_W=15847.0975967; +UK_WH=12215.2101092; +UK_WH1=6007.04006404; +UK_WH2=4412.57892481; +UK_WH3=5408.43226219; +UK_WK=2945.43253236; +UK_XM=380.460005673; +UK_XMA=380.460005673; +UK_XOIL=16.0336714261; +UK_XT=396.493677099; +UK_X_RS1=1; +UK_X_RS2=0; +UK_YD=838.553773434; +US_A=11697.616118; +US_ACT=1151.05134833; +US_ALPHA1=0.078; +US_ALPHA2=0.121; +US_ALPHA3=0.0911709766895; +US_B=5527.77752688; +US_BCHI1=21.2121212121; +US_BCHI2=5.91549295775; +US_BETA=0.29; +US_BT=5527.77752688; +US_BT_GDP_RAT=0.288490863185; +US_C=8506.90300877; +US_COIL=188.736419346; +US_CPI=1.68517625161; +US_CPI_GAP_EXOG=0; +US_CPI_TAR=1.68517625161; +US_CU=100; +US_CURBAL=-176.153365647; +US_C_DI=2451.73706272; +US_C_PI=6055.16594605; +US_DELTA=0.0683597148338; +US_DELTA_SS=0.0683597148338; +US_DEM3=0.528818264493; +US_DLGDP=0.0217614806134; +US_DLLF=0.00299350231857; +US_DLLF_SS=0; +US_ER=1; + US_FACT=1386.00982925; +US_G=1982.34035843; +US_GDEF=318.199955986; +US_GDP=11765.3659437; +US_GDP_FE=11765.3659437; +US_GDP_GAP_EXOG=0; +US_GE=3666.60708292; +US_GEXOG=0; +US_GNP=11627.4207057; +US_ICOM=71.8306349189; +US_IM=1673.26974695; +US_INFL=1.0270000062; +US_INVEST=1208.37275081; +US_IOIL=101.663326142; +US_IT=1846.76370801; +US_K=13666.6579593; +US_LAMBDA=0.690045535564; +US_LAMBDA1=0.80851637383; +US_LAMBDA2=0.90660357866; +US_LAMBDA3=0.846316827896; +US_LF=156293.686043; +US_M=1206.52095982; +US_MGROW=1.04959399462; +US_MPC=0.0815299669132; +US_MPCINV=12.265428748; +US_MPK=0.249655485185; +US_MT=1206.52095982; +US_NEER=1.04811209443; +US_NEER_PAR=1.04811209443; +US_NFA=-3728.06256376; +US_NLIN=5.86949110031; +US_P=1.64966441717; +US_PAR=0.55483520031; +US_PART=0.779438419387; +US_PARUS=1; +US_PFM=1.31987785254; +US_PGNP=1.64791613615; +US_PGNPNO=1.65037395412; +US_PGNPNO_GAP_EXOG=0; +US_PGNPNO_TAR=1.65037395412; +US_PGNP_GAP_EXOG=0; +US_PGNP_TAR=1.64791613615; +US_PHI=1.86949133476; +US_PIM=1.33975449819; +US_PIMA=1.33975449819; +US_PIT=1.34605971131; +US_POP=306560; +US_PREM=0; +US_PROB=0.021; +US_PRODOIL=103.96361969; +US_PXM=1.34592946401; +US_PXT=1.34605971131; +US_P_GAP_EXOG=0; +US_P_TAR=1.64966441717; +US_Q=1.00004024078; +US_R=0.0752690064927; +US_RCI=0.0195456293399; +US_RL=8.04040065237; +US_RLR=0.052; +US_RR=0.0721880064741; +US_RRBAR=0.0721880064741; +US_RS=7.01340064617; +US_RSCON=4.34920694771; +US_RSCON2=0; +US_RSR=0.042; +US_RS_EXOG=7.01340064617; +US_SIGMA=2.46201848984; +US_TAX=3348.40712693; +US_TAXH=2377.36906012; +US_TAXK=971.038066811; +US_TAXK_ALPHA=0; +US_TAXK_SHAR=0.29; +US_TB=91.1953108477; +US_TFP_FE=0.159300214125; +US_TPREM=0.00959692898273; +US_TRATE=0.174751038306; +US_TRATEK=0.172702137006; +US_TRATE_ALPHA=1; +US_TRATE_EXOG=0.174751038306; +US_UNR=5.86949133476; +US_UNR_A=5.86949133476; +US_UNR_FE=5.86949133476; +US_UNR_GAP_EXOG=0; +US_W=156126.123679; +US_WH=140930.833736; +US_WH1=69305.1660137; +US_WH2=50909.3516395; +US_WH3=62398.834003; +US_WK=13372.9581449; +US_XM=1905.03139485; +US_XMA=1905.03139485; +US_XOIL=9.48213887322; +US_XT=1914.51353373; +US_X_RS1=1; +US_X_RS2=0; +US_YD=8809.01195636; +WTRADE=15038.166239; +WTRADER=3382.59414741; +end; + + +//steady(solve_algo=1); +//check; + + + +/*shocks; +var g_bar; +periods 1; +values 0.16; +end; +*/ +options_.slowc = 1.0; +options_.dynatol = 1e-4; + + +simul(periods=117,datafile=mark3); + + +rplot WTRADER; +rplot US_GDP; diff --git a/tests/ferhat/ramst.mod b/tests/ferhat/ramst.mod index 6d7aa8bf9..c3cd38256 100644 --- a/tests/ferhat/ramst.mod +++ b/tests/ferhat/ramst.mod @@ -9,7 +9,7 @@ bet=0.05; aa=0.5; -model/*(SPARSE_DLL,GCC_COMPILER)*/; +model(SPARSE_DLL,GCC_COMPILER); c + k - aa*x*k(-1)^alph - (1-delt)*k(-1); c^(-gam) - (1+bet)^(-1)*(aa*alph*x(+1)*k^(alph-1) + 1 - delt)*c(+1)^(-gam); end; @@ -30,7 +30,10 @@ periods 1; values 1.2; end; -simul(periods=200); +oo_.dynatol=1e-19; +options_.maxit_ = 10; + +simul(periods=6); rplot c; rplot k; diff --git a/tests/ferhat/simulate.cc b/tests/ferhat/simulate.cc index b6fcd46d3..eefc05f8e 100644 --- a/tests/ferhat/simulate.cc +++ b/tests/ferhat/simulate.cc @@ -1,60 +1,161 @@ //////////////////////////////////////////////////////////////////////// - // simulate.c // - // simulate file designed for GNU GCC C++ compiler // - // use GCC_COMPILER option in MODEL command // - //////////////////////////////////////////////////////////////////////// +// simulate.c // +// simulate file designed for GNU GCC C++ compiler // +// use GCC_COMPILER option in MODEL command // +//////////////////////////////////////////////////////////////////////// //#define PRINT_OUT -//#define PRINT_OUT_p +#define INDIRECT_SIMULATE +#define PRINT_OUT_p +//#define PRINT_OUT_y1 +//#define PRINT_u +//#define PRINT_OUT_b +//#define DEBUG +//#define EXTENDED +//#define FLOAT +//#define WRITE_u +//#define N_MX_ALLOC +//#define MEM_ALLOC_CHK +#define NEW_ALLOC +//#define PROFILER +#ifdef EXTENDED +typedef long double longd; +#else +typedef double longd; +#endif +//#define PRINT_OUT_y #include +#include +#include #include #include #include #include "pctimer_h.hh" #include "mex.h" +#include +#include +#include + + +using namespace std; + +const int FLD =0; +const int FDIV =1; +const int FLESS=2; +const int FSUB =3; +const int FLDZ =4; +const int FMUL =5; +const int FSTP =6; +const int FADD =7; +const longd eps=1e-7; + +typedef struct NonZeroElem + { + int u_index; + int r_index, c_index, lag_index; + NonZeroElem *NZE_R_N, *NZE_C_N; + }; + /*#include "simulate.hh"*/ - +//typedef std::pair eq_var; +//typedef std::vector > t_IM; +std::map ,int>, int> IM_i; +//std::map Lead_Lag; +std::multimap, int> var_in_equ_and_lag_i, equ_in_var_and_lag_i; +//t_IM IM; +int *index_vara, *pivota=NULL, *save_op_all=NULL, *b, *g_save_op=NULL; +int *pivot, *pivotk; +longd *pivotv, *pivotva=NULL; +bool *line_done; +bool symbolic=true, alt_symbolic=false, record_all=false; +long int nop_all, nopa_all; +const longd very_big=1e24; int Per_y_, Per_u_, it_, nb_row_x, u_size, y_size, x_size, y_kmin, y_kmax, y_decal; -int periods, maxit_; -double *params, *u, *y, *x, *r, *g1, *g2; -double slowc, solve_tolf, max_res, res1, res2; -bool cvg; +int periods, maxit_, max_u=0, min_u=0x7FFFFFFF, g_nop_all=0; +double *params; +longd *u, *y, *x, *r, *g1, *g2, *ya, *direction; +longd slowc, slowc_save, solve_tolf, max_res, res1, res2, res1a=9.0e60; +bool cvg, print_err, swp_f; +int swp_f_b=0; pctimer_t t0, t1; +int u_count_alloc, u_count_alloc_save, size_of_direction; +int i, j, k, nb_endo, u_count, u_count_init, iter; +longd err; +std::string filename; +NonZeroElem **FNZE_R, **FNZE_C; +int *NbNZRow, *NbNZCol; typedef struct t_table_y -{ - int index, nb; - int *u_index, *y_index; -}; + { + int index, nb; + int *u_index, *y_index; + }; typedef struct t_table_u + { + t_table_u* pNext; + unsigned char type; + int index; + int op1, op2; + }; + + + +std::fstream SaveCode, SaveCode_swp; + +/*longd pow1(longd a, longd b) + { + if(a<0) + { + mexPrintf("Attempt to compute (-X)^Y at time %d\n",it_); + return(-pow(-a,b)); + } + else + return(pow(a,b)); + } +*/ + +longd pow1(longd a, longd b) { - t_table_u* pNext; - unsigned char type; - int index; - int op1, op2; -}; - - -std::ifstream SaveCode; - + double r=pow(a,b); + if (isnan(r) || isinf(r)) + { + max_res=res1=res2=r; + return(r); + } + else + return r; +} +int +max(int a, int b) +{ + if (a>b) + return(a); + else + return(b); +} +#ifdef INDIRECT_SIMULATE void read_file_table_u(t_table_u **table_u, t_table_u **F_table_u, t_table_u **i_table_u, t_table_u **F_i_table_u, int *nb_table_u, bool i_to_do, bool shifting, int *nb_add_u_count) { char type; int i; + i=SaveCode.tellp(); +#ifdef PRINT_OUT + mexPrintf("SaveCode.tellp()=%d\n",i); +#endif SaveCode.read(reinterpret_cast(nb_table_u), sizeof(*nb_table_u)); #ifdef PRINT_OUT mexPrintf("->*nb_table_u=%d\n", *nb_table_u); #endif *table_u = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); *F_table_u = *table_u; - if(i_to_do) + if (i_to_do) { #ifdef PRINT_OUT mexPrintf("=>i_table\n"); @@ -62,125 +163,151 @@ read_file_table_u(t_table_u **table_u, t_table_u **F_table_u, t_table_u **i_tabl (*i_table_u) = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); (*F_i_table_u) = (*i_table_u); } - for(i = 0;i < *nb_table_u;i++) + for (i = 0;i < *nb_table_u;i++) { SaveCode.read(reinterpret_cast(&type), sizeof(type)); switch (type) { - case 3: - case 7: - (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - sizeof(int)); - (*table_u) = (*table_u)->pNext; - (*table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); - SaveCode.read(reinterpret_cast(&(*table_u)->op1), sizeof((*table_u)->op1)); - if(shifting) - { - (*table_u)->index -= y_kmin * u_size; - (*table_u)->op1 -= y_kmin * u_size; - } + case 3: + case 7: + (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - sizeof(int)); + (*table_u) = (*table_u)->pNext; + (*table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + SaveCode.read(reinterpret_cast(&(*table_u)->op1), sizeof((*table_u)->op1)); + if (shifting) + { + (*table_u)->index -= y_kmin * u_size; + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + (*table_u)->op1 -= y_kmin * u_size; + } #ifdef PRINT_OUT - if((*table_u)->type == 3) - mexPrintf("u[%d]=-1/u[%d]\n", (*table_u)->index, (*table_u)->op1); - else - mexPrintf("u[%d]*=u[%d]\n", (*table_u)->index, (*table_u)->op1); + if ((*table_u)->type == 3) + mexPrintf("u[%d]=-1/u[%d]\n", (*table_u)->index, (*table_u)->op1); + else + mexPrintf("u[%d]*=u[%d]\n", (*table_u)->index, (*table_u)->op1); #endif - if(i_to_do) - { - (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - sizeof(int)); - (*i_table_u) = (*i_table_u)->pNext; - (*i_table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); - SaveCode.read(reinterpret_cast(&(*i_table_u)->op1), sizeof((*i_table_u)->op1)); + if (i_to_do) + { + (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - sizeof(int)); + (*i_table_u) = (*i_table_u)->pNext; + (*i_table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); + SaveCode.read(reinterpret_cast(&(*i_table_u)->op1), sizeof((*i_table_u)->op1)); #ifdef FIXE - (*i_table_u)->index = u_size; - (*i_table_u)->op1 = u_size; + (*i_table_u)->index = u_size; + (*i_table_u)->op1 = u_size; #endif #ifdef PRINT_OUT - if((*i_table_u)->type == 3) - mexPrintf("i u[%d]=1/(1-u[%d])\n", (*i_table_u)->index, (*i_table_u)->op1); - else - mexPrintf("i u[%d]*=u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1); + if ((*i_table_u)->type == 3) + mexPrintf("i u[%d]=1/(1-u[%d])\n", (*i_table_u)->index, (*i_table_u)->op1); + else + mexPrintf("i u[%d]*=u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1); #endif - } - break; - case 1: - case 2: - case 6: - (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u)); - (*table_u) = (*table_u)->pNext; - (*table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); - SaveCode.read(reinterpret_cast(&(*table_u)->op1), sizeof((*table_u)->op1)); - SaveCode.read(reinterpret_cast(&(*table_u)->op2), sizeof((*table_u)->op2)); - if(shifting) - { - (*table_u)->index -= y_kmin * u_size; - (*table_u)->op1 -= y_kmin * u_size; - (*table_u)->op2 -= y_kmin * u_size; - } - if((*table_u)->type == 1) - { + } + break; + case 1: + case 2: + case 6: + (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u)); + (*table_u) = (*table_u)->pNext; + (*table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + SaveCode.read(reinterpret_cast(&(*table_u)->op1), sizeof((*table_u)->op1)); + SaveCode.read(reinterpret_cast(&(*table_u)->op2), sizeof((*table_u)->op2)); + if (shifting) + { + (*table_u)->index -= y_kmin * u_size; + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + (*table_u)->op1 -= y_kmin * u_size; + (*table_u)->op2 -= y_kmin * u_size; + } + if ((*table_u)->type == 1) + { #ifdef PRINT_OUT - mexPrintf("u[%d]=u[%d]*u[%d]\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); + mexPrintf("u[%d]=u[%d]*u[%d]\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); #endif - if(i_to_do) - (*nb_add_u_count)++; - } + if (i_to_do) + (*nb_add_u_count)++; + } #ifdef PRINT_OUT - else if((*table_u)->type == 2) - mexPrintf("u[%d]+=u[%d]*u[%d]\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); - else - mexPrintf("u[%d]=1/(1-u[%d]*u[%d])\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); + else if ((*table_u)->type == 2) + mexPrintf("u[%d]+=u[%d]*u[%d]\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); + else + mexPrintf("u[%d]=1/(1-u[%d]*u[%d])\n", (*table_u)->index, (*table_u)->op1, (*table_u)->op2); #endif - if(i_to_do) - { - (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u)); - (*i_table_u) = (*i_table_u)->pNext; - (*i_table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); - SaveCode.read(reinterpret_cast(&(*i_table_u)->op1), sizeof((*i_table_u)->op1)); - SaveCode.read(reinterpret_cast(&(*i_table_u)->op2), sizeof((*i_table_u)->op2)); + if (i_to_do) + { + (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u)); + (*i_table_u) = (*i_table_u)->pNext; + (*i_table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); + SaveCode.read(reinterpret_cast(&(*i_table_u)->op1), sizeof((*i_table_u)->op1)); + SaveCode.read(reinterpret_cast(&(*i_table_u)->op2), sizeof((*i_table_u)->op2)); #ifdef FIXE - (*i_table_u)->index = u_size; - (*i_table_u)->op1 = u_size; - (*i_table_u)->op2 = u_size; + (*i_table_u)->index = u_size; + (*i_table_u)->op1 = u_size; + (*i_table_u)->op2 = u_size; #endif #ifdef PRINT_OUT - if((*i_table_u)->type == 1) - mexPrintf("i u[%d]=u[%d]*u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); - else if((*i_table_u)->type == 2) - mexPrintf("i u[%d]+=u[%d]*u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); - else - mexPrintf("i u[%d]=1/(1-u[%d]*u[%d])\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); + if ((*i_table_u)->type == 1) + mexPrintf("i u[%d]=u[%d]*u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); + else if ((*i_table_u)->type == 2) + mexPrintf("i u[%d]+=u[%d]*u[%d]\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); + else + mexPrintf("i u[%d]=1/(1-u[%d]*u[%d])\n", (*i_table_u)->index, (*i_table_u)->op1, (*i_table_u)->op2); #endif - } - break; - case 5: - (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); - (*table_u) = (*table_u)->pNext; - (*table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); - if(shifting) - (*table_u)->index -= y_kmin * u_size; + } + break; + case 5: + (*table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); + (*table_u) = (*table_u)->pNext; + (*table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*table_u)->index), sizeof((*table_u)->index)); + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + if (shifting) + { + (*table_u)->index -= y_kmin * u_size; + if ((*table_u)->index>max_u) + max_u=(*table_u)->index; + if ((*table_u)->indexindex; + } #ifdef PRINT_OUT - mexPrintf("push(u[%d])\n", (*table_u)->index); + mexPrintf("push(u[%d])\n", (*table_u)->index); #endif - if(i_to_do) - { - (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); - (*i_table_u) = (*i_table_u)->pNext; - (*i_table_u)->type = type; - SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); + if (i_to_do) + { + (*i_table_u)->pNext = (t_table_u*)mxMalloc(sizeof(t_table_u) - 2 * sizeof(int)); + (*i_table_u) = (*i_table_u)->pNext; + (*i_table_u)->type = type; + SaveCode.read(reinterpret_cast(&(*i_table_u)->index), sizeof((*i_table_u)->index)); #ifdef FIXE - (*i_table_u)->index = u_size; + (*i_table_u)->index = u_size; #endif #ifdef PRINT_OUT - mexPrintf("i push(u[%d])\n", (*i_table_u)->index); + mexPrintf("i push(u[%d])\n", (*i_table_u)->index); #endif - } - break; + } + break; } } } @@ -192,14 +319,14 @@ read_file_table_y(t_table_y **table_y, t_table_y **i_table_y, int *nb_table_y, b SaveCode.read(reinterpret_cast(nb_table_y), sizeof(*nb_table_y)); #ifdef PRINT_OUT mexPrintf("nb_table_y=%d\n", *nb_table_y); - mexPrintf("y_size=%d, u_size=%d, y_kmin=%d, y_kmax=%d\n", y_size, u_size, y_kmin, y_kmax); + //mexPrintf("y_size=%d, u_size=%d, y_kmin=%d, y_kmax=%d\n", y_size, u_size, y_kmin, y_kmax); #endif (*table_y) = (t_table_y*)mxMalloc((*nb_table_y) * sizeof(t_table_y)); - for(i = 0;i < *nb_table_y;i++) + for (i = 0;i < *nb_table_y;i++) { SaveCode.read(reinterpret_cast(&((*table_y)[i].index)), sizeof((*table_y)[i].index)); SaveCode.read(reinterpret_cast(&((*table_y)[i].nb)), sizeof((*table_y)[i].nb)); - if(shifting) + if (shifting) (*table_y)[i].index -= y_kmin * y_size; #ifdef PRINT_OUT mexPrintf("table_y[i].nb=%d\n", (*table_y)[i].nb); @@ -207,20 +334,20 @@ read_file_table_y(t_table_y **table_y, t_table_y **i_table_y, int *nb_table_y, b #endif (*table_y)[i].u_index = (int*)mxMalloc((*table_y)[i].nb * sizeof(int)); (*table_y)[i].y_index = (int*)mxMalloc((*table_y)[i].nb * sizeof(int)); - for(k = 0;k < (*table_y)[i].nb;k++) + for (k = 0;k < (*table_y)[i].nb;k++) { SaveCode.read(reinterpret_cast(&((*table_y)[i].u_index[k])), sizeof((*table_y)[i].u_index[k])); SaveCode.read(reinterpret_cast(&((*table_y)[i].y_index[k])), sizeof((*table_y)[i].y_index[k])); - if(shifting) + if (shifting) { (*table_y)[i].u_index[k] -= y_kmin * u_size; - if(((*table_y)[i].y_index[k] > y_size*y_kmin) && ((*table_y)[i].y_index[k] < y_size*(2*y_kmin + y_kmax + 2))) + if (((*table_y)[i].y_index[k] > y_size*y_kmin) && ((*table_y)[i].y_index[k] < y_size*(2*y_kmin + y_kmax + 2))) { (*table_y)[i].y_index[k] -= y_kmin * y_size; } } #ifdef PRINT_OUT - if(k < (*table_y)[i].nb - 1) + if (k < (*table_y)[i].nb - 1) mexPrintf("u[%d]*y[%d]+", (*table_y)[i].u_index[k], (*table_y)[i].y_index[k]); else mexPrintf("u[%d]*y[%d]\n", (*table_y)[i].u_index[k], (*table_y)[i].y_index[k]); @@ -230,10 +357,10 @@ read_file_table_y(t_table_y **table_y, t_table_y **i_table_y, int *nb_table_y, b #ifdef PRINT_OUT mexPrintf("*nb_table_y=%d\n", *nb_table_y); #endif - if(i_to_do) + if (i_to_do) { *i_table_y = (t_table_y*)mxMalloc((*nb_table_y) * sizeof(t_table_y)); - for(i = 0;i < *nb_table_y;i++) + for (i = 0;i < *nb_table_y;i++) { SaveCode.read(reinterpret_cast(&((*i_table_y)[i].index)), sizeof((*i_table_y)[i].index)); SaveCode.read(reinterpret_cast(&((*i_table_y)[i].nb)), sizeof((*i_table_y)[i].nb)); @@ -243,12 +370,12 @@ read_file_table_y(t_table_y **table_y, t_table_y **i_table_y, int *nb_table_y, b #endif (*i_table_y)[i].u_index = (int*)mxMalloc((*i_table_y)[i].nb * sizeof(int)); (*i_table_y)[i].y_index = (int*)mxMalloc((*i_table_y)[i].nb * sizeof(int)); - for(k = 0;k < (*i_table_y)[i].nb;k++) + for (k = 0;k < (*i_table_y)[i].nb;k++) { SaveCode.read(reinterpret_cast(&((*i_table_y)[i].u_index[k])), sizeof((*i_table_y)[i].u_index[k])); SaveCode.read(reinterpret_cast(&((*i_table_y)[i].y_index[k])), sizeof((*i_table_y)[i].y_index[k])); #ifdef PRINT_OUT - if(k < (*i_table_y)[i].nb - 1) + if (k < (*i_table_y)[i].nb - 1) mexPrintf("u[%d]*y[%d]+", (*i_table_y)[i].u_index[k], (*i_table_y)[i].y_index[k]); else mexPrintf("u[%d]*y[%d]\n", (*i_table_y)[i].u_index[k], (*i_table_y)[i].y_index[k]); @@ -259,7 +386,7 @@ read_file_table_y(t_table_y **table_y, t_table_y **i_table_y, int *nb_table_y, b } -int i, j, k, nb_endo, u_count, u_count_init, iter; + int nb_prologue_table_u, nb_first_table_u, nb_middle_table_u, nb_last_table_u; int nb_prologue_table_y, nb_first_table_y, nb_middle_table_y, nb_last_table_y; int first_count_loop, middle_count_loop; @@ -267,7 +394,7 @@ char type; t_table_u *prologue_table_u, *first_table_u, *first_i_table_u, *middle_table_u, *middle_i_table_u, *last_table_u; t_table_y *prologue_table_y, *first_table_y, *middle_table_y, *middle_i_table_y, *last_table_y; t_table_u *F_prologue_table_u, *F_first_table_u, *F_first_i_table_u, *F_middle_table_u, *F_middle_i_table_u, *F_last_table_u; -std::string filename; + void @@ -276,16 +403,18 @@ Read_file(std::string file_name, int periods, int u_size1, int y_size, int y_kmi int nb_add_u_count = 0; u_size = u_size1; filename=file_name; + //mexPrintf("-------------------------------------------------\n"); #ifdef PRINT_OUT + mexPrintf("min_u(initial)=%d\n",min_u); mexPrintf("%s\n", file_name.c_str()); #endif - if(!SaveCode.is_open()) + if (!SaveCode.is_open()) { #ifdef PRINT_OUT mexPrintf("file opened\n"); #endif SaveCode.open((file_name + ".bin").c_str(), std::ios::in | std::ios::binary); - if(!SaveCode.is_open()) + if (!SaveCode.is_open()) { mexPrintf("Error : Can't open file \"%s\" for reading\n", (file_name + ".bin").c_str()); mexErrMsgTxt("Exit from Dynare"); @@ -326,7 +455,7 @@ Read_file(std::string file_name, int periods, int u_size1, int y_size, int y_kmi #endif read_file_table_u(&middle_table_u, &F_middle_table_u, &middle_i_table_u, &F_middle_i_table_u, &nb_middle_table_u, true, /*true*/false, &nb_add_u_count); #ifdef PRINT_OUT - mexPrintf("nb_middle_table_u=%d\n",nb_middle_table_u); + mexPrintf("nb_middle_table_u=%d\n",nb_middle_table_u); //mexPrintf("last table_u\n"); #endif read_file_table_u(&last_table_u, &F_last_table_u, NULL, NULL, &nb_last_table_u, false, false, &nb_add_u_count); @@ -354,25 +483,27 @@ Read_file(std::string file_name, int periods, int u_size1, int y_size, int y_kmi #ifdef PRINT_OUT mexPrintf("nb_last_table_y=%d\n", nb_last_table_y); mexPrintf("->nb_last_table_y=%d\n", nb_last_table_y); + mexPrintf("max_u=%d\n",max_u); + mexPrintf("min_u=%d\n",min_u); #endif - if(nb_last_table_u > 0) + if (nb_last_table_u > 0) { #ifdef PRINT_OUT mexPrintf("y_size=%d, periods=%d, y_kmin=%d, y_kmax=%d\n", y_size, periods, y_kmin, y_kmax); - mexPrintf("u=mxMalloc(%d)\n", u_count + 1); + mexPrintf("u=mxMalloc(%d)\n", max(u_count + 1,max_u+1)); #endif - u = (double*)mxMalloc((u_count + 1) * sizeof(double)); + u = (longd*)mxMalloc(max(u_count + 1,max_u+1) * sizeof(longd)); } else { -#ifdef PRINT_OUT +//#ifdef PRINT_OUT mexPrintf("u_size=%d, y_size=%d, periods=%d, y_kmin=%d, y_kmax=%d, u_count=%d, nb_add_u_count=%d\n", u_size, y_size, periods, y_kmin, y_kmax, u_count, nb_add_u_count); mexPrintf("u=mxMalloc(%d)\n", u_count + (periods + y_kmin + y_kmax)* /*(u_count-u_size*(periods+y_kmin+y_kmax))*/nb_add_u_count); -#endif - u = (double*)mxMalloc((u_count + (periods + y_kmin + y_kmax)* /*(u_count-u_size*(periods+y_kmin+y_kmax)*/nb_add_u_count) * sizeof(double)); - memset(u, 0, (u_count + (periods + y_kmin + y_kmax)* /*(u_count-u_size*(periods+y_kmin+y_kmax)*/nb_add_u_count)*sizeof(double)); +//#endif + u = (longd*)mxMalloc((u_count + (periods + y_kmin + y_kmax)* /*(u_count-u_size*(periods+y_kmin+y_kmax)*/nb_add_u_count) * sizeof(longd)); + memset(u, 0, (u_count + (periods + y_kmin + y_kmax)* /*(u_count-u_size*(periods+y_kmin+y_kmax)*/nb_add_u_count)*sizeof(longd)); } - if(u == NULL) + if (u == NULL) { mexPrintf("memory exhausted\n"); mexErrMsgTxt("Exit from Dynare"); @@ -381,212 +512,254 @@ Read_file(std::string file_name, int periods, int u_size1, int y_size, int y_kmi } -std::stack Stack; +std::stack Stack; void -simulate(int blck, int y_size, int it_, int y_kmin, int y_kmax) +simulate(int blck, int y_size, int it_, int y_kmin, int y_kmax, int Size, int periods, bool print_it) { - int i, j, k, l, m, m1, nop; + int i, j, k, l, m=0, nop; +#ifdef PRINT_OUT_y + int m1; +#endif int period = it_ * y_size, s_middle_count_loop = 0 ; + if (periods>0) + period = y_decal * y_size; pctimer_t t1 = pctimer(); - double uu, yy; - char tmp_s[150]; + longd uu, yy; + //char tmp_s[150]; + //mexPrintf("period=%d\n",period); #ifdef PRINT_OUT - for(j = 0;j < it_ -y_kmin;j++) + for (j = 0;j < it_ -y_kmin;j++) { - for(i = 0;i < u_size;i++) + for (i = 0;i < u_size;i++) { - mexPrintf("u[%d]=%f ", j*u_size + i, u[j*u_size + i]); + mexPrintf("u[%d]=%f ", j*u_size + i, double(u[j*u_size + i])); } mexPrintf("\n"); } #endif - if(nb_first_table_u > 0) + if (/*nb_first_table_u*/print_it > 0) { first_count_loop = it_; - s_middle_count_loop = it_ -y_kmin - middle_count_loop + 1; + //mexPrintf("nb_prologue_table_y=%d Size%d\n",nb_prologue_table_y,Size); + /*s_middle_count_loop = it_ -y_kmin - middle_count_loop + 1;*/ + s_middle_count_loop = it_ - y_kmin - (nb_prologue_table_y / Size); +#ifdef PRINT_OUT + mexPrintf("nb_first_table_u=%d first_count_loop=%d s_middle_count_loop=%d\n",nb_first_table_u,first_count_loop, s_middle_count_loop); + mexPrintf("y_kmin=%d y_kmax=%d \n",y_kmin,y_kmax); + mexPrintf("middle_count_loop=%d\n",middle_count_loop); + mexPrintf("it_=%d\n",it_); +#endif //#ifdef PRINT_OUT mexPrintf("----------------------------------------------------------------------\n"); - mexPrintf(" Simulate it้rationฐ %d \n",iter+1); - mexPrintf(" max. error=%.10e \n",max_res); - mexPrintf(" sqr. error=%.10e \n",res2); - mexPrintf(" abs. error=%.10e \n",res1); + mexPrintf(" Simulate iterationฐ %d \n",iter+1); + mexPrintf(" max. error=%.10e \n",double(max_res)); + mexPrintf(" sqr. error=%.10e \n",double(res2)); + mexPrintf(" abs. error=%.10e \n",double(res1)); mexPrintf("----------------------------------------------------------------------\n"); -//#endif +//endif +#ifdef PRINT_OUT + mexPrintf("first_count\n"); + mexPrintf("(first_count_loop=%d - y_kmin=%d)=%d\n",first_count_loop,y_kmin, first_count_loop-y_kmin); +#endif } nop = 0; - for(j = 0 ;j < first_count_loop - y_kmin;j++) + + for (j = 0 ;j < first_count_loop - y_kmin;j++) { +#ifdef PRINT_OUT_b + mexPrintf("------------------------------------------------------\n"); + mexPrintf("j=%d\n",j); +#endif first_table_u = F_first_table_u->pNext; first_i_table_u = F_first_i_table_u->pNext; - for(i = 0;i < nb_first_table_u;i++) + for (i = 0;i < nb_first_table_u;i++) { switch (first_table_u->type) { - case 1: - u[first_table_u->index + j*first_i_table_u->index] = u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", first_table_u->index + j*first_i_table_u->index , first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, u[first_table_u->index + j*first_i_table_u->index]); + case 1: + u[first_table_u->index + j*first_i_table_u->index] = u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", first_table_u->index + j*first_i_table_u->index , first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, double(u[first_table_u->index + j*first_i_table_u->index])); #endif - break; - case 2: - u[first_table_u->index + j*first_i_table_u->index] += u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n" , first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, u[first_table_u->index + j*first_i_table_u->index]); + break; + case 2: + u[first_table_u->index + j*first_i_table_u->index] += u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n" , first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, double(u[first_table_u->index + j*first_i_table_u->index])); #endif - break; - case 3: - u[first_table_u->index + j*first_i_table_u->index] = 1 / ( -u[first_table_u->op1 + j * first_i_table_u->op1]); -#ifdef PRINT_OUT - mexPrintf("u[%d]=1/(-u[%d])=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, u[first_table_u->index + j*first_i_table_u->index]); + break; + case 3: + u[first_table_u->index + j*first_i_table_u->index] = 1 / ( -u[first_table_u->op1 + j * first_i_table_u->op1]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(-u[%d])=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, double(u[first_table_u->index + j*first_i_table_u->index])); #endif - break; - case 5: - Stack.push(u[first_table_u->index + j*first_i_table_u->index]); -#ifdef PRINT_OUT - mexPrintf("push(u[%d])\n", first_table_u->index + j*first_i_table_u->index); + break; + case 5: + Stack.push(u[first_table_u->index + j*first_i_table_u->index]); +#ifdef PRINT_OUT_b + mexPrintf("push(u[%d])\n", first_table_u->index + j*first_i_table_u->index); #endif - break; - case 6: - u[first_table_u->index + j*first_i_table_u->index] = 1 / (1 - u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]); -#ifdef PRINT_OUT - mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, u[first_table_u->index + j*first_i_table_u->index]); + break; + case 6: + u[first_table_u->index + j*first_i_table_u->index] = 1 / (1 - u[first_table_u->op1 + j * first_i_table_u->op1] * u[first_table_u->op2 + j * first_i_table_u->op2]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, first_table_u->op2 + j*first_i_table_u->op2, double(u[first_table_u->index + j*first_i_table_u->index])); #endif - break; - case 7: - u[first_table_u->index + j*first_i_table_u->index] *= u[first_table_u->op1 + j * first_i_table_u->op1]; -#ifdef PRINT_OUT - mexPrintf("u[%d]*=u[%d]=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, u[first_table_u->index + j*first_i_table_u->index]); + break; + case 7: + u[first_table_u->index + j*first_i_table_u->index] *= u[first_table_u->op1 + j * first_i_table_u->op1]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]*=u[%d]=%f\n", first_table_u->index + j*first_i_table_u->index, first_table_u->op1 + j*first_i_table_u->op1, double(u[first_table_u->index + j*first_i_table_u->index])); #endif - break; + break; + } + if (isnan(u[first_table_u->index+ j*first_i_table_u->index]) || isinf(u[first_table_u->index+ j*first_i_table_u->index])) + { + mexPrintf("Error during the computation of u[%d] at time %d (in first_table_u) (operation type %d)",first_table_u->index,j,int(first_table_u->type)); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + else if (fabs(u[first_table_u->index+ j*first_i_table_u->index])>very_big) + { + mexPrintf("(first) big u[%d]=%f>%f in type=%d",first_table_u->index+ j*first_i_table_u->index, double(u[first_table_u->index+ j*first_i_table_u->index]),very_big,first_table_u->type); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); } - if(isnan(u[first_table_u->index+ j*first_i_table_u->index]) || isinf(u[first_table_u->index+ j*first_i_table_u->index])) - { - mexPrintf("Error during the computation of u[%d] at time %d (in first_table_u) (operation type %d)",first_table_u->index,j,int(first_table_u->type)); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } first_table_u = first_table_u->pNext; first_i_table_u = first_i_table_u->pNext; nop++; } } -#ifdef PRINT_OUT_p +#ifdef PRINT_OUT_b + mexPrintf("//////////////////////////////////////////////////////////////\n"); mexPrintf("prologue\n"); #endif //int nb_prologue_push=0; prologue_table_u = F_prologue_table_u->pNext; - for(i = 0;i < nb_prologue_table_u;i++) + for (i = 0;i < nb_prologue_table_u ;i++) { switch (prologue_table_u->type) { - case 1: - u[prologue_table_u->index ] = u[prologue_table_u->op1 ] * u[prologue_table_u->op2 ]; -#ifdef PRINT_OUT_p - mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", prologue_table_u->index , prologue_table_u->op1 , prologue_table_u->op2 , u[prologue_table_u->index ]); + case 1: + u[prologue_table_u->index ] = u[prologue_table_u->op1 ] * u[prologue_table_u->op2 ]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", prologue_table_u->index , prologue_table_u->op1 , prologue_table_u->op2 , double(u[prologue_table_u->index ])); #endif - break; - case 2: - u[prologue_table_u->index ] += u[prologue_table_u->op1 ] * u[prologue_table_u->op2 ]; -#ifdef PRINT_OUT_p - mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n" , prologue_table_u->index , prologue_table_u->op1 , prologue_table_u->op2 , u[prologue_table_u->index ]); + break; + case 2: + u[prologue_table_u->index ] += u[prologue_table_u->op1 ] * u[prologue_table_u->op2 ]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n" , prologue_table_u->index , prologue_table_u->op1 , prologue_table_u->op2 , double(u[prologue_table_u->index ])); #endif - break; - case 3: - u[prologue_table_u->index ] = 1 / ( -u[prologue_table_u->op1 ]); -#ifdef PRINT_OUT_p - mexPrintf("u[%d]=1/(-u[%d])=%f\n", prologue_table_u->index, prologue_table_u->op1, u[prologue_table_u->index]); + break; + case 3: + u[prologue_table_u->index ] = 1 / ( -u[prologue_table_u->op1 ]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(-u[%d])=%f\n", prologue_table_u->index, prologue_table_u->op1, double(u[prologue_table_u->index])); #endif - break; - case 5: - //nb_prologue_push++; - Stack.push(u[prologue_table_u->index]); -#ifdef PRINT_OUT_p - mexPrintf("push(u[%d])\n", prologue_table_u->index ); + break; + case 5: + //nb_prologue_push++; + Stack.push(u[prologue_table_u->index]); +#ifdef PRINT_OUT_b + mexPrintf("push(u[%d])\n", prologue_table_u->index ); #endif - break; - case 6: - u[prologue_table_u->index ] = 1 / (1 - u[prologue_table_u->op1] * u[prologue_table_u->op2]); -#ifdef PRINT_OUT_p - mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", prologue_table_u->index, prologue_table_u->op1, prologue_table_u->op2, u[prologue_table_u->index]); + break; + case 6: + u[prologue_table_u->index ] = 1 / (1 - u[prologue_table_u->op1] * u[prologue_table_u->op2]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", prologue_table_u->index, prologue_table_u->op1, prologue_table_u->op2, double(u[prologue_table_u->index])); #endif - break; - case 7: - u[prologue_table_u->index] *= u[prologue_table_u->op1]; -#ifdef PRINT_OUT_p - mexPrintf("u[%d]*=u[%d]=%f\n", prologue_table_u->index, prologue_table_u->op1, u[prologue_table_u->index]); + break; + case 7: + u[prologue_table_u->index] *= u[prologue_table_u->op1]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]*=u[%d]=%f\n", prologue_table_u->index, prologue_table_u->op1, double(u[prologue_table_u->index])); #endif - break; + break; } - if(isnan(u[prologue_table_u->index]) || isinf(u[prologue_table_u->index])) + if (isnan(u[prologue_table_u->index]) || isinf(u[prologue_table_u->index])) { - mexPrintf("Error during the computation of u[%d] (in prologue_table_u)",prologue_table_u->index); + mexPrintf("Error during the computation of u[%d] type=%d (in prologue_table_u)",prologue_table_u->index, prologue_table_u->type); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + else if (fabs(u[prologue_table_u->index])>very_big) + { + mexPrintf("(prologue) big u[%d]=%f>%f type=%d",prologue_table_u->index, double(u[prologue_table_u->index]), very_big, prologue_table_u->type); filename+=" stopped"; mexErrMsgTxt(filename.c_str()); } prologue_table_u = prologue_table_u->pNext; nop++; } -#ifdef PRINT_OUT +#ifdef PRINT_OUT_b mexPrintf("middle_u (s_middle_count_loop=%d\n", s_middle_count_loop); #endif //int nb_middle_push=0; - for(j = 0;j < s_middle_count_loop - y_kmin;j++) + for (j = 0;j < s_middle_count_loop /*- y_kmin*/;j++) { //cout << "j=" << j << "\n"; -#ifdef PRINT_OUT +#ifdef PRINT_OUT_b mexPrintf("-----------------------------------------------------------------\n"); #endif middle_table_u = F_middle_table_u->pNext; middle_i_table_u = F_middle_i_table_u->pNext; - for(i = 0;i < nb_middle_table_u;i++) + for (i = 0;i < nb_middle_table_u;i++) { switch (middle_table_u->type) { - case 1: - u[middle_table_u->index + j*middle_i_table_u->index] = u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d+%d*%d=%d]=u[%d]*u[%d]=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, u[middle_table_u->index + j*middle_i_table_u->index]); + case 1: + u[middle_table_u->index + j*middle_i_table_u->index] = u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d+%d*%d=%d]=u[%d]*u[%d]=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, double(u[middle_table_u->index + j*middle_i_table_u->index])); #endif - break; - case 2: - u[middle_table_u->index + j*middle_i_table_u->index] += u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d+%d*%d=%d]+=u[%d]*u[%d]=%f\n" , middle_table_u->index, j, middle_i_table_u->index , middle_table_u->index + j*middle_i_table_u->index , middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, u[middle_table_u->index + j*middle_i_table_u->index]); + break; + case 2: + u[middle_table_u->index + j*middle_i_table_u->index] += u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d+%d*%d=%d]+=u[%d]*u[%d]=%f\n" , middle_table_u->index, j, middle_i_table_u->index , middle_table_u->index + j*middle_i_table_u->index , middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, double(u[middle_table_u->index + j*middle_i_table_u->index])); #endif - break; - case 3: - u[middle_table_u->index + middle_i_table_u->index] = 1 / ( -u[middle_table_u->op1 + j * middle_i_table_u->op1]); -#ifdef PRINT_OUT - mexPrintf("u[%d+%d*%d=%d]=1/(-u[%d])=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, u[middle_table_u->index + j*middle_i_table_u->index]); + break; + case 3: + u[middle_table_u->index + middle_i_table_u->index] = 1 / ( -u[middle_table_u->op1 + j * middle_i_table_u->op1]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d+%d*%d=%d]=1/(-u[%d])=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, double(u[middle_table_u->index + j*middle_i_table_u->index])); #endif - break; - case 5: -#ifdef PRINT_OUT - mexPrintf("push(u[%d+%d*%d=%d])\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index); + break; + case 5: +#ifdef PRINT_OUT_b + mexPrintf("push(u[%d+%d*%d=%d])\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index); #endif - //nb_middle_push++; - Stack.push(u[middle_table_u->index + j*middle_i_table_u->index]); - break; - case 6: - u[middle_table_u->index + j*middle_i_table_u->index] = 1 / (1 - u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]); -#ifdef PRINT_OUT - mexPrintf("u[%d+%d*%d=%d]=1/(1-u[%d]*u[%d])=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, u[middle_table_u->index + j*middle_i_table_u->index]); + //nb_middle_push++; + Stack.push(u[middle_table_u->index + j*middle_i_table_u->index]); + break; + case 6: + u[middle_table_u->index + j*middle_i_table_u->index] = 1 / (1 - u[middle_table_u->op1 + j * middle_i_table_u->op1] * u[middle_table_u->op2 + j * middle_i_table_u->op2]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d+%d*%d=%d]=1/(1-u[%d]*u[%d])=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, middle_table_u->op2 + j*middle_i_table_u->op2, double(u[middle_table_u->index + j*middle_i_table_u->index])); #endif - break; - case 7: - u[middle_table_u->index + j*middle_i_table_u->index] *= u[middle_table_u->op1 + j * middle_i_table_u->op1]; -#ifdef PRINT_OUT - mexPrintf("u[%d+%d*%d=%d]*=u[%d]=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, u[middle_table_u->index + j*middle_i_table_u->index]); + break; + case 7: + u[middle_table_u->index + j*middle_i_table_u->index] *= u[middle_table_u->op1 + j * middle_i_table_u->op1]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d+%d*%d=%d]*=u[%d]=%f\n", middle_table_u->index, j, middle_i_table_u->index, middle_table_u->index + j*middle_i_table_u->index, middle_table_u->op1 + j*middle_i_table_u->op1, double(u[middle_table_u->index + j*middle_i_table_u->index])); #endif - break; + break; + } + if (isnan(u[middle_table_u->index+ j*middle_i_table_u->index]) || isinf(u[middle_table_u->index+ j*middle_i_table_u->index])) + { + mexPrintf("Error during the computation of u[%d] at time %d type=%d (in middle_table_u)",middle_table_u->index,j,middle_table_u->type); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + else if (fabs(u[middle_table_u->index+ j*middle_i_table_u->index])>very_big) + { + mexPrintf("(middle) big u[%d]=%f>%f type=%d",middle_table_u->index+ j*middle_i_table_u->index, double(u[middle_table_u->index+ j*middle_i_table_u->index]), very_big,middle_table_u->type); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); } - if(isnan(u[middle_table_u->index+ j*middle_i_table_u->index]) || isinf(u[middle_table_u->index+ j*middle_i_table_u->index])) - { - mexPrintf("Error during the computation of u[%d] at time %d (in middle_table_u)",middle_table_u->index,j); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } middle_table_u = middle_table_u->pNext; middle_i_table_u = middle_i_table_u->pNext; nop++; @@ -596,251 +769,294 @@ simulate(int blck, int y_size, int it_, int y_kmin, int y_kmax) mexPrintf("last_u\n"); #endif last_table_u = F_last_table_u->pNext; - for(i = 0;i < nb_last_table_u ;i++) + for (i = 0;i < nb_last_table_u ;i++) { switch (last_table_u->type) { - case 1: - u[last_table_u->index] = u[last_table_u->op1] * u[last_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, u[last_table_u->index]); + case 1: + u[last_table_u->index] = u[last_table_u->op1] * u[last_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=u[%d]*u[%d]=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, double(u[last_table_u->index])); #endif - break; - case 2: - u[last_table_u->index] += u[last_table_u->op1] * u[last_table_u->op2]; -#ifdef PRINT_OUT - mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, u[last_table_u->index]); + break; + case 2: + u[last_table_u->index] += u[last_table_u->op1] * u[last_table_u->op2]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]+=u[%d]*u[%d]=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, double(u[last_table_u->index])); #endif - break; - case 3: - u[last_table_u->index] = 1 / ( -u[last_table_u->op1]); -#ifdef PRINT_OUT - mexPrintf("u[%d]=1/(-u[%d])=%f\n", last_table_u->index, last_table_u->op1, u[last_table_u->index]); + break; + case 3: + u[last_table_u->index] = 1 / ( -u[last_table_u->op1]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(-u[%d])=%f\n", last_table_u->index, last_table_u->op1, double(u[last_table_u->index])); #endif - break; - case 5: - Stack.push(u[last_table_u->index]); -#ifdef PRINT_OUT - mexPrintf("push(u[%d])\n", last_table_u->index); + break; + case 5: + Stack.push(u[last_table_u->index]); +#ifdef PRINT_OUT_b + mexPrintf("push(u[%d])\n", last_table_u->index); #endif - break; - case 6: - u[last_table_u->index] = 1 / (1 - u[last_table_u->op1] * u[last_table_u->op2]); -#ifdef PRINT_OUT - mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, u[last_table_u->index]); + break; + case 6: + u[last_table_u->index] = 1 / (1 - u[last_table_u->op1] * u[last_table_u->op2]); +#ifdef PRINT_OUT_b + mexPrintf("u[%d]=1/(1-u[%d]*u[%d])=%f\n", last_table_u->index, last_table_u->op1, last_table_u->op2, double(u[last_table_u->index])); #endif - break; - case 7: - u[last_table_u->index] *= u[last_table_u->op1]; -#ifdef PRINT_OUT - mexPrintf("u[%d]*=u[%d]=%f\n", last_table_u->index, last_table_u->op1, u[last_table_u->index]); + break; + case 7: + u[last_table_u->index] *= u[last_table_u->op1]; +#ifdef PRINT_OUT_b + mexPrintf("u[%d]*=u[%d]=%f\n", last_table_u->index, last_table_u->op1, double(u[last_table_u->index])); #endif - break; + break; } - if(isnan(u[last_table_u->index]) || isinf(u[last_table_u->index])) + if (isnan(u[last_table_u->index]) || isinf(u[last_table_u->index])) { - mexPrintf("Error during the computation of u[%d] (in last_table_u)",last_table_u->index); + mexPrintf("Error during the computation of u[%d] type=%d (in last_table_u)",last_table_u->index,last_table_u->type); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + else if (fabs(u[last_table_u->index])>very_big) + { + mexPrintf("(last) big u[%d]=%f>%f type=%d",last_table_u->index, double(u[last_table_u->index]),very_big,last_table_u->type); filename+=" stopped"; mexErrMsgTxt(filename.c_str()); } last_table_u = last_table_u->pNext; nop++; } - for(i = nb_last_table_y - 1;i >= 0;i--) + res1 = res2 =max_res = 0; + for (i = nb_last_table_y - 1;i >= 0;i--) { k = last_table_y[i].index; yy = 0; /*y[period + k] = 0;*/ -//#ifdef PRINT_OUT - mexPrintf("it_=%d\n", it_); - mexPrintf("->y[it_*y_size+%d]=y[%d]=", k, it_*y_size + k); -//#endif - for(j = last_table_y[i].nb - 1;j >= 0;j--) +#ifdef PRINT_OUT_y + //mexPrintf("it_=%d\n", it_); + mexPrintf("->y[it_*y_size+%d]=y[%d]=", k, period + k); +#endif + for (j = last_table_y[i].nb - 1;j >= 0;j--) { uu = Stack.top(); Stack.pop(); m = last_table_y[i].y_index[j]; -#ifdef PRINT_OUT - if(j > 0) +#ifdef PRINT_OUT_y + if (j > 0) { - if(m >= 0) - mexPrintf("u[%d](%f)*y[%d]+", last_table_y[i].u_index[j], uu, last_table_y[i].y_index[j]); + if (m >= 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", last_table_y[i].u_index[j], double(uu), m + period, double(y[period + m])); else - mexPrintf("u[%d](%f)+", last_table_y[i].u_index[j], uu); + mexPrintf("u[%d](%f)+", last_table_y[i].u_index[j], double(uu)); } else { - if(m >= 0) - mexPrintf("u[%d](%f)*y[%d]", last_table_y[i].u_index[j], uu, last_table_y[i].y_index[j]); + if (m >= 0) + mexPrintf("u[%d](%f)*y[%d](%f)", last_table_y[i].u_index[j], double(uu), m + period, double(y[period + m])); else - mexPrintf("u[%d](%f)", last_table_y[i].u_index[j], uu); + mexPrintf("u[%d](%f)", last_table_y[i].u_index[j], double(uu)); } #endif - if(m >= 0) + if (m >= 0) yy/*y[period + k]*/ += uu * y[period + m]; else yy/*y[period + k]*/ += uu; } - if(isnan(yy) || isinf(yy)) - { - mexPrintf("Error during the computation of y[%d] at time %d (in last_table_u)",k,period); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } - /*if(((k-73) % y_size)==0) - mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ - y[period + k] += slowc*(yy - y[period + k]); -//#ifdef PRINT_OUT - mexPrintf("=%f\n", y[period + k]); -//#endif + if (isnan(yy) || isinf(yy)) + { + mexPrintf("Error during the computation of y[%d] at time %d (in last_table_u)",k,period); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + /*if(((k-73) % y_size)==0) + mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ + err = fabs(yy - y[period + k]); + res1 += err; + if (max_res= y_decal;j--) +#ifdef PRINT_OUT_y + int deca=y_kmin - (nb_prologue_table_y / Size); +#endif + for (j = s_middle_count_loop+y_decal ;j >y_decal;j--) { - for(i = nb_middle_table_y - 1;i >= 0;i--) +#ifdef PRINT_OUT_y + mexPrintf("(per)j=%d y_decal=%d deca=%d in y compute\n",j,y_decal,deca); +#endif + for (i = nb_middle_table_y - 1;i >= 0;i--) { - k = middle_table_y[i].index + j * middle_i_table_y[i].index; + k = middle_table_y[i].index + (j-1) * middle_i_table_y[i].index; yy = 0; -//#ifdef PRINT_OUT +#ifdef PRINT_OUT_y mexPrintf("(0)y[%d]=", k ); -//#endif - for(l = middle_table_y[i].nb - 1;l >= 0;l--) +#endif + for (l = middle_table_y[i].nb - 1;l >= 0;l--) { uu = Stack.top(); - //mexPrintf("{"); Stack.pop(); - //mexPrintf("}"); - //nb_middle_pop++; - m = middle_table_y[i].y_index[l] + j * middle_i_table_y[i].y_index[l]; -//#ifdef PRINT_OUT - if(m >= 0) + m = middle_table_y[i].y_index[l] + (j/*-deca*/-1) * middle_i_table_y[i].y_index[l]; +#ifdef PRINT_OUT_y + if (/*m*/middle_table_y[i].y_index[l] >= 0) { - m1 = middle_table_y[i].u_index[l] + j * middle_i_table_y[i].u_index[l]; - if(l > 0) - mexPrintf("u[%d](%f)*y[%d](%f)+", m1, uu, m, y[m]); + m1 = middle_table_y[i].u_index[l] + (j-deca-1) * middle_i_table_y[i].u_index[l]; + if (l > 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", m1, double(uu), m, double(y[m])); else - mexPrintf("u[%d](%f)*y[%d](%f)", m1, uu, m, y[m]); + mexPrintf("u[%d](%f)*y[%d](%f)", m1, double(uu), m, double(y[m])); } else { - m1 = middle_table_y[i].u_index[l] + j * middle_i_table_y[i].u_index[l]; - if(l > 0) - mexPrintf("u[%d](%f)*y[%d](%f)+", m1, uu, m, 1.0); + m1 = middle_table_y[i].u_index[l] + (j-deca-1) * middle_i_table_y[i].u_index[l]; + if (l > 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", m1, double(uu), m, 1.0); else - mexPrintf("u[%d](%f)*y[%d](%f)", m1, uu, m, 1.0); + mexPrintf("u[%d](%f)*y[%d](%f)", m1, double(uu), m, 1.0); } -//#endif - if(m >= 0) +#endif + if (/*m*/middle_table_y[i].y_index[l] >= 0) yy += uu * y[m]; else yy += uu; } - //mexPrintf("y[%d]=%f\n",k,yy); - if(isnan(yy) || isinf(yy)) - { - mexPrintf("Error during the computation of y[%d] at time %d (in middle_table_u)",middle_table_y[i].index % y_size,j+middle_table_y[i].index / y_size); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } - /*if(((k-73) % y_size)==0) - mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ - y[k] += slowc*(yy - y[k]); -//#ifdef PRINT_OUT - mexPrintf("=%f\n", y[k]); -//#endif + //mexPrintf("y[%d]=%f\n",k,yy); + if (isnan(yy) || isinf(yy)) + { + mexPrintf("Error during the computation of y[%d] at time %d (in middle_table_u)",middle_table_y[i].index % y_size,j+middle_table_y[i].index / y_size); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + /*if(((k-73) % y_size)==0) + mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ + err = fabs(yy - y[k]); + res1 += err; + if (max_res= 0;i--) + for (i = nb_prologue_table_y - 1;i >= 0;i--) { k = prologue_table_y[i].index; yy = 0; -//#ifdef PRINT_OUT_p +#ifdef PRINT_OUT_y mexPrintf("(1)y[%d]=", k+y_decal*y_size); -//#endif - for(j = prologue_table_y[i].nb - 1;j >= 0;j--) +#endif + for (j = prologue_table_y[i].nb - 1;j >= 0;j--) { //nb_prologue_pop++; uu = Stack.top(); Stack.pop(); -//#ifdef PRINT_OUT_p - if(prologue_table_y[i].y_index[j] >= 0) +#ifdef PRINT_OUT_y + if (prologue_table_y[i].y_index[j] >= 0) { - if(j > 0) - mexPrintf("u[%d](%f)*y[%d](%f)+", prologue_table_y[i].u_index[j], uu, prologue_table_y[i].y_index[j], y[prologue_table_y[i].y_index[j]]); + if (j > 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", prologue_table_y[i].u_index[j], double(uu), prologue_table_y[i].y_index[j], double(y[prologue_table_y[i].y_index[j]])); else - mexPrintf("u[%d](%f)*y[%d](%f)", prologue_table_y[i].u_index[j], uu, prologue_table_y[i].y_index[j], y[prologue_table_y[i].y_index[j]]); + mexPrintf("u[%d](%f)*y[%d](%f)", prologue_table_y[i].u_index[j], double(uu), prologue_table_y[i].y_index[j], double(y[prologue_table_y[i].y_index[j]])); } else { - if(j > 0) - mexPrintf("u[%d](%f)*y[%d](%f)+", prologue_table_y[i].u_index[j], uu, prologue_table_y[i].y_index[j], 1.0); + if (j > 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", prologue_table_y[i].u_index[j], double(uu), prologue_table_y[i].y_index[j], 1.0); else - mexPrintf("u[%d](%f)*y[%d](%f)", prologue_table_y[i].u_index[j], uu, prologue_table_y[i].y_index[j], 1.0); + mexPrintf("u[%d](%f)*y[%d](%f)", prologue_table_y[i].u_index[j], double(uu), prologue_table_y[i].y_index[j], 1.0); } -//#endif - if(prologue_table_y[i].y_index[j] >= 0) + /*if(uu!=u[prologue_table_y[i].u_index[j]]) + { + mexPrintf("uu=%f != u[%d]=%f\n",uu,prologue_table_y[i].u_index[j],u[prologue_table_y[i].u_index[j]]); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + }*/ +#endif + if (prologue_table_y[i].y_index[j] >= 0) yy += uu * y[prologue_table_y[i].y_index[j]+y_decal*y_size]; else yy += uu; } - if(isnan(yy) || isinf(yy)) - { - mexPrintf("Error during the computation of y[%d] at time %d (in prologue_table_u)",k % y_size, k / y_size); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } - /*if(((k-73) % y_size)==0) - mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ - y[k+y_decal*y_size] += slowc*(yy - y[k+y_decal*y_size]); -//#ifdef PRINT_OUT_p - mexPrintf("=%f\n", y[k+y_decal*y_size]); -//#endif + if (isnan(yy) || isinf(yy)) + { + mexPrintf("Error during the computation of y[%d] at time %d (in prologue_table_u)",k % y_size, k / y_size); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + /*if(((k-73) % y_size)==0) + mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ + //mexPrintf("%f",yy); + err = fabs(yy - y[k+y_decal*y_size]); + res1 += err; + if (max_res= 0;i--) + for (i = nb_first_table_y - 1;i >= 0;i--) { k = first_table_y[i].index; yy = 0; -//#ifdef PRINT_OUT_p +#ifdef PRINT_OUT_y mexPrintf("(2)y[%d]=", k); -//#endif - for(j = first_table_y[i].nb - 1;j >= 0;j--) +#endif + for (j = first_table_y[i].nb - 1;j >= 0;j--) { uu = Stack.top(); Stack.pop(); -#ifdef PRINT_OUT_p - if(j > 0) - mexPrintf("u[%d](%f)*y[%d](%f)+", first_table_y[i].u_index[j], uu, first_table_y[i].y_index[j], y[first_table_y[i].y_index[j]]); +#ifdef PRINT_OUT_y + if (j > 0) + mexPrintf("u[%d](%f)*y[%d](%f)+", first_table_y[i].u_index[j], double(uu), first_table_y[i].y_index[j], double(y[first_table_y[i].y_index[j]])); else - mexPrintf("u[%d](%f)*y[%d](%f)", first_table_y[i].u_index[j], uu, first_table_y[i].y_index[j], y[first_table_y[i].y_index[j]]); + mexPrintf("u[%d](%f)*y[%d](%f)", first_table_y[i].u_index[j], double(uu), first_table_y[i].y_index[j], double(y[first_table_y[i].y_index[j]])); #endif - if(m >= 0) + if (m >= 0) yy += uu * y[first_table_y[i].y_index[j]]; else yy += uu; } - if(isnan(yy) || isinf(yy)) - { - mexPrintf("Error during the computation of y[%d] (in first_table_u)",k); - filename+=" stopped"; - mexErrMsgTxt(filename.c_str()); - } + if (isnan(yy) || isinf(yy)) + { + mexPrintf("Error during the computation of y[%d] (in first_table_u)",k); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } /*if(((k-73) % y_size)==0) mexPrintf("y[it_*y_size +73]=%f \n",yy);*/ + err = fabs(yy - y[k]); + res1 += err; + if (max_res 0) + if (!Stack.empty()) { + mexPrintf("Error Stack not empty (%d)",Stack.empty()); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + if (/*nb_first_table_u > 0*/print_it) + { + mexPrintf("res1 = %.10e\n", double(res1)); + mexPrintf("res2 = %.10e\n", double(res2)); + mexPrintf("max_res = %.10e\n", double(max_res)); mexPrintf("(**%f milliseconds u_count : %d nop : %d **)\n", 1000*(t2 - t1), u_count, nop); mexEvalString("drawnow;"); } @@ -848,3 +1064,2820 @@ simulate(int blck, int y_size, int it_, int y_kmin, int y_kmax) mexErrMsgTxt("Exit from Dynare");*/ } +#endif + + + + + +class SparseMatrix + { + public: + SparseMatrix(); + void Init(int periods, int y_kmin, int y_kmax, int Size, std::map ,int>, int> IM); + void ShortInit(int periods, int y_kmin, int y_kmax, int Size, std::map ,int>, int> IM); + void End(int Size); + void Insert(int r, int c, int u_index, int lag_index); + void Delete(int r,int c, int Size, int *b); + int At_Row(int r, NonZeroElem **first); + int At_Pos(int r, int c, NonZeroElem **first); + int At_Col(int c, NonZeroElem **first); + int At_Col(int c, int lag, NonZeroElem **first); + int NRow(int r); + int NCol(int c); + void Print(int Size,int *b); + int Get_u(); + void Delete_u(int pos); + void Clear_u(); + void Print_u(); + void mxFree_NZE(void* pos); + NonZeroElem* mxMalloc_NZE(); + int complete(int beg_t, int Size, int periods, int *b); + longd bksub( int tbreak, int last_period, int Size, long int *nmul, longd slowc_l); + void Print_heap(); + void init_Mem(); + void run_triangular(int nop_all,int *op_all); + void run_it(int nop_all,int *op_all); + void run_u_period1(int periods); + + + vector u_liste; + //set mem_NZE; + //vector used_in_chunk; + vector Chunk_Stack; + //map> chunk_vector_list; + int CHUNK_SIZE, CHUNK_BLCK_SIZE, Nb_CHUNK; + int CHUNK_heap_pos/*, CHUNK_heap_max_size*/; + //int *NZE_pos, *NZE_rpos; + NonZeroElem** NZE_Mem_add; + //bool *NZE_Mem_available; + NonZeroElem* NZE_Mem; + }; + +SparseMatrix::SparseMatrix() +{ + init_Mem(); +} + + +void +SparseMatrix::Print_heap() +{ + mexPrintf("i :"); + for (i=0;i=0)) + break; + } + Chunk_Stack.push_back((NonZeroElem*)pos); +} + + + + +int SparseMatrix::NRow(int r) +{ + return NbNZRow[r]; +} + +int SparseMatrix::NCol(int c) +{ + return NbNZCol[c]; +} + + +int SparseMatrix::At_Row(int r, NonZeroElem **first) +{ + (*first)=FNZE_R[r]; + return NbNZRow[r]; +} + +int +SparseMatrix::At_Pos(int r, int c, NonZeroElem **first) +{ + (*first)=FNZE_R[r]; + int i=0; + while ((*first)->c_index!=c && (*first)->NZE_R_N) + { +#ifdef PRINT_OUT + mexPrintf("looking not CRS [%d, %d]\n",first->r_index,first->c_index); +#endif + //firsta=(*first); + (*first)=(*first)->NZE_R_N; + } + if ((*first)->c_index!=c) + mexPrintf("----------------------- cannot find M[%d, %d]\n",r,c); + return NbNZRow[r]; +} + + +int SparseMatrix::At_Col(int c, NonZeroElem **first) +{ + (*first)=FNZE_C[c]; + return NbNZCol[c]; +} + +int SparseMatrix::At_Col(int c, int lag, NonZeroElem **first) +{ + (*first)=FNZE_C[c]; + int i=0; + while ((*first)->lag_index!=lag && (*first)) + { +#ifdef PRINT_OUT + mexPrintf("first->lag_index(%d) != %d\n",(*first)->lag_index,lag); +#endif + (*first)=(*first)->NZE_C_N; + } + if ((*first)) + { +#ifdef PRINT_OUT + mexPrintf("first=%x\n",(*first)); +#endif + NonZeroElem* firsta=(*first); + if (!firsta->NZE_C_N) + i++; + else + { + while (firsta->lag_index==lag && firsta->NZE_C_N) + { +#ifdef PRINT_OUT + mexPrintf("firsta->lag_index(%d) == %d, eq=%d, var=%d\n",firsta->lag_index,lag, firsta->r_index, firsta->c_index); +#endif + firsta=firsta->NZE_C_N; + i++; + } + if (firsta->lag_index==lag) i++; + } + } +#ifdef PRINT_OUT + mexPrintf("i=%d\n",i); +#endif + return i; +} + + +longd tdelete1=0, tdelete2=0, tdelete21=0, tdelete22=0, tdelete221=0, tdelete222=0; + +void SparseMatrix::Delete(int r,int c, int Size, int *b) +{ + NonZeroElem *first=FNZE_R[r], *firsta=NULL; +#ifdef PROFILER + pctimer_t td0, td1, td2; +#endif + /*mexPrintf("r=%d & c=%d\n",r,c); + if((r==11 || r==14) && c==6) + Print(Size,b);*/ +#ifdef PROFILER + td0=pctimer(); +#endif + while (first->c_index!=c && first->NZE_R_N) + { +#ifdef PRINT_OUT + mexPrintf("looking not CRS [%d, %d]\n",first->r_index,first->c_index); +#endif + firsta=first; + first=first->NZE_R_N; + } +#ifdef PRINT_OUT + mexPrintf("CRS [%d, %d]=c(%d)\n",first->r_index,first->c_index,c); +#endif + if (first->c_index==c) + { + if (firsta!=NULL) + firsta->NZE_R_N=first->NZE_R_N; + if (first==FNZE_R[r]) + FNZE_R[r]=first->NZE_R_N; + NbNZRow[r]--; + } + else + mexPrintf("Error (in Delete): in CRS element r=%d, c=%d does not exist (first->c_index=%d)\n",r,c,first->c_index); +#ifdef PROFILER + tdelete1+=pctimer()-td0; + td0=pctimer(); + td1=pctimer(); +#endif + first=FNZE_C[c]; + firsta=NULL; + while (first->r_index!=r && first->NZE_C_N) + { +#ifdef PRINT_OUT + mexPrintf("looking not CSS [%d, %d]\n",first->r_index,first->c_index); +#endif + firsta=first; + first=first->NZE_C_N; + } +#ifdef PRINT_OUT + mexPrintf("CSS [%d, %d]=r(%d)\n",first->r_index,first->c_index,r); +#endif +#ifdef PROFILER + tdelete21+=pctimer()-td1; + td1=pctimer(); +#endif + if (first->r_index==r) + { + if (firsta!=NULL) + firsta->NZE_C_N=first->NZE_C_N; + if (first==FNZE_C[c]) + FNZE_C[c]=first->NZE_C_N; +#ifdef PROFILER + td2=pctimer(); +#endif + Delete_u(first->u_index); +#ifdef PROFILER + tdelete221+=pctimer()-td2; + td2=pctimer(); +#endif +#ifdef NEW_ALLOC + mxFree_NZE(first); +#else + mxFree(first); +#endif + NbNZCol[c]--; +#ifdef PROFILER + tdelete222+=pctimer()-td2; +#endif + } + else + { + Print(Size,b); + mexPrintf("Error (in Delete): in CCS element r=%d, c=%d does not exist (first->r_index=%d) \n",r,c,first->r_index); + } +#ifdef PROFILER + tdelete22+=pctimer()-td1; + tdelete2+=pctimer()-td0; +#endif +} + + +void SparseMatrix::Print(int Size, int *b) +{ + int a,i,j,k,l; + mexPrintf(" "); + for (k=0;kc_index-a);l++) + mexPrintf(" "); + mexPrintf("%-2d ",first->u_index); + a=first->c_index+1; + first=first->NZE_R_N; + } + for (k=a;kc_index-a);l++) + mexPrintf(" "); + mexPrintf("%8.4f",double(u[first->u_index])); + a=first->c_index+1; + first=first->NZE_R_N; + } + for (k=a;ku_index=u_index; + firstn->r_index=r; + firstn->c_index=c; + firstn->lag_index=lag_index; + FNZE_R[r]=firstn; + firstn->NZE_R_N=first; + NbNZRow[r]++; + } + else + { +#ifdef PRINT_OUT + mexPrintf("first->c_index=%d, first->NZE_R_N=%x\n",first->c_index, first->NZE_R_N); +#endif + while (first->c_indexNZE_R_N) + { + firsta=first; +#ifdef PRINT_OUT + mexPrintf("drop first->c_index=%d c=%d\n",first->c_index,c); +#endif + first=first->NZE_R_N; + } + if (first->c_index!=c) + { +#ifdef PRINT_OUT + mexPrintf("retain first->c_index=%d c=%d\n",first->c_index,c); +#endif + //mexPrintf("o"); +#ifdef NEW_ALLOC + firstn=mxMalloc_NZE(); +#else + firstn=(NonZeroElem*)mxMalloc(sizeof(NonZeroElem)); +#endif + //mexPrintf("k"); + /*if(firstn==NULL) + mexPrintf("Error in allocator\n");*/ + firstn->u_index=u_index; + firstn->r_index=r; + firstn->c_index=c; + firstn->lag_index=lag_index; + if (first->c_index>c) + { + //mexPrintf("- %x",firstn); + if (first==FNZE_R[r]) + FNZE_R[r]=firstn; + //mexPrintf("^"); + if (firsta!=NULL) + firsta->NZE_R_N=firstn; + //mexPrintf("จ"); + firstn->NZE_R_N=first; + //mexPrintf("+"); + } + else /*first.c_indexNZE_R_N=firstn; + firstn->NZE_R_N=NULL; + //mexPrintf("*"); + } + NbNZRow[r]++; + + } + else + mexPrintf("Error (in Insert): in CRS element r=%, c=%d already exists\n",r,c); + } + //mexPrintf("a"); + first=FNZE_C[c]; + firsta=NULL; + while (first->r_indexNZE_C_N) + { + firsta=first; + first=first->NZE_C_N; + } + //mexPrintf("y"); + if (first->r_index!=r) + { + if (first->r_index>r) + { + if (first==FNZE_C[c]) + FNZE_C[c]=firstn; + if (firsta!=NULL) + firsta->NZE_C_N=firstn; + firstn->NZE_C_N=first; + } + else /*first.r_indexNZE_C_N=firstn; + firstn->NZE_C_N=NULL; + } + NbNZCol[c]++; + } + else + mexPrintf("Error (in Insert): in CCS element r=%, c=%d already exists\n",r,c); + //mexPrintf("!\n"); +} + +void Read_SparseMatrix(std::string file_name, int Size, int periods, int y_kmin, int y_kmax) +{ + int i,j,eq,var,lag; + //mexPrintf("read_sparseMatrix\n"); + filename=file_name; + if (!SaveCode.is_open()) + { +#ifdef PRINT_OUT + mexPrintf("file opened\n"); +#endif + SaveCode.open((file_name + ".bin").c_str(), std::ios::in | std::ios::binary); + if (!SaveCode.is_open()) + { + mexPrintf("Error : Can't open file \"%s\" for reading\n", (file_name + ".bin").c_str()); + mexErrMsgTxt("Exit from Dynare"); + } +#ifdef PRINT_OUT + mexPrintf("done\n"); +#endif + } + IM_i.clear(); + for (i=0;i(&eq), sizeof(eq)); + SaveCode.read(reinterpret_cast(&var), sizeof(var)); + SaveCode.read(reinterpret_cast(&lag), sizeof(lag)); + SaveCode.read(reinterpret_cast(&j), sizeof(j)); + //mexPrintf("eq=%d var=%d lag=%d j=%d\n",eq,var,lag,j); + IM_i[std::make_pair(std::make_pair(eq, var), lag)] = j; + } +#ifdef MEM_ALLOC_CHK + mexPrintf("index_vara=(int*)mxMalloc(%d*sizeof(int))\n",Size*(periods+y_kmin+y_kmax)); +#endif + index_vara=(int*)mxMalloc(Size*(periods+y_kmin+y_kmax)*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + for (j=0;j(&index_vara[j]), sizeof(*index_vara)); + //mexPrintf("index_var[%d]=%d\n",j,index_var[j]); + } + for (i=1;i ,int>, int> IM) +{ + int t,i,j, eq, var, lag; + longd tmp_b=0.0; + std::map ,int>, int>::iterator it4; + NonZeroElem* first; +#ifdef MEM_ALLOC_CHK + mexPrintf("pivot=(int*)mxMalloc(%d*sizeof(int))\n",Size*periods); +#endif + pivot=(int*)mxMalloc(Size*periods*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("pivota=(int*)mxMalloc(%d*sizeof(int))\n",Size*periods); +#endif + pivotk=(int*)mxMalloc(Size*periods*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("pivotv=(longd*)mxMalloc(%d*sizeof(longd))\n",Size*periods); +#endif + pivotv=(longd*)mxMalloc(Size*periods*sizeof(longd)); +#ifdef MEM_ALLOC_CHK + mexPrintf("pivotva=(longd*)mxMalloc(%d*sizeof(longd))\n",Size*periods); +#endif + pivotva=(longd*)mxMalloc(Size*periods*sizeof(longd)); +#ifdef MEM_ALLOC_CHK + mexPrintf("b=(int*)mxMalloc(%d*sizeof(int))\n",Size*periods); +#endif + b=(int*)mxMalloc(Size*periods*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("line_done=(bool*)mxMalloc(%d*sizeof(bool))\n",Size*periods); +#endif + line_done=(bool*)mxMalloc(Size*periods*sizeof(bool)); + memset(line_done, 0, periods*Size*sizeof(*line_done)); + CHUNK_BLCK_SIZE=u_count; + print_err=true; + swp_f=false; + g_save_op=NULL; + g_nop_all=0; + /*#ifdef PRINT_OUT + mexPrintf("alloc index_vara=%x\n",index_vara); + #endif + //mexPrintf("ok0\n"); + for(j=0;jfirst.first.second; + if (eq!=it4->first.first.first+Size*t) + tmp_b=0; + eq=it4->first.first.first+Size*t; +#ifdef PRINT_OUT + mexPrintf("eq=%d, var=%d",eq,var); +#endif + if (var<(periods+y_kmax)*Size) + { + lag=it4->first.second; +#ifdef PRINT_OUT + mexPrintf(", lag =%d, ti_y_kmin=%d, ti_y_kmax=%d ", lag, ti_y_kmin, ti_y_kmax); +#endif + if (lag<=ti_y_kmax && lag>=ti_y_kmin) + { + //mexPrintf("u_index=%d, eq=%d, var=%d, lag=%d ",it4->second+u_count_init*t, eq, var, lag); + var+=Size*t; + //mexPrintf("u_index=%d, eq=%d, var=%d, lag=%d ",it4->second+u_count_init*t, eq, var, lag); + NbNZRow[eq]++; + NbNZCol[var]++; +#ifdef NEW_ALLOC + first=mxMalloc_NZE(); +#else + first=(NonZeroElem*)mxMalloc(sizeof(NonZeroElem)); +#endif + first->NZE_C_N=NULL; + first->NZE_R_N=NULL; + first->u_index=it4->second+u_count_init*t; + first->r_index=eq; + first->c_index=var; + first->lag_index=lag; + + if (FNZE_R[eq]==NULL) + { + FNZE_R[eq]=first; + //mexPrintf("FNZE_R[%d]=%x\n",eq,FNZE_R[eq]); + } + if (FNZE_C[var]==NULL) + FNZE_C[var]=first; + if (temp_NZE_R[eq]!=NULL) + temp_NZE_R[eq]->NZE_R_N=first; + if (temp_NZE_C[var]!=NULL) + temp_NZE_C[var]->NZE_C_N=first; + temp_NZE_R[eq]=first; + temp_NZE_C[var]=first; +#ifdef PRINT_OUT + mexPrintf("=> "); +#endif + } + else + { +#ifdef PRINT_OUT + mexPrintf("nn "); + mexPrintf("tmp_b+=u[%d]*y[index_var[%d]]\n",it4->second+u_count_init*t,var+Size*(y_kmin+t)); + mexPrintf("tmp_b+=u[%d](%f)*y[%d(%d)](%f)",it4->second+u_count_init*t,u[it4->second+u_count_init*t], index_vara[var+Size*(y_kmin+t)],var+Size*(y_kmin+t),y[index_vara[var+Size*(y_kmin+t)]]); +#endif + tmp_b+=u[it4->second+u_count_init*t]*y[index_vara[var+Size*(y_kmin+t)]]; + } + } + else + { +#ifdef PRINT_OUT + mexPrintf(""); +#endif + b[eq]=it4->second+u_count_init*t; + u[b[eq]]+=tmp_b; +#ifdef PRINT_OUT + mexPrintf("=> b"); +#endif + } +#ifdef PRINT_OUT + mexPrintf(" u[%d] = %e\n",it4->second+u_count_init*t,double(u[it4->second+u_count_init*t])); +#endif + it4++; + } + } + //mexPrintf("ok3\n"); + mxFree(temp_NZE_R); + mxFree(temp_NZE_C); + //mexPrintf("end Init\n"); +} + +void SparseMatrix::ShortInit(int periods, int y_kmin, int y_kmax, int Size, std::map ,int>, int> IM) +{ +//#ifdef PRINT_OUT + //mexPrintf("SparseMatrix::ShortInit periods=%d Size=%d\n",periods, Size); +//#endif + int t,i,j, eq, var, lag; + longd tmp_b=0.0; + std::map ,int>, int>::iterator it4; + NonZeroElem* first; + + for (t=0;tfirst.first.second; + if (eq!=it4->first.first.first+Size*t) + tmp_b=0; + eq=it4->first.first.first+Size*t; +#ifdef PRINT_OUT + mexPrintf("eq=%d, var=%d",eq,var); +#endif + if (var<(periods+y_kmax)*Size) + { + lag=it4->first.second; +#ifdef PRINT_OUT + mexPrintf(", lag =%d, ti_y_kmin=%d, ti_y_kmax=%d ", lag, ti_y_kmin, ti_y_kmax); +#endif + if (lag<=ti_y_kmax && lag>=ti_y_kmin) + { + //mexPrintf("u_index=%d, eq=%d, var=%d, lag=%d ",it4->second+u_count_init*t, eq, var, lag); + var+=Size*t; + } + else + { +#ifdef PRINT_OUT + mexPrintf("nn "); + mexPrintf("tmp_b+=u[%d]*y[index_var[%d]]\n",it4->second+u_count_init*t,var+Size*(y_kmin+t)); + mexPrintf("tmp_b+=u[%d](%f)*y[%d(%d)](%f)",it4->second+u_count_init*t,u[it4->second+u_count_init*t], index_vara[var+Size*(y_kmin+t)],var+Size*(y_kmin+t),y[index_vara[var+Size*(y_kmin+t)]]); +#endif + tmp_b+=u[it4->second+u_count_init*t]*y[index_vara[var+Size*(y_kmin+t)]]; + } + } + else + { +#ifdef PRINT_OUT + mexPrintf(""); +#endif + b[eq]=it4->second+u_count_init*t; + u[b[eq]]+=tmp_b; +#ifdef PRINT_OUT + mexPrintf("=> b"); +#endif + } +#ifdef PRINT_OUT + mexPrintf(" u[%d] = %e\n",it4->second+u_count_init*t,double(u[it4->second+u_count_init*t])); +#endif + it4++; + } + } + //mexPrintf("end Init\n"); +} + + + +int SparseMatrix::Get_u() +{ + if (!u_liste.empty()) + { + int i=u_liste.back(); + u_liste.pop_back(); +#ifdef PRINT_OUT + mexPrintf("Get_u=%d\n",i); +#endif + return i; + } + else + { + if (u_countNZE_R_N; + mxFree(first); + first=firsta; + } + } +#endif + mxFree(FNZE_R); + mxFree(FNZE_C); + mxFree(NbNZRow); + mxFree(NbNZCol); + mxFree(b); + mxFree(line_done); +} + +bool +compare( int *save_op, int *save_opa, int *save_opaa, int beg_t, int periods, long int nop4, int Size, long int *ndiv, long int *nsub) +{ + //mexPrintf("=>in compare beg_t=%d\n",beg_t); + long int i,j,nop=nop4/4, t, index_d, k; + longd r=0.0; + bool OK=true; + + int *diff1, *diff2; + //mexPrintf("nop=%d\n",nop); + //g_save_op=(int*)mxMalloc(nop*5*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("diff1=(int*)mxMalloc(%d*sizeof(int))\n",nop); +#endif + diff1=(int*)mxMalloc(nop*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("diff1=(int*)mxMalloc(%d*sizeof(int))\n",nop); +#endif + diff2=(int*)mxMalloc(nop*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + j=k=0; + for (i=0;i=periods-beg_t-y_kmax)) + mexPrintf("u[%d]/=%f=%f\n",index_d,double(r),double(u[index_d]));*/ + /*toto << i_toto << " u[" << index_d << "]/=" << r << "=" << u[index_d] << endl; + i_toto++;*/ + //(*ndiv)++; + break; + case FSUB : + u[index_d]-=u[save_op[i+2]+t*diff2[j]]*r; +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f)\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],r,u[index_d] ); +#endif + + /*if((t==periods-beg_t-y_kmax)) + mexPrintf("u[%d]-=u[%d]*%f=%f\n",index_d,save_op[i+2]+t*diff2[j],double(r),double(u[index_d]));*/ + /*toto << i_toto << " u[" << index_d << "]-=u[" << save_op[i+2]+t*diff2[j] << "]*" << r << "=" << u[index_d] << endl; + i_toto++;*/ + //(*nsub)++; + break; + case FLESS: + u[index_d]=-u[save_op[i+2]+t*diff2[j]]*r; +#ifdef PRINT_u + mexPrintf("FLESS u[%d]=-u[%d](%f)*r(%f)=(%f)\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],r,u[index_d] ); +#endif + + /*if((t==periods-beg_t-y_kmax)) + mexPrintf("u[%d]=-u[%d]*%f=%f\n",index_d,save_op[i+2]+t*diff2[j],double(r),double(u[index_d]));*/ + /*toto << i_toto << "u[" << index_d << "]=-u[" << save_op[i+2]+t*diff2[j] << "]*" << r << "=" << u[index_d] << endl; + i_toto++;*/ + //(*nsub)++; + break; + } + j++; + } + } + int t1=t; + for (t=t1;t=u_count_alloc) + { + u_count_alloc+=5*u_count_alloc_save; +#ifdef MEM_ALLOC_CHK + mexPrintf("u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd))\n",u_count_alloc); +#endif + u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + if (!u) + { + mexPrintf("Error in Get_u: memory exhausted (realloc(%d))\n",u_count_alloc*sizeof(longd)); + mexErrMsgTxt("Exit from Dynare"); + } + } + switch (save_op[i]) + { + case FLD : + r=u[index_d]; +#ifdef PRINT_u + mexPrintf("FLD u[%d] (%f)\n",index_d,u[index_d]); +#endif + + break; + case FDIV : + u[index_d]/=r; +#ifdef PRINT_u + mexPrintf("FDIV u[%d](%f)/=r(%f)=(%f)\n",index_d,u[index_d],r,u[index_d]); +#endif + + /*if(index_d==81726) + mexPrintf("(0) u[%d]/=%f=%f save_op[%d]=%d diff1[%d]=%d\n",index_d,double(r),double(u[index_d]),i+1,save_op[i+1],j,diff1[j]);*/ +#ifdef WRITE_u + toto << i_toto << " u[" /*<< index_d*/ << "]/=" << r << "=" << u[index_d] << /*" lag_index=" << save_op[i+3] << " periods-beg_t-t=" << periods-beg_t-t <<*/ endl; + i_toto++; +#endif + //(*ndiv)++; + break; + case FSUB : + u[index_d]-=u[save_op[i+2]+t*diff2[j]]*r; + //if((t>=periods-beg_t-y_kmax)) +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f)\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],r,u[index_d] ); +#endif + /*if(index_d==81726) + mexPrintf("(1) u[%d]-=u[%d](%f)*%f=%f save_op[%d]=%d diff1[%d]=%d\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],double(r),double(u[index_d]),i+1,save_op[i+1],j,diff1[j]);*/ +#ifdef WRITE_u + toto << i_toto << " u[" /*<< index_d*/ << "]-=u[" /*<< save_op[i+2]+t*diff2[j]*/ << "]*" << r << "=" << u[index_d] << /*" lag_index=" << save_op[i+3] << " periods-beg_t-t=" << periods-beg_t-t <<*/ endl; + i_toto++; +#endif + //(*nsub)++; + break; + case FLESS: + u[index_d]=-u[save_op[i+2]+t*diff2[j]]*r; + //if((t>=periods-beg_t-y_kmax)) +#ifdef PRINT_u + mexPrintf("FLESS u[%d]=-u[%d](%f)*r(%f)=(%f)\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],r,u[index_d] ); +#endif + /*if(index_d==81726) + mexPrintf("(3) u[%d]=-u[%d](%f)*r(%f)=%f save_op[%d]=%d diff1[%d]=%d\n",index_d,save_op[i+2]+t*diff2[j],u[save_op[i+2]+t*diff2[j]],double(r),double(u[index_d]),i+1,save_op[i+1],j,diff1[j]);*/ +#ifdef WRITE_u + toto << i_toto << " u[" /*<< index_d*/ << "]=-u[" /*<< save_op[i+2]+t*diff2[j]*/ << "]*" << r << "=" << u[index_d] << /*" lag_index=" << save_op[i+3] << " periods-beg_t-t=" << periods-beg_t-t <<*/ endl; + i_toto++; +#endif + //(*nsub)++; + break; + } + } + j++; + } + } +#ifdef WRITE_u + toto.close(); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); +#endif + } + //mexPrintf("out of compare\n"); + mxFree(diff1); + mxFree(diff2); + //mexPrintf("Compare=%d\n",OK); + return OK; +} + +void +SparseMatrix::run_u_period1(int periods) +{ + longd r; + int index_d, t; + for (t=0;t=u_count_alloc) + { + u_count_alloc+=5*u_count_alloc_save; +#ifdef MEM_ALLOC_CHK + mexPrintf("u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd))\n",u_count_alloc); +#endif + u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + if (!u) + { + mexPrintf("Error in Get_u: memory exhausted (realloc(%d))\n",u_count_alloc*sizeof(longd)); + mexErrMsgTxt("Exit from Dynare"); + } + } + switch (g_save_op[i]) + { + case FLD : + r=u[index_d]; +#ifdef PRINT_u + mexPrintf("FLD u[%d] (%f)\n",index_d,u[index_d]); +#endif + break; + case FDIV : + u[index_d]/=r; +#ifdef PRINT_u + mexPrintf("FDIV u[%d](%f)/=r(%f)=(%f)\n",index_d,u[index_d],r,u[index_d]); +#endif + break; + case FSUB : + u[index_d]-=u[g_save_op[i+3]+t*g_save_op[i+4]]*r; +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f) index1=%d index2=%d\n",index_d,g_save_op[i+3]+t*g_save_op[i+4],u[g_save_op[i+3]+t*g_save_op[i+4]],r,u[index_d],g_save_op[i+1],g_save_op[i+2] ); +#endif + break; + case FLESS: + u[index_d]=-u[g_save_op[i+3]+t*g_save_op[i+4]]*r; +#ifdef PRINT_u + mexPrintf("FLESS u[%d]=-u[%d](%f)*r(%f)=(%f) index1=%d index2=%d\n",index_d,g_save_op[i+3]+t*g_save_op[i+4],u[g_save_op[i+3]+t*g_save_op[i+4]],r,u[index_d],g_save_op[i+1],g_save_op[i+2] ); +#endif + break; + } + i+=5; + } + } + //mexPrintf("end of run_triangular\n"); +} + + + +void +write_swp_f(int *save_op_all,long int *nop_all) +{ + swp_f=true; + swp_f_b++; + mexPrintf("writing the block %d with size=%d\n",swp_f_b,*nop_all); + if (!SaveCode_swp.is_open()) + { + mexPrintf("open the swp file for writing\n"); +#ifdef PRINT_OUT + mexPrintf("file opened\n"); +#endif + SaveCode_swp.open((filename + ".swp").c_str(), std::ios::out | std::ios::binary); + if (!SaveCode_swp.is_open()) + { + mexPrintf("Error : Can't open file \"%s\" for writing\n", (filename + ".swp").c_str()); + mexErrMsgTxt("Exit from Dynare"); + } +#ifdef PRINT_OUT + mexPrintf("done\n"); +#endif + } + SaveCode_swp.write(reinterpret_cast(nop_all), sizeof(*nop_all)); + SaveCode_swp.write(reinterpret_cast(save_op_all), (*nop_all)*sizeof(int)); + (*nop_all)=0; +} + +bool +read_swp_f(int **save_op_all,long int *nop_all) +{ + int j; + swp_f=true; + if (!SaveCode_swp.is_open()) + { +#ifdef PRINT_OUT + mexPrintf("file opened\n"); +#endif + mexPrintf("open the file %s\n",(filename + ".swp").c_str()); + SaveCode_swp.open((filename + ".swp").c_str(), std::ios::in | std::ios::binary); + j=SaveCode_swp.is_open(); + mexPrintf("is_open()=%d\n",j); + + if (!SaveCode_swp.is_open()) + { + mexPrintf("Error : Can't open file \"%s\" for reading\n", (filename + ".swp").c_str()); + mexErrMsgTxt("Exit from Dynare"); + } +#ifdef PRINT_OUT + mexPrintf("done\n"); +#endif + SaveCode_swp.seekg(0); + } + + j=SaveCode_swp.tellg(); + //mexPrintf("SaveCode_swp.tellg()=%d\n",int(j)); + SaveCode_swp.read(reinterpret_cast(nop_all), sizeof(*nop_all)); + (*save_op_all)=(int*)mxMalloc((*nop_all)*sizeof(int)); + SaveCode_swp.read(reinterpret_cast(*save_op_all), (*nop_all)*sizeof(int)); + return(SaveCode_swp.good()); +} + + +void +close_swp_f() +{ + if (SaveCode_swp.is_open()) + { + SaveCode_swp.close(); + mexPrintf("close the swp file\n"); + } +} + + +void +SparseMatrix::run_it(int nop_all,int *op_all) +{ + longd r; + int index_d; + for (long int i=0;i=u_count_alloc) + { + u_count_alloc+=5*u_count_alloc_save; +#ifdef MEM_ALLOC_CHK + mexPrintf("u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd))\n",u_count_alloc); +#endif + u=(longd*)mxRealloc(u,u_count_alloc*sizeof(longd)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + if (!u) + { + mexPrintf("Error in Get_u: memory exhausted (realloc(%d))\n",u_count_alloc*sizeof(longd)); + mexErrMsgTxt("Exit from Dynare"); + } + } + switch (op_all[i]) + { + case FLD : + r=u[index_d]; +#ifdef PRINT_u + mexPrintf("FLD u[%d] (%f)\n",index_d,u[index_d]); +#endif + i+=2; + break; + case FDIV : + u[index_d]/=r; +#ifdef PRINT_u + mexPrintf("FDIV u[%d](%f)/=r(%f)=(%f)\n",index_d,u[index_d],r,u[index_d]); +#endif + i+=2; + break; + case FSUB : + u[index_d]-=u[op_all[i+2]]*r; +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f)\n",index_d,op_all[i+2],u[op_all[i+2]],r,u[index_d]); +#endif + i+=3; + break; + case FLESS: + u[index_d]=-u[op_all[i+2]]*r; +#ifdef PRINT_u + mexPrintf("FLESS u[%d]=-u[%d](%f)*r(%f)=(%f)\n",index_d,op_all[i+2],u[op_all[i+2]],r,u[index_d]); +#endif + i+=3; + break; + } + } + //mexPrintf("end of run_triangular\n"); +} + + +void +SparseMatrix::run_triangular(int nop_all,int *op_all) +{ + int j=0; + mexPrintf("begining of run_triangular nop_all=%d\n",nop_all); + if (swp_f) + { + bool OK=true; + int* save_op; + long int nop; + while (OK) + { + mexPrintf("reading blck%d\n",j++); + OK=read_swp_f(&save_op,&nop); + //mexPrintf("OK=%d\n",OK); + if (OK) + { + run_it(nop,save_op); + mxFree(save_op); + } + } + } + run_it(nop_all,op_all); +} + +int +SparseMatrix::complete(int beg_t, int Size, int periods, int *b) +{ + long int i, j, k, nop, nopa, nop1, cal_y, nb_var, pos, t, ti, max_var, min_var; + NonZeroElem *first; + int *save_code; + int *diff; + longd yy=0.0, err, ferr; + + /*mexPrintf("in complete t=%d\n",beg_t); + mexPrintf("u_count=%d\n",u_count);*/ + + int size_of_save_code=(1+y_kmax)*Size*(Size+1+4)/2*4; +#ifdef MEM_ALLOC_CHK + mexPrintf("save_code=(int*)mxMalloc(%d*sizeof(int))\n",size_of_save_code); +#endif + save_code=(int*)mxMalloc(size_of_save_code*sizeof(int)); + int size_of_diff=(1+y_kmax)*Size*(Size+1+4); +#ifdef MEM_ALLOC_CHK + mexPrintf("diff=(int*)mxMalloc(%d*sizeof(int))\n",size_of_diff); +#endif + diff=(int*)mxMalloc(size_of_diff*sizeof(int)); +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + //mexPrintf("Size=%d\n",Size); + cal_y=y_size*y_kmin; + + i=(beg_t+1)*Size-1; + nop=0; + for (j=i;j>i-Size;j--) + { + pos=pivot[j]; + nb_var=At_Row(pos,&first); + first=first->NZE_R_N; + nb_var--; + //mexPrintf("y[%d]=",index_vara[j]+y_size); + //yy=0; + save_code[nop]=FLDZ; + save_code[nop+1]=0; + save_code[nop+2]=0; + save_code[nop+3]=0; + if ((nop+3)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop+2,size_of_save_code); + nop+=4; + for (k=0;kc_index]+cal_y]*u[first->u_index]; + //mexPrintf("+y[%d]*u[%d]",index_vara[first->c_index]+cal_y,first->u_index); + save_code[nop]=FMUL; + save_code[nop+1]=index_vara[first->c_index]+cal_y; + save_code[nop+2]=first->u_index; + save_code[nop+3]=first->lag_index; + if ((nop+3)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop+2,size_of_save_code); + nop+=4; + first=first->NZE_R_N; + } + //yy=-(yy+u[b[pos]]); + //mexPrintf("|u[%d]|\n",b[pos]); + save_code[nop]=FADD; + save_code[nop+1]=b[pos]; + save_code[nop+2]=0; + save_code[nop+3]=0; + if ((nop+3)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop+2,size_of_save_code); + nop+=4; + save_code[nop]=FSTP; + save_code[nop+1]=index_vara[j]+y_size*y_kmin; + save_code[nop+2]=0; + save_code[nop+3]=0; + if ((nop+2)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop+2,size_of_save_code); + nop+=4; + } + //mexPrintf("nop=%d\n",nop); + i=beg_t*Size-1; + nop1=nopa=0; + for (j=i;j>i-Size;j--) + { + pos=pivot[j]; + nb_var=At_Row(pos,&first); + first=first->NZE_R_N; + nb_var--; + //mexPrintf("y[%d]=",index_vara[j]+y_size); + //yy=0; + //mexPrintf("ok00 nopa=%d",nopa); + diff[nopa]=0; + //mexPrintf("ok01"); + diff[nopa+1]=0; + //mexPrintf("ok02"); + nopa+=2; + nop1+=4; + //mexPrintf("ok03"); + for (k=0;kc_index]+cal_y]*u[first->u_index]; + //mexPrintf("+y[%d]*u[%d]",index_vara[first->c_index]+cal_y,first->u_index); + diff[nopa]=save_code[nop1+1]-(index_vara[first->c_index]+cal_y); + /*if(save_code[nop1+2]==1064856) + mexPrintf("save_code[%d]=%d first->u_index=%d\n",nop1+2,save_code[nop1+2],first->u_index);*/ + diff[nopa+1]=save_code[nop1+2]-(first->u_index); + if ((nop1+2)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop1+2,size_of_save_code); + if ((nopa+1)>=size_of_diff) + mexPrintf("out of diff[%d] (bound=%d)\n",nopa+2,size_of_diff); + nopa+=2; + nop1+=4; + first=first->NZE_R_N; + } + //yy=-(yy+u[b[pos]]); + //mexPrintf("|u[%d]|\n",b[pos]); + diff[nopa]=save_code[nop1+1]-(b[pos]); + diff[nopa+1]=0; + if ((nop1+3)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop1+2,size_of_save_code); + if ((nopa+1)>=size_of_diff) + mexPrintf("out of diff[%d] (bound=%d)\n",nopa+2,size_of_diff); + nopa+=2; + nop1+=4; + diff[nopa]=save_code[nop1+1]-(index_vara[j]+y_size*y_kmin); + diff[nopa+1]=0; + if ((nop1+4)>=size_of_save_code) + mexPrintf("out of save_code[%d] (bound=%d)\n",nop1+2,size_of_save_code); + if ((nopa+1)>=size_of_diff) + mexPrintf("out of diff[%d] (bound=%d)\n",nopa+2,size_of_diff); + nopa+=2; + nop1+=4; + } + //mexPrintf("ok1\n"); + //goto end; + //mexPrintf("nopa=%d",nopa); + //mexPrintf("==>beg_t=%d\n",beg_t); + max_var=(periods+y_kmin)*y_size; + min_var=y_kmin*y_size; + int k1=0; + for (t=periods+y_kmin-1;t>=beg_t+y_kmin;t--) + { + j=0; + ti=t-y_kmin-beg_t; + //int var=0; + //mexPrintf("t=%d ti=%d\n",t,ti); + for (i=0;imin_var) + { + /*mexPrintf("FMUL save_code[%d]",i+1); + mexPrintf("(%d)+ti*",save_code[i+1]); + mexPrintf("diff[%d]",j); + mexPrintf("(%d)",diff[j]); + mexPrintf("=k(%d)\n",k); + mexPrintf("save_code[%d]",i+2); + mexPrintf("(%d)+ti*",save_code[i+2]); + mexPrintf("diff[%d]",j+1); + mexPrintf("(%d)=%d\n",diff[j+1],save_code[i+2]+ti*diff[j+1]);*/ + yy+=y[k]*u[save_code[i+2]+ti*diff[j+1]]; +#ifdef PRINT_OUT_y1 + //if(k1==3196) + mexPrintf("y[%d](%f)*u[%d](%f)+",k, double(y[k]), save_code[i+2]+ti*diff[j+1], double(u[save_code[i+2]+ti*diff[j+1]])); +#endif + //mexPrintf("u[%d]*y[%d]+",save_code[i+2]+ti*diff[j+1],k); + } + /*else + { + if (k>=max_var) + mexPrintf("่"); + else + mexPrintf("็"); + }*/ + break; + case FADD : + /*mexPrintf("FADD save_code[%]=",i+1); + mexPrintf("(%d)+ti*",save_code[i+1]); + mexPrintf("diff[%d]",j); + mexPrintf("(%d)=%d\n",diff[j],save_code[i+1]+ti*diff[j]);*/ + yy=-(yy+u[save_code[i+1]+ti*diff[j]]); +#ifdef PRINT_OUT_y1 + mexPrintf("|u[%d](%f)|",save_code[i+1]+ti*diff[j],double(u[save_code[i+1]+ti*diff[j]])); +#endif + //mexPrintf("u[%d]",save_code[i+1]+ti*diff[j]); + break; + case FSTP : + /*mexPrintf("FSTP save_code[%]=",i+1); + mexPrintf("(%d)+ti*",save_code[i+1]); + mexPrintf("diff[%d]",j); + mexPrintf("(%d)=%d\n",diff[j],save_code[i+1]+ti*diff[j]);*/ + k=save_code[i+1]+ti*diff[j]; + k1=k; + err = yy - y[k]; + /*ferr = fabs(err); + (*res1) += ferr; + if ((*max_res)eps) + mexPrintf("Error on y[%d] |err|=%f\n",k,double(ferr));*/ + + break; + } + j+=2; + } + } + mxFree(save_code); + mxFree(diff); + //mexPrintf("out of complete\n"); + return(beg_t); +} + +longd +SparseMatrix::bksub( int tbreak, int last_period, int Size, /*NonZeroElem *first,*/ long int *nmul, longd slowc_l) +{ + NonZeroElem *first; + //mexPrintf("bksub\n"); + int i; + longd yy; + res1 = res2 = max_res = 0; + /*for(i=0;i=y_kmin;t--) + { + int ti=(t-y_kmin)*Size; + //mexPrintf("l t=%d\n",t); +#ifdef PRINT_OUT + mexPrintf("t=%d ti=%d\n",t,ti); +#endif + int cal=y_kmin*Size; + int cal_y=y_size*y_kmin; + //int ti_y_kmax=min( periods+y_kmin-t, y_kmax); + for (i=ti-1;i>=ti-Size;i--) + { + j=i+cal; +#ifdef PRINT_OUT_y + mexPrintf("t=%d, ti=%d j=%d i+Size=%d\n",t,ti,j,i+Size); +#endif + int pos=pivot[/*j*/i+Size]; +#ifdef PRINT_OUT_y + mexPrintf("i-ti+Size=%d pos=%d j=%d\n",i-ti+Size,pos,j); +#endif + //mexPrintf("FNZE_R[%d]=",pos); + //mexPrintf("%x\n",FNZE_R[pos]); + int nb_var=At_Row(pos,&first); + //mexPrintf("nb_var=%d\n",nb_var); + first=first->NZE_R_N; + nb_var--; + int eq=index_vara[j]+y_size; + /*if(eq==3212) + mexPrintf("=>");*/ +#ifdef PRINT_OUT_y1 + mexPrintf("y[index_vara[%d]=%d]=",j,index_vara[j]+y_size); +#endif + yy=0/*y[eq]*/; + for (k=0;k %f\n",first->u_index,double(u[first->u_index]),first->c_index,index_vara[first->c_index]+cal_y,double(y[index_vara[first->c_index]+cal_y]),y[index_vara[first->c_index]+cal_y]*u[first->u_index]);*/ +//#endif + //mexPrintf("u[%d]*y[%d]+",first->u_index,index_vara[first->c_index]+cal_y); + yy+=y[index_vara[first->c_index]+cal_y]*u[first->u_index]; + (*nmul)++; + first=first->NZE_R_N; + } +#ifdef PRINT_OUT_y1 + mexPrintf("|u[%d](%f)|",b[pos],double(u[b[pos]])); +#endif + //mexPrintf("u[%d]",b[pos]); + yy=-(yy+y[eq]+u[b[pos]]); + direction[eq]=yy; + /*longd ferr = fabs(err); + res1 += ferr; + if(max_res0) + { + nopag=int(nopag*0.66); + save_op=(int*)realloc(save_op_o,nopa*sizeof(int)); + } + if(!save_op) + { + mexPrintf("Memory exhausted\n"); + mexEvalString("drawnow;"); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } + } + return(save_op); +} + +void chk_avail_mem(int **save_op_all,long int *nop_all,long int *nopa_all,int add, int t) + { + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",(*nop_all)+add,(*nopa_all),t); + int tmp_nopa_all=int(1.5*(*nopa_all)); + int *tmp_i; + //mexSetTrapFlag(1); + if (tmp_nopa_all*sizeof(int)<1024*1024) + { + mexPrintf("allocate %d bites save_op_all=%x\n",tmp_nopa_all*sizeof(int),*save_op_all); + tmp_i=(int*)mxRealloc(*save_op_all,tmp_nopa_all*sizeof(int)); + mexPrintf("tmp_i="); + mexPrintf("%x\n",tmp_i); + } + else + tmp_i=NULL; + if (!tmp_i) + { + write_swp_f((*save_op_all),nop_all); + } + else + { + mexPrintf("allocated\n"); + (*save_op_all)=tmp_i; + //mexPrintf("okoa\n"); + (*nopa_all)=tmp_nopa_all; + //mexPrintf("okoo\n"); + } + //mexSetTrapFlag(0); + mexPrintf("end of chk\n"); + } + +int +simulate_NG1(int blck, int y_size, int it_, int y_kmin, int y_kmax, int Size, int periods, bool print_it) +{ + /*Triangularisation at each period of a block using a simple gaussian Elimination*/ + bool record=false; + int *save_op=NULL, *save_opa=NULL, *save_opaa=NULL; + long int nop=0, nopa=0, nopaa=0; + int tbreak=0, last_period=periods; + int i,j,k; + int pivj=0, pivk=0; + long int ndiv=0, nsub=0, ncomp=0, nmul=0; + NonZeroElem *first, *firsta, *first_sub, *first_piv, *first_suba; + longd piv_abs, first_elem; + SparseMatrix sparse_matrix; + int save_u_count=u_count; + u_count_alloc_save=u_count_alloc; +#ifdef PROFILER + double tinsert=0, tdelete=0, tpivot=0, tbigloop=0; + pctimer_t td1; +#endif + pctimer_t t01; + pctimer_t t1 = pctimer(); + tdelete1=0; tdelete2=0; tdelete21=0; tdelete22=0; tdelete221=0; tdelete222=0; + if (isnan(res1) || isinf(res1)) + { + /*if(record_all and nop_all) + { + mexPrintf("NAN or INF value in simulation. Trying to restarte..\n"); + mxFree(save_op_all); + save_op_all=NULL; + for(i=0;i-0.1) && symbolic) + { + mexPrintf("Divergence or slowdown occured during simulation.\nIn the next iteration, pivoting method will be applied to all periods.\n"); + symbolic=false; + alt_symbolic=true; + } + res1a=res1; + mexPrintf("-----------------------------------\n"); + mexPrintf(" Simulate iterationฐ %d \n",iter+1); + mexPrintf(" max. error=%.10e \n",double(max_res)); + mexPrintf(" sqr. error=%.10e \n",double(res2)); + mexPrintf(" abs. error=%.10e \n",double(res1)); + mexPrintf("-----------------------------------\n"); + //mexPrintf("record_all=%d save_op_all=%x\n",record_all,save_op_all); + mexEvalString("drawnow;"); +#ifdef PRINT_OUT + mexPrintf("Size=%d y_size=%d y_kmin=%d y_kmax=%d u_count=%d u_count_alloc=%d periods=%d\n",Size,y_size,y_kmin,y_kmax,u_count,u_count_alloc,periods); +#endif +#ifdef PROFILER + pctimer_t t00 = pctimer(); +#endif +#ifdef WRITE_u + fstream toto; + int i_toto=0; + if(!symbolic) + { + toto.open("compare_good.txt", std::ios::out); + } +#endif +#ifdef PROFILER + t01=pctimer(); +#endif +#ifdef PROFILER + mexPrintf("initialization time=%f ms\n",1000*(t01-t00)); +#endif + +#ifdef PRINT_OUT + //sparse_matrix.Print(Size,b); + mexPrintf("sizeof(NonZeroElem)=%d\n",sizeof(NonZeroElem)); + for (i=0;i0) + sparse_matrix.run_u_period1(periods); + else + { + //mexPrintf("ok\n"); + sparse_matrix.Init(periods, y_kmin, y_kmax, Size, IM_i); + for (int t=0;tr_index,line_done[first->r_index]); +#endif + if (!line_done[first->r_index]) + { + k=first->u_index; +#ifdef PRINT_OUT + mexPrintf("u[%d]=%f fabs(u[%d])=%f\n",k,double(u[k]),k,double(fabs(u[k]))); +#endif + int jj=first->r_index; + int NRow_jj=sparse_matrix.NRow(jj); + if (piv_absNZE_C_N; + } +#ifdef PROFILER + tpivot+=pctimer()-td0; +#endif + +#ifdef PRINT_OUT + mexPrintf("Thats the pivot: %d with value %f in u[%d] \n",pivj,double(piv),pivk); + mexPrintf("______________________________________________\n"); + mexPrintf("pivot[%d]=%d\n",i,pivj); +#endif + + pivot[i]=pivj; + pivotk[i]=pivk; + pivotv[i]=piv; + } + else + { + pivj=pivot[i-Size]+Size; + pivot[i]=pivj; + sparse_matrix.At_Pos(pivj, i, &first); + pivk=first->u_index; + piv=u[pivk]; + piv_abs=fabs(piv); + } + line_done[pivj]=true; +#ifdef PRINT_u + mexPrintf("FLD u[%d] (%f=%f) |",pivk,u[pivk],piv); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FLD; + save_op[nop+1]=pivk; + save_op[nop+2]=0; + save_op[nop+3]=0; + } + nop+=4; + } + else if (record_all) + { + if (nop_all+1>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,1,t); + /*if(nop_all+1>=nopa_all) + { + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FLD; + save_op_all[nop_all+1]=pivk; + nop_all+=2; + } + if (piv_abslag_index, first->r_index, first->c_index, first->u_index); +#endif + u[first->u_index]/=piv; + /*if(first->u_index==81726) + mexPrintf("(4) u[%d]/=%f=>%f\n",first->u_index,piv,u[first->u_index]);*/ +#ifdef WRITE_u + if((periods-t)<=y_kmax) + { + toto << i_toto << " u[" /*<< first->u_index*/ << "]/=" << piv << "=" << u[first->u_index] << endl; + i_toto++; + } +#endif +#ifdef PRINT_u + mexPrintf("FDIV u[%d](%f)/=piv(%f)=(%f) |",first->u_index,u[first->u_index],piv,u[first->u_index]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + + save_op[nop]=FDIV; + save_op[nop+1]=first->u_index; + save_op[nop+2]=0; + save_op[nop+3]=first->lag_index; + } + nop+=4; + } + else if (record_all) + { + if (nop_all+1>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,1,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FDIV; + save_op_all[nop_all+1]=first->u_index; + nop_all+=2; + } + //ndiv++; + first=first->NZE_R_N; + } +#ifdef PRINT_OUT + mexPrintf("dividing at u[%d]\n",b[pivj]); +#endif + u[b[pivj]]/=piv; + /*if(b[pivj]==81726) + mexPrintf("(5) u[%d]/=%f=>%f\n",b[pivj],piv,u[b[pivj]]);*/ +#ifdef WRITE_u + if((periods-t)<=y_kmax) + { + toto << i_toto << " u[" /*<< b[pivj]*/ << "]/=" << piv << "=" << u[b[pivj]] << endl; + i_toto++; + } +#endif +#ifdef PRINT_u + mexPrintf("FDIV u[%d](%f)/=piv(%f)=(%f) |",b[pivj],u[b[pivj]],piv,u[b[pivj]]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FDIV; + save_op[nop+1]=b[pivj]; + save_op[nop+2]=0; + save_op[nop+3]=0; + } + nop+=4; + } + else if (record_all) + { + if (nop_all+1>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,1,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FDIV; + save_op_all[nop_all+1]=b[pivj]; + nop_all+=2; + } + //ndiv++; + /*substract the elements on the non treated lines*/ + nb_eq=sparse_matrix.At_Col(i,&first); + NonZeroElem *first_piva; + int nb_var_piva=sparse_matrix.At_Row(pivj,&first_piva); + for (j=0;jr_index; +#ifdef PRINT_OUT + mexPrintf("line_done[%d]=%d\n", row, int(line_done[row])); +#endif + if (!line_done[row]) + { +#ifdef PRINT_OUT + mexPrintf("Substracting from line %d lag %d\n",row,first->lag_index); +#endif + first_elem=u[first->u_index]; +#ifdef PRINT_u + mexPrintf("FLD u[%d] (%f) |",first->u_index,u[first->u_index]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FLD; + save_op[nop+1]=first->u_index; + save_op[nop+2]=0; + save_op[nop+3]=abs(first->lag_index); + } + nop+=4; + } + else if (record_all) + { + if (nop_all+1>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,1,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FLD; + save_op_all[nop_all+1]=first->u_index; + nop_all+=2; + } + int nb_var_piv=nb_var_piva; + first_piv=first_piva; + int nb_var_sub=sparse_matrix.At_Row(row,&first_sub); + int l_sub=0, l_piv=0; + int sub_c_index=first_sub->c_index, piv_c_index=first_piv->c_index; + int tmp_lag=first_sub->lag_index; +#ifdef PROFILER + td1 = pctimer(); +#endif + while (l_subr_index, first_piv->lag_index, first_piv->c_index,l_piv); + mexPrintf("l_sub(%d)r_index, first_sub->lag_index, first_sub->c_index,l_sub); +#endif + if (l_sub=nb_var_piv)) + { +#ifdef PRINT_OUT + mexPrintf(" u[%d]=u[%d]\n",first_sub->u_index,first_sub->u_index); +#endif + first_sub=first_sub->NZE_R_N; + if (first_sub) + sub_c_index=first_sub->c_index; + else + sub_c_index=Size*periods; + l_sub++; + } + else if (sub_c_index>piv_c_index || l_sub>=nb_var_sub) + { + int tmp_u_count=sparse_matrix.Get_u(); +#ifdef PROFILER + pctimer_t td0=pctimer(); +#endif + //mexPrintf("insert\n"); + int lag=first_piv->c_index/Size-row/Size; + sparse_matrix.Insert(row,first_piv->c_index,tmp_u_count,lag); + //mexPrintf("end insert\n"); +#ifdef PROFILER + tinsert+=pctimer()-td0; +#endif + u[tmp_u_count]=-u[first_piv->u_index]*first_elem; + /*if(tmp_u_count==81726) + mexPrintf("(6) u[%d]=-u[%d](%f)*first_elem(%f)=>%f\n",tmp_u_count,first_piv->u_index,u[first_piv->u_index],first_elem,u[tmp_u_count]);*/ + /*if(t==7) + mexPrintf("u[%d]=-u[%d]*%f=%f\n",tmp_u_count,first_piv->u_index,first_elem,double(u[tmp_u_count]));*/ +#ifdef WRITE_u + if((periods-t)<=y_kmax) + { + toto << i_toto << " u[" /*<< tmp_u_count*/ << "]=-u[" /*<< first_piv->u_index*/ << "]*" << first_elem << "=" << u[tmp_u_count] << endl; + i_toto++; + } +#endif +#ifdef PRINT_u + mexPrintf("FLESS u[%d]=-u[%d](%f)*r(%f)=(%f) |",tmp_u_count,first_piv->u_index,u[first_piv->u_index],first_elem,u[tmp_u_count]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FLESS; + save_op[nop+1]=tmp_u_count; + save_op[nop+2]=first_piv->u_index; + save_op[nop+3]=max(first_piv->lag_index,abs(tmp_lag)/*abs(lag)*/); + } + nop+=4; + } + else if (record_all) + { + if (nop_all+2>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,2,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + + save_op_all[nop_all]=FLESS; + save_op_all[nop_all+1]=tmp_u_count; + save_op_all[nop_all+2]=first_piv->u_index; + nop_all+=3; + } + //nsub++; +#ifdef PRINT_OUT + mexPrintf(" u[%d at (%d, %d) lag %d]=-u[%d]*%f\n",tmp_u_count,row , first_piv->c_index, first_piv->c_index/Size-row/Size, first_piv->u_index ,double(first_elem)); +#endif + first_piv=first_piv->NZE_R_N; + if (first_piv) + piv_c_index=first_piv->c_index; + else + piv_c_index=Size*periods; + l_piv++; + } + else /*first_sub->c_index==first_piv->c_index*/ + { + if (i==sub_c_index) + { +#ifdef PRINT_OUT + mexPrintf(" delete element [%d, %d] lag %d u[%d]\n",first_sub->r_index,first_sub->c_index,first_sub->lag_index,first_sub->u_index); +#endif + firsta=first; + first_suba=first_sub->NZE_R_N; +#ifdef PROFILER + pctimer_t td0=pctimer(); +#endif + //mexPrintf("delete\n"); + sparse_matrix.Delete(first_sub->r_index,first_sub->c_index, Size, b); + //mexPrintf("end delete\n"); +#ifdef PROFILER + tdelete+=pctimer()-td0; +#endif + first=firsta->NZE_C_N; + first_sub=first_suba; + if (first_sub) + sub_c_index=first_sub->c_index; + else + sub_c_index=Size*periods; + l_sub++; + first_piv=first_piv->NZE_R_N; + if (first_piv) + piv_c_index=first_piv->c_index; + else + piv_c_index=Size*periods; + l_piv++; +#ifdef PRINT_OUT + sparse_matrix.Print(Size,b); +#endif + } + else + { +#ifdef PRINT_OUT + mexPrintf(" u[%d]-=u[%d]*%f\n",first_sub->u_index,first_piv->u_index,double(first_elem)); +#endif + + + u[first_sub->u_index]-=u[first_piv->u_index]*first_elem; + /*if(first_sub->u_index==81726) + mexPrintf("(7) u[%d]-=u[%d](%f)*first_elem(%f)=>%f\n",first_sub->u_index,first_piv->u_index,u[first_piv->u_index],first_elem,u[first_sub->u_index]);*/ +#ifdef WRITE_u + if((periods-t)<=y_kmax) + { + toto << i_toto << " u[" /*<< first_sub->u_index*/ << "]-=u[" /*<< first_piv->u_index*/ << "]*" << first_elem << "=" << u[first_sub->u_index] << endl; + i_toto++; + } +#endif +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f) |",first_sub->u_index,first_piv->u_index,u[first_piv->u_index],first_elem,u[first_sub->u_index]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + /*if(t==7) + mexPrintf("u[%d]-=u[%d]*%f=%f\n",first_sub->u_index,first_piv->u_index,first_elem,double(u[first_sub->u_index]));*/ + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FSUB; + save_op[nop+1]=first_sub->u_index; + save_op[nop+2]=first_piv->u_index; + save_op[nop+3]=max(abs(/*first_sub->lag_index*/tmp_lag),first_piv->lag_index); + } + nop+=4; + } + else if (record_all) + { + if (nop_all+2>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,2,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FSUB; + save_op_all[nop_all+1]=first_sub->u_index; + save_op_all[nop_all+2]=first_piv->u_index; + nop_all+=3; + } + + //nsub++; + first_sub=first_sub->NZE_R_N; + if (first_sub) + sub_c_index=first_sub->c_index; + else + sub_c_index=Size*periods; + l_sub++; + first_piv=first_piv->NZE_R_N; + if (first_piv) + piv_c_index=first_piv->c_index; + else + piv_c_index=Size*periods; + l_piv++; + } + } + } +#ifdef PRINT_OUT + mexPrintf("row=%d pivj=%d\n",row,pivj); + mexPrintf(" u[%d](%f)-=u[%d](%f)*%f\n",b[row],double(u[b[row]]), b[pivj],double(u[b[pivj]]),double(first_elem)); +#endif + + u[b[row]]-=u[b[pivj]]*first_elem; + /*if(b[row]==81726) + mexPrintf("(8) u[%d]-=u[%d](%f)*first_elem(%f)=>%f\n",b[row],b[pivj],u[b[pivj]],first_elem,u[b[row]]);*/ +#ifdef PROFILER + tbigloop += pctimer() - td1; +#endif +#ifdef WRITE_u + if((periods-t)<=y_kmax) + { + toto << i_toto << " u[" /*<< b[row]*/ << "]-=u[" /*<< b[pivj]*/ << "]*" << first_elem << "=" << u[b[row]] << endl; + i_toto++; + } +#endif + /*if(t==7) + mexPrintf("u[%d]-=u[%d]*%f=%f\n",b[row],b[pivj],first_elem,double(u[b[row]]));*/ +#ifdef PRINT_u + mexPrintf("FSUB u[%d]-=u[%d](%f)*r(%f)=(%f) |",b[row],b[pivj],u[b[pivj]],first_elem,u[b[row]]); + sparse_matrix.Print_u();mexPrintf("\n"); +#endif + if (symbolic) + { + if (record) + { + if (nop+2>=nopa) + { + //mexPrintf("Error: out of save_op[%d] nopa=%d\n",nop+2,nopa); + nopa=int(1.5*nopa); +#ifdef MEM_ALLOC_CHK + mexPrintf("save_op=(int*)mxRealloc(save_op,%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_op=realloc_std(save_op, nopa); +#else + save_op=(int*)mxRealloc(save_op,nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + } + save_op[nop]=FSUB; + save_op[nop+1]=b[row]; + save_op[nop+2]=b[pivj]; + save_op[nop+3]=abs(tmp_lag); + } + nop+=4; + } + else if (record_all) + { + if (nop_all+2>=nopa_all) + chk_avail_mem(&save_op_all,&nop_all,&nopa_all,2,t); + /*{ + mexPrintf("Error: out of save_op_all[%d] nopa_all=%d t=%d\n",nop_all+2,nopa_all,t); + int tmp_nopa_all=int(1.5*nopa_all); + mexSetTrapFlag(1); + int *tmp_i=(int*)mxRealloc(save_op_all,tmp_nopa_all*sizeof(int)); + if(!tmp_i) + write_swp_f(save_op_all,&nop_all); + else + { + save_op_all=tmp_i; + nopa_all=tmp_nopa_all; + } + mexSetTrapFlag(0); + }*/ + save_op_all[nop_all]=FSUB; + save_op_all[nop_all+1]=b[row]; + save_op_all[nop_all+2]=b[pivj]; + nop_all+=3; + } + //nsub++; + } + else + first=first->NZE_C_N; + + /*NonZeroElem *firstaa; + int nb_eqa=sparse_matrix.At_Col(i,&firstaa); + for(int ja=0;jar_index,firstaa); + firstaa=firstaa->NZE_C_N; + }*/ +#ifdef PRINT_OUT + mexPrintf(" bef first=%x\n",first); +#endif + } + } + if (symbolic) + { + //mexPrintf("record=%d, nop=%d, nopa=%d\n",record,nop,nopa); + if (record && (nop==nopa)) + { +#ifdef PRINT_OUT + mexPrintf("nop=%d, nopa=%d, record=%d save_opa=%x save_opaa=%x \n",nop, nopa, record, save_opa, save_opaa); +#endif + //mexPrintf("save_opa=%x, save_opaa=%x\n",save_opa, save_opaa); + if (save_opa && save_opaa) + { +#ifdef PROFILER + pctimer_t ta=pctimer(); +#endif + if (compare( save_op, save_opa, save_opaa, t, periods, nop, Size, &ndiv, &nsub)) + { +#ifdef PROFILER + mexPrintf("compare time %f ms\n",1000*(pctimer()-ta)); +#endif + tbreak=t; + break; + } + } + //mexPrintf("oka\n"); + if (save_opa) + { + if (save_opaa) + { + //mexPrintf("mxFree save_opaa=%x \n",save_opaa); +#ifdef N_MX_ALLOC + free(save_opaa); +#else + mxFree(save_opaa); +#endif + save_opaa=NULL; + } +#ifdef MEM_ALLOC_CHK + mexPrintf("save_opaa=(int*)mxMalloc(%d*sizeof(int))\n",nopa); +#endif +#ifdef N_MX_ALLOC + save_opaa=malloc_std(nopa); +#else + save_opaa=(int*)mxMalloc(nopa*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + memcpy(save_opaa, save_opa, nopa*sizeof(int)); + //mexPrintf("1 - end memcpy\n"); + } + //mexPrintf("okb\n"); + if (save_opa) + { + mxFree(save_opa); + save_opa=NULL; + } +#ifdef MEM_ALLOC_CHK + mexPrintf("save_opa=(int*)mxMalloc(%d*sizeof(int))\n",nop); +#endif +#ifdef N_MX_ALLOC + save_opa=malloc_std(nop); +#else + save_opa=(int*)mxMalloc(nop*sizeof(int)); +#endif +#ifdef MEM_ALLOC_CHK + mexPrintf("ok\n"); +#endif + memcpy(save_opa, save_op, nop*sizeof(int)); + //mexPrintf("end memcpy\n"); + } + else + { + if (nop==nopa) + record=true; + else + { + record=false; + if (save_opa) + { +#ifdef N_MX_ALLOC + free(save_opa); +#else + mxFree(save_opa); +#endif + save_opa=NULL; + } + if (save_opaa) + { +#ifdef N_MX_ALLOC + free(save_opaa); +#else + mxFree(save_opaa); +#endif + save_opaa=NULL; + } + } + //mexPrintf("nop=%d, nopa=%d, record=%d time=%f\n",nop, nopa, record,1000*(pctimer()-by_time_t0)); + } + nopaa=nopa; + nopa=nop; + } + record=true; + } + } + nop_all+=nop; +#ifdef PROFILER + t01=pctimer(); + mexPrintf("resolution time=%f ms ndiv=%d nsub=%d ncomp=%d \n",1000*(t01-t00),ndiv,nsub,ncomp); + mexPrintf(" tinsert=%f tdelete=%f tpivot=%f tbigloop=%f tdelete1=%f tdelete2=%f \n",double(1000*tinsert), double(1000*tdelete), double(1000*tpivot), double(1000*tbigloop), double(1000*tdelete1), double(1000*tdelete2)); + mexPrintf(" tdelete21=%f tdelete22=%f \n",double(1000*tdelete21),double(1000*tdelete22)); + mexPrintf(" tdelete221=%f tdelete222=%f \n",double(1000*tdelete221),double(1000*tdelete222)); +#endif + //mexPrintf(" tdelete2221=%f tdelete2222=%f \n",double(1000*tdelete2221),double(1000*tdelete2222)); + if (symbolic) + { +#ifdef N_MX_ALLOC + if (save_op) + free(save_op); + if (save_opa) + free(save_opa); + if (save_opaa) + free(save_opaa); +#else + if (save_op) + mxFree(save_op); + if (save_opa) + mxFree(save_opa); + if (save_opaa) + mxFree(save_opaa); +#endif + } + /*if(pivota ) + { + if(memcmp(pivot,pivota,Size*periods*sizeof(int))==0) + { + //record_all=true; + //symbolic=false; + mexPrintf("same pivoting\n"); + } + else + { + mexPrintf("different pivoting\n"); + mexPrintf("pivot (value) -pivota (value)\n"); + for(i=0;i"); + else + mexPrintf(" "); + mexPrintf("% 3d (%f) - %3d (%f)\n",pivot[i],pivotv[i], pivota[i], pivotva[i]); + } + } + } + else + pivota=(int*)mxMalloc(Size*periods*sizeof(int)); + */ + close_swp_f(); + /*The backward substitution*/ +#ifdef PRINT_OUT + sparse_matrix.Print(Size,b); +#endif + //mexPrintf("ok2\n"); + longd slowc_lbx=slowc, res1bx; +#ifdef PROFILER + t00 = pctimer(); +#endif + for (i=0;i0)) + { + //mexPrintf("sparse_matrix.end()\n"); + u_count=save_u_count; + sparse_matrix.End(Size); + } + if (print_it) + { + pctimer_t t2 = pctimer(); + mexPrintf("(** %f milliseconds **)\n", 1000*(t2 - t1)); + mexEvalString("drawnow;"); + } + +#ifdef WRITE_u + if(!symbolic) + { + toto.close(); + filename+=" stopped"; + mexErrMsgTxt(filename.c_str()); + } +#endif + close_swp_f(); + return(0); +} + +