taxcalc 5.2.0__py3-none-any.whl → 6.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- taxcalc/__init__.py +3 -3
- taxcalc/calcfunctions.py +2 -2
- taxcalc/calculator.py +4 -4
- taxcalc/cli/tc.py +16 -19
- taxcalc/data.py +2 -3
- taxcalc/decorators.py +9 -8
- taxcalc/growfactors.py +2 -1
- taxcalc/policy.py +6 -23
- taxcalc/policy_current_law.json +31 -631
- taxcalc/records.py +78 -82
- taxcalc/records_variables.json +106 -106
- taxcalc/reforms/ARPA.out.csv +9 -9
- taxcalc/taxcalcio.py +101 -77
- taxcalc/tests/conftest.py +20 -15
- taxcalc/tests/puf_var_correl_coeffs_2016.csv +24 -24
- taxcalc/tests/puf_var_wght_means_by_year.csv +11 -11
- taxcalc/tests/pufcsv_agg_expect.csv +20 -20
- taxcalc/tests/pufcsv_mtr_expect.txt +21 -21
- taxcalc/tests/reforms.json +3 -1
- taxcalc/tests/reforms_expect.csv +54 -54
- taxcalc/tests/test_4package.py +8 -9
- taxcalc/tests/test_calculator.py +55 -18
- taxcalc/tests/test_consumption.py +2 -2
- taxcalc/tests/test_cpscsv.py +2 -24
- taxcalc/tests/test_data.py +11 -3
- taxcalc/tests/test_decorators.py +57 -52
- taxcalc/tests/test_growdiff.py +2 -2
- taxcalc/tests/test_parameters.py +101 -53
- taxcalc/tests/test_policy.py +154 -154
- taxcalc/tests/test_records.py +144 -9
- taxcalc/tests/test_reforms.py +104 -104
- taxcalc/tests/test_taxcalcio.py +13 -62
- taxcalc/utils.py +3 -3
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/METADATA +3 -6
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/RECORD +39 -46
- taxcalc/puf_ratios.csv +0 -26
- taxcalc/puf_weights.csv.gz +0 -0
- taxcalc/reforms/clp.out.csv +0 -10
- taxcalc/tests/test_compare.py +0 -330
- taxcalc/tests/test_compatible_data.py +0 -334
- taxcalc/tests/test_puf_var_stats.py +0 -194
- taxcalc/tests/test_pufcsv.py +0 -328
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/WHEEL +0 -0
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/entry_points.txt +0 -0
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/licenses/LICENSE +0 -0
- {taxcalc-5.2.0.dist-info → taxcalc-6.0.0.dist-info}/top_level.txt +0 -0
taxcalc/reforms/ARPA.out.csv
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
RECID,c00100,standard,c04800,iitax,payrolltax
|
2
|
-
11,30000.00,
|
3
|
-
12,60000.00,
|
4
|
-
13,460000.00,
|
5
|
-
21,60000.00,
|
6
|
-
22,120000.00,
|
7
|
-
23,240000.00,
|
8
|
-
31,30000.00,
|
9
|
-
32,60000.00,
|
10
|
-
33,120000.00,
|
2
|
+
11,30000.00,12950.00,17050.00,1840.50,4590.00
|
3
|
+
12,60000.00,12950.00,47050.00,5968.00,9180.00
|
4
|
+
13,460000.00,12950.00,447050.00,132560.50,31568.00
|
5
|
+
21,60000.00,25900.00,34100.00,-319.00,9180.00
|
6
|
+
22,120000.00,25900.00,94100.00,7936.00,18360.00
|
7
|
+
23,240000.00,25900.00,214100.00,35055.00,36720.00
|
8
|
+
31,30000.00,19400.00,10600.00,-3095.77,4590.00
|
9
|
+
32,60000.00,19400.00,40600.00,2579.00,9180.00
|
10
|
+
33,120000.00,19400.00,100600.00,14480.00,18360.00
|
taxcalc/taxcalcio.py
CHANGED
@@ -9,6 +9,7 @@ import os
|
|
9
9
|
import gc
|
10
10
|
import copy
|
11
11
|
import sqlite3
|
12
|
+
from pathlib import Path
|
12
13
|
import numpy as np
|
13
14
|
import pandas as pd
|
14
15
|
import paramtools
|
@@ -75,11 +76,9 @@ class TaxCalcIO():
|
|
75
76
|
self.errmsg = ''
|
76
77
|
# check name and existence of INPUT file
|
77
78
|
inp = 'x'
|
78
|
-
self.puf_input_data = False
|
79
79
|
self.cps_input_data = False
|
80
|
+
self.puf_input_data = False
|
80
81
|
self.tmd_input_data = False
|
81
|
-
self.tmd_weights = None
|
82
|
-
self.tmd_gfactor = None
|
83
82
|
if isinstance(input_data, str):
|
84
83
|
# remove any leading directory path from INPUT filename
|
85
84
|
fname = os.path.basename(input_data)
|
@@ -90,12 +89,23 @@ class TaxCalcIO():
|
|
90
89
|
msg = 'INPUT file name does not end in .csv'
|
91
90
|
self.errmsg += f'ERROR: {msg}\n'
|
92
91
|
# check existence of INPUT file
|
93
|
-
self.puf_input_data = input_data.endswith('puf.csv')
|
94
92
|
self.cps_input_data = input_data.endswith('cps.csv')
|
93
|
+
self.puf_input_data = input_data.endswith('puf.csv')
|
95
94
|
self.tmd_input_data = input_data.endswith('tmd.csv')
|
96
95
|
if not self.cps_input_data and not os.path.isfile(input_data):
|
97
96
|
msg = 'INPUT file could not be found'
|
98
97
|
self.errmsg += f'ERROR: {msg}\n'
|
98
|
+
# if puf_input_data is True, construct weights and ratios paths
|
99
|
+
if self.puf_input_data: # pragma: no cover
|
100
|
+
puf_dir = os.path.dirname(input_data)
|
101
|
+
self.puf_weights = os.path.join(puf_dir, 'puf_weights.csv.gz')
|
102
|
+
self.puf_ratios = os.path.join(puf_dir, 'puf_ratios.csv')
|
103
|
+
if not os.path.isfile(self.puf_weights):
|
104
|
+
msg = f'weights file {self.puf_weights} could not be found'
|
105
|
+
self.errmsg += f'ERROR: {msg}\n'
|
106
|
+
if not os.path.isfile(self.puf_ratios):
|
107
|
+
msg = f'gfactor file {self.puf_ratios} could not be found'
|
108
|
+
self.errmsg += f'ERROR: {msg}\n'
|
99
109
|
# if tmd_input_data is True, construct weights and gfactor paths
|
100
110
|
if self.tmd_input_data: # pragma: no cover
|
101
111
|
tmd_dir = os.path.dirname(input_data)
|
@@ -253,7 +263,7 @@ class TaxCalcIO():
|
|
253
263
|
delete_file(self.output_filename.replace('.xxx', ext))
|
254
264
|
|
255
265
|
def init(self, input_data, tax_year, baseline, reform, assump,
|
256
|
-
|
266
|
+
exact_calculations):
|
257
267
|
"""
|
258
268
|
TaxCalcIO class post-constructor method that completes initialization.
|
259
269
|
|
@@ -262,10 +272,6 @@ class TaxCalcIO():
|
|
262
272
|
First five are same as the first five of the TaxCalcIO constructor:
|
263
273
|
input_data, tax_year, baseline, reform, assump.
|
264
274
|
|
265
|
-
aging_input_data: boolean
|
266
|
-
whether or not to extrapolate Records data from data year to
|
267
|
-
tax_year.
|
268
|
-
|
269
275
|
exact_calculations: boolean
|
270
276
|
specifies whether or not exact tax calculations are done without
|
271
277
|
any smoothing of "stair-step" provisions in the tax law.
|
@@ -273,7 +279,10 @@ class TaxCalcIO():
|
|
273
279
|
# pylint: disable=too-many-arguments,too-many-positional-arguments
|
274
280
|
# pylint: disable=too-many-statements,too-many-branches,too-many-locals
|
275
281
|
self.errmsg = ''
|
276
|
-
# instantiate base
|
282
|
+
# instantiate base/reform GrowFactors objects used for param indexing
|
283
|
+
policy_gfactors_bas = GrowFactors()
|
284
|
+
policy_gfactors_ref = GrowFactors()
|
285
|
+
# instantiate base/reform GrowFactors objects used to extrapolate data
|
277
286
|
if self.tmd_input_data:
|
278
287
|
gfactors_bas = GrowFactors(self.tmd_gfactor) # pragma: no cover
|
279
288
|
gfactors_ref = GrowFactors(self.tmd_gfactor) # pragma: no cover
|
@@ -337,10 +346,15 @@ class TaxCalcIO():
|
|
337
346
|
gdiff_response.apply_to(gfactors_ref)
|
338
347
|
self.gf_reform = copy.deepcopy(gfactors_ref)
|
339
348
|
# create Policy objects:
|
349
|
+
# ... apply gdiff_baseline to policy_gfactor_baseline
|
350
|
+
gdiff_baseline.apply_to(policy_gfactors_bas)
|
351
|
+
# ... apply gdiff_baseline and gdiff_response to policy_gfactor_ref
|
352
|
+
gdiff_baseline.apply_to(policy_gfactors_ref)
|
353
|
+
gdiff_response.apply_to(policy_gfactors_ref)
|
340
354
|
# ... the baseline Policy object
|
341
355
|
if self.specified_baseline:
|
342
356
|
pol_bas = Policy(
|
343
|
-
gfactors=
|
357
|
+
gfactors=policy_gfactors_bas,
|
344
358
|
last_budget_year=last_b_year,
|
345
359
|
)
|
346
360
|
for poldict in poldicts_bas:
|
@@ -351,20 +365,20 @@ class TaxCalcIO():
|
|
351
365
|
raise_errors=False,
|
352
366
|
)
|
353
367
|
if self.errmsg:
|
354
|
-
self.errmsg +=
|
368
|
+
self.errmsg += '\n'
|
355
369
|
for _, errors in pol_bas.parameter_errors.items():
|
356
|
-
self.errmsg +=
|
370
|
+
self.errmsg += '\n'.join(errors)
|
357
371
|
except paramtools.ValidationError as valerr_msg:
|
358
372
|
self.errmsg += str(valerr_msg)
|
359
373
|
else:
|
360
374
|
pol_bas = Policy(
|
361
|
-
gfactors=
|
375
|
+
gfactors=policy_gfactors_bas,
|
362
376
|
last_budget_year=last_b_year,
|
363
377
|
)
|
364
378
|
# ... the reform Policy object
|
365
379
|
if self.specified_reform:
|
366
380
|
pol_ref = Policy(
|
367
|
-
gfactors=
|
381
|
+
gfactors=policy_gfactors_ref,
|
368
382
|
last_budget_year=last_b_year,
|
369
383
|
)
|
370
384
|
for poldict in poldicts_ref:
|
@@ -375,14 +389,14 @@ class TaxCalcIO():
|
|
375
389
|
raise_errors=False,
|
376
390
|
)
|
377
391
|
if self.errmsg:
|
378
|
-
self.errmsg +=
|
392
|
+
self.errmsg += '\n'
|
379
393
|
for _, errors in pol_ref.parameter_errors.items():
|
380
|
-
self.errmsg +=
|
394
|
+
self.errmsg += '\n'.join(errors)
|
381
395
|
except paramtools.ValidationError as valerr_msg:
|
382
396
|
self.errmsg += str(valerr_msg)
|
383
397
|
else:
|
384
398
|
pol_ref = Policy(
|
385
|
-
gfactors=
|
399
|
+
gfactors=policy_gfactors_bas,
|
386
400
|
last_budget_year=last_b_year,
|
387
401
|
)
|
388
402
|
# create Consumption object
|
@@ -398,48 +412,46 @@ class TaxCalcIO():
|
|
398
412
|
pol_ref.set_year(tax_year)
|
399
413
|
pol_bas.set_year(tax_year)
|
400
414
|
# read input file contents into Records objects
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
gfactors=gfactors_bas,
|
440
|
-
exact_calculations=exact_calculations
|
441
|
-
)
|
415
|
+
aging_input_data = True
|
416
|
+
if self.cps_input_data:
|
417
|
+
recs_ref = Records.cps_constructor(
|
418
|
+
gfactors=gfactors_ref,
|
419
|
+
exact_calculations=exact_calculations,
|
420
|
+
)
|
421
|
+
recs_bas = Records.cps_constructor(
|
422
|
+
gfactors=gfactors_bas,
|
423
|
+
exact_calculations=exact_calculations,
|
424
|
+
)
|
425
|
+
elif self.puf_input_data: # pragma: no cover
|
426
|
+
recs_ref = Records.puf_constructor(
|
427
|
+
data=input_data,
|
428
|
+
gfactors=gfactors_ref,
|
429
|
+
weights=self.puf_weights,
|
430
|
+
ratios=self.puf_ratios,
|
431
|
+
exact_calculations=exact_calculations,
|
432
|
+
)
|
433
|
+
recs_bas = Records.puf_constructor(
|
434
|
+
data=input_data,
|
435
|
+
gfactors=gfactors_bas,
|
436
|
+
weights=self.puf_weights,
|
437
|
+
ratios=self.puf_ratios,
|
438
|
+
exact_calculations=exact_calculations,
|
439
|
+
)
|
440
|
+
elif self.tmd_input_data: # pragma: no cover
|
441
|
+
recs_ref = Records.tmd_constructor(
|
442
|
+
data_path=Path(input_data),
|
443
|
+
weights_path=Path(self.tmd_weights),
|
444
|
+
growfactors=gfactors_ref,
|
445
|
+
exact_calculations=exact_calculations,
|
446
|
+
)
|
447
|
+
recs_bas = Records.tmd_constructor(
|
448
|
+
data_path=Path(input_data),
|
449
|
+
weights_path=Path(self.tmd_weights),
|
450
|
+
growfactors=gfactors_bas,
|
451
|
+
exact_calculations=exact_calculations,
|
452
|
+
)
|
442
453
|
else: # input_data are raw data that are not being aged
|
454
|
+
aging_input_data = False
|
443
455
|
recs_ref = Records(
|
444
456
|
data=input_data,
|
445
457
|
start_year=tax_year,
|
@@ -478,7 +490,7 @@ class TaxCalcIO():
|
|
478
490
|
dirpath = os.path.abspath(os.path.dirname(__file__))
|
479
491
|
return os.path.join(dirpath, self.output_filename)
|
480
492
|
|
481
|
-
def advance_to_year(self, year
|
493
|
+
def advance_to_year(self, year):
|
482
494
|
"""
|
483
495
|
Update self.output_filename and advance Calculator objects to year.
|
484
496
|
"""
|
@@ -495,6 +507,11 @@ class TaxCalcIO():
|
|
495
507
|
# advance baseline and reform Calculator objects to specified year
|
496
508
|
self.calc_bas.advance_to_year(year)
|
497
509
|
self.calc_ref.advance_to_year(year)
|
510
|
+
aging_data = (
|
511
|
+
self.cps_input_data or
|
512
|
+
self.puf_input_data or
|
513
|
+
self.tmd_input_data
|
514
|
+
)
|
498
515
|
idata = 'Advance input data and' if aging_data else 'Advance'
|
499
516
|
if not self.silent:
|
500
517
|
print(f'{idata} policy to {year}')
|
@@ -821,21 +838,26 @@ class TaxCalcIO():
|
|
821
838
|
"""
|
822
839
|
assert isinstance(dumpvars_str, str)
|
823
840
|
self.errmsg = ''
|
824
|
-
#
|
825
|
-
dumpvars_str = dumpvars_str.replace(',', ' ')
|
826
|
-
dumpvars_str = dumpvars_str.replace(';', ' ')
|
827
|
-
dumpvars_str = dumpvars_str.replace('|', ' ')
|
828
|
-
# split dumpvars_str into a set of dump variables
|
829
|
-
dumpvars = dumpvars_str.split()
|
830
|
-
# check that all dumpvars items are valid
|
841
|
+
# get read and calc Records variables
|
831
842
|
recs_vinfo = Records(data=None) # contains records VARINFO only
|
832
843
|
valid_set = recs_vinfo.USABLE_READ_VARS | recs_vinfo.CALCULATED_VARS
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
844
|
+
# construct dumpvars list
|
845
|
+
if dumpvars_str == 'ALL':
|
846
|
+
dumpvars = list(valid_set) + TaxCalcIO.MTR_DUMPVARS
|
847
|
+
else:
|
848
|
+
# ... change some common non-space delimiter characters into spaces
|
849
|
+
dumpvars_str = dumpvars_str.replace(',', ' ')
|
850
|
+
dumpvars_str = dumpvars_str.replace(';', ' ')
|
851
|
+
dumpvars_str = dumpvars_str.replace('|', ' ')
|
852
|
+
# ... split dumpvars_str into dumpvars list
|
853
|
+
dumpvars = dumpvars_str.split()
|
854
|
+
# ... check that all dumpvars items are valid
|
855
|
+
for var in dumpvars:
|
856
|
+
if var not in valid_set and var not in TaxCalcIO.MTR_DUMPVARS:
|
857
|
+
msg = f'invalid variable name {var} in DUMPVARS file'
|
858
|
+
self.errmsg += f'ERROR: {msg}\n'
|
859
|
+
if self.errmsg:
|
860
|
+
return []
|
839
861
|
# construct variable list
|
840
862
|
dumpvars_list = TaxCalcIO.MINIMAL_DUMPVARS
|
841
863
|
for var in dumpvars:
|
@@ -857,15 +879,17 @@ class TaxCalcIO():
|
|
857
879
|
"""
|
858
880
|
Extract dump output from calcx and return it as Pandas DataFrame.
|
859
881
|
"""
|
860
|
-
|
882
|
+
odict = {}
|
861
883
|
for var in dumpvars:
|
862
884
|
if var in TaxCalcIO.MTR_DUMPVARS:
|
863
885
|
if var == 'mtr_itax':
|
864
|
-
|
886
|
+
odict[var] = pd.Series(mtr_itax)
|
865
887
|
elif var == 'mtr_ptax':
|
866
|
-
|
888
|
+
odict[var] = pd.Series(mtr_ptax)
|
867
889
|
else:
|
868
|
-
|
890
|
+
odict[var] = pd.Series(calcx.array(var))
|
891
|
+
odf = pd.concat(odict, axis=1)
|
892
|
+
del odict
|
869
893
|
return odf
|
870
894
|
# begin main logic
|
871
895
|
assert isinstance(dump_varlist, list)
|
taxcalc/tests/conftest.py
CHANGED
@@ -17,7 +17,7 @@ numpy.seterr(all='raise')
|
|
17
17
|
@pytest.fixture
|
18
18
|
def skip_jit(monkeypatch):
|
19
19
|
"""Fixture docstring"""
|
20
|
-
monkeypatch.setenv(
|
20
|
+
monkeypatch.setenv('TESTING', 'True')
|
21
21
|
yield
|
22
22
|
|
23
23
|
|
@@ -27,42 +27,47 @@ def tests_path_fixture():
|
|
27
27
|
return os.path.abspath(os.path.dirname(__file__))
|
28
28
|
|
29
29
|
|
30
|
-
@pytest.fixture(scope='session', name='
|
31
|
-
def
|
30
|
+
@pytest.fixture(scope='session', name='cps_data_path')
|
31
|
+
def cps_data_path_fixture(tests_path):
|
32
32
|
"""Fixture docstring"""
|
33
33
|
return os.path.join(tests_path, '..', 'cps.csv.gz')
|
34
34
|
|
35
35
|
|
36
36
|
@pytest.fixture(scope='session', name='cps_fullsample')
|
37
|
-
def cps_fullsample_fixture(
|
37
|
+
def cps_fullsample_fixture(cps_data_path):
|
38
38
|
"""Fixture docstring"""
|
39
|
-
return pandas.read_csv(
|
39
|
+
return pandas.read_csv(cps_data_path)
|
40
40
|
|
41
41
|
|
42
42
|
@pytest.fixture(scope='session')
|
43
43
|
def cps_subsample(cps_fullsample):
|
44
44
|
"""Fixture docstring"""
|
45
|
-
# draw
|
45
|
+
# draw a small cps.csv subsample
|
46
46
|
return cps_fullsample.sample(frac=0.01, random_state=123456789)
|
47
47
|
|
48
48
|
|
49
|
-
@pytest.fixture(scope='session', name='
|
50
|
-
def
|
49
|
+
@pytest.fixture(scope='session', name='puf_data_path')
|
50
|
+
def puf_data_path_fixture(tests_path):
|
51
51
|
"""Fixture docstring"""
|
52
52
|
return os.path.join(tests_path, '..', '..', 'puf.csv')
|
53
53
|
|
54
54
|
|
55
|
-
@pytest.fixture(scope='session', name='
|
56
|
-
def
|
55
|
+
@pytest.fixture(scope='session', name='puf_weights_path')
|
56
|
+
def puf_weights_path_fixture(tests_path):
|
57
57
|
"""Fixture docstring"""
|
58
|
-
return
|
58
|
+
return os.path.join(tests_path, '..', '..', 'puf_weights.csv.gz')
|
59
59
|
|
60
60
|
|
61
|
-
@pytest.fixture(scope='session')
|
62
|
-
def
|
61
|
+
@pytest.fixture(scope='session', name='puf_ratios_path')
|
62
|
+
def puf_ratios_path_fixture(tests_path):
|
63
|
+
"""Fixture docstring"""
|
64
|
+
return os.path.join(tests_path, '..', '..', 'puf_ratios.csv')
|
65
|
+
|
66
|
+
|
67
|
+
@pytest.fixture(scope='session', name='tmd_data_path')
|
68
|
+
def tmd_data_path_fixture(tests_path):
|
63
69
|
"""Fixture docstring"""
|
64
|
-
|
65
|
-
return puf_fullsample.sample(frac=0.05, random_state=2222)
|
70
|
+
return os.path.join(tests_path, '..', '..', 'tmd.csv')
|
66
71
|
|
67
72
|
|
68
73
|
@pytest.fixture(scope='session', name='test_reforms_init')
|
@@ -2,27 +2,27 @@
|
|
2
2
|
c00100, 1.00, 0.09, 0.55, -0.21, 0.99, 0.99, -0.00, -0.05, 0.06, -0.05, 0.89, 0.02, 0.06, 0.44, 0.41, 0.25, 0.38, 0.33, 0.32, -0.00, 0.08, 0.01, 0.11, 0.10, 0.03, 0.05, 0.45, -0.03, -0.03, 0.04, 0.01, -0.03, -0.02, -0.02, 0.23, 0.15, 0.04, 0.07, 0.00, -0.00, -0.02, 0.04, 0.22, 0.16, 0.06, 0.01, -0.00, 0.00, 0.10, -0.01, 0.60, 0.45, 0.30, 0.32, 0.23, 0.39, 0.14, 0.09, 0.40, 0.01, -0.00, 0.06, 0.23, -0.04, -0.01, -0.05, -0.00, 0.00, 0.95, -0.09, -0.01, 0.00, 0.03, 0.02, 0.09, 0.77, 0.44, 0.18, 0.20
|
3
3
|
c02500, 0.09, 1.00, 0.09, -0.13, 0.08, 0.08, -0.05, -0.08, 0.03, -0.08, 0.08, 0.02, 0.08, -0.00, 0.05, 0.13, 0.08, 0.07, 0.04, -0.00, 0.02, 0.00, 0.01, 0.16, 0.13, 0.22, 0.05, -0.01, -0.03, 0.80, 0.01, -0.05, -0.02, -0.02, 0.03, 0.05, -0.02, 0.01, -0.00, 0.00, -0.03, 0.01, 0.00, 0.02, 0.02, -0.00, -0.00, -0.01, 0.00, 0.14, 0.05, 0.17, 0.05, 0.07, 0.03, 0.08, 0.03, 0.01, 0.03, 0.03, -0.05, 0.02, 0.00, -0.06, -0.02, -0.08, -0.00, 0.00, 0.08, -0.02, -0.01, -0.10, -0.14, 0.01, -0.01, 0.05, -0.02, -0.06, 0.09
|
4
4
|
c04470, 0.55, 0.09, 1.00, -0.14, 0.46, 0.46, -0.00, -0.04, 0.10, -0.04, 0.66, 0.02, 0.04, 0.30, 0.46, 0.27, 0.33, 0.29, 0.35, -0.00, 0.03, 0.00, 0.03, 0.07, 0.03, 0.05, 0.33, -0.04, -0.02, 0.05, 0.01, -0.02, -0.01, -0.01, 0.15, 0.11, 0.03, 0.06, 0.00, -0.00, -0.02, 0.03, 0.10, 0.13, 0.06, 0.00, -0.00, 0.01, 0.06, 0.02, 0.75, 0.42, 0.37, 0.62, 0.51, 0.53, 0.05, 0.04, 0.29, 0.00, -0.00, 0.08, 0.11, -0.03, -0.01, -0.04, -0.00, 0.01, 0.49, -0.05, -0.00, 0.00, 0.02, 0.01, 0.02, 0.29, 0.30, 0.12, 0.14
|
5
|
-
c04600, -0.21, -0.13, -0.14, 1.00, -0.21, -0.20, 0.14, 0.50, -0.02, 0.42, -0.20, -0.01, 0.04, -0.17, -0.06, -0.09, -0.08, -0.07, -0.08, -0.00, -0.06, -0.01, -0.02, -0.07, -0.04, -0.06, -0.14, 0.02, 0.07, -0.10, -0.01, 0.09, 0.10, 0.05, -0.06, -0.13, -0.06, -0.11, -0.01, 0.01, 0.07, -0.02, -0.06, -0.04, -0.03, -0.01, 0.01, 0.01, -0.10, -0.00, -0.15, -0.25, -0.10, -0.07, -0.03, -0.09, -0.03, -0.01, -0.12, -0.01, 0.15, -0.03, -0.06, 0.19, 0.03, 0.32, 0.01, -0.01, -0.22, 0.06, 0.02, 0.35, 0.48, -0.01, -0.01, -0.10, -0.16, -0.
|
6
|
-
c04800, 0.99, 0.08, 0.46, -0.21, 1.00, 1.00, -0.01, -0.05, 0.06, -0.05, 0.87, 0.04, 0.05, 0.44, 0.38, 0.24, 0.37, 0.32, 0.30, -0.00, 0.06, 0.01, 0.08, 0.10, 0.03, 0.05, 0.42, -0.03, -0.03, 0.03, 0.01, -0.03, -0.02, -0.01, 0.23, 0.15, 0.04, 0.07, 0.00, -0.01, -0.02, 0.04, 0.23, 0.15, 0.06, 0.01, -0.00, 0.00, 0.10, -0.01, 0.55, 0.43, 0.28, 0.26, 0.18, 0.36, 0.14, 0.09, 0.36, 0.01, -0.00, 0.06, 0.23, -0.04, -0.01, -0.06, -0.00, 0.00, 0.96, -0.09, -0.01, 0.00, 0.03, 0.02, 0.09, 0.79, 0.44, 0.18, 0.
|
5
|
+
c04600, -0.21, -0.13, -0.14, 1.00, -0.21, -0.20, 0.14, 0.50, -0.02, 0.42, -0.20, -0.01, 0.04, -0.17, -0.06, -0.09, -0.08, -0.07, -0.08, -0.00, -0.06, -0.01, -0.02, -0.07, -0.04, -0.06, -0.14, 0.02, 0.07, -0.10, -0.01, 0.09, 0.10, 0.05, -0.06, -0.13, -0.06, -0.11, -0.01, 0.01, 0.07, -0.02, -0.06, -0.04, -0.03, -0.01, 0.01, 0.01, -0.10, -0.00, -0.15, -0.25, -0.10, -0.07, -0.03, -0.09, -0.03, -0.01, -0.12, -0.01, 0.15, -0.03, -0.06, 0.19, 0.03, 0.32, 0.01, -0.01, -0.22, 0.06, 0.02, 0.35, 0.48, -0.01, -0.01, -0.10, -0.16, -0.17, -0.14
|
6
|
+
c04800, 0.99, 0.08, 0.46, -0.21, 1.00, 1.00, -0.01, -0.05, 0.06, -0.05, 0.87, 0.04, 0.05, 0.44, 0.38, 0.24, 0.37, 0.32, 0.30, -0.00, 0.06, 0.01, 0.08, 0.10, 0.03, 0.05, 0.42, -0.03, -0.03, 0.03, 0.01, -0.03, -0.02, -0.01, 0.23, 0.15, 0.04, 0.07, 0.00, -0.01, -0.02, 0.04, 0.23, 0.15, 0.06, 0.01, -0.00, 0.00, 0.10, -0.01, 0.55, 0.43, 0.28, 0.26, 0.18, 0.36, 0.14, 0.09, 0.36, 0.01, -0.00, 0.06, 0.23, -0.04, -0.01, -0.06, -0.00, 0.00, 0.96, -0.09, -0.01, 0.00, 0.03, 0.02, 0.09, 0.79, 0.44, 0.18, 0.20
|
7
7
|
c05200, 0.99, 0.08, 0.46, -0.20, 1.00, 1.00, -0.01, -0.05, 0.06, -0.05, 0.87, 0.04, 0.05, 0.43, 0.38, 0.24, 0.37, 0.32, 0.30, -0.00, 0.05, 0.01, 0.08, 0.10, 0.02, 0.05, 0.42, -0.03, -0.03, 0.03, 0.01, -0.03, -0.02, -0.01, 0.22, 0.14, 0.04, 0.07, 0.00, -0.01, -0.02, 0.04, 0.23, 0.15, 0.06, 0.01, -0.00, 0.00, 0.09, -0.01, 0.55, 0.42, 0.27, 0.26, 0.18, 0.36, 0.14, 0.09, 0.36, 0.01, -0.00, 0.06, 0.23, -0.04, -0.01, -0.05, -0.00, 0.00, 0.95, -0.08, -0.01, 0.00, 0.03, 0.02, 0.09, 0.79, 0.43, 0.17, 0.19
|
8
8
|
c07180, -0.00, -0.05, -0.00, 0.14, -0.01, -0.01, 1.00, 0.19, -0.01, 0.05, -0.01, -0.00, 0.04, 0.01, -0.01, -0.01, -0.01, -0.01, -0.00, -0.00, 0.00, -0.00, 0.00, -0.01, -0.01, -0.02, -0.00, 0.00, -0.01, -0.06, -0.00, 0.03, 0.05, 0.00, -0.01, 0.01, 0.00, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.01, -0.01, -0.00, 0.00, 0.01, -0.01, -0.00, -0.01, -0.00, 0.00, 0.00, -0.00, 0.86, -0.00, -0.00, -0.00, 0.01, 0.00, -0.00, -0.00, -0.01, 0.01, 0.00, 0.09, 0.15, 0.00, 0.00, -0.01, 0.04, 0.05, 0.04
|
9
|
-
c07220, -0.05, -0.08, -0.04, 0.50, -0.05, -0.05, 0.19, 1.00, -0.00, 0.03, -0.05, 0.00, 0.08, -0.04, -0.02, -0.03, -0.02, -0.02, -0.02, -0.00, -0.01, -0.00, 0.00, -0.02, -0.03, -0.04, -0.03, 0.01, 0.02, -0.12, -0.01, 0.09, 0.08, 0.00, -0.02, -0.05, -0.02, -0.04, -0.00, -0.00, 0.05, -0.01, -0.01, -0.01, -0.01, -0.00, -0.00, 0.00, -0.03, -0.01, -0.04, -0.07, -0.02, -0.02, -0.01, -0.02, -0.01, -0.00, -0.03, -0.01, 0.22, -0.01, -0.01, 0.00, 0.02, -0.01, -0.00, -0.00, -0.06, 0.02, 0.00, 0.23, 0.35, -0.00, 0.00, -0.02, -0.01, -0.
|
10
|
-
c09600, 0.06, 0.03, 0.10, -0.02, 0.06, 0.06, -0.01, -0.00, 1.00, -0.01, 0.05, 0.96, 0.01, 0.01, 0.07, 0.06, 0.07, 0.06, 0.05, -0.00, -0.06, -0.00, 0.01, 0.01, 0.00, 0.01, -0.02, -0.01, -0.01, 0.02, -0.00, -0.01, -0.01, -0.00, 0.00, 0.01, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, 0.00, 0.01, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.10, 0.04, 0.04, 0.02, 0.02, 0.09, 0.09, 0.01, -0.04, 0.00, -0.01, 0.03, 0.01, -0.00, 0.00, -0.01, -0.00, 0.00, 0.26, -0.00, 0.00, -0.00, -0.00, 0.01, -0.00, 0.07, 0.01, 0.
|
9
|
+
c07220, -0.05, -0.08, -0.04, 0.50, -0.05, -0.05, 0.19, 1.00, -0.00, 0.03, -0.05, 0.00, 0.08, -0.04, -0.02, -0.03, -0.02, -0.02, -0.02, -0.00, -0.01, -0.00, 0.00, -0.02, -0.03, -0.04, -0.03, 0.01, 0.02, -0.12, -0.01, 0.09, 0.08, 0.00, -0.02, -0.05, -0.02, -0.04, -0.00, -0.00, 0.05, -0.01, -0.01, -0.01, -0.01, -0.00, -0.00, 0.00, -0.03, -0.01, -0.04, -0.07, -0.02, -0.02, -0.01, -0.02, -0.01, -0.00, -0.03, -0.01, 0.22, -0.01, -0.01, 0.00, 0.02, -0.01, -0.00, -0.00, -0.06, 0.02, 0.00, 0.23, 0.35, -0.00, 0.00, -0.02, -0.01, -0.03, -0.03
|
10
|
+
c09600, 0.06, 0.03, 0.10, -0.02, 0.06, 0.06, -0.01, -0.00, 1.00, -0.01, 0.05, 0.96, 0.01, 0.01, 0.07, 0.06, 0.07, 0.06, 0.05, -0.00, -0.06, -0.00, 0.01, 0.01, 0.00, 0.01, -0.02, -0.01, -0.01, 0.02, -0.00, -0.01, -0.01, -0.00, 0.00, 0.01, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, 0.00, 0.01, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.10, 0.04, 0.04, 0.02, 0.02, 0.09, 0.09, 0.01, -0.04, 0.00, -0.01, 0.03, 0.01, -0.00, 0.00, -0.01, -0.00, 0.00, 0.26, -0.00, 0.00, -0.00, -0.00, 0.01, -0.00, 0.07, 0.01, 0.01, 0.01
|
11
11
|
c11070, -0.05, -0.08, -0.04, 0.42, -0.05, -0.05, 0.05, 0.03, -0.01, 1.00, -0.04, -0.01, 0.08, -0.05, -0.01, -0.02, -0.02, -0.02, -0.02, -0.01, -0.01, -0.00, -0.02, -0.02, -0.03, -0.04, -0.04, -0.00, 0.02, -0.10, -0.03, -0.02, -0.02, 0.00, -0.01, -0.04, -0.03, -0.03, -0.00, -0.01, 0.04, -0.01, -0.01, -0.01, -0.01, -0.00, 0.02, -0.01, -0.03, -0.02, -0.04, -0.08, -0.04, -0.02, -0.01, -0.02, -0.01, -0.00, -0.03, -0.00, 0.05, -0.01, -0.01, 0.06, -0.01, 0.69, -0.00, -0.00, -0.05, 0.02, 0.01, 0.26, 0.37, -0.00, -0.00, -0.02, -0.08, -0.09, -0.08
|
12
12
|
c21040, 0.89, 0.08, 0.66, -0.20, 0.87, 0.87, -0.01, -0.05, 0.05, -0.04, 1.00, 0.02, 0.05, 0.48, 0.47, 0.27, 0.38, 0.32, 0.38, -0.00, 0.06, 0.01, 0.07, 0.10, 0.02, 0.05, 0.46, -0.03, -0.03, 0.04, 0.01, -0.03, -0.02, -0.01, 0.24, 0.15, 0.04, 0.08, 0.01, -0.01, -0.02, 0.05, 0.21, 0.17, 0.06, 0.00, -0.00, 0.00, 0.09, -0.01, 0.71, 0.48, 0.34, 0.37, 0.28, 0.45, 0.11, 0.08, 0.41, 0.01, -0.01, 0.07, 0.22, -0.04, -0.01, -0.05, -0.00, 0.00, 0.87, -0.08, -0.01, 0.00, 0.03, 0.02, 0.07, 0.59, 0.46, 0.17, 0.19
|
13
13
|
cmbtp, 0.02, 0.02, 0.02, -0.01, 0.04, 0.04, -0.00, 0.00, 0.96, -0.01, 0.02, 1.00, 0.01, 0.01, 0.07, 0.03, 0.04, 0.04, 0.03, -0.00, -0.06, -0.00, -0.02, 0.01, -0.00, 0.00, -0.03, -0.01, -0.00, 0.02, -0.00, -0.00, -0.00, 0.00, 0.01, 0.01, 0.00, -0.00, 0.00, -0.00, 0.00, 0.00, 0.00, 0.00, -0.01, 0.00, -0.00, 0.00, -0.00, -0.00, 0.01, 0.00, 0.01, 0.01, 0.01, 0.02, 0.07, 0.00, -0.05, 0.00, -0.01, 0.02, 0.01, 0.00, 0.00, -0.01, -0.00, 0.00, 0.24, 0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 0.03, 0.01, 0.00, 0.00
|
14
14
|
data_source, 0.06, 0.08, 0.04, 0.04, 0.05, 0.05, 0.04, 0.08, 0.01, 0.08, 0.05, 0.01, 1.00, 0.06, 0.02, 0.03, 0.02, 0.02, 0.02, 0.01, 0.02, 0.01, -0.00, 0.02, 0.03, 0.04, 0.03, -0.00, 0.06, -0.12, 0.03, 0.05, 0.04, 0.02, 0.02, 0.07, 0.03, 0.04, 0.00, 0.01, 0.04, 0.01, 0.01, 0.01, 0.01, 0.00, 0.00, 0.01, 0.03, 0.03, 0.04, 0.08, 0.05, 0.02, 0.01, 0.03, 0.01, 0.00, 0.02, 0.01, 0.05, 0.01, 0.01, 0.07, 0.02, 0.08, -0.02, 0.00, 0.06, -0.02, -0.00, 0.06, 0.09, 0.01, -0.00, 0.02, 0.12, 0.12, 0.09
|
15
15
|
e00200, 0.44, -0.00, 0.30, -0.17, 0.44, 0.43, 0.01, -0.04, 0.01, -0.05, 0.48, 0.01, 0.06, 1.00, 0.07, 0.10, 0.09, 0.08, 0.16, -0.01, 0.02, 0.01, 0.01, 0.04, 0.03, 0.03, 0.07, -0.02, -0.02, -0.03, 0.00, -0.02, -0.01, -0.01, 0.03, 0.02, 0.01, 0.01, 0.00, -0.00, -0.02, 0.02, 0.16, 0.04, 0.03, 0.00, -0.00, -0.00, 0.16, -0.02, 0.41, 0.33, 0.11, 0.11, 0.12, 0.13, 0.00, 0.02, 0.06, -0.00, 0.02, 0.01, 0.16, -0.04, -0.01, -0.05, -0.00, 0.00, 0.51, -0.04, -0.00, 0.02, 0.06, 0.01, 0.01, 0.08, 0.97, 0.32, 0.32
|
16
16
|
e00300, 0.41, 0.05, 0.46, -0.06, 0.38, 0.38, -0.01, -0.02, 0.07, -0.01, 0.47, 0.07, 0.02, 0.07, 1.00, 0.23, 0.27, 0.21, 0.26, -0.00, 0.00, 0.00, 0.02, 0.04, 0.01, 0.03, 0.11, -0.01, -0.01, 0.04, 0.00, -0.01, -0.01, -0.00, 0.11, 0.05, 0.01, 0.01, 0.02, -0.00, -0.01, 0.04, 0.10, 0.08, 0.04, 0.00, -0.00, -0.00, 0.02, -0.00, 0.39, 0.25, 0.35, 0.25, 0.18, 0.41, 0.05, 0.01, 0.07, 0.00, -0.01, 0.09, 0.11, -0.01, -0.00, -0.02, -0.00, 0.00, 0.40, -0.01, -0.00, -0.01, -0.00, 0.01, 0.05, 0.26, 0.07, 0.04, 0.05
|
17
|
-
e00400, 0.25, 0.13, 0.27, -0.09, 0.24, 0.24, -0.01, -0.03, 0.06, -0.02, 0.27, 0.03, 0.03, 0.10, 0.23, 1.00, 0.25, 0.23, 0.14, -0.00, 0.01, -0.00, 0.01, 0.07, 0.02, 0.07, 0.10, -0.01, -0.02, 0.09, 0.00, -0.02, -0.01, -0.01, 0.09, 0.05, 0.02, 0.02, -0.00, -0.00, -0.01, 0.03, 0.06, 0.04, 0.08, 0.00, -0.00, -0.00, 0.02, 0.04, 0.22, 0.30, 0.12, 0.18, 0.11, 0.29, 0.03, 0.04, 0.08, 0.01, -0.01, 0.02, 0.06, -0.02, -0.00, -0.03, -0.00, 0.00, 0.24, -0.02, -0.00, -0.01, -0.01, 0.02, -0.00, 0.16, 0.09, 0.
|
18
|
-
e00600, 0.38, 0.08, 0.33, -0.08, 0.37, 0.37, -0.01, -0.02, 0.07, -0.02, 0.38, 0.04, 0.02, 0.09, 0.27, 0.25, 1.00, 0.94, 0.13, -0.00, -0.01, 0.01, 0.02, 0.05, 0.01, 0.04, 0.06, -0.04, -0.01, 0.05, 0.00, -0.01, -0.01, -0.01, 0.07, 0.04, 0.01, 0.01, 0.00, -0.00, -0.01, 0.02, 0.17, 0.04, 0.01, 0.00, -0.00, -0.00, 0.02, 0.01, 0.25, 0.26, 0.22, 0.18, 0.17, 0.34, 0.02, 0.02, 0.04, 0.01, -0.01, 0.05, 0.17, -0.02, -0.00, -0.02, -0.00, 0.00, 0.34, -0.02, 0.00, -0.01, -0.01, 0.01, 0.02, 0.20, 0.09, 0.04, 0.
|
19
|
-
e00650, 0.33, 0.07, 0.29, -0.07, 0.32, 0.32, -0.01, -0.02, 0.06, -0.02, 0.32, 0.04, 0.02, 0.08, 0.21, 0.23, 0.94, 1.00, 0.11, -0.00, -0.01, 0.01, 0.02, 0.05, 0.01, 0.03, 0.05, -0.04, -0.01, 0.05, 0.00, -0.01, -0.01, -0.01, 0.07, 0.03, 0.01, 0.01, -0.00, -0.00, -0.01, 0.01, 0.15, 0.03, 0.01, 0.00, -0.00, -0.00, 0.01, 0.01, 0.21, 0.22, 0.15, 0.16, 0.16, 0.27, 0.01, 0.02, 0.03, 0.01, -0.01, 0.05, 0.15, -0.01, -0.00, -0.02, -0.00, 0.00, 0.28, -0.01, 0.00, -0.01, -0.01, 0.01, 0.01, 0.16, 0.08, 0.03, 0.
|
20
|
-
e00700, 0.32, 0.04, 0.35, -0.08, 0.30, 0.30, -0.00, -0.02, 0.05, -0.02, 0.38, 0.03, 0.02, 0.16, 0.26, 0.14, 0.13, 0.11, 1.00, -0.00, 0.01, 0.00, 0.00, 0.05, 0.01, 0.02, 0.31, -0.01, -0.01, 0.02, 0.01, -0.01, -0.01, -0.01, 0.22, 0.10, 0.02, 0.04, 0.00, -0.00, -0.01, 0.02, 0.12, 0.16, 0.05, 0.00, -0.00, 0.00, 0.05, -0.01, 0.46, 0.22, 0.13, 0.16, 0.05, 0.14, 0.02, 0.00, 0.27, 0.01, -0.00, 0.02, 0.12, -0.02, -0.01, -0.02, -0.00, 0.00, 0.33, -0.02, 0.00, 0.00, 0.01, 0.01, 0.03, 0.10, 0.16, 0.
|
17
|
+
e00400, 0.25, 0.13, 0.27, -0.09, 0.24, 0.24, -0.01, -0.03, 0.06, -0.02, 0.27, 0.03, 0.03, 0.10, 0.23, 1.00, 0.25, 0.23, 0.14, -0.00, 0.01, -0.00, 0.01, 0.07, 0.02, 0.07, 0.10, -0.01, -0.02, 0.09, 0.00, -0.02, -0.01, -0.01, 0.09, 0.05, 0.02, 0.02, -0.00, -0.00, -0.01, 0.03, 0.06, 0.04, 0.08, 0.00, -0.00, -0.00, 0.02, 0.04, 0.22, 0.30, 0.12, 0.18, 0.11, 0.29, 0.03, 0.04, 0.08, 0.01, -0.01, 0.02, 0.06, -0.02, -0.00, -0.03, -0.00, 0.00, 0.24, -0.02, -0.00, -0.01, -0.01, 0.02, -0.00, 0.16, 0.09, 0.04, 0.06
|
18
|
+
e00600, 0.38, 0.08, 0.33, -0.08, 0.37, 0.37, -0.01, -0.02, 0.07, -0.02, 0.38, 0.04, 0.02, 0.09, 0.27, 0.25, 1.00, 0.94, 0.13, -0.00, -0.01, 0.01, 0.02, 0.05, 0.01, 0.04, 0.06, -0.04, -0.01, 0.05, 0.00, -0.01, -0.01, -0.01, 0.07, 0.04, 0.01, 0.01, 0.00, -0.00, -0.01, 0.02, 0.17, 0.04, 0.01, 0.00, -0.00, -0.00, 0.02, 0.01, 0.25, 0.26, 0.22, 0.18, 0.17, 0.34, 0.02, 0.02, 0.04, 0.01, -0.01, 0.05, 0.17, -0.02, -0.00, -0.02, -0.00, 0.00, 0.34, -0.02, 0.00, -0.01, -0.01, 0.01, 0.02, 0.20, 0.09, 0.04, 0.07
|
19
|
+
e00650, 0.33, 0.07, 0.29, -0.07, 0.32, 0.32, -0.01, -0.02, 0.06, -0.02, 0.32, 0.04, 0.02, 0.08, 0.21, 0.23, 0.94, 1.00, 0.11, -0.00, -0.01, 0.01, 0.02, 0.05, 0.01, 0.03, 0.05, -0.04, -0.01, 0.05, 0.00, -0.01, -0.01, -0.01, 0.07, 0.03, 0.01, 0.01, -0.00, -0.00, -0.01, 0.01, 0.15, 0.03, 0.01, 0.00, -0.00, -0.00, 0.01, 0.01, 0.21, 0.22, 0.15, 0.16, 0.16, 0.27, 0.01, 0.02, 0.03, 0.01, -0.01, 0.05, 0.15, -0.01, -0.00, -0.02, -0.00, 0.00, 0.28, -0.01, 0.00, -0.01, -0.01, 0.01, 0.01, 0.16, 0.08, 0.03, 0.06
|
20
|
+
e00700, 0.32, 0.04, 0.35, -0.08, 0.30, 0.30, -0.00, -0.02, 0.05, -0.02, 0.38, 0.03, 0.02, 0.16, 0.26, 0.14, 0.13, 0.11, 1.00, -0.00, 0.01, 0.00, 0.00, 0.05, 0.01, 0.02, 0.31, -0.01, -0.01, 0.02, 0.01, -0.01, -0.01, -0.01, 0.22, 0.10, 0.02, 0.04, 0.00, -0.00, -0.01, 0.02, 0.12, 0.16, 0.05, 0.00, -0.00, 0.00, 0.05, -0.01, 0.46, 0.22, 0.13, 0.16, 0.05, 0.14, 0.02, 0.00, 0.27, 0.01, -0.00, 0.02, 0.12, -0.02, -0.01, -0.02, -0.00, 0.00, 0.33, -0.02, 0.00, 0.00, 0.01, 0.01, 0.03, 0.10, 0.16, 0.07, 0.08
|
21
21
|
e00800, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.01, -0.01, -0.00, -0.00, -0.00, -0.00, -0.00, 1.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.01, 0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, -0.01, -0.00, -0.00, -0.01, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.01, -0.01, -0.01
|
22
|
-
e00900, 0.08, 0.02, 0.03, -0.06, 0.06, 0.05, 0.00, -0.01, -0.06, -0.01, 0.06, -0.06, 0.02, 0.02, 0.00, 0.01, -0.01, -0.01, 0.01, -0.00, 1.00, 0.01, -0.01, 0.01, 0.00, 0.01, -0.01, 0.01, -0.01, 0.00, 0.02, -0.01, -0.00, -0.02, -0.01, 0.12, 0.04, 0.20, -0.00, -0.00, -0.01, 0.00, 0.04, -0.02, 0.00, 0.00, -0.00, -0.00, 0.01, -0.00, 0.04, 0.08, 0.03, 0.02, 0.00, 0.02, 0.01, -0.00, -0.01, -0.00, 0.01, -0.00, 0.04, -0.01, -0.00, -0.01, -0.00, 0.00, 0.05, -0.73, -0.25, 0.00, 0.01, 0.00, -0.00, 0.00, 0.02,
|
23
|
-
e01100, 0.01, 0.00, 0.00, -0.01, 0.01, 0.01, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.01, 0.01, 0.00, -0.00, 0.01, 0.01, 0.00, -0.00, 0.01, 1.00, 0.00, 0.00, 0.00, 0.00, 0.01, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.02, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.01, 0.01, -0.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.01, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, 0.00, 0.01, -0.01, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.01, 0.01, 0.
|
22
|
+
e00900, 0.08, 0.02, 0.03, -0.06, 0.06, 0.05, 0.00, -0.01, -0.06, -0.01, 0.06, -0.06, 0.02, 0.02, 0.00, 0.01, -0.01, -0.01, 0.01, -0.00, 1.00, 0.01, -0.01, 0.01, 0.00, 0.01, -0.01, 0.01, -0.01, 0.00, 0.02, -0.01, -0.00, -0.02, -0.01, 0.12, 0.04, 0.20, -0.00, -0.00, -0.01, 0.00, 0.04, -0.02, 0.00, 0.00, -0.00, -0.00, 0.01, -0.00, 0.04, 0.08, 0.03, 0.02, 0.00, 0.02, 0.01, -0.00, -0.01, -0.00, 0.01, -0.00, 0.04, -0.01, -0.00, -0.01, -0.00, 0.00, 0.05, -0.73, -0.25, 0.00, 0.01, 0.00, -0.00, 0.00, 0.02, -0.00, 0.02
|
23
|
+
e01100, 0.01, 0.00, 0.00, -0.01, 0.01, 0.01, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.01, 0.01, 0.00, -0.00, 0.01, 0.01, 0.00, -0.00, 0.01, 1.00, 0.00, 0.00, 0.00, 0.00, 0.01, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.02, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.01, 0.01, -0.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.01, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, 0.00, 0.01, -0.01, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.01, 0.01, 0.01
|
24
24
|
e01200, 0.11, 0.01, 0.03, -0.02, 0.08, 0.08, 0.00, 0.00, 0.01, -0.02, 0.07, -0.02, -0.00, 0.01, 0.02, 0.01, 0.02, 0.02, 0.00, 0.00, -0.01, 0.00, 1.00, -0.00, 0.00, -0.00, -0.03, 0.01, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.01, -0.01, -0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.01, 0.00, -0.00, 0.00, -0.00, -0.01, 0.00, 0.02, 0.03, 0.05, 0.03, 0.02, 0.03, 0.01, -0.00, -0.02, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.00, 0.07, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.05, 0.01, 0.00, 0.00
|
25
|
-
e01400, 0.10, 0.16, 0.07, -0.07, 0.10, 0.10, -0.01, -0.02, 0.01, -0.02, 0.10, 0.01, 0.02, 0.04, 0.04, 0.07, 0.05, 0.05, 0.05, -0.00, 0.01, 0.00, -0.00, 1.00, 0.05, 0.05, 0.02, -0.00, -0.01, 0.12, 0.00, -0.01, -0.01, -0.01, 0.01, 0.04, 0.03, 0.02, 0.00, -0.00, -0.01, 0.02, 0.02, 0.01, 0.02, 0.00, -0.00, 0.12, 0.01, 0.02, 0.07, 0.13, 0.04, 0.03, 0.03, 0.07, 0.00, 0.00, 0.01, 0.00, -0.01, 0.01, 0.02, -0.02, -0.01, -0.02, -0.00, 0.01, 0.10, -0.01, -0.01, -0.02, -0.02, 0.00, -0.00, 0.04, 0.04, 0.02, 0.
|
25
|
+
e01400, 0.10, 0.16, 0.07, -0.07, 0.10, 0.10, -0.01, -0.02, 0.01, -0.02, 0.10, 0.01, 0.02, 0.04, 0.04, 0.07, 0.05, 0.05, 0.05, -0.00, 0.01, 0.00, -0.00, 1.00, 0.05, 0.05, 0.02, -0.00, -0.01, 0.12, 0.00, -0.01, -0.01, -0.01, 0.01, 0.04, 0.03, 0.02, 0.00, -0.00, -0.01, 0.02, 0.02, 0.01, 0.02, 0.00, -0.00, 0.12, 0.01, 0.02, 0.07, 0.13, 0.04, 0.03, 0.03, 0.07, 0.00, 0.00, 0.01, 0.00, -0.01, 0.01, 0.02, -0.02, -0.01, -0.02, -0.00, 0.01, 0.10, -0.01, -0.01, -0.02, -0.02, 0.00, -0.00, 0.04, 0.04, 0.02, 0.05
|
26
26
|
e01500, 0.03, 0.13, 0.03, -0.04, 0.03, 0.02, -0.01, -0.03, 0.00, -0.03, 0.02, -0.00, 0.03, 0.03, 0.01, 0.02, 0.01, 0.01, 0.01, -0.00, 0.00, 0.00, 0.00, 0.05, 1.00, 0.24, 0.00, -0.01, 0.01, 0.10, 0.00, -0.02, -0.00, -0.01, -0.00, 0.02, 0.02, 0.02, -0.00, -0.00, -0.01, 0.01, 0.00, 0.00, 0.00, -0.00, -0.00, 0.03, 0.04, 0.02, 0.03, 0.06, 0.02, 0.02, 0.00, 0.02, -0.00, 0.00, 0.00, -0.00, -0.01, 0.01, 0.00, -0.02, -0.01, -0.03, -0.00, 0.00, 0.03, -0.00, -0.00, -0.02, -0.03, -0.00, -0.00, 0.01, 0.04, 0.04, 0.07
|
27
27
|
e01700, 0.05, 0.22, 0.05, -0.06, 0.05, 0.05, -0.02, -0.04, 0.01, -0.04, 0.05, 0.00, 0.04, 0.03, 0.03, 0.07, 0.04, 0.03, 0.02, -0.00, 0.01, 0.00, -0.00, 0.05, 0.24, 1.00, -0.00, -0.01, -0.01, 0.18, -0.00, -0.02, 0.00, -0.01, 0.00, 0.01, -0.00, 0.01, -0.00, 0.00, -0.02, 0.01, 0.01, 0.01, 0.00, 0.00, -0.00, 0.07, 0.02, 0.04, 0.04, 0.09, 0.03, 0.03, 0.02, 0.05, 0.00, 0.00, -0.00, 0.00, -0.02, 0.01, 0.01, -0.03, -0.01, -0.04, -0.00, 0.00, 0.05, -0.01, -0.00, -0.04, -0.05, 0.00, -0.01, 0.02, 0.03, 0.00, 0.04
|
28
28
|
e02000, 0.45, 0.05, 0.33, -0.14, 0.42, 0.42, -0.00, -0.03, -0.02, -0.04, 0.46, -0.03, 0.03, 0.07, 0.11, 0.10, 0.06, 0.05, 0.31, -0.00, -0.01, 0.01, -0.03, 0.02, 0.00, -0.00, 1.00, -0.04, -0.02, 0.01, 0.02, -0.02, -0.01, -0.01, 0.43, 0.19, 0.05, 0.11, 0.00, -0.00, -0.01, 0.01, 0.13, 0.28, 0.08, 0.00, -0.00, -0.00, 0.04, -0.01, 0.38, 0.22, 0.10, 0.25, 0.12, 0.07, -0.04, -0.01, 0.97, 0.01, 0.00, -0.02, 0.14, -0.03, -0.01, -0.03, -0.00, 0.00, 0.48, 0.01, 0.02, 0.01, 0.02, 0.01, -0.05, 0.01, 0.08, 0.08, 0.07
|
@@ -36,19 +36,19 @@ e03230, -0.02, -0.02, -0.01, 0.05, -0.01, -0.01, 0.00, 0.00,
|
|
36
36
|
e03240, 0.23, 0.03, 0.15, -0.06, 0.23, 0.22, -0.01, -0.02, 0.00, -0.01, 0.24, 0.01, 0.02, 0.03, 0.11, 0.09, 0.07, 0.07, 0.22, -0.00, -0.01, 0.02, 0.01, 0.01, -0.00, 0.00, 0.43, -0.00, -0.01, 0.02, 0.01, -0.01, -0.01, -0.00, 1.00, 0.07, 0.02, -0.00, -0.00, -0.00, -0.01, 0.00, 0.05, 0.21, 0.02, 0.00, -0.00, -0.00, 0.01, -0.01, 0.19, 0.10, 0.07, 0.11, 0.03, 0.03, 0.01, 0.00, 0.39, 0.01, -0.01, 0.00, 0.05, -0.01, -0.00, -0.02, -0.00, -0.00, 0.26, -0.01, 0.01, -0.00, 0.01, 0.01, -0.00, 0.04, 0.04, 0.05, 0.05
|
37
37
|
e03270, 0.15, 0.05, 0.11, -0.13, 0.15, 0.14, 0.01, -0.05, 0.01, -0.04, 0.15, 0.01, 0.07, 0.02, 0.05, 0.05, 0.04, 0.03, 0.10, -0.01, 0.12, 0.01, -0.01, 0.04, 0.02, 0.01, 0.19, 0.03, -0.04, 0.01, 0.09, -0.03, -0.02, -0.01, 0.07, 1.00, 0.18, 0.32, 0.00, -0.00, -0.02, 0.01, 0.03, 0.04, 0.01, 0.00, -0.00, 0.01, 0.02, -0.00, 0.13, 0.22, 0.10, 0.05, 0.02, 0.06, 0.02, 0.00, 0.18, 0.01, 0.01, 0.01, 0.03, -0.03, -0.01, -0.06, -0.00, 0.01, 0.16, -0.09, -0.02, 0.04, 0.08, 0.01, 0.01, 0.06, 0.04, 0.05, 0.08
|
38
38
|
e03290, 0.04, -0.02, 0.03, -0.06, 0.04, 0.04, 0.00, -0.02, 0.00, -0.03, 0.04, 0.00, 0.03, 0.01, 0.01, 0.02, 0.01, 0.01, 0.02, -0.00, 0.04, 0.00, -0.01, 0.03, 0.02, -0.00, 0.05, 0.01, -0.02, -0.04, 0.07, -0.02, -0.01, -0.00, 0.02, 0.18, 1.00, 0.13, -0.00, -0.00, -0.01, 0.01, 0.00, 0.02, 0.01, 0.00, -0.00, 0.00, 0.01, 0.00, 0.03, 0.07, 0.03, 0.01, 0.00, 0.01, 0.00, 0.00, 0.05, 0.01, 0.01, 0.01, 0.00, -0.01, -0.01, -0.03, -0.00, 0.00, 0.05, -0.03, -0.02, 0.02, 0.05, 0.01, 0.00, 0.02, 0.03, 0.04, 0.05
|
39
|
-
e03300, 0.07, 0.01, 0.06, -0.11, 0.07, 0.07, 0.01, -0.04, -0.00, -0.03, 0.08, -0.00, 0.04, 0.01, 0.01, 0.02, 0.01, 0.01, 0.04, -0.00, 0.20, 0.00, 0.00, 0.02, 0.02, 0.01, 0.11, 0.01, -0.02, -0.01, -0.01, -0.02, -0.01, -0.01, -0.00, 0.32, 0.13, 1.00, -0.00, -0.00, -0.02, 0.01, 0.02, 0.00, 0.00, -0.00, -0.00, -0.00, 0.01, -0.01, 0.07, 0.14, 0.05, 0.03, 0.01, 0.03, 0.00, -0.00, 0.11, 0.00, 0.02, 0.00, 0.02, -0.03, -0.01, -0.04, -0.00, 0.00, 0.08, -0.17, -0.10, 0.01, 0.04, 0.01, 0.00, 0.01, 0.01, 0.
|
39
|
+
e03300, 0.07, 0.01, 0.06, -0.11, 0.07, 0.07, 0.01, -0.04, -0.00, -0.03, 0.08, -0.00, 0.04, 0.01, 0.01, 0.02, 0.01, 0.01, 0.04, -0.00, 0.20, 0.00, 0.00, 0.02, 0.02, 0.01, 0.11, 0.01, -0.02, -0.01, -0.01, -0.02, -0.01, -0.01, -0.00, 0.32, 0.13, 1.00, -0.00, -0.00, -0.02, 0.01, 0.02, 0.00, 0.00, -0.00, -0.00, -0.00, 0.01, -0.01, 0.07, 0.14, 0.05, 0.03, 0.01, 0.03, 0.00, -0.00, 0.11, 0.00, 0.02, 0.00, 0.02, -0.03, -0.01, -0.04, -0.00, 0.00, 0.08, -0.17, -0.10, 0.01, 0.04, 0.01, 0.00, 0.01, 0.01, 0.00, 0.02
|
40
40
|
e03400, 0.00, -0.00, 0.00, -0.01, 0.00, 0.00, 0.00, -0.00, 0.00, -0.00, 0.01, 0.00, 0.00, 0.00, 0.02, -0.00, 0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 1.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00, 0.01, 0.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.01, 0.00, 0.00, -0.00, 0.00, -0.00, 0.01, -0.00, 0.00, 0.00, 0.00
|
41
|
-
e03500, -0.00, 0.00, -0.00, 0.01, -0.01, -0.01, 0.00, -0.00, -0.00, -0.01, -0.01, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 1.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, -0.01, 0.00, 0.00, -0.00, -0.01, -0.00, 0.00, -0.00, 0.00, 0.
|
41
|
+
e03500, -0.00, 0.00, -0.00, 0.01, -0.01, -0.01, 0.00, -0.00, -0.00, -0.01, -0.01, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 1.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, -0.01, 0.00, 0.00, -0.00, -0.01, -0.00, 0.00, -0.00, 0.00, 0.02, -0.00
|
42
42
|
e07240, -0.02, -0.03, -0.02, 0.07, -0.02, -0.02, -0.00, 0.05, -0.00, 0.04, -0.02, 0.00, 0.04, -0.02, -0.01, -0.01, -0.01, -0.01, -0.01, -0.00, -0.01, -0.00, 0.00, -0.01, -0.01, -0.02, -0.01, -0.00, 0.00, -0.04, 0.07, 0.01, -0.00, -0.00, -0.01, -0.02, -0.01, -0.02, -0.00, -0.00, 1.00, -0.00, -0.01, -0.00, -0.00, -0.00, -0.00, -0.01, -0.02, -0.01, -0.02, -0.04, -0.02, -0.01, -0.00, -0.01, -0.00, -0.00, -0.01, -0.00, -0.00, -0.00, -0.01, -0.02, 0.00, 0.02, -0.00, -0.00, -0.02, 0.01, 0.00, 0.01, 0.01, -0.00, -0.00, -0.01, -0.03, -0.04, -0.03
|
43
43
|
e07260, 0.04, 0.01, 0.03, -0.02, 0.04, 0.04, -0.00, -0.01, 0.00, -0.01, 0.05, 0.00, 0.01, 0.02, 0.04, 0.03, 0.02, 0.01, 0.02, -0.00, 0.00, 0.00, -0.00, 0.02, 0.01, 0.01, 0.01, 0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.01, 0.01, 0.01, 0.00, -0.00, -0.00, 1.00, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, 0.03, 0.08, 0.02, 0.02, 0.00, 0.04, 0.00, -0.00, 0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.04, -0.00, 0.00, -0.00, 0.01, 0.00, 0.02, 0.03, 0.03, 0.01, 0.03
|
44
|
-
e07300, 0.22, 0.00, 0.10, -0.06, 0.23, 0.23, -0.00, -0.01, 0.00, -0.01, 0.21, 0.00, 0.01, 0.16, 0.10, 0.06, 0.17, 0.15, 0.12, -0.00, 0.04, 0.00, -0.00, 0.02, 0.00, 0.01, 0.13, -0.00, -0.01, -0.01, 0.00, -0.01, -0.01, -0.00, 0.05, 0.03, 0.00, 0.02, -0.00, -0.00, -0.01, 0.00, 1.00, 0.03, 0.01, 0.00, -0.00, -0.00, 0.03, -0.00, 0.12, 0.10, 0.07, 0.05, 0.03, 0.11, 0.00, 0.00, 0.12, 0.00, -0.00, 0.01, 0.96, -0.01, -0.00, -0.01, -0.00, 0.00, 0.16, -0.06, -0.00, 0.00, 0.01, -0.00, 0.04, 0.09, 0.16, 0.
|
44
|
+
e07300, 0.22, 0.00, 0.10, -0.06, 0.23, 0.23, -0.00, -0.01, 0.00, -0.01, 0.21, 0.00, 0.01, 0.16, 0.10, 0.06, 0.17, 0.15, 0.12, -0.00, 0.04, 0.00, -0.00, 0.02, 0.00, 0.01, 0.13, -0.00, -0.01, -0.01, 0.00, -0.01, -0.01, -0.00, 0.05, 0.03, 0.00, 0.02, -0.00, -0.00, -0.01, 0.00, 1.00, 0.03, 0.01, 0.00, -0.00, -0.00, 0.03, -0.00, 0.12, 0.10, 0.07, 0.05, 0.03, 0.11, 0.00, 0.00, 0.12, 0.00, -0.00, 0.01, 0.96, -0.01, -0.00, -0.01, -0.00, 0.00, 0.16, -0.06, -0.00, 0.00, 0.01, -0.00, 0.04, 0.09, 0.16, 0.07, 0.05
|
45
45
|
e07400, 0.16, 0.02, 0.13, -0.04, 0.15, 0.15, -0.00, -0.01, 0.01, -0.01, 0.17, 0.00, 0.01, 0.04, 0.08, 0.04, 0.04, 0.03, 0.16, -0.00, -0.02, 0.01, -0.01, 0.01, 0.00, 0.01, 0.28, -0.02, -0.01, 0.01, 0.02, -0.01, -0.00, -0.00, 0.21, 0.04, 0.02, 0.00, -0.00, -0.00, -0.00, 0.00, 0.03, 1.00, 0.01, 0.00, -0.00, 0.01, 0.01, -0.00, 0.16, 0.08, 0.04, 0.07, 0.07, 0.02, 0.02, 0.00, 0.26, -0.00, -0.00, 0.00, 0.03, -0.01, -0.00, -0.01, -0.00, -0.00, 0.16, -0.01, 0.01, 0.00, 0.00, 0.00, 0.00, 0.03, 0.04, 0.03, 0.03
|
46
|
-
e07600, 0.06, 0.02, 0.06, -0.03, 0.06, 0.06, -0.00, -0.01, -0.00, -0.01, 0.06, -0.01, 0.01, 0.03, 0.04, 0.08, 0.01, 0.01, 0.05, 0.00, 0.00, 0.00, 0.00, 0.02, 0.00, 0.00, 0.08, -0.00, -0.00, 0.01, 0.01, -0.01, -0.00, -0.00, 0.02, 0.01, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 1.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.05, 0.04, 0.05, 0.05, 0.01, 0.02, 0.01, 0.00, 0.07, -0.00, -0.00, 0.00, 0.01, -0.01, -0.00, -0.01, -0.00, -0.00, 0.06, -0.01, -0.00, -0.00, 0.00, -0.00, 0.00, 0.02, 0.03, 0.
|
46
|
+
e07600, 0.06, 0.02, 0.06, -0.03, 0.06, 0.06, -0.00, -0.01, -0.00, -0.01, 0.06, -0.01, 0.01, 0.03, 0.04, 0.08, 0.01, 0.01, 0.05, 0.00, 0.00, 0.00, 0.00, 0.02, 0.00, 0.00, 0.08, -0.00, -0.00, 0.01, 0.01, -0.01, -0.00, -0.00, 0.02, 0.01, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 1.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.05, 0.04, 0.05, 0.05, 0.01, 0.02, 0.01, 0.00, 0.07, -0.00, -0.00, 0.00, 0.01, -0.01, -0.00, -0.01, -0.00, -0.00, 0.06, -0.01, -0.00, -0.00, 0.00, -0.00, 0.00, 0.02, 0.03, 0.02, 0.03
|
47
47
|
e09700, 0.01, -0.00, 0.00, -0.01, 0.01, 0.01, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, 1.00, -0.00, 0.00, 0.01, 0.01, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.01, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.01, 0.00, 0.00, 0.00
|
48
48
|
e09800, -0.00, -0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, 0.02, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, -0.00, 0.02, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 1.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.02, -0.00, -0.00, -0.00, 0.00, 0.00, 0.01, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00
|
49
49
|
e09900, 0.00, -0.01, 0.01, 0.01, 0.00, 0.00, 0.00, 0.00, 0.00, -0.01, 0.00, 0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.12, 0.03, 0.07, -0.00, -0.03, 0.02, -0.02, -0.00, -0.00, 0.00, 0.00, -0.00, 0.01, 0.00, -0.00, 0.00, 0.01, -0.01, 0.00, -0.00, 0.01, -0.00, 0.00, -0.00, 1.00, 0.01, 0.00, 0.00, 0.01, 0.01, -0.00, -0.00, 0.03, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.01, -0.00, 0.03, 0.00, -0.00, 0.00, 0.01, 0.02, 0.00, -0.00, -0.00, 0.01, 0.02, 0.01
|
50
|
-
e11200, 0.10, 0.00, 0.06, -0.10, 0.10, 0.09, 0.01, -0.03, 0.00, -0.03, 0.09, -0.00, 0.03, 0.16, 0.02, 0.02, 0.02, 0.01, 0.05, -0.00, 0.01, 0.00, -0.01, 0.01, 0.04, 0.02, 0.04, -0.00, -0.01, -0.02, 0.01, -0.02, -0.01, -0.01, 0.01, 0.02, 0.01, 0.01, -0.00, 0.00, -0.02, 0.00, 0.03, 0.01, 0.01, 0.01, -0.00, 0.01, 1.00, -0.01, 0.08, 0.12, 0.06, 0.03, 0.00, 0.03, -0.00, 0.00, 0.04, -0.00, 0.02, 0.00, 0.03, -0.03, -0.00, -0.03, -0.00, 0.00, 0.11, -0.02, -0.01, 0.01, 0.05, 0.00, 0.00, 0.03, 0.20, 0.
|
51
|
-
e17500, -0.01, 0.14, 0.02, -0.00, -0.01, -0.01, -0.01, -0.01, 0.00, -0.02, -0.01, -0.00, 0.03, -0.02, -0.00, 0.04, 0.01, 0.01, -0.01, 0.01, -0.00, -0.00, 0.00, 0.02, 0.02, 0.04, -0.01, 0.00, 0.00, 0.12, 0.01, -0.01, 0.00, 0.00, -0.01, -0.00, 0.00, -0.01, 0.00, 0.00, -0.01, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.00, -0.01, 1.00, -0.00, 0.03, 0.00, 0.01, 0.01, 0.02, -0.00, 0.00, -0.01, 0.01, -0.01, 0.00, -0.00, -0.01, -0.00, -0.03, -0.00, -0.00, -0.01, 0.00, 0.00, -0.02, -0.02, 0.00, -0.00, -0.00, -0.03, -0.
|
50
|
+
e11200, 0.10, 0.00, 0.06, -0.10, 0.10, 0.09, 0.01, -0.03, 0.00, -0.03, 0.09, -0.00, 0.03, 0.16, 0.02, 0.02, 0.02, 0.01, 0.05, -0.00, 0.01, 0.00, -0.01, 0.01, 0.04, 0.02, 0.04, -0.00, -0.01, -0.02, 0.01, -0.02, -0.01, -0.01, 0.01, 0.02, 0.01, 0.01, -0.00, 0.00, -0.02, 0.00, 0.03, 0.01, 0.01, 0.01, -0.00, 0.01, 1.00, -0.01, 0.08, 0.12, 0.06, 0.03, 0.00, 0.03, -0.00, 0.00, 0.04, -0.00, 0.02, 0.00, 0.03, -0.03, -0.00, -0.03, -0.00, 0.00, 0.11, -0.02, -0.01, 0.01, 0.05, 0.00, 0.00, 0.03, 0.20, 0.20, 0.17
|
51
|
+
e17500, -0.01, 0.14, 0.02, -0.00, -0.01, -0.01, -0.01, -0.01, 0.00, -0.02, -0.01, -0.00, 0.03, -0.02, -0.00, 0.04, 0.01, 0.01, -0.01, 0.01, -0.00, -0.00, 0.00, 0.02, 0.02, 0.04, -0.01, 0.00, 0.00, 0.12, 0.01, -0.01, 0.00, 0.00, -0.01, -0.00, 0.00, -0.01, 0.00, 0.00, -0.01, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.00, -0.01, 1.00, -0.00, 0.03, 0.00, 0.01, 0.01, 0.02, -0.00, 0.00, -0.01, 0.01, -0.01, 0.00, -0.00, -0.01, -0.00, -0.03, -0.00, -0.00, -0.01, 0.00, 0.00, -0.02, -0.02, 0.00, -0.00, -0.00, -0.03, -0.03, -0.02
|
52
52
|
e18400, 0.60, 0.05, 0.75, -0.15, 0.55, 0.55, -0.00, -0.04, 0.10, -0.04, 0.71, 0.01, 0.04, 0.41, 0.39, 0.22, 0.25, 0.21, 0.46, -0.00, 0.04, 0.01, 0.02, 0.07, 0.03, 0.04, 0.38, -0.02, -0.02, 0.02, 0.01, -0.02, -0.01, -0.01, 0.19, 0.13, 0.03, 0.07, 0.00, -0.00, -0.02, 0.03, 0.12, 0.16, 0.05, 0.00, -0.00, 0.00, 0.08, -0.00, 1.00, 0.39, 0.28, 0.23, 0.16, 0.35, 0.05, 0.02, 0.34, 0.00, 0.00, 0.06, 0.14, -0.03, -0.01, -0.04, -0.00, 0.00, 0.60, -0.06, -0.00, 0.01, 0.03, 0.01, 0.02, 0.31, 0.40, 0.15, 0.16
|
53
53
|
e18500, 0.45, 0.17, 0.42, -0.25, 0.43, 0.42, 0.00, -0.07, 0.04, -0.08, 0.48, 0.00, 0.08, 0.33, 0.25, 0.30, 0.26, 0.22, 0.22, -0.00, 0.08, 0.01, 0.03, 0.13, 0.06, 0.09, 0.22, -0.02, -0.04, 0.10, 0.03, -0.05, -0.02, -0.02, 0.10, 0.22, 0.07, 0.14, 0.01, -0.00, -0.04, 0.08, 0.10, 0.08, 0.04, 0.00, -0.00, 0.01, 0.12, 0.03, 0.39, 1.00, 0.34, 0.19, 0.11, 0.35, 0.05, 0.02, 0.19, 0.01, 0.00, 0.07, 0.12, -0.05, -0.02, -0.09, -0.00, 0.01, 0.44, -0.08, -0.02, 0.02, 0.07, 0.02, 0.00, 0.24, 0.36, 0.23, 0.27
|
54
54
|
e19200, 0.30, 0.05, 0.37, -0.10, 0.28, 0.27, 0.01, -0.02, 0.04, -0.04, 0.34, 0.01, 0.05, 0.11, 0.35, 0.12, 0.22, 0.15, 0.13, -0.00, 0.03, -0.00, 0.05, 0.04, 0.02, 0.03, 0.10, -0.01, -0.02, 0.02, 0.01, -0.02, -0.00, -0.01, 0.07, 0.10, 0.03, 0.05, 0.00, -0.00, -0.02, 0.02, 0.07, 0.04, 0.05, 0.00, -0.00, 0.01, 0.06, 0.00, 0.28, 0.34, 1.00, 0.12, 0.07, 0.35, 0.05, 0.01, 0.07, -0.00, 0.02, 0.32, 0.07, -0.03, -0.01, -0.05, -0.00, 0.00, 0.28, -0.03, -0.01, 0.02, 0.05, 0.01, 0.04, 0.20, 0.14, 0.11, 0.12
|
@@ -58,7 +58,7 @@ e20400, 0.39, 0.08, 0.53, -0.09, 0.36, 0.36, -0.01, -0.02,
|
|
58
58
|
e24515, 0.14, 0.03, 0.05, -0.03, 0.14, 0.14, -0.00, -0.01, 0.09, -0.01, 0.11, 0.07, 0.01, 0.00, 0.05, 0.03, 0.02, 0.01, 0.02, -0.00, 0.01, -0.00, 0.01, 0.00, -0.00, 0.00, -0.04, -0.02, -0.01, 0.02, 0.00, -0.01, -0.00, -0.00, 0.01, 0.02, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.02, 0.01, 0.00, -0.00, 0.00, -0.00, -0.00, 0.05, 0.05, 0.05, 0.04, 0.02, 0.04, 1.00, 0.00, -0.05, 0.00, -0.00, 0.02, 0.00, -0.01, -0.00, -0.01, -0.00, -0.00, 0.13, -0.02, 0.00, -0.00, -0.00, -0.00, 0.00, 0.21, 0.00, 0.00, 0.01
|
59
59
|
e24518, 0.09, 0.01, 0.04, -0.01, 0.09, 0.09, 0.00, -0.00, 0.01, -0.00, 0.08, 0.00, 0.00, 0.02, 0.01, 0.04, 0.02, 0.02, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, -0.01, 0.00, -0.00, 0.01, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.02, 0.02, 0.01, 0.01, 0.07, 0.01, 0.00, 1.00, -0.01, -0.00, 0.00, 0.03, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.09, 0.00, 0.00, 0.00, 0.00, 0.00, 0.04, 0.11, 0.02, 0.01, 0.01
|
60
60
|
e26270, 0.40, 0.03, 0.29, -0.12, 0.36, 0.36, 0.00, -0.03, -0.04, -0.03, 0.41, -0.05, 0.02, 0.06, 0.07, 0.08, 0.04, 0.03, 0.27, -0.00, -0.01, 0.01, -0.02, 0.01, 0.00, -0.00, 0.97, -0.04, -0.02, -0.00, 0.02, -0.02, -0.01, -0.01, 0.39, 0.18, 0.05, 0.11, 0.00, -0.00, -0.01, 0.01, 0.12, 0.26, 0.07, 0.00, -0.00, -0.00, 0.04, -0.01, 0.34, 0.19, 0.07, 0.21, 0.10, 0.05, -0.05, -0.01, 1.00, -0.00, 0.00, -0.02, 0.12, -0.02, -0.01, -0.02, -0.00, 0.00, 0.42, 0.01, 0.02, 0.01, 0.03, 0.01, -0.07, -0.02, 0.07, 0.07, 0.07
|
61
|
-
e27200, 0.01, 0.03, 0.00, -0.01, 0.01, 0.01, -0.00, -0.01, 0.00, -0.00, 0.01, 0.00, 0.01, -0.00, 0.00, 0.01, 0.01, 0.01, 0.01, -0.00, -0.00, 0.00, 0.01, 0.00, -0.00, 0.00, 0.01, 0.00, -0.00, 0.02, 0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, 0.00, 0.01, -0.00, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, 1.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.00, -0.00,
|
61
|
+
e27200, 0.01, 0.03, 0.00, -0.01, 0.01, 0.01, -0.00, -0.01, 0.00, -0.00, 0.01, 0.00, 0.01, -0.00, 0.00, 0.01, 0.01, 0.01, 0.01, -0.00, -0.00, 0.00, 0.01, 0.00, -0.00, 0.00, 0.01, 0.00, -0.00, 0.02, 0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, 0.00, 0.01, -0.00, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, 1.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00
|
62
62
|
e32800, -0.00, -0.05, -0.00, 0.15, -0.00, -0.00, 0.86, 0.22, -0.01, 0.05, -0.01, -0.01, 0.05, 0.02, -0.01, -0.01, -0.01, -0.01, -0.00, -0.00, 0.01, -0.00, 0.00, -0.01, -0.01, -0.02, 0.00, 0.00, 0.00, -0.07, 0.00, 0.04, 0.06, 0.01, -0.01, 0.01, 0.01, 0.02, 0.00, 0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.02, -0.01, 0.00, 0.00, 0.02, -0.01, -0.00, -0.01, -0.00, 0.00, 0.00, -0.00, 1.00, -0.00, -0.00, 0.00, 0.01, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, 0.11, 0.18, 0.00, 0.00, -0.01, 0.05, 0.05, 0.05
|
63
63
|
e58990, 0.06, 0.02, 0.08, -0.03, 0.06, 0.06, -0.00, -0.01, 0.03, -0.01, 0.07, 0.02, 0.01, 0.01, 0.09, 0.02, 0.05, 0.05, 0.02, -0.00, -0.00, -0.00, -0.00, 0.01, 0.01, 0.01, -0.02, -0.04, -0.00, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, 0.01, 0.01, 0.00, -0.00, -0.00, -0.00, 0.00, 0.01, 0.00, 0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.06, 0.07, 0.32, 0.02, 0.02, 0.05, 0.02, 0.03, -0.02, -0.00, -0.00, 1.00, 0.01, -0.01, -0.00, -0.01, -0.00, 0.00, 0.05, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.07, 0.01, 0.01, 0.01
|
64
64
|
e62900, 0.23, 0.00, 0.11, -0.06, 0.23, 0.23, -0.00, -0.01, 0.01, -0.01, 0.22, 0.01, 0.01, 0.16, 0.11, 0.06, 0.17, 0.15, 0.12, -0.00, 0.04, -0.00, -0.00, 0.02, 0.00, 0.01, 0.14, -0.00, -0.01, -0.01, 0.00, -0.01, -0.01, -0.00, 0.05, 0.03, 0.00, 0.02, -0.00, -0.00, -0.01, 0.00, 0.96, 0.03, 0.01, 0.00, -0.00, -0.00, 0.03, -0.00, 0.14, 0.12, 0.07, 0.06, 0.03, 0.13, 0.00, 0.00, 0.12, 0.00, -0.00, 0.01, 1.00, -0.01, -0.00, -0.01, -0.00, 0.00, 0.17, -0.06, -0.00, 0.00, 0.01, -0.00, 0.04, 0.10, 0.16, 0.06, 0.05
|
@@ -66,15 +66,15 @@ e87521, -0.04, -0.06, -0.03, 0.19, -0.04, -0.04, -0.00, 0.00,
|
|
66
66
|
e87530, -0.01, -0.02, -0.01, 0.03, -0.01, -0.01, 0.01, 0.02, 0.00, -0.01, -0.01, 0.00, 0.02, -0.01, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, -0.00, 0.00, -0.01, -0.01, -0.01, -0.01, 0.00, 0.00, -0.03, 0.00, 0.05, 0.05, 0.03, -0.00, -0.01, -0.01, -0.01, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.02, -0.01, -0.00, -0.00, -0.01, -0.00, -0.00, -0.01, -0.00, 0.01, -0.00, -0.00, 0.00, 1.00, -0.02, -0.00, -0.00, -0.01, 0.00, 0.00, 0.00, 0.01, -0.00, -0.00, -0.01, -0.01, -0.01, -0.01
|
67
67
|
eitc, -0.05, -0.08, -0.04, 0.32, -0.06, -0.05, 0.00, -0.01, -0.01, 0.69, -0.05, -0.01, 0.08, -0.05, -0.02, -0.03, -0.02, -0.02, -0.02, -0.01, -0.01, -0.01, 0.00, -0.02, -0.03, -0.04, -0.03, 0.00, 0.03, -0.11, -0.03, -0.03, -0.03, 0.00, -0.02, -0.06, -0.03, -0.04, -0.00, -0.01, 0.02, -0.01, -0.01, -0.01, -0.01, -0.00, 0.02, -0.01, -0.03, -0.03, -0.04, -0.09, -0.05, -0.02, -0.01, -0.03, -0.01, -0.00, -0.02, -0.01, 0.01, -0.01, -0.01, 0.07, -0.02, 1.00, -0.00, -0.00, -0.06, 0.02, 0.00, 0.23, 0.28, -0.01, 0.00, -0.02, -0.09, -0.11, -0.09
|
68
68
|
elderly_dependents, -0.00, -0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.02, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, 0.01, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 1.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00
|
69
|
-
g20500, 0.00, 0.00, 0.01, -0.01, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, -0.00, 0.00, 0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.03, 0.00, -0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 1.00, 0.00, -0.00, -0.01, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.
|
69
|
+
g20500, 0.00, 0.00, 0.01, -0.01, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, -0.00, 0.00, 0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.00, 0.01, -0.00, 0.01, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.03, 0.00, -0.00, 0.00, 0.01, 0.00, 0.00, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, -0.00, 0.00, 0.00, -0.00, -0.00, -0.00, -0.00, 1.00, 0.00, -0.00, -0.01, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.01
|
70
70
|
iitax, 0.95, 0.08, 0.49, -0.22, 0.96, 0.95, -0.01, -0.06, 0.26, -0.05, 0.87, 0.24, 0.06, 0.51, 0.40, 0.24, 0.34, 0.28, 0.33, -0.01, 0.05, 0.01, 0.07, 0.10, 0.03, 0.05, 0.48, -0.03, -0.03, 0.04, 0.01, -0.03, -0.02, -0.02, 0.26, 0.16, 0.05, 0.08, 0.01, -0.01, -0.02, 0.04, 0.16, 0.16, 0.06, 0.01, -0.00, 0.00, 0.11, -0.01, 0.60, 0.44, 0.28, 0.26, 0.18, 0.34, 0.13, 0.09, 0.42, 0.01, -0.00, 0.05, 0.17, -0.04, -0.01, -0.06, -0.00, 0.00, 1.00, -0.09, -0.01, 0.00, 0.03, 0.02, 0.10, 0.66, 0.50, 0.19, 0.21
|
71
71
|
k1bx14p, -0.09, -0.02, -0.05, 0.06, -0.09, -0.08, 0.01, 0.02, -0.00, 0.02, -0.08, 0.00, -0.02, -0.04, -0.01, -0.02, -0.02, -0.01, -0.02, 0.00, -0.73, -0.01, 0.00, -0.01, -0.00, -0.01, 0.01, -0.06, 0.01, -0.00, -0.02, 0.01, 0.01, 0.01, -0.01, -0.09, -0.03, -0.17, 0.00, 0.00, 0.01, -0.00, -0.06, -0.01, -0.01, 0.00, 0.00, -0.00, -0.02, 0.00, -0.06, -0.08, -0.03, -0.04, -0.01, -0.02, -0.02, 0.00, 0.01, -0.00, -0.00, -0.00, -0.06, 0.02, 0.00, 0.02, 0.00, -0.00, -0.09, 1.00, 0.06, 0.00, -0.01, -0.00, 0.00, -0.02, -0.04, -0.02, -0.02
|
72
72
|
k1bx14s, -0.01, -0.01, -0.00, 0.02, -0.01, -0.01, 0.00, 0.00, 0.00, 0.01, -0.01, -0.00, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.00, -0.25, 0.00, 0.00, -0.01, -0.00, -0.00, 0.02, -0.06, 0.00, -0.00, -0.01, 0.00, 0.00, 0.00, 0.01, -0.02, -0.02, -0.10, 0.00, 0.00, 0.00, 0.00, -0.00, 0.01, -0.00, -0.00, 0.00, 0.00, -0.01, 0.00, -0.00, -0.02, -0.01, 0.00, -0.00, -0.00, 0.00, 0.00, 0.02, -0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.00, -0.01, -0.01, 0.06, 1.00, -0.00, -0.00, -0.00, 0.00, 0.00, -0.01, -0.01, -0.01
|
73
|
-
nu06, 0.00, -0.10, 0.00, 0.35, 0.00, 0.00, 0.09, 0.23, -0.00, 0.26, 0.00, -0.00, 0.06, 0.02, -0.01, -0.01, -0.01, -0.01, 0.00, -0.00, 0.00, -0.00, -0.00, -0.02, -0.02, -0.04, 0.01, 0.00, 0.01, -0.14, 0.00, 0.01, 0.03, 0.01, -0.00, 0.04, 0.02, 0.01, -0.00, -0.00, 0.01, -0.00, 0.00, 0.00, -0.00, -0.00, 0.01, 0.01, 0.01, -0.02, 0.01, 0.02, 0.02, -0.00, -0.00, -0.01, -0.00, 0.00, 0.01, -0.00, 0.11, -0.00, 0.00, 0.08, 0.00, 0.23, -0.00, -0.00, 0.00, 0.00, -0.00, 1.00, 0.68, 0.00, 0.00, -0.00, 0.04,
|
73
|
+
nu06, 0.00, -0.10, 0.00, 0.35, 0.00, 0.00, 0.09, 0.23, -0.00, 0.26, 0.00, -0.00, 0.06, 0.02, -0.01, -0.01, -0.01, -0.01, 0.00, -0.00, 0.00, -0.00, -0.00, -0.02, -0.02, -0.04, 0.01, 0.00, 0.01, -0.14, 0.00, 0.01, 0.03, 0.01, -0.00, 0.04, 0.02, 0.01, -0.00, -0.00, 0.01, -0.00, 0.00, 0.00, -0.00, -0.00, 0.01, 0.01, 0.01, -0.02, 0.01, 0.02, 0.02, -0.00, -0.00, -0.01, -0.00, 0.00, 0.01, -0.00, 0.11, -0.00, 0.00, 0.08, 0.00, 0.23, -0.00, -0.00, 0.00, 0.00, -0.00, 1.00, 0.68, 0.00, 0.00, -0.00, 0.04, 0.00, 0.02
|
74
74
|
nu13, 0.03, -0.14, 0.02, 0.48, 0.03, 0.03, 0.15, 0.35, -0.00, 0.37, 0.03, -0.00, 0.09, 0.06, -0.00, -0.01, -0.01, -0.01, 0.01, -0.00, 0.01, -0.00, -0.00, -0.02, -0.03, -0.05, 0.02, 0.00, 0.01, -0.19, 0.01, 0.00, 0.04, 0.02, 0.01, 0.08, 0.05, 0.04, 0.00, -0.01, 0.01, 0.01, 0.01, 0.00, 0.00, -0.00, 0.01, 0.02, 0.05, -0.02, 0.03, 0.07, 0.05, 0.00, -0.00, -0.00, -0.00, 0.00, 0.03, -0.01, 0.18, 0.00, 0.01, 0.10, 0.01, 0.28, -0.00, 0.00, 0.03, -0.01, -0.00, 0.68, 1.00, 0.00, 0.01, 0.01, 0.11, 0.07, 0.09
|
75
75
|
p08000, 0.02, 0.01, 0.01, -0.01, 0.02, 0.02, 0.00, -0.00, 0.01, -0.00, 0.02, 0.01, 0.01, 0.01, 0.01, 0.02, 0.01, 0.01, 0.01, -0.00, 0.00, -0.00, 0.00, 0.00, -0.00, 0.00, 0.01, 0.00, -0.00, 0.00, 0.01, -0.00, 0.00, -0.00, 0.01, 0.01, 0.01, 0.01, -0.00, -0.00, -0.00, 0.00, -0.00, 0.00, -0.00, -0.00, -0.00, 0.00, 0.00, 0.00, 0.01, 0.02, 0.01, 0.00, 0.00, 0.01, -0.00, 0.00, 0.01, -0.00, 0.00, -0.00, -0.00, -0.00, -0.00, -0.01, -0.00, -0.00, 0.02, -0.00, -0.00, 0.00, 0.00, 1.00, 0.00, 0.01, 0.01, 0.01, 0.01
|
76
76
|
p22250, 0.09, -0.01, 0.02, -0.01, 0.09, 0.09, 0.00, 0.00, -0.00, -0.00, 0.07, 0.01, -0.00, 0.01, 0.05, -0.00, 0.02, 0.01, 0.03, 0.00, -0.00, 0.00, -0.00, -0.00, -0.00, -0.01, -0.05, -0.00, 0.00, -0.01, -0.00, 0.00, 0.00, -0.00, -0.00, 0.01, 0.00, 0.00, 0.01, 0.00, -0.00, 0.02, 0.04, 0.00, 0.00, 0.00, -0.00, -0.00, 0.00, -0.00, 0.02, 0.00, 0.04, 0.02, -0.00, 0.03, 0.00, 0.04, -0.07, -0.00, 0.00, -0.00, 0.04, -0.00, -0.00, 0.00, 0.00, -0.00, 0.10, 0.00, 0.00, 0.00, 0.01, 0.00, 1.00, -0.01, 0.01, 0.01, 0.00
|
77
|
-
p23250, 0.77, 0.05, 0.29, -0.10, 0.79, 0.79, -0.01, -0.02, 0.07, -0.02, 0.59, 0.03, 0.02, 0.08, 0.26, 0.16, 0.20, 0.16, 0.10, -0.00, 0.00, -0.00, 0.05, 0.04, 0.01, 0.02, 0.01, -0.02, -0.01, 0.03, 0.00, -0.01, -0.01, -0.01, 0.04, 0.06, 0.02, 0.01, -0.00, -0.00, -0.01, 0.03, 0.09, 0.03, 0.02, 0.01, -0.00, -0.00, 0.03, -0.00, 0.31, 0.24, 0.20, 0.16, 0.14, 0.31, 0.21, 0.11, -0.02, 0.00, -0.01, 0.07, 0.10, -0.02, -0.01, -0.02, -0.00, -0.00, 0.66, -0.02, 0.00, -0.00, 0.01, 0.01, -0.01, 1.00, 0.08, 0.
|
78
|
-
payrolltax, 0.44, -0.02, 0.30, -0.16, 0.44, 0.43, 0.04, -0.01, 0.01, -0.08, 0.46, 0.01, 0.12, 0.97, 0.07, 0.09, 0.09, 0.08, 0.16, -0.01, 0.02, 0.01, 0.01, 0.04, 0.04, 0.03, 0.08, -0.02, -0.03, -0.08, 0.02, -0.01, 0.02, -0.01, 0.04, 0.04, 0.03, 0.01, 0.00, 0.00, -0.03, 0.03, 0.16, 0.04, 0.03, 0.00, -0.00, 0.01, 0.20, -0.03, 0.40, 0.36, 0.14, 0.11, 0.11, 0.12, 0.00, 0.02, 0.07, -0.00, 0.05, 0.01, 0.16, -0.03, -0.01, -0.09, -0.00, 0.00, 0.50, -0.04, -0.01, 0.04, 0.11, 0.01, 0.01, 0.08, 1.00, 0.45, 0.
|
79
|
-
pencon_p, 0.18, -0.06, 0.12, -0.
|
80
|
-
pencon_s, 0.20, 0.09, 0.14, -0.14, 0.
|
77
|
+
p23250, 0.77, 0.05, 0.29, -0.10, 0.79, 0.79, -0.01, -0.02, 0.07, -0.02, 0.59, 0.03, 0.02, 0.08, 0.26, 0.16, 0.20, 0.16, 0.10, -0.00, 0.00, -0.00, 0.05, 0.04, 0.01, 0.02, 0.01, -0.02, -0.01, 0.03, 0.00, -0.01, -0.01, -0.01, 0.04, 0.06, 0.02, 0.01, -0.00, -0.00, -0.01, 0.03, 0.09, 0.03, 0.02, 0.01, -0.00, -0.00, 0.03, -0.00, 0.31, 0.24, 0.20, 0.16, 0.14, 0.31, 0.21, 0.11, -0.02, 0.00, -0.01, 0.07, 0.10, -0.02, -0.01, -0.02, -0.00, -0.00, 0.66, -0.02, 0.00, -0.00, 0.01, 0.01, -0.01, 1.00, 0.08, 0.04, 0.06
|
78
|
+
payrolltax, 0.44, -0.02, 0.30, -0.16, 0.44, 0.43, 0.04, -0.01, 0.01, -0.08, 0.46, 0.01, 0.12, 0.97, 0.07, 0.09, 0.09, 0.08, 0.16, -0.01, 0.02, 0.01, 0.01, 0.04, 0.04, 0.03, 0.08, -0.02, -0.03, -0.08, 0.02, -0.01, 0.02, -0.01, 0.04, 0.04, 0.03, 0.01, 0.00, 0.00, -0.03, 0.03, 0.16, 0.04, 0.03, 0.00, -0.00, 0.01, 0.20, -0.03, 0.40, 0.36, 0.14, 0.11, 0.11, 0.12, 0.00, 0.02, 0.07, -0.00, 0.05, 0.01, 0.16, -0.03, -0.01, -0.09, -0.00, 0.00, 0.50, -0.04, -0.01, 0.04, 0.11, 0.01, 0.01, 0.08, 1.00, 0.45, 0.44
|
79
|
+
pencon_p, 0.18, -0.06, 0.12, -0.17, 0.18, 0.17, 0.05, -0.03, 0.01, -0.09, 0.17, 0.00, 0.12, 0.32, 0.04, 0.04, 0.04, 0.03, 0.07, -0.01, -0.00, 0.01, 0.00, 0.02, 0.04, 0.00, 0.08, -0.01, -0.04, -0.12, 0.02, -0.02, 0.02, -0.01, 0.05, 0.05, 0.04, 0.00, 0.00, 0.02, -0.04, 0.01, 0.07, 0.03, 0.02, 0.00, -0.00, 0.02, 0.20, -0.03, 0.15, 0.23, 0.11, 0.05, 0.02, 0.05, 0.00, 0.01, 0.07, 0.00, 0.05, 0.01, 0.06, -0.04, -0.01, -0.11, -0.00, 0.00, 0.19, -0.02, -0.01, 0.00, 0.07, 0.01, 0.01, 0.04, 0.45, 1.00, 0.16
|
80
|
+
pencon_s, 0.20, 0.09, 0.14, -0.14, 0.20, 0.19, 0.04, -0.03, 0.01, -0.08, 0.19, 0.00, 0.09, 0.32, 0.05, 0.06, 0.07, 0.06, 0.08, -0.01, 0.02, 0.01, 0.00, 0.05, 0.07, 0.04, 0.07, -0.01, -0.02, 0.02, 0.03, -0.02, 0.02, -0.01, 0.05, 0.08, 0.05, 0.02, 0.00, -0.00, -0.03, 0.03, 0.05, 0.03, 0.03, 0.00, -0.00, 0.01, 0.17, -0.02, 0.16, 0.27, 0.12, 0.06, 0.03, 0.07, 0.01, 0.01, 0.07, 0.00, 0.05, 0.01, 0.05, -0.03, -0.01, -0.09, -0.00, 0.01, 0.21, -0.02, -0.01, 0.02, 0.09, 0.01, 0.00, 0.06, 0.44, 0.16, 1.00
|