Test Borrowing No Default (Risky + Safe Asset + Save + Borr + R Shock + Interpolated-Percentage), Cross Test

back to Fan's Dynamic Assets Repository Table of Content.

@seealso

Contents

Set Shared Parameters

close all;
clear all;

% Borrowing/Savings Parameters
bl_default = false;

Simulate and Graph

Note: as for example fl_beta increases, willingness to save increases, leading to higher savings, which will exceed the benchmark max grid point. So to allow for higher beta, dramatically higher max savings bound is needed.

% Generate Benchmark Parameters
it_param_set = 9;
[param_map, support_map] = ffs_ipwkbzr_set_default_param(it_param_set);

% Borrowing Parameters
param_map('bl_default') = bl_default;

% Support Parameters
support_map('bl_replacefile') = false;
support_map('bl_graph_onebyones') = true;
support_map('bl_display_graph_stats') = false;
support_map('st_mat_test_prefix') = ['nbc_'];

Generate Arrays For CROSS

Generate Arrays of Parameter Values to Loop Over

cl_st_param_keys = {'fl_z_r_borr_poiss_mean', 'fl_z_r_borr_max', 'fl_b_bd', 'fl_c_min', 'fl_z_r_borr_n'};

it_simu_vec_len = 15;
param_tstar_map = containers.Map('KeyType','char', 'ValueType','any');
param_tstar_map('fl_z_r_borr_poiss_mean') = linspace(2, 10, it_simu_vec_len);
param_tstar_map('fl_z_r_borr_max') = linspace(0.095, 0.150, it_simu_vec_len);
param_tstar_map('fl_b_bd') = linspace(-20, -5, it_simu_vec_len);
param_tstar_map('fl_c_min') = linspace(0.03, 0.001, it_simu_vec_len);
param_tstar_map('fl_z_r_borr_n') = 3:1:(3+it_simu_vec_len-1);

Generate Arrays For GRID

Generate Arrays of Parameter Values to Loop Over

cl_st_param_keys_grid = {'fl_z_r_borr_poiss_mean', 'fl_r_save'};

it_simu_vec_len = 10;
param_tstar_grid_map = containers.Map('KeyType','char', 'ValueType','any');
param_tstar_grid_map('fl_z_r_borr_poiss_mean') = linspace(2, 10, it_simu_vec_len);
param_tstar_grid_map('fl_r_save') = linspace(0, 0.06, it_simu_vec_len);;

Quick Grid Simulation (Limited Graphs)

it_size_type = 1;
ar_it_plot_sets = [3,4,102, 152,104,106];
bl_simu_cross = 'c';

% Simulate along parameters
ff_az_test_analyze( ...
    ar_it_plot_sets, bl_simu_cross, it_size_type, cl_st_param_keys, ...
    param_map, support_map, param_tstar_map);

close all;
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: SUPPORT_MAP
----------------------------------------
  Map with properties:

        Count: 51
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 34 ; key = st_img_name_main ; val = _default
pos = 35 ; key = st_img_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/img/
pos = 36 ; key = st_img_prefix ; val = 
pos = 37 ; key = st_img_suffix ; val = _p9.png
pos = 38 ; key = st_mat_name_main ; val = _default
pos = 39 ; key = st_mat_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/mat/
pos = 40 ; key = st_mat_prefix ; val = 
pos = 41 ; key = st_mat_suffix ; val = _p9
pos = 42 ; key = st_mat_test_name_main ; val = r
pos = 43 ; key = st_mat_test_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//test/ff_ipwkbzr_ds_vecsv/mat/
pos = 44 ; key = st_mat_test_prefix ; val = nbc_
pos = 45 ; key = st_mat_test_suffix ; val = _g1011121314_cc_t1l75
pos = 46 ; key = st_matimg_path_root ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr/
pos = 47 ; key = st_profile_name_main ; val = _default
pos = 48 ; key = st_profile_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/profile/
pos = 49 ; key = st_profile_prefix ; val = 
pos = 50 ; key = st_profile_suffix ; val = _p9
pos = 51 ; key = st_title_prefix ; val = 
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                    i     idx    value
                                    __    ___    _____

    bl_display                       1     1        0 
    bl_display_defparam              2     2        0 
    bl_display_dist                  3     3        0 
    bl_display_evf                   4     4        0 
    bl_display_final                 5     5        0 
    bl_display_final_dist            6     6        1 
    bl_display_final_dist_detail     7     7        0 
    bl_display_funcgrids             8     8        0 
    bl_display_graph_stats           9     9        0 
    bl_display_simu_stats           10    10        1 
    bl_graph                        11    11        0 
    bl_graph_coh_t_coh              12    12        0 
    bl_graph_evf                    13    13        0 
    bl_graph_funcgrids              14    14        0 
    bl_graph_funcgrids_detail       15    15        0 
    bl_graph_onebyones              16    16        1 
    bl_graph_pol_lvl                17    17        0 
    bl_graph_pol_pct                18    18        0 
    bl_graph_val                    19    19        0 
    bl_img_save                     20    20        0 
    bl_mat                          21    21        0 
    bl_mat_test                     22    22        1 
    bl_post                         23    23        1 
    bl_profile                      24    24        0 
    bl_profile_dist                 25    25        0 
    bl_replacefile                  26    26        0 
    bl_time                         27    27        1 
    bl_timer                        28    28        1 
    it_display_every                29    29       20 
    it_display_final_colmax         30    30       12 
    it_display_final_rowmax         31    31      100 
    it_display_summmat_colmax       32    32        7 
    it_display_summmat_rowmax       33    33        7 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_MAP
----------------------------------------
  Map with properties:

        Count: 55
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 4 ; key = cl_st_param_keys ; val = fl_z_r_borr_poiss_mean
pos = 51 ; key = st_analytical_stationary_type ; val = eigenvector
pos = 52 ; key = st_model ; val = ipwkbzr
pos = 53 ; key = st_v_coh_z_interp_method ; val = method_cell
pos = 54 ; key = st_z_r_borr_drv_ele_type ; val = unif
pos = 55 ; key = st_z_r_borr_drv_prb_type ; val = poiss
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         i    idx    rowN    colN    mean     std      min    max
                         _    ___    ____    ____    ____    ______    ___    ___

    ar_param_keys_idx    1     1      1       5       12     1.5811    10     14 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                               i     idx     value 
                               __    ___    _______

    bl_default                  1     2           0
    bl_loglin                   2     3           0
    fl_Amean                    3     5           1
    fl_a_max                    4     6          50
    fl_a_min                    5     7           0
    fl_alpha                    6     8        0.36
    fl_b_bd                     7     9         -20
    fl_beta                     8    10        0.94
    fl_c_min                    9    11        0.02
    fl_coh_interp_grid_gap     10    12         0.3
    fl_crra                    11    13         1.5
    fl_default_wprime          12    14           0
    fl_delta                   13    15        0.08
    fl_k_max                   14    16          70
    fl_k_min                   15    17           0
    fl_loglin_threshold        16    18           1
    fl_nan_replace             17    19       -9999
    fl_r_save                  18    20       0.025
    fl_tol_dist                19    21       1e-05
    fl_tol_pol                 20    22       1e-05
    fl_tol_val                 21    23       1e-05
    fl_w                       22    24     0.44365
    fl_w_interp_grid_gap       23    25         0.3
    fl_w_max                   24    26          50
    fl_w_min                   25    27         -20
    fl_z_mu                    26    28           0
    fl_z_r_borr_max            27    29       0.095
    fl_z_r_borr_min            28    30       0.025
    fl_z_r_borr_n              29    31           5
    fl_z_r_borr_poiss_mean     30    32          20
    fl_z_rho                   31    33         0.8
    fl_z_sig                   32    34         0.2
    fl_z_wage_mu               33    35           0
    fl_z_wage_rho              34    36         0.8
    fl_z_wage_sig              35    37         0.2
    it_a_n                     36    38         750
    it_ak_perc_n               37    39          25
    it_c_interp_grid_gap       38    40      0.0001
    it_maxiter_dist            39    41        1000
    it_maxiter_val             40    42         250
    it_size_type               41    43           1
    it_st_simu_type_g_seed     42    44         123
    it_st_simu_type_g_simun    43    45          20
    it_tol_pol_nochange        44    46          25
    it_trans_power_dist        45    47        1000
    it_w_perc_n                46    48          25
    it_z_n                     47    49          25
    it_z_wage_n                48    50           5

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_TSTAR_MAP
----------------------------------------
  Map with properties:

        Count: 19
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                              i     idx    rowN    colN     mean        std        min     max 
                              __    ___    ____    ____    ______    _________    _____    ____

    fl_a_max                   1     1      1        5         65       11.859       50      80
    fl_alpha                   2     2      1        5        0.4     0.079057      0.3     0.5
    fl_b_bd                    3     3      1       15      -12.5       4.7916      -20      -5
    fl_beta                    4     4      1       15       0.92     0.031944     0.87    0.97
    fl_c_min                   5     5      1       15     0.0155    0.0092637    0.001    0.03
    fl_crra                    6     6      1       15          3       1.2778        1       5
    fl_delta                   7     7      1        5       0.08     0.047434     0.02    0.14
    fl_r_borr                  8     8      1        5      0.125     0.098821        0    0.25
    fl_r_save                  9     9      1        5      0.025     0.011859     0.01    0.04
    fl_w                      10    10      1        5       1.25      0.11859      1.1     1.4
    fl_z_r_borr_max           11    11      1       15     0.1225     0.017569    0.095    0.15
    fl_z_r_borr_n             12    12      1       15         10       4.4721        3      17
    fl_z_r_borr_poiss_mean    13    13      1       15          6       2.5555        2      10
    fl_z_rho                  14    14      1        5      0.495      0.39133        0    0.99
    fl_z_sig                  15    15      1        5      0.255      0.19369     0.01     0.5
    fl_z_wage_rho             16    16      1        5      0.495      0.39133        0    0.99
    fl_z_wage_sig             17    17      1        5      0.255      0.19369     0.01     0.5
    it_a_n                    18    18      1        5       1300       948.68      100    2500
    it_z_n                    19    19      1        5         15       7.9057        5      25

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1          p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    _____    _________    _______    ___________    __________    _______    _________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p1v1                  2            6.8645    2.7209     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5           0.39638     -9999    16.571      0      0.0085744    0.99143     7.4364e-34    3.2937e-10    -2.2683      0.21684    2.0336    3.2832    4.1082    4.6062    5.1052    5.9498    6.9081    7.9872     8.753    9.2158    9.6296    10.295    11.041    12.626    14.089         7.4036                1                 11.882              0.8941               3.9324               0.53114                6.3946               0.84879                1.5554               0.93699          -0.00047176      -0.001239    0.0061834     0.02572      0.05338     0.090025      0.12069      0.20088      0.34185      0.50929      0.63301      0.70043      0.76493      0.83581      0.91912      0.98069       0.99794  
    cl_mt_val_p1v2             2.5714            6.9607     2.728     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5           0.39191     -9999    16.556      0       0.011169    0.98883     5.1136e-33    1.5376e-09    -2.5903    -0.049463    2.1096    3.3356    4.1087    4.7462     5.189    6.0393    7.2294    8.1279    8.8344    9.2495    9.7667     10.33    11.003    12.687    14.136         7.4418                1                 11.872             0.89496               3.9757               0.54061                6.3374               0.84304                1.5592               0.92972          -0.00054069     -0.0015796    0.0060409    0.025465     0.053799     0.084827      0.12214      0.20327      0.34558      0.51065      0.63183      0.69689      0.76485      0.83793      0.91566      0.98111       0.99797  
    cl_mt_val_p1v3             3.1429            7.1146     2.671     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.37543     -9999    16.561      0      0.0090649    0.99094    -4.4029e-33    1.6476e-09    -2.6591     0.032642    2.4521    3.6017    4.4355    4.9195    5.4295    6.2095    7.3344    8.2417    8.9609    9.3549    9.8697    10.399    11.053    12.726    14.171         7.1344                1                 11.444             0.89343               3.7481               0.53225                6.1722               0.84139                1.5237               0.92582          -0.00053728     -0.0014908    0.0074994    0.028259     0.057128     0.089792      0.12661      0.20964      0.35576       0.5212      0.64646      0.70235      0.76982      0.84007      0.91611       0.9814         0.998  
    cl_mt_val_p1v4             3.7143            7.1796    2.6417     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.36794     -9999    16.562      0       0.010142    0.98986    -4.3192e-33    1.1312e-09    -2.5818    -0.089863    2.5526    3.7216    4.4787    5.1219    5.5295     6.467    7.3153    8.3335    8.9445    9.3854    9.9007    10.451    11.046    12.729     14.17         6.9785                1                 11.134              0.8918               3.5402               0.52519                6.0871               0.84315                1.5064               0.92325           -0.0005556     -0.0015196    0.0074187    0.030084     0.058744     0.095201      0.13138      0.21172      0.35703      0.52272       0.6419      0.70725      0.77173      0.84336       0.9159      0.98167       0.99798  
    cl_mt_val_p1v5             4.2857            7.2353    2.5962     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.35883     -9999    16.556      0      0.0079926    0.99201     3.3223e-33    1.1542e-09    -2.4373      0.19099    2.6207    3.8747    4.6037    5.2254    5.4998    6.6106    7.4216    8.3127     8.993     9.422    9.8939    10.437    11.084     12.72    14.196         6.7404                1                 10.807             0.89074               3.3237               0.51606                6.0032               0.84865                1.4798               0.92339          -0.00051247     -0.0012918    0.0085971     0.03197     0.061424     0.096805      0.13234      0.22415      0.35994      0.52221       0.6421      0.70551      0.77265      0.84343      0.91645      0.98155       0.99807  
    cl_mt_val_p1v6             4.8571            7.2843    2.5573     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.35107     -9999    16.553      0       0.007637    0.99236    -2.7853e-35    1.1791e-09    -2.3486      0.40347    2.7714    3.9888    4.7918    5.2394    5.5901    6.5853    7.4593    8.3678    9.0074    9.4407    9.9603    10.466    11.084    12.755    14.192         6.5397                1                 10.539             0.88933               3.1383               0.50628                5.9434               0.85418                1.4569               0.92386          -0.00048146     -0.0010936    0.0096914    0.034305     0.063513      0.10126      0.13501      0.22057      0.36272      0.52583      0.64666      0.70724      0.77621       0.8433      0.91711      0.98296       0.99804  
    cl_mt_val_p1v7             5.4286            7.2993    2.5378     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.34768     -9999    16.558      0      0.0067261    0.99327     4.1348e-33    1.1808e-09    -1.9708       0.6655    2.9946    3.9624    4.7693    5.2184    5.5852    6.5728     7.541    8.3606    9.0056    9.5069    9.9601    10.501    11.086    12.758    14.196         6.4404                1                 10.388             0.88883               3.0349               0.50284                5.9069               0.85965                1.4461               0.92486          -0.00049096    -0.00087562     0.010775     0.03513     0.066356      0.10047      0.13806      0.22232      0.36843      0.52528      0.64442      0.70952      0.77626      0.84756      0.91709      0.98295       0.99804  
    cl_mt_val_p1v8                  6            7.3451    2.4856     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5            0.3384     -9999    16.557      0      0.0053016     0.9947    -9.3479e-35    1.1915e-09    -1.9111       1.0562    3.2512    4.0006    4.8962    5.1975    5.6094    6.5655    7.5313    8.3992    9.0839     9.501    9.9549    10.496    11.106    12.756    14.195          6.178                1                 10.042             0.88786               2.7989               0.48695                5.8267               0.86683                1.4164               0.92664          -0.00042198    -0.00046227     0.012367    0.037436      0.06865      0.10308      0.13971      0.23552      0.36794       0.5334       0.6476      0.70912       0.7765      0.84778      0.91803      0.98294       0.99804  
    cl_mt_val_p1v9             6.5714            7.3686     2.455     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.33317     -9999    16.553      0      0.0043546    0.99565    -8.0726e-35    1.2008e-09    -1.5052       1.3796      3.37    4.2072    4.9528    5.1791    5.7358    6.5506    7.5212    8.3902    9.0819    9.4947    9.9477    10.489      11.1    12.751     14.19         6.0271                1                 9.8601             0.88785               2.6717               0.47972                 5.788                0.8728                1.4003               0.92789          -0.00042938      0.0003811     0.017512     0.04004     0.072196      0.10484      0.14215      0.23679      0.37037      0.53376      0.64681       0.7097      0.77564      0.84767      0.91774      0.98289       0.99803  
    cl_mt_val_p1v10            7.1429            7.3673    2.4609     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.33404     -9999    16.556      0      0.0041723    0.99583     1.0278e-32    1.2027e-09    -1.5851       1.3297    3.3431    4.1899    4.9412    5.1688    5.7256    6.5446    7.5187    8.3892    9.0818    9.5078    9.9483     10.49    11.121    12.753    14.193         6.0563                1                 9.8842             0.88777               2.6784               0.48267                5.8024                0.8738                1.4033               0.92741          -0.00041521     0.00040734     0.017582    0.039688     0.072391      0.10519      0.14116       0.2381      0.36881      0.53355      0.65718      0.71449      0.77952      0.84767      0.91794      0.98286       0.99802  
    cl_mt_val_p1v11            7.7143            7.4171      2.42     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.32628     -9999    16.558      0      0.0036228    0.99638     -2.654e-35    1.2197e-09     -1.489       1.3499    3.3204    4.2123    4.9328    5.3223    5.9338     6.539    7.5487    8.3876    9.0809    9.5071    9.9479     10.49    11.136    12.754    14.227         5.8565                1                 9.6259             0.88692               2.5051               0.46959                5.7417               0.87884                1.3791               0.92789          -0.00034965     0.00048736     0.016224    0.040148     0.073575      0.10603      0.14463      0.23812      0.37056      0.53219      0.65598      0.71356      0.77934      0.84753      0.91906      0.98282       0.99805  
    cl_mt_val_p1v12            8.2857            7.4175    2.4114     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5            0.3251     -9999    16.558      0      0.0029383    0.99706     -9.887e-34    7.4828e-09    -1.1019       1.3822    3.2999    4.2502    4.9227    5.3582    5.9255    6.5329    7.5965    8.3849    9.0787    9.5052    9.9462    10.489    11.135    12.754    14.227         5.8148                1                 9.5705             0.88686               2.4623               0.46695                 5.733               0.88149                1.3752               0.92902          -0.00032881     0.00052411     0.016592    0.040543     0.073997      0.10669      0.14479       0.2401      0.37137      0.53297      0.65614      0.71365      0.77974      0.84787      0.91913      0.98283       0.99805  
    cl_mt_val_p1v13            8.8571            7.4156    2.4148     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.32564     -9999    16.556      0      0.0029156    0.99708    -8.4841e-34    7.4951e-09    -1.1518        1.348    3.2802    4.3992    4.9117    5.3546    5.9329    6.5253    7.6231    8.3802    9.0744    9.5011    9.9424    10.485    11.131    12.751    14.224         5.8314                1                 9.5875             0.88657               2.4692               0.46851                5.7419               0.88171                1.3764               0.92876          -0.00033881     0.00047408     0.016328    0.040383     0.073888      0.11026       0.1452      0.24091      0.37071      0.53246       0.6551      0.71324      0.77855      0.84772      0.91901      0.98281       0.99805  
    cl_mt_val_p1v14            9.4286            7.4214    2.4206     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.32617     -9999    16.556      0      0.0029971      0.997    -2.2522e-33    7.5433e-09    -1.1931       1.3207    3.2656    4.4051    4.9048    5.3489    5.9274    6.5214    7.6444    8.3788    9.0734    9.5003    9.9417    10.485    11.131    12.751    14.224         5.8594                1                 9.6282             0.88688               2.4867               0.47254                5.7616               0.88207                1.3799               0.92745          -0.00034536     0.00043787     0.016218     0.04369     0.073562      0.10939      0.14443      0.24097      0.38156      0.53152      0.65311      0.71215       0.7772      0.84709      0.91857      0.98272       0.99804  
    cl_mt_val_p1v15                10            7.4212    2.4129     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.32513     -9999    16.553      0      0.0025156    0.99748    -2.4348e-34    7.5474e-09    -1.2096       1.4009    3.2495     4.394    4.8953    5.3406    5.9191    6.5145    7.6391    8.3741     9.069     9.496    9.9376    10.481    11.127    12.748    14.221          5.822                1                 9.5819             0.88689               2.4534               0.47037                5.7523                 0.884                1.3763               0.92827          -0.00031017     0.00059548     0.016396     0.04324     0.073632      0.10942      0.14445      0.24207      0.38177      0.53196      0.65312      0.71212      0.77735      0.84727      0.91858      0.98272       0.99804  

                         fl_z_r_borr_poiss_mean     mean       sd       variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5        p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    _______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    __________    _______    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p1v1                  2            1.7302    0.61008    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5           0.35262     0.02    7.7184      0        0        1       7.4364e-34    3.2937e-10    0.57032    0.70974    0.91252    1.0646    1.1533     1.242    1.2927    1.4448    1.6476     1.825    2.0785    2.1799    2.3447    2.5348    2.9277    3.5487    4.3725         1.5554             0.93699              2.8522             0.95717               0.9935               0.59848                1.4865               0.87999                0.3722                  1              0.0007347    0.0063055     0.02934    0.060525     0.086547      0.12934      0.15753       0.2437      0.38691      0.51797      0.64328      0.69066      0.75906      0.82859      0.90534      0.97767       0.99736  
    cl_mt_pol_c_p1v2             2.5714            1.7431    0.61478    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5            0.3527     0.02    7.7184      0        0        1       5.1136e-33    1.5376e-09     0.5323    0.70974    0.91252    1.0646     1.166    1.2674    1.3181    1.4575    1.6223    1.8377    2.0785    2.1799    2.3827    2.5855    2.9403     3.574    4.4105         1.5592             0.92972              2.8715             0.96049               1.0046               0.60614                 1.489               0.87889               0.37796                  1             0.00026883    0.0055021    0.024921    0.053614     0.083942      0.13733      0.15921      0.24767      0.37211      0.52085      0.63401      0.68931      0.77071      0.82603      0.90697      0.97782       0.99738  
    cl_mt_pol_c_p1v3             3.1429            1.7588    0.61617    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.35033     0.02    7.7184      0        0        1      -4.4029e-33    1.6476e-09     0.5323    0.70974    0.95054    1.0773     1.204    1.2674    1.3181    1.4195    1.6223    1.8757    2.0912    2.2306    2.3827    2.6362    2.9657    3.5487    4.4485         1.5237             0.92582              2.8347             0.95932              0.96435               0.59364                1.4907               0.88088               0.37966                  1             0.00027843    0.0044969    0.023993    0.054434     0.092863      0.13042      0.15669      0.23585      0.37024      0.51747      0.63171      0.69005      0.76437      0.83677      0.90696      0.97772       0.99741  
    cl_mt_pol_c_p1v4             3.7143            1.7663    0.61766    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.34969     0.02    7.7184      0        0        1      -4.3192e-33    1.1312e-09     0.5323    0.70974    0.95054    1.1153     1.204    1.2674    1.3308    1.4195     1.673    1.9264    2.0912    2.2306    2.3827    2.6362    2.9657     3.574    4.4485         1.5064             0.92325               2.803             0.96025              0.92775               0.58865                1.4938               0.88493                0.3815                  1             0.00031223    0.0036685    0.023367    0.057163     0.090959      0.13345      0.16886      0.24447      0.38467      0.53849        0.629      0.70024        0.761      0.83442      0.90544      0.97811       0.99737  
    cl_mt_pol_c_p1v5             4.2857            1.7734    0.61726    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.34807     0.02    7.7184      0        0        1       3.3223e-33    1.1542e-09    0.57032    0.76043    0.97589    1.1153     1.204    1.2674    1.3308    1.4195     1.673    1.9264    2.1292    2.2306    2.3827    2.6362     2.991     3.574    4.4485         1.4798             0.92339              2.7708             0.96059              0.89239               0.58277                1.4974               0.89035               0.38101                  1             0.00028301    0.0039289    0.024644    0.055931     0.088074      0.13086      0.16317      0.25041      0.37598      0.53652      0.64911      0.69441      0.75775      0.83357      0.92065      0.97796       0.99732  
    cl_mt_pol_c_p1v6             4.8571            1.7793    0.61667    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.34658     0.02    7.7184      0        0        1      -2.7853e-35    1.1791e-09    0.60835    0.79845    0.98856    1.1153     1.204    1.2674    1.3308    1.4195     1.673    1.9264    2.1292    2.2306    2.4334    2.6362     2.991     3.574    4.4866         1.4569             0.92386              2.7445             0.96044              0.86367               0.57779                1.5006               0.89432               0.38029                  1             0.00050415    0.0041272    0.025144    0.056387     0.088316      0.12813      0.16321      0.25404      0.36971      0.53566      0.64718      0.69116      0.76648      0.83181      0.92101      0.97814       0.99742  
    cl_mt_pol_c_p1v7             5.4286            1.7808    0.61611    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.34598     0.02    7.7184      0        0        1       4.1348e-33    1.1808e-09    0.60835    0.81113    0.97291    1.1153    1.2167    1.2674    1.3308    1.4195     1.673    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.4461             0.92486              2.7259              0.9607              0.84842               0.57902                1.4979                0.8979                0.3796                  1             0.00040166     0.003958    0.024432     0.05692      0.09731      0.12587      0.16324      0.25466      0.37028      0.53675      0.64672      0.71484      0.76578      0.83132      0.92092      0.97816       0.99742  
    cl_mt_pol_c_p1v8                  6             1.786    0.61496    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.34433     0.02    7.7184      0        0        1      -9.3479e-35    1.1915e-09    0.60835     0.8238    0.96322    1.1153    1.2167    1.2674    1.3308    1.4195     1.673    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.4164             0.92664              2.6873             0.96031               0.8094               0.56916                1.4997               0.90176               0.37817                  1             0.00040807    0.0049059    0.025443    0.057266     0.093592      0.12615      0.16431       0.2513      0.36639      0.53468      0.64518      0.71346      0.76456      0.83092        0.921      0.97809        0.9974  
    cl_mt_pol_c_p1v9             6.5714            1.7893    0.61473    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.34356     0.02    7.7184      0        0        1      -8.0726e-35    1.2008e-09    0.62102     0.8238    0.96322    1.1153    1.2167    1.2674    1.3308    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.4003             0.92789              2.6724             0.96103              0.79345               0.56897                1.5011               0.90399               0.37789                  1              0.0004312    0.0051191    0.027647    0.056976     0.090569      0.12529      0.16307      0.24922      0.39611      0.53711      0.64197      0.71182      0.76265      0.83009      0.92065        0.978       0.99738  
    cl_mt_pol_c_p1v10            7.1429            1.7891    0.61488    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.34368     0.02    7.7184      0        0        1       1.0278e-32    1.2027e-09    0.62102     0.8238    0.96322    1.1153    1.2167    1.2674    1.3308    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.4033             0.92741              2.6743             0.96135              0.79318               0.57208                1.5031               0.90593               0.37808                  1             0.00040486    0.0042654    0.027732    0.056862     0.090695      0.12558      0.16304      0.24896      0.39596      0.54004      0.64148      0.71187      0.76203      0.82976      0.92061      0.97798       0.99738  
    cl_mt_pol_c_p1v11            7.7143             1.795    0.61416    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.34215     0.02    7.7184      0        0        1       -2.654e-35    1.2197e-09    0.63369     0.8238    0.96322    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.3791             0.92789              2.6478             0.96132               0.7653               0.56529                1.5053               0.90787               0.37719                  1             0.00034179    0.0043022    0.025375     0.05764     0.093049      0.12689      0.20581      0.24473      0.39113       0.5374      0.63902      0.71015      0.76077      0.82916      0.92031       0.9778       0.99736  
    cl_mt_pol_c_p1v12            8.2857             1.795    0.61387    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5             0.342     0.02    7.7184      0        0        1       -9.887e-34    7.4828e-09    0.68439    0.83648    0.96322    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.3752             0.92902              2.6405             0.96116              0.75726                0.5641                1.5064               0.90983               0.37684                  1             0.00056314    0.0043269    0.025802    0.056822     0.092906      0.12701      0.20711      0.24496      0.39127      0.53801      0.63902      0.71035      0.76081      0.82929      0.92039      0.97782       0.99736  
    cl_mt_pol_c_p1v13            8.8571            1.7953    0.61372    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.34185     0.02    7.7184      0        0        1      -8.4841e-34    7.4951e-09    0.68439    0.83648    0.96322    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.3764             0.92876              2.6407             0.96084              0.75539               0.56396                1.5087               0.91158               0.37665                  1             0.00056267    0.0043262    0.025335    0.056999      0.09371      0.12741      0.20777      0.24457      0.39059      0.53774      0.63822        0.711      0.76122      0.83056      0.92219      0.97782       0.99735  
    cl_mt_pol_c_p1v14            9.4286            1.7968    0.61467    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.34208     0.02    7.7184      0        0        1      -2.2522e-33    7.5433e-09    0.68439    0.83648    0.96322    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.3799             0.92745              2.6513             0.96176              0.76068               0.56925                1.5128               0.91209               0.37782                  1             0.00056109    0.0043354    0.025187    0.056663     0.093436       0.1267      0.20733      0.24311      0.39155      0.53392      0.63605      0.70886      0.75975      0.82947      0.92178      0.97796       0.99734  
    cl_mt_pol_c_p1v15                10            1.7972    0.61446    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.34191     0.02    7.7184      0        0        1      -2.4348e-34    7.5474e-09    0.68439    0.86182    0.96322    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6362     2.991     3.574    4.4866         1.3763             0.92827              2.6458             0.96163              0.75473               0.56821                1.5135               0.91332               0.37756                  1             0.00046612    0.0046428    0.025322    0.055807     0.093254      0.12653      0.20789      0.24292      0.39157        0.534      0.63592      0.70881      0.75968      0.82946      0.92179      0.97796       0.99734  

                         fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p1v1                  2            4.7888    2.7688    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5           0.57818      0     22.623     7.4364e-34      0        1       7.4364e-34    3.6695e-08    0.80268      1.139    1.6223    2.0278      2.37    2.5855    2.8009    3.2609    4.0878    5.1718    6.0826    6.2102    7.2442    8.8717    10.308    13.688     21.07         6.3946             0.84879               10.88             0.80449               1.7269               0.22921                7.6663                  1                   1.4865               0.87999          0.00016492    0.0020565    0.014122    0.034461     0.058673     0.081384      0.10918      0.17825      0.29396      0.43667      0.55483      0.62092      0.69301      0.77299       0.8691      0.96496       0.99559  
    cl_mt_pol_k_p1v2             2.5714            4.7725    2.7557    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5            0.5774      0      22.49     5.1136e-33      0        1       5.1136e-33    6.5611e-08    0.79676     1.1186    1.6223    1.9742    2.3658    2.6087    2.8009    3.2609      3.95    5.1718    6.0412    6.2102    7.2241    8.7693    10.139    13.646    21.115         6.3374             0.84304              10.793             0.80545               1.7108                0.2303                7.5936                  1                    1.489               0.87889          0.00017237    0.0019871    0.014462     0.03298       0.0559     0.080613       0.1108      0.17757      0.29045      0.43539      0.55628      0.61993      0.69138      0.77218      0.86908      0.96456       0.99566  
    cl_mt_pol_k_p1v3             3.1429            4.7599    2.7464    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.57699      0      22.49    -4.4029e-33      0        1      -4.4029e-33    7.0307e-08    0.77775     1.1092    1.6223    1.9222    2.2813    2.6488    2.8207    3.2667      3.95    5.1752    6.0201    6.2044    7.2241    8.5287    9.9701    13.557    21.115         6.1722             0.84139              10.641              0.8079               1.6071               0.22195                7.5429                  1                   1.4907               0.88088          0.00018362    0.0019407    0.013978    0.033425     0.054585      0.08138      0.11143      0.17813      0.29361      0.43677      0.55988      0.62098       0.6911      0.77142      0.86938      0.96452       0.99574  
    cl_mt_pol_k_p1v4             3.7143             4.721    2.7329    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.57889      0     22.357    -4.3192e-33      0        1      -4.3192e-33    1.1902e-07    0.77775      1.109    1.5288    1.8889    2.1968    2.6533    2.7688     3.253      3.95    5.1718    5.9783    6.1785    7.2241    8.4281    9.9701    13.503    21.115         6.0871             0.84315              10.528             0.81512               1.5652               0.22445                7.4688                  1                   1.4938               0.88493          0.00018443    0.0019916    0.014015    0.032339      0.05448     0.081458      0.10922      0.17586       0.2961      0.43703      0.55736       0.6214      0.69192      0.77184      0.87203      0.96456       0.99567  
    cl_mt_pol_k_p1v5             4.2857            4.6961    2.7247    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5            0.5802      0     22.357     3.3223e-33      0        1       3.3223e-33    1.2145e-07    0.77775     1.0773    1.5082    1.8483    2.1968    2.6615    2.7566     3.253      3.95    5.1718    5.9599    6.1785    7.1853     8.238    9.9701    13.498    21.115         6.0032             0.84865              10.471             0.82235               1.5493               0.22922                7.4238                  1                   1.4974               0.89035          0.00019523    0.0019308       0.014    0.033307     0.055057     0.086528      0.11008      0.17845      0.29727      0.43678      0.55728      0.62284      0.69033      0.77177      0.87356      0.96468       0.99561  
    cl_mt_pol_k_p1v6             4.8571            4.6739    2.7209    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.58214      0     22.357    -2.7853e-35      0        1      -2.7853e-35    1.2407e-07    0.76043     1.0161    1.4926    1.8139    2.1514    2.6615     2.746     3.253      3.95    5.1718    5.9599    6.1785    7.0974    8.1873    9.9701    13.477    21.115         5.9434             0.85418              10.446             0.82854               1.5425               0.23389                7.4031                  1                   1.5006               0.89432          0.00019255    0.0018877    0.013928    0.032448     0.053647     0.087389      0.11162      0.18005      0.29751      0.43578      0.55663        0.626      0.68928      0.77033      0.87433      0.96444       0.99553  
    cl_mt_pol_k_p1v7             5.4286            4.6411    2.7076    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.58339      0     22.357     4.1348e-33      0        1       4.1348e-33    1.2425e-07    0.76043     1.0161    1.4786    1.8139    2.1514    2.6576    2.7391    3.2318    3.9289    5.1718    5.9567    6.1785    6.9856    8.0796    9.9701    13.308    21.115         5.9069             0.85965              10.404             0.83434               1.5747               0.24454                7.3311                  1                   1.4979                0.8979          0.00023179    0.0019726    0.014313    0.033909     0.054527     0.080158      0.11156      0.17651      0.28781      0.43804      0.55782      0.62979      0.68988      0.77267      0.87578      0.96446       0.99549  
    cl_mt_pol_k_p1v8                  6            4.6243    2.7044    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.58481      0     22.357    -9.3479e-35      0        1      -9.3479e-35    1.2537e-07    0.76043     1.0161    1.4786    1.7743    2.1514    2.6576    2.6964    3.2315    3.9289    5.1718    5.9567    6.1785     6.921    8.0796    9.9701    13.308    21.115         5.8267             0.86683              10.338             0.84005               1.5244               0.24376                7.3135                  1                   1.4997               0.90176          0.00027086    0.0020356    0.014369    0.032006     0.054985     0.080828      0.10957      0.17424      0.28756      0.43814      0.56017      0.63151      0.69104      0.77442       0.8762      0.96423       0.99563  
    cl_mt_pol_k_p1v9             6.5714            4.6126    2.7012    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.58563      0     22.357    -8.0726e-35      0        1      -8.0726e-35    1.2635e-07    0.76043     1.0033    1.4786    1.7743    2.1514    2.6533    2.6964    3.2315    3.9289     5.126    5.9567    6.1785    6.6538    8.0796    9.9701    13.117    21.115          5.788              0.8728              10.324             0.84491               1.5265                0.2491                7.2967                  1                   1.5011               0.90399          0.00030013    0.0018626    0.014573    0.032545     0.055151     0.079602      0.11187      0.17481      0.28614      0.43369      0.56354      0.63319       0.6892      0.77544      0.87652      0.96409       0.99561  
    cl_mt_pol_k_p1v10            7.1429            4.5962    2.6983    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.58707      0     22.357     1.0278e-32      0        1       1.0278e-32    1.2655e-07    0.75964     1.0033    1.4786    1.7743    2.1514    2.6533    2.6964    3.2107    3.9289     5.126    5.9497    6.1722    6.6538    8.0796    9.9701    13.117    21.115         5.8024              0.8738               10.35             0.84783               1.5661                0.2574                7.2808                  1                   1.5031               0.90593          0.00015966    0.0019114    0.015308    0.031871     0.055495     0.079926      0.11461      0.17334      0.28599      0.43338      0.55457      0.62105      0.69258      0.77683      0.87693      0.96461       0.99559  
    cl_mt_pol_k_p1v11            7.7143            4.5946    2.6997    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.58758      0     22.357     -2.654e-35      0        1       -2.654e-35    1.2833e-07    0.75964     1.0033    1.4786    1.7743    2.1514    2.6576    2.6964    3.2107      3.95     5.126    5.9497    6.1722    6.6538    8.0796    9.9701    13.117    21.115         5.7417             0.87884              10.317             0.85213               1.5234               0.25599                7.2883                  1                   1.5053               0.90787          0.00016458    0.0019214    0.015319    0.031738     0.055493     0.079632       0.1173      0.17469       0.2999       0.4324       0.5546      0.62082      0.69385      0.77679      0.87672       0.9649       0.99556  
    cl_mt_pol_k_p1v12            8.2857            4.5801    2.6971    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.58887      0     22.236     -9.887e-34      0        1       -9.887e-34    2.4038e-09    0.75931    0.97291    1.4786    1.7743    2.1514    2.6576    2.6964    3.2107    3.9289     5.126    5.9497    6.1574    6.6538    7.9465    9.9701    12.927    21.115          5.733             0.88149              10.314             0.85452               1.5334               0.25999                7.2743                  1                   1.5064               0.90983           0.0001593    0.0018521    0.015778    0.032243     0.055816     0.079734      0.11974      0.17733      0.28488      0.43393      0.55716       0.6204      0.69654      0.76824      0.87708      0.96396       0.99556  
    cl_mt_pol_k_p1v13            8.8571              4.57    2.6968    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5            0.5901      0     22.236    -8.4841e-34      0        1      -8.4841e-34    2.4078e-09    0.75931    0.95134    1.4786    1.7721    2.1514    2.6576    2.6964    3.2077    3.9289     5.126     5.925    6.1326    6.5059    7.9212    9.9701    12.927    21.115         5.7419             0.88171              10.338             0.85604                1.557               0.26454                7.2725                  1                   1.5087               0.91158          0.00015764      0.00182    0.016251    0.031575     0.056008     0.079741      0.12183      0.17327      0.28484      0.43468      0.55331      0.61933      0.68838      0.76808      0.87727      0.96419       0.99554  
    cl_mt_pol_k_p1v14            9.4286            4.5696    2.6984    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.59052      0     22.236    -2.2522e-33      0        1      -2.2522e-33    2.4232e-09    0.75931    0.95134    1.4786    1.7721    2.1514    2.6576    2.6964    3.2028    3.9176     5.126    5.9497    6.1574    6.5059    7.9212    9.9701    12.927    21.115         5.7616             0.88207              10.385             0.85813                1.591                0.2712                7.2816                  1                   1.5128               0.91209          0.00016192    0.0018371    0.016573    0.031776     0.055758     0.079726       0.1232       0.1718      0.28351      0.43493      0.55625      0.61938      0.68905      0.76784      0.87705      0.96433       0.99552  
    cl_mt_pol_k_p1v15                10            4.5617    2.6968    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.59119      0     22.236    -2.4348e-34      0        1      -2.4348e-34    2.4246e-09    0.74075    0.95054    1.4575    1.7721    2.1514    2.6576    2.6964    3.1938    3.9176    5.0696     5.925    6.1574    6.5059    7.9212    9.9701    12.927    21.115         5.7523               0.884              10.381             0.85969               1.5948               0.27356                 7.273                  1                   1.5135               0.91332          0.00015784    0.0018183    0.014133    0.031937     0.055835     0.079856      0.12488      0.17152      0.28365      0.43115      0.55358      0.62032      0.69033      0.76815      0.87725      0.96454       0.99551  

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0        pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1          p5         p10         p15         p20        p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5       fracByP10     fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    __________    ________    _______    ___________    __________    _______    ________    ________    ________    ________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p1v1                  2            4.4871    4.8843     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5            1.0885     -4.67    57.077      0.010365     0.16855    0.82108     7.4364e-34    3.2937e-10    -3.1491     -2.5408     -1.6282    -0.71573    -0.41155    0.50097    0.80514    2.0218    3.5427    5.6719    6.8886    7.8011    9.0178    10.539    13.276    20.881     30.31         11.882              0.8941              23.856                1                  10.124               0.76179                 10.88               0.80449                2.8522               0.95717           -0.0017141     -0.009626      -0.026223      -0.040131    -0.043378    -0.039142    -0.034414    0.0006268     0.09749      0.26528      0.40033      0.47797      0.57359      0.67124       0.8118      0.94598       0.99284  
    cl_mt_coh_p1v2             2.5714              4.96    4.8629     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5           0.98042     -4.67    57.077      0.010896     0.12627    0.86284     5.1136e-33    1.5376e-09    -3.1491     -2.5408     -1.3241    -0.41155     0.19679    0.80514     1.4135    2.6302    4.4552    5.9761     7.497    8.4095     9.322    11.147     13.58    21.185    30.614         11.872             0.89496              23.648                1                  9.9829                0.7615                10.793               0.80545                2.8715               0.96049           -0.0012539    -0.0064425      -0.021045      -0.029727    -0.029132    -0.022166    -0.010731     0.037794     0.15089      0.31891      0.44485      0.52706      0.59311      0.71276      0.81916       0.9499       0.99352  
    cl_mt_coh_p1v3             3.1429            5.3867    4.7956     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.89026     -4.67    57.077     0.0099735    0.092778    0.89725    -4.4029e-33    1.6476e-09    -3.1491     -2.2366     -1.0199           0     0.80514     1.4135     2.0218    3.2385    4.7594    5.9761    7.8011    8.4095    9.6262    11.147    13.885    21.489    30.918         11.444             0.89343              22.998                1                  9.5223               0.75315                10.641                0.8079                2.8347               0.95932          -0.00077012    -0.0061405      -0.016003      -0.019192    -0.013665    -0.003377     0.013037     0.064721     0.18737      0.32701       0.4768      0.53128      0.62368      0.71487      0.82858      0.95375       0.99404  
    cl_mt_coh_p1v4             3.7143            5.5949     4.726     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.84469     -4.67    57.077     0.0088391    0.076542    0.91462    -4.3192e-33    1.1312e-09    -2.8449     -2.2366    -0.71573     0.19679      1.1093     1.7177      2.326    3.5427    4.7594    6.2803    7.8011    8.7136    9.6262    11.451    14.189    21.489    30.918         11.134              0.8918              22.335                1                  9.0042               0.74666                10.528               0.81512                 2.803               0.96025           -0.0012699    -0.0046931       -0.01339      -0.013961     -0.00589    0.0072628     0.025254     0.086039     0.19337      0.35353      0.48061      0.55503      0.62824      0.73789      0.83813      0.95444       0.99415  
    cl_mt_coh_p1v5             4.2857            5.7638     4.673     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.81076     -4.67    57.077     0.0084512     0.06246    0.92909     3.3223e-33    1.1542e-09    -2.8449     -1.9324    -0.41155     0.50097      1.4135     2.0218     2.9344    3.8469    5.0636    6.5844    7.8011    8.7136    9.9303    11.451    14.189    21.793    30.918         10.807             0.89074              21.837                1                  8.5959               0.74149                10.471               0.82235                2.7708               0.96059          -0.00079872    -0.0043015      -0.010474     -0.0090043    0.0034899     0.019585     0.046943      0.12607      0.2165      0.37539      0.48119      0.55547      0.64405      0.73769       0.8385      0.95779       0.99418  
    cl_mt_coh_p1v6             4.8571            5.8967    4.6338     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.78583     -4.67    57.077     0.0077267    0.051257    0.94102    -2.7853e-35    1.1791e-09    -2.8449     -1.6282    -0.10738      1.1093      1.7177      2.326     2.9344    3.8469    5.0636    6.5844    8.1053    9.0178    9.9303    11.451    14.493    21.793    31.222         10.539             0.88933              21.472                1                  8.2816               0.73732                10.446               0.82854                2.7445               0.96044          -0.00056338     -0.004121     -0.0081608    -0.00089849     0.014015      0.02827     0.048426      0.13112     0.21886      0.37499      0.50769      0.58442      0.64478      0.73787      0.84406      0.95785        0.9945  
    cl_mt_coh_p1v7             5.4286             5.941    4.6053     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.77517     -4.67    57.077      0.007142    0.044716    0.94814     4.1348e-33    1.1808e-09    -2.5408     -1.3241           0      1.1093      1.7177      2.326     2.9344    3.8469    5.3677    6.5844    8.1053    9.0178    9.9303    11.451    14.493    21.793    31.222         10.388             0.88883              21.209                1                  8.0792               0.73765                10.404               0.83434                2.7259                0.9607            -0.001079    -0.0040842     -0.0067429     0.00092913     0.017108     0.030683     0.050953      0.13449     0.24849      0.37597      0.50911      0.58567      0.64597      0.73886      0.84481      0.95806       0.99454  
    cl_mt_coh_p1v8                  6            6.0323    4.5504     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.75434     -4.67    57.077     0.0042212    0.033771    0.96201    -9.3479e-35    1.1915e-09    -2.5408     -1.0199     0.50097      1.4135      1.7177     2.6302     3.2385    3.8469    5.3677    6.5844    8.1053    9.0178    9.9303    11.451    14.493    21.793    31.222         10.042             0.88786              20.706                1                  7.6814               0.72998                10.338               0.84005                2.6873               0.96031          -0.00071326    -0.0034133     -0.0041138       0.011713     0.019825     0.040779     0.070984      0.13906     0.25244      0.37939      0.51217      0.58859      0.64827      0.74071      0.84607       0.9584       0.99457  
    cl_mt_coh_p1v9             6.5714            6.0943    4.5236     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.74227     -4.67    57.077      0.002193    0.025724    0.97208    -8.0726e-35    1.2008e-09    -2.5408    -0.71573     0.80514      1.4135      1.7177     2.6302     3.2385    3.8469    5.3677    6.5844    8.1053    9.0178    10.235    11.451    14.493    21.793    31.222         9.8601             0.88785              20.463                1                  7.4663               0.72756                10.324               0.84491                2.6724               0.96103          -0.00045316    -0.0031668    -0.00093271        0.01428     0.022106     0.042631     0.072762      0.14073     0.24958       0.3798      0.51085      0.58938      0.67076      0.74129      0.84638      0.95863       0.99458  
    cl_mt_coh_p1v10            7.1429             6.107    4.5242     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.74082     -4.67    57.077     0.0020409    0.025357     0.9726     1.0278e-32    1.2027e-09    -2.2366    -0.71573     0.80514      1.4135      1.7177     2.6302     3.2385    3.8469    5.3677    6.8886    8.1053    9.0178    10.235    11.451    14.493    21.793    31.222         9.8842             0.88777              20.468                1                  7.4438               0.72968                 10.35               0.84783                2.6743               0.96135          -0.00059088    -0.0029854    -0.00068314       0.014653     0.022256     0.042556     0.072593      0.14039     0.24795      0.40646      0.50944      0.58897      0.67059      0.74126      0.84643      0.95865       0.99458  
    cl_mt_coh_p1v11            7.7143            6.1947    4.4847     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.72396     -4.67    57.077     0.0012826    0.019437    0.97928     -2.654e-35    1.2197e-09    -1.9324    -0.71573      1.1093      1.4135       2.326     2.9344     3.2385    3.8469    5.3677    6.8886    8.1053    9.0178    10.235    11.451    14.493    21.793    31.222         9.6259             0.88692              20.113                1                  7.1479               0.72304                10.317               0.85213                2.6478               0.96132          -0.00085181    -0.0022704      0.0054957        0.01433     0.032002     0.053657     0.072891      0.14247     0.24993      0.40853      0.51106      0.59062      0.67178      0.74219      0.84637      0.95881        0.9946  
    cl_mt_coh_p1v12            8.2857            6.2015    4.4752     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.72163     -4.67    57.077      0.000991    0.016711     0.9823     -9.887e-34    7.4828e-09    -1.9324    -0.41155      1.1093      1.4135       2.326     2.9344     3.2385    3.8469    5.3677    6.8886    8.1053    9.0178    10.235    11.451    14.493    21.793    31.222         9.5705             0.88686              20.027                1                  7.0728               0.72272                10.314               0.85452                2.6405               0.96116          -0.00065392    -0.0021265      0.0063411        0.01524     0.032801     0.054443     0.073708      0.14339     0.25064       0.4093      0.51157      0.59129      0.67227      0.74254      0.84653      0.95887        0.9946  
    cl_mt_coh_p1v13            8.8571            6.2151    4.4782     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.72054     -4.67    57.077    0.00093056    0.016652    0.98242    -8.4841e-34    7.4951e-09    -1.9324    -0.41155      1.1093      1.4135       2.326     2.9344     3.2385    3.8469    5.3677    6.8886    8.1053    9.0178    10.235    11.755    14.493    21.793    31.222         9.5875             0.88657              20.055                1                  7.0756               0.72395                10.338               0.85604                2.6407               0.96084          -0.00064966    -0.0021139      0.0062541        0.01504     0.032369     0.054094     0.073429      0.14326     0.25014      0.40859       0.5104      0.59007      0.67147      0.75381       0.8466      0.95891        0.9946  
    cl_mt_coh_p1v14            9.4286            6.2401    4.4849     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.71873     -4.67    57.077    0.00087488    0.016641    0.98248    -2.2522e-33    7.5433e-09    -1.9324    -0.41155      1.1093      1.4135       2.326     2.9344     3.2385    3.8469    5.3677    6.8886    8.1053    9.0178    10.235    11.755    14.493    21.793    31.222         9.6282             0.88688              20.115                1                  7.0779               0.72592                10.385               0.85813                2.6513               0.96176          -0.00064263    -0.0021001      0.0062649       0.014932     0.032009     0.053504     0.072614       0.1419     0.24813      0.40465      0.50893      0.58831      0.67023      0.75303      0.84621      0.95881       0.99459  
    cl_mt_coh_p1v15                10            6.2486    4.4776     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.71658     -4.67    57.077    0.00068212     0.01437    0.98495    -2.4348e-34    7.5474e-09    -1.9324    -0.41155      1.1093      1.4135       2.326     2.9344     3.5427    3.8469    5.3677    6.8886    8.4095    9.0178    10.235    11.755    14.493    21.793    31.222         9.5819             0.88689              20.049                1                  7.0223               0.72551                10.381               0.85969                2.6458               0.96163          -0.00051923    -0.0017866      0.0068371       0.015457     0.032453     0.053891      0.11433      0.14217     0.24866      0.40504      0.54182       0.5887      0.67052      0.75324      0.84631      0.95886        0.9946  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY        p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _____    ______    _____    __________    _______    ___________    ___________    ________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p2v1           0.095        7.4814    2.3715     'cl_mt_val'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.31699     -9999    16.554      0       0.0017583    0.99824    -1.9514e-34     7.7944e-09    -0.95483    1.8367    3.4687    4.3468     5.079    5.5105    6.0766    6.4784    7.6233    8.3623     9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p2v2        0.098929        7.5953    2.3187     'cl_mt_val'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.30528     -9999     16.55      0       0.0012509    0.99875    -1.8533e-34     3.1207e-09    -0.45041    2.1254    3.5779    4.4539    5.1835    5.6049    6.1677    6.5718    7.7718    8.4916    9.1916    9.6137    10.052     10.58    11.209    12.767    14.228         5.3763                1                 9.0528             0.88574               2.0213               0.43397                5.7072               0.89764                1.3243               0.92708          -0.00021909      0.001338    0.021912     0.04546     0.078957      0.11269      0.15478      0.23995      0.37831      0.53822        0.656      0.71716      0.78425      0.85493      0.92166      0.98278       0.99812  
    cl_mt_val_p2v3         0.10286        7.7587    2.2128     'cl_mt_val'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            5            0.2852     -9999    16.551      0      0.00045345    0.99955    -1.6599e-31     8.4543e-10     0.63791    2.6465    4.0306    4.8546    5.5283     5.917    6.4309    6.8598    7.9045    8.5929    9.2795    9.6764    10.109     10.63    11.254    12.801    14.257         4.8964                1                 8.5066             0.88587               1.7187               0.39792                5.5364               0.90689                1.2515               0.92837           -8.955e-06     0.0024491    0.026771     0.05232     0.092394      0.12522      0.16036      0.26323      0.39626      0.55756       0.6646      0.72079      0.78917      0.85843      0.92123      0.98285       0.99812  
    cl_mt_val_p2v4         0.10679        7.8668    2.1539     'cl_mt_val'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            5            0.2738     -9999    16.546      0      0.00037897    0.99962     3.6648e-32     4.3533e-09     0.74397    2.8142    4.4261     4.948    5.6066    5.9877    6.5589    7.0912    7.9485    8.6301    9.3145    9.7715    10.216    10.654    11.275    12.857    14.292         4.6394                1                 8.2106             0.88598               1.5901               0.38212                 5.406               0.90669                1.2145               0.92917           3.3697e-06       0.00291    0.032817    0.052311     0.088246      0.12365      0.16668      0.28479      0.39601       0.5499      0.66262      0.72652      0.79546      0.85662      0.92229      0.98369       0.99814  
    cl_mt_val_p2v5         0.11071        7.9467    2.1046     'cl_mt_val'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.26484     -9999    16.556      0      0.00031163    0.99969     6.1822e-34     2.7034e-09     0.90073    2.9624    4.5685    5.0803    5.7225    6.0935    6.6668    7.1865    8.0275    8.6975    9.3804    9.7682    10.195    10.707    11.323    12.884    14.297         4.4292                1                 7.9224             0.88651               1.4718                0.3688                5.2633               0.90891                1.1873               0.93146           3.5565e-05     0.0029213    0.032926    0.053835     0.090629      0.12616      0.16977      0.28958      0.40324      0.55167      0.67359      0.72544      0.78823      0.85832      0.92425      0.98385       0.99822  
    cl_mt_val_p2v6         0.11464        8.0082    2.0773     'cl_mt_val'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            5            0.2594     -9999    16.548      0      9.5681e-05     0.9999    -1.3242e-34     6.9033e-10      1.3832    3.3592    4.6602    5.3764    5.7818    6.3143    6.7197    7.2294    8.0585    8.8214    9.4047    9.7904    10.212    10.723    11.335    12.901    14.329         4.3154                1                 7.8462             0.88797               1.4586               0.36806                5.2048               0.90773                1.1828                0.9344           8.9897e-05     0.0042234    0.034272    0.061567     0.090385      0.13077      0.16972      0.28771      0.40158      0.56919      0.66748        0.727      0.78922      0.85487      0.92368      0.98378        0.9983  
    cl_mt_val_p2v7         0.11857        8.0593    2.0523     'cl_mt_val'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.25465     -9999    16.545      0       2.946e-05    0.99997    -3.8578e-34      5.638e-10      1.6262    3.4855    4.7659    5.3608    5.8643    6.3871    6.7965    7.2953    8.0886    8.8666    9.4103    9.8297    10.249    10.757    11.367    12.926    14.351         4.2118                1                 7.7785             0.88775               1.4784               0.36918                5.1255               0.90469                1.1746                0.9374           0.00018448     0.0044762    0.035134    0.055644     0.092463       0.1333      0.17291       0.2912      0.39933      0.57133      0.66814      0.72847      0.79099      0.85593      0.92446      0.98387       0.99831  
    cl_mt_val_p2v8          0.1225        8.0997    2.0311     'cl_mt_val'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.25076     -9999    16.552      0      3.3619e-06          1    -2.0431e-32      2.978e-10      1.7539    3.5846    4.8523    5.3225    5.9227    6.2768    6.8515    7.4905    8.0256    8.8133    9.4817    9.8593    10.276    10.781    11.337    12.927    14.298         4.1252                1                 7.6043             0.88799               1.4202               0.36217                5.0213                0.9036                1.1627               0.93966           0.00020921     0.0046838    0.035756     0.05628     0.095181      0.13005      0.17602      0.30883      0.40357      0.55674      0.67432      0.73512      0.79494      0.85886      0.92403      0.98399        0.9982  
    cl_mt_val_p2v9         0.12643        8.1125    2.0123     'cl_mt_val'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.24805     -9999    16.551      0      4.0576e-07          1     1.9399e-32     2.1877e-10      1.9081    3.4386    4.9402    5.4046    5.9919    6.3482    6.8044     7.548     8.075    8.8414    9.4779    9.8064    10.311    10.746     11.31    12.925    14.287         4.0493                1                 7.4639             0.88752               1.3742               0.35605                4.9306               0.90231                1.1591               0.94209            0.0002644     0.0035804    0.037496    0.059664       0.1015      0.13468      0.17314      0.31403      0.41279      0.56362      0.67355      0.74255      0.80291      0.85785      0.92437      0.98336       0.99823  
    cl_mt_val_p2v10        0.13036        8.0381    2.0267     'cl_mt_val'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.25213     -9999    16.549      0      1.8451e-08          1      -6.59e-34    -3.7644e-35      2.0261     3.536    5.0076    5.2386    5.8509     6.374    6.5983    7.2798    7.9771    8.7614     9.446    9.7332    10.228     10.76    11.319     12.91    14.264         4.1074                1                 7.6098             0.88865               1.3998               0.36124                5.0514               0.90218                1.1586               0.94661           0.00031163     0.0040015    0.037469    0.058752     0.094023      0.13606      0.19244      0.25634      0.40062      0.55721      0.67229      0.73019      0.79005      0.85898      0.92539      0.98321        0.9982  
    cl_mt_val_p2v11        0.13429        7.9894    2.0386     'cl_mt_val'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.25517     -9999    16.542      0      4.4816e-10          1       3.91e-33    -7.7741e-35      2.1356    3.5517    4.9853    5.2863    5.8883    6.2396    6.4504    7.1405    7.9949     8.678    9.4208    9.7448    10.177    10.719    11.324    12.889    14.261          4.156                1                 7.7304             0.88991                 1.42               0.36481                5.1486               0.90351                1.1618               0.95054           0.00036981     0.0040019    0.026042    0.065415     0.099011       0.1354      0.17463      0.26348      0.40614      0.55408      0.67308      0.72885       0.7896      0.85529      0.92644      0.98333       0.99818  
    cl_mt_val_p2v12        0.13821        7.9311    2.0197     'cl_mt_val'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.25465     -9999    16.546      0      1.7237e-11          1     1.7755e-32     3.1527e-34      2.2844     3.673    4.9201    5.3798    5.7846    6.3143    6.5419    6.9258    7.9214    8.6148     9.289    9.6954    10.016    10.666    11.358    12.874    14.258         4.0792                1                 7.5464             0.88684               1.3777               0.36557                5.0188               0.89913                1.1499               0.95821           0.00043678     0.0046142    0.027275    0.080578     0.099628      0.13503      0.18201      0.25723      0.40957      0.55514      0.66641      0.72673      0.79173      0.85441      0.92917      0.98334       0.99816  
    cl_mt_val_p2v13        0.14214        7.9419    2.0029     'cl_mt_val'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.25219     -9999    16.541      0      4.3312e-11          1     2.7687e-32     4.1907e-34      2.3781    3.7246    4.9658    5.4266    5.8251    6.1816    6.5873     6.954    7.7255    8.6302    9.3251    9.7118    9.9754    10.675    11.364    12.878    14.257         4.0114                1                 7.4756             0.88595               1.3954               0.37066                4.9405                0.8961                1.1397               0.95983           0.00051732     0.0046102     0.02711    0.083437      0.10365      0.13292      0.18624      0.26156      0.39828      0.55417      0.67788      0.73111      0.78901      0.85535       0.9307      0.98318       0.99816  
    cl_mt_val_p2v14        0.14607        7.9727    1.9841     'cl_mt_val'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.24886     -9999    16.533      0       2.243e-18          1     -1.259e-32    -3.3784e-35      2.8484    3.9024    5.0144    5.4594    5.8534    6.4316    6.6258    6.9804    7.7183    8.7439    9.3098    9.6473    10.032     10.68    11.368    12.879    14.277         3.9366                1                 7.4255             0.88612               1.4064               0.37388                4.8877               0.89427                1.1314               0.96089            0.0007475     0.0051594    0.027841    0.083524      0.10293       0.1494       0.1895      0.26022      0.40913      0.56333      0.66894      0.72733      0.79143      0.85501      0.93045       0.9831       0.99824  
    cl_mt_val_p2v15           0.15        7.9717    1.9565     'cl_mt_val'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.24543     -9999    16.544      0      7.5021e-19          1     9.0271e-34     2.7312e-35      2.9205    3.9653    5.0711     5.512    5.9006    6.4879    6.6841    7.0291     7.627    8.5709    9.2718    9.6601    10.009     10.56    11.388    12.896    14.257         3.8279                1                 7.1277             0.88214               1.3245               0.36285                4.6841               0.89097                1.1192               0.96374            0.0010015     0.0054157    0.028734    0.085886      0.10593      0.15254      0.19341      0.26518      0.40076      0.55648      0.66997      0.72869      0.79188      0.85485      0.93228      0.98382       0.99817  

                         fl_z_r_borr_max     mean       sd       variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    _______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    ___________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p2v1           0.095        1.8067    0.61215    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34     7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615     2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186        0.705      0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p2v2        0.098929          1.82    0.61608    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            5            0.3385     0.02    7.6952      0        0        1      -1.8533e-34    -9.7185e-36    0.69497    0.85924    1.0109    1.1372     1.213    1.3141    1.3647    1.4658    1.7185    1.9333    2.1734     2.325    2.4766    2.6788    3.0326    3.6012     4.511         1.3243             0.92708              2.6149             0.96292              0.67184               0.54289                1.5635               0.92553               0.37956                  1             0.00041465    0.0048578    0.030567    0.057145     0.090736      0.13212      0.19497      0.24932       0.3758      0.51924      0.64398      0.71515      0.76705      0.83352      0.92298      0.97845        0.9974  
    cl_mt_pol_c_p2v3         0.10286        1.8411     0.6092    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.33088     0.02    7.6738      0        0        1      -1.6599e-31     2.4277e-33    0.75979    0.91174    1.0637     1.165    1.2663    1.3676    1.4183    1.4689    1.7222    1.9754    2.1781      2.33     2.482    2.6846    3.0391     3.647    4.5207         1.2515             0.92837              2.5448             0.96258              0.61399               0.51634                1.5596               0.92796               0.37113                  1             0.00066034    0.0052341    0.037003    0.065765      0.10017      0.14739      0.23019      0.25095      0.37346      0.54534      0.64442      0.71198      0.76605      0.83118      0.92242      0.97853       0.99752  
    cl_mt_pol_c_p2v4         0.10679        1.8572    0.60683    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.32673     0.02     7.654      0        0        1       3.6648e-32     4.3533e-09    0.75782    0.94728    1.1115     1.162     1.263    1.3641    1.4146    1.4651    1.7683    1.9703    2.1724     2.324    2.4756    2.7282    3.0313    3.6376    4.5091         1.2145             0.92917              2.5133             0.96265              0.58871               0.50217                1.5564               0.92654               0.36824                  1             0.00052913     0.004546    0.044794    0.059745     0.092741      0.13702        0.172       0.2481      0.38887      0.53714      0.63829      0.70233      0.76286      0.84401      0.91609      0.97904       0.99742  
    cl_mt_pol_c_p2v5         0.11071        1.8641    0.60565    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.32491     0.02    7.6356      0        0        1       6.1822e-34      -2.84e-35    0.75976    0.96236    1.1143     1.165    1.2663    1.3676    1.4182    1.4689    1.7728    1.9754     2.178    2.3299    2.4819    2.7351     3.039    3.6469    4.4826         1.1873             0.93146               2.472             0.96121              0.56308               0.49029                1.5421               0.92537               0.36681                  1             0.00062786    0.0064973    0.043037    0.058168     0.091649       0.1366       0.1671      0.25148      0.37949      0.52906      0.64638      0.70561      0.76801      0.84517      0.91754      0.97881       0.99748  
    cl_mt_pol_c_p2v6         0.11464        1.8723    0.60934    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.32544     0.02    7.6184      0        0        1      -1.3242e-34     6.9033e-10    0.75805     0.9602    1.1118    1.2129     1.314    1.3645     1.415    1.4656    1.7688    2.0215    2.1731    2.3247    2.5268     2.729    3.0322    3.6766    4.5104         1.1828              0.9344              2.4887              0.9602                0.574               0.49378                1.5434               0.91767                0.3713                  1             0.00056486    0.0060262     0.04249    0.072525      0.11079      0.13478       0.1644      0.24606      0.37429      0.53762      0.63652      0.70323      0.77608      0.83743       0.9146      0.97858       0.99747  
    cl_mt_pol_c_p2v7         0.11857        1.8773    0.61057    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.32523     0.02    7.6024      0        0        1      -3.8578e-34     3.6439e-35    0.76024    0.96297     1.115    1.2164    1.3178    1.3684    1.4191    1.4698    1.8246    2.0273    2.2174    2.3314    2.5088    2.7369     3.041    3.6492    4.5234         1.1746              0.9374              2.4964             0.95763              0.59324               0.49794                1.5303               0.90791                0.3728                  1             0.00083065    0.0059064     0.04247    0.072697      0.11139      0.13559      0.16468      0.24817      0.43494      0.53717      0.64555      0.70436      0.76248      0.83905      0.91472      0.97885       0.99745  
    cl_mt_pol_c_p2v8          0.1225        1.8792    0.60925    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            5            0.3242     0.02    7.5874      0        0        1      -2.0431e-32      2.978e-10    0.75874    0.96107    1.1128    1.2013    1.2646    1.3657    1.4163    1.5175    1.7704    2.0233    2.2256    2.3268    2.4786    2.7315    3.0856     3.642    4.4766         1.1627             0.93966              2.4504             0.95392              0.57184               0.48614                1.5074               0.90427               0.37119                  1             0.00085593    0.0059979    0.041708    0.057936     0.091425       0.1365      0.16584      0.26474      0.37742      0.52748      0.64848      0.70499      0.76439      0.83919       0.9214      0.97841       0.99748  
    cl_mt_pol_c_p2v9         0.12643        1.8808    0.61143    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.32509     0.02    7.5734      0        0        1       1.9399e-32     2.1877e-10    0.76114    0.96411    1.1163    1.2178    1.2686    1.3701    1.4208    1.5223     1.776    2.0297    2.2327    2.3849    2.4864    2.7401    3.0446    3.6915    4.4527         1.1591             0.94209              2.4258             0.94933              0.56058               0.47802                1.4914               0.89825               0.37385                  1             0.00050286    0.0077905    0.041449    0.072762     0.095275      0.14013      0.17015      0.26883      0.37679      0.53353       0.6382      0.70799      0.77091      0.84262      0.91497      0.97861       0.99746  
    cl_mt_pol_c_p2v10        0.13036         1.871    0.60393    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.32279     0.02    7.5601      0        0        1        -6.59e-34    -2.5142e-35    0.81047    0.96243    1.1144     1.165     1.317    1.4183     1.469    1.5196    1.7222    2.0262    2.2288    2.3428    2.4694    2.7227    3.0393    3.6471    4.4449         1.1586             0.94661              2.4114               0.945              0.55824               0.48345                1.4885               0.89211               0.36473                  1              0.0017401    0.0084031    0.039643    0.065233     0.099713      0.14562      0.16661      0.27952      0.38524      0.55029      0.64357      0.69944      0.76538      0.83203      0.90965      0.97839       0.99748  
    cl_mt_pol_c_p2v11        0.13429        1.8683    0.59953    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            5            0.3209     0.02    7.5477      0        0        1         3.91e-33     -4.011e-35    0.80913    0.91028    1.1126    1.1631    1.3148     1.416    1.4666    1.5171    1.7194    1.9723    2.2125    2.3263    2.4653    2.6803    3.0343    3.6917    4.4376         1.1618             0.95054              2.4129             0.94451              0.55535               0.48514                1.4981               0.89393               0.35944                  1              0.0019272    0.0048471    0.043814    0.065285     0.094174      0.13178      0.17555      0.24946      0.39464      0.53061      0.64245      0.70001      0.76916      0.83318      0.90998      0.97965       0.99759  
    cl_mt_pol_c_p2v12        0.13821        1.8642    0.59417    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.31873     0.02     7.536      0        0        1       1.7755e-32     3.1527e-34    0.81196    0.91345    1.1164    1.1672    1.2687    1.3955     1.459    1.6239    1.7254    1.9284    2.1821    2.3344    2.4739    2.6389    3.0448    3.6538     4.415         1.1499             0.95821               2.343             0.93594              0.52317               0.47189                1.4668                0.8932               0.35304                  1              0.0021104    0.0053341     0.04918    0.074765     0.092216      0.13124       0.1701      0.26871      0.38954      0.53446       0.6446      0.70087      0.76522      0.83294      0.91413      0.97899       0.99758  
    cl_mt_pol_c_p2v13        0.14214        1.8651    0.59288    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.31789     0.02    7.5249      0        0        1       2.7687e-32     4.1907e-34    0.81076    0.91211    1.1148    1.1655    1.2668    1.3935    1.4568    1.6215    1.7735    1.9636    2.1536    2.3309    2.4703     2.635    3.0404    3.6484    4.4085         1.1397             0.95983              2.3351             0.93486              0.53399               0.47919                1.4496               0.88821                0.3515                  1              0.0019272    0.0049015    0.050553    0.076963     0.094968      0.13194      0.17345      0.24987      0.39047      0.53966      0.64251      0.70645      0.76679      0.83326      0.91513      0.97907       0.99752  
    cl_mt_pol_c_p2v14        0.14607        1.8769    0.59344    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.31618     0.02    7.5144      0        0        1       -1.259e-32    -1.2253e-34    0.86023    0.91083    1.1132    1.1638     1.265    1.3916    1.4548    1.6193    1.7711    1.9735    2.1759    2.3277    2.4795    2.6819    3.0361    3.6813    4.4024         1.1314             0.96089              2.3411             0.93405              0.53699               0.47728                 1.452               0.88818               0.35217                  1              0.0029552    0.0047159    0.049895    0.075013     0.093802      0.13491      0.17489      0.24652      0.38684      0.53497      0.65192      0.70996       0.7791      0.84323      0.91157      0.97877       0.99748  
    cl_mt_pol_c_p2v15           0.15        1.8739    0.59354    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.31673     0.02    7.5044      0        0        1       9.0271e-34    -1.7387e-35    0.85909    0.90963    1.1118    1.1623    1.2634    1.3897    1.4529    1.5792    1.7687    1.9709     2.173    2.3372    2.5267    2.6531    2.9942    3.6385    4.4344         1.1192             0.96374              2.2705             0.92629              0.50173               0.45309                1.4165               0.88817               0.35229                  1              0.0031599    0.0060939    0.049283    0.076518     0.095245      0.13754       0.1771      0.24599      0.38306      0.54038      0.64557      0.71157      0.77147      0.84485      0.90954      0.97867       0.99753  

                         fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p2v1           0.095        4.5242    2.6986    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607      3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668         0.62      0.68754       0.7669      0.87716      0.96425       0.99539  
    cl_mt_pol_k_p2v2        0.098929        4.6008    2.7421    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            5             0.596      0     22.422    -1.8533e-34      0        1      -1.8533e-34    1.2567e-07    0.71603    0.98392    1.4742    1.7512    2.2745    2.5588    2.5588    3.1274    4.0223    5.0649    5.8967      6.16    6.7358    8.2426    10.626    12.889    21.096         5.7072             0.89764              10.595              0.8766               1.5128               0.27465                 7.519                  1                   1.5635               0.92553          0.00016095    0.0018004    0.019484    0.032025     0.056159      0.10751      0.10751      0.17462      0.28485      0.43279      0.55337      0.62433      0.69481      0.77037      0.88308      0.96521        0.9956  
    cl_mt_pol_k_p2v3         0.10286        4.7138    2.7589    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.58528      0     22.471    -1.6599e-31      0        1      -1.6599e-31    7.9816e-08    0.74119     1.2479    1.3507    1.7814    2.4353    2.6381    2.9547    3.0603    4.3055     5.213    6.0361    6.1793    6.9647    8.6109    10.764    12.916    21.141         5.5364             0.90689              10.517             0.87845               1.3461               0.24996                7.6115                  1                   1.5596               0.92796          0.00015295    0.0024321    0.013074    0.030333      0.06112     0.084373      0.16352      0.17758      0.28883       0.4343      0.55556      0.63424       0.6971      0.77405      0.88631      0.96592       0.99555  
    cl_mt_pol_k_p2v4         0.10679        4.8132    2.7681    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.57511      0     22.545     3.6648e-32      0        1       3.6648e-32    8.1812e-08    0.71572     1.2426    1.4535    2.0033    2.4314    2.6795    2.9471    3.1681    4.4436    5.4959    6.0415    6.1889    7.1046    8.5887    10.736    12.883    21.219          5.406             0.90669              10.448             0.87725                1.229               0.22981                7.6627                  1                   1.5564               0.92654          0.00020607      0.00246    0.015733    0.031536     0.055134     0.084893      0.11083      0.17525      0.29922      0.44883      0.57256      0.62765      0.70487      0.77743       0.8866      0.96608       0.99566  
    cl_mt_pol_k_p2v5         0.11071        4.8918    2.7515    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.56247      0     22.736     6.1822e-34      0        1       6.1822e-34    4.3332e-08    0.71755     1.2297     1.625    2.0347    2.4692    2.8491    3.0602    3.3662    4.4444    5.5033    6.0781    6.2047    7.3923    8.6106    10.763    12.916    21.273         5.2633             0.90891              10.256             0.87784               1.1434               0.21916                7.5708                  1                   1.5421               0.92537          0.00020891    0.0023645     0.01789    0.032911     0.064034     0.089561      0.11393      0.22577      0.30011      0.45411      0.57224      0.62612      0.71241      0.78451      0.88814      0.96647       0.99563  
    cl_mt_pol_k_p2v6         0.11464        4.9632    2.7602    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.55613      0     22.422    -1.3242e-34      0        1      -1.3242e-34     8.265e-11    0.67383     1.2003    1.6853    2.2563    2.6273     2.901    3.2007    3.3831    4.3107    5.6012    6.0644    6.2014    7.5805    8.7781    10.739    13.217    21.292         5.2048             0.90773              10.277             0.87529               1.1144               0.21163                7.6187                  1                   1.5434               0.91767          0.00013549    0.0021104     0.02033    0.034109     0.064705      0.08598      0.11843      0.22978      0.29996      0.44862      0.57287      0.63593      0.70517      0.77928      0.88875      0.96633       0.99631  
    cl_mt_pol_k_p2v7         0.11857        5.0644    2.7606    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            5            0.5451      0     22.392    -3.8578e-34      0        1      -3.8578e-34     9.417e-10    0.67577     1.2194    1.8584    2.2354    2.6714    3.0066    3.2521    3.6745    4.3925    5.6173    6.1204    6.1839    7.6024    9.1546    11.214    13.642    21.287         5.1255             0.90469              10.241             0.86891                 1.09               0.20235                7.6209                  1                   1.5303               0.90791          0.00013099     0.002222    0.025051    0.035816     0.059745     0.088859      0.12808      0.24469      0.30258      0.45441      0.57172      0.63211      0.70985      0.78643      0.87434      0.96746       0.99615  
    cl_mt_pol_k_p2v8          0.1225        5.0938     2.736    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.53713      0     22.342    -2.0431e-32      0        1      -2.0431e-32     4.974e-10    0.67444     1.3489    1.9181     2.205    2.8353    3.1298    3.2457    3.6673    4.5208    5.8091    6.1648    6.2343    7.4188    8.9574    11.191    13.215    21.256         5.0213              0.9036               10.01             0.86774               1.0169               0.19251                7.4858                  1                   1.5074               0.90427          0.00013646    0.0020709    0.026525    0.038297     0.063628     0.098848       0.1339      0.18924      0.31301      0.45487      0.59648      0.64865      0.70581       0.7836      0.87833      0.96647       0.99584  
    cl_mt_pol_k_p2v9         0.12643        5.1276    2.7155    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            5            0.5296      0     22.295     1.9399e-32      0        1       1.9399e-32     3.654e-10    0.67657      1.332    2.0862    2.2373    2.6746    3.1397     3.256    3.7424    4.6398    5.7244    6.0891    6.1935    7.2731    8.9857    11.227    13.257    21.312         4.9306             0.90231              9.8333             0.86646              0.96776               0.18581                7.3742                  1                   1.4914               0.89825          0.00015241    0.0021337    0.016421    0.037922     0.060876     0.096578      0.12703      0.19503       0.3102      0.46371      0.58296      0.65158       0.7122       0.7905      0.88172      0.96696       0.99583  
    cl_mt_pol_k_p2v10        0.13036        5.0176    2.7627    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            5            0.5506      0     22.206      -6.59e-34      0        1        -6.59e-34    2.8301e-07    0.73826     1.3769    1.9651     2.414     2.414    2.4773    3.1342     3.377    4.6317    5.6986    6.0574    6.1735    6.9227    8.7906    11.017    13.233    21.275         5.0514             0.90218              10.175              0.8716               1.0535               0.19944                7.6326                  1                   1.4885               0.89211          0.00018102    0.0038188    0.016967    0.065756     0.065756     0.085796      0.12296      0.17913      0.29925      0.46737      0.57255      0.63619      0.69579      0.77997       0.8757      0.96697       0.99637  
    cl_mt_pol_k_p2v11        0.13429        4.9389    2.7952    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.56596      0     22.169       3.91e-33      0        1         3.91e-33    2.6382e-07    0.72442     1.3173    1.9808    2.1495    2.4454    2.6257    2.8973    3.2429     4.484    5.8473    6.0474    6.1949    6.7428    8.7762    10.999    13.212    21.306         5.1486             0.90351              10.427             0.87544               1.1156               0.20902                7.8132                  1                   1.4981               0.89393          0.00024293    0.0021511    0.017623    0.043878      0.06036      0.09523      0.11635       0.1822      0.29213      0.49735      0.56615       0.6426      0.69462      0.77929       0.8745      0.96637       0.99607  
    cl_mt_pol_k_p2v12        0.13821        4.7803    2.7637    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.57815      0     22.224     1.7755e-32      0        1       1.7755e-32    1.0137e-06    0.90823     1.3364    1.8402    2.3259    2.3664    2.4807    2.6583    3.2351    3.7839    5.7091    6.0474    6.1848     6.428    8.4473    10.847    12.856    21.161         5.0188             0.89913              10.254             0.88062                1.149               0.22282                7.6382                  1                   1.4668                0.8932           0.0003445    0.0027322    0.017937    0.052498     0.068525     0.091712      0.11836      0.18075      0.28912      0.44233      0.56467      0.64175       0.7019      0.77199      0.87226      0.96484       0.99564  
    cl_mt_pol_k_p2v13        0.14214        4.8037    2.7527    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.57304      0     22.214     2.7687e-32      0        1       2.7687e-32    2.4626e-07    0.90735      1.525    2.0356    2.4096    2.5373    2.6553    2.6709    3.1776    3.6505    5.7195    6.1757    6.2051    6.4185    8.4349    10.831    12.837    21.282         4.9405              0.8961              10.187             0.87841                 1.16               0.22421                7.5775                  1                   1.4496               0.88821          0.00032629    0.0026634    0.023927    0.055687     0.079664      0.10444      0.12706      0.18375      0.29347      0.44812       0.5617      0.65637      0.70394      0.77007      0.87242      0.96511       0.99566  
    cl_mt_pol_k_p2v14        0.14607        4.8196    2.7547    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.57156      0     22.183     -1.259e-32      0        1       -1.259e-32    2.4839e-07     1.2756     1.6129    2.2138    2.3823    2.5338    2.6439    2.8672    3.2586    3.6454    5.5946    6.0298    6.1671    6.4096    8.9186    11.016    13.019     21.43         4.8877             0.89427              10.203             0.87695               1.1626                0.2226                7.5884                  1                    1.452               0.88818           0.0016782     0.002846    0.024727    0.054863     0.075536     0.099602      0.12648      0.19494      0.30331       0.4362      0.56311      0.62813      0.70027      0.77326      0.86895      0.96559       0.99554  
    cl_mt_pol_k_p2v15           0.15        4.8008    2.6871    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.55971      0     22.153     9.0271e-34      0        1       9.0271e-34    2.0364e-07     1.2744      1.506      2.31    2.5478    2.5641    2.6876    2.8642    3.2553    3.6649    5.5691    6.1789    6.2326    6.6233     8.227    11.187    12.802    21.357         4.6841             0.89097              9.7196             0.87587               1.0828               0.21598                7.2203                  1                   1.4165               0.88817           0.0016224    0.0034323    0.025064    0.060099     0.082509       0.1065      0.13352      0.20244      0.31365      0.43949      0.56513      0.67442      0.71343      0.76891      0.86904      0.96503       0.99586  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar      min       max        pYis0         pYls0        pYgr0      pYisMINY       pYisMAXY        p0_1         p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _______    ______    __________    __________    _______    ___________    ___________    _________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p2v1           0.095        6.3984    4.4414     'cl_mt_coh'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.69415       -4.67    57.077    0.00023453     0.0079735    0.99179    -1.9514e-34     7.7944e-09      -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086        0.9951  
    cl_mt_coh_p2v2        0.098929         6.638    4.4079     'cl_mt_coh'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.66404     -4.4845    57.077    0.00013793     0.0054093    0.99445    -1.8533e-34     3.1207e-09      -1.1487     0.6709    1.5807    2.1872    2.7937    3.4002    3.7035    4.0068    5.8263    7.3426    8.5557    9.4655    10.678    11.892    14.924    22.202    31.603         9.0528             0.88574               19.43                1                  6.2195               0.70243                10.595                0.8766                2.6149               0.96292          -0.00030423     5.9408e-05     0.011889    0.024399     0.042364     0.071932      0.11945      0.14894       0.2752      0.43368      0.53379      0.61011      0.68918      0.75538      0.85645       0.9618       0.99506  
    cl_mt_coh_p2v3         0.10286        6.9365    4.3396     'cl_mt_coh'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.62562     -4.3132    57.077    0.00050211     0.0024926    0.99701    -1.6599e-31     8.4543e-10     -0.36236     1.1572     2.069    2.6768    3.2846    3.8924    4.1964    4.5003    6.0198    7.5394    8.7551    9.6668    10.882    12.098    15.137    22.431    31.853         8.5066             0.88587              18.832                1                  5.7701               0.68119                10.517               0.87845                2.5448               0.96258          -0.00014463      0.0014455     0.017164    0.033066     0.056174     0.092884      0.15839      0.17701      0.28819      0.44376      0.54568      0.61888       0.6962      0.76272      0.86006      0.96313       0.99531  
    cl_mt_coh_p2v4         0.10679        7.1692    4.3025     'cl_mt_coh'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.60013     -4.1546    57.078    0.00033544     0.0014368    0.99823     3.6648e-32     4.3533e-09     -0.21388     1.3018    2.5143    2.8174    3.4237    4.0299    4.3331    4.6362     6.455    7.6675      8.88    9.7894    11.002    12.518    15.246    22.824    31.918         8.2106             0.88598              18.511                1                    5.55                0.6677                10.448               0.87725                2.5133               0.96265          -7.2737e-05      0.0014722     0.023631    0.032239     0.054903     0.089785      0.11813       0.1815      0.31453      0.44811      0.54724      0.61582      0.69592      0.77886      0.86385      0.96535       0.99521  
    cl_mt_coh_p2v5         0.11071        7.3062    4.2462     'cl_mt_coh'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.58119     -4.0071    57.078    0.00036078     0.0011196    0.99852     6.1822e-34     2.7034e-09    -0.056384     1.4631    2.6788    2.9827    3.5905    4.1983    4.5022    4.8061    6.3256    7.8451    9.0608    9.9725    10.884    12.404    15.139    22.736    31.854         7.9224             0.88651              18.031                1                  5.3022               0.65851                10.256               0.87784                 2.472               0.96121          -2.7172e-05      0.0016263     0.024408    0.033518     0.057277     0.093213      0.11877      0.18952      0.30816      0.45979      0.56239        0.626      0.69105       0.7739      0.86429      0.96496       0.99537  
    cl_mt_coh_p2v6         0.11464        7.4737    4.2536     'cl_mt_coh'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.56914     -3.8698    57.078    0.00018505    7.6154e-05    0.99974    -1.3242e-34     6.9033e-10      0.37528     1.8914    2.8011    3.4075    4.0139    4.3172    4.6204    4.9236    6.7429    7.9558    9.1687    10.078    11.291    12.807    15.536    23.117    32.214         7.8462             0.88797              18.093                1                  5.3277               0.65656                10.277               0.87529                2.4887                0.9602           5.5914e-05      0.0026037     0.024851    0.045298     0.074365     0.094078      0.11911      0.18876      0.32683      0.46178      0.55867      0.62758       0.7052      0.78517      0.87096      0.96621       0.99542  
    cl_mt_coh_p2v7         0.11857         7.609    4.2695     'cl_mt_coh'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.56111     -3.7416    57.078    1.9118e-05    5.4758e-05    0.99993    -3.8578e-34      5.638e-10      0.81985     2.0362    2.9485    3.5567    4.1649     4.469    4.7731    5.0772    6.5977    8.1182    9.3346    10.247    11.463    12.984    15.721    23.323    32.446         7.7785             0.88775              18.228                1                  5.4906               0.65907                10.241               0.86891                2.4964               0.95763           0.00020887      0.0028642      0.02608    0.047242     0.077091     0.097279      0.12286      0.19429      0.30975      0.46874      0.56839      0.63179      0.70822      0.78753      0.87218      0.96638       0.99545  
    cl_mt_coh_p2v8          0.1225        7.6881    4.2163     'cl_mt_coh'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.54841     -3.6216    57.078    5.3111e-06    1.3418e-06    0.99999    -2.0431e-32      2.978e-10      0.93084     1.8413    3.0553    3.3588    3.9658    4.5728    4.8763    5.4833    6.6973    7.9113    9.4288    10.339     11.25    12.767    15.499    23.086    32.191         7.6043             0.88799              17.777                1                  5.3164               0.65309                 10.01               0.86774                2.4504               0.95392           0.00025313      0.0019974     0.027556    0.037491      0.06267      0.09994       0.1259      0.21513      0.32101      0.45927      0.57334      0.64297       0.6995      0.77799      0.86985      0.96611       0.99553  
    cl_mt_coh_p2v9         0.12643        7.7261    4.1792     'cl_mt_coh'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.54092     -3.5091    57.078    1.2803e-07    1.0375e-07          1     1.9399e-32     2.1877e-10       1.0578     1.9711     3.189    3.4934    4.1023    4.7113    5.0157    5.6246    6.8425    8.0603    9.2781    10.496    11.409    12.932    15.367    22.979    32.112         7.4639             0.88752              17.466                1                  5.2069               0.64959                9.8333               0.86646                2.4258               0.94933           0.00016593      0.0024153     0.030931    0.041262     0.066795      0.10491      0.13133      0.22217      0.33006      0.47046      0.57504      0.65756      0.71052      0.78617      0.87002      0.96586       0.99551  
    cl_mt_coh_p2v10        0.13036         7.581    4.2253     'cl_mt_coh'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.55736     -3.4033    57.078    2.8542e-09    2.2176e-09          1      -6.59e-34    -3.1236e-34       1.4595     2.0673    2.9791     3.587    3.8909    3.8909    4.8027    5.7144    6.6262    7.8419    9.3615    10.273    11.185    13.009    15.136    23.038    32.156         7.6098             0.88865              17.853                1                  5.2674               0.65201                10.175                0.8716                2.4114                 0.945           0.00075823      0.0025274     0.018062    0.054516     0.092871     0.092871      0.13629      0.23545      0.31068      0.45499      0.58388       0.6377      0.69992       0.7898      0.86891      0.96598       0.99547  
    cl_mt_coh_p2v11        0.13429        7.5102     4.261     'cl_mt_coh'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.56737     -3.3038    57.078    1.9891e-10    1.4315e-10          1       3.91e-33    -1.2355e-34        1.551     2.1579    3.0682    3.3716     3.675    3.9784    4.2819    5.1921    6.4058     7.923    9.1367    10.047    11.261    13.081    15.205    22.791    32.197         7.7304             0.88991              18.156                1                  5.3167               0.65348                10.427               0.87544                2.4129               0.94451           0.00091479      0.0029502     0.023553    0.045116     0.079217      0.10456      0.11891      0.18236      0.29786      0.46285      0.56412      0.62477      0.70217      0.79112       0.8685      0.96407       0.99561  
    cl_mt_coh_p2v12        0.13821        7.3309    4.2132     'cl_mt_coh'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.57471     -3.2099    57.078    8.0121e-13    5.7619e-13          1     1.7755e-32     7.9009e-34       1.6619     2.2708    3.1843    3.4888    3.7933    3.7933    4.0977    5.0112    6.5336     8.056    8.9695    9.8829    11.101    12.623    15.364    22.671     32.11         7.5464             0.88684              17.751                1                  5.1538               0.65559                10.254               0.88062                 2.343               0.93594            0.0010948      0.0034713     0.027693    0.053462     0.095417     0.095417      0.12702      0.21682       0.3268      0.49171      0.57143      0.62793      0.70092      0.77249      0.87698      0.96465       0.99549  
    cl_mt_coh_p2v13        0.14214        7.3584     4.213     'cl_mt_coh'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.57254     -3.1211    57.078    2.1703e-13    1.2555e-13          1     2.7687e-32     8.0062e-34       1.7434     2.3515    3.2636    3.5676    3.8717    3.8717    4.1757    5.0878     6.304    8.1282    9.0403    9.6483    11.169    12.689    15.425    23.026    32.147         7.4756             0.88595              17.749                1                   5.227               0.66008                10.187               0.87841                2.3351               0.93486            0.0010499      0.0031312     0.027615    0.054796      0.10041      0.10041      0.13517      0.23159      0.30793      0.49585       0.5743      0.61983      0.70252      0.77387      0.87778      0.96573       0.99538  
    cl_mt_coh_p2v14        0.14607        7.4458    4.2235     'cl_mt_coh'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.56724     -3.0372    57.078    1.2229e-20    5.9358e-21          1     -1.259e-32    -1.2253e-34       2.1242     2.4278    3.3386    3.6423    3.9459    3.9459    4.2495    5.1603    6.0711    8.1964    9.1073    10.018    11.233    13.054    15.483    23.073    32.182         7.4255             0.88612              17.838                1                  5.2941               0.66114                10.203               0.87695                2.3411               0.93405            0.0018388      0.0030255     0.022273    0.056011      0.10123      0.10123      0.13438      0.20546      0.30478        0.498      0.56756      0.62804      0.70028      0.78565      0.87718       0.9655       0.99532  
    cl_mt_coh_p2v15           0.15        7.3848    4.1298     'cl_mt_coh'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.55923     -2.9577    57.078    1.2337e-21    3.4336e-22          1     9.0271e-34      -3.41e-35       2.1969     2.5001    3.4097     3.713    4.0162    4.0162    4.3194     5.229    6.1386    8.2611    8.8675    9.7771     10.99    12.506    15.538    23.118    32.215         7.1277             0.88214              17.055                1                  5.0653               0.65741                9.7196               0.87587                2.2705               0.92629             0.002047      0.0041126     0.021851    0.057793      0.10522      0.10522      0.14037      0.21434      0.31967        0.523       0.5611      0.64214      0.70411       0.7734      0.88158      0.96752       0.99531  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0       pYgr0      pYisMINY       pYisMAXY       p0_1        p1        p5       p10       p15      p20       p25       p35       p50       p65       p75      p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    _____    _________    _______    ___________    __________    ________    ______    ______    ______    _____    ______    ______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p3v1         -20    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v2     -18.929    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v3     -17.857    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v4     -16.786    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v5     -15.714    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v6     -14.643    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v7     -13.571    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v8       -12.5    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v9     -11.429    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v10    -10.357    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v11    -9.2857    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v12    -8.2143    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v13    -7.1429    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v14    -6.0714    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p3v15         -5    7.4814    2.3715     'cl_mt_val'       'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                1.347                0.92786          -0.00028854    0.00089072    0.02205     0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  

                         fl_b_bd     mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95      p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p3v1         -20    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v2     -18.929    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v3     -17.857    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v4     -16.786    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v5     -15.714    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v6     -14.643    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v7     -13.571    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v8       -12.5    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v9     -11.429    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v10    -10.357    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v11    -9.2857    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v12    -8.2143    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v13    -7.1429    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v14    -6.0714    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p3v15         -5    1.8067    0.61215    'cl_mt_pol_c'      'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.347              0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1              0.00036      0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  

                         fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35      p50      p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ____    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p3v1         -20    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v2     -18.929    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v3     -17.857    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v4     -16.786    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v5     -15.714    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v6     -14.643    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v7     -13.571    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v8       -12.5    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v9     -11.429    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v10    -10.357    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v11    -9.2857    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v12    -8.2143    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v13    -7.1429    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v14    -6.0714    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p3v15         -5    4.5242    2.6986    'cl_mt_pol_k'      'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p3v1         -20    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v2     -18.929    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v3     -17.857    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v4     -16.786    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v5     -15.714    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v6     -14.643    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v7     -13.571    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v8       -12.5    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v9     -11.429    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v10    -10.357    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v11    -9.2857    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v12    -8.2143    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v13    -7.1429    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v14    -6.0714    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p3v15         -5    6.3984    4.4414     'cl_mt_coh'       'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0       pYgr0      pYisMINY       pYisMAXY       p0_1        p1        p5       p10       p15      p20       p25       p35       p50       p65       p75      p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    _____    _________    _______    ___________    __________    ________    ______    ______    ______    _____    ______    ______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p4v1          0.03    7.4817    2.3705     'cl_mt_val'      'fl_c_min'          13               1                   20                   0.095           -20            5           0.31684     -9999    16.554      0      0.0017489    0.99825    -9.4144e-34    7.7945e-09    -0.95731    1.8801    3.4686    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6193                1                 9.3118             0.88451               2.2562               0.45877                5.7091               0.89246                1.3466                 0.928          -0.00026381    0.00092607    0.022076    0.042634     0.080917       0.1116       0.1545      0.23631      0.37788       0.5339      0.65426      0.71875      0.78223      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v2      0.027929    7.4817    2.3705     'cl_mt_val'      'fl_c_min'          13               2                   20                   0.095           -20            5           0.31684     -9999    16.554      0      0.0017489    0.99825    -9.4144e-34    7.7945e-09    -0.95731    1.8801    3.4686    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6193                1                 9.3118             0.88451               2.2562               0.45877                5.7091               0.89246                1.3466                 0.928          -0.00026381    0.00092607    0.022076    0.042634     0.080917       0.1116       0.1545      0.23631      0.37788       0.5339      0.65426      0.71875      0.78223      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v3      0.025857    7.4817    2.3705     'cl_mt_val'      'fl_c_min'          13               3                   20                   0.095           -20            5           0.31684     -9999    16.554      0      0.0017489    0.99825    -9.4144e-34    7.7945e-09    -0.95731    1.8801    3.4686    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6193                1                 9.3118             0.88451               2.2562               0.45877                5.7091               0.89246                1.3466                 0.928          -0.00026381    0.00092607    0.022076    0.042634     0.080917       0.1116       0.1545      0.23631      0.37788       0.5339      0.65426      0.71875      0.78223      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v4      0.023786    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               4                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v5      0.021714    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               5                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v6      0.019643    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               6                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v7      0.017571    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               7                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v8        0.0155    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               8                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v9      0.013429    7.4814    2.3715     'cl_mt_val'      'fl_c_min'          13               9                   20                   0.095           -20            5           0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v10     0.011357    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              10                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v11    0.0092857    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              11                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v12    0.0072143    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              12                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v13    0.0051429    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              13                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v14    0.0030714    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              14                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p4v15        0.001    7.4813    2.3716     'cl_mt_val'      'fl_c_min'          13              15                   20                   0.095           -20            5             0.317     -9999    16.554      0       0.001762    0.99824    -1.7935e-33    7.7943e-09    -0.95344    1.8371    3.4687    4.3468    5.079    5.5105    6.0766    6.4784    7.6233    8.3623    9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6245                1                 9.3157              0.8844               2.2584               0.45895                5.7103               0.89222                 1.347               0.92784          -0.00029072    0.00088859    0.022048    0.042607      0.08089      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  

                         fl_c_min      mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar       min        max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95      p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _________    ______    _____    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p4v1          0.03    1.8067    0.61213    'cl_mt_pol_c'     'fl_c_min'          13               1                   20                   0.095           -20            5           0.33881          0.03    7.7184      0        0        1      -9.4144e-34    7.7945e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.3466               0.928              2.6129             0.96115              0.71866                0.5659                1.5196               0.91991                0.3747                  1             0.00035431    0.0058533     0.03462    0.057219     0.094989      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v2      0.027929    1.8067    0.61213    'cl_mt_pol_c'     'fl_c_min'          13               2                   20                   0.095           -20            5           0.33881      0.027929    7.7184      0        0        1      -9.4144e-34    7.7945e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.3466               0.928              2.6129             0.96115              0.71866                0.5659                1.5196               0.91991                0.3747                  1             0.00035431    0.0058533     0.03462    0.057219     0.094989      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v3      0.025857    1.8067    0.61213    'cl_mt_pol_c'     'fl_c_min'          13               3                   20                   0.095           -20            5           0.33881      0.025857    7.7184      0        0        1      -9.4144e-34    7.7945e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.3466               0.928              2.6129             0.96115              0.71866                0.5659                1.5196               0.91991                0.3747                  1             0.00035431    0.0058533     0.03462    0.057219     0.094989      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v4      0.023786    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               4                   20                   0.095           -20            5           0.33883      0.023786    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v5      0.021714    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               5                   20                   0.095           -20            5           0.33883      0.021714    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v6      0.019643    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               6                   20                   0.095           -20            5           0.33883      0.019643    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v7      0.017571    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               7                   20                   0.095           -20            5           0.33883      0.017571    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v8        0.0155    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               8                   20                   0.095           -20            5           0.33883        0.0155    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v9      0.013429    1.8067    0.61215    'cl_mt_pol_c'     'fl_c_min'          13               9                   20                   0.095           -20            5           0.33883      0.013429    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v10     0.011357    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              10                   20                   0.095           -20            5           0.33883      0.011357    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v11    0.0092857    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              11                   20                   0.095           -20            5           0.33883     0.0092857    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v12    0.0072143    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              12                   20                   0.095           -20            5           0.33883     0.0072143    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v13    0.0051429    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              13                   20                   0.095           -20            5           0.33883     0.0051429    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v14    0.0030714    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              14                   20                   0.095           -20            5           0.33883     0.0030714    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p4v15        0.001    1.8066    0.61216    'cl_mt_pol_c'     'fl_c_min'          13              15                   20                   0.095           -20            5           0.33883         0.001    7.7184      0        0        1      -1.7935e-33    7.7943e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92784              2.6133             0.96116              0.71886               0.56598                1.5197               0.91991               0.37473                  1             0.00036073    0.0058618    0.034623    0.057223      0.09499      0.14113      0.20679      0.25154      0.38762      0.53085      0.63186       0.705       0.75915      0.82975      0.92262      0.97822       0.99755  

                         fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35      p50      p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ____    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p4v1          0.03    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               1                   20                   0.095           -20            5           0.59648      0     22.236    -9.4144e-34      0        1      -9.4144e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7091             0.89246              10.445             0.87152                1.643               0.29347                7.2824                  1                   1.5196               0.91991          0.00024163    0.0018458    0.016352    0.031006     0.055534     0.081192      0.12967      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v2      0.027929    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               2                   20                   0.095           -20            5           0.59648      0     22.236    -9.4144e-34      0        1      -9.4144e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7091             0.89246              10.445             0.87152                1.643               0.29347                7.2824                  1                   1.5196               0.91991          0.00024163    0.0018458    0.016352    0.031006     0.055534     0.081192      0.12967      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v3      0.025857    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               3                   20                   0.095           -20            5           0.59648      0     22.236    -9.4144e-34      0        1      -9.4144e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7091             0.89246              10.445             0.87152                1.643               0.29347                7.2824                  1                   1.5196               0.91991          0.00024163    0.0018458    0.016352    0.031006     0.055534     0.081192      0.12967      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v4      0.023786    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               4                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v5      0.021714    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               5                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v6      0.019643    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               6                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v7      0.017571    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               7                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v8        0.0155    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               8                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v9      0.013429    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13               9                   20                   0.095           -20            5           0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v10     0.011357    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              10                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v11    0.0092857    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              11                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v12    0.0072143    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              12                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v13    0.0051429    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              13                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v14    0.0030714    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              14                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  
    cl_mt_pol_k_p4v15        0.001    4.5242    2.6986    'cl_mt_pol_k'     'fl_c_min'          13              15                   20                   0.095           -20            5            0.5965      0     22.236    -1.7935e-33      0        1      -1.7935e-33    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607    3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7103             0.89222              10.446             0.87152               1.6436               0.29355                7.2827                  1                   1.5197               0.91991          0.00025539    0.0018457    0.016354    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668       0.62        0.68754      0.7669       0.87716      0.96425       0.99539  

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p4v1          0.03    6.3986    4.4411     'cl_mt_coh'      'fl_c_min'          13               1                   20                   0.095           -20            5           0.69408     -4.67    57.077    0.00023474    0.0079525    0.99181    -9.4144e-34    7.7945e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3118             0.88451              19.724                1                  6.6658               0.72346                10.445               0.87152                2.6129               0.96115          -0.00032289    -0.00089797    0.0054298    0.022297     0.039771     0.071576      0.11986       0.1431      0.27604      0.40418      0.54194      0.58874      0.66983      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v2      0.027929    6.3986    4.4411     'cl_mt_coh'      'fl_c_min'          13               2                   20                   0.095           -20            5           0.69408     -4.67    57.077    0.00023474    0.0079525    0.99181    -9.4144e-34    7.7945e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3118             0.88451              19.724                1                  6.6658               0.72346                10.445               0.87152                2.6129               0.96115          -0.00032289    -0.00089797    0.0054298    0.022297     0.039771     0.071576      0.11986       0.1431      0.27604      0.40418      0.54194      0.58874      0.66983      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v3      0.025857    6.3986    4.4411     'cl_mt_coh'      'fl_c_min'          13               3                   20                   0.095           -20            5           0.69408     -4.67    57.077    0.00023474    0.0079525    0.99181    -9.4144e-34    7.7945e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3118             0.88451              19.724                1                  6.6658               0.72346                10.445               0.87152                2.6129               0.96115          -0.00032289    -0.00089797    0.0054298    0.022297     0.039771     0.071576      0.11986       0.1431      0.27604      0.40418      0.54194      0.58874      0.66983      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v4      0.023786    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               4                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v5      0.021714    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               5                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v6      0.019643    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               6                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v7      0.017571    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               7                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v8        0.0155    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               8                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v9      0.013429    6.3984    4.4414     'cl_mt_coh'      'fl_c_min'          13               9                   20                   0.095           -20            5           0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v10     0.011357    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              10                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v11    0.0092857    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              11                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v12    0.0072143    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              12                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v13    0.0051429    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              13                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v14    0.0030714    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              14                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   
    cl_mt_coh_p4v15        0.001    6.3983    4.4415     'cl_mt_coh'      'fl_c_min'          13              15                   20                   0.095           -20            5           0.69416     -4.67    57.077    0.00023452    0.0079758    0.99179    -1.7935e-33    7.7943e-09    -1.6282    0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3157              0.8844              19.727                1                  6.6675               0.72352                10.446               0.87152                2.6133               0.96116          -0.00034777    -0.00092133    0.0054061    0.022273     0.039748     0.071554      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086       0.9951   

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max      pYis0      pYls0       pYgr0      pYisMINY       pYisMAXY       p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    _____    _________    _______    ___________    __________    ________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p5v1           3           7.479    2.3653     'cl_mt_val'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.31625     -9999    16.548      0      0.0018913    0.99811    -2.3534e-33    7.6866e-09     -0.9825    1.7386    3.4634    4.3428    5.0758    5.5074    6.0738    6.4756    7.6196    8.3584    9.0656    9.5652    10.009     10.47    11.147    12.741    14.216         5.5945                1                 9.2331              0.8844               2.1978               0.45121                5.6939               0.88993                1.3415               0.92677          -0.00029461     0.0008563    0.023046    0.042461     0.080319      0.11156      0.15496      0.24185      0.38009      0.53419       0.6511      0.72035      0.78407      0.84915      0.91894      0.98262       0.99816  
    cl_mt_val_p5v2           4          7.4777    2.3712     'cl_mt_val'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02        0.3171     -9999    16.548      0      0.0017728    0.99823     1.9551e-32    7.8086e-09    -0.97245    2.0006    3.4618    4.3408    5.0734     5.505    6.0712    6.4732    7.6179    8.3653    9.1434    9.5642    10.008    10.469    11.171    12.741    14.216         5.6225                1                 9.3175             0.88455               2.2584               0.45842                5.7128                0.8916                1.3464               0.92774          -0.00027026     0.0013238    0.022485    0.042595     0.081299      0.11194       0.1548       0.2383      0.37808       0.5338        0.654      0.71873      0.78237      0.84717      0.91888      0.98246       0.99813  
    cl_mt_val_p5v3           5          7.4814    2.3715     'cl_mt_val'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.31699     -9999    16.554      0      0.0017583    0.99824    -1.9514e-34    7.7944e-09    -0.95483    1.8367    3.4687    4.3468     5.079    5.5105    6.0766    6.4784    7.6233    8.3623     9.149    9.5697    10.014    10.475    11.176    12.747    14.221         5.6241                1                 9.3154              0.8844               2.2582               0.45894                5.7102               0.89224                 1.347               0.92786          -0.00028854    0.00089072     0.02205    0.042609     0.080892      0.11158      0.15448      0.23629      0.37786      0.53389      0.65425      0.71874      0.78222      0.84685      0.91894      0.98247       0.99813  
    cl_mt_val_p5v4           6          7.4818    2.3701     'cl_mt_val'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.31678     -9999    16.555      0      0.0017279    0.99827    -2.8327e-32    7.7885e-09    -0.94077       1.8    3.4719     4.349    5.0807     5.512     6.078    6.4796    7.6245    8.3633    9.1501    9.5707    10.015    10.476    11.177    12.748    14.222         5.6173                1                 9.3067             0.88441               2.2576               0.45965                5.7026               0.89279                1.3465               0.92803          -0.00028022    0.00091774    0.021615     0.04282     0.080224      0.11115      0.15419      0.23401      0.37748      0.53388      0.65435      0.71868      0.78204      0.84858      0.91907      0.98248       0.99813  
    cl_mt_val_p5v5           7          7.4728    2.3712     'cl_mt_val'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.31732     -9999    16.548      0      0.0018271    0.99817     9.4812e-35    7.6834e-09    -0.93321    1.7591    3.4682     4.344    5.0753    5.5064    6.0718    6.4784    7.6181    8.3569    9.1406    9.5642    10.008    10.469    11.146    12.741    14.216         5.6228                1                 9.2835             0.88502               2.2308               0.45812                5.7042               0.89302                1.3485               0.92716          -0.00028581      0.000933    0.021233    0.042552     0.080504      0.11115      0.14793      0.24477      0.37599      0.53379      0.65057      0.71824      0.78225       0.8492      0.91889       0.9826       0.99815  
    cl_mt_val_p5v6           8          7.4832     2.358     'cl_mt_val'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.31511     -9999    16.548      0       0.001605    0.99839    -7.9319e-32    7.6786e-09    -0.91798    2.0176    3.4718    4.3462     5.077    5.5077    6.0735    6.4785    7.6187    8.3575    9.0602    9.5645    10.009    10.469    11.146    12.741    14.216         5.5602                1                 9.2089             0.88498               2.1955               0.45487                5.6752               0.89432                1.3382               0.92721          -0.00026504     0.0013274    0.020038    0.042805     0.078383      0.10975      0.15326      0.24365      0.37534      0.53467      0.65102      0.71806      0.78227      0.84903      0.91899      0.98261       0.99815  
    cl_mt_val_p5v7           9          7.4857    2.3584     'cl_mt_val'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.31506     -9999    16.552      0      0.0016122    0.99839     3.4166e-33    7.6691e-09    -0.89798    1.9323    3.4793     4.352    5.0822    5.5126    6.0783    6.4824    7.6226    8.3613    9.0612    9.5682    10.012    10.473     11.15    12.745    14.219         5.5622                1                 9.2134             0.88505               2.2003               0.45499                 5.674               0.89457                 1.339               0.92733          -0.00027063    0.00098064    0.019688    0.043033     0.078303      0.10966      0.15317      0.24175        0.375      0.53465      0.65103      0.71787      0.78199      0.84876      0.91903      0.98261       0.99815  
    cl_mt_val_p5v8          10          7.4816    2.3608     'cl_mt_val'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.31555     -9999    16.549      0      0.0015566    0.99844    -4.9973e-32    7.6702e-09    -0.88279    1.7871    3.4807    4.3516    5.0812    5.5112    6.0767      6.48    7.6203    8.3586    9.1418    9.5654    10.009     10.47    11.147    12.741    14.216         5.5735                1                 9.2302             0.88512               2.2062               0.45522                5.6835               0.89414                1.3406               0.92719          -0.00028518    0.00098617    0.019216    0.043017     0.077995      0.11197      0.15277      0.23963      0.37882      0.53424      0.65113      0.71752      0.78148       0.8483      0.91906      0.98261       0.99815  
    cl_mt_val_p5v9          11          7.4835    2.3592     'cl_mt_val'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.31525     -9999    16.549      0       0.001557    0.99844     1.6499e-32    7.6642e-09    -0.86193    1.7992    3.4866    4.3554    5.0844    5.5139    6.0794    6.4819    7.6217      8.36    9.1429    9.5664     10.01    10.471    11.148    12.742    14.217         5.5659                1                 9.2247             0.88522               2.2081               0.45562                5.6764               0.89441                1.3402               0.92741          -0.00027789      0.001012    0.018833    0.043076     0.077636      0.11175      0.15253      0.23742      0.37843      0.53475      0.65109      0.71731      0.78115      0.84927      0.91912      0.98261       0.99814  
    cl_mt_val_p5v10         12          7.4812    2.3584     'cl_mt_val'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.31524     -9999    16.549      0      0.0015748    0.99843     2.9502e-32    7.6472e-09    -0.83952    1.7214    3.4926    4.3592    5.0874    5.5163    6.0817    6.4834    7.6228    8.3607    9.0573     9.567    10.011    10.472    11.148    12.742    14.217         5.5621                1                  9.218             0.88521               2.2104               0.45588                 5.668               0.89418                1.3396               0.92742          -0.00027382    0.00095076    0.018561    0.043268     0.077613      0.11181      0.15274      0.23542      0.37935       0.5343      0.65095      0.71721      0.78143      0.84932      0.91919      0.98263       0.99815  
    cl_mt_val_p5v11         13          7.4813    2.3615     'cl_mt_val'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.31566     -9999    16.553      0      0.0016974     0.9983    -5.7403e-32    7.6358e-09    -0.81176     1.711    3.5025    4.3652    5.0939    5.5222     6.085     6.491    7.6271    8.3648    9.0612    9.5708    10.015    10.475    11.152    12.746     14.22         5.5768                1                 9.2405             0.88538               2.2243               0.45653                5.6745               0.89359                1.3418               0.92747          -0.00028499    0.00095317    0.018396     0.04269     0.078072      0.11214      0.14902      0.24231      0.37914      0.53513       0.6509      0.71702      0.78117      0.84903      0.91922      0.98264       0.99815  
    cl_mt_val_p5v12         14          7.4893    2.3538     'cl_mt_val'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.31429     -9999    16.553      0      0.0016665    0.99833      -2.71e-31    7.6586e-09    -0.78461     1.742    3.5101    4.3713    5.0978    5.5254    6.0875     6.493    7.6285    8.3659    9.1481    9.5716    10.015    10.476    11.152    12.746     14.22         5.5404                1                 9.2063             0.88552               2.2074               0.45434                5.6625               0.89449                1.3364               0.92766          -0.00027401     0.0009864    0.017239     0.04353     0.076866      0.11135      0.14883      0.23998      0.37851      0.53466      0.65151      0.71674      0.78071      0.84855      0.91922      0.98264       0.99815  
    cl_mt_val_p5v13         15          7.4809    2.3632     'cl_mt_val'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02        0.3159     -9999    16.556      0      0.0017797    0.99822     1.0783e-31    7.6355e-09    -0.75107    1.7399    3.5222    4.3763    5.0063    5.5324    6.0938    6.4989    7.6336    8.3706    9.0666     9.576     10.02     10.48    11.156     12.75    14.224         5.5847                1                 9.2692             0.88587               2.2497                0.4577                5.6762               0.89354                1.3432               0.92776            -0.000281     0.0009933    0.017764    0.043054     0.074267      0.11032      0.15021      0.23809      0.37841      0.53468      0.65135      0.71671      0.78058       0.8493      0.91929      0.98265       0.99815  
    cl_mt_val_p5v14         16          7.4422    2.3919     'cl_mt_val'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02        0.3214     -9999    16.554      0      0.0020453    0.99795    -3.5247e-31    7.5683e-09    -0.80258    1.5436    3.3698    4.3769    4.8796    5.3273     5.918    6.4992    7.6328    8.3695    9.0654    9.5733    9.9482    10.478    11.125    12.748    14.222         5.7212                1                 9.4537             0.88678                2.376               0.46916                5.7156                0.8904                 1.362                 0.928          -0.00028963     0.0007694    0.016171    0.042185     0.073268      0.10751      0.14596       0.2361      0.37447      0.53339      0.65188      0.71367      0.77752      0.84913      0.91881      0.98268       0.99815  
    cl_mt_val_p5v15         17           7.441    2.3912     'cl_mt_val'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.32136     -9999    16.552      0      0.0020909    0.99791    -1.8632e-31    7.5614e-09    -0.77059    1.5496    3.3561    4.3825    4.8835      5.33    5.9197    6.5003    7.6327     8.369    9.0646    9.5642    9.9523    10.477    11.124    12.746     14.22         5.7178                1                 9.4589             0.88701               2.3855               0.46947                5.7109               0.89045                1.3625               0.92829           -0.0002852    0.00078592     0.01611    0.042114     0.073282      0.10749      0.14667       0.2332      0.37403      0.53257      0.65181      0.71188      0.77785      0.84866      0.91878      0.98268       0.99815  

                         fl_z_r_borr_n     mean       sd       variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95      p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    _______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ____    ______    _____    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p5v1           3          1.8074    0.61196    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.33859     0.02    7.7184      0        0        1      -2.3534e-33    7.6866e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991    3.5994    4.4866         1.3415             0.92677              2.5983             0.96194              0.70314               0.55795                1.5207               0.91863                0.3745                  1             0.00039664    0.0056967     0.03401    0.057459     0.094111      0.13994      0.20577      0.25128      0.38839      0.53046      0.63207      0.70574      0.75877      0.82975      0.92141      0.97832       0.99731  
    cl_mt_pol_c_p5v2           4          1.8071    0.61204    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.33868     0.02    7.7184      0        0        1       1.9551e-32    7.8086e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1799    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.3464             0.92774              2.6138             0.96133              0.71939               0.56573                1.5198               0.91895               0.37459                  1             0.00035469    0.0059314    0.034394    0.056856     0.094967      0.14057       0.2055       0.2509      0.38775      0.53038      0.63425      0.70475      0.75904      0.82966      0.92261      0.97818       0.99754  
    cl_mt_pol_c_p5v3           5          1.8067    0.61215    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.33883     0.02    7.7184      0        0        1      -1.9514e-34    7.7944e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246          1.347             0.92786              2.6132             0.96116              0.71885               0.56597                1.5197               0.91991               0.37473                  1                0.00036    0.0058615    0.034623    0.057223      0.09499      0.14113      0.20679      0.25155      0.38762      0.53085      0.63186        0.705      0.75915      0.82975      0.92262      0.97822       0.99755  
    cl_mt_pol_c_p5v4           6          1.8064     0.6122    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.33891     0.02    7.7184      0        0        1      -2.8327e-32    7.7885e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.5246         1.3465             0.92803              2.6124             0.96108              0.71895                0.5667                1.5186               0.92044               0.37479                  1             0.00035037    0.0057561    0.034708    0.057467      0.09484      0.14136      0.20773      0.25221       0.3877      0.53126      0.63195      0.70514      0.75925      0.82979      0.92266      0.97822       0.99755  
    cl_mt_pol_c_p5v5           7          1.8066    0.61338    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.33953     0.02    7.7184      0        0        1       9.4812e-35    7.6834e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6615    2.991    3.5994    4.4866         1.3485             0.92716              2.6107             0.96216              0.71299               0.56603                1.5215               0.92084               0.37623                  1             0.00034988    0.0059065    0.034941    0.057109     0.095169      0.14021      0.20724      0.25063       0.3884      0.53028      0.63175      0.70493      0.75858      0.82923      0.92136      0.97831        0.9973  
    cl_mt_pol_c_p5v6           8          1.8079    0.61208    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.33855     0.02    7.7184      0        0        1      -7.9319e-32    7.6786e-09    0.69706    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6869    2.991    3.5994    4.4866         1.3382             0.92721              2.5986             0.96205              0.70668               0.56403                1.5173               0.92112               0.37464                  1             0.00048193    0.0058278    0.033763    0.056666     0.094337      0.13978      0.20764      0.25062      0.38798      0.53044      0.63233      0.70487      0.75893      0.84214      0.92132      0.97834       0.99731  
    cl_mt_pol_c_p5v7           9          1.8077    0.61225    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.33869     0.02    7.7184      0        0        1       3.4166e-33    7.6691e-09    0.69706    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1546    2.2813    2.4714    2.6869    2.991    3.5994    4.4866          1.339             0.92733              2.5997             0.96197              0.70855                0.5644                1.5163               0.92086               0.37485                  1              0.0004816    0.0055401    0.034061    0.056839     0.094632      0.14022      0.20764      0.25105      0.38798      0.53056      0.63181      0.70484      0.75893       0.8421      0.92128      0.97837       0.99731  
    cl_mt_pol_c_p5v8          10          1.8076    0.61245    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.33881     0.02    7.7184      0        0        1      -4.9973e-32    7.6702e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6869    2.991    3.5994    4.4866         1.3406             0.92719              2.6024             0.96197              0.70872                0.5637                1.5186               0.92095               0.37509                  1              0.0003627    0.0053768     0.03423    0.056983     0.094777      0.14049      0.20789      0.25125      0.38803      0.53087      0.63204      0.70472      0.75878      0.84204      0.92132      0.97836       0.99731  
    cl_mt_pol_c_p5v9          11          1.8077    0.61255    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.33886     0.02    7.7184      0        0        1       1.6499e-32    7.6642e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4714    2.6869    2.991    3.5994    4.4866         1.3402             0.92741              2.6025             0.96187              0.70974               0.56402                1.5176               0.92094               0.37522                  1              0.0003494    0.0053056    0.034292    0.057122     0.094732      0.14071      0.20807      0.25159      0.38785      0.53098      0.63197      0.70461      0.75872      0.84196      0.92126      0.97838       0.99731  
    cl_mt_pol_c_p5v10         12           1.807    0.61245    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.33893     0.02    7.7184      0        0        1       2.9502e-32    7.6472e-09    0.69706    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991    3.5994    4.4866         1.3396             0.92742              2.6017             0.96209              0.71222               0.56564                1.5144               0.91997                0.3751                  1             0.00044461    0.0053124    0.034514    0.057265     0.094909       0.1406      0.20844      0.25258      0.38741      0.53129      0.63198      0.70565      0.75875      0.82942      0.92134      0.97842       0.99731  
    cl_mt_pol_c_p5v11         13          1.8066    0.61262    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02        0.3391     0.02    7.7184      0        0        1      -5.7403e-32    7.6358e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991    3.5994    4.4866         1.3418             0.92747              2.6046               0.962              0.71427               0.56512                 1.515               0.91967                0.3753                  1             0.00033963    0.0053123    0.034604    0.057193     0.095043      0.14116      0.20827      0.25346      0.38753      0.53164      0.63211      0.70569      0.75883       0.8294      0.92135      0.97845       0.99731  
    cl_mt_pol_c_p5v12         14          1.8077    0.61204    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.33858     0.02    7.7184      0        0        1        -2.71e-31    7.6586e-09    0.69706    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4702    1.7236    1.9264    2.1672    2.2813    2.4334    2.6615    2.991    3.5994    4.4866         1.3364             0.92766              2.6004             0.96192              0.71252                 0.564                1.5133               0.91934               0.37459                  1             0.00039176    0.0052941    0.033994    0.056929     0.094602       0.1409      0.20804      0.25356      0.38731      0.53188      0.63234      0.70537      0.75869      0.82936      0.92133       0.9784       0.99731  
    cl_mt_pol_c_p5v13         15          1.8057    0.61264    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.33928     0.02    7.7184      0        0        1       1.0783e-31    7.6355e-09    0.69706    0.86182    1.0139    1.1153    1.2167    1.3181    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991     3.574    4.4866         1.3432             0.92776              2.6094             0.96197               0.7216               0.56629                1.5124                0.9184               0.37533                  1             0.00039927    0.0055476    0.034436    0.057154     0.094744      0.14265       0.2091      0.23824      0.38797      0.53275       0.6325      0.70562      0.75907      0.82949      0.92138      0.97789       0.99732  
    cl_mt_pol_c_p5v14         16          1.8009     0.6136    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.34071     0.02    7.7184      0        0        1      -3.5247e-31    7.5683e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.2927    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991     3.574    4.4866          1.362               0.928              2.6304             0.96183              0.74272               0.57167                1.5112               0.91771                0.3765                  1             0.00036778    0.0061191    0.034721    0.056095     0.094588      0.12282      0.21158      0.24157      0.39088      0.53497      0.63403      0.70668      0.75853      0.82957      0.92163        0.978       0.99733  
    cl_mt_pol_c_p5v15         17          1.8008    0.61381    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.34085     0.02    7.7184      0        0        1      -1.8632e-31    7.5614e-09    0.68439    0.86182    1.0139    1.1153    1.2167    1.2674    1.3688    1.4195    1.7236    1.9264    2.1292    2.2813    2.4334    2.6615    2.991     3.574    4.4866         1.3625             0.92829              2.6326             0.96173              0.74616               0.57205                1.5097                 0.917               0.37676                  1             0.00037442    0.0059288    0.034887    0.056134     0.094528      0.12313      0.21169      0.24182      0.39068        0.535      0.63408      0.70648      0.75856      0.82945      0.92156      0.97798       0.99733  

                         fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p5v1           3          4.5304     2.705    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.59708      0     22.236    -2.3534e-33      0        1      -2.3534e-33    2.4693e-09    0.76043    0.88717    1.4575    1.6476    2.1514    2.6615    2.6964    2.8516      3.95    5.0573    5.9039    6.1785    6.6538    7.9212    9.9701    12.927    21.115         5.6939             0.88993              10.389             0.87012               1.5511               0.27844                7.3171                  1                   1.5207               0.91863          0.00026365    0.0019284    0.016569    0.030618     0.054553      0.08341      0.13629      0.17192      0.29419      0.43624      0.56164      0.62952      0.69982      0.76689      0.87781      0.96383       0.99545  
    cl_mt_pol_k_p5v2           4          4.5254    2.7022    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.59711      0     22.236     1.9551e-32      0        1       1.9551e-32    2.5085e-09    0.76043    0.93116    1.4575    1.7523    2.1514    2.6615    2.6964    2.9467      3.95    5.0573    5.9039    6.1785    6.4764    8.0796    9.9701    12.679    21.115         5.7128              0.8916              10.453              0.8708               1.6317               0.29063                7.3017                  1                   1.5198               0.91895          0.00024716    0.0018362    0.016554    0.031175     0.054987     0.082383      0.13354      0.17316      0.29249       0.4335      0.55841      0.62518      0.68675      0.77551      0.87753      0.96462       0.99539  
    cl_mt_pol_k_p5v3           5          4.5242    2.6986    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.59649      0     22.236    -1.9514e-34      0        1      -1.9514e-34    2.5039e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607      3.95    5.0573    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7102             0.89224              10.446             0.87152               1.6436               0.29354                7.2826                  1                   1.5197               0.91991          0.00025544    0.0018456    0.016353    0.031009     0.055541     0.081197      0.12968      0.16991      0.29561      0.43106      0.55668         0.62      0.68754       0.7669      0.87716      0.96425       0.99539  
    cl_mt_pol_k_p5v4           6          4.5216     2.695    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.59603      0     22.236    -2.8327e-32      0        1      -2.8327e-32     2.502e-09    0.76043    0.89773    1.4575    1.7004    2.1514    2.6615    2.6964    3.0607      3.95    5.0696     5.865    6.1232    6.5059    7.9212    9.9701    12.679    21.115         5.7026             0.89279              10.435             0.87204               1.6529               0.29597                 7.263                  1                   1.5186               0.92044            0.000243    0.0018568    0.015963    0.031739     0.055665     0.080212      0.12603      0.17084      0.29564      0.43205      0.55175      0.62128      0.69381      0.76724      0.87656      0.96456       0.99538  
    cl_mt_pol_k_p5v5           7          4.5244    2.6938    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.59539      0     22.236     9.4812e-35      0        1       9.4812e-35    2.4683e-09    0.76043    0.88717    1.4575    1.6899    2.1514    2.6615    2.6964    2.9815      3.95     5.126    5.9039    6.1232    6.4462    7.9212    9.9701    12.679    21.115         5.7042             0.89302              10.403               0.873               1.6251               0.29376                7.2563                  1                   1.5215               0.92084          0.00022891    0.0018646    0.015519    0.032135     0.055754     0.078894        0.123      0.17508       0.2952       0.4346      0.56467      0.61833      0.68741      0.76748      0.87656      0.96451       0.99544  
    cl_mt_pol_k_p5v6           8          4.5264    2.6912    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.59455      0     22.236    -7.9319e-32      0        1      -7.9319e-32    2.4667e-09    0.76043    0.89773    1.4786     1.651    2.1514    2.6641    2.6964    2.9815      3.95     5.126    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.6752             0.89432              10.369             0.87313               1.6097               0.29221                7.2423                  1                   1.5173               0.92112          0.00020193    0.0018836     0.01893     0.03114     0.055718     0.078948      0.11933       0.1719      0.29525      0.43442      0.56334      0.61977      0.68791      0.76789      0.87597      0.96438       0.99543  
    cl_mt_pol_k_p5v7           9          4.5321    2.6894    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.59341      0     22.236     3.4166e-33      0        1       3.4166e-33    2.4636e-09    0.76043    0.89773    1.4786    1.6899    2.1514    2.6689    2.6964    2.9853    3.8725     5.126    5.9039    6.1232    6.5059    7.9212    9.9701    12.679    21.115          5.674             0.89457               10.36              0.8727               1.6106               0.29206                7.2329                  1                   1.5163               0.92086           0.0001905    0.0018667    0.017716    0.031697      0.05583     0.080685       0.1158       0.1723      0.28178      0.43198      0.56172      0.62117      0.69716      0.76808      0.87556      0.96449       0.99543  
    cl_mt_pol_k_p5v8          10          4.5316    2.6924    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.59415      0     22.236    -4.9973e-32      0        1      -4.9973e-32     2.464e-09    0.76043    0.91117    1.4786    1.6899    2.1514    2.6689    2.6964    2.9572      3.95    5.1718    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.6835             0.89414              10.377             0.87254               1.6094               0.29117                7.2491                  1                   1.5186               0.92095          0.00017852    0.0018495    0.016617    0.031807     0.056135     0.080137      0.11258      0.17205      0.29595      0.43106      0.56044       0.6208      0.68833      0.76802      0.87505      0.96424       0.99542  
    cl_mt_pol_k_p5v9          11           4.534    2.6901    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.59331      0     22.236     1.6499e-32      0        1       1.6499e-32    2.4621e-09    0.76043    0.89773    1.4786    1.7004    2.1514    2.6689    2.6964    3.0502      3.95    5.1752    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.6764             0.89441              10.366              0.8724                1.612                0.2917                7.2366                  1                   1.5176               0.92094          0.00034688    0.0018451     0.01648    0.031824     0.056093     0.079115      0.10897      0.17218      0.29692      0.43091      0.56421      0.62049      0.68784      0.76826      0.87539       0.9643       0.99542  
    cl_mt_pol_k_p5v10         12          4.5347    2.6877    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.59271      0     22.236     2.9502e-32      0        1       2.9502e-32    2.4566e-09    0.76043    0.88717    1.4786    1.6994    2.1514    2.6721    2.7016    3.0607    3.8339    5.2174    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115          5.668             0.89418              10.347             0.87186               1.6084               0.29108                 7.224                  1                   1.5144               0.91997          0.00032921     0.001849    0.015479    0.031519     0.056181     0.081055       0.1087      0.17197      0.28223      0.43399      0.56222      0.62135      0.68905      0.76865      0.87565       0.9642       0.99542  
    cl_mt_pol_k_p5v11         13          4.5371     2.689    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.59268      0     22.236    -5.7403e-32      0        1      -5.7403e-32     2.453e-09    0.76043    0.89773    1.4786    1.6899    2.1514    2.6721     2.746    2.9815    3.8339    5.2174    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.6745             0.89359              10.351             0.87102               1.6055               0.28939                7.2309                  1                    1.515               0.91967          0.00030855    0.0018439    0.014363    0.031727     0.056385     0.080477      0.11159       0.1734      0.28193      0.43137      0.55992      0.62121      0.68905      0.76889      0.87572      0.96419       0.99541  
    cl_mt_pol_k_p5v12         14          4.5438    2.6895    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02        0.5919      0     22.236      -2.71e-31      0        1        -2.71e-31    2.4603e-09    0.76043    0.90741    1.5093    1.7004    2.1514    2.6721    2.7635    3.0206    3.8339    5.2343    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.6625             0.89449              10.341             0.87052               1.5946               0.28725                7.2332                  1                   1.5133               0.91934          0.00027593    0.0018219    0.014503    0.031918     0.056282     0.079298      0.11067      0.17372       0.2822      0.43961      0.55757      0.62118      0.68855      0.76874      0.87577      0.96461       0.99544  
    cl_mt_pol_k_p5v13         15          4.5453    2.6881    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02        0.5914      0     22.236     1.0783e-31      0        1       1.0783e-31    2.4529e-09    0.76043    0.93116    1.4786    1.7004    2.1514    2.6747    2.7804    3.0502    3.8339    5.2343    5.9039    6.1232    6.5059    7.9212    9.9701    12.679    21.115         5.6762             0.89354              10.342             0.86898               1.6042               0.28693                7.2258                  1                   1.5124                0.9184          0.00025763    0.0018257    0.015455    0.031491     0.056645     0.081125      0.10929      0.17286      0.28291       0.4395      0.55666      0.62125      0.69802      0.76943      0.87539      0.96453       0.99545  
    cl_mt_pol_k_p5v14         16          4.5428    2.6837    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.59075      0     22.236    -3.5247e-31      0        1      -3.5247e-31    2.4313e-09    0.76043    0.91117     1.505     1.711    2.1514    2.6689    2.8094    3.0629    3.8339    5.2343    5.9039    6.1232    6.4764    7.9212    9.9701    12.679    21.115         5.7156              0.8904              10.361             0.86621               1.6475               0.28993                7.2023                  1                   1.5112               0.91771          0.00023573    0.0018349    0.014204    0.031783     0.057094       0.0802      0.11046      0.17481      0.28529      0.43811      0.56081      0.62137      0.68918      0.77071      0.87542      0.96462       0.99547  
    cl_mt_pol_k_p5v15         17           4.553    2.6821    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.58909      0     22.236    -1.8632e-31      0        1      -1.8632e-31     2.429e-09    0.76043    0.93901    1.5093     1.711    2.1514    2.6689    2.8207    3.1368    3.8339    5.2343    5.9039    6.1232    6.5059    7.9212    9.9701    12.679    21.115         5.7109             0.89045              10.349             0.86518               1.6451               0.28863                7.1938                  1                   1.5097                 0.917          0.00021345    0.0018672    0.014251    0.031913     0.057155     0.079118      0.11004      0.17893       0.2856      0.43529      0.55819      0.62195      0.69845      0.77106      0.87518      0.96452       0.99547  

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    ________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p5v1           3          6.3926    4.4139     'cl_mt_coh'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.69047     -4.67    57.077    0.00021951    0.0089473    0.99083    -2.3534e-33    7.6866e-09    -1.6282     0.19679    1.4135    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.222         9.2331              0.8844              19.482                1                   6.495               0.71456                10.389               0.87012                2.5983               0.96194          -0.00036593     -0.0010695     0.010533    0.022027      0.03977     0.071117      0.11957      0.14327      0.27743       0.4056      0.54406      0.59107       0.6725      0.75459      0.85346      0.95917       0.99463  
    cl_mt_coh_p5v2           4          6.4028    4.4424     'cl_mt_coh'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.69382     -4.67    57.077    0.00026558    0.0079666    0.99177     1.9551e-32    7.8086e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3175             0.88455              19.735                1                  6.6678               0.72242                10.453                0.8708                2.6138               0.96133          -0.00032135    -0.00090908    0.0052823    0.022236     0.039596     0.071086      0.11879      0.14259      0.27539      0.40363      0.54169      0.58853      0.66966      0.75156      0.84981      0.96085        0.9951  
    cl_mt_coh_p5v3           5          6.3984    4.4414     'cl_mt_coh'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.69415     -4.67    57.077    0.00023453    0.0079735    0.99179    -1.9514e-34    7.7944e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3154              0.8844              19.726                1                  6.6673               0.72351                10.446               0.87152                2.6132               0.96116          -0.00034549    -0.00091915    0.0054083    0.022275      0.03975     0.071556      0.11984      0.14308      0.27602      0.40417      0.54193      0.58873      0.66982      0.75175      0.84996      0.96086        0.9951  
    cl_mt_coh_p5v4           6          6.3953    4.4399     'cl_mt_coh'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.69425     -4.67    57.077    0.00028226    0.0079597    0.99176    -2.8327e-32    7.7885e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    22.097    31.527         9.3067             0.88441              19.713                1                  6.6662               0.72452                10.435               0.87204                2.6124               0.96108          -0.00034308    -0.00091138    0.0054819    0.022279     0.039843     0.071802      0.12068      0.14351      0.27668      0.40461      0.54207      0.58887      0.66993      0.75191      0.85003      0.96087        0.9951  
    cl_mt_coh_p5v5           7          6.3868    4.4237     'cl_mt_coh'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.69263     -4.67    57.077    0.00034505    0.0080816    0.99157     9.4812e-35    7.6834e-09    -1.6282     0.19679    1.1093    1.7177    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.527         9.2835             0.88502              19.569                1                  6.5553                0.7216                10.403                 0.873                2.6107               0.96216          -0.00035384    -0.00091895    0.0060564    0.016173     0.039636     0.070699      0.12013      0.14231      0.27563      0.40409      0.54258       0.5898      0.67154      0.75417      0.85297      0.95912       0.99515  
    cl_mt_coh_p5v6           8          6.3978     4.413     'cl_mt_coh'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.68976     -4.67    57.077    0.00038328    0.0076307    0.99199    -7.9319e-32    7.6786e-09    -1.3241     0.19679    1.4135    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.527         9.2089             0.88498              19.474                1                  6.5064               0.72028                10.369               0.87313                2.5986               0.96205          -0.00042151    -0.00086757     0.010983    0.022266     0.039857      0.07121      0.12108        0.143      0.27625      0.40499      0.54296      0.59026      0.67197      0.75459      0.85337      0.95917       0.99516  
    cl_mt_coh_p5v7           9          6.3943     4.414     'cl_mt_coh'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.69029     -4.67    57.077    0.00040426    0.0077434    0.99185     3.4166e-33    7.6691e-09    -1.6282     0.19679    1.4135    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.527         9.2134             0.88505              19.483                1                  6.5236               0.72078                 10.36                0.8727                2.5997               0.96197          -0.00034048    -0.00088905     0.011099    0.022354     0.039934     0.071403      0.12101      0.14316      0.27647      0.40508      0.54275       0.5901      0.67189      0.75462      0.85338      0.95917       0.99515  
    cl_mt_coh_p5v8          10          6.3919    4.4172     'cl_mt_coh'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.69106     -4.67    57.077    0.00050895    0.0084065    0.99108    -4.9973e-32    7.6702e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.527         9.2302             0.88512              19.512                1                  6.5322               0.72037                10.377               0.87254                2.6024               0.96197          -0.00037997    -0.00097411    0.0047424    0.022264     0.039804     0.071365      0.12099      0.14316      0.27646      0.40499      0.54242      0.58979      0.67168      0.75452      0.85326      0.95915       0.99515  
    cl_mt_coh_p5v9          11          6.3909    4.4171     'cl_mt_coh'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.69115     -4.67    57.077    0.00055583    0.0083981    0.99105     1.6499e-32    7.6642e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.527         9.2247             0.88522               19.51                1                  6.5417               0.72094                10.366                0.8724                2.6025               0.96187          -0.00037994    -0.00097065    0.0048125    0.022286     0.039854     0.071542      0.12116      0.14334      0.27668      0.40515       0.5422      0.58964      0.67162      0.75456      0.85333      0.95915       0.99515  
    cl_mt_coh_p5v10         12          6.3814    4.4154     'cl_mt_coh'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.69192     -4.67    57.077      0.000576    0.0084877    0.99094     2.9502e-32    7.6472e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.222          9.218             0.88521              19.496                1                  6.5474               0.72127                10.347               0.87186                2.6017               0.96209          -0.00038627    -0.00098207    0.0050008    0.022347     0.039923     0.071401      0.12144      0.14377      0.27745      0.40654      0.54361      0.59053      0.67214      0.75482      0.85341      0.95916       0.99463  
    cl_mt_coh_p5v11         13          6.3734    4.4195     'cl_mt_coh'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.69344     -4.67    57.077    0.00065693    0.0090696    0.99027    -5.7403e-32    7.6358e-09    -1.6282     0.19679    1.1093    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.222         9.2405             0.88538              19.532                1                  6.5763               0.72123                10.351               0.87102                2.6046                 0.962          -0.00042549     -0.0010576    0.0051794    0.022409     0.039882     0.071334      0.12089      0.14353      0.27747      0.40656      0.54327      0.59024      0.67198      0.75477      0.85342      0.95915       0.99462  
    cl_mt_coh_p5v12         14          6.3816    4.4169     'cl_mt_coh'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.69213     -4.67    57.077    0.00066038    0.0088072    0.99053      -2.71e-31    7.6586e-09    -1.6282     0.19679    1.4135    2.0218    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.222         9.2063             0.88552              19.509                1                  6.5678               0.72038                10.341               0.87052                2.6004               0.96192          -0.00042082      -0.001032     0.011174    0.022389      0.03996     0.071539      0.12103      0.14393      0.27793      0.40688      0.54304      0.59003      0.67181      0.75452      0.85335      0.95914       0.99463  
    cl_mt_coh_p5v13         15          6.3581    4.4276     'cl_mt_coh'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.69637     -4.67    57.077    0.00068956     0.009744    0.98957     1.0783e-31    7.6355e-09    -1.6282           0    1.1093    1.7177    2.6302    3.2385    3.5427    3.8469    5.6719    6.8886    8.4095    9.0178    10.235    11.755    14.797    21.793    31.222         9.2692             0.88587              19.604                1                  6.6521               0.72232                10.342               0.86898                2.6094               0.96197          -0.00045422      -0.001202    0.0047987    0.016662     0.040319     0.071977      0.12108      0.14446      0.27762      0.40666      0.54232      0.58943      0.67134      0.75424      0.85321      0.95908       0.99462  
    cl_mt_coh_p5v14         16          6.2962     4.457     'cl_mt_coh'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.70789     -4.67    57.077     0.0007501      0.01245     0.9868    -3.5247e-31    7.5683e-09    -1.9324    -0.41155    1.1093    1.4135     2.326    2.9344    3.5427    3.8469    5.3677    6.8886    8.4095    9.0178    10.235    11.755    14.493    21.793    31.222         9.4537             0.88678              19.865                1                  6.8734               0.72834                10.361               0.86621                2.6304               0.96183          -0.00039802     -0.0014789    0.0057554    0.014177     0.031731     0.053752      0.11952      0.14339      0.24881       0.4056      0.54092      0.58819      0.67044      0.75375        0.847      0.95897        0.9946  
    cl_mt_coh_p5v15         17          6.2916    4.4596     'cl_mt_coh'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.70882     -4.67    57.077    0.00082968     0.012642    0.98653    -1.8632e-31    7.5614e-09    -1.9324    -0.41155    1.1093    1.4135     2.326    2.9344    3.5427    3.8469    5.3677    6.8886    8.4095    9.0178    10.235    11.755    14.493    21.793    31.222         9.4589             0.88701              19.888                1                   6.907               0.72883                10.349               0.86518                2.6326               0.96173          -0.00039995     -0.0014974    0.0058461    0.014326     0.031831      0.05384      0.11939      0.14332      0.24856      0.40561      0.54033      0.58774      0.67016      0.75365      0.84703      0.95895        0.9946  

Medium Grid Simulation (Limited Graphs)

it_size_type = 2;
ar_it_plot_sets = [3,4,102, 152,104,106];
bl_simu_cross = 'c';

% Simulate along parameters
ff_az_test_analyze( ...
    ar_it_plot_sets, bl_simu_cross, it_size_type, cl_st_param_keys, ...
    param_map, support_map, param_tstar_map);

close all;
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: SUPPORT_MAP
----------------------------------------
  Map with properties:

        Count: 51
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 34 ; key = st_img_name_main ; val = _default
pos = 35 ; key = st_img_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/img/
pos = 36 ; key = st_img_prefix ; val = 
pos = 37 ; key = st_img_suffix ; val = _p9.png
pos = 38 ; key = st_mat_name_main ; val = _default
pos = 39 ; key = st_mat_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/mat/
pos = 40 ; key = st_mat_prefix ; val = 
pos = 41 ; key = st_mat_suffix ; val = _p9
pos = 42 ; key = st_mat_test_name_main ; val = r
pos = 43 ; key = st_mat_test_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//test/ff_ipwkbzr_ds_vecsv/mat/
pos = 44 ; key = st_mat_test_prefix ; val = nbc_
pos = 45 ; key = st_mat_test_suffix ; val = _g1011121314_cc_t2l75
pos = 46 ; key = st_matimg_path_root ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr/
pos = 47 ; key = st_profile_name_main ; val = _default
pos = 48 ; key = st_profile_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/profile/
pos = 49 ; key = st_profile_prefix ; val = 
pos = 50 ; key = st_profile_suffix ; val = _p9
pos = 51 ; key = st_title_prefix ; val = 
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                    i     idx    value
                                    __    ___    _____

    bl_display                       1     1        0 
    bl_display_defparam              2     2        0 
    bl_display_dist                  3     3        0 
    bl_display_evf                   4     4        0 
    bl_display_final                 5     5        0 
    bl_display_final_dist            6     6        1 
    bl_display_final_dist_detail     7     7        0 
    bl_display_funcgrids             8     8        0 
    bl_display_graph_stats           9     9        0 
    bl_display_simu_stats           10    10        1 
    bl_graph                        11    11        0 
    bl_graph_coh_t_coh              12    12        0 
    bl_graph_evf                    13    13        0 
    bl_graph_funcgrids              14    14        0 
    bl_graph_funcgrids_detail       15    15        0 
    bl_graph_onebyones              16    16        1 
    bl_graph_pol_lvl                17    17        0 
    bl_graph_pol_pct                18    18        0 
    bl_graph_val                    19    19        0 
    bl_img_save                     20    20        0 
    bl_mat                          21    21        0 
    bl_mat_test                     22    22        1 
    bl_post                         23    23        1 
    bl_profile                      24    24        0 
    bl_profile_dist                 25    25        0 
    bl_replacefile                  26    26        0 
    bl_time                         27    27        1 
    bl_timer                        28    28        1 
    it_display_every                29    29       20 
    it_display_final_colmax         30    30       12 
    it_display_final_rowmax         31    31      100 
    it_display_summmat_colmax       32    32        7 
    it_display_summmat_rowmax       33    33        7 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_MAP
----------------------------------------
  Map with properties:

        Count: 55
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 4 ; key = cl_st_param_keys ; val = fl_z_r_borr_poiss_mean
pos = 51 ; key = st_analytical_stationary_type ; val = eigenvector
pos = 52 ; key = st_model ; val = ipwkbzr
pos = 53 ; key = st_v_coh_z_interp_method ; val = method_cell
pos = 54 ; key = st_z_r_borr_drv_ele_type ; val = unif
pos = 55 ; key = st_z_r_borr_drv_prb_type ; val = poiss
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         i    idx    rowN    colN    mean     std      min    max
                         _    ___    ____    ____    ____    ______    ___    ___

    ar_param_keys_idx    1     1      1       5       12     1.5811    10     14 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                               i     idx     value 
                               __    ___    _______

    bl_default                  1     2           0
    bl_loglin                   2     3           0
    fl_Amean                    3     5           1
    fl_a_max                    4     6          50
    fl_a_min                    5     7           0
    fl_alpha                    6     8        0.36
    fl_b_bd                     7     9         -20
    fl_beta                     8    10        0.94
    fl_c_min                    9    11        0.02
    fl_coh_interp_grid_gap     10    12         0.1
    fl_crra                    11    13         1.5
    fl_default_wprime          12    14           0
    fl_delta                   13    15        0.08
    fl_k_max                   14    16          70
    fl_k_min                   15    17           0
    fl_loglin_threshold        16    18           1
    fl_nan_replace             17    19       -9999
    fl_r_save                  18    20       0.025
    fl_tol_dist                19    21       1e-05
    fl_tol_pol                 20    22       1e-05
    fl_tol_val                 21    23       1e-05
    fl_w                       22    24     0.44365
    fl_w_interp_grid_gap       23    25         0.1
    fl_w_max                   24    26          50
    fl_w_min                   25    27         -20
    fl_z_mu                    26    28           0
    fl_z_r_borr_max            27    29       0.095
    fl_z_r_borr_min            28    30       0.025
    fl_z_r_borr_n              29    31           5
    fl_z_r_borr_poiss_mean     30    32          20
    fl_z_rho                   31    33         0.8
    fl_z_sig                   32    34         0.2
    fl_z_wage_mu               33    35           0
    fl_z_wage_rho              34    36         0.8
    fl_z_wage_sig              35    37         0.2
    it_a_n                     36    38         750
    it_ak_perc_n               37    39          50
    it_c_interp_grid_gap       38    40      0.0001
    it_maxiter_dist            39    41        1000
    it_maxiter_val             40    42         250
    it_size_type               41    43           2
    it_st_simu_type_g_seed     42    44         123
    it_st_simu_type_g_simun    43    45          20
    it_tol_pol_nochange        44    46          25
    it_trans_power_dist        45    47        1000
    it_w_perc_n                46    48          50
    it_z_n                     47    49          55
    it_z_wage_n                48    50          11

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_TSTAR_MAP
----------------------------------------
  Map with properties:

        Count: 19
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                              i     idx    rowN    colN     mean        std        min     max 
                              __    ___    ____    ____    ______    _________    _____    ____

    fl_a_max                   1     1      1        5         65       11.859       50      80
    fl_alpha                   2     2      1        5        0.4     0.079057      0.3     0.5
    fl_b_bd                    3     3      1       15      -12.5       4.7916      -20      -5
    fl_beta                    4     4      1       15       0.92     0.031944     0.87    0.97
    fl_c_min                   5     5      1       15     0.0155    0.0092637    0.001    0.03
    fl_crra                    6     6      1       15          3       1.2778        1       5
    fl_delta                   7     7      1        5       0.08     0.047434     0.02    0.14
    fl_r_borr                  8     8      1        5      0.125     0.098821        0    0.25
    fl_r_save                  9     9      1        5      0.025     0.011859     0.01    0.04
    fl_w                      10    10      1        5       1.25      0.11859      1.1     1.4
    fl_z_r_borr_max           11    11      1       15     0.1225     0.017569    0.095    0.15
    fl_z_r_borr_n             12    12      1       15         10       4.4721        3      17
    fl_z_r_borr_poiss_mean    13    13      1       15          6       2.5555        2      10
    fl_z_rho                  14    14      1        5      0.495      0.39133        0    0.99
    fl_z_sig                  15    15      1        5      0.255      0.19369     0.01     0.5
    fl_z_wage_rho             16    16      1        5      0.495      0.39133        0    0.99
    fl_z_wage_sig             17    17      1        5      0.255      0.19369     0.01     0.5
    it_a_n                    18    18      1        5       1300       948.68      100    2500
    it_z_n                    19    19      1        5         15       7.9057        5      25

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY       p0_1         p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    _____    __________    _______    ___________    __________    _________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p1v1                  2            6.8396    2.3058     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5           0.33712     -9999    16.648      0       0.0023064    0.99769     2.8966e-34    2.0816e-13      -0.6038    1.1956    2.8762    3.7924    4.4076     4.893    5.3059    6.0151     6.934    7.8214     8.463    8.8299    9.2341    9.7364    10.471    11.762    13.028         5.3165                1                 8.2873             0.91097                2.629               0.52598                4.5481               0.85363                1.1102               0.95857          -0.00017627    0.00058559     0.01359     0.03844     0.068682      0.10263      0.13994      0.22269       0.3651      0.52671      0.64601      0.70878      0.77478      0.84419      0.91791      0.98197       0.99804  
    cl_mt_val_p1v2             2.5714            6.9892    2.3232     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5            0.3324     -9999    16.644      0       0.0030915    0.99691     1.6162e-33     2.544e-13     -0.91868    1.0993    2.9239    3.9055     4.554    5.0609    5.4872    6.2067     7.139    8.0085    8.6219    8.9749    9.3629    9.8605    10.573    11.827    13.074         5.3974                1                 8.4357             0.91359               2.7756               0.54358                4.5394               0.84428                1.1207               0.95216          -0.00022538    0.00029794    0.012937    0.037798     0.068288      0.10279      0.14055      0.22409      0.36758       0.5304       0.6492      0.71215      0.77767      0.84708      0.91956      0.98232        0.9981  
    cl_mt_val_p1v3             3.1429            7.1813    2.2821     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.31778     -9999    16.639      0       0.0031593    0.99684     1.5278e-33    2.9152e-13     -0.99415    1.1786    3.1317    4.1521    4.8184    5.3348    5.7593    6.4691    7.3585    8.1768    8.7638    9.1017    9.4868     9.955    10.644    11.892    13.119         5.2079                1                 8.1889             0.91443               2.6416               0.54197                4.4484               0.84303                 1.099               0.94607          -0.00024302    0.00029746    0.013549    0.039294     0.070544      0.10592       0.1447      0.23027      0.37473      0.53738       0.6553      0.71735      0.78189      0.84928      0.92094      0.98267       0.99814  
    cl_mt_val_p1v4             3.7143             7.337     2.225     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.30325     -9999    16.639      0       0.0028859    0.99711     8.7185e-34    3.2628e-13      -0.9655    1.3492    3.3743    4.4112    5.0745    5.5812    5.9856    6.6661    7.5219    8.3005    8.8654     9.177    9.5575    10.025    10.701    11.931    13.148         4.9505                1                 7.8203             0.91386               2.4043                0.5313                4.3468               0.84733                1.0692               0.94238          -0.00024854    0.00041283    0.014463    0.041419     0.073975      0.11027      0.14966       0.2364      0.38134      0.54301      0.65968      0.72127       0.7851      0.85215      0.92214      0.98321       0.99816  
    cl_mt_val_p1v5             4.2857            7.4636    2.1618     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.28965     -9999    16.638      0        0.002512    0.99749    -5.9298e-34     3.478e-13     -0.90301     1.535    3.6299    4.6619    5.2869    5.7874    6.1828    6.8251     7.628    8.3783    8.9462    9.2562    9.6093    10.071    10.721    11.957    13.168         4.6735                1                 7.4216             0.91253               2.1395               0.51439                4.2457                 0.854                1.0364                0.9403          -0.00023853    0.00061034    0.015784    0.043859     0.077473      0.11452      0.15487       0.2427       0.3871      0.54795      0.66433      0.72521      0.78794      0.85419      0.92315       0.9833       0.99819  
    cl_mt_val_p1v6             4.8571             7.549    2.1103     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.27955     -9999    16.637      0       0.0021431    0.99786     1.4063e-33    3.6092e-13     -0.79585    1.7449    3.8444    4.8337    5.4492    5.8971    6.2807     6.912    7.6817    8.4282    8.9735    9.2906    9.6406    10.091    10.755    11.975    13.179         4.4534                1                 7.1067             0.91127                1.924               0.49841                 4.172               0.86163                1.0107               0.93983          -0.00022504    0.00083227    0.016951     0.04606       0.0805      0.11793      0.15886      0.24661      0.39189      0.55156      0.66673      0.72741      0.79028      0.85502      0.92406      0.98345       0.99821  
    cl_mt_val_p1v7             5.4286            7.6077    2.0719     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.27234     -9999    16.637      0       0.0018772    0.99812     4.3814e-34    3.7124e-13      -0.6429     1.926    4.0078    4.9627     5.554    6.0061    6.3539    6.9569    7.7352    8.4729     9.001    9.3196    9.6672    10.114    10.775    11.989    13.192         4.2927                1                 6.8793             0.91007               1.7647               0.48569                4.1226               0.86849               0.99193               0.94033          -0.00020881     0.0010385    0.018069    0.047749     0.082827      0.12056      0.16113      0.24895      0.39466      0.55425      0.66949      0.72862      0.79133      0.85691      0.92436      0.98353       0.99823  
    cl_mt_val_p1v8                  6            7.6531    2.0427     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.26691     -9999    16.634      0       0.0016757    0.99832    -8.8069e-34    3.8006e-13     -0.52069    2.0818    4.1331    5.0453    5.6195    6.0657    6.4251    7.0459    7.7725    8.4876     9.028    9.3461    9.6909    10.132    10.792    12.001    13.202         4.1725                1                 6.7161             0.90939               1.6448               0.47598                4.0935               0.87475               0.97788               0.94037          -0.00019664      0.001219    0.018782    0.049264     0.084084      0.12268      0.16316       0.2523      0.39649      0.55589      0.67006      0.73046      0.79194      0.85689      0.92477      0.98363       0.99824  
    cl_mt_val_p1v9             6.5714            7.6803    2.0232     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.26343     -9999    16.633      0         0.00152    0.99848     5.9131e-34    3.8941e-13     -0.44376    2.1819    4.2127    5.0999    5.6551    6.1129    6.4687    7.0398     7.794     8.515    9.0412    9.3428    9.7063    10.137    10.809    12.002      13.2         4.0935                1                 6.6061              0.9087               1.5625               0.46919                 4.075               0.87942               0.96863               0.94079          -0.00018668     0.0013633     0.01935    0.050107     0.085105       0.1241      0.16464       0.2524      0.39793      0.55728      0.67097      0.73062      0.79287      0.85707      0.92494      0.98371       0.99825  
    cl_mt_val_p1v10            7.1429            7.7057    2.0026     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.25988     -9999    16.635      0       0.0013703    0.99863    -2.9024e-33    3.9252e-13     -0.33407    2.3223    4.2806    5.1457    5.7151    6.1504     6.474    7.0852    7.8097    8.5178    9.0567    9.3511    9.7163    10.153    10.811    12.017    13.202         4.0104                1                  6.485               0.908                1.479               0.46069                4.0472                0.8837               0.95882               0.94166          -0.00017622     0.0015087    0.020009     0.05094     0.086559      0.12581      0.16592      0.25471      0.39852      0.55881      0.67226      0.73123      0.79308      0.85778      0.92519      0.98382       0.99824  
    cl_mt_val_p1v11            7.7143             7.725    1.9876     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.25729     -9999    16.635      0       0.0012429    0.99876    -2.6476e-33    4.0689e-13     -0.24936    2.4302    4.3171    5.1921    5.7429    6.1639    6.5146    7.0847    7.8185    8.5263    9.0555    9.3718    9.7163    10.156    10.819    12.017    13.207         3.9505                1                 6.3974             0.90749               1.4185               0.45472                4.0274               0.88685               0.95154               0.94209          -0.00016299     0.0016559    0.020352    0.051625     0.087306      0.12593       0.1669      0.25662      0.39965      0.55843      0.67208      0.73208      0.79413      0.85787      0.92534      0.98377       0.99825  
    cl_mt_val_p1v12            8.2857            7.7442    1.9702     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.25441     -9999    16.634      0       0.0011275    0.99887       2.47e-34    4.1019e-13     -0.14228    2.5111     4.372    5.2156    5.7674    6.2026    6.5196    7.0829    7.8311    8.5481    9.0679    9.3708    9.7241    10.164    10.826    12.017    13.214         3.8817                1                 6.3018             0.90696               1.3522               0.44687                4.0064               0.89029               0.94315               0.94265          -0.00015139     0.0017852       0.021    0.052271     0.087981      0.12776      0.16777      0.25584      0.40133      0.55923      0.67278      0.73262      0.79393      0.85821      0.92551      0.98382       0.99826  
    cl_mt_val_p1v13            8.8571            7.7574    1.9614     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.25284     -9999    16.635      0       0.0010614    0.99894    -7.4101e-35    4.1355e-13    -0.050801    2.5915     4.414    5.2549    5.7833    6.2007    6.5478    7.1205     7.849    8.5486    9.0785    9.3746    9.7412    10.174     10.83    12.019    13.215          3.847                1                 6.2572             0.90674               1.3185               0.44373                3.9996               0.89269               0.93918               0.94308          -0.00014042     0.0018941    0.021194    0.052644     0.088808      0.12734      0.16842      0.25721      0.40217      0.56024      0.67353      0.73338      0.79491      0.85826      0.92569      0.98388       0.99827  
    cl_mt_val_p1v14            9.4286            7.7714    1.9472     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.25056     -9999    16.634      0      0.00095282    0.99905    -6.8645e-34    4.1549e-13     0.055779    2.6757    4.4619    5.3135    5.8122    6.2099    6.5576    7.1229      7.85    8.5481    9.0832    9.3784    9.7402    10.178    10.835    12.021    13.213         3.7916                1                 6.1804             0.90633                1.268               0.43718                  3.98               0.89531               0.93238               0.94371          -0.00012955     0.0019951    0.021547    0.053346     0.089301       0.1286      0.16964      0.25867      0.40206      0.56023      0.67508      0.73297      0.79595      0.85856      0.92567      0.98384       0.99826  
    cl_mt_val_p1v15                10            7.7874    1.9358     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.24857     -9999    16.635      0      0.00086738    0.99913    -4.7744e-34    4.1847e-13     0.085483    2.7505    4.5079    5.3298    5.8221    6.2169    6.5695    7.1223    7.8711     8.582    9.0841    9.3978    9.7409    10.182     10.84    12.033    13.214         3.7471                1                 6.1249             0.90612               1.2313               0.43259                3.9666               0.89756               0.92703               0.94425          -0.00011768     0.0021619    0.022084    0.053917     0.089816      0.12876      0.17063      0.25836      0.40347      0.56248      0.67403      0.73355      0.79519      0.85864      0.92591      0.98395       0.99825  

                         fl_z_r_borr_poiss_mean     mean       sd       variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max     pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5        p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    _______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ____    _____    _____    _____    _____    ___________    __________    _______    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p1v1                  2            1.6793    0.50228    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5            0.2991     0.02    7.583      0        0        1       2.8966e-34    2.0816e-13     0.6268    0.79886    0.98321    1.1041    1.1983    1.2618    1.3294    1.4502    1.6059    1.7882    1.9541    2.0647    2.1794    2.3433    2.6219    3.1627    3.7567         1.1102             0.95857              1.9236             0.97067              0.64599               0.59331                1.0253                0.8834               0.25228                  1             0.00042328    0.0042981    0.027815    0.057114      0.09161      0.13017      0.16718      0.25349      0.38549       0.5396      0.65269      0.70873      0.77179      0.83839      0.91216      0.97968       0.99766  
    cl_mt_pol_c_p1v2             2.5714            1.6972    0.50663    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5            0.2985     0.02    7.583      0        0        1       1.6162e-33     2.544e-13     0.6227    0.79886     1.0037    1.1184    1.2085    1.2843    1.3519    1.4564    1.6223    1.8066    1.9726    2.0832    2.2122    2.3802    2.6547    3.1831    3.7854         1.1207             0.95216              1.9543             0.97058              0.66342               0.59581                1.0342               0.88207               0.25667                  1             0.00039538    0.0046031    0.026999    0.058563     0.092297      0.13147      0.16816       0.2515      0.39563      0.54207      0.64884      0.71091      0.77092      0.83834      0.91325      0.97969       0.99772  
    cl_mt_pol_c_p1v3             3.1429            1.7209    0.50901    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.29579     0.02    7.583      0        0        1       1.5278e-33    2.9152e-13     0.6227    0.81115     1.0324    1.1471     1.239    1.3068    1.3642    1.4748    1.6387    1.8353    1.9992    2.1016     2.245     2.415    2.6874    3.2118    3.8099          1.099             0.94607              1.9356             0.96905              0.62833               0.57797                1.0482               0.89062               0.25909                  1             0.00036259    0.0042155    0.026643    0.058194     0.092835      0.13011      0.16968      0.26011      0.38753      0.53873      0.64863      0.70807      0.77257      0.83998       0.9129      0.98016       0.99769  
    cl_mt_pol_c_p1v4             3.7143            1.7404     0.5099    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.29299     0.02    7.583      0        0        1       8.7185e-34    3.2628e-13     0.6268    0.83163     1.0569    1.1717    1.2536    1.3273    1.3765    1.4912    1.6469     1.864    2.0156    2.1303    2.2675    2.4375      2.71    3.2282    3.8181         1.0692             0.94238              1.8997             0.96865              0.58105               0.56026                1.0586               0.90044                  0.26                  1             0.00033334    0.0042949    0.027065    0.058924     0.094505      0.13591      0.17077      0.25569      0.38675      0.53794      0.65022      0.70931      0.77452      0.83949      0.91393      0.98006       0.99771  
    cl_mt_pol_c_p1v5             4.2857            1.7565    0.50983    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.29026     0.02    7.583      0        0        1      -5.9298e-34     3.478e-13    0.64523    0.86031     1.0815    1.1942      1.27    1.3273    1.3826    1.4932    1.6715    1.8701    2.0484    2.1631     2.286     2.458    2.7202    3.2446    3.8284         1.0364              0.9403               1.858              0.9687               0.5322               0.54255                1.0659                0.9091               0.25993                  1             0.00034423    0.0046278    0.027107    0.060571     0.095454      0.13337      0.17008      0.25318      0.38873      0.53872      0.65462      0.71534      0.77473       0.8441      0.91388      0.98044        0.9978  
    cl_mt_pol_c_p1v6             4.8571            1.7678     0.5096    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.28827     0.02    7.583      0        0        1       1.4063e-33    3.6092e-13    0.66162    0.88079     1.0877    1.1983    1.2782    1.3314    1.3929    1.5076    1.6878    1.8845    2.0647    2.1651    2.2942    2.4703    2.7366    3.2548    3.8284         1.0107             0.93983               1.825             0.96907              0.49325               0.52914                 1.072               0.91685                0.2597                  1             0.00034441    0.0044427    0.027755    0.061939     0.098514      0.13257      0.17189      0.25589      0.38958      0.54645      0.65395      0.71049      0.77464      0.84189      0.91554       0.9804       0.99776  
    cl_mt_pol_c_p1v7             5.4286            1.7755    0.50914    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.28675     0.02    7.583      0        0        1       4.3814e-34    3.7124e-13    0.67596    0.90127     1.1041    1.2044    1.2782    1.3437    1.4011    1.5096    1.7042    1.8845    2.0647    2.1794    2.3044    2.4744    2.7366     3.261    3.8284        0.99193             0.94033              1.8011              0.9696              0.46601               0.52193                1.0758               0.92229               0.25922                  1             0.00034748    0.0046186    0.028109    0.060227     0.096254      0.13517      0.17149        0.253      0.39732      0.54204      0.65144      0.71585      0.77652      0.84311      0.91458      0.98053       0.99773  
    cl_mt_pol_c_p1v8                  6            1.7821    0.50908    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.28567     0.02    7.583      0        0        1      -8.8069e-34    3.8006e-13    0.68825    0.90947     1.1061    1.2126    1.2905    1.3458    1.4093     1.524    1.7042    1.9009    2.0811    2.1794    2.3105    2.4887    2.7468    3.2692    3.8345        0.97788             0.94037              1.7865             0.97063              0.44575               0.51758                1.0816               0.92742               0.25917                  1             0.00037589    0.0045623    0.029209    0.062554     0.097487      0.13547      0.17419      0.25903      0.39415       0.5471      0.65427      0.71432      0.77868      0.84249      0.91444      0.98067       0.99773  
    cl_mt_pol_c_p1v9             6.5714            1.7862    0.50888    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5            0.2849     0.02    7.583      0        0        1       5.9131e-34    3.8941e-13    0.69234    0.92176     1.1061    1.2126    1.2905    1.3458    1.4093     1.524    1.7042    1.9009    2.0811    2.1794    2.3105    2.4908     2.753    3.2692    3.8345        0.96863             0.94079              1.7759             0.97124              0.43196               0.51571                 1.085               0.93095               0.25896                  1             0.00035742    0.0046154    0.028703    0.062514     0.095716      0.13362      0.17162      0.25485      0.39199      0.54339      0.65236      0.71392      0.77741       0.8444       0.9163      0.98055       0.99773  
    cl_mt_pol_c_p1v10            7.1429            1.7894    0.50845    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.28415     0.02    7.583      0        0        1      -2.9024e-33    3.9252e-13    0.70668      0.932     1.1061    1.2126    1.2946    1.3519    1.4195    1.5342    1.7042    1.9009    2.0832    2.1794    2.3105    2.4908     2.753    3.2692    3.8427        0.95882             0.94166              1.7614             0.97133              0.41698               0.51156                1.0859               0.93383               0.25852                  1             0.00036489    0.0047478    0.028627    0.062188      0.10109      0.13248      0.17351       0.2536      0.39006      0.54162      0.65324      0.71274      0.77626       0.8436      0.91593      0.98045       0.99783  
    cl_mt_pol_c_p1v11            7.7143            1.7921    0.50817    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.28356     0.02    7.583      0        0        1      -2.6476e-33    4.0689e-13    0.71692    0.93405     1.1143    1.2126    1.2946    1.3601    1.4195    1.5404    1.7145    1.9173    2.0975    2.1938    2.3105    2.4908     2.753    3.2692    3.8427        0.95154             0.94209              1.7508              0.9714              0.40556                0.5085                 1.087               0.93623               0.25824                  1             0.00037671    0.0048374    0.029267    0.061991      0.10057      0.13837      0.17254      0.26018      0.39342      0.54987      0.65906      0.71485       0.7758      0.84317      0.91557      0.98039       0.99782  
    cl_mt_pol_c_p1v12            8.2857            1.7948    0.50783    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.28294     0.02    7.583      0        0        1         2.47e-34    4.1019e-13    0.71897    0.94019     1.1143    1.2126    1.2946    1.3601    1.4257    1.5404    1.7145    1.9173    2.0975    2.1938    2.3228    2.4908     2.753    3.2692    3.8427        0.94315             0.94265              1.7401             0.97161              0.39378               0.50488                1.0884               0.93836               0.25789                  1             0.00036355    0.0047551    0.028717    0.061939     0.099964      0.13673       0.1784      0.25811      0.39142      0.54756      0.65744       0.7136      0.77662      0.84278      0.91521      0.98035       0.99781  
    cl_mt_pol_c_p1v13            8.8571            1.7967    0.50774    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5            0.2826     0.02    7.583      0        0        1      -7.4101e-35    4.1355e-13    0.73741    0.94634     1.1143    1.2126    1.2946    1.3601    1.4257    1.5404    1.7145    1.9173    2.0975    2.1938    2.3228    2.4908     2.753    3.2692    3.8427        0.93918             0.94308              1.7361             0.97184              0.38806                0.5045                1.0902                  0.94                0.2578                  1             0.00040304    0.0049351    0.028388    0.061286     0.098985      0.13587      0.17721      0.25686      0.38997      0.54555      0.65657      0.71316      0.77608      0.84234      0.91479      0.98039       0.99779  
    cl_mt_pol_c_p1v14            9.4286            1.7987    0.50739    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.28208     0.02    7.583      0        0        1      -6.8645e-34    4.1549e-13    0.74355    0.95043     1.1245    1.2126    1.2946    1.3601    1.4257    1.5404    1.7206    1.9173    2.0975    2.1938    2.3228    2.4949     2.753    3.2774    3.8427        0.93238             0.94371              1.7269             0.97186              0.37884               0.50127                1.0906               0.94151               0.25744                  1             0.00036848    0.0048397    0.029128     0.06094     0.098096      0.13487      0.17478      0.25467      0.39909      0.54399      0.65589      0.71285      0.77534      0.84235      0.91469      0.98083       0.99778  
    cl_mt_pol_c_p1v15                10            1.8007    0.50718    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.28165     0.02    7.583      0        0        1      -4.7744e-34    4.1847e-13     0.7456    0.95043     1.1245    1.2167    1.2946    1.3601    1.4257    1.5486    1.7206    1.9214    2.0975    2.1958    2.3269    2.5072     2.753    3.2774    3.8427        0.92703             0.94425              1.7213             0.97193              0.37242               0.49939                1.0917               0.94282               0.25723                  1             0.00039304    0.0048127     0.02934    0.061927     0.096212      0.13317      0.17284      0.25551      0.39727      0.54158      0.65532      0.71698      0.78129      0.84287      0.91524       0.9807       0.99777  

                         fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p1v1                  2            4.5912    2.3107    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5           0.50329      0     22.054    -6.8717e-34      0        1      -6.8717e-34    5.9868e-11    0.97935    1.3238     1.844    2.1922    2.4373    2.6526     2.969    3.3357    4.0022    4.9328      5.76    6.2954    6.5773    8.0057    8.8673     12.41    16.916         4.5481             0.85363              7.3312             0.80415              0.96649               0.19295                5.3394                  1                   1.0253                0.8834          0.00019437    0.0025149    0.016581    0.038541     0.063944     0.092097      0.12293        0.191      0.31377      0.46221      0.57682      0.64327      0.71233      0.79068      0.88016      0.96926       0.99609  
    cl_mt_pol_k_p1v2             2.5714            4.5966    2.3143    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5           0.50349      0     22.017    -1.1812e-33      0        1      -1.1812e-33    3.3699e-11    0.96582    1.3129    1.8145    2.1752    2.4375    2.6486     2.969    3.3359    4.0168    4.9461    5.7845    6.2935    6.5889    7.9886     8.885    12.357    16.933         4.5394             0.84428              7.3693             0.80116              0.97888               0.19245                5.3562                  1                   1.0342               0.88207          0.00018987    0.0024921    0.016322    0.038265     0.063685     0.090911      0.12173      0.19049      0.31293      0.46163       0.5761       0.6431      0.71264      0.79172       0.8805      0.96937       0.99609  
    cl_mt_pol_k_p1v3             3.1429            4.6192    2.3122    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.50055      0     22.017     1.5286e-33      0        1       1.5286e-33    3.8936e-11    0.96809    1.3129    1.8087    2.1815    2.4463    2.7243    2.9817    3.3575    4.0839    4.9704    5.8308     6.296     6.635    7.9886     8.906    12.297    16.946         4.4484             0.84303              7.3339             0.80829              0.93953               0.19026                5.3461                  1                   1.0482               0.89062          0.00018825    0.0024562    0.016249    0.038003     0.063228     0.091345      0.12204      0.19079       0.3141      0.46557      0.57963      0.64397      0.71367      0.79227      0.88091      0.96942       0.99612  
    cl_mt_pol_k_p1v4             3.7143            4.6295    2.3057    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.49804      0     22.017     1.4069e-33      0        1       1.4069e-33    4.3249e-11    0.97017    1.3217    1.8107    2.1831    2.4766     2.774      2.99    3.4553    4.0997    4.9704    5.7845    6.2935    6.6678    7.9698    8.9123     12.29    16.946         4.3468             0.84733              7.2748             0.82036              0.90017               0.19195                 5.316                  1                   1.0586               0.90044          0.00018875    0.0024826    0.016371    0.038221     0.064004     0.091698      0.12236      0.19315      0.31507      0.46573      0.57865      0.64476      0.71437      0.79403       0.8813      0.96952       0.99613  
    cl_mt_pol_k_p1v5             4.2857            4.6342    2.2997    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.49625      0     22.017    -1.1565e-33      0        1      -1.1565e-33    4.6141e-11    0.97017    1.3197    1.8107    2.1874    2.4814    2.7783    2.9925    3.4913    4.1786    4.9704    5.7845    6.2908      6.71    7.9502    8.9124    12.237    16.952         4.2457               0.854              7.2079             0.83313              0.85344               0.19289                5.2886                  1                   1.0659                0.9091          0.00018651    0.0024973    0.016366    0.038219     0.063971      0.09183      0.12284       0.1962      0.31974      0.46736      0.58052      0.64556      0.71685      0.79306      0.88148      0.96955       0.99619  
    cl_mt_pol_k_p1v6             4.8571            4.6335    2.2945    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5            0.4952      0     22.017     2.6045e-33      0        1       2.6045e-33    4.8042e-11    0.96809    1.3197    1.7756    2.1825    2.5058    2.7757    2.9788    3.4913    4.1786    4.9676    5.7845    6.2867      6.71    7.9166    8.9124    12.208    16.952          4.172             0.86163              7.1646             0.84495              0.82794               0.19726                5.2646                  1                    1.072               0.91685          0.00018813    0.0025171    0.016318    0.038727     0.064447     0.091933      0.12273      0.19512      0.31934       0.4656      0.58134      0.64679      0.71683      0.79367      0.88168      0.96948       0.99615  
    cl_mt_pol_k_p1v7             5.4286            4.6278    2.2911    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.49506      0     22.017    -3.1158e-34      0        1      -3.1158e-34    4.9424e-11    0.96624    1.3197    1.7658    2.1825    2.5058    2.7884    2.9707    3.4913    4.1786    4.9648    5.7845    6.2867      6.71    7.8272     8.906    12.177    16.947         4.1226             0.86849              7.1467             0.85499              0.82178               0.20454                 5.249                  1                   1.0758               0.92229          0.00018539     0.002492     0.01634    0.038868     0.064498     0.091881      0.12341      0.19532      0.31924      0.46554      0.58312      0.64823      0.71718      0.79299       0.8816      0.96958       0.99614  
    cl_mt_pol_k_p1v8                  6            4.6302    2.2909    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.49477      0     22.017    -1.9432e-34      0        1      -1.9432e-34    5.0602e-11    0.96624    1.3163    1.7619    2.1825    2.5058    2.7853    2.9707    3.4913    4.1786    4.9547    5.7845    6.2867      6.71    7.8128    8.9091    12.177    16.947         4.0935             0.87475               7.154              0.8637              0.82402               0.21262                5.2483                  1                   1.0816               0.92742          0.00018483    0.0025254    0.016314    0.038734     0.064467     0.091823      0.12402      0.19347      0.31865      0.46539      0.58245      0.64931      0.71633      0.79402      0.88174      0.96966        0.9961  
    cl_mt_pol_k_p1v9             6.5714            4.6253    2.2902    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.49516      0     22.017    -6.4824e-34      0        1      -6.4824e-34    5.2677e-11     0.9598    1.3149    1.7605    2.1825    2.4814    2.7766    2.9634    3.4913    4.1786    4.9506    5.7845    6.2867      6.71    7.7828    8.9024    12.177    16.951          4.075             0.87942               7.162             0.87031              0.83178               0.22065                5.2452                  1                    1.085               0.93095          0.00018484    0.0024479    0.016337    0.038911      0.06349     0.092182      0.12318       0.1936      0.31935      0.46526      0.58107      0.65066      0.71611      0.79309      0.88166      0.96978       0.99608  
    cl_mt_pol_k_p1v10            7.1429            4.6186     2.287    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.49517      0     22.017    -4.8157e-33      0        1      -4.8157e-33    5.3097e-11    0.95637    1.3124    1.7605    2.1825    2.4814    2.7766    2.9634    3.4913    4.1786     4.948    5.7845     6.273      6.71    7.7235     8.885    12.177    16.952         4.0472              0.8837              7.1436             0.87584              0.82748                0.2257                5.2302                  1                   1.0859               0.93383          0.00018603    0.0024412    0.016771    0.038435     0.063836     0.091906      0.12472      0.19383      0.32021      0.46688       0.5825      0.64596       0.7168      0.79311      0.88164      0.96994       0.99619  
    cl_mt_pol_k_p1v11            7.7143            4.6131    2.2848    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.49529      0     22.017    -2.3784e-33      0        1      -2.3784e-33    5.3521e-11    0.94615    1.3124    1.7605    2.1825    2.4814    2.7766    2.9496    3.4913    4.1786     4.948    5.7845    6.2635      6.71    7.7127     8.885    12.117    16.952         4.0274             0.88685              7.1337              0.8803              0.82644               0.23047                5.2203                  1                    1.087               0.93623          0.00018392    0.0024733    0.016946    0.038208     0.064135     0.092371      0.12268      0.19392      0.32124      0.46879      0.58357      0.64601      0.71734      0.79407      0.88194       0.9694       0.99618  
    cl_mt_pol_k_p1v12            8.2857            4.6104    2.2841    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.49542      0     22.017      3.565e-34      0        1        3.565e-34    5.3955e-11    0.94338     1.315    1.7605    2.1825    2.4766    2.7714    2.9356    3.4913    4.1786    4.9371    5.7845    6.2558      6.71    7.7051     8.885    12.117    16.952         4.0064             0.89029               7.125             0.88453              0.81959               0.23363                 5.217                  1                   1.0884               0.93836          0.00018355    0.0024669    0.017045    0.038687     0.063168     0.092643      0.12259      0.19353      0.32176      0.46534      0.58419      0.64594      0.71758      0.79303      0.88195      0.96943       0.99616  
    cl_mt_pol_k_p1v13            8.8571            4.6092    2.2843    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.49559      0     22.017    -6.2154e-35      0        1      -6.2154e-35    5.4399e-11    0.94338    1.3146    1.7605    2.1825    2.4766    2.7714    2.9308    3.4913    4.1786    4.9361    5.7845    6.2558      6.71      7.67     8.885    12.117    16.952         3.9996             0.89269              7.1337             0.88763              0.82559               0.23857                5.2179                  1                   1.0902                  0.94          0.00018473    0.0024784    0.017148    0.038769     0.063366     0.092694      0.12304       0.1931      0.32208      0.46613      0.58343      0.64655      0.71749      0.79296      0.88193      0.96942       0.99614  
    cl_mt_pol_k_p1v14            9.4286             4.608     2.283    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.49544      0     22.017     9.6265e-35      0        1       9.6265e-35    5.4654e-11    0.94615    1.3163    1.7605    2.1825    2.4766     2.769    2.9308    3.4913    4.1786     4.931    5.7845     6.252      6.71    7.6612     8.885    12.117    16.952           3.98             0.89531              7.1213              0.8907              0.81865               0.24074                 5.212                  1                   1.0906               0.94151           0.0001844    0.0024971    0.017088    0.038676     0.063643     0.091974      0.12366      0.19301      0.32253      0.46544      0.58352      0.64588      0.71763      0.79314      0.88205      0.96946       0.99612  
    cl_mt_pol_k_p1v15                10              4.61     2.283    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.49523      0     22.017    -6.1956e-34      0        1      -6.1956e-34    5.5046e-11    0.94615    1.3163    1.7605    2.1825    2.4766    2.7714    2.9308    3.4913    4.1786     4.931    5.7845    6.2504      6.71    7.6667     8.885    12.117    16.952         3.9666             0.89756              7.1206             0.89321              0.81703               0.24339                 5.212                  1                   1.0917               0.94282          0.00018402    0.0024609    0.016918    0.038377     0.063711     0.092371      0.12359      0.19237      0.32255      0.46565      0.58324      0.64613      0.71748      0.79306      0.88195      0.96939        0.9961  

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0        pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1           p5         p10         p15         p20        p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5      fracByP10     fracByP15    fracByP20    fracByP25     fracByP35     fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    __________    ________    _______    ___________    __________    _______    _________    ________    ________    ________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ___________    __________    _________    _________    __________    __________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p1v1                  2            3.7034    3.9454     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            5            1.0654     -4.67    57.258     0.0052799      0.1637    0.83102     2.8966e-34    2.0816e-13    -2.9637      -2.2611     -1.3578    -0.65521    -0.15337    0.34848    0.74996    1.6533    3.0584     4.564    5.8688    6.6717    7.5751    8.8799    10.988    16.006    22.932         8.2873             0.91097              15.566                1                  6.3115               0.73797                7.3312               0.80415                1.9236               0.97067            -0.001025    -0.0079507      -0.027215      -0.04094    -0.045552    -0.043299      -0.03627    -0.0020591    0.095969      0.24624      0.39377      0.48071      0.57174      0.68077      0.81011      0.94912       0.99329  
    cl_mt_coh_p1v2             2.5714            4.2879    3.9745     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            5           0.92689     -4.67    57.258     0.0045377     0.12207    0.87339     1.6162e-33     2.544e-13    -2.8633      -2.1607     -1.0567     -0.3541     0.34848    0.85033     1.3522    2.3559     3.761    5.2666     6.471     7.274    8.1773    9.3817    11.489    16.508    23.333         8.4357             0.91359              15.796                1                  6.4728                 0.741                7.3693               0.80116                1.9543               0.97058           -0.0010334    -0.0061553       -0.02135     -0.028275    -0.027466    -0.020581    -0.0075746       0.03826     0.14479      0.30464      0.44173       0.5289      0.61498      0.71053      0.83069      0.95536       0.99399  
    cl_mt_coh_p1v3             3.1429            4.8365    3.9241     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            5           0.81135     -4.67    57.258     0.0035628    0.086418    0.91002     1.5278e-33    2.9152e-13    -2.8633        -1.96    -0.75558     0.14774      0.9507     1.5529     2.0548    3.0584    4.4636    5.8688    6.9728    7.6754    8.5788    9.7832    11.891    16.909    23.734         8.1889             0.91443              15.399                1                  6.1293               0.73134                7.3339               0.80829                1.9356               0.96905          -0.00066132    -0.0051974      -0.015291     -0.017642      -0.0104    0.0031332      0.020341      0.074127     0.19752      0.35836      0.48704      0.56231      0.64726       0.7383      0.84765      0.96031       0.99469  
    cl_mt_coh_p1v4             3.7143            5.2349    3.8461     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            5           0.73471     -4.67    57.258     0.0026717    0.062543    0.93479     8.7185e-34    3.2628e-13     -2.763      -1.7593     -0.3541     0.64959      1.4525     2.0548      2.657    3.5603    4.8651    6.1699     7.274    7.9765    8.8799    10.084    12.092     17.11    23.935         7.8203             0.91386              14.793                1                  5.6181               0.71818                7.2748               0.82036                1.8997               0.96865          -0.00060191    -0.0043475      -0.011379    -0.0091743     0.002011     0.018534      0.043601       0.10194     0.22744      0.38657      0.51369      0.58818      0.66727      0.75605      0.85551      0.96266         0.995  
    cl_mt_coh_p1v5             4.2857            5.5342    3.7621     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            5           0.67979     -4.67    57.258     0.0019993    0.045894    0.95211    -5.9298e-34     3.478e-13    -2.6626      -1.5585    0.047372      1.1514      1.9544     2.5566     3.0584    3.9618    5.1662    6.3706    7.4747    8.1773    8.9802    10.185    12.292    17.211    24.136         7.4216             0.91253              14.153                1                  5.0873               0.70285                7.2079               0.83313                 1.858                0.9687          -0.00054916    -0.0037025     -0.0079463     -0.001544     0.013842     0.034361      0.059372       0.12589     0.25705      0.40245      0.53209      0.60476      0.67458      0.76195      0.86257      0.96348        0.9953  
    cl_mt_coh_p1v6             4.8571            5.7369    3.6955     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            5           0.64416     -4.67    57.258     0.0015534    0.034942     0.9635     1.4063e-33    3.6092e-13    -2.5622      -1.2574     0.44885      1.5529      2.2555     2.8577     3.3596    4.1625    5.2666    6.5714    7.5751    8.2776    9.0806    10.285    12.393    17.411    24.236         7.1067             0.91127              13.657                1                  4.6673               0.69043                7.1646               0.84495                 1.825               0.96907          -0.00049492     -0.003456     -0.0050286     0.0047769     0.021252     0.044967       0.07325       0.13977     0.26293      0.42137      0.54151      0.61162      0.68294      0.76782      0.86611      0.96532       0.99546  
    cl_mt_coh_p1v7             5.4286            5.8724    3.6484     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            5           0.62128     -4.67    57.258     0.0012322     0.02775    0.97102     4.3814e-34    3.7124e-13    -2.4619      -1.0567     0.74996       1.854      2.5566     3.0584     3.5603    4.2629    5.3669    6.6717    7.6754     8.378     9.181    10.385    12.493    17.512    24.236         6.8793             0.91007              13.311                1                  4.3631               0.68194                7.1467               0.85499                1.8011                0.9696          -0.00046507     -0.003019     -0.0026593      0.010092      0.03042      0.05268      0.085933       0.14623     0.27224      0.43317      0.55032      0.62099      0.68916      0.77311      0.86928      0.96629       0.99544  
    cl_mt_coh_p1v8                  6            5.9854    3.6155     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            5           0.60406     -4.67    57.258     0.0010368    0.022661     0.9763    -8.8069e-34    3.8006e-13    -2.3615     -0.85595      0.9507      2.0548       2.657     3.2592     3.6607    4.3632    5.4673    6.7721    7.7758    8.4784    9.2813    10.486    12.594    17.512    24.337         6.7161             0.90939              13.072                1                  4.1316                0.6755                 7.154                0.8637                1.7865               0.97063          -0.00044903    -0.0027128    -0.00093707      0.013796     0.033061     0.062118      0.090278       0.15407     0.27733       0.4414      0.55652      0.62543      0.69396      0.77692      0.87171      0.96613       0.99558  
    cl_mt_coh_p1v9             6.5714            6.0554    3.5932     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            5           0.59338     -4.67    57.258    0.00091315    0.019615    0.97947     5.9131e-34    3.8941e-13    -2.2611     -0.75558      1.1514      2.1551      2.7573     3.2592      3.761    4.4636    5.5677    6.7721    7.7758    8.4784    9.3817    10.586    12.594    17.612    24.337         6.6061              0.9087              12.911                1                  3.9729               0.67176                 7.162               0.87031                1.7759               0.97124          -0.00044908    -0.0023894     0.00069263       0.01564     0.035892     0.060754      0.095462       0.16243     0.28556       0.4397      0.55431      0.62301      0.69963        0.781      0.87085      0.96691       0.99556  
    cl_mt_coh_p1v10            7.1429            6.1084    3.5664     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            5           0.58386     -4.67    57.258    0.00080711    0.016767    0.98243    -2.9024e-33    3.9252e-13    -2.1607     -0.55484      1.2518      2.2555      2.8577     3.3596      3.761    4.4636     5.668    6.7721    7.8762    8.4784    9.3817    10.586    12.694    17.612    24.437          6.485               0.908              12.719                1                  3.8144               0.66716                7.1436               0.87584                1.7614               0.97133          -0.00045144    -0.0021742      0.0016379      0.017888     0.039114     0.065126      0.094226       0.16178      0.2965      0.43917      0.56483      0.62295      0.69962      0.78112      0.87432      0.96694       0.99571  
    cl_mt_coh_p1v11            7.7143            6.1513    3.5468     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            5           0.57659     -4.67    57.258     0.0007279    0.014786    0.98449    -2.6476e-33    4.0689e-13    -2.0604     -0.45447      1.3522      2.3559      2.9581     3.4599     3.8614     4.564     5.668    6.8725    7.8762    8.5788    9.3817    10.586    12.694    17.612    24.437         6.3974             0.90749               12.58                1                  3.6953               0.66383                7.1337                0.8803                1.7508                0.9714          -0.00044637     -0.001946      0.0025009      0.019827     0.042464     0.071768       0.10071       0.17051     0.29556      0.45227      0.56452      0.63237      0.69926      0.78072      0.87436      0.96695       0.99571  
    cl_mt_coh_p1v12            8.2857            6.1941    3.5267     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            5           0.56936     -4.67    57.258    0.00064613    0.013014    0.98634       2.47e-34    4.1019e-13      -1.96     -0.25374      1.5529      2.4562      3.0584     3.4599     3.8614     4.564     5.668    6.8725    7.8762    8.5788    9.4821    10.586    12.694    17.612    24.437         6.3018             0.90696              12.437                1                  3.5722               0.65952                 7.125               0.88453                1.7401               0.97161          -0.00045654    -0.0017813      0.0043249      0.021954     0.046781     0.070966       0.10014       0.16948     0.29477      0.45192      0.56433      0.63217      0.70669      0.78034       0.8742      0.96691       0.99571  
    cl_mt_coh_p1v13            8.8571            6.2248    3.5183     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            5           0.56521     -4.67    57.258    0.00061494    0.011781     0.9876    -7.4101e-35    4.1355e-13      -1.96     -0.15337      1.5529      2.4562      3.0584     3.4599     3.9618    4.6644     5.668    6.8725    7.8762    8.5788    9.4821    10.687    12.694    17.712    24.437         6.2572             0.90674              12.379                1                  3.5087               0.65829                7.1337               0.88763                1.7361               0.97184          -0.00039785    -0.0016157      0.0042499      0.021697     0.046151     0.070191       0.10712       0.17852     0.29301      0.45057      0.56309       0.6312      0.70581      0.78552      0.87384      0.96775        0.9957  
    cl_mt_coh_p1v14            9.4286            6.2561     3.502     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            5           0.55978     -4.67    57.258    0.00052072    0.010517    0.98896    -6.8645e-34    4.1549e-13    -1.8596    -0.052997      1.6533      2.5566      3.0584     3.5603     3.9618    4.6644    5.7684    6.8725    7.9765    8.5788    9.4821    10.687    12.694    17.712    24.437         6.1804             0.90633              12.264                1                  3.4161               0.65489                7.1213                0.8907                1.7269               0.97186          -0.00039332    -0.0014324       0.005184      0.024673     0.044948      0.07694       0.10675       0.17813     0.30703      0.45041      0.57281      0.63084      0.70574      0.78548      0.87385      0.96772        0.9957  
    cl_mt_coh_p1v15                10            6.2879    3.4919     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            5           0.55534     -4.67    57.258    0.00046049    0.009493    0.99005    -4.7744e-34    4.1847e-13    -1.7593     0.047372      1.7536      2.5566      3.1588     3.5603     3.9618    4.6644    5.7684    6.8725    7.9765    8.6791    9.4821    10.687    12.794    17.712    24.537         6.1249             0.90612              12.193                1                  3.3515               0.65274                7.1206               0.89321                1.7213               0.97193           -0.0003961    -0.0012664      0.0062239       0.02407     0.049189     0.076331         0.106       0.17649     0.30572      0.44922      0.57197      0.63947      0.70506      0.78489      0.87654      0.96765       0.99584  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1     fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _____    ______    _____    __________    _______    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p2v1           0.095        7.8663    1.8625     'cl_mt_val'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956     -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037     5.971     6.312     6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                 0.397                3.8751               0.91217               0.89319                 0.949          -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543       0.7964      0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p2v2        0.098929        7.9395    1.8107     'cl_mt_val'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.22806     -9999    16.635      0       0.0002008     0.9998     1.0665e-33    1.0893e-12     1.6115     3.571    4.9133    5.6301    6.0747    6.4128     6.745    7.2629    7.9819    8.6437    9.1567    9.4536    9.7963    10.221    10.869    12.047    13.238         3.2786                1                 5.4935             0.90406              0.84402               0.36699                3.7805               0.91833               0.86894               0.95135           7.9418e-05    0.0034656    0.025932    0.059282     0.095879      0.13613      0.17683      0.26615      0.41162      0.56677      0.67986      0.73808      0.79843      0.86164      0.92706      0.98417        0.9983  
    cl_mt_val_p2v3         0.10286        7.9663     1.769     'cl_mt_val'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.22207     -9999    16.635      0       9.783e-05     0.9999      9.015e-33    1.0559e-12     1.9835    3.7123    5.0175    5.6798     6.149    6.5115    6.8067    7.3274    7.9791    8.6294    9.1557    9.4359    9.7777    10.212    10.857    12.042    13.238         3.1295                1                  5.254             0.90099              0.75648               0.34974                3.6492                0.9161               0.84838               0.95582           0.00014829    0.0037742    0.026417    0.060331     0.097502      0.13763      0.17968      0.27208      0.41278      0.56864      0.68321      0.73902      0.79973      0.86197      0.92748      0.98423        0.9983  
    cl_mt_val_p2v4         0.10679         7.978    1.7367     'cl_mt_val'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.21768     -9999    16.636      0      3.8097e-05    0.99996     6.2809e-33    1.1239e-12     2.3548    3.8537    5.1169    5.7719    6.1731    6.5349    6.8289     7.317    7.9819    8.6469     9.135    9.4218    9.7662    10.198    10.846    12.045    13.225          3.016                1                 5.0755             0.89951              0.67885               0.33046                 3.562               0.91691               0.83468               0.95973           0.00021336    0.0040476    0.027297    0.061563     0.099405      0.14012      0.18242      0.27038       0.4177      0.57051      0.68172      0.73975      0.79958      0.86177      0.92798      0.98426        0.9983  
    cl_mt_val_p2v5         0.11071        7.9751    1.7041     'cl_mt_val'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.21368     -9999    16.634      0      1.2786e-05    0.99999     3.5564e-35    7.9758e-13     2.7171    4.0454    5.1916    5.8057    6.2626    6.5623    6.8216      7.29    7.9449    8.5886    9.1002    9.4069    9.7451     10.18    10.832    12.037    13.217          2.904                1                 4.9019             0.89736              0.62471               0.31848                3.4564               0.91561               0.82076               0.96428           0.00028299    0.0043803    0.028363    0.063078      0.10412      0.14232      0.18392      0.27288      0.41773      0.57089      0.68146      0.73983      0.79983      0.86206      0.92762       0.9844        0.9983  
    cl_mt_val_p2v6         0.11464        7.9556    1.7101     'cl_mt_val'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.21496     -9999    16.636      0      4.2412e-06          1     2.5408e-33    9.5424e-13     2.8683    4.1098    5.2121    5.8236    6.1905    6.5175    6.7841    7.2704    7.9312    8.6015    9.0968    9.3855    9.7494    10.187    10.838    12.027    13.222         2.9246                1                 4.9471              0.8979              0.61735               0.31586                3.5054               0.91779               0.82442                0.9639           0.00032108    0.0045727    0.028555    0.064417      0.10193      0.14625      0.18477      0.27214      0.41912      0.56968      0.68084      0.73902      0.79978      0.86201      0.92755       0.9842       0.99829  
    cl_mt_val_p2v7         0.11857        7.9804    1.6978     'cl_mt_val'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.21274     -9999     16.64      0      1.1019e-06          1    -3.9736e-33    1.8479e-12      3.118    4.2204    5.2679    5.8487    6.2049    6.5439    6.8057     7.277    7.9527    8.6205    9.1293    9.4136    9.7638    10.203    10.849    12.036    13.221         2.8824                1                 4.8981             0.89864              0.59647               0.31105                3.4832               0.91923               0.81836               0.96402           0.00034998    0.0047176    0.029025    0.065264      0.10214      0.14565      0.18478      0.27299       0.4175      0.57029      0.68295      0.73936      0.80027      0.86241      0.92758      0.98432        0.9983  
    cl_mt_val_p2v8          0.1225        7.9846    1.7098     'cl_mt_val'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.21414     -9999    16.635      0      2.4021e-07          1    -9.1115e-33    2.5684e-12      3.236    4.2244    5.2419    5.7838    6.1838    6.4864     6.787    7.2813    7.9548    8.6223    9.1345    9.4356    9.7705    10.218    10.861    12.054    13.242         2.9234                1                 4.9891             0.89986              0.60724               0.31136                3.5574               0.92176               0.82444               0.96109           0.00040862     0.004938    0.031172    0.065698      0.10216      0.14222      0.18322      0.27131      0.41407      0.57126       0.6814      0.74128      0.79944      0.86216       0.9276      0.98432        0.9983  
    cl_mt_val_p2v9         0.12643        8.0028    1.7053     'cl_mt_val'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.21308     -9999    16.638      0      6.4453e-08          1     -1.424e-34    1.2921e-12       3.24    4.2498    5.2233    5.7912     6.213    6.5467    6.7994    7.3177    7.9711     8.655    9.1536      9.44    9.7871    10.206    10.855    12.039    13.232          2.908                1                 4.9445             0.90032              0.59048                 0.307                3.5326               0.92209               0.82146               0.95976           0.00036726    0.0048966    0.029212    0.063468       0.1015      0.14217      0.18273      0.27289      0.41516      0.57157      0.68356       0.7396      0.80003      0.86216      0.92769      0.98428       0.99831  
    cl_mt_val_p2v10        0.13036        8.0201    1.7076     'cl_mt_val'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.21291     -9999    16.637      0       7.844e-09          1    -1.0039e-33    1.4217e-12     3.2375    4.2281    5.2245     5.794    6.2333    6.5577    6.8513    7.3406    7.9887    8.6657    9.1607    9.4612    9.8047    10.232    10.875    12.056    13.245         2.9158                1                 4.9768              0.9004              0.60459               0.31127                3.5504                0.9213               0.82181                0.9594           0.00037762    0.0047679    0.029048    0.063457      0.10168      0.14272      0.18393      0.27292      0.41502       0.5733      0.68176      0.73979       0.8013      0.86363      0.92788      0.98432        0.9983  
    cl_mt_val_p2v11        0.13429         8.032    1.6971     'cl_mt_val'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.21129     -9999    16.637      0       4.432e-10          1    -1.8571e-34      4.89e-13     3.2268    4.1412    5.2495    5.8622    6.2551    6.6164    6.9055    7.3882    8.0114     8.669    9.1704    9.4613    9.7953    10.232    10.875    12.052    13.245         2.8801                1                 4.9032             0.89979              0.58748               0.30806                3.4995               0.91915               0.81621               0.95988            0.0003737    0.0046852     0.02906    0.063854      0.10168      0.14513      0.18766      0.27214      0.41626      0.57237      0.68232      0.74143      0.80029      0.86295      0.92807      0.98439       0.99832  
    cl_mt_val_p2v12        0.13821        8.0374    1.6843     'cl_mt_val'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.20956     -9999    16.635      0      1.0141e-10          1    -1.0722e-33    5.3883e-13     3.2225    4.2293    5.2589     5.856    6.2895    6.6123    6.9117    7.3824    8.0052    8.6563    9.1625    9.4557    9.7909     10.22    10.871    12.047     13.24         2.8369                1                 4.8318             0.89866              0.58198               0.30859                3.4398               0.91648               0.81002               0.96191            0.0004074    0.0050028    0.028913    0.064374      0.10347      0.14283      0.18558      0.27488      0.41684      0.57284      0.68342      0.74103      0.80127      0.86319      0.92811      0.98443       0.99831  
    cl_mt_val_p2v13        0.14214        8.0377    1.6796     'cl_mt_val'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.20896     -9999    16.639      0      4.0458e-12          1     2.9179e-33    1.3931e-12     3.2075    4.2199    5.3164    5.9046     6.304    6.6038    6.8874    7.3558    8.0044    8.6557    9.1633    9.4566    9.7927    10.219    10.852    12.037    13.241         2.8209                1                 4.8058             0.89825              0.57625               0.30778                 3.422               0.91572               0.80746                0.9638           0.00046936    0.0048379    0.030255    0.064246      0.10268      0.14302      0.18448      0.27365      0.41907      0.57477      0.68562      0.74138      0.80114      0.86287      0.92811      0.98435       0.99831  
    cl_mt_val_p2v14        0.14607        8.0389    1.6728     'cl_mt_val'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.20809     -9999    16.642      0      2.0406e-12          1     3.6553e-37    1.4552e-12     3.2937    4.2874    5.3868    5.9145    6.3136    6.6116    6.8863    7.3754    8.0215    8.6524      9.16    9.4545    9.7961    10.216    10.861    12.051    13.245         2.7983                1                 4.7863             0.89804              0.57603               0.30932                3.4048               0.91393               0.80546               0.96554           0.00040164    0.0047721    0.030192    0.064599       0.1027      0.14284       0.1883      0.27727      0.41844      0.57267      0.68284      0.74094      0.80108      0.86273      0.92827      0.98442       0.99832  
    cl_mt_val_p2v15           0.15         8.018    1.6844     'cl_mt_val'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.21008     -9999    16.643      0      2.8438e-13          1    -8.5783e-34    1.1269e-12     3.2619    4.2783    5.3037    5.8866    6.2548    6.5774    6.8694    7.3343    7.9751    8.6439    9.1525    9.4518    9.7813    10.218    10.857    12.043    13.225         2.8372                1                 4.8433             0.89877              0.57774               0.30972                3.4554               0.91482               0.81015               0.96582           0.00037284    0.0049773    0.029312    0.065634      0.10303      0.14553      0.18733       0.2744      0.41592      0.57194      0.68224      0.74217      0.80011      0.86347       0.9278      0.98434       0.99831  

                         fl_z_r_borr_max     mean       sd       variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    _______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    ___________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p2v1           0.095        1.8119    0.50534    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            5            0.2789     0.02     7.583      0        0        1       -2.233e-33     4.3638e-13    0.81115    0.97501    1.1245     1.229    1.3109    1.3908     1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319               0.949              1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p2v2        0.098929        1.8199    0.50444    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.27717     0.02    7.5603      0        0        1       1.0665e-33     1.0893e-12    0.82979    0.97731    1.1433    1.2457    1.3277    1.3932    1.4588    1.5735    1.7374    1.9341    2.1206    2.2128    2.3418    2.5242    2.7701    3.2946    3.8601        0.86894             0.95135              1.6424             0.97023              0.29727               0.46397                1.0907               0.95103               0.25446                  1              0.0004346    0.0051061    0.029095    0.065463      0.10571      0.14213      0.18131      0.26161      0.40485      0.54485      0.65523      0.71491      0.77853      0.84688      0.91676      0.98081       0.99779  
    cl_mt_pol_c_p2v3         0.10286         1.823    0.50174    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.27523     0.02    7.5393      0        0        1        9.015e-33     1.9479e-33    0.84044    0.98392    1.1479    1.2463    1.3283    1.3836    1.4431    1.5579    1.7547    1.9515     2.099    2.2138     2.343     2.509    2.7714    3.2797    3.8599        0.84838             0.95582              1.5966             0.96536              0.27719               0.45185                1.0677               0.94504               0.25174                  1             0.00043731    0.0055682    0.030989    0.063682      0.10163      0.13477      0.17536      0.25768      0.39761      0.54474      0.65654      0.71991       0.7774      0.84576      0.91701      0.98067       0.99779  
    cl_mt_pol_c_p2v4         0.10679        1.8234    0.50079    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.27464     0.02    7.5199      0        0        1       6.2809e-33     1.1239e-12    0.85193    0.99938    1.1468    1.2451     1.327    1.3926    1.4561    1.5728     1.751     1.966    2.1196    2.2117    2.3428    2.5066    2.7667    3.2807    3.8705        0.83468             0.95973              1.5651             0.96188              0.25757               0.43481                1.0567               0.94331               0.25079                  1             0.00048146    0.0059652    0.031833    0.064629      0.10243      0.14231      0.17382      0.26066      0.40235      0.54831      0.65822      0.71878      0.78051      0.84394      0.91565      0.98064       0.99778  
    cl_mt_pol_c_p2v5         0.11071        1.8233    0.49948    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.27395     0.02    7.5018      0        0        1       3.5564e-35     6.0024e-35    0.86702     1.0002    1.1478    1.2462    1.3118    1.3774     1.443    1.5742    1.7709     1.937    2.1214    2.2137    2.3428    2.5088    2.7548    3.2713    3.8616        0.82076             0.96428              1.5362             0.95944               0.2421               0.42108                1.0446               0.94408               0.24948                  1             0.00047235    0.0055942    0.031914    0.065506     0.098174      0.13609      0.17493      0.26077      0.40133      0.54852       0.6604      0.71936      0.78201      0.84679      0.91794      0.98066       0.99779  
    cl_mt_pol_c_p2v6         0.11464         1.821    0.50013    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.27464     0.02     7.485      0        0        1       2.5408e-33     9.5424e-13    0.86854    0.99964    1.1307    1.2127     1.311    1.4011    1.4749    1.5732     1.733    1.9542    2.1017    2.2123    2.3414    2.5073    2.7531    3.2693    3.8572        0.82442              0.9639              1.5489             0.96125              0.23858               0.41739                1.0601               0.94914               0.25013                  1             0.00050847    0.0061009    0.029975    0.064141      0.09874      0.13425      0.18202      0.26124      0.39526      0.55296      0.65673      0.71903      0.78199      0.84857      0.91663       0.9808       0.99782  
    cl_mt_pol_c_p2v7         0.11857        1.8235    0.50001    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            5            0.2742     0.02    7.4693      0        0        1      -3.9736e-33     1.8479e-12    0.88598     1.0008    1.1444    1.2469     1.329    1.4028    1.4582    1.5689    1.7535    1.9381    2.1227     2.215    2.3442    2.4939    2.7564     3.265    3.8516        0.81836             0.96402              1.5461             0.96315              0.23204               0.41086                 1.064               0.95344               0.25001                  1             0.00054819    0.0064785    0.029267    0.065117      0.10415      0.14085      0.18107      0.25636      0.40082      0.54575      0.66675      0.71857      0.78007      0.84579      0.91622      0.98082       0.99778  
    cl_mt_pol_c_p2v8          0.1225        1.8258    0.50171    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.27478     0.02    7.4546      0        0        1      -9.1115e-33     2.5684e-12     0.8857    0.98411    1.1153    1.2629    1.3285    1.4024    1.4577    1.5684    1.7529    1.9375     2.122    2.2142    2.3434    2.5095    2.7555    3.2722    3.8606        0.82444             0.96109              1.5717              0.9661              0.23501               0.41066                 1.085               0.95809               0.25171                  1             0.00053194    0.0054685    0.031747    0.061332     0.096849      0.13821      0.17538      0.25748      0.40112      0.54458      0.66004        0.715        0.778      0.84558      0.91686      0.98077       0.99781  
    cl_mt_pol_c_p2v9         0.12643        1.8285    0.50191    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            5            0.2745     0.02    7.4408      0        0        1       -1.424e-34    -7.8925e-36    0.86912    0.96751    1.1438    1.2545    1.3283    1.4021    1.4574    1.5743    1.7526    1.9555    2.1216    2.2302     2.345    2.5254    2.7673    3.2797    3.8537        0.82146             0.95976              1.5636             0.96728              0.22895               0.40443                1.0827               0.96018               0.25192                  1             0.00051279    0.0057375    0.028598    0.063304      0.09989      0.14146       0.1772      0.25671      0.39977       0.5532      0.65873       0.7152      0.77938      0.84468      0.91589      0.98089       0.99779  
    cl_mt_pol_c_p2v10        0.13036         1.831    0.50164    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.27398     0.02    7.4279      0        0        1      -1.0039e-33     4.1733e-35      0.867    0.95923    1.1621    1.2544    1.3282     1.402    1.4593    1.5782    1.7524    1.9554    2.1214    2.2321    2.3612    2.5252     2.767    3.2794    3.8697        0.82181              0.9594              1.5713             0.96771              0.23508               0.41198                1.0846               0.95805               0.25164                  1             0.00045932    0.0050492     0.03156    0.066073      0.10036      0.14014      0.17366      0.25679      0.40076      0.54847      0.65896       0.7215      0.77913      0.84471      0.91674      0.98114       0.99782  
    cl_mt_pol_c_p2v11        0.13429        1.8316    0.50106    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.27356     0.02    7.4157      0        0        1      -1.8571e-34       4.89e-13    0.83626    0.98384    1.1437    1.2544    1.3466     1.402    1.4573    1.5864    1.7627    1.9554    2.1214    2.2136    2.3571    2.5252    2.7711    3.2836    3.8595        0.81621             0.95988              1.5556             0.96686              0.22985               0.40823                1.0747               0.95601               0.25106                  1             0.00048521    0.0049856    0.028839    0.066306      0.11101      0.14185      0.17578      0.26335      0.39999      0.55248      0.66037      0.71584      0.77767      0.84454       0.9164      0.98094       0.99779  
    cl_mt_pol_c_p2v12        0.13821        1.8327    0.49996    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            5            0.2728     0.02    7.4042      0        0        1      -1.0722e-33     5.3883e-13    0.83635    0.99624    1.1623    1.2545    1.3468    1.4021    1.4759    1.5682    1.7711    1.9556    2.1216    2.2139     2.343    2.5214    2.7714    3.2839    3.8599        0.81002             0.96191              1.5391             0.96435              0.22861               0.40837                1.0605                0.9519               0.24996                  1              0.0004898    0.0050599    0.033748    0.066366      0.10748      0.13818        0.186      0.25833      0.40269      0.55276      0.65948      0.71576      0.77816      0.84498       0.9173      0.98096       0.99781  
    cl_mt_pol_c_p2v13        0.14214        1.8315    0.49881    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.27235     0.02    7.3933      0        0        1       2.9179e-33     1.3931e-12    0.82011    0.99644    1.1441    1.2548    1.3286    1.4024    1.4762    1.5869     1.753     1.956     2.122    2.2307    2.3435    2.5095     2.772    3.2661    3.8709        0.80746              0.9638              1.5304             0.96316               0.2268               0.40787                1.0548               0.95039               0.24881                  1             0.00054846    0.0054615    0.029584    0.065651     0.098072      0.13859      0.18058      0.26197       0.3974      0.55233      0.66083      0.71676      0.78231      0.84541      0.91618      0.98076       0.99788  
    cl_mt_pol_c_p2v14        0.14607        1.8321    0.49868    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            5            0.2722     0.02     7.383      0        0        1       3.6553e-37     2.2087e-38    0.88596    0.99671    1.1444    1.2551    1.3289    1.4028    1.4582    1.5997    1.7535    1.9688    2.1124    2.2149    2.3441    2.5102    2.7727    3.2814     3.872        0.80546             0.96554              1.5288             0.96219              0.22632               0.40768                1.0538               0.94883               0.24868                  1               0.000453     0.005489    0.031069    0.068745     0.098119      0.13859       0.1791      0.26328      0.39631      0.55291      0.65789      0.72056      0.78087      0.84629      0.91701      0.98077       0.99788  
    cl_mt_pol_c_p2v15           0.15        1.8286      0.498    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.27234     0.02    7.3733      0        0        1      -8.5783e-34     1.2917e-34     0.8848     0.9954    1.1429    1.2535    1.3456    1.4132    1.4562    1.5771    1.7512    1.9539    2.1096     2.212     2.341    2.5069    2.7691    3.2811    3.8669        0.81015             0.96582              1.5345             0.96316              0.22557                 0.409                 1.061               0.95007                 0.248                  1             0.00062878    0.0058035    0.031623    0.063854     0.099059      0.13563       0.1756      0.26412      0.39447      0.54923      0.66054      0.71792       0.7842      0.84628      0.91681       0.9809       0.99778  

                         fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p2v1           0.095        4.6063     2.281    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11     1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612     8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563       0.1268      0.20087      0.31625      0.46922      0.58197       0.6462       0.7156      0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p2v2        0.098929        4.6593    2.2736    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.48797      0     22.019     1.0494e-33      0        1       1.0494e-33    1.6309e-10    0.97927    1.2961    1.8545    2.1669    2.5612    2.7687    3.0515    3.5006     4.279    4.9838    5.8456    6.2695    6.7117    7.7592    8.8236    12.393     16.96         3.7805             0.91833              6.9845              0.9154              0.72453               0.25089                5.1692                  1                   1.0907               0.95103          0.00019086    0.0025817    0.016351    0.039499     0.066126     0.093759      0.12801      0.19489      0.32045      0.46929      0.58405      0.64867       0.7191      0.79711      0.88247      0.96977       0.99612  
    cl_mt_pol_k_p2v3         0.10286        4.6424    2.2517    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.48503      0     22.029     9.1843e-33      0        1       9.1843e-33    1.6319e-10    0.94163     1.274    1.9038    2.2743    2.6071    2.7931    3.0985    3.5092    4.1576    4.9163     5.763    6.2432    6.6658    7.6565    8.8863    12.288    17.025         3.6492              0.9161              6.8176             0.91851               0.6797               0.24689                5.0702                  1                   1.0677               0.94504          0.00018439    0.0026138    0.017873    0.039811     0.065514     0.094763       0.1263      0.19936      0.32466      0.47226      0.58706      0.64928      0.71932      0.79573      0.88224      0.97012       0.99613  
    cl_mt_pol_k_p2v4         0.10679         4.619    2.2369    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.48429      0     22.049     5.2784e-33      0        1       5.2784e-33    1.4549e-10    0.92532      1.26    1.9432    2.2895     2.585    2.8445    3.0757    3.4381     4.156    4.9179    5.6136    6.2116      6.57     7.757    8.7083    12.214    16.988          3.562             0.91691              6.6977             0.92153              0.63711               0.24078                5.0039                  1                   1.0567               0.94331            0.000194    0.0024436    0.016841    0.040165     0.069787     0.096562      0.13011      0.19825      0.32261      0.47352      0.58502      0.65165      0.71837      0.79506       0.8826      0.96972       0.99607  
    cl_mt_pol_k_p2v5         0.11071        4.5707    2.2152    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.48466      0      22.07     1.5905e-34      0        1       1.5905e-34    2.1643e-11    0.90897     1.381    1.9243    2.3462    2.5819    2.9156    3.0253    3.4635    4.0122    4.8791    5.5924    6.1742      6.38    7.5736    8.6592    12.374    16.964         3.4564             0.91561              6.5621              0.9241              0.61019                0.2393                4.9073                  1                   1.0446               0.94408          0.00018785    0.0026977    0.018001    0.042566     0.068803     0.098722      0.13395      0.20223      0.32629      0.47385      0.58517      0.64831      0.71753      0.79377      0.88179      0.96979       0.99605  
    cl_mt_pol_k_p2v6         0.11464        4.5228    2.2333    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            5            0.4938      0     22.018     2.4854e-33      0        1       2.4854e-33    2.8743e-11    0.90842    1.4158    1.9708    2.2831     2.475    2.7056    2.9155    3.3845    4.0133    4.8541    5.5304    6.1704      6.39    7.5241    8.6988    12.303    17.003         3.5054             0.91779               6.667             0.92658              0.61907               0.24254                4.9878                  1                   1.0601               0.94914           0.0002008    0.0027299    0.019938    0.043664     0.071784     0.098039      0.12891      0.19966      0.32631      0.46787      0.58071      0.64995      0.71437      0.79164      0.88011      0.96935       0.99598  
    cl_mt_pol_k_p2v7         0.11857        4.5399    2.2319    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.49163      0     22.005    -4.4205e-33      0        1      -4.4205e-33    2.2714e-11    0.96099    1.4415    1.9748    2.2757    2.5463    2.7775    2.9732    3.3549    3.9344    4.8785    5.5403    6.0773    6.4356    7.6653    8.7091    12.191    16.976         3.4832             0.91923              6.6492             0.92796              0.60364               0.23945                4.9815                  1                    1.064               0.95344          0.00024416    0.0028609    0.018658    0.042088     0.070526      0.10072      0.12918      0.19933      0.32345      0.46966      0.58179      0.64726      0.71642      0.79169      0.88035      0.96895        0.9961  
    cl_mt_pol_k_p2v8          0.1225        4.5534    2.2572    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.49572      0     22.033    -8.6153e-33      0        1      -8.6153e-33    1.3685e-10     1.0419    1.4648    1.9063     2.226    2.3975    2.7247    2.9456    3.4544    4.0469    4.8737    5.7239    6.2067    6.4854    7.5666    8.7867    12.516    16.976         3.5574             0.92176              6.7934             0.92815              0.61351               0.23828                5.0949                  1                    1.085               0.95809           0.0002388    0.0028365    0.019031     0.04132     0.066423     0.094843      0.13327      0.20591      0.31847      0.46746      0.59023      0.64539      0.71555      0.79268         0.88      0.96905       0.99605  
    cl_mt_pol_k_p2v9         0.12643         4.585    2.2466    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.48998      0     22.029    -1.4278e-34      0        1      -1.4278e-34    9.3523e-11     1.0382    1.4059    1.8775    2.2255     2.443    2.7978    2.9776     3.437    4.0896    4.8985    5.6726    6.2059    6.5862    7.5133    8.7264    12.383    16.972         3.5326             0.92209              6.7186             0.92859              0.58878               0.23236                5.0472                  1                   1.0827               0.96018          0.00029746    0.0027657    0.018852     0.04172     0.066029     0.096446      0.12747      0.19597      0.32076      0.46882      0.58554      0.64775      0.71918      0.79369      0.88251      0.96942       0.99603  
    cl_mt_pol_k_p2v10        0.13036        4.6128    2.2568    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.48926      0     22.027    -1.1036e-33      0        1      -1.1036e-33    1.0012e-10     1.0339    1.3951    1.8498    2.2234    2.5298    2.7607    3.0017    3.5075    4.1946    4.9201    5.7146    6.2169    6.5856    7.6799    8.7256    12.447    17.006         3.5504              0.9213              6.7778             0.92779              0.59979               0.23364                5.0934                  1                   1.0846               0.95805          0.00025141    0.0028104     0.01808    0.040116     0.067516     0.095348      0.12959      0.19604      0.32059      0.46936      0.58307      0.64857      0.72047      0.79472      0.88344      0.96996       0.99618  
    cl_mt_pol_k_p2v11        0.13429        4.6299    2.2434    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.48456      0     22.027    -2.6619e-34      0        1      -2.6619e-34    1.3532e-10     1.0233    1.3247    1.8974    2.2755    2.6265    2.8516    3.0148    3.4719    4.1407    4.9008    5.7575    6.2307    6.6459    7.6231    8.6789    12.377    17.016         3.4995             0.91915               6.685             0.92799              0.57724               0.22897                5.0331                  1                   1.0747               0.95601          0.00022208    0.0028731    0.017401     0.04107     0.066179     0.095499       0.1272      0.20192      0.32168      0.47195      0.59109       0.6495       0.7194      0.79563      0.88205      0.96941       0.99612  
    cl_mt_pol_k_p2v12        0.13821        4.6388    2.2284    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.48038      0      22.03    -1.1982e-33      0        1      -1.1982e-33    1.2827e-10     1.0171    1.3813    1.9459    2.3374    2.6138    2.8481    3.0924     3.582    4.1428    4.9247    5.6543    6.2116    6.6266     7.567    8.7953    12.509    17.001         3.4398             0.91648              6.5975             0.92746              0.57129               0.22896                4.9656                  1                   1.0605                0.9519          0.00025796    0.0026723    0.018795    0.041812      0.07162     0.096951      0.13381      0.20387      0.32663      0.47373      0.58675       0.6526       0.7227      0.79512      0.88261      0.96943       0.99609  
    cl_mt_pol_k_p2v13        0.14214        4.6259     2.225    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.48098      0     22.034     2.8663e-33      0        1       2.8663e-33    1.5013e-10    0.99069    1.3734    1.9716    2.3549    2.5775    2.8101    3.0157    3.5248    4.1709    4.9207    5.7441    6.2171    6.5726    7.6895    8.7367    12.445    16.978          3.422             0.91572              6.5763             0.92786              0.57093               0.23018                4.9506                  1                   1.0548               0.95039          0.00022846    0.0025912     0.01964    0.044509     0.068266     0.097853      0.13077       0.2047      0.33151      0.47261      0.58678      0.65021      0.72082      0.79532      0.88334      0.96946       0.99609  
    cl_mt_pol_k_p2v14        0.14607        4.6157    2.2271    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            5            0.4825      0      22.04     3.2047e-37      0        1       3.2047e-37     1.419e-10    0.98582    1.4557    2.0384    2.3539     2.584    2.8898    3.0417    3.4801    4.0677    4.8969    5.7323    6.2485    6.5722    7.7346    8.7391     12.34     16.96         3.4048             0.91393              6.5851             0.92806              0.57158               0.23055                4.9598                  1                   1.0538               0.94883          0.00023009    0.0027104    0.020046    0.042186     0.069071      0.10021      0.13485      0.20605      0.32793      0.47744      0.58649      0.65068      0.71733      0.79967      0.88374      0.96941       0.99609  
    cl_mt_pol_k_p2v15           0.15        4.5785    2.2425    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.48978      0     22.015    -7.7387e-34      0        1      -7.7387e-34    1.2305e-11    0.97395    1.4468    1.9384    2.2822    2.5347    2.7131    2.9799    3.3907    4.0167    4.8877    5.6713    6.2263    6.5956    7.6074    8.7276    12.298    16.953         3.4554             0.91482              6.6692              0.9296              0.57962               0.23339                5.0286                  1                    1.061               0.95007          0.00019986    0.0029687    0.018229     0.04257       0.0681     0.097924      0.12762      0.19966      0.32613      0.46768      0.58428      0.64666      0.71602      0.79378      0.88159      0.96962       0.99603  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar      min       max        pYis0         pYls0        pYgr0      pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _______    ______    __________    __________    _______    ___________    __________    ________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p2v1           0.095        6.4585    3.4189     'cl_mt_coh'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            5           0.52937       -4.67    57.258    0.00027173     0.0040142    0.99571     -2.233e-33    4.3638e-13     -1.1571    0.74996    2.2555    2.9581    3.3596     3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563        0.576      0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p2v2        0.098929        6.6068    3.3559     'cl_mt_coh'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            5           0.50794     -4.4845    57.258    0.00016794     0.0017734    0.99806     1.0665e-33    1.0893e-12    -0.46876     1.2379    2.4427     3.045     3.547    3.9486    4.3502    4.9525    6.0569    7.1612    8.1651    8.7675     9.671    10.876    12.884    17.803     24.63         5.4935             0.90406              11.262                1                  2.6351                0.6182                6.9845                0.9154                1.6424               0.97023          -0.00016524     0.00089601     0.01347    0.034743     0.061024     0.092384       0.1277      0.19316       0.3232      0.46984      0.58611       0.6438      0.71555      0.79415      0.88049      0.96887       0.99599  
    cl_mt_coh_p2v3         0.10286        6.6492    3.2964     'cl_mt_coh'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            5           0.49575     -4.3132    57.258    7.0573e-05    0.00080865    0.99912      9.015e-33    1.0559e-12     0.10622     1.5124    2.6173    3.2199    3.7221    4.1239    4.4252    5.0279    6.0323    7.1372    8.1416    8.7443    9.6482    10.854    12.963    17.885    24.715          5.254             0.90099              10.866                1                  2.4519               0.60834                6.8176               0.91851                1.5966               0.96536           -7.307e-05      0.0014818    0.015847    0.038836     0.066821       0.0999      0.12611      0.19667      0.33421      0.47661      0.58698      0.64608      0.72046        0.796      0.88362      0.96947       0.99606  
    cl_mt_coh_p2v4         0.10679        6.6625    3.2491     'cl_mt_coh'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            5           0.48767     -4.1546    57.258    3.9998e-05    0.00033167    0.99963     6.2809e-33    1.1239e-12     0.56175     1.7659    2.7694    3.3715    3.7729    4.1743    4.4753    5.0774    5.9805    7.0843    8.0878    8.7902     9.593    10.797    12.904    17.821    24.545         5.0755             0.89951              10.557                1                  2.2939               0.59685                6.6977               0.92153                1.5651               0.96188            1.467e-05      0.0020345    0.017688    0.041694       0.0688      0.10535      0.13614       0.2096      0.32758      0.47941      0.58987      0.65443      0.72053       0.7955      0.88304      0.96962       0.99597  
    cl_mt_coh_p2v5         0.11071        6.6393    3.2055     'cl_mt_coh'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            5           0.48281     -4.0071    57.258     1.225e-05     9.151e-05     0.9999     3.5564e-35    7.9758e-13      1.0146     2.0189    2.9228    3.5254    3.8267    4.2285    4.4294     5.032    5.8354    7.0407     8.045    8.6476    9.5515    10.757    12.866    17.787    24.516         4.9019             0.89736              10.276                1                  2.1773               0.59007                6.5621                0.9241                1.5362               0.95944           0.00010676      0.0027785    0.019216    0.046026     0.070942      0.10693      0.13458      0.21331      0.32892      0.48035       0.5934       0.6492        0.721      0.79563      0.88323      0.96949       0.99593  
    cl_mt_coh_p2v6         0.11464        6.6014    3.2218     'cl_mt_coh'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            5           0.48804     -3.8698    57.258    5.0703e-06    2.9261e-05    0.99997     2.5408e-33    9.5424e-13      1.3496     2.1526    2.9556    3.4575    3.7586    4.0597    4.3608    4.9631    5.8664    6.9706    7.9743    8.6769    9.4799    10.684    12.893    17.811    24.636         4.9471              0.8979               10.38                1                  2.1638               0.58766                 6.667               0.92658                1.5489               0.96125           0.00021136       0.003246    0.018691    0.046248     0.071846      0.10659      0.13923      0.21056      0.33048      0.47665      0.58468      0.65205      0.71538      0.79256      0.88257      0.96898       0.99596  
    cl_mt_coh_p2v7         0.11857        6.6445    3.2104     'cl_mt_coh'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            5           0.48317     -3.7416    57.258     7.901e-07    5.6845e-06    0.99999    -3.9736e-33    1.8479e-12      1.5845      2.288    3.0919    3.4939    3.7954    4.0969    4.3984    5.0013    5.9058    7.0112    8.0161    8.7196    9.5235     10.83     12.84    17.764    24.598         4.8981             0.89864              10.307                1                  2.1115               0.58228                6.6492               0.92796                1.5461               0.96315           0.00024301      0.0034437    0.023329    0.049643     0.072021      0.10455      0.13931      0.21632      0.33571      0.47844      0.58763      0.65252      0.71677      0.79736      0.88117      0.96922       0.99598  
    cl_mt_coh_p2v8          0.1225        6.6798    3.2427     'cl_mt_coh'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            5           0.48545     -3.6216    57.258    3.6443e-07    1.1972e-06          1    -9.1115e-33    2.5684e-12      1.7028     2.4061    3.0088    3.4107     3.712    4.1139    4.4153     5.018    5.9222    7.1277    8.1323    8.7351    9.6393    10.845    12.954    17.877    24.608         4.9891             0.89986              10.515                1                  2.1497               0.58118                6.7934               0.92815                1.5717                0.9661           0.00025317      0.0039862     0.02166    0.047584     0.072464      0.10779      0.14144      0.21304      0.32701      0.48235      0.59159      0.64772      0.72135       0.7956      0.88167      0.96909       0.99592  
    cl_mt_coh_p2v9         0.12643        6.7153    3.2206     'cl_mt_coh'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            5           0.47959     -3.5091    57.258    5.0619e-08    2.6078e-07          1     -1.424e-34    1.2921e-12      1.7139     2.4169    3.0196    3.4214    3.8231    4.1244    4.5262    5.1289    6.0328    7.1377    8.1421    8.7447    9.6487    10.854    12.863    17.885    24.614         4.9445             0.90032              10.372                1                  2.0899               0.57533                6.7186               0.92859                1.5636               0.96728           0.00024047      0.0047435    0.022425    0.045077     0.075326      0.10174      0.14541      0.21553      0.33491      0.47707      0.59345      0.64992      0.72515      0.79825      0.88191      0.96975       0.99599  
    cl_mt_coh_p2v10        0.13036        6.7636     3.237     'cl_mt_coh'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            5           0.47859     -3.4033    57.258    8.5548e-09    1.5841e-08          1    -1.0039e-33    1.4217e-12      1.8191     2.3213    2.9239    3.4261    3.8278    4.1291    4.5308    5.1334    6.0373    7.2425    8.1464    8.8494    9.6529    10.858    12.967    17.888    24.718         4.9768              0.9004              10.478                1                  2.1288               0.57815                6.7778               0.92779                1.5713               0.96771           0.00034467      0.0034374    0.019192    0.045062     0.073782     0.099739      0.13867      0.20928      0.33037      0.48522      0.58756      0.65446        0.719       0.7952      0.88234      0.96918       0.99609  
    cl_mt_coh_p2v11        0.13429        6.7836     3.211     'cl_mt_coh'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            5           0.47334     -3.3038    57.258    2.3895e-10    6.2227e-10          1    -1.8571e-34      4.89e-13      1.8184     2.3205    2.9231    3.5257    3.9275    4.2288    4.5301    5.1327    6.0366    7.2418    8.2461    8.8487    9.6522    10.857    12.966    17.888    24.617         4.9032             0.89979               10.31                1                  2.0699               0.57364                 6.685               0.92799                1.5556               0.96686           0.00032839      0.0041128    0.018923    0.047143     0.071779      0.10374      0.13406      0.20712      0.33047      0.48488       0.5968      0.65721      0.72041      0.79736      0.88406      0.96967       0.99598  
    cl_mt_coh_p2v12        0.13821        6.7959    3.1922     'cl_mt_coh'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            5           0.46972     -3.2099    57.258    2.2059e-11    6.2737e-11          1    -1.0722e-33    5.3883e-13      1.8124     2.3146    3.0177    3.6204    3.9217    4.3235    4.6248    5.2275     6.031    7.1359    8.1404    8.8435     9.647    10.852    12.962    17.883    24.613         4.8318             0.89866               10.19                1                  2.0537               0.57455                6.5975               0.92746                1.5391               0.96435           0.00029475      0.0036171    0.019665    0.049141     0.071765      0.11061      0.14222      0.21664      0.33429      0.47767      0.59075      0.65894       0.7219      0.79792      0.88353      0.96986       0.99601  
    cl_mt_coh_p2v13        0.14214        6.7859    3.1855     'cl_mt_coh'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            5           0.46942     -3.1211    57.258    1.9707e-12    2.5033e-12          1     2.9179e-33    1.3931e-12      1.8016     2.3039    3.1076    3.6099    4.0118    4.3132    4.5141    5.1169    6.1215    7.1262    8.1308     8.834    9.6378    10.843    12.953    17.876    24.707         4.8058             0.89825              10.147                1                  2.0404                0.5746                6.5763               0.92786                1.5304               0.96316            0.0002848      0.0033111    0.021463    0.046322     0.080649      0.11023      0.13605      0.20969      0.34335      0.47755      0.59373       0.6561      0.72484      0.79948      0.88561      0.96959       0.99609  
    cl_mt_coh_p2v14        0.14607        6.7813    3.1861     'cl_mt_coh'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            5           0.46983     -3.0372    57.258     5.676e-13    5.0763e-13          1     3.6553e-37    1.4552e-12      1.8869     2.3893    3.1933    3.5952    3.9972    4.2987    4.6001    5.1026     6.007    7.1124    8.2178    8.8208    9.6247    10.831    12.941    17.865    24.598         4.7863             0.89804              10.151                1                  2.0372               0.57437                6.5851               0.92806                1.5288               0.96219           0.00044013       0.003467    0.023257    0.045572     0.080232      0.11138      0.14765      0.21129       0.3346      0.48002      0.59942      0.65253      0.72052      0.79663      0.88449      0.96959       0.99607  
    cl_mt_coh_p2v15           0.15        6.7412    3.1993     'cl_mt_coh'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            5           0.47458     -2.9577    57.258    3.4841e-14    4.2624e-14          1    -8.5783e-34    1.1269e-12      1.8596     2.4617    3.1642    3.5657    3.8668    4.1678    4.4689    5.0711    5.9743    7.1786    8.1822    8.7843    9.6876    10.792    12.899    17.817    24.541         4.8433             0.89877              10.235                1                  2.0317               0.57342                6.6692                0.9296                1.5345               0.96316            0.0003567        0.00382    0.024027    0.050411     0.075533      0.10711      0.13803      0.20897      0.33186      0.48594      0.59452      0.65356       0.7247      0.79526      0.88371      0.96945       0.99604  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY      pYisMAXY      p0_1        p1        p5       p10       p15      p20      p25      p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1     fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    _____    __________    _______    __________    __________    _______    ______    ______    ______    _____    _____    _____    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p3v1         -20    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v2     -18.929    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v3     -17.857    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v4     -16.786    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v5     -15.714    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v6     -14.643    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v7     -13.571    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v8       -12.5    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v9     -11.429    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v10    -10.357    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v11    -9.2857    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v12    -8.2143    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v13    -7.1429    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v14    -6.0714    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p3v15         -5    7.8663    1.8625     'cl_mt_val'       'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  

                         fl_b_bd     mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min      max     pYis0    pYls0    pYgr0     pYisMINY      pYisMAXY      p0_1        p1         p5       p10      p15       p20       p25      p35       p50      p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ____    _____    _____    _____    _____    __________    __________    _______    _______    ______    _____    ______    ______    _____    ______    _____    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p3v1         -20    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v2     -18.929    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v3     -17.857    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v4     -16.786    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v5     -15.714    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v6     -14.643    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v7     -13.571    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v8       -12.5    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v9     -11.429    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v10    -10.357    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v11    -9.2857    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v12    -8.2143    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v13    -7.1429    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v14    -6.0714    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p3v15         -5    1.8119    0.50534    'cl_mt_pol_c'      'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.2789      0.02    7.583      0        0        1      -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  

                         fl_b_bd     mean      sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1       p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95      p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    _____    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p3v1         -20    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v2     -18.929    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v3     -17.857    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v4     -16.786    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v5     -15.714    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v6     -14.643    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v7     -13.571    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v8       -12.5    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v9     -11.429    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v10    -10.357    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v11    -9.2857    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v12    -8.2143    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v13    -7.1429    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v14    -6.0714    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p3v15         -5    4.6063    2.281    'cl_mt_pol_k'      'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY      pYisMAXY      p0_1        p1         p5       p10       p15       p20      p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    __________    _________    _______    __________    __________    _______    _______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p3v1         -20    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               1                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v2     -18.929    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               2                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v3     -17.857    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               3                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v4     -16.786    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               4                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v5     -15.714    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               5                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v6     -14.643    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               6                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v7     -13.571    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               7                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v8       -12.5    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               8                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v9     -11.429    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12               9                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v10    -10.357    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              10                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v11    -9.2857    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              11                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v12    -8.2143    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              12                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v13    -7.1429    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              13                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v14    -6.0714    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              14                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p3v15         -5    6.4585    3.4189     'cl_mt_coh'       'fl_b_bd'          12              15                   20                   0.095           0.02            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15      p20      p25      p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1     fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    _____    __________    _______    ___________    __________    _______    ______    ______    ______    _____    _____    _____    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p4v1          0.03    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               1                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -6.3047e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v2      0.027929    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               2                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -6.0816e-35    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v3      0.025857    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               3                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     4.2972e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v4      0.023786    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               4                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     1.7738e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v5      0.021714    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               5                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     2.1163e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v6      0.019643    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               6                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v7      0.017571    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               7                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -1.1426e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v8        0.0155    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               8                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -4.1829e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v9      0.013429    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13               9                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     2.9213e-35    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v10     0.011357    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              10                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -4.1866e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v11    0.0092857    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              11                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -4.0235e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v12    0.0072143    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              12                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956    -7.0373e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v13    0.0051429    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              13                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     9.4507e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v14    0.0030714    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              14                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956     4.1993e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p4v15        0.001    7.8663    1.8625     'cl_mt_val'      'fl_c_min'          13              15                   20                   0.095           -20            5           0.23677     -9999    16.634      0      0.00044151    0.99956      -2.28e-34    4.3638e-13    0.94409    3.2646    4.7828    5.5037    5.971    6.312    6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                0.397                 3.8751               0.91217               0.89319                0.949           -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543      0.7964       0.85969      0.92653      0.98413       0.99827  

                         fl_c_min      mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar       min        max     pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10      p15       p20       p25      p35       p50      p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _________    _____    _____    _____    _____    ___________    __________    _______    _______    ______    _____    ______    ______    _____    ______    _____    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p4v1          0.03    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               1                   20                   0.095           -20            5           0.2789           0.03    7.583      0        0        1      -6.3047e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v2      0.027929    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               2                   20                   0.095           -20            5           0.2789       0.027929    7.583      0        0        1      -6.0816e-35    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v3      0.025857    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               3                   20                   0.095           -20            5           0.2789       0.025857    7.583      0        0        1       4.2972e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v4      0.023786    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               4                   20                   0.095           -20            5           0.2789       0.023786    7.583      0        0        1       1.7738e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v5      0.021714    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               5                   20                   0.095           -20            5           0.2789       0.021714    7.583      0        0        1       2.1163e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v6      0.019643    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               6                   20                   0.095           -20            5           0.2789       0.019643    7.583      0        0        1       -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v7      0.017571    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               7                   20                   0.095           -20            5           0.2789       0.017571    7.583      0        0        1      -1.1426e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v8        0.0155    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               8                   20                   0.095           -20            5           0.2789         0.0155    7.583      0        0        1      -4.1829e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v9      0.013429    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13               9                   20                   0.095           -20            5           0.2789       0.013429    7.583      0        0        1       2.9213e-35    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v10     0.011357    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              10                   20                   0.095           -20            5           0.2789       0.011357    7.583      0        0        1      -4.1866e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v11    0.0092857    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              11                   20                   0.095           -20            5           0.2789      0.0092857    7.583      0        0        1      -4.0235e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v12    0.0072143    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              12                   20                   0.095           -20            5           0.2789      0.0072143    7.583      0        0        1      -7.0373e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v13    0.0051429    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              13                   20                   0.095           -20            5           0.2789      0.0051429    7.583      0        0        1       9.4507e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v14    0.0030714    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              14                   20                   0.095           -20            5           0.2789      0.0030714    7.583      0        0        1       4.1993e-33    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p4v15        0.001    1.8119    0.50534    'cl_mt_pol_c'     'fl_c_min'          13              15                   20                   0.095           -20            5           0.2789          0.001    7.583      0        0        1        -2.28e-34    4.3638e-13    0.81115    0.97501    1.1245    1.229    1.3109    1.3908    1.442    1.5567    1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319              0.949               1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  

                         fl_c_min      mean      sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1       p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95      p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    _____    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p4v1          0.03    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               1                   20                   0.095           -20            5           0.49519      0     22.017    -8.2347e-33      0        1      -8.2347e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v2      0.027929    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               2                   20                   0.095           -20            5           0.49519      0     22.017    -7.1939e-35      0        1      -7.1939e-35    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v3      0.025857    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               3                   20                   0.095           -20            5           0.49519      0     22.017     4.6966e-34      0        1       4.6966e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v4      0.023786    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               4                   20                   0.095           -20            5           0.49519      0     22.017     2.7448e-33      0        1       2.7448e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v5      0.021714    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               5                   20                   0.095           -20            5           0.49519      0     22.017      2.057e-33      0        1        2.057e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v6      0.019643    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               6                   20                   0.095           -20            5           0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v7      0.017571    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               7                   20                   0.095           -20            5           0.49519      0     22.017    -2.2304e-35      0        1      -2.2304e-35    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v8        0.0155    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               8                   20                   0.095           -20            5           0.49519      0     22.017    -4.3734e-34      0        1      -4.3734e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v9      0.013429    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13               9                   20                   0.095           -20            5           0.49519      0     22.017     2.4738e-35      0        1       2.4738e-35    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v10     0.011357    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              10                   20                   0.095           -20            5           0.49519      0     22.017    -3.8203e-34      0        1      -3.8203e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v11    0.0092857    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              11                   20                   0.095           -20            5           0.49519      0     22.017    -3.8641e-34      0        1      -3.8641e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v12    0.0072143    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              12                   20                   0.095           -20            5           0.49519      0     22.017    -8.5537e-34      0        1      -8.5537e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v13    0.0051429    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              13                   20                   0.095           -20            5           0.49519      0     22.017     1.1405e-33      0        1       1.1405e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v14    0.0030714    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              14                   20                   0.095           -20            5           0.49519      0     22.017     4.4953e-33      0        1       4.4953e-33    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p4v15        0.001    4.6063    2.281    'cl_mt_pol_k'     'fl_c_min'          13              15                   20                   0.095           -20            5           0.49519      0     22.017    -4.5258e-34      0        1      -4.5258e-34    5.7429e-11    1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612    8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563      0.1268       0.20087      0.31625      0.46922      0.58197      0.6462       0.7156       0.79399      0.88196      0.96933       0.99606  

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20      p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    _______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p4v1          0.03    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               1                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -6.3047e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v2      0.027929    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               2                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -6.0816e-35    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v3      0.025857    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               3                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     4.2972e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v4      0.023786    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               4                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     1.7738e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v5      0.021714    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               5                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     2.1163e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v6      0.019643    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               6                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     -2.233e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v7      0.017571    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               7                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -1.1426e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v8        0.0155    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               8                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -4.1829e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v9      0.013429    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13               9                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     2.9213e-35    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v10     0.011357    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              10                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -4.1866e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v11    0.0092857    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              11                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -4.0235e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v12    0.0072143    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              12                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571    -7.0373e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v13    0.0051429    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              13                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     9.4507e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v14    0.0030714    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              14                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     4.1993e-33    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p4v15        0.001    6.4585    3.4189     'cl_mt_coh'      'fl_c_min'          13              15                   20                   0.095           -20            5           0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571      -2.28e-34    4.3638e-13    -1.1571    0.74996    2.2555    2.9581    3.3596    3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05    0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563       0.576       0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1     fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    _____    __________    _______    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p5v1           3          7.8502    1.8634     'cl_mt_val'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.23737     -9999    16.629      0       0.0004395    0.99956     5.9778e-34    4.2515e-13    0.92471     3.255    4.7717    5.4479    5.9528     6.304    6.6449    7.1647    7.9015    8.6056    9.1056    9.4179    9.7571    10.195    10.841    12.028    13.221         3.4723                1                 5.7421             0.90414              0.98064               0.38899                3.8679               0.90851               0.89358               0.94902          -1.8546e-05    0.0028741    0.024302    0.057467     0.094032      0.13381       0.1743      0.26242      0.40696      0.56517      0.67659      0.73667       0.7969      0.86097      0.92714       0.9841       0.99828  
    cl_mt_val_p5v2           4          7.8643    1.8609     'cl_mt_val'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.23662     -9999    16.633      0      0.00042247    0.99958     -4.595e-34    4.3483e-13    0.97644    3.2689    4.7823    5.5031    5.9702    6.3066    6.6681    7.1938    7.9206    8.6137     9.121    9.4232    9.7644    10.199    10.845    12.046    13.225         3.4629                1                 5.7471             0.90439              0.98405                0.3939                3.8705               0.91152               0.89254               0.94925          -1.1089e-05    0.0029468    0.025088    0.057441     0.093834      0.13277      0.17675      0.26251      0.40853      0.56684      0.67757       0.7358      0.79677      0.85967      0.92654      0.98403       0.99827  
    cl_mt_val_p5v3           5          7.8663    1.8625     'cl_mt_val'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.23677     -9999    16.634      0      0.00044151    0.99956     -2.233e-33    4.3638e-13    0.94409    3.2646    4.7828    5.5037     5.971     6.312     6.668    7.1957    7.9208    8.6139    9.1212    9.4236    9.7648    10.202    10.847    12.047    13.227         3.4688                1                 5.7597             0.90453              0.99136                 0.397                3.8751               0.91217               0.89319                 0.949          -1.7834e-05    0.0029155    0.024994    0.057272     0.093576      0.13268      0.17632      0.26301      0.40801      0.56588      0.67677      0.73543       0.7964      0.85969      0.92653      0.98413       0.99827  
    cl_mt_val_p5v4           6          7.8632    1.8659     'cl_mt_val'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02        0.2373     -9999    16.634      0      0.00044603    0.99955     8.3963e-33    4.3667e-13     0.8828    3.2663    4.7762    5.4562    5.9655    6.3056    6.6673    7.1931    7.9202    8.6132    9.1205     9.423    9.7642    10.202    10.846    12.047     13.23         3.4817                1                  5.778             0.90462               1.0025               0.40041                3.8809                0.9122               0.89462               0.94866          -2.1501e-05    0.0028654    0.024451    0.056998     0.093392      0.13264      0.17638      0.26214      0.40794      0.56575      0.67665      0.73541      0.79622      0.85964      0.92647      0.98411       0.99828  
    cl_mt_val_p5v5           7          7.8622    1.8679     'cl_mt_val'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.23758     -9999    16.634      0      0.00045343    0.99955     6.4763e-34    4.3687e-13    0.88426    3.2472    4.7749    5.4504    5.9584    6.3063     6.668    7.1939    7.9208    8.6138    9.1211    9.4236     9.765    10.211    10.847    12.047    13.231          3.489                1                 5.7898             0.90473               1.0099               0.40237                3.8845               0.91224               0.89544               0.94848          -2.3323e-05    0.0028466    0.024427     0.05695     0.093496      0.13238       0.1763      0.26225      0.40809      0.56566      0.67652      0.73523      0.79646      0.85961      0.92643       0.9841       0.99828  
    cl_mt_val_p5v6           8          7.8571    1.8746     'cl_mt_val'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.23859     -9999    16.634      0      0.00047188    0.99953      1.486e-33    4.3707e-13    0.82634    3.1827    4.7655    5.4504    5.9556    6.3064    6.6474     7.172    7.9119    8.6136    9.1209    9.4276    9.7647    10.212    10.847    12.047     13.23         3.5142                1                 5.8262             0.90497               1.0299               0.40679                3.8977               0.91169               0.89859               0.94796          -2.8931e-05    0.0028098    0.024271    0.056693     0.093397      0.13275      0.17337      0.26145      0.40597       0.5654      0.67632      0.73774      0.79625      0.86021      0.92635      0.98408       0.99828  
    cl_mt_val_p5v7           9            7.85      1.88     'cl_mt_val'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.23949     -9999    16.631      0       0.0004781    0.99952    -3.0851e-32    4.3689e-13    0.77228    3.1733    4.7062    5.4339    5.9541     6.302    6.6454    7.1649    7.9023     8.607    9.1185     9.421    9.7623      10.2    10.844    12.044    13.228         3.5344                1                  5.854             0.90511               1.0456               0.40996                3.9073                0.9112               0.90113                0.9476          -3.6058e-05    0.0027501    0.023884    0.056645     0.093858      0.13174      0.17351      0.26146      0.40542      0.56306      0.67629        0.735      0.79628      0.85947      0.92634      0.98409       0.99828  
    cl_mt_val_p5v8          10          7.8478    1.8847     'cl_mt_val'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.24016     -9999    16.633      0       0.0005217    0.99948     2.1264e-34    4.3659e-13    0.70021    3.1427    4.7057    5.4378      5.93    6.3051    6.6407     7.167    7.9044     8.609    9.1206     9.423    9.7641    10.201    10.846    12.046    13.227         3.5521                1                 5.8778              0.9052               1.0615               0.41318                3.9131               0.91041               0.90318               0.94719          -4.6909e-05     0.002688    0.023888    0.056889     0.092402      0.13217       0.1729       0.2609      0.40528      0.56309      0.67636      0.73521      0.79586      0.85942      0.92642      0.98409       0.99827  
    cl_mt_val_p5v9          11          7.8445    1.8872     'cl_mt_val'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.24058     -9999    16.633      0      0.00053903    0.99946    -2.5085e-34    4.3474e-13    0.68697    3.1119    4.7066    5.4399    5.9307    6.2989    6.6368    7.1674    7.9046    8.6091    9.1206     9.423    9.7641    10.199    10.846    12.046    13.225         3.5617                1                 5.8925             0.90535               1.0719               0.41513                3.9161               0.91021               0.90443               0.94715          -4.9114e-05    0.0026744    0.023648    0.057103     0.092635      0.13175      0.17269      0.26133      0.40547      0.56322      0.67644      0.73544      0.79587      0.85932      0.92625      0.98411       0.99827  
    cl_mt_val_p5v10         12          7.8367    1.8963     'cl_mt_val'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.24197     -9999    16.634      0      0.00057725    0.99942    -4.5877e-33    4.3409e-13    0.61918    3.0617     4.658    5.4383    5.9137    6.3009     6.636    7.1602    7.9059    8.6103      9.12    9.4227    9.7652      10.2    10.846    12.047    13.226         3.5959                1                 5.9386             0.90552               1.0981               0.41994                 3.932               0.90915               0.90848               0.94658           -5.848e-05    0.0025708    0.023306     0.05595     0.092059      0.13174      0.17295      0.26021      0.40515      0.56297      0.67563      0.73443      0.79601      0.85922      0.92624      0.98397       0.99827  
    cl_mt_val_p5v11         13          7.8309     1.899     'cl_mt_val'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02        0.2425     -9999    16.633      0      0.00062526    0.99937    -9.6403e-33    4.2922e-13     0.5404    3.0241    4.6392    5.4405    5.9002    6.2662    6.6131    7.1606    7.9062    8.5861    9.1102    9.4226    9.7618      10.2    10.846    12.036    13.226         3.6062                1                 5.9466             0.90553               1.1088               0.42205                3.9281               0.90817               0.90969               0.94634           -6.866e-05     0.002516    0.023251    0.056246     0.091639      0.13091      0.17209      0.26031      0.40589      0.56231      0.67579      0.73445      0.79586      0.85941      0.92646      0.98394       0.99828  
    cl_mt_val_p5v12         14          7.8246    1.9059     'cl_mt_val'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.24358     -9999    16.633      0      0.00067192    0.99933     6.4761e-34    4.2869e-13    0.45644    2.9646    4.6363    5.3906    5.8966    6.2527    6.6143    7.1614    7.8876    8.5818    9.1105    9.4228    9.7619      10.2    10.846    12.032    13.225         3.6326                1                 5.9819             0.90571               1.1324               0.42612                3.9367               0.90696               0.91284               0.94569          -7.7876e-05    0.0024255    0.023156     0.05564     0.091474      0.13033      0.17152      0.26007       0.4042      0.56207      0.67621      0.73468      0.79605       0.8594       0.9265      0.98394       0.99828  
    cl_mt_val_p5v13         15          7.8168    1.9156     'cl_mt_val'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.24506     -9999    16.634      0      0.00072016    0.99928    -5.2999e-33    4.2809e-13    0.34971    2.8843    4.6225    5.3846    5.8737    6.2553    6.6003    7.1544    7.8861    8.5822    9.1117     9.414    9.7631    10.201    10.847    12.033    13.226         3.6693                1                 6.0324             0.90593               1.1663               0.43226                3.9489               0.90532               0.91719               0.94501          -8.9773e-05    0.0023188    0.022768    0.054866     0.090833      0.13071      0.17133      0.25975      0.40418      0.56169       0.6765      0.73396      0.79621       0.8594      0.92654      0.98395       0.99826  
    cl_mt_val_p5v14         16           7.809    1.9225     'cl_mt_val'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.24619     -9999    16.635      0      0.00077671    0.99922    -5.9398e-33    4.2636e-13    0.27595    2.8408    4.5709    5.3824    5.8765    6.2521     6.594    7.1217    7.8854    8.5792     9.104    9.3983    9.7608    10.202    10.848    12.034    13.227          3.696                1                 6.0676             0.90606               1.1935               0.43645                3.9538               0.90395               0.92032               0.94477          -0.00010071    0.0022481    0.022485    0.054914     0.090834      0.12988      0.17069      0.25876      0.40383      0.56135      0.67484      0.73405      0.79511      0.85907      0.92671      0.98398       0.99826  
    cl_mt_val_p5v15         17          7.7993    1.9321     'cl_mt_val'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.24772     -9999    16.633      0      0.00083775    0.99916      2.549e-33    4.2572e-13    0.19243    2.7772    4.5449    5.3795    5.8407    6.2462    6.5827    7.1197    7.8851    8.5785    9.1033    9.3975    9.7515    10.201    10.847    12.033    13.226         3.7329                1                 6.1203             0.90637               1.2294               0.44223                3.9661               0.90245               0.92477               0.94416          -0.00011115    0.0021405    0.022097    0.054344     0.090061        0.129      0.17015      0.25821      0.40454      0.56104      0.67511      0.73351      0.79508       0.8591      0.92675      0.98399       0.99826  

                         fl_z_r_borr_n     mean       sd       variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min      max     pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25      p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    _______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ____    _____    _____    _____    _____    ___________    __________    _______    _______    ______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p5v1           3          1.8095     0.5053    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.27925     0.02    7.583      0        0        1       5.9778e-34    4.2515e-13    0.79886    0.96682    1.1184     1.229    1.3109    1.3765    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7673    3.2774    3.8468        0.89358             0.94902              1.6724             0.97112              0.32272               0.47208                1.0944               0.94794               0.25533                  1             0.00040561    0.0050516    0.028896    0.063571     0.098131      0.13384      0.17619      0.26227      0.40572      0.54485      0.65518      0.71361      0.77901      0.84603      0.91553      0.98053       0.99776  
    cl_mt_pol_c_p5v2           4          1.8115    0.50527    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.27893     0.02    7.583      0        0        1       -4.595e-34    4.3483e-13    0.81115    0.96887    1.1245     1.229    1.3109    1.3826    1.442    1.5567     1.737    1.9336    2.1016    2.2122    2.3269    2.5072    2.7673    3.2835    3.8427        0.89254             0.94925              1.6761             0.97141              0.32479                0.4788                 1.096               0.95062                0.2553                  1             0.00043474    0.0049589    0.028923    0.063491      0.09767      0.13344      0.17484      0.26004      0.40462      0.54399      0.65524      0.71891      0.77686      0.84599       0.9151      0.98081       0.99777  
    cl_mt_pol_c_p5v3           5          1.8119    0.50534    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02        0.2789     0.02    7.583      0        0        1       -2.233e-33    4.3638e-13    0.81115    0.97501    1.1245     1.229    1.3109    1.3908    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89319               0.949              1.6787             0.97164              0.32653               0.48192                1.0968               0.95155               0.25537                  1             0.00043459    0.0051808    0.028857    0.063529     0.097271      0.13392      0.17471      0.25974      0.40397      0.54299      0.65579      0.71376      0.77653      0.84578      0.91699      0.98074       0.99776  
    cl_mt_pol_c_p5v4           6          1.8118     0.5054    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.27895     0.02    7.583      0        0        1       8.3963e-33    4.3667e-13    0.80295    0.97501    1.1184     1.229    1.3109    1.3826    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89462             0.94866              1.6813             0.97184              0.32905               0.48524                1.0968               0.95182               0.25543                  1             0.00040411    0.0051114    0.028485    0.063081      0.09702      0.13364      0.17495       0.2598      0.40418       0.5428      0.65558      0.71383      0.77656      0.84582      0.91703      0.98073       0.99776  
    cl_mt_pol_c_p5v5           7          1.8117    0.50542    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.27898     0.02    7.583      0        0        1       6.4763e-34    4.3687e-13    0.79886    0.97501    1.1245     1.229    1.3109    1.3765    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89544             0.94848              1.6831             0.97199              0.33078               0.48708                1.0969               0.95196               0.25545                  1             0.00040363    0.0051465    0.028602    0.062877     0.097559      0.13335      0.17504      0.25979      0.40441      0.54312        0.656      0.71369      0.77651      0.84569        0.917      0.98073       0.99777  
    cl_mt_pol_c_p5v6           8          1.8112    0.50566    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.27919     0.02    7.583      0        0        1        1.486e-33    4.3707e-13    0.79886    0.96682    1.1307     1.229    1.3109    1.3765    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.89859             0.94796              1.6884             0.97227              0.33499               0.49055                1.0977                0.9519                0.2557                  1              0.0004046    0.0049487     0.03097    0.063224     0.097882      0.13413      0.17572      0.26041      0.40462      0.54345      0.65645      0.71385      0.77631      0.84565      0.91696      0.98072       0.99777  
    cl_mt_pol_c_p5v7           9          1.8107    0.50583    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.27936     0.02    7.583      0        0        1      -3.0851e-32    4.3689e-13    0.79271    0.96682    1.1307     1.229    1.3109    1.3765    1.442    1.5567     1.737    1.9336    2.1016    2.1958    2.3269    2.5072    2.7694    3.2835    3.8427        0.90113              0.9476              1.6922              0.9724              0.33813               0.49275                1.0982               0.95183               0.25586                  1             0.00040227    0.0050805    0.030555    0.063309     0.098522       0.1347      0.17634      0.26068      0.40489      0.54367       0.6565       0.7139      0.77647      0.84573      0.91697      0.98072       0.99777  
    cl_mt_pol_c_p5v8          10          1.8102    0.50594    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.27949     0.02    7.583      0        0        1       2.1264e-34    4.3659e-13    0.78861    0.96682    1.1307     1.229    1.3109    1.3765    1.442    1.5567     1.737    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2835    3.8427        0.90318             0.94719              1.6951             0.97244              0.34107               0.49455                 1.098               0.95164               0.25597                  1             0.00040002    0.0050383    0.030564    0.063681     0.099116      0.13532      0.17647      0.26046      0.40541      0.54396      0.65409      0.71409      0.77661      0.84578      0.91498      0.98073       0.99778  
    cl_mt_pol_c_p5v9          11          1.8098    0.50597    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.27957     0.02    7.583      0        0        1      -2.5085e-34    4.3474e-13    0.78861    0.96682    1.1307     1.229    1.3109    1.3765    1.442    1.5567     1.735    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2835    3.8468        0.90443             0.94715              1.6969             0.97247              0.34335               0.49595                1.0975               0.95151               0.25601                  1             0.00039724    0.0050876    0.030737    0.063596     0.098487      0.13584      0.17734      0.26075      0.39143      0.54402      0.65405      0.71429       0.7768      0.84594      0.91497      0.98075       0.99777  
    cl_mt_pol_c_p5v10         12          1.8088    0.50612    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.27981     0.02    7.583      0        0        1      -4.5877e-33    4.3409e-13    0.78657    0.96682    1.1266     1.229    1.3109    1.3765    1.442    1.5567    1.7206    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2835    3.8468        0.90848             0.94658              1.7027             0.97271              0.34857               0.49944                1.0979               0.95111               0.25616                  1             0.00039106    0.0052792     0.02848    0.063616     0.099235      0.13709      0.17809      0.26097      0.39102      0.54467      0.65437      0.71467      0.77715      0.84616      0.91508      0.98077       0.99778  
    cl_mt_pol_c_p5v11         13           1.808     0.5062    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.27997     0.02    7.583      0        0        1      -9.6403e-33    4.2922e-13    0.78657    0.96272    1.1266     1.229    1.3109    1.3765    1.442    1.5567    1.7206    1.9336    2.1016    2.1958    2.3269    2.5072    2.7673    3.2815    3.8468        0.90969             0.94634              1.7024             0.97256              0.35028               0.50019                1.0959               0.95055               0.25624                  1             0.00039752     0.004918    0.028408    0.063916     0.099804      0.13768      0.17894      0.26151      0.39183       0.5448      0.65617      0.71456      0.77794      0.84605      0.91506      0.98045       0.99777  
    cl_mt_pol_c_p5v12         14          1.8073    0.50645    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.28022     0.02    7.583      0        0        1       6.4761e-34    4.2869e-13    0.77428    0.96068    1.1245     1.229    1.3109    1.3765    1.442    1.5567    1.7206    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2815    3.8468        0.91284             0.94569               1.707             0.97266              0.35483               0.50251                1.0957               0.94999               0.25649                  1             0.00040151    0.0049322    0.028532    0.064418      0.10051      0.13849      0.17948       0.2617      0.39253      0.54528      0.65425      0.71499      0.77762      0.84564      0.91516      0.98047       0.99778  
    cl_mt_pol_c_p5v13         15          1.8062    0.50667    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.28051     0.02    7.583      0        0        1      -5.2999e-33    4.2809e-13    0.76608    0.95863    1.1245     1.229    1.3109    1.3765    1.442    1.5567    1.7206    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2815    3.8427        0.91719             0.94501              1.7133             0.97276              0.36125               0.50617                1.0953               0.94938               0.25671                  1             0.00038689    0.0049129    0.028646    0.064817       0.1011      0.13958      0.18062      0.26196      0.39347      0.54592      0.65462      0.71536      0.77796       0.8458      0.91524      0.98049       0.99775  
    cl_mt_pol_c_p5v14         16          1.8051     0.5067    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02        0.2807     0.02    7.583      0        0        1      -5.9398e-33    4.2636e-13    0.76199    0.95863    1.1245     1.229    1.3109    1.3765    1.442    1.5567    1.7206    1.9336    2.0975    2.1958    2.3269    2.5072    2.7673    3.2774    3.8468        0.92032             0.94477              1.7165             0.97253              0.36609               0.50793                1.0937               0.94872               0.25674                  1             0.00039293    0.0048835    0.028394     0.06476      0.10179      0.14017      0.18219      0.26212       0.3947      0.54636       0.6544      0.71595      0.77874      0.84618      0.91549      0.98048       0.99777  
    cl_mt_pol_c_p5v15         17          1.8041    0.50695    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02         0.281     0.02    7.583      0        0        1        2.549e-33    4.2572e-13     0.7456    0.95863    1.1245    1.2188    1.3109    1.3724    1.442    1.5567    1.7206    1.9336    2.0975    2.1958    2.3269    2.5072    2.7653    3.2774    3.8427        0.92477             0.94416              1.7232             0.97257              0.37291               0.51122                1.0933               0.94808                 0.257                  1             0.00037719    0.0049869    0.028386    0.060998      0.10221      0.13316       0.1832      0.26294      0.39529      0.54692       0.6547      0.71628      0.77899      0.84627      0.91479       0.9805       0.99775  

                         fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p5v1           3          4.5995    2.2847    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.49674      0     22.017     7.6472e-34      0        1       7.6472e-34    5.5934e-11    0.98692    1.3293    1.7511    2.1854    2.4475    2.7714    2.9308    3.5273    4.1391    4.9275    5.8308    6.2387    6.6603    7.6612    8.8301    12.177    16.955         3.8679             0.90851              7.0524             0.90569              0.73805               0.23878                  5.22                  1                   1.0944               0.94794          0.00018737    0.0025497    0.017075    0.038813     0.065565     0.092082      0.12724      0.19778      0.32234      0.46955      0.58567      0.64597      0.71672      0.79322      0.88152      0.96975       0.99609  
    cl_mt_pol_k_p5v2           4          4.6046    2.2818    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.49555      0     22.017    -6.4368e-34      0        1      -6.4368e-34    5.7224e-11     1.0026    1.3326    1.7511    2.1854    2.4766    2.7714    2.9215    3.5273    4.1391     4.916    5.8068    6.2387    6.6678    7.6516     8.885    12.155    16.955         3.8705             0.91152              7.0805             0.90866              0.77768               0.25386                5.2068                  1                    1.096               0.95062          0.00022861    0.0026226     0.01684    0.038885     0.065357     0.093506       0.1231      0.19935      0.31785      0.46539      0.58059      0.64968      0.71562      0.79306      0.88197      0.96924       0.99606  
    cl_mt_pol_k_p5v3           5          4.6063     2.281    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.49519      0     22.017    -2.6559e-33      0        1      -2.6559e-33    5.7429e-11     1.0026    1.3326    1.7605    2.1904    2.4766    2.7714    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6918    7.6612     8.885    12.117    16.955         3.8751             0.91217              7.0928             0.90952              0.79317               0.25935                5.2028                  1                   1.0968               0.95155          0.00023785    0.0025852    0.016993    0.039869     0.064489     0.092563       0.1268      0.20087      0.31625      0.46922      0.58197       0.6462       0.7156      0.79399      0.88196      0.96933       0.99606  
    cl_mt_pol_k_p5v4           6          4.6048    2.2801    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.49515      0     22.017      8.265e-33      0        1        8.265e-33    5.7468e-11    0.98692    1.3326    1.7756    2.1904    2.4766    2.7766    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.7086    7.6612    8.8301    12.117    16.955         3.8809              0.9122              7.1012             0.90984              0.80563               0.26334                5.1987                  1                   1.0968               0.95182          0.00019926    0.0025485    0.016808    0.039489       0.0656     0.092548      0.12622      0.19966      0.32199      0.46958      0.58124      0.64718       0.7154      0.79327      0.88141      0.96927       0.99605  
    cl_mt_pol_k_p5v5           7           4.605    2.2797    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.49505      0     22.017      5.862e-34      0        1        5.862e-34    5.7494e-11    0.98692    1.3331    1.8119    2.1904    2.4554    2.7766    2.9308    3.5273    4.1391    4.9275    5.7845    6.2387    6.6603    7.6612    8.8301    12.117    16.955         3.8845             0.91224              7.1062             0.90985              0.81234                0.2652                 5.197                  1                   1.0969               0.95196          0.00019616    0.0025341    0.016612    0.039565     0.064195     0.093073      0.12445      0.20203      0.32322      0.46714      0.58171      0.64693       0.7156      0.79417      0.88138      0.96937       0.99605  
    cl_mt_pol_k_p5v6           8          4.6048    2.2806    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.49527      0     22.017     1.7527e-33      0        1       1.7527e-33    5.7519e-11    0.98692    1.3333    1.8384    2.1904    2.4469    2.7766    2.9392    3.5273    4.1391    4.9275    5.7845    6.2427    6.6603    7.6612     8.885    12.117    16.955         3.8977             0.91169               7.123             0.90944              0.82405               0.26756                5.2012                  1                   1.0977                0.9519          0.00019896    0.0025864    0.016565    0.039553     0.063873     0.092923      0.12305      0.20216      0.32154      0.46584      0.58212       0.6461      0.71545      0.79348      0.88295      0.96937       0.99605  
    cl_mt_pol_k_p5v7           9          4.6046    2.2809    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.49535      0     22.017    -3.2762e-32      0        1      -3.2762e-32    5.7496e-11    0.98692    1.3333    1.8236    2.1904    2.4475    2.7766    2.9549    3.5273    4.1391     4.931    5.7845    6.2473    6.6678    7.6612     8.885    12.117    16.955         3.9073              0.9112              7.1327             0.90899              0.83215               0.26893                5.2024                  1                   1.0982               0.95183          0.00020352    0.0025729    0.016625    0.038974     0.066073     0.092473      0.12332      0.20132      0.32064      0.46609      0.58164      0.64656      0.71705       0.7934      0.88286      0.96934       0.99605  
    cl_mt_pol_k_p5v8          10           4.604    2.2806    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.49534      0     22.017     2.6497e-34      0        1       2.6497e-34    5.7458e-11    0.98692    1.3351    1.8119    2.1904    2.4475    2.7766    2.9634    3.5215    4.1391    4.9275    5.7845    6.2524    6.6678    7.6612    8.8301    12.117    16.955         3.9131             0.91041              7.1374             0.90839              0.83844                0.2697                 5.201                  1                    1.098               0.95164          0.00020576    0.0025223     0.01658    0.038932     0.065307     0.092908      0.12538      0.19279      0.32146      0.46802      0.58226       0.6463      0.71612      0.79327      0.88144      0.96943       0.99605  
    cl_mt_pol_k_p5v9          11          4.6052    2.2797    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.49503      0     22.017    -2.4573e-34      0        1      -2.4573e-34    5.7206e-11    0.98692    1.3369    1.8099    2.1938    2.4475    2.7797    2.9617    3.5015    4.1391    4.9275    5.7845    6.2504    6.6678    7.6717    8.8301    12.117    16.955         3.9161             0.91021              7.1379             0.90789              0.84316               0.27031                5.1971                  1                   1.0975               0.95151          0.00020677    0.0026132    0.016567     0.03951     0.064831     0.092198      0.12345      0.19258        0.323      0.46852      0.58286      0.64628      0.71561      0.79312      0.88159      0.96942       0.99605  
    cl_mt_pol_k_p5v10         12           4.603    2.2808    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02        0.4955      0     22.017    -5.5147e-33      0        1      -5.5147e-33    5.7121e-11     0.9718    1.3369    1.8065    2.1904    2.4475    2.7808    2.9565    3.5215    4.1391    4.9275    5.7845    6.2524    6.6678    7.6667    8.8301    12.117    16.955          3.932             0.90915              7.1541             0.90696              0.85417               0.27159                 5.202                  1                   1.0979               0.95111          0.00018976    0.0025667    0.016607    0.038633     0.064914     0.091874      0.12308      0.19275      0.32323      0.46935      0.58231      0.64641      0.71638      0.79309      0.88142       0.9694       0.99606  
    cl_mt_pol_k_p5v11         13          4.6005    2.2776    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.49509      0     22.017    -1.1488e-32      0        1      -1.1488e-32    5.6471e-11     0.9598    1.3369    1.7996    2.1938    2.4475    2.7808    2.9549    3.4914    4.1391    4.9275    5.7845    6.2387    6.6603    7.6612    8.8301    12.117    16.953         3.9281             0.90817              7.1377             0.90622              0.85407               0.27105                5.1877                  1                   1.0959               0.95055          0.00018896    0.0025065    0.016567    0.039076     0.064689     0.092123      0.12341      0.19259      0.32252      0.47141       0.5842      0.64695       0.7159      0.79306      0.88143      0.96956       0.99606  
    cl_mt_pol_k_p5v12         14          4.6015    2.2774    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.49493      0     22.017     7.0899e-34      0        1       7.0899e-34      5.64e-11    0.92301    1.3369    1.8065    2.1938    2.4475    2.7815    2.9514    3.4913    4.1391    4.9275    5.7845    6.2387    6.6603    7.6612    8.8301    12.117    16.953         3.9367             0.90696              7.1425             0.90503              0.86016               0.27089                5.1866                  1                   1.0957               0.94999          0.00018711     0.002537    0.016583    0.038583     0.065931     0.092063      0.12336      0.19345      0.32157       0.4699      0.58453      0.64728       0.7157      0.79305      0.88172      0.96959       0.99606  
    cl_mt_pol_k_p5v13         15          4.6019    2.2771    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.49481      0     22.017    -5.7036e-33      0        1      -5.7036e-33     5.632e-11    0.92271    1.3369    1.8099    2.1973    2.4475    2.7824    2.9496    3.4913    4.1391    4.9275    5.7845    6.2387    6.6678    7.6612    8.8301    12.117    16.953         3.9489             0.90532              7.1527             0.90364              0.87234               0.27197                 5.185                  1                   1.0953               0.94938           0.0001943    0.0025402    0.016543    0.038854     0.065486     0.092101      0.12352      0.19334      0.32217      0.46903       0.5841      0.64662      0.71705      0.79318      0.88202      0.96956       0.99607  
    cl_mt_pol_k_p5v14         16          4.6018    2.2751    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02        0.4944      0     22.017    -6.8182e-33      0        1      -6.8182e-33     5.609e-11    0.92271    1.3369    1.8236    2.2024    2.4475    2.7815    2.9514    3.4913    4.1391    4.9275    5.7845    6.2387    6.6678    7.6667    8.8301    12.117    16.953         3.9538             0.90395              7.1488             0.90205              0.87895                0.2716                5.1762                  1                   1.0937               0.94872          0.00018984    0.0025103    0.016647    0.038615     0.064892      0.09216      0.12364      0.19373      0.32329      0.46851      0.58541       0.6465      0.71662      0.79313      0.88214      0.96971       0.99608  
    cl_mt_pol_k_p5v15         17          4.6045    2.2747    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02         0.494      0     22.017     2.8213e-33      0        1       2.8213e-33    5.6007e-11    0.92271    1.3369    1.8253    2.2144    2.4475    2.7797    2.9634    3.4913    4.1391    4.9275    5.7845    6.2387    6.6678      7.67    8.8301    12.117    16.952         3.9661             0.90245              7.1578             0.90037              0.89049               0.27207                5.1741                  1                   1.0933               0.94808          0.00018961    0.0024821    0.016692    0.038979     0.064243     0.092298      0.12553      0.19417      0.32275       0.4676        0.586       0.6466      0.71653      0.79321      0.88186      0.96969       0.99606  

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    ________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p5v1           3          6.4272    3.4082     'cl_mt_coh'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.53028     -4.67    57.258    0.00030333    0.0040143    0.99568     5.9778e-34    4.2515e-13    -1.1571     0.74996    2.2555    2.8577    3.3596     3.761    4.1625    4.7647    5.8688    6.9728    7.9765    8.6791    9.5824    10.787    12.794    17.712    24.537         5.7421             0.90414              11.616                1                   2.891                 0.627                7.0524               0.90569                1.6724               0.97112           -0.0002641    -5.8946e-05     0.012156     0.03101     0.058006     0.088129      0.12296      0.18318      0.31622       0.4598      0.57209      0.63954      0.71401      0.79094      0.87709      0.96781       0.99586  
    cl_mt_coh_p5v2           4          6.4529    3.4149     'cl_mt_coh'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02        0.5292     -4.67    57.258    0.00026859    0.0038547    0.99588     -4.595e-34    4.3483e-13    -1.0567     0.85033    2.2555    2.9581    3.3596     3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7471             0.90439              11.661                1                  2.9048               0.63361                7.0805               0.90866                1.6761               0.97141           -0.0002765     0.00011373      0.01184    0.034769     0.056919     0.087219      0.12204      0.19213      0.31431      0.45672      0.57715      0.64456      0.71135      0.78875      0.87833      0.96841       0.99592  
    cl_mt_coh_p5v3           5          6.4585    3.4189     'cl_mt_coh'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.52937     -4.67    57.258    0.00027173    0.0040142    0.99571     -2.233e-33    4.3638e-13    -1.1571     0.74996    2.2555    2.9581    3.3596     3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7597             0.90453              11.689                1                  2.9174               0.63643                7.0928               0.90952                1.6787               0.97164          -0.00027093    -7.6258e-05     0.011744    0.034475     0.056493     0.086901      0.12175      0.19163      0.31363      0.45563        0.576      0.64365      0.71067      0.78816      0.87801      0.96832       0.99591  
    cl_mt_coh_p5v4           6          6.4551    3.4231     'cl_mt_coh'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.53029     -4.67    57.258    0.00027702    0.0041301    0.99559     8.3963e-33    4.3667e-13    -1.1571     0.74996    2.2555    2.8577    3.3596     3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638          5.778             0.90462              11.717                1                   2.935               0.63902                7.1012               0.90984                1.6813               0.97184           -0.0002814    -7.9969e-05     0.011857    0.030492      0.05692     0.086918      0.12165      0.19124      0.31333      0.45545      0.57581      0.64341      0.71038      0.78796      0.87785      0.96829        0.9959  
    cl_mt_coh_p5v5           7          6.4528     3.426     'cl_mt_coh'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.53094     -4.67    57.258    0.00028382    0.0042004    0.99552     6.4763e-34    4.3687e-13    -1.1571     0.74996    2.2555    2.8577    3.3596     3.761    4.1625    4.8651    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.7898             0.90473              11.738                1                  2.9485               0.64051                7.1062               0.90985                1.6831               0.97199          -0.00028963    -8.7888e-05     0.011971    0.030855     0.057141     0.086982      0.12169      0.19124      0.31323      0.45507      0.57544       0.6432      0.71022      0.78783      0.87779      0.96826        0.9959  
    cl_mt_coh_p5v6           8          6.4457    3.4343     'cl_mt_coh'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02        0.5328     -4.67    57.258    0.00031684     0.004445    0.99524      1.486e-33    4.3707e-13    -1.2574     0.74996    2.1551    2.8577    3.3596     3.761    4.1625    4.7647    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.8262             0.90497              11.794                1                  2.9828               0.64314                 7.123               0.90944                1.6884               0.97227          -0.00027869    -8.9951e-05     0.010353    0.031345     0.057458     0.087031      0.12155      0.18069      0.31282      0.45435      0.57489      0.64265      0.70979      0.78753      0.87762      0.96822       0.99589  
    cl_mt_coh_p5v7           9          6.4378    3.4403     'cl_mt_coh'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.53439     -4.67    57.258     0.0003259    0.0047085    0.99497    -3.0851e-32    4.3689e-13    -1.2574     0.64959    2.1551    2.8577    3.3596     3.761    4.1625    4.7647    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638          5.854             0.90511              11.836                1                  3.0107               0.64508                7.1327               0.90899                1.6922                0.9724          -0.00029949    -0.00024096     0.010557    0.031975     0.057657     0.087071      0.12159      0.18059      0.31238       0.4542      0.57475      0.64251       0.7097      0.78743      0.87755       0.9682       0.99589  
    cl_mt_coh_p5v8          10          6.4299    3.4453     'cl_mt_coh'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.53583     -4.67    57.258    0.00034212    0.0051038    0.99455     2.1264e-34    4.3659e-13    -1.3578     0.54922    2.1551    2.8577    3.3596    3.6607    4.0621    4.7647    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.638         5.8778              0.9052               11.87                1                  3.0377                0.6468                7.1374               0.90839                1.6951               0.97244          -0.00029706    -0.00039644     0.010612    0.032102     0.057804     0.080359      0.11085      0.18101      0.31244      0.45424      0.57476      0.64249      0.70967      0.78739      0.87753      0.96818       0.99589  
    cl_mt_coh_p5v9          11          6.4233    3.4487     'cl_mt_coh'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02        0.5369     -4.67    57.258    0.00035295    0.0052481     0.9944    -2.5085e-34    4.3474e-13    -1.3578     0.54922    2.1551    2.7573    3.2592    3.6607    4.0621    4.7647    5.8688    6.9728    8.0769    8.7795    9.5824    10.787    12.895    17.813    24.537         5.8925             0.90535              11.893                1                  3.0586                0.6482                7.1379               0.90789                1.6969               0.97247          -0.00030852    -0.00041261     0.010764    0.028573     0.052252     0.080566      0.11106      0.18107      0.31251       0.4543      0.57479      0.64251      0.70962      0.78735       0.8775       0.9682       0.99577  
    cl_mt_coh_p5v10         12          6.4075    3.4585     'cl_mt_coh'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.53975     -4.67    57.258    0.00036996    0.0057176    0.99391    -4.5877e-33    4.3409e-13    -1.4582     0.44885    2.0548    2.7573    3.2592    3.6607    4.0621    4.7647    5.8688    6.9728    8.0769    8.6791    9.5824    10.787    12.895    17.813    24.537         5.9386             0.90552              11.961                1                  3.1042               0.65092                7.1541               0.90696                1.7027               0.97271          -0.00030487    -0.00054751    0.0093485    0.029449     0.052996     0.080808      0.11145      0.18131      0.31263       0.4543      0.57474      0.63457      0.70954      0.78724      0.87742      0.96818       0.99576  
    cl_mt_coh_p5v11         13          6.3934    3.4581     'cl_mt_coh'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.54088     -4.67    57.258    0.00038994    0.0060806    0.99353    -9.6403e-33    4.2922e-13    -1.4582     0.44885    2.0548    2.7573    3.2592    3.6607    4.0621    4.7647    5.7684    6.9728    8.0769    8.6791    9.5824    10.787    12.895    17.813    24.537         5.9466             0.90553              11.958                1                  3.1183                0.6518                7.1377               0.90622                1.7024               0.97256          -0.00033773    -0.00059907    0.0094605    0.029523     0.053091     0.080994      0.11177      0.18194      0.30177      0.45589      0.57622      0.63576      0.71059      0.78794      0.87802      0.96825        0.9958  
    cl_mt_coh_p5v12         14           6.381    3.4653     'cl_mt_coh'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.54307     -4.67    57.258    0.00042432    0.0066543    0.99292     6.4761e-34    4.2869e-13    -1.5585     0.34848    1.9544    2.7573    3.2592    3.6607    4.0621    4.7647    5.7684    6.9728    8.0769    8.6791    9.5824    10.787    12.794    17.813    24.537         5.9819             0.90571              12.008                1                   3.159               0.65382                7.1425               0.90503                 1.707               0.97266          -0.00033543    -0.00074318    0.0080479    0.029549      0.05313     0.081071      0.11197      0.18233      0.30183      0.45595      0.57631      0.63587      0.71084      0.78816       0.8755      0.96824        0.9958  
    cl_mt_coh_p5v13         15          6.3647    3.4762     'cl_mt_coh'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.54616     -4.67    57.258    0.00044584    0.0074245    0.99213    -5.2999e-33    4.2809e-13    -1.6589     0.24811    1.9544     2.657    3.2592    3.6607    4.0621    4.7647    5.7684    6.9728    7.9765    8.6791    9.5824    10.787    12.794    17.813    24.537         6.0324             0.90593              12.084                1                  3.2177               0.65715                7.1527               0.90364                1.7133               0.97276          -0.00033589    -0.00090144    0.0083227     0.02635     0.053382     0.081259      0.11226      0.18296      0.30181      0.45589       0.5675      0.63571      0.71072      0.78804      0.87541       0.9682       0.99579  
    cl_mt_coh_p5v14         16          6.3464    3.4834     'cl_mt_coh'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.54887     -4.67    57.258    0.00045805    0.0081139    0.99143    -5.9398e-33    4.2636e-13    -1.6589     0.14774     1.854     2.657    3.2592    3.6607    4.0621    4.7647    5.7684    6.9728    7.9765    8.6791    9.5824    10.787    12.794    17.813    24.537         6.0676             0.90606              12.134                1                  3.2684               0.65963                7.1488               0.90205                1.7165               0.97253          -0.00037848     -0.0010394    0.0070855    0.026504     0.053659     0.081545      0.11267      0.18363      0.30241      0.45684      0.56825      0.63633      0.71113      0.78823      0.87549      0.96823        0.9958  
    cl_mt_coh_p5v15         17          6.3297     3.495     'cl_mt_coh'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.55215     -4.67    57.258    0.00047796     0.008991    0.99053      2.549e-33    4.2572e-13    -1.7593    0.047372     1.854     2.657    3.1588    3.5603    4.0621    4.6644    5.7684    6.9728    7.9765    8.6791    9.5824    10.787    12.794    17.712    24.537         6.1203             0.90637              12.215                1                  3.3337               0.66293                7.1578               0.90037                1.7232               0.97257           -0.0003751     -0.0011919    0.0073146    0.026888     0.047981     0.074692      0.11278      0.17337      0.30228      0.45662      0.56804      0.63608        0.711      0.78811      0.87541      0.96731       0.99579  

Larger Grid Simulation

it_size_type = 3;
ar_it_plot_sets = [1,2,101,151, 3,4,102,152, 5,6,103,153, 51,52,53,54, 201,205,207,209, 104,105,106,10];
bl_simu_cross = 'c';

% Simulate along parameters
[tb_outcomes, ~ ] = ff_az_test_analyze( ...
    ar_it_plot_sets, bl_simu_cross, it_size_type, cl_st_param_keys, ...
    param_map, support_map, param_tstar_map);

close all
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: SUPPORT_MAP
----------------------------------------
  Map with properties:

        Count: 51
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 34 ; key = st_img_name_main ; val = _default
pos = 35 ; key = st_img_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/img/
pos = 36 ; key = st_img_prefix ; val = 
pos = 37 ; key = st_img_suffix ; val = _p9.png
pos = 38 ; key = st_mat_name_main ; val = _default
pos = 39 ; key = st_mat_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/mat/
pos = 40 ; key = st_mat_prefix ; val = 
pos = 41 ; key = st_mat_suffix ; val = _p9
pos = 42 ; key = st_mat_test_name_main ; val = r
pos = 43 ; key = st_mat_test_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//test/ff_ipwkbzr_ds_vecsv/mat/
pos = 44 ; key = st_mat_test_prefix ; val = nbc_
pos = 45 ; key = st_mat_test_suffix ; val = _g1011121314_cc_t3l75
pos = 46 ; key = st_matimg_path_root ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr/
pos = 47 ; key = st_profile_name_main ; val = _default
pos = 48 ; key = st_profile_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/profile/
pos = 49 ; key = st_profile_prefix ; val = 
pos = 50 ; key = st_profile_suffix ; val = _p9
pos = 51 ; key = st_title_prefix ; val = 
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                    i     idx    value
                                    __    ___    _____

    bl_display                       1     1        0 
    bl_display_defparam              2     2        0 
    bl_display_dist                  3     3        0 
    bl_display_evf                   4     4        0 
    bl_display_final                 5     5        0 
    bl_display_final_dist            6     6        1 
    bl_display_final_dist_detail     7     7        0 
    bl_display_funcgrids             8     8        0 
    bl_display_graph_stats           9     9        0 
    bl_display_simu_stats           10    10        1 
    bl_graph                        11    11        0 
    bl_graph_coh_t_coh              12    12        0 
    bl_graph_evf                    13    13        0 
    bl_graph_funcgrids              14    14        0 
    bl_graph_funcgrids_detail       15    15        0 
    bl_graph_onebyones              16    16        1 
    bl_graph_pol_lvl                17    17        0 
    bl_graph_pol_pct                18    18        0 
    bl_graph_val                    19    19        0 
    bl_img_save                     20    20        0 
    bl_mat                          21    21        0 
    bl_mat_test                     22    22        1 
    bl_post                         23    23        1 
    bl_profile                      24    24        0 
    bl_profile_dist                 25    25        0 
    bl_replacefile                  26    26        0 
    bl_time                         27    27        1 
    bl_timer                        28    28        1 
    it_display_every                29    29       20 
    it_display_final_colmax         30    30       12 
    it_display_final_rowmax         31    31      100 
    it_display_summmat_colmax       32    32        7 
    it_display_summmat_rowmax       33    33        7 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_MAP
----------------------------------------
  Map with properties:

        Count: 55
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 4 ; key = cl_st_param_keys ; val = fl_z_r_borr_poiss_mean
pos = 51 ; key = st_analytical_stationary_type ; val = eigenvector
pos = 52 ; key = st_model ; val = ipwkbzr
pos = 53 ; key = st_v_coh_z_interp_method ; val = method_cell
pos = 54 ; key = st_z_r_borr_drv_ele_type ; val = unif
pos = 55 ; key = st_z_r_borr_drv_prb_type ; val = poiss
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         i    idx    rowN    colN    mean     std      min    max
                         _    ___    ____    ____    ____    ______    ___    ___

    ar_param_keys_idx    1     1      1       5       12     1.5811    10     14 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                               i     idx     value 
                               __    ___    _______

    bl_default                  1     2           0
    bl_loglin                   2     3           0
    fl_Amean                    3     5           1
    fl_a_max                    4     6          50
    fl_a_min                    5     7           0
    fl_alpha                    6     8        0.36
    fl_b_bd                     7     9         -20
    fl_beta                     8    10        0.94
    fl_c_min                    9    11        0.02
    fl_coh_interp_grid_gap     10    12        0.07
    fl_crra                    11    13         1.5
    fl_default_wprime          12    14           0
    fl_delta                   13    15        0.08
    fl_k_max                   14    16          70
    fl_k_min                   15    17           0
    fl_loglin_threshold        16    18           1
    fl_nan_replace             17    19       -9999
    fl_r_save                  18    20       0.025
    fl_tol_dist                19    21       1e-05
    fl_tol_pol                 20    22       1e-05
    fl_tol_val                 21    23       1e-05
    fl_w                       22    24     0.44365
    fl_w_interp_grid_gap       23    25        0.07
    fl_w_max                   24    26          50
    fl_w_min                   25    27         -20
    fl_z_mu                    26    28           0
    fl_z_r_borr_max            27    29       0.095
    fl_z_r_borr_min            28    30       0.025
    fl_z_r_borr_n              29    31           7
    fl_z_r_borr_poiss_mean     30    32          20
    fl_z_rho                   31    33         0.8
    fl_z_sig                   32    34         0.2
    fl_z_wage_mu               33    35           0
    fl_z_wage_rho              34    36         0.8
    fl_z_wage_sig              35    37         0.2
    it_a_n                     36    38         750
    it_ak_perc_n               37    39          85
    it_c_interp_grid_gap       38    40      0.0001
    it_maxiter_dist            39    41        1000
    it_maxiter_val             40    42         250
    it_size_type               41    43           3
    it_st_simu_type_g_seed     42    44         123
    it_st_simu_type_g_simun    43    45          20
    it_tol_pol_nochange        44    46          25
    it_trans_power_dist        45    47        1000
    it_w_perc_n                46    48          85
    it_z_n                     47    49          77
    it_z_wage_n                48    50          11

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_TSTAR_MAP
----------------------------------------
  Map with properties:

        Count: 19
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                              i     idx    rowN    colN     mean        std        min     max 
                              __    ___    ____    ____    ______    _________    _____    ____

    fl_a_max                   1     1      1        5         65       11.859       50      80
    fl_alpha                   2     2      1        5        0.4     0.079057      0.3     0.5
    fl_b_bd                    3     3      1       15      -12.5       4.7916      -20      -5
    fl_beta                    4     4      1       15       0.92     0.031944     0.87    0.97
    fl_c_min                   5     5      1       15     0.0155    0.0092637    0.001    0.03
    fl_crra                    6     6      1       15          3       1.2778        1       5
    fl_delta                   7     7      1        5       0.08     0.047434     0.02    0.14
    fl_r_borr                  8     8      1        5      0.125     0.098821        0    0.25
    fl_r_save                  9     9      1        5      0.025     0.011859     0.01    0.04
    fl_w                      10    10      1        5       1.25      0.11859      1.1     1.4
    fl_z_r_borr_max           11    11      1       15     0.1225     0.017569    0.095    0.15
    fl_z_r_borr_n             12    12      1       15         10       4.4721        3      17
    fl_z_r_borr_poiss_mean    13    13      1       15          6       2.5555        2      10
    fl_z_rho                  14    14      1        5      0.495      0.39133        0    0.99
    fl_z_sig                  15    15      1        5      0.255      0.19369     0.01     0.5
    fl_z_wage_rho             16    16      1        5      0.495      0.39133        0    0.99
    fl_z_wage_sig             17    17      1        5      0.255      0.19369     0.01     0.5
    it_a_n                    18    18      1        5       1300       948.68      100    2500
    it_z_n                    19    19      1        5         15       7.9057        5      25

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY       p0_1         p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    _____    __________    _______    ___________    __________    _________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p1v1                  2            6.7749    2.2253     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            7           0.32846     -9999    16.676      0       0.0010527    0.99895     2.6479e-33    1.5679e-13    -0.028434    1.5388    3.0489     3.873    4.4352    4.8798    5.2565    5.9228     6.806    7.6801     8.325    8.6965    9.1182    9.6353    10.382      11.7    12.983         4.9519                1                 7.7769             0.90645               2.2491               0.50036                4.4605               0.88006                1.0673               0.96899          -7.7589e-05      0.001252    0.015728    0.041637     0.072364      0.10676      0.14421      0.22695      0.36814      0.52823      0.64626      0.70927      0.77481      0.84383      0.91749      0.98188       0.99803  
    cl_mt_val_p1v2             2.5714            6.8208    2.2922     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            7           0.33606     -9999     16.67      0       0.0019073    0.99809    -1.8887e-33    2.3245e-13     -0.42744    1.3013    2.9271    3.8093    4.4003    4.8717     5.283    5.9746    6.8961    7.7899    8.4384    8.8029    9.2175    9.7297    10.461     11.76    13.022         5.2541                1                 8.2555             0.91067               2.6261               0.53216                4.5266               0.86613                1.1027               0.96468          -0.00014341    0.00077381    0.014243    0.039349     0.069321      0.10335      0.14085      0.22352      0.36499      0.52655      0.64532      0.70857      0.77447      0.84386      0.91757      0.98194       0.99803  
    cl_mt_val_p1v3             3.1429            6.9194    2.3235     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            7           0.33579     -9999    16.665      0       0.0026277    0.99737    -2.4606e-34    3.0936e-13     -0.73147    1.1428    2.8967    3.8369    4.4708    4.9672    5.3883     6.111    7.0429    7.9289    8.5574    8.9242     9.322    9.8193    10.534    11.814     13.07         5.3985                1                 8.4749             0.91346                2.823               0.55071                4.5321                 0.855                1.1198               0.95939          -0.00019217     0.0004574    0.013287    0.037871      0.06812      0.10217      0.13985      0.22306      0.36586      0.52786      0.64715      0.71008      0.77607      0.84508       0.9184      0.98211       0.99806  
    cl_mt_val_p1v4             3.7143            7.0589    2.3165     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            7           0.32816     -9999    16.662      0       0.0030553    0.99694     4.5291e-35     3.815e-13     -0.90986    1.1175    2.9845    3.9755    4.6292    5.1485    5.5822    6.3038    7.2167    8.0794    8.6886    9.0293    9.4113    9.9037    10.605    11.867    13.109          5.366                1                 8.4336              0.9148               2.8283               0.55744                 4.489               0.84872                1.1164               0.95414          -0.00022343    0.00031266    0.013132    0.038059     0.068745      0.10332      0.14149       0.2257      0.36969      0.53206      0.65093      0.71364      0.77869      0.84719      0.91954      0.98243       0.99809  
    cl_mt_val_p1v5             4.2857            7.1998    2.2802     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            7           0.31671     -9999     16.66      0       0.0030749    0.99693      1.375e-33    4.8401e-13     -0.98566    1.1905    3.1445    4.1757    4.8479    5.3556    5.7797    6.4949    7.3693    8.1958     8.783    9.1161    9.4933    9.9666    10.655    11.903    13.132         5.1995                1                 8.1816             0.91483               2.6761               0.55351                4.4081               0.84769                1.0974               0.94978          -0.00023779    0.00031801     0.01353    0.039302     0.070854      0.10622      0.14496      0.23062      0.37513      0.53756      0.65529      0.71769      0.78186      0.84973      0.92081      0.98275       0.99812  
    cl_mt_val_p1v6             4.8571            7.3228    2.2294     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            7           0.30444     -9999    16.659      0       0.0028457    0.99715     1.5255e-33    5.1483e-13     -0.97782    1.3212    3.3558    4.3952    5.0511    5.5544    5.9717    6.6466     7.489    8.2886    8.8554    9.1819    9.5612    10.021    10.696    11.932    13.152           4.97                1                 7.8358              0.9139               2.4476               0.54208                4.3173               0.85056                 1.071               0.94726          -0.00024064     0.0004152    0.014444    0.041233     0.073686      0.11012      0.14937      0.23565      0.38069      0.54242      0.65916      0.72094      0.78541      0.85142       0.9219      0.98296       0.99815  
    cl_mt_val_p1v7             5.4286              7.42    2.1795     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            7           0.29374     -9999    16.657      0       0.0025761    0.99742     1.3516e-34    5.6992e-13     -0.92743    1.4811    3.5646    4.5885    5.2291    5.7136    6.1086    6.7661    7.5771    8.3548    8.9145    9.2189    9.5971    10.052    10.722    11.949    13.174         4.7504                1                 7.5103             0.91266                2.224               0.52869                4.2407               0.85579                1.0456               0.94594           -0.0002365    0.00056287    0.015478    0.043344      0.07662      0.11339      0.15351       0.2402      0.38553      0.54628       0.6628      0.72379      0.78708      0.85292      0.92273      0.98316       0.99817  
    cl_mt_val_p1v8                  6            7.4988    2.1326     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            7           0.28439     -9999    16.656      0       0.0023203    0.99768     9.1028e-35    5.9062e-13     -0.83024    1.6597    3.7513    4.7458    5.3731    5.8373    6.2146    6.8537    7.6396       8.4    8.9533    9.2578    9.6172    10.072     10.75    11.963    13.183         4.5478                1                 7.2149             0.91138               2.0212               0.51479                4.1715               0.86178                1.0222               0.94576           -0.0002291    0.00074383    0.016481    0.045208      0.07916      0.11658      0.15672      0.24404      0.39155      0.54993       0.6655      0.72574      0.78872      0.85436      0.92351      0.98332       0.99821  
    cl_mt_val_p1v9             6.5714            7.5686    2.0866     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            7           0.27569     -9999    16.657      0       0.0019668    0.99803     1.4937e-33    6.0702e-13     -0.70124    1.8524    3.9383    4.8975    5.5029    5.9498    6.3158    6.9245    7.6953    8.4292    8.9797    9.2926    9.6413    10.095    10.765    11.982    13.193          4.354                1                 6.9387             0.91004               1.8346               0.49956                4.1048               0.86809               0.99923               0.94628          -0.00021438    0.00095482    0.017593    0.047179     0.081624      0.11949      0.16019      0.24794      0.39318      0.55242      0.66765      0.72772      0.79016       0.8553      0.92407      0.98351       0.99822  
    cl_mt_val_p1v10            7.1429            7.6317    2.0397     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            7           0.26727     -9999    16.656      0       0.0016936    0.99831     1.8546e-33    6.2069e-13     -0.54257    2.0647    4.1216    5.0453    5.6104     6.051      6.39    6.9878    7.7506    8.4668    8.9999    9.3095    9.6627    10.118    10.782    11.992    13.198         4.1604                1                 6.6683             0.90874               1.6607               0.48308                4.0315               0.87423               0.97616               0.94721          -0.00019552     0.0012171    0.018813    0.049073     0.084347      0.12278      0.16342      0.25109      0.39595      0.55537      0.66965      0.73067      0.79162      0.85643      0.92456      0.98361       0.99822  
    cl_mt_val_p1v11            7.7143            7.6799     2.002     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            7           0.26069     -9999    16.656      0       0.0014439    0.99856     5.5552e-35    6.3555e-13     -0.39859    2.2431      4.27    5.1606     5.717    6.1143    6.4632    7.0331    7.7787    8.4911    9.0222    9.3252    9.6917    10.129    10.792    11.998    13.205         4.0082                1                 6.4576             0.90761               1.5225               0.46819                3.9772               0.87967               0.95794               0.94848          -0.00017872     0.0014244    0.019768    0.050725     0.086522      0.12488      0.16634      0.25381      0.39962      0.55709      0.67139      0.73082      0.79306      0.85747      0.92505      0.98368       0.99824  
    cl_mt_val_p1v12            8.2857            7.7095    1.9752     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            7            0.2562     -9999    16.655      0       0.0012758    0.99872     4.5868e-35    6.4728e-13     -0.23884    2.4052     4.366    5.2351    5.7677    6.1619    6.4971    7.0654    7.7935    8.5074    9.0346    9.3372    9.6904    10.135    10.795    12.002    13.206         3.9013                1                 6.3051             0.90676               1.4208                0.4566                 3.939               0.88415               0.94519               0.94958          -0.00016306     0.0016142    0.020543     0.05191     0.087788      0.12653      0.16788      0.25581      0.40142      0.55841      0.67244      0.73172       0.7939      0.85764      0.92537      0.98373       0.99825  
    cl_mt_val_p1v13            8.8571             7.735    1.9526     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            7           0.25243     -9999    16.654      0       0.0011237    0.99888     3.1027e-33     6.533e-13     -0.11912    2.5392    4.4521    5.2882     5.799     6.198    6.5242    7.0796    7.8023    8.5243    9.0436    9.3449    9.7078    10.142    10.805    12.007    13.207         3.8126                1                 6.1816             0.90607               1.3375                0.4462                3.9095               0.88816                0.9346               0.95072          -0.00014696     0.0018075    0.021151    0.052894     0.088868      0.12798      0.16902      0.25693      0.40159      0.55968      0.67293      0.73261      0.79438      0.85845      0.92558      0.98379       0.99825  
    cl_mt_val_p1v14            9.4286            7.7546    1.9369     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            7           0.24977     -9999    16.656      0        0.001016    0.99898    -8.3118e-34    6.5756e-13    -0.012384    2.6558    4.5029     5.332    5.8349    6.2221    6.5548     7.097    7.8187    8.5325    9.0562    9.3587    9.7085    10.152     10.81    12.013    13.211         3.7516                1                 6.0975             0.90561               1.2779                0.4387                3.8922               0.89138               0.92743                0.9515          -0.00013334     0.0019355    0.021727    0.053625      0.08991       0.1293      0.17013      0.25814      0.40334      0.56033      0.67535      0.73285      0.79429      0.85838       0.9259      0.98382       0.99825  
    cl_mt_val_p1v15                10            7.7658    1.9251     'cl_mt_val'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            7            0.2479     -9999    16.655      0      0.00091912    0.99908     8.8812e-33    6.6108e-13     0.098216    2.7306    4.5444    5.3392    5.8386    6.2322    6.5562    7.1096    7.8191    8.5313     9.054    9.3598    9.7067    10.151    10.808    12.014    13.215         3.7061                1                 6.0337             0.90519               1.2322               0.43284                3.8795                 0.894                 0.922               0.95227          -0.00012218     0.0020518    0.022086    0.054166     0.090304      0.12944      0.17063      0.25995      0.40303      0.56073      0.67451      0.73321      0.79465      0.85889      0.92569      0.98384       0.99826  

                         fl_z_r_borr_poiss_mean     mean       sd       variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1         p5        p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    _______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    ___________    _______    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p1v1                  2            1.6738    0.49499    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            7           0.29573     0.02    7.3724      0        0        1       2.6479e-33     6.3325e-35     0.6478    0.80243    0.98047    1.0958    1.1836    1.2505     1.324    1.4419    1.6149    1.8046    1.9526    2.0462    2.1624    2.3321    2.6079    3.1345    3.7213         1.0673             0.96899              1.8539             0.97142              0.58527               0.58536                1.0236               0.90792               0.24502                  1             0.00040381     0.004664     0.02607    0.057194     0.092318      0.12759      0.16808      0.25056      0.38619      0.53982      0.65145      0.71305      0.77254      0.83966      0.91302      0.97977       0.99769  
    cl_mt_pol_c_p1v2             2.5714            1.6788     0.4987    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            7           0.29706     0.02    7.3724      0        0        1      -1.8887e-33     8.6906e-34    0.63025     0.7899    0.97797    1.1033    1.1911    1.2638     1.329    1.4494    1.6174    1.7929    1.9467    2.0462    2.1766    2.3404    2.6096    3.1512    3.7271         1.1027             0.96468              1.9199             0.97345              0.65063               0.60599                1.0206               0.89759                0.2487                  1              0.0003567    0.0042947    0.025808    0.058165     0.091696      0.12863      0.16615      0.24983      0.38622      0.53861      0.64934      0.70907      0.77197      0.83901      0.91243      0.97988       0.99766  
    cl_mt_pol_c_p1v3             3.1429            1.6904    0.50236    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            7           0.29719     0.02    7.3724      0        0        1      -2.4606e-34    -1.3495e-33     0.6269     0.7899    0.98298    1.1134    1.2037    1.2789    1.3424    1.4578    1.6182    1.8021    1.9559    2.0713    2.1942    2.3755    2.6447    3.1696    3.7447         1.1198             0.95939              1.9545             0.97437              0.67847               0.61217                1.0237               0.89324               0.25236                  1              0.0003642    0.0042934    0.025736    0.056957      0.09216      0.12844      0.16753      0.24988      0.38704      0.53873      0.64904       0.7094      0.77267      0.83955      0.91258      0.97979       0.99766  
    cl_mt_pol_c_p1v4             3.7143             1.707    0.50509    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            7           0.29589     0.02    7.3724      0        0        1       4.5291e-35     2.2373e-34     0.6269    0.79993      1.003    1.1368    1.2231    1.2973    1.3608     1.467    1.6249     1.818    1.9935    2.0939    2.2201    2.3989    2.6706    3.1897    3.7698         1.1164             0.95414              1.9587             0.97441              0.67149               0.60698                1.0321               0.89496               0.25511                  1             0.00034475    0.0042228    0.026215    0.057467     0.092274      0.12933      0.16851      0.25121      0.38752      0.54044       0.6507      0.71034      0.77142      0.84037      0.91319      0.97988       0.99769  
    cl_mt_pol_c_p1v5             4.2857            1.7241    0.50671    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            7           0.29391     0.02    7.3724      0        0        1        1.375e-33     5.1677e-35    0.63025    0.81497     1.0356    1.1585    1.2463    1.3106    1.3692    1.4745    1.6408    1.8356    2.0128    2.1064    2.2493    2.4198     2.684    3.2056    3.7815         1.0974             0.94978              1.9358             0.97407              0.63805               0.59388                 1.041               0.90086               0.25675                  1             0.00037565    0.0042612    0.026405     0.05918      0.09345      0.13046       0.1707      0.25169      0.38697      0.53744      0.65305      0.70982      0.77195      0.83984      0.91296      0.98004        0.9977  
    cl_mt_pol_c_p1v6             4.8571            1.7391    0.50713    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            7            0.2916     0.02    7.3724      0        0        1       1.5255e-33     -6.462e-34    0.63192    0.83587     1.0532    1.1769    1.2546    1.3215    1.3792    1.4845      1.65    1.8615    2.0186    2.1315    2.2702    2.4341    2.7032    3.2164    3.7923          1.071             0.94726              1.8993              0.9738               0.5939               0.57823                1.0482               0.90785               0.25718                  1               0.000382    0.0043458    0.026759    0.059814     0.094108      0.13132      0.17159      0.25291      0.38802       0.5382      0.65004      0.70926      0.77531      0.84054      0.91396      0.98005       0.99772  
    cl_mt_pol_c_p1v7             5.4286            1.7514    0.50715    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            7           0.28957     0.02    7.3724      0        0        1       1.3516e-34     2.9216e-35    0.64195    0.85677     1.0707    1.1903    1.2647     1.329    1.3809     1.492    1.6617    1.8723    2.0362    2.1565    2.2769    2.4474    2.7149    3.2273    3.8015         1.0456             0.94594              1.8646             0.97378               0.5526               0.56455                1.0548               0.91479                0.2572                  1             0.00034361    0.0044596    0.027032     0.05972     0.095225      0.13318      0.17037      0.25305      0.38991      0.54001      0.65319      0.71021      0.77328      0.84053      0.91412      0.98028       0.99773  
    cl_mt_pol_c_p1v8                  6            1.7614    0.50682    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            7           0.28773     0.02    7.3724      0        0        1       9.1028e-35    -1.1563e-34    0.65449    0.87766     1.0883    1.1936    1.2705     1.334    1.3909    1.5046    1.6734    1.8799    2.0537    2.1691    2.2819    2.4575    2.7208    3.2365    3.8032         1.0222             0.94576              1.8317             0.97361              0.51523               0.55219                1.0596               0.92111               0.25686                  1             0.00035217    0.0044769    0.027502    0.059902     0.095747      0.13288      0.17064      0.25389      0.38832      0.54011       0.6509      0.71104      0.77753      0.84203      0.91401      0.98027       0.99773  
    cl_mt_pol_c_p1v9             6.5714              1.77    0.50606    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            7           0.28591     0.02    7.3724      0        0        1       1.4937e-33     9.1325e-34    0.67287    0.89522        1.1    1.2037    1.2755    1.3366    1.4018    1.5096    1.6968     1.884    2.0688    2.1766    2.2928    2.4666    2.7274    3.2398    3.8116        0.99923             0.94628              1.7998             0.97329              0.48098                  0.54                1.0627               0.92668                0.2561                  1             0.00034472    0.0045462    0.027752    0.060398      0.09602      0.13249      0.17093      0.25574       0.3946      0.54116      0.65192      0.71277      0.77464      0.84181      0.91479      0.98034       0.99776  
    cl_mt_pol_c_p1v10            7.1429             1.778    0.50525    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            7           0.28416     0.02    7.3724      0        0        1       1.8546e-33    -3.4539e-34    0.68959    0.90943     1.1117    1.2078    1.2822    1.3474    1.4043    1.5104    1.7052    1.8958    2.0813    2.1841    2.2936      2.47    2.7383    3.2457    3.8157        0.97616             0.94721               1.768             0.97268              0.44822               0.52637                1.0645               0.93191               0.25528                  1             0.00035503    0.0045959    0.028323    0.060945     0.095838       0.1347      0.17488      0.25376      0.39018      0.54536      0.65321      0.71334      0.77551      0.84223      0.91449      0.98037       0.99777  
    cl_mt_pol_c_p1v11            7.7143            1.7841    0.50447    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            7           0.28275     0.02    7.3724      0        0        1       5.5552e-35    -1.2968e-34    0.69879    0.93032     1.1192     1.217    1.2872    1.3457    1.4043    1.5213    1.7085    1.8958     2.083    2.1841    2.3003    2.4775    2.7383    3.2499    3.8199        0.95794             0.94848              1.7432             0.97232              0.42241               0.51552                1.0663               0.93596               0.25449                  1             0.00035619    0.0046778    0.028231    0.062955     0.098095      0.13324      0.17243      0.25481      0.39084      0.54242      0.65346      0.71289      0.77508      0.84252      0.91553      0.98054       0.99775  
    cl_mt_pol_c_p1v12            8.2857            1.7881    0.50394    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            7           0.28183     0.02    7.3724      0        0        1       4.5868e-35    -2.6326e-34    0.71467    0.93785     1.1234     1.217    1.2872    1.3474    1.4126    1.5321    1.7152    1.9058    2.0939    2.1883    2.3053    2.4809    2.7383    3.2499    3.8216        0.94519             0.94958               1.725             0.97232              0.40376               0.50855                1.0673               0.93892               0.25396                  1             0.00036049    0.0047405    0.029269    0.061779     0.098427       0.1333      0.17203       0.2545         0.39      0.54201      0.65397      0.71489      0.77641      0.84441      0.91544      0.98043       0.99778  
    cl_mt_pol_c_p1v13            8.8571            1.7915    0.50346    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            7           0.28103     0.02    7.3724      0        0        1       3.1027e-33    -3.0181e-33    0.72219    0.94955     1.1234     1.217    1.2839    1.3575     1.416     1.533    1.7177    1.9075    2.0947    2.1883     2.307    2.4809    2.7383    3.2532    3.8216         0.9346             0.95072              1.7103             0.97224              0.38825               0.50233                1.0686                0.9415               0.25347                  1             0.00037431    0.0047817    0.028846    0.062059      0.09661      0.13566      0.17377      0.25522      0.39052      0.54604       0.6545       0.7143      0.77651      0.84349      0.91524      0.98051       0.99777  
    cl_mt_pol_c_p1v14            9.4286            1.7939    0.50323    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            7           0.28053     0.02    7.3724      0        0        1      -8.3118e-34     5.2474e-34    0.73556    0.95289     1.1234     1.217    1.2872    1.3575     1.416     1.543    1.7202    1.9075    2.0947    2.1883    2.3137    2.4809      2.74    3.2549    3.8249        0.92743              0.9515              1.7011             0.97243              0.37728               0.49853                1.0706               0.94367               0.25324                  1             0.00036987    0.0049343    0.028676    0.063069     0.097131      0.13389      0.17209      0.25502      0.39739      0.54405      0.65383      0.71515      0.77566      0.84268      0.91497       0.9805        0.9978  
    cl_mt_pol_c_p1v15                10            1.7955    0.50293    'cl_mt_pol_c'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            7            0.2801     0.02    7.3724      0        0        1       8.8812e-33     1.5632e-33    0.74643    0.96292     1.1276     1.217    1.2914    1.3583    1.4176    1.5447    1.7202    1.9075    2.0972    2.1883    2.3145    2.4809    2.7458    3.2599    3.8249          0.922             0.95227              1.6936             0.97253              0.36895                0.4961                1.0717               0.94528               0.25294                  1             0.00037491    0.0048769    0.028514    0.063418     0.096726      0.13526        0.172      0.25756      0.39681      0.54254      0.65471      0.71507      0.77596      0.84263      0.91498      0.98095       0.99779  

                         fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p1v1                  2            4.6027    2.2776    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            7           0.49484      0     21.864     2.0502e-33      0        1       2.0502e-33    1.0167e-12     1.0231    1.3733    1.8915    2.1916    2.4725    2.7625    3.0083    3.4672     4.119      4.95    5.7824    6.2484    6.7914     7.562    8.7925    12.353    16.953         4.4605             0.88006              7.2783             0.82884               1.0671               0.23195                5.1876                  1                   1.0236               0.90792          0.00020377    0.0026883    0.017201    0.039754     0.065505      0.09432      0.12654      0.19447      0.31738      0.46615      0.57971      0.64432      0.71468      0.79206      0.88141      0.96946       0.99609  
    cl_mt_pol_k_p1v2             2.5714            4.5946    2.2801    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            7           0.49625      0     21.862    -9.2253e-34      0        1      -9.2253e-34    1.3901e-11      1.003    1.3396    1.8846    2.1811    2.4501    2.7599    2.9768    3.4852    4.0498    4.9463    5.7991     6.253     6.777    7.5656     8.792    12.334    16.933         4.5266             0.86613              7.3275             0.81259               1.1082               0.22575                5.1987                  1                   1.0206               0.89759           0.0001965    0.0025932       0.017    0.039273     0.064892     0.093693      0.12419      0.19361      0.31632      0.46412      0.57929      0.64404       0.7145      0.79212      0.88123      0.96949        0.9961  
    cl_mt_pol_k_p1v3             3.1429            4.5869    2.2814    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            7           0.49736      0     21.862    -6.4181e-34      0        1      -6.4181e-34    1.5807e-11    0.99301    1.3332    1.8785    2.1752    2.4431    2.7553     2.959    3.5026    4.0423      4.95    5.7963    6.2523    6.6941     7.562    8.7827    12.353    16.926         4.5321               0.855              7.3362             0.80533               1.1079               0.22013                5.2046                  1                   1.0237               0.89324          0.00019489     0.002642    0.016775    0.038956      0.06441     0.092825      0.12374      0.19273      0.31636      0.46372      0.57905      0.64443      0.71405      0.79205      0.88107       0.9695       0.99608  
    cl_mt_pol_k_p1v4             3.7143            4.5875    2.2833    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            7           0.49772      0     21.862     3.4438e-34      0        1       3.4438e-34    2.2025e-11    0.97351    1.3258    1.8744    2.1729    2.4435    2.7546    2.9673    3.5044    4.0372    4.9442    5.7926    6.2523    6.6258    7.5698    8.7925    12.359    16.946          4.489             0.84872              7.3286             0.80648               1.0831               0.21657                5.2134                  1                   1.0321               0.89496          0.00019308    0.0025378    0.016626    0.038796     0.064201     0.092473      0.12326      0.19269      0.31555      0.46373       0.5793      0.64483      0.71427      0.79217      0.88119      0.96946       0.99609  
    cl_mt_pol_k_p1v5             4.2857            4.5869    2.2805    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            7           0.49718      0     21.862      1.406e-33      0        1        1.406e-33    2.4018e-11    0.94152    1.3258    1.8734    2.1759    2.4441     2.755    2.9868    3.5078    4.0372    4.9442     5.784    6.2481    6.6182    7.5702    8.8098    12.359    16.957         4.4081             0.84769              7.2773             0.81363               1.0356               0.21417                5.2007                  1                    1.041               0.90086          0.00019092    0.0025263    0.016558    0.038662     0.064125     0.092405      0.12327      0.19274      0.31636      0.46389      0.57952      0.64463       0.7143      0.79332      0.88102      0.96943       0.99609  
    cl_mt_pol_k_p1v6             4.8571            4.5823    2.2768    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            7           0.49687      0     21.862    -2.9037e-34      0        1      -2.9037e-34    2.5636e-11    0.93587    1.3265    1.8556    2.1816    2.4442    2.7588    2.9786    3.5078    4.0205    4.9442    5.7731    6.2479    6.6052    7.5702    8.7937    12.353    16.966         4.3173             0.85056              7.2143             0.82387              0.98216               0.21299                5.1839                  1                   1.0482               0.90785          0.00019041    0.0025356    0.016551    0.038649       0.0644     0.092514      0.12345      0.19297      0.31623      0.46449       0.5798      0.64472      0.71477      0.79345        0.881      0.96938        0.9961  
    cl_mt_pol_k_p1v7             5.4286            4.5775    2.2736    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            7           0.49669      0     21.862     4.0284e-34      0        1       4.0284e-34      2.65e-11    0.93329    1.3272    1.8423    2.1825    2.4435    2.7588    2.9843    3.5044    4.0193    4.9421    5.7653    6.2479    6.5873    7.5702    8.7731    12.342    16.969         4.2407             0.85579              7.1684             0.83508              0.94445               0.21523                5.1691                  1                   1.0548               0.91479          0.00018986    0.0025047    0.016523     0.03861     0.064024     0.092423      0.12352      0.19303      0.31605      0.46513       0.5801      0.64486      0.71462      0.79357      0.88101      0.96935       0.99608  
    cl_mt_pol_k_p1v8                  6            4.5754    2.2698    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            7            0.4961      0     21.862     4.3792e-34      0        1       4.3792e-34    2.7877e-11    0.93221    1.3283    1.8362    2.1838    2.4442    2.7596    2.9786    3.5051    4.0205    4.9406    5.7531    6.2481    6.5873    7.5702    8.7702    12.326    16.971         4.1715             0.86178              7.1277             0.84592              0.91594               0.21918                5.1522                  1                   1.0596               0.92111          0.00018965    0.0025082    0.016498    0.038684     0.064236     0.092649      0.12366      0.19317      0.31661      0.46527      0.58011      0.64608      0.71516      0.79338      0.88097      0.96934       0.99606  
    cl_mt_pol_k_p1v9             6.5714            4.5748    2.2662    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            7           0.49535      0     21.862     1.6783e-33      0        1       1.6783e-33    2.8652e-11    0.93329    1.3292     1.839    2.1868    2.4448    2.7648     2.979    3.5049    4.0205    4.9328    5.7412     6.248    6.5873    7.5702    8.7608    12.326    16.976         4.1048             0.86809               7.086             0.85572              0.88777               0.22258                5.1355                  1                   1.0627               0.92668          0.00018948     0.002505    0.016525    0.038801     0.064193     0.092756      0.12372      0.19357      0.31787      0.46541      0.58041      0.64533      0.71616      0.79281      0.88101      0.96939       0.99607  
    cl_mt_pol_k_p1v10            7.1429            4.5801    2.2608    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            7           0.49362      0     21.862     1.8437e-33      0        1       1.8437e-33     2.933e-11    0.93347    1.3337    1.8576    2.1924    2.4458    2.7793    2.9942    3.5051    4.0205    4.9321    5.7412    6.2484    6.5873    7.5775     8.754    12.326    16.979         4.0315             0.87423              7.0308             0.86442               0.8549               0.22436                5.1114                  1                   1.0645               0.93191          0.00018974    0.0025293    0.016612    0.039027     0.064509     0.093433       0.1246      0.19472      0.31791      0.46623       0.5817      0.64635      0.71644      0.79275      0.88114      0.96938       0.99606  
    cl_mt_pol_k_p1v11            7.7143            4.5819    2.2583    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            7           0.49288      0     21.837    -1.0294e-34      0        1      -1.0294e-34    1.7053e-11    0.93785    1.3345    1.8719    2.2018    2.4553    2.7819    2.9885    3.5049    4.0205    4.9244    5.7355    6.2484    6.5873     7.606    8.7608    12.326     16.98         3.9772             0.87967               6.996             0.87171              0.82987               0.22624                5.0999                  1                   1.0663               0.93596          0.00019012    0.0025341    0.016722    0.039753     0.064972     0.094118       0.1252      0.19487       0.3187      0.46686      0.58178       0.6466      0.71673      0.79275      0.88119      0.96936       0.99608  
    cl_mt_pol_k_p1v12            8.2857            4.5765    2.2556    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            7           0.49287      0     21.837     9.6406e-34      0        1       9.6406e-34    1.8033e-11    0.94035    1.3353     1.874    2.2023    2.4551    2.7849    2.9882    3.5021    4.0205    4.9173    5.7212     6.246    6.5832    7.6007    8.7348    12.326     16.98          3.939             0.88415              6.9688             0.87761              0.81378                 0.229                5.0878                  1                   1.0673               0.93892          0.00019093    0.0025406    0.016796    0.039542     0.065157     0.094331      0.12599      0.19491      0.31874      0.46666      0.58104      0.64594      0.71547      0.79266      0.88129       0.9694       0.99606  
    cl_mt_pol_k_p1v13            8.8571             4.574    2.2543    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            7           0.49286      0     21.837     4.0366e-33      0        1       4.0366e-33    1.8198e-11    0.93928    1.3367    1.8811    2.2018    2.4586    2.7849    2.9786    3.5021    4.0205    4.9208    5.7056    6.2477    6.5832    7.6055    8.7334    12.322    16.985         3.9095             0.88816              6.9519             0.88258              0.80128               0.23153                 5.082                  1                   1.0686                0.9415          0.00019031    0.0025598    0.016845    0.039817     0.066035     0.094304      0.12543      0.19499      0.31817      0.46705      0.58112      0.64617      0.71561      0.79269      0.88123      0.96925       0.99605  
    cl_mt_pol_k_p1v14            9.4286            4.5704    2.2544    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            7           0.49326      0     21.837    -9.4416e-34      0        1      -9.4416e-34    1.8318e-11    0.94319    1.3358      1.87    2.2004    2.4551    2.7853    2.9673    3.4965    4.0205    4.9121    5.7034    6.2451    6.5825    7.6064    8.7334    12.309    16.993         3.8922             0.89138              6.9483             0.88665              0.79553               0.23465                5.0822                  1                   1.0706               0.94367          0.00019112    0.0025472    0.016863    0.039616     0.065229     0.094158      0.12528      0.19482      0.31891      0.46699      0.58169      0.64589      0.71538      0.79471      0.88138      0.96921       0.99604  
    cl_mt_pol_k_p1v15                10            4.5655    2.2542    'cl_mt_pol_k'    'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            7           0.49374      0     21.837     1.3037e-32      0        1       1.3037e-32    1.8419e-11    0.94319    1.3363    1.8652    2.1969    2.4519    2.7853    2.9617    3.4856    4.0205    4.9121    5.7034    6.2418    6.5753    7.6064    8.7221    12.283    16.998         3.8795               0.894              6.9462             0.88998              0.79331                 0.238                5.0812                  1                   1.0717               0.94528          0.00019275    0.0025512    0.017071    0.039546     0.065382      0.09422      0.12545      0.19541      0.31956       0.4682      0.58275      0.64592      0.71543      0.79431      0.88093      0.96921       0.99613  

                       fl_z_r_borr_poiss_mean     mean       sd      variablenames         var_param_key          it_test_grp    it_cur_param    fl_z_r_borr_max    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0        pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1         p1          p5         p10         p15         p20         p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10     fracByP15    fracByP20    fracByP25     fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       ______________________    ______    ______    _____________    ________________________    ___________    ____________    _______________    _______    ________    _____________    _________    _____    ______    __________    ________    _______    ___________    __________    _______    ________    ________    ________    ________    ________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    __________    __________    _________    _________    __________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p1v1                  2            3.0808    3.8555     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               1              0.095           -20        0.02            7            1.2514     -4.67    57.258     0.0051192     0.21478     0.7801     2.6479e-33    1.5679e-13    -2.9849     -2.3529     -1.5806     -1.0189    -0.52741    -0.10613    0.24493    1.0173    2.2811    3.7556    5.0896     5.862    6.9152    8.2492    10.426    15.481    22.362         7.7769             0.90645              14.865                1                  5.7325               0.73609                7.2783               0.82884                1.8539               0.97142           -0.0010855    -0.0096067     -0.034295     -0.054496    -0.067507     -0.07227     -0.070665     -0.04884     0.03317      0.17545      0.32208      0.40634      0.51594      0.63649      0.78206      0.94085       0.99204  
    cl_mt_coh_p1v2             2.5714            3.5418    3.9549     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               2              0.095           -20        0.02            7            1.1166     -4.67    57.258     0.0041881     0.18045    0.81536    -1.8887e-33    2.3245e-13    -2.9849     -2.2827     -1.4402    -0.80826    -0.31677     0.17472      0.596    1.4386    2.8428    4.3875    5.7215    6.4939    7.4769    8.7407    10.917    15.902    22.783         8.2555             0.91067              15.641                1                  6.3939               0.75093                7.3275               0.81259                1.9199               0.97345          -0.00091911    -0.0083888     -0.028775     -0.044174    -0.051467     -0.05197     -0.046244    -0.017236    0.076201      0.22537       0.3726      0.45722      0.55641      0.66647      0.80351      0.94688       0.99296  
    cl_mt_coh_p1v3             3.1429            4.0154    3.9931     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               3              0.095           -20        0.02            7           0.99444     -4.67    57.258     0.0034081     0.14545    0.85114    -2.4606e-34    3.0936e-13    -2.9147     -2.2125     -1.2295    -0.52741    0.034293     0.52578     1.0875    2.0003    3.4747    5.0194    6.2833    6.9854    7.8982     9.162    11.339    16.324    23.134         8.4749             0.91346              15.945                1                  6.6538               0.75529                7.3362               0.80533                1.9545               0.97437          -0.00095524     -0.007012     -0.024124       -0.0345    -0.037055    -0.033278     -0.021304      0.01625      0.1217       0.2788      0.42099      0.49926      0.58923      0.69538      0.82291      0.95226        0.9936  
    cl_mt_coh_p1v4             3.7143            4.4819    3.9798     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               4              0.095           -20        0.02            7           0.88797     -4.67    57.258     0.0027226     0.11244    0.88483     4.5291e-35     3.815e-13    -2.9147     -2.0721     -1.0189    -0.17635     0.45557      1.0875      1.579    2.6322    4.0364    5.5109    6.7045    7.4067    8.3194    9.5833     11.69    16.675    23.485         8.4336              0.9148              15.839                1                  6.5518               0.75162                7.3286               0.80648                1.9587               0.97441          -0.00069918    -0.0061701     -0.018851     -0.025206    -0.023255    -0.013439    0.00053772     0.050312       0.161      0.32179      0.46028      0.53558      0.62417      0.72221       0.8374      0.95679       0.99428  
    cl_mt_coh_p1v5             4.2857             4.881     3.922     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               5              0.095           -20        0.02            7           0.80354     -4.67    57.258     0.0021209    0.085348    0.91253      1.375e-33    4.8401e-13    -2.8444     -1.9317    -0.66784     0.24493     0.94706       1.579     2.1407    3.1237    4.5279     5.862    6.9854    7.6875    8.6003    9.7939      11.9    16.885    23.696         8.1816             0.91483              15.382                1                  6.1694               0.74187                7.2773               0.81363                1.9358               0.97407          -0.00064047    -0.0051598     -0.015344     -0.016915    -0.010507    0.0030024      0.022285     0.075988     0.20106      0.35499      0.48833      0.56103      0.64734      0.73713      0.84677      0.95937       0.99466  
    cl_mt_coh_p1v6             4.8571            5.1961     3.846     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               6              0.095           -20        0.02            7           0.74017     -4.67    57.258     0.0017064    0.064498     0.9338     1.5255e-33    5.1483e-13     -2.704     -1.7912    -0.31677     0.66621      1.4386      2.0705     2.6322    3.5449    4.8088    6.0726     7.196    7.8982    8.8109    10.005    12.111    17.096    23.837         7.8358              0.9139              14.792                1                  5.6779               0.72894                7.2143               0.82387                1.8993                0.9738           -0.0006895    -0.0042706     -0.011778    -0.0095307    0.0012614     0.018579      0.042232      0.10052     0.22368      0.37803       0.5067      0.58094      0.66318      0.75115      0.85444      0.96196       0.99494  
    cl_mt_coh_p1v7             5.4286            5.4364    3.7756     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               7              0.095           -20        0.02            7            0.6945     -4.67    57.258     0.0013713    0.049576    0.94905     1.3516e-34    5.6992e-13    -2.6338     -1.5806           0      1.0875      1.8598      2.4215     2.9832    3.8258    5.0194    6.2833    7.4067    8.0386    8.9513    10.145    12.251    17.236    23.977         7.5103             0.91266              14.255                1                  5.2222               0.71663                7.1684               0.83508                1.8646               0.97378          -0.00061065    -0.0038817     -0.008739      -0.00286     0.011508     0.030088       0.05766      0.11906     0.24367      0.39711      0.52714      0.59505      0.67438      0.75897       0.8608      0.96342       0.99518  
    cl_mt_coh_p1v8                  6            5.6227    3.7122     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               8              0.095           -20        0.02            7           0.66021     -4.67    57.258     0.0011375    0.038834    0.96003     9.1028e-35    5.9062e-13    -2.5636       -1.37     0.31514      1.4386      2.1407      2.7024     3.1939    4.0364    5.1598    6.4237    7.4769     8.179    9.0216    10.285    12.322    17.307    24.047         7.2149             0.91138               13.78                1                  4.8207               0.70536                7.1277               0.84592                1.8317               0.97361           -0.0005417    -0.0035129    -0.0061333     0.0028847     0.018502     0.039878       0.06685      0.13209     0.25481      0.41077      0.53293      0.60697       0.6802      0.76775      0.86348      0.96431       0.99527  
    cl_mt_coh_p1v9             6.5714            5.7748    3.6541     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10               9              0.095           -20        0.02            7           0.63276     -4.67    57.258    0.00092564    0.030608    0.96847     1.4937e-33    6.0702e-13    -2.4232     -1.1593       0.596      1.7194      2.4215      2.9832     3.4045    4.2471    5.3003    6.5641    7.5471    8.2492    9.0918    10.356    12.462    17.377    24.117         6.9387             0.91004              13.352                1                  4.4665               0.69449                 7.086               0.85572                1.7998               0.97329          -0.00056201    -0.0031401    -0.0038149     0.0075159     0.025957     0.050485      0.077142      0.14958     0.27085      0.42612      0.54118      0.61198      0.68507       0.7727      0.86798      0.96519       0.99537  
    cl_mt_coh_p1v10            7.1429            5.9098    3.5976     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              10              0.095           -20        0.02            7           0.60874     -4.67    57.258    0.00078328    0.024151    0.97507     1.8546e-33    6.2069e-13    -2.3529    -0.94869     0.94706      2.0003      2.6322      3.1939     3.6152    4.3875    5.3705    6.6343    7.6875    8.3194    9.2322    10.356    12.532    17.447    24.188         6.6683             0.90874              12.942                1                  4.1436                0.6834                7.0308               0.86442                 1.768               0.97268           -0.0004743    -0.0027161    -0.0012292      0.012319      0.03136     0.059348       0.08789      0.15893     0.27603      0.43256      0.55569      0.61751      0.69485      0.77268      0.87026      0.96594       0.99548  
    cl_mt_coh_p1v11            7.7143             6.011    3.5538     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              11              0.095           -20        0.02            7           0.59122     -4.67    57.258    0.00064284    0.019507    0.97985     5.5552e-35    6.3555e-13    -2.2125    -0.73805      1.1577      2.2109      2.8428      3.3343     3.7556    4.4577    5.5109    6.7045    7.6875    8.3896    9.2322    10.496    12.532    17.517    24.258         6.4576             0.90761               12.63                1                  3.8905               0.67399                 6.996               0.87171                1.7432               0.97232           -0.0004817    -0.0023956    0.00045639      0.016063     0.037337      0.06414      0.095404      0.16465     0.29206      0.43934      0.55413      0.62174      0.69426      0.77897       0.8702       0.9665       0.99557  
    cl_mt_coh_p1v12            8.2857            6.0748    3.5204     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              12              0.095           -20        0.02            7           0.57951     -4.67    57.258    0.00055346    0.016283    0.98316     4.5868e-35    6.4728e-13    -2.1423    -0.52741      1.3683      2.3513      2.9832      3.4045     3.8258    4.5279    5.5109    6.7045    7.7577    8.4599    9.3024    10.496    12.602    17.517    24.258         6.3051             0.90676              12.393                1                  3.6996               0.66704                6.9688               0.87761                 1.725               0.97232          -0.00044376    -0.0021354     0.0022511      0.018809     0.042579     0.066401      0.099536      0.17245      0.2909      0.43921      0.56269      0.62806      0.69939      0.77908      0.87284      0.96655       0.99557  
    cl_mt_coh_p1v13            8.8571            6.1295    3.4941     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              13              0.095           -20        0.02            7           0.57004     -4.67    57.258    0.00047272    0.013826     0.9857     3.1027e-33     6.533e-13    -2.0721    -0.38699      1.5088      2.4917      3.0535      3.4747      3.896    4.5279    5.5811    6.7747    7.7577    8.4599    9.3024    10.496    12.602    17.517    24.328         6.1816             0.90607              12.208                1                  3.5463               0.66113                6.9519               0.88258                1.7103               0.97224          -0.00040204    -0.0018568     0.0034709      0.021862     0.044295     0.070542       0.10457      0.17167     0.29823      0.44663      0.56221      0.62725      0.69916      0.77905       0.8728      0.96657       0.99567  
    cl_mt_coh_p1v14            9.4286            6.1687    3.4762     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              14              0.095           -20        0.02            7           0.56352     -4.67    57.258     0.0004166     0.01211    0.98747    -8.3118e-34    6.5756e-13    -1.9317    -0.24656      1.6492       2.562      3.1237      3.5449      3.896    4.5279    5.5811    6.7747    7.8279    8.5301    9.3726    10.566    12.673    17.588    24.328         6.0975             0.90561              12.084                1                  3.4344               0.65696                6.9483               0.88665                1.7011               0.97243          -0.00042738    -0.0016512     0.0047784      0.023217     0.046906     0.074584       0.10396       0.1709     0.29725      0.44593      0.56884      0.63527       0.7042       0.7825      0.87511      0.96718       0.99567  
    cl_mt_coh_p1v15                10            6.1958    3.4625     'cl_mt_coh'     'fl_z_r_borr_poiss_mean'        10              15              0.095           -20        0.02            7           0.55884     -4.67    57.258    0.00036342    0.010808    0.98883     8.8812e-33    6.6108e-13    -1.8615    -0.10613      1.7194      2.6322      3.1237      3.5449     3.9662    4.5981    5.5811    6.7747    7.8279    8.5301    9.3726    10.566    12.673    17.588    24.328         6.0337             0.90519              11.989                1                  3.3489               0.65408                6.9462               0.88998                1.6936               0.97253          -0.00040629     -0.001482     0.0054241      0.024975      0.04655     0.074282       0.10985      0.17782     0.29665      0.44559      0.56854      0.63507      0.70402      0.78233        0.875      0.96716       0.99567  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY       p0_1       p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _____    ______    _____    __________    _______    ___________    ___________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p2v1           0.095        7.9036    1.8164     'cl_mt_val'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964     6.5047e-33     6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                 3.693               0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p2v2        0.098929        7.9345    1.7805     'cl_mt_val'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            7            0.2244     -9999    16.656      0        0.000171    0.99983     4.9627e-33      2.252e-13    1.7014    3.6742    5.0036    5.6901    6.1096    6.4728    6.7681     7.283    7.9321    8.6096    9.1269    9.4299    9.7673    10.203    10.855     12.04    13.237         3.1703                1                  5.306             0.90134              0.78863               0.35515                3.6622               0.91594               0.85514               0.96167          9.3315e-05    0.0035751    0.026339    0.060492     0.097497      0.13722       0.1813      0.26865      0.41174      0.56741      0.68003      0.73836      0.79893      0.86091      0.92728      0.98417       0.99829  
    cl_mt_val_p2v3         0.10286        7.9635    1.7503     'cl_mt_val'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            7           0.21979     -9999    16.654      0      6.9718e-05    0.99993     2.0719e-33     5.9018e-13    2.2747    3.8986    5.1284    5.7273    6.1506    6.4898    6.7822     7.296    7.9671    8.6414    9.1352    9.4185      9.78    10.215    10.861    12.045    13.241         3.0634                1                 5.1605             0.90049              0.70661               0.33505                3.6133               0.91901               0.84056               0.96343           0.0001843    0.0041611    0.027821    0.061701     0.098837      0.13883      0.18084      0.26898      0.41609       0.5692      0.68034        0.739      0.79959      0.86144      0.92755      0.98422       0.99829  
    cl_mt_val_p2v4         0.10679        7.9656    1.7372     'cl_mt_val'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            7           0.21809     -9999    16.655      0      2.8329e-05    0.99997    -1.1733e-33     -3.689e-36    2.6186    4.0095    5.1318    5.7342    6.1582    6.4968    6.7894    7.3022    7.9488    8.6235    9.1354    9.4347     9.769    10.205    10.851    12.047    13.243         3.0179                1                 5.0957             0.89997              0.66279               0.32358                3.5975               0.92018               0.83535               0.96622          0.00024596    0.0042619    0.028168    0.062125     0.099733      0.14106      0.18194      0.26964      0.41316      0.57001      0.68102      0.73873      0.79895      0.86166      0.92748      0.98421       0.99829  
    cl_mt_val_p2v5         0.11071        8.0081    1.7097     'cl_mt_val'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            7           0.21349     -9999    16.653      0      1.0007e-05    0.99999    -5.5455e-33     2.3381e-13    2.8919    4.0859    5.2084    5.8126    6.2561    6.5812    6.8644    7.3397    7.9752    8.6491     9.152    9.4429     9.784    10.217    10.864    12.058    13.248          2.923                1                 4.9609             0.89933              0.62405                0.3153                3.5142               0.91942               0.82262               0.96653          0.00029672    0.0044687    0.028575    0.063052      0.10069      0.14157       0.1827      0.27291      0.41486      0.57211      0.68168      0.73991      0.80059      0.86214      0.92788      0.98438       0.99831  
    cl_mt_val_p2v6         0.11464        8.0006     1.714     'cl_mt_val'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            7           0.21423     -9999    16.655      0       3.404e-06          1    -5.5636e-32     2.9336e-13    3.0305    4.1381    5.2033    5.8272    6.2156    6.5354    6.8255    7.3014    7.9745    8.6471     9.159    9.4428    9.7902    10.222    10.865    12.057    13.243         2.9378                1                 4.9881              0.8997              0.61644               0.31333                3.5469                0.9204               0.82468               0.96604          0.00033485      0.00465    0.028657    0.064257      0.10133      0.14136      0.18396      0.27137      0.41482      0.57037      0.68194      0.73997       0.7996      0.86214      0.92763      0.98426        0.9983  
    cl_mt_val_p2v7         0.11857        8.0163    1.6955     'cl_mt_val'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            7           0.21151     -9999    16.653      0      1.0446e-06          1    -2.2781e-34     3.5443e-13    3.1185    4.1864    5.2788    5.8633    6.2529    6.5688     6.856    7.3291     7.989    8.6424    9.1412    9.4414    9.7787    10.214    10.861    12.055     13.25         2.8749                1                 4.8926              0.8987              0.59585               0.30923                3.4808               0.91841               0.81597               0.96795          0.00035491    0.0047464    0.029276    0.064249      0.10182      0.14164      0.18374      0.27363      0.41602      0.57139       0.6823      0.73993      0.80004       0.8624        0.928      0.98432        0.9983  
    cl_mt_val_p2v8          0.1225        8.0267     1.697     'cl_mt_val'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            7           0.21142     -9999    16.653      0      2.8991e-07          1    -1.6644e-33     1.7746e-13    3.1237    4.2313    5.2598    5.8492    6.2394    6.5879     6.849    7.3561    8.0144    8.6604    9.1608    9.4541    9.7878    10.217    10.873    12.054    13.255         2.8798                1                 4.9022             0.89916              0.59137                0.3076                 3.494               0.91897               0.81685                0.9663          0.00036471    0.0046913    0.029115    0.064428      0.10145      0.14204       0.1836      0.27195      0.41643      0.57145      0.68213      0.74024      0.80004      0.86228       0.9279      0.98434       0.99831  
    cl_mt_val_p2v9         0.12643        8.0191    1.6969     'cl_mt_val'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            7           0.21161     -9999    16.652      0      8.2137e-08          1     1.7342e-34     1.4978e-13    3.1572    4.2009     5.252    5.8395    6.2578     6.578    6.8566    7.3372    8.0014    8.6582    9.1616    9.4424    9.7891    10.223    10.865    12.056    13.241         2.8794                1                 4.9042             0.89912              0.58908               0.30803                3.4987               0.91804               0.81645               0.96761          0.00037762    0.0047206     0.02886    0.063652      0.10147      0.14324      0.18337      0.27351      0.41531       0.5711       0.6824      0.74048      0.80038      0.86248       0.9279      0.98432        0.9983  
    cl_mt_val_p2v10        0.13036        8.0424    1.6811     'cl_mt_val'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            7           0.20903     -9999    16.652      0       1.106e-08          1    -2.9269e-33     1.0417e-13     3.277    4.2944    5.3195    5.8997    6.3062    6.6286    6.8867    7.3586    8.0127    8.6647    9.1539    9.4561    9.7962    10.232    10.874    12.064    13.248          2.826                1                 4.8266             0.89838              0.58018               0.30679                3.4376               0.91637               0.80887               0.96795          0.00041736    0.0049767     0.02971    0.064424      0.10214      0.14332      0.18496      0.27401      0.41652      0.57202      0.68265      0.74112      0.80104      0.86253      0.92795      0.98438       0.99832  
    cl_mt_val_p2v11        0.13429        8.0249    1.6924     'cl_mt_val'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            7            0.2109     -9999    16.653      0      7.5568e-10          1     4.8505e-34     3.6846e-13    3.3036    4.2504    5.2831    5.8699    6.2585     6.576    6.8521    7.3367    8.0011    8.6486    9.1622    9.4535    9.7968    10.222    10.865    12.059    13.252         2.8643                1                  4.881             0.89902              0.57824               0.30576                3.4883               0.91704               0.81449               0.96739          0.00041029    0.0047654    0.029463     0.06497      0.10172      0.14277      0.18435      0.27271      0.41731      0.57162      0.68233      0.74012      0.80048      0.86261      0.92789      0.98433       0.99832  
    cl_mt_val_p2v12        0.13821        8.0364    1.6824     'cl_mt_val'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            7           0.20934     -9999     16.65      0      5.0526e-11          1     4.8251e-32     1.2969e-13    3.2882    4.2766    5.3197    5.8867    6.2944    6.5925    6.8768    7.3495    8.0077    8.6581    9.1674    9.4505    9.7913    10.225     10.87    12.062    13.247         2.8304                1                 4.8338             0.89849              0.57669               0.30642                3.4477               0.91576               0.80933               0.96836           0.0003817    0.0047823    0.029373    0.064317      0.10297      0.14261      0.18433       0.2732      0.41622      0.57201      0.68268      0.74148      0.80077      0.86267        0.928      0.98433       0.99831  
    cl_mt_val_p2v13        0.14214        8.0323    1.6862     'cl_mt_val'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            7           0.20993     -9999    16.648      0      3.2066e-12          1     4.6008e-33     3.8954e-14    3.2611    4.2884     5.297    5.8793    6.2604    6.5871    6.8755    7.3525    8.0101    8.6626    9.1514     9.454    9.7945    10.214    10.872    12.056    13.247         2.8433                1                 4.8507             0.89871              0.57766               0.30709                 3.462               0.91617               0.81106               0.96715          0.00037963    0.0048002    0.029154    0.065111       0.1022      0.14228      0.18395        0.274      0.41626      0.57307      0.68302      0.74076      0.80064      0.86241      0.92808      0.98434       0.99831  
    cl_mt_val_p2v14        0.14607        8.0289    1.6857     'cl_mt_val'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            7           0.20995     -9999    16.647      0      5.3014e-14          1     1.3641e-33     6.0304e-14    3.2714    4.2557    5.2937    5.8883    6.2677    6.5884    6.8512    7.3551    7.9921    8.6633    9.1548     9.455    9.7821    10.217    10.859    12.053    13.247         2.8415                1                 4.8444             0.89873              0.57382               0.30646                3.4603               0.91575               0.81029               0.96781          0.00038199     0.004805    0.029225    0.064987      0.10248      0.14224      0.18411      0.27253      0.41649      0.57192      0.68235      0.74042      0.80046      0.86298      0.92786      0.98432       0.99831  
    cl_mt_val_p2v15           0.15        8.0437    1.6802     'cl_mt_val'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            7           0.20888     -9999    16.649      0       1.206e-16          1    -3.2227e-33    -3.6745e-34     3.366    4.2403     5.332    5.8973    6.2999    6.6168    6.8761    7.3688    7.9983    8.6686    9.1652    9.4609    9.8022    10.233    10.864    12.057    13.248          2.823                1                 4.8223             0.89841              0.57556               0.30707                3.4388               0.91497                0.8079               0.96791          0.00045244    0.0048036    0.029951    0.064268      0.10241      0.14238      0.18442      0.27546        0.417      0.57195      0.68301      0.74175      0.80101      0.86341      0.92794      0.98438       0.99831  

                         fl_z_r_borr_max     mean       sd       variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    _______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ____    ______    _____    _____    _____    ___________    ___________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p2v1           0.095        1.8143    0.50087    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            7           0.27607     0.02    7.3724      0        0        1       6.5047e-33    -5.7352e-34    0.81581     0.9905     1.141    1.2496     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081       2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215       0.5452      0.65701      0.71905       0.7793       0.8439      0.91567      0.98069       0.99779  
    cl_mt_pol_c_p2v2        0.098929        1.8174    0.49941    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            7            0.2748     0.02    7.3503      0        0        1       4.9627e-33      2.252e-13    0.84194    0.99897    1.1401    1.2395    1.3139    1.3799    1.4442    1.5669    1.7424    1.9328    2.1115    2.2151    2.3346    2.5024     2.758    3.2675    3.8389        0.85514             0.96167              1.6027             0.97062              0.27966                 0.449                1.0736               0.95729               0.24941                  1              0.0004328    0.0053693    0.030249    0.061896     0.097034       0.1345      0.17314      0.25787      0.39654      0.54444      0.65549      0.71545      0.77765      0.84488      0.91613       0.9808       0.99781  
    cl_mt_pol_c_p2v3         0.10286        1.8213    0.49848    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            7            0.2737     0.02    7.3299      0        0        1       2.0719e-33    -4.4756e-35    0.86672    0.99961      1.13     1.252    1.3339    1.3924    1.4509    1.5679    1.7426    1.9541    2.1062    2.2065    2.3402     2.499    2.7615    3.2696    3.8413        0.84056             0.96343              1.5836             0.97028              0.26188               0.43599                1.0733               0.95846               0.24848                  1             0.00044948    0.0054867    0.029462     0.06228      0.10351      0.13732      0.17659      0.26034      0.39445      0.54515      0.65714      0.71618      0.77976        0.844      0.91711      0.98082       0.99781  
    cl_mt_pol_c_p2v4         0.10679        1.8211    0.49767    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            7           0.27327     0.02     7.311      0        0        1      -1.1733e-33     2.7943e-33    0.87732     0.9943    1.1405    1.2516    1.3335     1.392    1.4538    1.5792    1.7546    1.9301    2.1181    2.2184    2.3312    2.5066    2.7606    3.2636    3.8326        0.83535             0.96622              1.5725             0.96946              0.25133               0.42833                1.0735               0.95847               0.24767                  1             0.00049586    0.0053821    0.030071    0.066774      0.10081      0.13494      0.17558      0.25868      0.40421      0.54876      0.65854      0.71878      0.77899       0.8447      0.91613      0.98082        0.9978  
    cl_mt_pol_c_p2v5         0.11071        1.8273    0.49782    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            7           0.27243     0.02    7.2935      0        0        1      -5.5455e-33     2.6643e-34    0.87722    0.98833    1.1579    1.2515    1.3334    1.4036    1.4553     1.579    1.7544    1.9549     2.117    2.2223    2.3351    2.5189    2.7603    3.2683    3.8397        0.82262             0.96653              1.5559              0.9687              0.24174               0.41945                1.0664               0.95814               0.24782                  1             0.00046783    0.0053509      0.0312    0.062292      0.10072      0.13964      0.17379      0.25916      0.39601      0.55176      0.65814      0.71696      0.77839       0.8454      0.91626      0.98083       0.99781  
    cl_mt_pol_c_p2v6         0.11464        1.8263    0.49805    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            7           0.27271     0.02    7.2771      0        0        1      -5.5636e-32    -5.2337e-33    0.87726    0.98838    1.1463    1.2399    1.3334    1.4036    1.4663    1.5791     1.742     1.955     2.118    2.2182    2.3435    2.5148    2.7571    3.2684    3.8299        0.82468             0.96604              1.5619             0.96953              0.23888               0.41787                 1.075               0.95997               0.24805                  1             0.00052968    0.0051445    0.029107    0.061912     0.099223      0.13741      0.17697      0.26248      0.39574      0.54862      0.66144      0.71814      0.78138      0.84523      0.91607      0.98086       0.99781  
    cl_mt_pol_c_p2v7         0.11857        1.8282    0.49718    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            7           0.27195     0.02    7.2618      0        0        1      -2.2781e-34     -6.113e-36    0.86908    0.99443    1.1532    1.2518    1.3287    1.4039    1.4666    1.5794    1.7649    1.9429    2.1292    2.2187     2.344    2.5003    2.7593    3.2591    3.8306        0.81597             0.96795              1.5453             0.96802              0.23223               0.41102                1.0659               0.95909               0.24718                  1             0.00047422    0.0054557    0.029151    0.063478      0.09995      0.13729      0.18084      0.26207      0.39455      0.54842      0.65828      0.71883      0.77827      0.84455       0.9164      0.98076       0.99783  
    cl_mt_pol_c_p2v8          0.1225        1.8297    0.49814    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            7           0.27226     0.02    7.2476      0        0        1      -1.6644e-33     1.7746e-13    0.86603    0.99476    1.1586    1.2539    1.3291    1.4044    1.4671    1.5799    1.7521    1.9561    2.1191    2.2194     2.354    2.5078    2.7619    3.2652    3.8252        0.81685              0.9663              1.5507             0.96892              0.23054                0.4085                 1.072               0.96049               0.24814                  1             0.00046408    0.0052648    0.028899    0.063907     0.098654      0.14239      0.18247      0.26237      0.39326      0.54728      0.65818       0.7171      0.77872      0.84608      0.91699      0.98097        0.9978  
    cl_mt_pol_c_p2v9         0.12643        1.8287    0.49726    'cl_mt_pol_c'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            7           0.27191     0.02    7.2342      0        0        1       1.7342e-34     1.4978e-13    0.87712    0.99407    1.1528    1.2656    1.3407    1.4034    1.4627    1.5905    1.7417    1.9547    2.1176    2.2179    2.3432    2.5061    2.7583    3.2629    3.8226        0.81645             0.96761              1.5485             0.96879              0.22901               0.40865                1.0722               0.96009               0.24726                  1             0.00057944    0.0054876    0.030798    0.067853      0.10274      0.14072      0.17392      0.26319      0.39619      0.54686      0.65875      0.71809      0.77889      0.84569      0.91616      0.98089       0.99783  
    cl_mt_pol_c_p2v10        0.13036        1.8317    0.49709    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            7           0.27138     0.02    7.2216      0        0        1      -2.9269e-33     1.0417e-13    0.87762    0.98294    1.1534    1.2537    1.3373    1.4042    1.4577     1.578    1.7653    1.9466    2.1264      2.22    2.3445    2.5075    2.7582    3.2706    3.8314        0.80887             0.96795              1.5374             0.96776              0.22736               0.40658                 1.063               0.95829                0.2471                  1             0.00061345    0.0052808    0.029062    0.062105     0.097509      0.13521      0.17404       0.2571      0.39553      0.54643      0.65849      0.71716      0.78035      0.84578      0.91663       0.9808       0.99784  
    cl_mt_pol_c_p2v11        0.13429        1.8291    0.49748    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            7           0.27198     0.02    7.2097      0        0        1       4.8505e-34    -1.2042e-34     0.8655     1.0025    1.1529    1.2565    1.3367    1.4035    1.4703     1.579    1.7511    1.9516     2.117    2.2189    2.3392    2.5088    2.7569    3.2632    3.8338        0.81449             0.96739              1.5462             0.96887              0.22545               0.40556                1.0733                0.9599               0.24749                  1             0.00053599    0.0062876    0.031307     0.06285      0.10017      0.13739      0.17865      0.25843      0.39736      0.54659      0.65703       0.7161      0.77828      0.84445      0.91634      0.98088       0.99784  
    cl_mt_pol_c_p2v12        0.13821        1.8312    0.49678    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            7           0.27129     0.02    7.1985      0        0        1       4.8251e-32     6.9652e-33    0.86617     1.0033    1.1538    1.2574    1.3419    1.4046    1.4581    1.5802    1.7624    1.9564    2.1178    2.2206     2.341    2.5082    2.7691    3.2732    3.8325        0.80933             0.96836              1.5376             0.96791                0.225               0.40487                1.0658               0.95873               0.24679                  1             0.00057099    0.0057021    0.030808    0.064085     0.098988      0.13982      0.17497      0.25759      0.39593      0.54774      0.65686      0.71638      0.77994      0.84522      0.91703      0.98094        0.9978  
    cl_mt_pol_c_p2v13        0.14214        1.8312    0.49734    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            7            0.2716     0.02     7.188      0        0        1       4.6008e-33     3.8954e-14    0.85253      1.003    1.1635    1.2571    1.3373    1.4042     1.471     1.578    1.7652    1.9525    2.1263    2.2199    2.3403    2.5141    2.7707    3.2697    3.8355        0.81106             0.96715              1.5419             0.96855              0.22453               0.40469                  1.07               0.96004               0.24734                  1             0.00045118    0.0061815    0.030904    0.064143      0.10114      0.13814      0.17951      0.26107      0.39552      0.54679      0.66096      0.71701      0.78071      0.84481      0.91634      0.98082       0.99781  
    cl_mt_pol_c_p2v14        0.14607        1.8305    0.49668    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            7           0.27133     0.02     7.178      0        0        1       1.3641e-33     6.0304e-14     0.8774    0.99021    1.1632    1.2568     1.337    1.4038    1.4707     1.591    1.7515     1.952    2.1258    2.2303    2.3397    2.5135    2.7676    3.2715    3.8347        0.81029             0.96781              1.5383             0.96857              0.22269               0.40363                 1.069                0.9601               0.24669                  1              0.0005827    0.0052753    0.031039    0.064553      0.10186      0.13827      0.17691      0.26401      0.39626      0.54904      0.65915      0.71797      0.78081      0.84496      0.91673      0.98094       0.99782  
    cl_mt_pol_c_p2v15           0.15        1.8321    0.49678    'cl_mt_pol_c'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            7           0.27115     0.02    7.1685      0        0        1      -3.2227e-33    -3.6169e-34    0.87727     1.0026    1.1496    1.2566    1.3368    1.4036    1.4629    1.5908    1.7512    1.9517    2.1255    2.2299    2.3436    2.5148    2.7697    3.2693    3.8399         0.8079             0.96791              1.5365             0.96817              0.22376               0.40377                 1.066               0.95924               0.24679                  1             0.00061459    0.0054743    0.028983    0.062007      0.10294      0.13879       0.1753      0.26067      0.39645      0.54796      0.65942      0.71709      0.77887      0.84534      0.91718      0.98089       0.99783  

                         fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p2v1           0.095        4.6043    2.2337    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               1                   20                -20        0.02            7           0.48513      0     21.837     6.4654e-33      0        1       6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749     4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001          3.693             0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p2v2        0.098929         4.594    2.2456    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               2                   20                -20        0.02            7           0.48881      0     21.855     4.7585e-33      0        1       4.7585e-33     5.357e-11    0.99404    1.3011    1.8885    2.2413    2.5834    2.7397    2.9996    3.4676    4.0928    4.9172    5.7137    6.2405    6.5777    7.6364    8.7285    12.317    17.008         3.6622             0.91594              6.8048             0.91655              0.68854               0.24586                5.0427                  1                   1.0736               0.95729          0.00019883    0.0026347    0.017375    0.040569       0.0671     0.095334      0.12682      0.19754      0.32221      0.46857      0.58312      0.64801      0.72105      0.79458      0.88191       0.9695       0.99606  
    cl_mt_pol_k_p2v3         0.10286        4.5961    2.2464    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               3                   20                -20        0.02            7           0.48876      0      21.86     1.5235e-33      0        1       1.5235e-33    1.6075e-11    0.96076    1.3617    1.9286    2.2622    2.5814    2.7811    2.9805    3.4274    4.1407    4.9033    5.7011    6.2455     6.493    7.6804    8.7758     12.35     17.01         3.6133             0.91901              6.7713             0.92062              0.65183               0.24081                5.0462                  1                   1.0733               0.95846          0.00019135    0.0026715    0.017481    0.039941     0.066019     0.095848      0.12653      0.19992      0.32372      0.46945      0.58445       0.6483      0.71689      0.79344      0.88162      0.96925       0.99607  
    cl_mt_pol_k_p2v4         0.10679         4.572    2.2505    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               4                   20                -20        0.02            7           0.49223      0     21.857    -1.3283e-33      0        1      -1.3283e-33    7.1621e-11    0.94695    1.3773    1.9264    2.2351    2.5339    2.7419    2.9747    3.4166    4.1398    4.9019    5.6149    6.1969    6.4984    7.5951    8.7632    12.458        17         3.5975             0.92018              6.7735             0.92345              0.63527               0.23941                5.0647                  1                   1.0735               0.95847          0.00019335    0.0025817    0.017467    0.040312     0.066201     0.095033      0.12609       0.1983      0.31865      0.46756      0.58364      0.64758      0.71598      0.79287      0.88135      0.96945       0.99604  
    cl_mt_pol_k_p2v5         0.11071        4.6131    2.2356    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               5                   20                -20        0.02            7           0.48463      0     21.854    -5.1602e-33      0        1      -5.1602e-33    5.2708e-11    0.94382    1.4293    1.9104    2.3259    2.5732     2.851    3.0327    3.5026    4.0764    4.8999    5.6971    6.2307    6.5305    7.6583    8.7605    12.368    17.015         3.5142             0.91942              6.6683             0.92446              0.60386               0.23332                4.9981                  1                   1.0664               0.95814           0.0002184    0.0026927    0.017879    0.040867     0.067369     0.097926      0.13121      0.19973      0.32336      0.47157      0.58502      0.64978      0.71882      0.79441      0.88211      0.96956       0.99607  
    cl_mt_pol_k_p2v6         0.11464         4.587    2.2484    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               6                   20                -20        0.02            7           0.49016      0      21.83    -7.4663e-32      0        1      -7.4663e-32    9.1654e-10      0.939    1.4252    1.8837    2.2878    2.4912    2.7723    2.9973    3.4526    4.0725    4.9099    5.6962    6.2476    6.5298    7.6865    8.7629    12.477    17.015         3.5469              0.9204              6.7372             0.92639               0.6071               0.23525                5.0551                  1                    1.075               0.95997          0.00020606    0.0026015    0.017597    0.040351     0.066747     0.095395      0.12694      0.19655      0.32119      0.46902      0.58916      0.64829      0.71782       0.7927       0.8814      0.96929       0.99604  
    cl_mt_pol_k_p2v7         0.11857        4.5972    2.2353    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               7                   20                -20        0.02            7           0.48622      0     21.831    -1.9511e-34      0        1      -1.9511e-34    4.2836e-11     1.0028    1.4006    1.9435    2.3105     2.585    2.8171      2.98    3.4759    4.1076    4.9081    5.6332    6.2219    6.4758    7.6111    8.8289    12.301    17.019         3.4808             0.91841              6.6513             0.92675              0.58898               0.23186                4.9964                  1                   1.0659               0.95909          0.00019589    0.0026421    0.018194    0.041318     0.067581     0.097232      0.12917      0.19936      0.32953      0.47071      0.58479      0.64823       0.7174      0.79483      0.88124      0.96935       0.99607  
    cl_mt_pol_k_p2v8          0.1225        4.6101    2.2405    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               8                   20                -20        0.02            7           0.48599      0     21.864    -2.9349e-33      0        1      -2.9349e-33    1.1116e-11    0.99202      1.42    1.9117    2.2763    2.5668    2.8483    3.0007     3.491    4.1415    4.9055    5.6844    6.2277    6.5411    7.6373    8.7103    12.407    17.018          3.494             0.91897              6.6744             0.92725              0.58271               0.22957                5.0197                  1                    1.072               0.96049          0.00019286    0.0031428    0.018415    0.040382     0.067151     0.096122      0.13069      0.20316       0.3229      0.47092      0.58364      0.64854      0.71834      0.79375      0.88231      0.96941        0.9961  
    cl_mt_pol_k_p2v9         0.12643        4.5924    2.2459    'cl_mt_pol_k'    'fl_z_r_borr_max'        11               9                   20                -20        0.02            7           0.48904      0     21.849    -3.8798e-35      0        1      -3.8798e-35    8.1268e-12     1.0249    1.4004     1.935    2.2701    2.5217    2.7881    3.0043    3.4395    4.0777    4.9041    5.6966    6.2443     6.546    7.5878    8.7694    12.353    17.003         3.4987             0.91804              6.7004             0.92815              0.58419                0.2308                 5.044                  1                   1.0722               0.96009          0.00024751    0.0028787    0.019273    0.041287     0.066594     0.096226      0.12726      0.19724      0.32051      0.46955      0.58383      0.64745      0.71663      0.79332      0.88231      0.96967       0.99604  
    cl_mt_pol_k_p2v10        0.13036        4.6191    2.2315    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              10                   20                -20        0.02            7           0.48309      0     21.841    -4.9433e-33      0        1      -4.9433e-33     2.426e-11     1.0162    1.4517    1.9794    2.3285    2.5963    2.8786    3.0583    3.5101     4.088    4.9104    5.6409    6.2297    6.5328    7.6855    8.7332    12.458    17.022         3.4376             0.91637              6.6129             0.92728               0.5705               0.22727                4.9795                  1                    1.063               0.95829           0.0002215    0.0030768    0.018562    0.041213     0.068326     0.098988      0.13005      0.20294      0.32468      0.47189      0.58426      0.64894      0.71835      0.79668      0.88192      0.96945       0.99611  
    cl_mt_pol_k_p2v11        0.13429        4.5871    2.2476    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              11                   20                -20        0.02            7           0.48998      0     21.831      5.075e-34      0        1        5.075e-34    1.2414e-11     1.0127    1.4242    1.9169    2.2717      2.53    2.7498    2.9866    3.4606    4.0583    4.9025    5.6739     6.249    6.5898    7.7038    8.7908     12.36    17.014         3.4883             0.91704              6.6979             0.92894              0.57294               0.22813                5.0516                  1                   1.0733                0.9599          0.00020187    0.0030472    0.018024    0.042072     0.067879     0.096102      0.12719       0.2005      0.32039      0.46862      0.58304      0.64915      0.71667      0.79363      0.88167      0.96911       0.99606  
    cl_mt_pol_k_p2v12        0.13821        4.6018    2.2378    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              12                   20                -20        0.02            7           0.48629      0     21.847      5.175e-32      0        1        5.175e-32    1.2348e-11     1.0047    1.4285    1.9709    2.3075    2.5611    2.8334    2.9984    3.4652    4.0717     4.911    5.7381    6.2324    6.4812     7.627    8.7137     12.37    17.017         3.4477             0.91576              6.6427             0.92826              0.56898               0.22728                5.0079                  1                   1.0658               0.95873          0.00020943    0.0027206     0.01804    0.042221     0.067785     0.097935      0.12924      0.20027      0.32259      0.47165      0.58523      0.64878      0.71897       0.7933      0.88164      0.96933       0.99609  
    cl_mt_pol_k_p2v13        0.14214        4.5949     2.241    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              13                   20                -20        0.02            7            0.4877      0     21.841     7.7346e-34      0        1       7.7346e-34    1.9387e-11     1.0444    1.4645    1.9202    2.3039    2.5635    2.8368     2.996    3.4534     4.096       4.9    5.6519    6.2427    6.4997    7.5848    8.8095     12.46    17.019          3.462             0.91617              6.6633             0.92894              0.57145               0.22858                5.0219                  1                     1.07               0.96004           0.0002187    0.0028485    0.017927     0.04313     0.068111     0.099792      0.13138       0.2004      0.32195      0.47015      0.58271      0.64838      0.71668      0.79341      0.88178      0.96951       0.99605  
    cl_mt_pol_k_p2v14        0.14607        4.5881    2.2417    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              14                   20                -20        0.02            7           0.48858      0     21.836     3.5265e-33      0        1       3.5265e-33    1.7639e-11     1.0311    1.4467    1.9238    2.2914    2.5372     2.787    2.9932    3.4792    4.0816    4.9215    5.6848    6.2312    6.4777    7.6603    8.7242    12.317    17.017         3.4603             0.91575              6.6623             0.92942              0.56836               0.22826                 5.025                  1                    1.069                0.9601          0.00022909    0.0029944    0.018186    0.043786     0.068022     0.097369      0.12919      0.19789      0.32152      0.47174      0.58593      0.64748      0.71724      0.79374      0.88112      0.96911       0.99604  
    cl_mt_pol_k_p2v15           0.15        4.6075    2.2369    'cl_mt_pol_k'    'fl_z_r_borr_max'        11              15                   20                -20        0.02            7           0.48549      0     21.839    -5.4434e-33      0        1      -5.4434e-33    9.6474e-11      1.079    1.4283    1.9526    2.3127     2.573    2.8285    2.9991    3.4486    4.1426    4.9029    5.6811    6.2454    6.5785    7.6385    8.8629    12.484    17.015         3.4388             0.91497              6.6353             0.92852               0.5656               0.22666                5.0038                  1                    1.066               0.95924          0.00027395    0.0030521    0.018006    0.041659     0.068221     0.097182       0.1292      0.20054      0.32703      0.47123       0.5842      0.65247      0.71867      0.79347      0.88189      0.96935       0.99607  

                       fl_z_r_borr_max     mean       sd      variablenames      var_param_key      it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_b_bd    fl_c_min    fl_z_r_borr_n    coefofvar      min       max        pYis0         pYls0        pYgr0      pYisMINY       pYisMAXY        p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______________    ______    ______    _____________    _________________    ___________    ____________    ______________________    _______    ________    _____________    _________    _______    ______    __________    __________    _______    ___________    ___________    ________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p2v1           0.095        6.4857    3.3372     'cl_mt_coh'     'fl_z_r_borr_max'        11               1                   20                -20        0.02            7           0.51455       -4.67    57.258    0.00015291     0.0035947    0.99625     6.5047e-33     6.9345e-13     -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p2v2        0.098929        6.5413    3.3062     'cl_mt_coh'     'fl_z_r_borr_max'        11               2                   20                -20        0.02            7           0.50544     -4.4845    57.258    6.8045e-05     0.0016357     0.9983     4.9627e-33      2.252e-13    -0.41514     1.3389    2.6018    3.2333    3.6542    4.0051    4.2857    4.9172    5.8994     7.022    8.0043    8.7059    9.5478    10.741    12.845    17.757    24.492          5.306             0.90134              10.931                1                  2.5235               0.61202                6.8048               0.91655                1.6027               0.97062          -0.00015319     0.0010352    0.015159    0.039834     0.066099     0.097778      0.12521      0.19776      0.32722      0.46535      0.57939      0.64538      0.71531      0.79182      0.88008      0.96863       0.99588  
    cl_mt_coh_p2v3         0.10286        6.6035    3.2742     'cl_mt_coh'     'fl_z_r_borr_max'        11               3                   20                -20        0.02            7           0.49583     -4.3132    57.258    3.2092e-05    0.00061418    0.99935     2.0719e-33     5.9018e-13     0.32039     1.7245    2.7776    3.2691    3.6903    4.0413    4.3924     4.954    5.9369      6.99    8.0431    8.7452    9.5877    10.781    12.887    17.802    24.542         5.1605             0.90049              10.721                1                  2.3656               0.59961                6.7713               0.92062                1.5836               0.97028          -4.2458e-05     0.0019335    0.017262    0.040932     0.070157     0.097039      0.13328      0.19864      0.32621       0.4688      0.58388      0.65073      0.71686      0.79369      0.88098      0.96872       0.99594  
    cl_mt_coh_p2v4         0.10679        6.6027    3.2593     'cl_mt_coh'     'fl_z_r_borr_max'        11               4                   20                -20        0.02            7           0.49363     -4.1546    57.258    1.7387e-05    0.00023823    0.99974    -1.1733e-33     2.7943e-33     0.75843     1.9516    2.7938    3.2851    3.7062    4.0572    4.3379    4.9696     5.882    7.0751    8.0577    8.7596    9.5316    10.725     12.83    17.814    24.551         5.0957             0.89997              10.623                1                  2.2768               0.59247                6.7735               0.92345                1.5725               0.96946           4.3968e-05     0.0025383    0.017829     0.04038     0.069928      0.10266      0.13037      0.20468      0.32289      0.47422       0.5872      0.65195      0.71563      0.79119      0.88051      0.96887       0.99592  
    cl_mt_coh_p2v5         0.11071        6.6929    3.2265     'cl_mt_coh'     'fl_z_r_borr_max'        11               5                   20                -20        0.02            7           0.48207     -4.0071    57.258    4.7988e-06    7.8833e-05    0.99992    -5.5455e-33     2.3381e-13      1.1158     2.0983    2.9404    3.4317    3.8527    4.2036    4.4843    5.0458    5.9581    7.0809    8.1336    8.7652    9.6073      10.8    12.906    17.818    24.555         4.9609             0.89933               10.41                1                  2.1858               0.58519                6.6683               0.92446                1.5559                0.9687            0.0001096     0.0028093    0.020071    0.042816      0.07255      0.10527      0.13488      0.20428      0.32997      0.47529       0.5919      0.65242      0.71921      0.79487      0.88219      0.96931       0.99595  
    cl_mt_coh_p2v6         0.11464        6.6793    3.2346     'cl_mt_coh'     'fl_z_r_borr_max'        11               6                   20                -20        0.02            7           0.48427     -3.8698    57.258    2.9533e-06    2.4376e-05    0.99997    -5.5636e-32     2.9336e-13      1.3937     2.1657    2.9377     3.429    3.7799    4.1308    4.4115    5.0432    5.9555    7.0784    8.1311    8.7627    9.6049    10.798    12.903    17.816    24.553         4.9881              0.8997              10.463                1                  2.1635               0.58272                6.7372               0.92639                1.5619               0.96953           0.00019254      0.003263    0.019364    0.043678      0.07117      0.10415       0.1337      0.20805      0.32658      0.47432        0.592       0.6502       0.7191      0.79315      0.88166      0.96896       0.99594  
    cl_mt_coh_p2v7         0.11857        6.7093    3.2108     'cl_mt_coh'     'fl_z_r_borr_max'        11               7                   20                -20        0.02            7           0.47856     -3.7416    57.258    7.0922e-07    6.5416e-06    0.99999    -2.2781e-34     3.5443e-13       1.523      2.225    2.9971    3.4885    3.9096    4.1904    4.4712     5.103    5.9453    7.1386    8.1213    8.7531    9.5954    10.859    12.895    17.808    24.617         4.8926              0.8987              10.309                1                  2.1127                 0.579                6.6513               0.92675                1.5453               0.96802             0.000217     0.0032218    0.019515    0.044288     0.076011      0.10359      0.13579      0.21308      0.33106      0.48078      0.59038      0.65314       0.7193      0.79775      0.88215      0.96902       0.99603  
    cl_mt_coh_p2v8          0.1225        6.7358    3.2128     'cl_mt_coh'     'fl_z_r_borr_max'        11               8                   20                -20        0.02            7           0.47697     -3.6216    57.258    1.9123e-07    1.4296e-06          1    -1.6644e-33     1.7746e-13      1.6448     2.2767    2.9789    3.4705    3.8918    4.2429    4.5237    5.0855    5.9983    7.1218    8.1049    8.8071    9.6497    10.843     12.95    17.865    24.606         4.9022             0.89916              10.322                1                  2.0967               0.57606                6.6744               0.92725                1.5507               0.96892           0.00028704     0.0030164    0.019629    0.044909     0.074588      0.10764      0.13734      0.20591      0.33041        0.476      0.58822      0.65625      0.72215      0.79682      0.88329      0.96933       0.99602  
    cl_mt_coh_p2v9         0.12643        6.7218    3.2144     'cl_mt_coh'     'fl_z_r_borr_max'        11               9                   20                -20        0.02            7            0.4782     -3.5091    57.258    6.1572e-08    3.7272e-07          1     1.7342e-34     1.4978e-13      1.6835      2.315    3.0167    3.5079    3.8587    4.2096    4.4903    5.0516     6.034    7.1567    8.1391    8.7706    9.6127    10.806    12.911    17.893    24.559         4.9042             0.89912              10.332                1                  2.0834                0.5751                6.7004               0.92815                1.5485               0.96879           0.00027947     0.0033411    0.020262    0.046595     0.073653      0.10696      0.13674      0.20656      0.33207      0.48276      0.59013      0.65112      0.71905      0.79466      0.88202      0.96977       0.99599  
    cl_mt_coh_p2v10        0.13036        6.7648    3.1959     'cl_mt_coh'     'fl_z_r_borr_max'        11              10                   20                -20        0.02            7           0.47243     -3.4033    57.258    7.2044e-09    3.6835e-08          1    -2.9269e-33     1.0417e-13      1.7922     2.3539    3.1262    3.5474    3.9687    4.3197    4.6006    5.1623    6.0048    7.1281    8.1111    8.8132    9.6557    10.849    12.956     17.87     24.61         4.8266             0.89838              10.214                1                  2.0633               0.57392                6.6129               0.92728                1.5374               0.96776           0.00027595     0.0033397     0.02205    0.044657     0.075785       0.1108      0.14236      0.21595      0.33476       0.4778      0.58882      0.65504      0.72187      0.79662       0.8835      0.96938       0.99603  
    cl_mt_coh_p2v11        0.13429        6.7287     3.208     'cl_mt_coh'     'fl_z_r_borr_max'        11              11                   20                -20        0.02            7           0.47676     -3.3038    57.258    3.8626e-10    1.6692e-09          1     4.8505e-34     3.6846e-13      1.8191     2.3805    3.0822    3.5033    3.8542     4.205    4.4857    5.1173    6.0296    7.1524    8.1349    8.7665    9.6086    10.802    12.907    17.819    24.626          4.881             0.89902              10.291                1                   2.047               0.57105                6.6979               0.92894                1.5462               0.96887           0.00027088     0.0038896    0.021975    0.045696     0.073281      0.10789      0.13609      0.21243      0.33753      0.48124      0.59138      0.65132      0.71979      0.79495      0.88258      0.96912       0.99602  
    cl_mt_coh_p2v12        0.13821        6.7548    3.1978     'cl_mt_coh'     'fl_z_r_borr_max'        11              12                   20                -20        0.02            7           0.47341     -3.2099    57.258    1.7266e-11    6.3522e-11          1     4.8251e-32     1.2969e-13      1.8467     2.4085    3.1108    3.5322    3.9536    4.2345    4.5154    5.0772    6.0605    7.1139    8.1674    8.7994    9.6422    10.836    12.943    17.859    24.671         4.8338             0.89849              10.226                1                  2.0454               0.57178                6.6427               0.92826                1.5376               0.96791           0.00027513     0.0037061    0.021669    0.045209     0.077786      0.10382      0.13619      0.20909      0.33891      0.47589      0.59417      0.65372      0.72019      0.79602      0.88366      0.96947       0.99605  
    cl_mt_coh_p2v13        0.14214        6.7513    3.2009     'cl_mt_coh'     'fl_z_r_borr_max'        11              13                   20                -20        0.02            7           0.47411     -3.1211    57.258     5.299e-13    1.7715e-12          1     4.6008e-33     3.8954e-14      1.8636     2.4253    3.0572    3.5486    3.8997    4.2507    4.5316    5.0932    6.0059    7.1293    8.1824    8.8143    9.6568     10.85    12.957    17.871    24.611         4.8507             0.89871              10.246                1                  2.0405               0.57143                6.6633               0.92894                1.5419               0.96855           0.00028054     0.0036232    0.020807    0.048156     0.074045      0.10861      0.13849      0.20757      0.33345       0.4789       0.5948      0.65499      0.72199       0.7966      0.88364      0.96933       0.99597  
    cl_mt_coh_p2v14        0.14607        6.7433    3.1977     'cl_mt_coh'     'fl_z_r_borr_max'        11              14                   20                -20        0.02            7           0.47421     -3.0372    57.258    8.7629e-15    2.0708e-14          1     1.3641e-33     6.0304e-14      1.8763     2.4378    3.0695    3.5609    3.9118    4.1926    4.5436    5.1051    6.0176    7.1407    8.1234    8.7551    9.5974    10.861    12.896     17.88    24.619         4.8444             0.89873              10.226                1                  2.0249               0.57007                6.6623               0.92942                1.5383               0.96857           0.00035459     0.0038015    0.020337     0.04817     0.074889      0.10352       0.1425      0.21073      0.33546      0.47979      0.59033      0.65153      0.71936      0.79829      0.88192      0.96969       0.99603  
    cl_mt_coh_p2v15           0.15        6.7688    3.1946     'cl_mt_coh'     'fl_z_r_borr_max'        11              15                   20                -20        0.02            7           0.47196     -2.9577    57.258    1.0262e-17    1.2345e-17          1    -3.2227e-33    -3.6704e-34      1.8849     2.3761    3.1481    3.5692    3.9201     4.271    4.5517    5.1132    6.0255    7.1485     8.131    8.8328     9.675    10.868    12.973    17.886    24.624         4.8223             0.89841              10.206                1                  2.0338               0.57069                6.6353               0.92852                1.5365               0.96817           0.00028407     0.0032544    0.022511    0.044866     0.072775      0.10714      0.13894      0.21212      0.33063      0.47942      0.59165       0.6562      0.72362      0.79801      0.88368      0.96959       0.99602  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY      pYisMAXY      p0_1       p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    _____    __________    _______    __________    __________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p3v1         -20    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               1                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v2     -18.929    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               2                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v3     -17.857    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               3                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v4     -16.786    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               4                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v5     -15.714    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               5                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v6     -14.643    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               6                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v7     -13.571    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               7                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v8       -12.5    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               8                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v9     -11.429    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12               9                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v10    -10.357    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              10                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v11    -9.2857    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              11                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v12    -8.2143    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              12                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v13    -7.1429    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              13                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v14    -6.0714    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              14                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p3v15         -5    7.9036    1.8164     'cl_mt_val'       'fl_b_bd'          12              15                   20                   0.095           0.02            7           0.22982     -9999    16.652      0      0.00036359    0.99964    6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  

                         fl_b_bd     mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY      pYisMAXY       p0_1        p1       p5       p10       p15      p20       p25       p35       p50       p65       p75      p80     p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ____    ______    _____    _____    _____    __________    ___________    _______    ______    _____    ______    _____    ______    ______    ______    ______    ______    ______    ___    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p3v1         -20    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               1                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v2     -18.929    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               2                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v3     -17.857    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               3                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v4     -16.786    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               4                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v5     -15.714    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               5                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v6     -14.643    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               6                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v7     -13.571    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               7                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v8       -12.5    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               8                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v9     -11.429    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12               9                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v10    -10.357    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              10                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v11    -9.2857    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              11                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v12    -8.2143    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              12                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v13    -7.1429    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              13                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v14    -6.0714    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              14                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p3v15         -5    1.8143    0.50087    'cl_mt_pol_c'      'fl_b_bd'          12              15                   20                   0.095           0.02            7           0.27607     0.02    7.3724      0        0        1      6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  

                         fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar    min     max        pYis0       pYls0    pYgr0     pYisMINY      pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65      p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    ___    ______    __________    _____    _____    __________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p3v1         -20    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               1                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v2     -18.929    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               2                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v3     -17.857    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               3                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v4     -16.786    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               4                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v5     -15.714    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               5                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v6     -14.643    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               6                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v7     -13.571    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               7                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v8       -12.5    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               8                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v9     -11.429    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12               9                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v10    -10.357    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              10                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v11    -9.2857    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              11                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v12    -8.2143    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              12                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v13    -7.1429    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              13                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v14    -6.0714    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              14                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p3v15         -5    4.6043    2.2337    'cl_mt_pol_k'      'fl_b_bd'          12              15                   20                   0.095           0.02            7           0.48513      0     21.837    6.4654e-33      0        1      6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  

                       fl_b_bd     mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_c_min    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY      pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35      p50      p65       p75       p80       p85      p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _______    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    ________    _____________    _________    _____    ______    __________    _________    _______    __________    __________    _______    _______    ______    ______    ______    ______    ______    _____    _____    ______    ______    ______    _____    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p3v1         -20    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               1                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v2     -18.929    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               2                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v3     -17.857    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               3                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v4     -16.786    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               4                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v5     -15.714    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               5                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v6     -14.643    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               6                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v7     -13.571    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               7                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v8       -12.5    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               8                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v9     -11.429    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12               9                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v10    -10.357    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              10                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v11    -9.2857    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              11                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v12    -8.2143    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              12                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v13    -7.1429    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              13                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v14    -6.0714    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              14                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p3v15         -5    6.4857    3.3372     'cl_mt_coh'       'fl_b_bd'          12              15                   20                   0.095           0.02            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY      p0_1       p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    _____    __________    _______    ___________    __________    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p4v1          0.03    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               1                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     6.6878e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v2      0.027929    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               2                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964      1.047e-32    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v3      0.025857    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               3                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     2.1895e-34    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v4      0.023786    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               4                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -4.2976e-35    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v5      0.021714    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               5                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     5.5627e-34    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v6      0.019643    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               6                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     6.5047e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v7      0.017571    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               7                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     1.2494e-32    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v8        0.0155    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               8                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -4.8738e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v9      0.013429    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13               9                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -2.7455e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v10     0.011357    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              10                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     7.9083e-34    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v11    0.0092857    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              11                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -1.0158e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v12    0.0072143    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              12                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -2.2024e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v13    0.0051429    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              13                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964    -4.4302e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v14    0.0030714    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              14                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     1.7137e-33    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p4v15        0.001    7.9036    1.8164     'cl_mt_val'      'fl_c_min'          13              15                   20                   0.095           -20            7           0.22982     -9999    16.652      0      0.00036359    0.99964     1.3641e-34    6.9345e-13    1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                3.693                0.91018               0.87065               0.95698          3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  

                         fl_c_min      mean       sd       variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar       min        max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1       p5       p10       p15      p20       p25       p35       p50       p65       p75      p80     p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    _______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _________    ______    _____    _____    _____    ___________    ___________    _______    ______    _____    ______    _____    ______    ______    ______    ______    ______    ______    ___    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p4v1          0.03    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               1                   20                   0.095           -20            7           0.27607          0.03    7.3724      0        0        1       6.6878e-33    -9.4413e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v2      0.027929    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               2                   20                   0.095           -20            7           0.27607      0.027929    7.3724      0        0        1        1.047e-32    -1.2011e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v3      0.025857    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               3                   20                   0.095           -20            7           0.27607      0.025857    7.3724      0        0        1       2.1895e-34     1.1009e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v4      0.023786    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               4                   20                   0.095           -20            7           0.27607      0.023786    7.3724      0        0        1      -4.2976e-35     3.7041e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v5      0.021714    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               5                   20                   0.095           -20            7           0.27607      0.021714    7.3724      0        0        1       5.5627e-34    -5.6294e-35    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v6      0.019643    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               6                   20                   0.095           -20            7           0.27607      0.019643    7.3724      0        0        1       6.5047e-33    -5.7352e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v7      0.017571    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               7                   20                   0.095           -20            7           0.27607      0.017571    7.3724      0        0        1       1.2494e-32     1.0145e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v8        0.0155    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               8                   20                   0.095           -20            7           0.27607        0.0155    7.3724      0        0        1      -4.8738e-33     1.9903e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v9      0.013429    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13               9                   20                   0.095           -20            7           0.27607      0.013429    7.3724      0        0        1      -2.7455e-33     6.8841e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v10     0.011357    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              10                   20                   0.095           -20            7           0.27607      0.011357    7.3724      0        0        1       7.9083e-34     1.9117e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v11    0.0092857    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              11                   20                   0.095           -20            7           0.27607     0.0092857    7.3724      0        0        1      -1.0158e-33     3.9785e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v12    0.0072143    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              12                   20                   0.095           -20            7           0.27607     0.0072143    7.3724      0        0        1      -2.2024e-33    -1.9316e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v13    0.0051429    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              13                   20                   0.095           -20            7           0.27607     0.0051429    7.3724      0        0        1      -4.4302e-33    -9.6557e-36    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v14    0.0030714    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              14                   20                   0.095           -20            7           0.27607     0.0030714    7.3724      0        0        1       1.7137e-33    -4.6953e-34    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  
    cl_mt_pol_c_p4v15        0.001    1.8143    0.50087    'cl_mt_pol_c'     'fl_c_min'          13              15                   20                   0.095           -20            7           0.27607         0.001    7.3724      0        0        1       1.3641e-34     1.3018e-33    0.81581    0.9905    1.141    1.2496    1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081    2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215      0.5452       0.65701      0.71905      0.7793       0.8439       0.91567      0.98069       0.99779  

                         fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65      p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    _____    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p4v1          0.03    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               1                   20                   0.095           -20            7           0.48513      0     21.837      6.325e-33      0        1        6.325e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v2      0.027929    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               2                   20                   0.095           -20            7           0.48513      0     21.837     1.6452e-32      0        1       1.6452e-32    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v3      0.025857    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               3                   20                   0.095           -20            7           0.48513      0     21.837     6.8935e-34      0        1       6.8935e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v4      0.023786    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               4                   20                   0.095           -20            7           0.48513      0     21.837     -5.993e-35      0        1       -5.993e-35    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v5      0.021714    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               5                   20                   0.095           -20            7           0.48513      0     21.837     5.8077e-34      0        1       5.8077e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v6      0.019643    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               6                   20                   0.095           -20            7           0.48513      0     21.837     6.4654e-33      0        1       6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v7      0.017571    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               7                   20                   0.095           -20            7           0.48513      0     21.837      1.261e-32      0        1        1.261e-32    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v8        0.0155    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               8                   20                   0.095           -20            7           0.48513      0     21.837    -4.4272e-33      0        1      -4.4272e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v9      0.013429    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13               9                   20                   0.095           -20            7           0.48513      0     21.837    -4.1902e-33      0        1      -4.1902e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v10     0.011357    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              10                   20                   0.095           -20            7           0.48513      0     21.837     9.7005e-34      0        1       9.7005e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v11    0.0092857    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              11                   20                   0.095           -20            7           0.48513      0     21.837    -9.5041e-34      0        1      -9.5041e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v12    0.0072143    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              12                   20                   0.095           -20            7           0.48513      0     21.837    -2.1357e-33      0        1      -2.1357e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v13    0.0051429    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              13                   20                   0.095           -20            7           0.48513      0     21.837    -4.2059e-33      0        1      -4.2059e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v14    0.0030714    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              14                   20                   0.095           -20            7           0.48513      0     21.837     5.8761e-34      0        1       5.8761e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p4v15        0.001    4.6043    2.2337    'cl_mt_pol_k'     'fl_c_min'          13              15                   20                   0.095           -20            7           0.48513      0     21.837     -4.688e-34      0        1       -4.688e-34    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749    4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001         3.693              0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  

                       fl_c_min      mean       sd      variablenames    var_param_key    it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_z_r_borr_n    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY      p0_1        p1         p5       p10       p15       p20       p25       p35      p50      p65       p75       p80       p85      p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _________    ______    ______    _____________    _____________    ___________    ____________    ______________________    _______________    _______    _____________    _________    _____    ______    __________    _________    _______    ___________    __________    _______    _______    ______    ______    ______    ______    ______    _____    _____    ______    ______    ______    _____    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    __________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p4v1          0.03    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               1                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     6.6878e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v2      0.027929    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               2                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625      1.047e-32    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v3      0.025857    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               3                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     2.1895e-34    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v4      0.023786    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               4                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -4.2976e-35    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v5      0.021714    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               5                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     5.5627e-34    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v6      0.019643    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               6                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     6.5047e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v7      0.017571    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               7                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     1.2494e-32    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v8        0.0155    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               8                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -4.8738e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v9      0.013429    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13               9                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -2.7455e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v10     0.011357    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              10                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     7.9083e-34    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v11    0.0092857    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              11                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -1.0158e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v12    0.0072143    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              12                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -2.2024e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v13    0.0051429    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              13                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625    -4.4302e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v14    0.0030714    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              14                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     1.7137e-33    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p4v15        0.001    6.4857    3.3372     'cl_mt_coh'      'fl_c_min'          13              15                   20                   0.095           -20            7           0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     1.3641e-34    6.9345e-13    -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471    4.879    5.862    6.9854    7.9684    8.6705    9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698    0.00011665    0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max      pYis0      pYls0        pYgr0      pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1     fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    _____    __________    _______    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_val_p5v1           3          7.8925     1.817     'cl_mt_val'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.23022     -9999    16.653      0      0.00033671    0.99966    -1.3345e-33    6.8659e-13     1.1375    3.3999    4.8764    5.6005    6.0774     6.418    6.7118    7.2302    7.9194    8.5951    9.1083    9.4137    9.7422    10.184    10.834    12.032    13.222         3.3014                1                  5.463             0.90203              0.88831               0.37117                3.7031               0.90696               0.87159               0.95752           1.3574e-05     0.003111    0.024984    0.058459     0.095697      0.13627      0.17776      0.26593       0.4106      0.56735       0.6795      0.73694      0.79763      0.86084      0.92713      0.98412       0.99828  
    cl_mt_val_p5v2           4          7.9022     1.814     'cl_mt_val'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.22956     -9999    16.654      0      0.00033979    0.99966    -1.9863e-33    6.9044e-13     1.1424    3.4078    4.9013    5.6267    6.0873    6.4244     6.714    7.2364    7.9324    8.5973    9.1116    9.4184    9.7561    10.187    10.836    12.034    13.224         3.2907                1                 5.4524             0.90213              0.89047                0.3769                3.6922               0.90938               0.86975               0.95739           1.2163e-05    0.0031288    0.025081    0.058592     0.095614      0.13578      0.17697      0.26549      0.41102      0.56699       0.6783       0.7378      0.79752      0.86074      0.92693      0.98412       0.99829  
    cl_mt_val_p5v3           5          7.9034    1.8154     'cl_mt_val'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02        0.2297     -9999    16.654      0      0.00034348    0.99966    -2.8709e-32    6.9239e-13     1.1317    3.4092     4.902    5.6265     6.087    6.4241     6.714    7.2397    7.9322    8.5975     9.116    9.4186    9.7581    10.188    10.836    12.035    13.224         3.2956                1                 5.4632             0.90227              0.89713               0.38021                3.6957               0.91007                0.8704               0.95728            7.459e-06    0.0031517    0.025102    0.058616     0.095579      0.13562      0.17699      0.26547      0.41039      0.56649      0.67868      0.73737      0.79785      0.86047      0.92683      0.98409       0.99828  
    cl_mt_val_p5v4           6          7.9062    1.8147     'cl_mt_val'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.22953     -9999    16.654      0      0.00034735    0.99965    -3.6053e-33    6.9338e-13     1.1384    3.4111    4.9055    5.6305    6.0876    6.4338     6.726    7.2416    7.9319     8.612    9.1159    9.4184     9.758    10.196    10.846    12.035    13.224         3.2932                1                 5.4612             0.90234               0.8999               0.38187                3.6914               0.91036               0.86993               0.95718           8.7624e-06    0.0031501    0.025484    0.059031      0.09569      0.13523      0.17699      0.26572      0.40984      0.56683      0.67852      0.73702      0.79765      0.86065       0.9269      0.98417       0.99828  
    cl_mt_val_p5v5           7          7.9036    1.8164     'cl_mt_val'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.22982     -9999    16.652      0      0.00036359    0.99964     6.5047e-33    6.9345e-13     1.0698    3.3999    4.9032    5.6296    6.0866    6.4306    6.7243    7.2399    7.9302    8.6103    9.1142    9.4167    9.7562    10.194    10.845    12.033    13.222         3.2995                1                 5.4702              0.9024              0.90659               0.38384                 3.693               0.91018               0.87065               0.95698           3.0669e-06    0.0030538    0.025062     0.05902     0.095603      0.13524      0.17697      0.26578      0.40967      0.56672      0.67839      0.73691      0.79764      0.86062      0.92688      0.98416       0.99828  
    cl_mt_val_p5v6           8          7.8972    1.8213     'cl_mt_val'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.23063     -9999    16.653      0      0.00038622    0.99961     8.3866e-34    6.9256e-13     1.0331    3.3624    4.8753    5.6043    6.0744    6.4152    6.7087     7.233    7.9307    8.5961    9.1146    9.4172    9.7567    10.186    10.835    12.033    13.223         3.3173                1                 5.4957             0.90253              0.91856               0.38651                3.7042               0.90999                 0.873               0.95682          -4.3194e-06    0.0030168    0.024837    0.058244     0.095279      0.13499      0.17671      0.26507      0.41026      0.56662       0.6785      0.73705      0.79785       0.8604      0.92679      0.98408       0.99828  
    cl_mt_val_p5v7           9          7.8976    1.8236     'cl_mt_val'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.23091     -9999    16.655      0      0.00039749     0.9996     1.4303e-34    6.9286e-13    0.99814    3.3519    4.8788    5.5983     6.077    6.4175     6.711    7.2352    7.9329    8.5982    9.1166    9.4192    9.7587    10.188    10.837    12.036    13.225         3.3256                1                 5.5085             0.90264              0.92735               0.38845                3.7072                0.9097               0.87401               0.95661          -6.7892e-06    0.0029805     0.02495    0.058334     0.095433      0.13513      0.17696      0.26505      0.41021      0.56661       0.6784      0.73697      0.79785       0.8604      0.92677      0.98416       0.99828  
    cl_mt_val_p5v8          10          7.8925    1.8287     'cl_mt_val'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02        0.2317     -9999    16.655      0       0.0004216    0.99958     1.0366e-33    6.9199e-13    0.95294    3.3213    4.8555    5.5928    6.0458    6.4184    6.7118    7.2302    7.9202    8.5957    9.1171    9.4197    9.7572    10.189    10.837    12.036    13.225         3.3442                1                 5.5348             0.90281              0.94177               0.39153                3.7167               0.90924               0.87635                0.9563          -1.4904e-05    0.0029311    0.024758    0.057973     0.094977      0.13571      0.17682      0.26468      0.40895      0.56572      0.67856      0.73707      0.79717      0.86048      0.92676      0.98408       0.99828  
    cl_mt_val_p5v9          11          7.8876    1.8316     'cl_mt_val'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.23221     -9999    16.654      0      0.00041839    0.99958     3.9921e-33    6.9092e-13    0.92128    3.2952    4.8527    5.5846    6.0435    6.4182    6.7115    7.2296    7.9195     8.595    9.1084    9.4189    9.7464    10.188    10.835    12.035    13.224         3.3548                1                 5.5493              0.9029              0.95136               0.39338                3.7203               0.90888               0.87767               0.95617          -1.9339e-05    0.0028985    0.024569    0.058161     0.095069      0.13615      0.17748      0.26488      0.40954      0.56575      0.67782       0.7372      0.79718      0.86061       0.9267      0.98408       0.99828  
    cl_mt_val_p5v10         12          7.8798    1.8377     'cl_mt_val'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.23321     -9999    16.654      0      0.00045486    0.99955       2.83e-33    6.9056e-13    0.84718    3.2688    4.8155    5.5509    6.0344     6.416    6.6912    7.2051    7.9123    8.5952    9.1084    9.4144    9.7429    10.184    10.835    12.035    13.224          3.377                1                 5.5805             0.90305               0.9688               0.39672                3.7312               0.90824               0.88055               0.95595          -2.7854e-05    0.0028586    0.024381    0.057726      0.09478      0.13437      0.17561      0.26413      0.40846      0.56553      0.67795      0.73638        0.797      0.86022      0.92678      0.98407       0.99829  
    cl_mt_val_p5v11         13          7.8727    1.8445     'cl_mt_val'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.23429     -9999    16.655      0      0.00049129    0.99951    -6.9141e-33    6.8885e-13    0.76836    3.2317    4.8062    5.5459     6.031    6.3947    6.6739    7.2034    7.9139    8.5968    9.1053    9.4027    9.7443    10.186    10.836    12.034    13.226         3.4021                1                 5.6155             0.90322              0.98855               0.40044                3.7433               0.90734               0.88361               0.95554          -3.7588e-05    0.0027933    0.024306    0.057388     0.094341       0.1337      0.17532      0.26478      0.40853      0.56607      0.67775        0.736      0.79706       0.8602      0.92687      0.98404       0.99829  
    cl_mt_val_p5v12         14          7.8619     1.852     'cl_mt_val'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.23557     -9999    16.656      0      0.00052867    0.99947    -1.1358e-35    6.8722e-13    0.69588    3.1916    4.7799    5.5051    6.0002     6.382    6.6619    7.1964    7.8939    8.5756    9.0954    9.4031    9.7446    10.184    10.834    12.034    13.224           3.43                1                 5.6561             0.90344                1.009               0.40384                3.7598               0.90676               0.88727               0.95538          -4.6981e-05    0.0027406    0.024161    0.057177      0.09403      0.13339      0.17514      0.26325      0.40735      0.56449      0.67692      0.73644      0.79694      0.86001      0.92647      0.98401       0.99827  
    cl_mt_val_p5v13         15          7.8432    1.8654     'cl_mt_val'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.23783     -9999    16.655      0      0.00058202    0.99942     1.3742e-34    6.8431e-13    0.61011    3.1096    4.7554     5.496    5.9939    6.3319    6.6381    7.1694     7.884    8.5698    9.0855     9.398    9.7409    10.181    10.833    12.024    13.224         3.4796                1                 5.7253             0.90377               1.0452               0.41043                3.7865               0.90552                0.8936               0.95488          -5.9006e-05    0.0026151    0.023738    0.057271     0.094127      0.13269      0.17403      0.26228      0.40693      0.56403      0.67638      0.73526      0.79615      0.85965      0.92636      0.98398       0.99827  
    cl_mt_val_p5v14         16          7.8273    1.8782     'cl_mt_val'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.23996     -9999    16.655      0      0.00063441    0.99937    -8.5949e-36    6.8126e-13    0.48807    3.0468    4.7086    5.4587    5.9509    6.3023    6.6367    7.1592    7.8667    8.5708    9.0847     9.399     9.728    10.168    10.832    12.025    13.224         3.5276                1                 5.7937             0.90414               1.0805               0.41622                3.8134               0.90437               0.89976               0.95457          -7.2807e-05    0.0025121     0.02341    0.056374     0.092772       0.1319      0.17384      0.26164      0.40607      0.56394      0.67611      0.73501      0.79587      0.85928      0.92623      0.98401       0.99828  
    cl_mt_val_p5v15         17           7.815     1.888     'cl_mt_val'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.24159     -9999    16.655      0      0.00069379    0.99931     -3.311e-34    6.7895e-13    0.40278    2.9879    4.6842    5.4544    5.9138    6.2916     6.623    7.1516     7.855    8.5522    9.0736    9.3831    9.7248    10.167    10.823    12.024    13.222         3.5646                1                 5.8454             0.90441               1.1121               0.42127                 3.829               0.90304               0.90433               0.95416          -8.4219e-05    0.0024054    0.023206    0.056039      0.09234      0.13143      0.17366      0.26139      0.40518        0.563      0.67549      0.73438      0.79564      0.85922      0.92622      0.98393       0.99826  

                         fl_z_r_borr_n     mean       sd       variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min      max      pYis0    pYls0    pYgr0     pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    _______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ____    ______    _____    _____    _____    ___________    ___________    _______    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_c_p5v1           3          1.8113    0.50097    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.27658     0.02    7.3724      0        0        1      -1.3345e-33    -5.1999e-34    0.81915    0.98883     1.141    1.2388    1.2989    1.3692    1.4394    1.5673    1.7319    1.9426    2.1081       2.2    2.3287    2.4926      2.75    3.2641    3.8316        0.87159             0.95752              1.6208             0.97065              0.29876               0.45276                1.0711               0.95144               0.25097                  1             0.00041346    0.0051822    0.030886    0.062013     0.097156      0.13629      0.17419      0.25599      0.39575      0.54827      0.65642      0.71941      0.77688      0.84413      0.91573      0.98071       0.99778  
    cl_mt_pol_c_p5v2           4          1.8134    0.50079    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.27616     0.02    7.3724      0        0        1      -1.9863e-33     1.4488e-35    0.82417    0.98967     1.141    1.2404     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081       2.2    2.3363    2.4926    2.7584    3.2649    3.8341        0.86975             0.95739              1.6195             0.97062              0.29944               0.45909                1.0693               0.95397                0.2508                  1             0.00041162    0.0051168    0.029996    0.062159     0.097623      0.13778      0.17443      0.26112      0.39379      0.54635      0.65618      0.71881      0.77712       0.8436      0.91594      0.98078        0.9978  
    cl_mt_pol_c_p5v3           5          1.8138    0.50085    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.27614     0.02    7.3724      0        0        1      -2.8709e-32     -2.572e-32    0.81915    0.98967     1.141    1.2404     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3404    2.4951    2.7584    3.2649    3.8341         0.8704             0.95728              1.6217             0.97075              0.30103               0.46241                1.0698               0.95485               0.25086                  1              0.0004148    0.0050752    0.029936    0.061969     0.097677      0.13824       0.1738      0.26063      0.39323      0.54579      0.65527      0.71911       0.7795      0.84407       0.9158      0.98074       0.99779  
    cl_mt_pol_c_p5v4           6          1.8143    0.50082    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.27604     0.02    7.3724      0        0        1      -3.6053e-33     1.3092e-34    0.81915    0.98967     1.141    1.2496     1.304    1.3692    1.4344    1.5681    1.7353    1.9426    2.1081       2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.86993             0.95718              1.6213              0.9707              0.30164                0.4638                1.0689               0.95517               0.25082                  1             0.00041042     0.005059    0.029632    0.064615     0.097554      0.13764      0.17339      0.26211      0.39204      0.54516      0.65698      0.71881      0.77928      0.84393      0.91569       0.9807       0.99779  
    cl_mt_pol_c_p5v5           7          1.8143    0.50087    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.27607     0.02    7.3724      0        0        1       6.5047e-33    -5.7352e-34    0.81581     0.9905     1.141    1.2496     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1081       2.2    2.3404    2.4951    2.7584    3.2649    3.8341        0.87065             0.95698              1.6225             0.97071              0.30292               0.46512                1.0687               0.95527               0.25087                  1             0.00041008    0.0051061    0.029656    0.064674     0.097609      0.13765      0.17331      0.26183      0.39215       0.5452      0.65701      0.71905       0.7793       0.8439      0.91567      0.98069       0.99779  
    cl_mt_pol_c_p5v6           8          1.8134    0.50095    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.27625     0.02    7.3724      0        0        1       8.3866e-34     -3.508e-35    0.81246     0.9905     1.141    1.2496     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3404    2.4951    2.7584    3.2649    3.8341          0.873             0.95682               1.626             0.97085              0.30553               0.46742                1.0695               0.95527               0.25095                  1             0.00041126    0.0051873    0.030046    0.064377     0.097316      0.13681      0.17261      0.26107      0.39386      0.54606      0.65518      0.71932      0.77962      0.84416      0.91578      0.98071        0.9978  
    cl_mt_pol_c_p5v7           9          1.8133    0.50101    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02        0.2763     0.02    7.3724      0        0        1       1.4303e-34    -3.3967e-34    0.81246    0.98967     1.141    1.2496     1.304    1.3692    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3404    2.4926    2.7584    3.2649    3.8341        0.87401             0.95661              1.6278             0.97086              0.30737               0.46864                1.0694               0.95515               0.25101                  1              0.0004126    0.0050369    0.029693    0.064572     0.097284      0.13743      0.17295      0.26153      0.39386      0.54612      0.65516      0.71947      0.77963      0.84345      0.91578      0.98071        0.9978  
    cl_mt_pol_c_p5v8          10          1.8126    0.50112    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.27647     0.02    7.3724      0        0        1       1.0366e-33     1.3319e-34    0.80996    0.98883     1.141    1.2496     1.304    1.3583    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3363    2.4926    2.7584    3.2649    3.8341        0.87635              0.9563              1.6312             0.97099              0.31037               0.47087                1.0697               0.95501               0.25112                  1             0.00042566    0.0050334    0.029415    0.064453     0.097184      0.13429      0.17357      0.26095      0.39494      0.54668      0.65559      0.71983       0.7768      0.84357      0.91584      0.98073        0.9978  
    cl_mt_pol_c_p5v9          11          1.8121    0.50115    'cl_mt_pol_c'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.27656     0.02    7.3724      0        0        1       3.9921e-33    -5.5175e-36    0.80745    0.98883     1.141    1.2404     1.304    1.3583    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3363    2.4926    2.7584    3.2649    3.8341        0.87767             0.95617              1.6328             0.97097              0.31238               0.47209                1.0693               0.95476               0.25115                  1             0.00040412     0.005048    0.029663    0.061823     0.097645      0.13486      0.17361      0.26118      0.39568      0.54736      0.65508      0.72001      0.77728      0.84381      0.91593      0.98074        0.9978  
    cl_mt_pol_c_p5v10         12           1.811    0.50124    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.27677     0.02    7.3724      0        0        1         2.83e-33      1.566e-34    0.80243    0.98633     1.141    1.2404     1.304    1.3583    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3321    2.4926     2.755    3.2649    3.8316        0.88055             0.95595              1.6367             0.97102              0.31597               0.47437                1.0695               0.95445               0.25124                  1             0.00040158    0.0050095    0.029935    0.062103     0.097368      0.13634      0.17316      0.26277      0.39696      0.54833      0.65498      0.72042      0.77708      0.84407      0.91545      0.98077       0.99778  
    cl_mt_pol_c_p5v11         13            1.81    0.50135    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.27699     0.02    7.3724      0        0        1      -6.9141e-33     2.5861e-33    0.79742    0.98298     1.141    1.2388     1.304    1.3583    1.4344    1.5681    1.7319    1.9426    2.1064       2.2    2.3287    2.4926      2.75    3.2641    3.8316        0.88361             0.95554              1.6411             0.97116              0.31988               0.47673                1.0699               0.95411               0.25135                  1             0.00040651    0.0050619    0.029873    0.062252     0.097273      0.13722      0.17427      0.26332      0.39908      0.54932       0.6554      0.72087      0.77677      0.84433      0.91554      0.98062       0.99778  
    cl_mt_pol_c_p5v12         14          1.8086    0.50146    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.27727     0.02    7.3724      0        0        1      -1.1358e-35    -2.0698e-34    0.79408    0.98298     1.141    1.2388     1.304    1.3583    1.4344    1.5673    1.7302    1.9342    2.1064     2.195    2.3287    2.4926      2.75    3.2641    3.8316        0.88727             0.95538              1.6467              0.9714              0.32454               0.47974                1.0707               0.95365               0.25146                  1             0.00040502    0.0050629    0.030368    0.063623     0.096916      0.13845      0.17411      0.25609      0.39253      0.54358      0.65612      0.71472      0.77728      0.84467      0.91569      0.98066       0.99778  
    cl_mt_pol_c_p5v13         15          1.8063    0.50169    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.27774     0.02    7.3724      0        0        1       1.3742e-34    -8.0684e-35    0.78572    0.98047     1.141    1.2279     1.304    1.3583    1.4235    1.5564    1.7319    1.9309    2.1064    2.1942    2.3287    2.4926      2.75    3.2599    3.8316         0.8936             0.95488              1.6558             0.97181              0.33215               0.48493                1.0719               0.95313               0.25169                  1              0.0003995    0.0050225    0.030777    0.061664     0.096755      0.13637      0.17236      0.25656      0.39921      0.54482      0.65564       0.7149      0.77809      0.84522      0.91596       0.9806       0.99779  
    cl_mt_pol_c_p5v14         16          1.8042    0.50185    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.27815     0.02    7.3724      0        0        1      -8.5949e-36     1.9949e-35    0.77569    0.97797    1.1351     1.217     1.304    1.3692    1.4293    1.5564    1.7277    1.9309    2.1064    2.1883    2.3271    2.4884      2.75    3.2599    3.8316        0.89976             0.95457              1.6647             0.97223              0.33989               0.49001                1.0729               0.95227               0.25186                  1             0.00038789    0.0049909    0.028846    0.061774     0.097132      0.13817       0.1725      0.25927      0.39308      0.54655      0.65661      0.71467      0.77633      0.84323      0.91618      0.98066        0.9978  
    cl_mt_pol_c_p5v15         17          1.8027      0.502    'cl_mt_pol_c'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.27847     0.02    7.3724      0        0        1       -3.311e-34     2.5025e-34    0.77234    0.97797    1.1351     1.217     1.304    1.3692    1.4277    1.5547    1.7277    1.9309    2.1064    2.1883    2.3254    2.4884      2.75    3.2599    3.8316        0.90433             0.95416               1.671             0.97237              0.34623               0.49325                1.0728               0.95156                 0.252                  1             0.00039996    0.0050093    0.029143    0.062614     0.097732      0.13792      0.17311      0.25497      0.39395      0.54801      0.65717      0.71479      0.77663      0.84356      0.91635      0.98071        0.9978  

                         fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar    min     max         pYis0       pYls0    pYgr0     pYisMINY       pYisMAXY      p0_1        p1        p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1    fracByP1     fracByP5    fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                         _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    ___    ______    ___________    _____    _____    ___________    __________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    __________    _________    ________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_pol_k_p5v1           3          4.5967    2.2471    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.48886      0     21.837    -1.4233e-33      0        1      -1.4233e-33    1.8127e-11     1.0174    1.3379    1.8513    2.2102    2.5858    2.8085    2.9885    3.5107    4.0546     4.906    5.7034    6.2451    6.5574    7.6426    8.7334    12.369    17.001         3.7031             0.90696              6.7882             0.90628              0.66748               0.22551                5.0497                  1                   1.0711               0.95144          0.00021184    0.0025348    0.016794    0.040078     0.065564     0.095988      0.12684      0.19751      0.32205      0.46909      0.58565      0.64775      0.71653      0.79471      0.88145      0.96932       0.99608  
    cl_mt_pol_k_p5v2           4          4.6008    2.2382    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.48648      0     21.837    -1.9204e-33      0        1      -1.9204e-33     1.828e-11     1.0227    1.3379    1.8576    2.2102    2.6836    2.8049    2.9882    3.5196     4.078    4.8961    5.7355    6.2189    6.5269    7.6064    8.7989    12.369    17.001         3.6922             0.90938              6.7821             0.90948              0.70331               0.24126                5.0095                  1                   1.0693               0.95397          0.00019924    0.0025532    0.017198    0.040159      0.06697     0.096006      0.12744      0.19816       0.3215      0.47086      0.58422      0.64877      0.71725      0.79413      0.88162      0.96972       0.99609  
    cl_mt_pol_k_p5v3           5          4.6001    2.2369    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.48627      0     21.837    -1.7005e-32      0        1      -1.7005e-32    1.8331e-11    0.98346    1.3411    1.8652    2.2128     2.596    2.8085    3.0029    3.5107    4.1688    4.9025    5.6714    6.2389    6.5532    7.6163    8.8115    12.369    17.001         3.6957             0.91007              6.7931             0.91049               0.7195               0.24747                5.0038                  1                   1.0698               0.95485          0.00018663    0.0026013    0.017328    0.042981     0.066098     0.096843       0.1292      0.20058      0.32139      0.47005      0.58439      0.64851      0.71753      0.79389      0.88239      0.96974       0.99608  
    cl_mt_pol_k_p5v4           6          4.6041    2.2344    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.48531      0     21.837    -3.7266e-33      0        1      -3.7266e-33    1.8358e-11    0.95814    1.3424      1.87    2.2128    2.5889    2.8133    3.0029    3.5354    4.0945    4.9034    5.7034    6.2314    6.5671    7.6419    8.7334    12.369    17.001         3.6914             0.91036              6.7876             0.91083              0.72603               0.25022                4.9927                  1                   1.0689               0.95517          0.00018686    0.0025981    0.016938    0.041599     0.066452     0.096018        0.128       0.1982      0.32167       0.4706      0.58839       0.6488      0.71764      0.79419      0.88218      0.96969       0.99608  
    cl_mt_pol_k_p5v5           7          4.6043    2.2337    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.48513      0     21.837     6.4654e-33      0        1       6.4654e-33    1.8359e-11    0.95542    1.3424    1.8899    2.2128    2.5967    2.8101    3.0076    3.5127    4.0749     4.912    5.7034    6.2399    6.5695    7.6158    8.7334    12.369    17.001          3.693             0.91018              6.7895             0.91081              0.73128               0.25178                4.9894                  1                   1.0687               0.95527          0.00019248    0.0026049    0.017027    0.041434     0.066456     0.096189      0.12783      0.19812      0.32481      0.47056      0.58653      0.64891      0.71766      0.79415      0.88221      0.96983       0.99608  
    cl_mt_pol_k_p5v6           8           4.599    2.2349    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.48597      0     21.837     8.3301e-34      0        1       8.3301e-34    1.8337e-11    0.95542    1.3424    1.8702    2.2128    2.5889    2.8101    3.0097    3.5107    4.0749    4.9121    5.6714    6.2399     6.529    7.6306    8.7348    12.369    17.001         3.7042             0.90999               6.804             0.91059              0.73949               0.25358                 4.995                  1                   1.0695               0.95527          0.00018901    0.0025737    0.016996    0.041407     0.066569     0.095863      0.12766      0.20062      0.32375      0.47402      0.58487      0.64855      0.71746      0.79393      0.88189      0.96981       0.99608  
    cl_mt_pol_k_p5v7           9          4.6002    2.2347    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.48577      0     21.837    -1.5135e-34      0        1      -1.5135e-34    1.8347e-11    0.95574    1.3424    1.8619    2.2128    2.5889    2.8183    3.0112    3.5107    4.0749    4.9121    5.6714    6.2455    6.5191    7.6378    8.7731    12.369    17.001         3.7072              0.9097              6.8066             0.91018              0.74345               0.25413                4.9937                  1                   1.0694               0.95515          0.00018753    0.0026409    0.017014    0.040771     0.067308     0.096182      0.12911      0.19972      0.32247      0.47215      0.58393      0.64883      0.71762      0.79399      0.88248       0.9698       0.99608  
    cl_mt_pol_k_p5v8          10           4.599    2.2353    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.48604      0     21.837     8.5022e-34      0        1       8.5022e-34    1.8324e-11    0.95574    1.3424    1.8546    2.2128    2.5858    2.8098    3.0042    3.5107     4.078    4.9121    5.7034     6.248    6.5269    7.6306    8.7731    12.365    17.001         3.7167             0.90924              6.8166             0.90966              0.75043               0.25524                4.9964                  1                   1.0697               0.95501          0.00019104     0.002584    0.017025     0.04029     0.066919     0.095857      0.12749      0.20024      0.32283      0.47188      0.58789      0.64893      0.71754      0.79392       0.8825      0.96936       0.99608  
    cl_mt_pol_k_p5v9          11          4.5978    2.2348    'cl_mt_pol_k'    'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.48606      0     21.837     3.8713e-33      0        1       3.8713e-33    1.8295e-11    0.95542    1.3439    1.8546    2.2319    2.5858    2.8179    3.0029    3.5099     4.078     4.912    5.6714    6.2479    6.5532    7.6401    8.7334    12.365    16.998         3.7203             0.90888              6.8177             0.90912               0.7539               0.25549                4.9944                  1                   1.0693               0.95476          0.00019259     0.002594    0.017055    0.040126     0.066675     0.095877      0.12964      0.19775      0.32304      0.47045      0.58469      0.64871       0.7193      0.79393      0.88175      0.96935       0.99606  
    cl_mt_pol_k_p5v10         12          4.5944    2.2355    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.48657      0     21.837     2.9139e-33      0        1       2.9139e-33    1.8236e-11    0.95379    1.3439    1.8576    2.2319    2.5858    2.8092    2.9987    3.5099    4.0749    4.9041    5.6714    6.2477    6.5532    7.6306    8.7334    12.326    16.998         3.7312             0.90824              6.8282             0.90832              0.76122               0.25625                4.9975                  1                   1.0695               0.95445          0.00018849    0.0025749    0.017389    0.039995       0.0667     0.095944      0.12775      0.19753      0.32384      0.47014       0.5851      0.64844      0.71876      0.79379      0.88226      0.96934       0.99606  
    cl_mt_pol_k_p5v11         13          4.5904    2.2367    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.48726      0     21.837    -9.2681e-33      0        1      -9.2681e-33    1.8187e-11    0.95542    1.3452    1.8576    2.2826    2.5788    2.8085    2.9882    3.5099    4.0546    4.9025    5.6714    6.2418    6.5532    7.6306    8.7334    12.326    16.998         3.7433             0.90734               6.841             0.90738              0.76816                0.2566                5.0029                  1                   1.0699               0.95411          0.00019496    0.0025497     0.01712    0.040142     0.065995     0.095631      0.12829      0.19841      0.32262      0.47016      0.58443      0.64836      0.71827      0.79365      0.88195      0.96936       0.99606  
    cl_mt_pol_k_p5v12         14          4.5849    2.2389    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.48832      0     21.837     5.8428e-35      0        1       5.8428e-35    1.8145e-11    0.95542    1.3457    1.8576    2.2784    2.5636    2.8048    2.9871    3.4661    4.0546    4.9025    5.6714    6.2399    6.5532    7.6378    8.7334    12.326    16.998         3.7598             0.90676              6.8597             0.90637              0.77645               0.25708                5.0125                  1                   1.0707               0.95365          0.00019374    0.0025762     0.01715     0.03986     0.065908     0.095432      0.12705      0.19681      0.32135      0.47002      0.58465      0.64881      0.71902      0.79344      0.88166      0.96934       0.99606  
    cl_mt_pol_k_p5v13         15          4.5746    2.2417    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.49003      0     21.837      4.256e-34      0        1        4.256e-34    1.8068e-11    0.95379    1.3501    1.8576    2.2319    2.5027    2.8014     2.979    3.4605    4.0477    4.9008    5.6714    6.2314    6.5269    7.6064    8.7334    12.283    16.998         3.7865             0.90552              6.8894             0.90495              0.79227               0.25887                5.0252                  1                   1.0719               0.95313          0.00019112    0.0025525    0.017365    0.039867     0.065867     0.095042      0.12659      0.19843      0.32035      0.46857      0.58545       0.6473      0.71643      0.79311      0.88166      0.96929       0.99607  
    cl_mt_pol_k_p5v14         16          4.5677     2.245    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02        0.4915      0     21.837    -2.0796e-35      0        1      -2.0796e-35     1.797e-11    0.95289    1.3512    1.8521    2.2167    2.4867    2.7967    2.9567    3.4605     4.054    4.9033    5.6714    6.2298    6.5191    7.6064    8.7105    12.277    16.998         3.8134             0.90437              6.9191             0.90334                0.806               0.25975                5.0402                  1                   1.0729               0.95227          0.00019082    0.0025749    0.016983    0.039623     0.065368     0.094681      0.12593      0.19794      0.31883      0.46782      0.58476      0.64692      0.71678       0.7929      0.88136      0.96917       0.99608  
    cl_mt_pol_k_p5v15         17          4.5646    2.2458    'cl_mt_pol_k'    'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.49201      0     21.837    -2.0277e-34      0        1      -2.0277e-34    1.7909e-11    0.95289     1.354    1.8482    2.2177    2.4742    2.7972    2.9617    3.4516    4.0477    4.9046    5.6714    6.2314    6.5269    7.6064    8.7105     12.24    16.998          3.829             0.90304              6.9315             0.90159              0.81509               0.25956                5.0436                  1                   1.0728               0.95156          0.00019141    0.0025553    0.017098    0.039723     0.065359     0.094228      0.12579      0.19641      0.31995      0.46799      0.58502      0.64702      0.71592       0.7927      0.88115      0.96917       0.99609  

                       fl_z_r_borr_n     mean       sd      variablenames     var_param_key     it_test_grp    it_cur_param    fl_z_r_borr_poiss_mean    fl_z_r_borr_max    fl_b_bd    fl_c_min    coefofvar     min      max        pYis0         pYls0       pYgr0      pYisMINY       pYisMAXY       p0_1        p1         p5       p10       p15       p20       p25       p35       p50       p65       p75       p80       p85       p90       p95       p99      p99_9     fl_cov_cl_mt_val    fl_cor_cl_mt_val    fl_cov_cl_mt_coh    fl_cor_cl_mt_coh    fl_cov_cl_mt_pol_a    fl_cor_cl_mt_pol_a    fl_cov_cl_mt_pol_k    fl_cor_cl_mt_pol_k    fl_cov_cl_mt_pol_c    fl_cor_cl_mt_pol_c    fracByP0_1      fracByP1      fracByP5     fracByP10    fracByP15    fracByP20    fracByP25    fracByP35    fracByP50    fracByP65    fracByP75    fracByP80    fracByP85    fracByP90    fracByP95    fracByP99    fracByP99_9
                       _____________    ______    ______    _____________    _______________    ___________    ____________    ______________________    _______________    _______    ________    _________    _____    ______    __________    _________    _______    ___________    __________    ________    _______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ______    ________________    ________________    ________________    ________________    __________________    __________________    __________________    __________________    __________________    __________________    ___________    ___________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    _________    ___________

    cl_mt_coh_p5v1           3          6.4537    3.3332     'cl_mt_coh'     'fl_z_r_borr_n'        14               1                   20                   0.095           -20        0.02       0.51648     -4.67    57.258    0.00014978    0.0033436    0.99651    -1.3345e-33    6.8659e-13    -0.94869    0.94706    2.3513    3.0535    3.5449     3.896    4.2471     4.879    5.7918    6.9854    7.9684    8.6003    9.4428    10.707    12.743    17.728    24.468          5.463             0.90203               11.11                1                  2.7012               0.61525                6.7882               0.90628                1.6208               0.97065          -0.00025334     0.00026731     0.012105    0.034384     0.061305     0.088374      0.12405      0.19818      0.31366      0.47065      0.57975      0.64066       0.7105      0.79191      0.87835      0.96865       0.99588  
    cl_mt_coh_p5v2           4          6.4766    3.3318     'cl_mt_coh'     'fl_z_r_borr_n'        14               2                   20                   0.095           -20        0.02       0.51443     -4.67    57.258    0.00014643    0.0033269    0.99653    -1.9863e-33    6.9044e-13    -0.94869    0.94706    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.743    17.728    24.468         5.4524             0.90213              11.101                1                  2.6991               0.62199                6.7821               0.90948                1.6195               0.97062          -0.00025542     0.00025455     0.011811    0.033566     0.059841     0.091277      0.12078      0.19557      0.31984      0.46924      0.57831      0.64604       0.7159      0.79123      0.87804      0.96858       0.99587  
    cl_mt_coh_p5v3           5          6.4806    3.3354     'cl_mt_coh'     'fl_z_r_borr_n'        14               3                   20                   0.095           -20        0.02       0.51467     -4.67    57.258    0.00014282    0.0034304    0.99643    -2.8709e-32    6.9239e-13     -1.0189    0.94706    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.4632             0.90227              11.125                1                  2.7099                0.6251                6.7931               0.91049                1.6217               0.97075          -0.00025068     0.00024236     0.011767     0.03356     0.059707     0.090994      0.12064      0.19504      0.31911      0.46826      0.57728      0.64517      0.71531      0.79073      0.88032       0.9685       0.99586  
    cl_mt_coh_p5v4           6          6.4869    3.3351     'cl_mt_coh'     'fl_z_r_borr_n'        14               4                   20                   0.095           -20        0.02       0.51413     -4.67    57.258    0.00014908     0.003451     0.9964    -3.6053e-33    6.9338e-13     -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.4612             0.90234              11.123                1                   2.714               0.62665                6.7876               0.91083                1.6213                0.9707          -0.00025397     0.00012511      0.01181    0.033304     0.059306     0.090283      0.11981      0.19381      0.31849      0.46785      0.57697      0.64494      0.71512      0.79059      0.88029      0.96849       0.99586  
    cl_mt_coh_p5v5           7          6.4857    3.3372     'cl_mt_coh'     'fl_z_r_borr_n'        14               5                   20                   0.095           -20        0.02       0.51455     -4.67    57.258    0.00015291    0.0035947    0.99625     6.5047e-33    6.9345e-13     -1.0189    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.4702              0.9024              11.137                1                  2.7249               0.62796                6.7895               0.91081                1.6225               0.97071          -0.00026698     0.00011665     0.011757    0.033219     0.059172     0.090307      0.11982      0.19378      0.31831      0.46777      0.57679      0.64482      0.71503      0.79047      0.88025      0.96848       0.99585  
    cl_mt_coh_p5v6           8          6.4728    3.3433     'cl_mt_coh'     'fl_z_r_borr_n'        14               6                   20                   0.095           -20        0.02       0.51651     -4.67    57.258    0.00016369    0.0037893    0.99605     8.3866e-34    6.9256e-13     -1.0891    0.87685    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.4957             0.90253              11.178                1                  2.7476               0.62983                 6.804               0.91059                 1.626               0.97085          -0.00026607     0.00010655     0.012004    0.033937     0.060057     0.091153      0.12142      0.19466       0.3187      0.46788       0.5768      0.64482      0.71498      0.79033      0.88017      0.96846       0.99585  
    cl_mt_coh_p5v7           9            6.47    3.3465     'cl_mt_coh'     'fl_z_r_borr_n'        14               7                   20                   0.095           -20        0.02       0.51723     -4.67    57.258    0.00016314     0.003948    0.99589     1.4303e-34    6.9286e-13     -1.1593    0.80664    2.3513    3.0535    3.5449    3.9662    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.5085             0.90264              11.199                1                  2.7646               0.63105                6.8066               0.91018                1.6278               0.97086          -0.00026349    -1.5664e-05     0.012053    0.034002     0.060158     0.091173      0.12135       0.1943      0.31857      0.46772      0.57658      0.64469      0.71486      0.79019       0.8801      0.96844       0.99585  
    cl_mt_coh_p5v8          10          6.4598    3.3524     'cl_mt_coh'     'fl_z_r_borr_n'        14               8                   20                   0.095           -20        0.02       0.51897     -4.67    57.258     0.0001722    0.0042097    0.99562     1.0366e-33    6.9199e-13     -1.1593    0.73642    2.2811    2.9832    3.4747     3.896    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.813    17.728    24.468         5.5348             0.90281              11.239                1                  2.7909               0.63292                6.8166               0.90966                1.6312               0.97099          -0.00028256      -0.000122     0.010955    0.031464     0.057169     0.086748      0.12206      0.19471      0.31866      0.46772      0.57646      0.64454      0.71476      0.79007       0.8801      0.96844       0.99585  
    cl_mt_coh_p5v9          11           6.451    3.3556     'cl_mt_coh'     'fl_z_r_borr_n'        14               9                   20                   0.095           -20        0.02       0.52017     -4.67    57.258    0.00017363    0.0044003    0.99543     3.9921e-33    6.9092e-13     -1.2295    0.73642    2.2811    2.9832    3.4747     3.896    4.2471     4.879     5.862    6.9854    7.9684    8.6705     9.513    10.707    12.743    17.728    24.468         5.5493              0.9029               11.26                1                  2.8097               0.63414                6.8177               0.90912                1.6328               0.97097          -0.00027817    -0.00013224     0.011037    0.031741     0.057547     0.087243      0.12269      0.19514      0.31896      0.46809        0.577      0.64484       0.7149       0.7901       0.8775      0.96845       0.99585  
    cl_mt_coh_p5v10         12          6.4355    3.3627     'cl_mt_coh'     'fl_z_r_borr_n'        14              10                   20                   0.095           -20        0.02       0.52253     -4.67    57.258     0.0001867    0.0046992    0.99511       2.83e-33    6.9056e-13     -1.2998    0.66621    2.2109    2.9832    3.4747     3.896    4.1769    4.8088    5.7918    6.9854    7.9684    8.6705     9.513    10.707    12.743    17.728    24.468         5.5805             0.90305              11.308                1                  2.8431               0.63623                6.8282               0.90832                1.6367               0.97102          -0.00028552    -0.00025233     0.010048    0.032356      0.05848     0.088198      0.11625      0.18631      0.31148      0.46837      0.57726      0.64495      0.71494      0.79028      0.87747      0.96843       0.99585  
    cl_mt_coh_p5v11         13          6.4188    3.3707     'cl_mt_coh'     'fl_z_r_borr_n'        14              11                   20                   0.095           -20        0.02       0.52513     -4.67    57.258    0.00019018    0.0051101     0.9947    -6.9141e-33    6.8885e-13       -1.37      0.596    2.2109    2.9832    3.4747     3.896    4.1769    4.8088    5.7918    6.9854    7.9684    8.6003    9.4428    10.707    12.743    17.728    24.468         5.6155             0.90322              11.361                1                  2.8793               0.63825                 6.841               0.90738                1.6411               0.97116          -0.00029519    -0.00036656     0.010233    0.032721     0.059119     0.089181      0.11758      0.18797      0.31199      0.46853      0.57729      0.63875      0.70866      0.79017      0.87742      0.96842       0.99584  
    cl_mt_coh_p5v12         14          6.3969    3.3804     'cl_mt_coh'     'fl_z_r_borr_n'        14              12                   20                   0.095           -20        0.02       0.52845     -4.67    57.258    0.00019432    0.0054915    0.99431    -1.1358e-35    6.8722e-13       -1.37    0.52578    2.1407     2.913    3.4045    3.8258    4.1769    4.8088    5.7918    6.9152    7.9684    8.6003    9.4428    10.707    12.743    17.728    24.468         5.6561             0.90344              11.427                1                  2.9209                0.6405                6.8597               0.90637                1.6467                0.9714          -0.00032607    -0.00048162     0.009357    0.030741     0.054553     0.085586      0.11968      0.19061      0.31295      0.45762      0.57727      0.63875      0.70855      0.79002      0.87731      0.96839       0.99584  
    cl_mt_coh_p5v13         15          6.3623    3.3961     'cl_mt_coh'     'fl_z_r_borr_n'        14              13                   20                   0.095           -20        0.02       0.53379     -4.67    57.258    0.00021949    0.0061123    0.99367     1.3742e-34    6.8431e-13     -1.5104    0.45557    2.0705    2.8428    3.4045    3.7556    4.1066    4.7386    5.7215    6.9152    7.8982    8.6003    9.4428    10.636    12.743    17.658    24.398         5.7253             0.90377              11.534                1                  2.9884               0.64452                6.8894               0.90495                1.6558               0.97181          -0.00031692    -0.00060916      0.00872     0.02885     0.056907     0.082369      0.11492      0.18403      0.30741      0.45816      0.57158      0.63868      0.70838      0.78552      0.87718      0.96764       0.99575  
    cl_mt_coh_p5v14         16          6.3302    3.4117     'cl_mt_coh'     'fl_z_r_borr_n'        14              14                   20                   0.095           -20        0.02       0.53896     -4.67    57.258    0.00023642     0.006845    0.99292    -8.5949e-36    6.8126e-13     -1.5806    0.38536    2.0705    2.8428    3.3343    3.6854    4.0364    4.7386    5.7215    6.9152    7.8982    8.6003    9.4428    10.636    12.743    17.658    24.398         5.7937             0.90414               11.64                1                  3.0562               0.64812                6.9191               0.90334                1.6647               0.97223          -0.00033756     -0.0007592    0.0090781    0.029819     0.055086     0.081672      0.11055      0.18594      0.30801      0.45823      0.57148      0.63863      0.70827      0.78539      0.87706      0.96761       0.99574  
    cl_mt_coh_p5v15         17          6.3049    3.4233     'cl_mt_coh'     'fl_z_r_borr_n'        14              15                   20                   0.095           -20        0.02       0.54296     -4.67    57.258    0.00025107    0.0075799    0.99217     -3.311e-34    6.7895e-13     -1.6508    0.24493    2.0003    2.7726    3.2641    3.6854    4.0364    4.6684    5.7215    6.9152    7.8982    8.6003    9.4428    10.636    12.743    17.658    24.398         5.8454             0.90441              11.719                1                  3.1165               0.65107                6.9315               0.90159                 1.671               0.97237          -0.00035127    -0.00094071    0.0082147     0.02764      0.05164     0.082868      0.11226      0.17865      0.30943      0.45858       0.5717      0.63888      0.70834      0.78541      0.87701      0.96759       0.99574  

Denser Simulation (GRID)

it_size_type = 2;
ar_it_plot_sets = [51,52,53,54, 5,6,103,153, 61,62,63,64];
bl_simu_cross = 'g';

% Simulate along parameters
[tb_outcomes, support_map] = ff_az_test_analyze( ...
    ar_it_plot_sets, bl_simu_cross, it_size_type, cl_st_param_keys_grid, ...
    param_map, support_map, param_tstar_grid_map);

close all;
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: SUPPORT_MAP
----------------------------------------
  Map with properties:

        Count: 51
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 34 ; key = st_img_name_main ; val = _default
pos = 35 ; key = st_img_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/img/
pos = 36 ; key = st_img_prefix ; val = 
pos = 37 ; key = st_img_suffix ; val = _p9.png
pos = 38 ; key = st_mat_name_main ; val = _default
pos = 39 ; key = st_mat_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/mat/
pos = 40 ; key = st_mat_prefix ; val = 
pos = 41 ; key = st_mat_suffix ; val = _p9
pos = 42 ; key = st_mat_test_name_main ; val = r
pos = 43 ; key = st_mat_test_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//test/ff_ipwkbzr_ds_vecsv/mat/
pos = 44 ; key = st_mat_test_prefix ; val = nbc_
pos = 45 ; key = st_mat_test_suffix ; val = _g104_cg_t2l20
pos = 46 ; key = st_matimg_path_root ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr/
pos = 47 ; key = st_profile_name_main ; val = _default
pos = 48 ; key = st_profile_path ; val = C:/Users/fan/CodeDynaAsset//m_ipwkbzr//solve/profile/
pos = 49 ; key = st_profile_prefix ; val = 
pos = 50 ; key = st_profile_suffix ; val = _p9
pos = 51 ; key = st_title_prefix ; val = 
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                    i     idx    value
                                    __    ___    _____

    bl_display                       1     1        0 
    bl_display_defparam              2     2        0 
    bl_display_dist                  3     3        0 
    bl_display_evf                   4     4        0 
    bl_display_final                 5     5        0 
    bl_display_final_dist            6     6        1 
    bl_display_final_dist_detail     7     7        0 
    bl_display_funcgrids             8     8        0 
    bl_display_graph_stats           9     9        0 
    bl_display_simu_stats           10    10        1 
    bl_graph                        11    11        0 
    bl_graph_coh_t_coh              12    12        0 
    bl_graph_evf                    13    13        0 
    bl_graph_funcgrids              14    14        0 
    bl_graph_funcgrids_detail       15    15        0 
    bl_graph_onebyones              16    16        1 
    bl_graph_pol_lvl                17    17        0 
    bl_graph_pol_pct                18    18        0 
    bl_graph_val                    19    19        0 
    bl_img_save                     20    20        0 
    bl_mat                          21    21        0 
    bl_mat_test                     22    22        1 
    bl_post                         23    23        1 
    bl_profile                      24    24        0 
    bl_profile_dist                 25    25        0 
    bl_replacefile                  26    26        0 
    bl_time                         27    27        1 
    bl_timer                        28    28        1 
    it_display_every                29    29       20 
    it_display_final_colmax         30    30       12 
    it_display_final_rowmax         31    31      100 
    it_display_summmat_colmax       32    32        7 
    it_display_summmat_rowmax       33    33        7 

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_MAP
----------------------------------------
  Map with properties:

        Count: 55
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
pos = 4 ; key = cl_st_param_keys ; val = fl_z_r_borr_poiss_mean
pos = 51 ; key = st_analytical_stationary_type ; val = eigenvector
pos = 52 ; key = st_model ; val = ipwkbzr
pos = 53 ; key = st_v_coh_z_interp_method ; val = method_cell
pos = 54 ; key = st_z_r_borr_drv_ele_type ; val = unif
pos = 55 ; key = st_z_r_borr_drv_prb_type ; val = poiss
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         i    idx    rowN    colN    mean     std      min    max
                         _    ___    ____    ____    ____    ______    ___    ___

    ar_param_keys_idx    1     1      1       2       7      4.2426     4     10 

----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Scalars in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                               i     idx     value 
                               __    ___    _______

    bl_default                  1     2           0
    bl_loglin                   2     3           0
    fl_Amean                    3     5           1
    fl_a_max                    4     6          50
    fl_a_min                    5     7           0
    fl_alpha                    6     8        0.36
    fl_b_bd                     7     9         -20
    fl_beta                     8    10        0.94
    fl_c_min                    9    11        0.02
    fl_coh_interp_grid_gap     10    12         0.1
    fl_crra                    11    13         1.5
    fl_default_wprime          12    14           0
    fl_delta                   13    15        0.08
    fl_k_max                   14    16          70
    fl_k_min                   15    17           0
    fl_loglin_threshold        16    18           1
    fl_nan_replace             17    19       -9999
    fl_r_save                  18    20       0.025
    fl_tol_dist                19    21       1e-05
    fl_tol_pol                 20    22       1e-05
    fl_tol_val                 21    23       1e-05
    fl_w                       22    24     0.44365
    fl_w_interp_grid_gap       23    25         0.1
    fl_w_max                   24    26          50
    fl_w_min                   25    27         -20
    fl_z_mu                    26    28           0
    fl_z_r_borr_max            27    29       0.095
    fl_z_r_borr_min            28    30       0.025
    fl_z_r_borr_n              29    31           5
    fl_z_r_borr_poiss_mean     30    32          20
    fl_z_rho                   31    33         0.8
    fl_z_sig                   32    34         0.2
    fl_z_wage_mu               33    35           0
    fl_z_wage_rho              34    36         0.8
    fl_z_wage_sig              35    37         0.2
    it_a_n                     36    38         750
    it_ak_perc_n               37    39          50
    it_c_interp_grid_gap       38    40      0.0001
    it_maxiter_dist            39    41        1000
    it_maxiter_val             40    42         250
    it_size_type               41    43           2
    it_st_simu_type_g_seed     42    44         123
    it_st_simu_type_g_simun    43    45          20
    it_tol_pol_nochange        44    46          25
    it_trans_power_dist        45    47        1000
    it_w_perc_n                46    48          50
    it_z_n                     47    49          55
    it_z_wage_n                48    50          11

----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Begin: Show all key and value pairs from container
CONTAINER NAME: PARAM_TSTAR_MAP
----------------------------------------
  Map with properties:

        Count: 19
      KeyType: char
    ValueType: any

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
----------------------------------------
----------------------------------------
----------------------------------------
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Matrix in Container and Sizes and Basic Statistics
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                              i     idx    rowN    colN     mean       std        min     max 
                              __    ___    ____    ____    ______    ________    _____    ____

    fl_a_max                   1     1      1        5         65      11.859       50      80
    fl_alpha                   2     2      1        5        0.4    0.079057      0.3     0.5
    fl_b_bd                    3     3      1        5      -12.5      5.9293      -20      -5
    fl_beta                    4     4      1       15       0.92    0.031944     0.87    0.97
    fl_c_min                   5     5      1        5     0.0155    0.011463    0.001    0.03
    fl_crra                    6     6      1       15          3      1.2778        1       5
    fl_delta                   7     7      1        5       0.08    0.047434     0.02    0.14
    fl_r_borr                  8     8      1        5      0.125    0.098821        0    0.25
    fl_r_save                  9     9      1       10       0.03    0.020184        0    0.06
    fl_w                      10    10      1        5       1.25     0.11859      1.1     1.4
    fl_z_r_borr_max           11    11      1        5     0.1225    0.021741    0.095    0.15
    fl_z_r_borr_n             12    12      1        6         15      7.4833        5      25
    fl_z_r_borr_poiss_mean    13    13      1       10          6      2.6912        2      10
    fl_z_rho                  14    14      1        5      0.495     0.39133        0    0.99
    fl_z_sig                  15    15      1        5      0.255     0.19369     0.01     0.5
    fl_z_wage_rho             16    16      1        5      0.495     0.39133        0    0.99
    fl_z_wage_sig             17    17      1        5      0.255     0.19369     0.01     0.5
    it_a_n                    18    18      1        5       1300      948.68      100    2500
    it_z_n                    19    19      1        5         15      7.9057        5      25